commit a3e7512f95b4237eb49d82eb6561e4256d7879a9 Author: [Quy Anh] «Elliot» Nguyen Date: Wed Jun 24 15:10:50 2026 +0200 --- diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..1f913de --- /dev/null +++ b/.dockerignore @@ -0,0 +1,7 @@ +node_modules +Dockerfile +.git +android +DatabaseStructure.drawio +capacitor.config.json +ionic.config.json diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..5a155e5 --- /dev/null +++ b/.env.example @@ -0,0 +1,11 @@ + +REACT_APP_FIREBASE_API_KEY= +REACT_APP_FIREBASE_AUTH_DOMAIN= +REACT_APP_FIREBASE_PROJECT_ID= +REACT_APP_FIREBASE_STORAGE_BUCKET= +REACT_APP_FIREBASE_MESSAGING_SENDER_ID= +REACT_APP_FIREBASE_APP_ID= +REACT_APP_GA_TRACKING_ID_WEB= +REACT_APP_ADMIN_UID= +REACT_APP_FB_PAGE_ID= +REACT_APP_FB_APP_ID= \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b46519e --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.yarn + +# testing +/coverage + +# production +/build +/android +/dist + +# misc +.DS_Store +.env +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Local Netlify folder +.netlify diff --git a/.tool-versions b/.tool-versions new file mode 100644 index 0000000..8bdcb2a --- /dev/null +++ b/.tool-versions @@ -0,0 +1 @@ +nodejs 16.1.0 diff --git a/.yarnrc.yml b/.yarnrc.yml new file mode 100644 index 0000000..4d2c102 --- /dev/null +++ b/.yarnrc.yml @@ -0,0 +1,2 @@ +nodeLinker: node-modules +yarnPath: .yarn/releases/yarn-3.6.4.cjs \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..89b1ef0 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,146 @@ +# Contributing to Debaters' toolkit + +Looking forward to contribute to Debaters' toolkit? Thanks! Here's a step-by-step guide as to how to rebuild this project from scratch. + +## Setting up Firebase + +1. Go to [Firebase Console](https://console.firebase.google.com/) and click on 'Add Project'. Remember to switch off 'Enable Google Analytics for this project' after naming your project. +2. Click on the button in 'Project Overview' to create a new web app. Don't check 'Also set up Firebase Hosting for this app.' +3. After clicking 'Register App', you will find something like this: +```sh +// Import the functions you need from the SDKs you need +import { initializeApp } from "firebase/app"; +// TODO: Add SDKs for Firebase products that you want to use +// https://firebase.google.com/docs/web/setup#available-libraries + +// Your web app's Firebase configuration +const firebaseConfig = { + apiKey: "XXXXXXXXXXXXXXXXXX-XXXX_XXXXX-XXXXXXXXX", + authDomain: "XXXX.firebaseapp.com", + projectId: "XXXX", + storageBucket: "XXXX.appspot.com", + messagingSenderId: "XXXXXXXXXXXXX", + appId: "1:XXXXXXXXXXXXX:web:XXXXXXXXXXXXXXXXXXXXXX" +}; + +// Initialize Firebase +const app = initializeApp(firebaseConfig); +``` +Copy the values inside firebaseConfig (without quotation marks) and paste them correspondingly to the [.env.example](./.env.example) file in the root directory of the project such that the first 6 lines of [.env.example](./.env.example) looks something like this: +```sh +REACT_APP_FIREBASE_API_KEY=XXXXXXXXXXXXXXXXXX-XXXX_XXXXX-XXXXXXXXX +REACT_APP_FIREBASE_AUTH_DOMAIN=XXXX.firebaseapp.com +REACT_APP_FIREBASE_PROJECT_ID=XXXX +REACT_APP_FIREBASE_STORAGE_BUCKET=XXXX.appspot.com +REACT_APP_FIREBASE_MESSAGING_SENDER_ID=XXXXXXXXXXXXX +REACT_APP_FIREBASE_APP_ID=1:XXXXXXXXXXXXX:web:XXXXXXXXXXXXXXXXXXXXXX +``` +4. After adding a web app to your Firebase project, in the [Firebase Console](https://console.firebase.google.com/), click on 'Create database'. Select 'start in production mode' and then select a Cloud Firestore location closest to your geolocation. +5. Go to the Authentication tab in the [Firebase Console](https://console.firebase.google.com/) and click on 'Get started'. Click on 'Email/Password' and enable it. Don't enable 'Email link (passwordless sign-in)'. +6. In the 'Users' section in 'Authentication', click on 'Add user'. Provide an email and password for this user, which will be used as the admin account. Copy the User UID afterwards and paste it into 'REACT_APP_ADMIN_UID' inside [.env.example](./.env.example). +7. Go to the 'Rules' section in 'Firestore Database'. Change the rules to the following: +```sh +rules_version = '2'; +service cloud.firestore { + match /databases/{database}/documents { + match /requests/{requestID} { + allow read: if request.auth.uid == "XXXXXXXXXXXXXXXXXXXXXXXXXXXX"; + allow write: if true; + } + match /motions/{motionID} { + allow read: if true; + allow write: if request.auth.uid == "XXXXXXXXXXXXXXXXXXXXXXXXXXXX"; + } + match /tournaments/{tournamentID} { + allow read: if true; + allow write: if request.auth.uid == "XXXXXXXXXXXXXXXXXXXXXXXXXXXX"; + } + } +} +``` +Replace XXXXXXXXXXXXXXXXXXXXXXXXXXXX with the UID you just copied and then click on 'Publish'. +8. Go to the 'Data' section in 'Firestore Database'. Create 3 collections named 'motions', 'requests', and 'tournaments' under 'Collection ID'. When asked to create a first document, click on 'Auto ID' and then click save. Remember to delete the first document for all 3 collections. + + +## Setting up Google Analytics (optional) + +This part is optional, so if you don't want to set up Google Analytics, delete 'REACT_APP_GA_TRACKING_ID_WEB' inside [.env.example](./.env.example). + +Visit [Analytics](https://analytics.google.com/) and login with your Google account. If you have never created a Google Analytics account, click on 'Start measuring'. Otherwise, click on the settings button the bottom of the left bar and click on '+ Create Account' under the 'Admin' tab. + +Account setup: +Give the account a name e.g. 'Debaters' toolkit'. The 4 checkboxes are optional. + +Property setup: +Name the new property 'Main' and select your time zone and currency. Click on 'Show advanced options' and select 'Create a Universal Analytics'. Set the 'Website URL' to a valid URL, but if you intend to host the app somewhere then enter the desired URL here. Select 'Create a Universal Analytics property only'. + +About your business: +This part is optional, and you can skip it by clicking on 'Create'. + +Copy the Tracking ID (something like UA-123456789-1) and paste it into 'REACT_APP_GA_TRACKING_ID_WEB' inside [.env.example](./.env.example). + +## Setting up Messenger Chat (optional) + +This part is optional, so if you don't want to set up Google Analytics, delete 'REACT_APP_FB_PAGE_ID' and 'REACT_APP_FB_APP_ID' inside [.env.example](./.env.example). + +Follow [this tutorial](https://www.youtube.com/watch?v=8e_4KIj4jBs) to set up your Facebook page and create a new App on [Meta for Developers](https://developers.facebook.com/). Copy your Facebook page ID and the newly created app's ID and paste them into REACT_APP_FB_PAGE_ID and REACT_APP_FB_APP_ID inside [.env.example](./.env.example), correspondingly. + +## Starting the development server + +Open up a terminal in the root folder of the project and do the following: +```sh +cp .env.example .env +``` + +Follow [this guide](https://yarnpkg.com/getting-started/migration) to install yarn v3. + +You can start the development server directly by installing the dependencies using 'npm install' or 'yarn install' and then 'npm start' or 'yarn start', but this requires manual npm/yarn configuration. The recommended approach is to run the development server inside a Docker container. + +Install [Docker](https://docs.docker.com/get-docker/) if you haven't and open Docker upon finishing the installation. + +Then, build the Docker image: +```sh +docker build -t debaters-toolkit . +``` + +Run the container: +```sh +docker run --name debaters-toolkit -d -p 3000:3000 debaters-toolkit +``` + +Now you can open your browser and go to http://localhost:3000. + +## Electron + +You can also run Debaters' toolkit as an Electron application. First, switch to the 'electron' branch. +Then, to start the Electron development server: +```sh +yarn dev +``` +To build the .exe installer: +```sh +yarn build +yarn electron-pack +``` +You will then find the .exe installer inside the 'dist' folder. + +## Android + +It is also possible to build Debaters' toolkit as a native Android application. First, switch to the 'android' branch. +Then, to generate native Android source code: +```sh +ionic capacitor add android +``` +A new 'android' folder will be created. + +To update the icons of the Android app, open up your terminal: +```sh +rm -rf android/app/src/main/res +cp -r res android/app/src/main +``` +After that, open android/app/src/main/Android Manifest.xml and set android:icon to "@mipmap/debaters_toolkit", android:roundIcon to "@mipmap/debaters_toolkit_round". + +Finally, open the 'android' folder with [Android Studio](https://developer.android.com/studio) and build the APK. + + + diff --git a/DatabaseStructure.drawio b/DatabaseStructure.drawio new file mode 100644 index 0000000..4e5d574 --- /dev/null +++ b/DatabaseStructure.drawio @@ -0,0 +1 @@ +7Zxbc6M2FMc/jR+3AxaX+NVO6ux0b53MTjb7skONDOpixAr51k9fMOIq4dCEIOQ6L0EHCYuj31+XI9kTsNgclsSJ/I/YhcFkqrmHCbidTKe6CazkX2o5ZpaZZWQGjyCXZSoND+gfyIwas26RC+NaRopxQFFUN65wGMIVrdkcQvC+nm2Ng/qnRo4HOcPDygl46yNyqZ9Zb0yttN9D5Pn5J+sau7Nx8szMEPuOi/cVE7ibgAXBmGZXm8MCBqnzcr9k5X5vuVtUjMCQdinwdT3zYj26/7798uePONAW7mfyjj1l5wRb9sIbTBEOY1ZneswdQfA2dGH6LG0C5nsfUfgQOav07j5p+sTm002QpPTkkq9b/kGQUHiomFhdlxBvICXHJAu7a+aOZOAAltyXraDnrvUrLWCarPFZw3vFk0vfJBfMPf/BVVOb8wl0E1ZYEhPqYw+HTnBXWud1r5V5PmAcMV/9DSk9MvCdLcV1T8IDot/S4r+ZLPXEHpZe3x6qiSNLtHo/xluygufekSnMIR6kZ/KBLF/6/mfbksDAoWhX11L/LcNBvMYk0Z90hnWzzrAugNgQMJzbevcU4DxFEyRCZ5O8o3zJWw3Fmx0V34O3lo/IX3xbbO//CJdfdxZywveewFsyeoCXq9lQUs0G5/UjdIh0OEcn5Zkqw1Hic3KsFEqTT/nz0kRZ7JR6/TBmdgRfHxX4Jgf+qbmkk28bDfQNHn3rjfplMfo3V/TbfGMrib7NoR84obdN12ay6beskdE/NVSh/+UUz5Scucw4itOZtXSCdW1sUxdlCB6+/87jXop14Hm1K+yjcI3jALnyBQDA8124OegEBlwF0EpSHuVVTAB8JHWFQ5q+vmz8m3EV+fibV/xbOQJq4i+KLEZoJR1+Qx8b/NYV/laK1Fy96vzytQyrJ/b3t/JlcPO8DOxBZaDMbtrwMkhzKSiDvNrVKA4Kf0pn3+zA/lsNAcJ9pekV/TbXjH7yf67WFfBdtEMxwqF0+G+m8sKXu6fA/hQ5ePVx/Xj8sXk6zI9LwaYqgb+2MBbsPz/jHSeOshM/a3RIPTpv8Y3Ag+2xMr2x2SGIlYncZb2Vu/Lp66V3Fg0lP9t7CJ0l2PdrZ3CAzuJcJbkjV6PAX2vGigccK8X865xfrvy3OUuwfBof//xiKY0UPwgjxVIkYI9NAv+T7ZJeJKAL1k7j00BeS2HE4JNo01DKXKh55kmghGJzsSqFwti/45SJnvXJtPlKVlnRLxid4lFF+zZ6ulmj1TINsVKNhiuq8Yq25GdCwpN+MtCf2ubIBgFlzjz1Cb59meDzUyDxST8Z5BsSN8uF3poqswLuk/zZZZLPH5Fq+aqGDPRBh/nOsOgr0+m/dOYfU4J/wgUOMDm9H9BOf/2Kqfji4KjXBEVst8MhWBnqMDvspA8aGgXKDAzjVofgsO0I1cGPHK17LFLUMRubOi7+jOEg6gBKjB2AHzvEx69kSMPqEFAdVhoXH1AdRhpKhFrzWnKnUqwgqfP8L5JcebTwjGSt2B2WID1pJUmWPz6RLfDKn/AAd/8C \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c8476a3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM node:16.13.1 +WORKDIR /app +COPY package.json ./ +RUN yarn set version berry +COPY .yarnrc.yml ./ +RUN yarn install +COPY . . +CMD ["yarn", "start"] \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..86ee036 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# Debaters' toolkit [![MIT - License](https://img.shields.io/badge/License-MIT-2ea44f)](https://opensource.org/licenses/MIT) [![v - 1.4.6](https://img.shields.io/badge/v-1.4.6-blue)](https://gitea.elliot-at-zuri.ch/admin/debaters-toolkit/releases/tag/1.4.6) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-green.svg)](./CONTRIBUTING.md) [![Donate - Patreon](https://img.shields.io/badge/Donate-Patreon-fc444c)](https://www.patreon.com/user?u=1234567) + +Debaters' toolkit is a helpful online toolkit for debaters. Users can search for or generate random debate motions based on various criteria (e.g. tournament, topic, language, etc.), calculate break for BP, AP, and WSDC, and do time keeping for various debate formats without having to download any software. This software contains open-source third-party materials used in full accordance with related licenses and intellectual property laws. + +## Sources for our motions + + - [Hellomotions' open-source database](https://hellomotions.com/) + - [Puzzles Ams's Motion Database 2020-2021](https://docs.google.com/spreadsheets/d/1e11Rh2G_Bb9mNARLhnA6WjqgDO3Np6QpYnasVqXkGZY/edit#gid=1678651727) + - [Motions for Vietnam Debate Community | Moji Debate](https://drive.google.com/drive/folders/1OX39izeTiz8DMFWhrw9v3qpk8fg3_ylV) + +## Installation + +Open the app with a PWA-capable browser and add it to your homescreen. You can also install the native version of the app on Windows and Android using the setup files in the [release package](https://gitea.elliot-at-zuri.ch/admin/debaters-toolkit/releases). + +## Notice of Discontinuation +As of October 22nd, 2023, this project is no longer maintained. Many features no longer work correctly, and some other features have been disabled entirely. This repository now exists solely as a historical archive. \ No newline at end of file diff --git a/analytics-screenshot.png b/analytics-screenshot.png new file mode 100644 index 0000000..73dde6e Binary files /dev/null and b/analytics-screenshot.png differ diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..df70fa6 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,28746 @@ +{ + "name": "debaters-toolkit", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "debaters-toolkit", + "version": "0.0.0", + "dependencies": { + "@capacitor/android": "^3.3.3", + "@capacitor/cli": "^3.3.3", + "@capacitor/core": "^3.3.3", + "@mui/icons-material": "^5.2.4", + "@mui/lab": "^5.0.0-alpha.60", + "@mui/material": "^5.2.4", + "@mui/styles": "^5.2.3", + "@testing-library/jest-dom": "^5.14.1", + "@testing-library/react": "^11.2.7", + "@testing-library/user-event": "^12.8.3", + "capacitor": "^0.5.5", + "core-js": "^3.19.2", + "cross-env": "^7.0.3", + "dotenv": "^10.0.0", + "electron-is-dev": "^2.0.0", + "eslint-webpack-plugin": "^3.1.1", + "firebase": "^8.6.7", + "grpc": "^1.24.11", + "lodash": "^4.17.21", + "react": "^18.1.0", + "react-dev-utils": "^11.0.4", + "react-device-detect": "^2.1.2", + "react-dom": "^18.1.0", + "react-download-link": "^2.3.0", + "react-ga": "^3.3.0", + "react-ga4": "^1.4.1", + "react-helmet": "^6.1.0", + "react-messenger-customer-chat": "^0.8.0", + "react-responsive": "^8.2.0", + "react-router": "^6.2.1", + "react-router-dom": "^6.2.1", + "react-scripts": "4.0.3", + "react-select": "^5.2.1", + "react-textarea-autosize": "^8.3.3", + "readdirp": "^3.6.0", + "resolve-url-loader": "^4.0.0", + "sass": "^1.52.1", + "styled-jsx": "^4.0.1", + "svgo": "^2.4.0", + "web-vitals": "^1.1.2", + "webpack": "4.44.2" + }, + "devDependencies": { + "@types/react-select": "^5.0.1", + "concurrently": "^6.4.0", + "electron": "^16.0.2", + "electron-builder": "^22.14.5", + "wait-on": "^6.0.0", + "yarn": "^1.22.19" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@adobe/css-tools": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.3.1.tgz", + "integrity": "sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg==" + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "dependencies": { + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.2.tgz", + "integrity": "sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.12.3", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz", + "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.1", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.1", + "@babel/parser": "^7.12.3", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.1", + "@babel/types": "^7.12.1", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@babel/generator": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz", + "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==", + "dependencies": { + "@babel/types": "^7.23.0", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", + "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", + "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", + "dependencies": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.15", + "browserslist": "^4.21.9", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/browserslist": { + "version": "4.22.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", + "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001541", + "electron-to-chromium": "^1.4.535", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz", + "integrity": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", + "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz", + "integrity": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", + "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", + "dependencies": { + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz", + "integrity": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", + "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-wrap-function": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", + "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-optimise-call-expression": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", + "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", + "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", + "dependencies": { + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.15", + "@babel/types": "^7.22.19" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.2.tgz", + "integrity": "sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==", + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.2", + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", + "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz", + "integrity": "sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz", + "integrity": "sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.2.tgz", + "integrity": "sha512-eR0gJQc830fJVGz37oKLvt9W9uUIQSAovUl0e9sJ3YeO09dlcoBVYD3CLrjCj4qHdXmfiyTyFt8yeQYSN5fxLg==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/plugin-syntax-decorators": "^7.22.10" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.10.tgz", + "integrity": "sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.22.5.tgz", + "integrity": "sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", + "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz", + "integrity": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", + "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.2.tgz", + "integrity": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.20", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", + "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", + "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz", + "integrity": "sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz", + "integrity": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz", + "integrity": "sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.11", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz", + "integrity": "sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.9", + "@babel/helper-split-export-declaration": "^7.22.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", + "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz", + "integrity": "sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", + "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", + "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz", + "integrity": "sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", + "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz", + "integrity": "sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.22.5.tgz", + "integrity": "sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-flow": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz", + "integrity": "sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", + "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz", + "integrity": "sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", + "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz", + "integrity": "sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", + "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.0.tgz", + "integrity": "sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==", + "dependencies": { + "@babel/helper-module-transforms": "^7.23.0", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz", + "integrity": "sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==", + "dependencies": { + "@babel/helper-module-transforms": "^7.23.0", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.0.tgz", + "integrity": "sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==", + "dependencies": { + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.23.0", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", + "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", + "dependencies": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", + "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz", + "integrity": "sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz", + "integrity": "sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz", + "integrity": "sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==", + "dependencies": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", + "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz", + "integrity": "sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.0.tgz", + "integrity": "sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz", + "integrity": "sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz", + "integrity": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz", + "integrity": "sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.11", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", + "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.22.5.tgz", + "integrity": "sha512-BF5SXoO+nX3h5OhlN78XbbDrBOffv+AxPP2ENaJOVqjWCgBDeOY3WcaUcddutGSfoap+5NEQ/q/4I3WZIvgkXA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.22.5.tgz", + "integrity": "sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.15.tgz", + "integrity": "sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.22.5", + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", + "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.22.5.tgz", + "integrity": "sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz", + "integrity": "sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", + "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.2.tgz", + "integrity": "sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==", + "dependencies": { + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", + "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", + "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", + "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", + "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", + "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.15.tgz", + "integrity": "sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-typescript": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz", + "integrity": "sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz", + "integrity": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", + "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz", + "integrity": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.2.tgz", + "integrity": "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==", + "dependencies": { + "@babel/compat-data": "^7.23.2", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.15", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.15", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.22.5", + "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.22.5", + "@babel/plugin-transform-async-generator-functions": "^7.23.2", + "@babel/plugin-transform-async-to-generator": "^7.22.5", + "@babel/plugin-transform-block-scoped-functions": "^7.22.5", + "@babel/plugin-transform-block-scoping": "^7.23.0", + "@babel/plugin-transform-class-properties": "^7.22.5", + "@babel/plugin-transform-class-static-block": "^7.22.11", + "@babel/plugin-transform-classes": "^7.22.15", + "@babel/plugin-transform-computed-properties": "^7.22.5", + "@babel/plugin-transform-destructuring": "^7.23.0", + "@babel/plugin-transform-dotall-regex": "^7.22.5", + "@babel/plugin-transform-duplicate-keys": "^7.22.5", + "@babel/plugin-transform-dynamic-import": "^7.22.11", + "@babel/plugin-transform-exponentiation-operator": "^7.22.5", + "@babel/plugin-transform-export-namespace-from": "^7.22.11", + "@babel/plugin-transform-for-of": "^7.22.15", + "@babel/plugin-transform-function-name": "^7.22.5", + "@babel/plugin-transform-json-strings": "^7.22.11", + "@babel/plugin-transform-literals": "^7.22.5", + "@babel/plugin-transform-logical-assignment-operators": "^7.22.11", + "@babel/plugin-transform-member-expression-literals": "^7.22.5", + "@babel/plugin-transform-modules-amd": "^7.23.0", + "@babel/plugin-transform-modules-commonjs": "^7.23.0", + "@babel/plugin-transform-modules-systemjs": "^7.23.0", + "@babel/plugin-transform-modules-umd": "^7.22.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.22.5", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11", + "@babel/plugin-transform-numeric-separator": "^7.22.11", + "@babel/plugin-transform-object-rest-spread": "^7.22.15", + "@babel/plugin-transform-object-super": "^7.22.5", + "@babel/plugin-transform-optional-catch-binding": "^7.22.11", + "@babel/plugin-transform-optional-chaining": "^7.23.0", + "@babel/plugin-transform-parameters": "^7.22.15", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/plugin-transform-private-property-in-object": "^7.22.11", + "@babel/plugin-transform-property-literals": "^7.22.5", + "@babel/plugin-transform-regenerator": "^7.22.10", + "@babel/plugin-transform-reserved-words": "^7.22.5", + "@babel/plugin-transform-shorthand-properties": "^7.22.5", + "@babel/plugin-transform-spread": "^7.22.5", + "@babel/plugin-transform-sticky-regex": "^7.22.5", + "@babel/plugin-transform-template-literals": "^7.22.5", + "@babel/plugin-transform-typeof-symbol": "^7.22.5", + "@babel/plugin-transform-unicode-escapes": "^7.22.10", + "@babel/plugin-transform-unicode-property-regex": "^7.22.5", + "@babel/plugin-transform-unicode-regex": "^7.22.5", + "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "@babel/types": "^7.23.0", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", + "core-js-compat": "^3.31.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.22.15.tgz", + "integrity": "sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-transform-react-display-name": "^7.22.5", + "@babel/plugin-transform-react-jsx": "^7.22.15", + "@babel/plugin-transform-react-jsx-development": "^7.22.5", + "@babel/plugin-transform-react-pure-annotations": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.23.2.tgz", + "integrity": "sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-syntax-jsx": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.23.0", + "@babel/plugin-transform-typescript": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + }, + "node_modules/@babel/runtime": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", + "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime-corejs3": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.23.2.tgz", + "integrity": "sha512-54cIh74Z1rp4oIjsHjqN+WM4fMyCBYe+LpZ9jWm51CZ1fbH3SkAzQD/3XLoNkjbJ7YEmjobLXyvQrFypRHOrXw==", + "dependencies": { + "core-js-pure": "^3.30.2", + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "dependencies": { + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.2.tgz", + "integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==", + "dependencies": { + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.0", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.0", + "@babel/types": "^7.23.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz", + "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==", + "dependencies": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + }, + "node_modules/@capacitor/android": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/@capacitor/android/-/android-3.9.0.tgz", + "integrity": "sha512-YTPyrh1NozEuYXWGtfqN27TLXUrLbZX9fggyd4JQ1yMaUZTmLPm5dCuznONhQ49aPkJnUJB02JfpHy/qGwa2Lw==", + "peerDependencies": { + "@capacitor/core": "^3.9.0" + } + }, + "node_modules/@capacitor/cli": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/@capacitor/cli/-/cli-3.9.0.tgz", + "integrity": "sha512-NkbVZhYb0oPdh/XArE2ZmOwPFJbla5meShGhv3DxKCXeKn1rt92ile+2xOgtB/j+mL7f9cqQzTQM/11sGQzMAg==", + "dependencies": { + "@ionic/cli-framework-output": "^2.2.1", + "@ionic/utils-fs": "^3.1.5", + "@ionic/utils-subprocess": "^2.1.6", + "@ionic/utils-terminal": "^2.3.0", + "commander": "^6.0.0", + "debug": "^4.2.0", + "env-paths": "^2.2.0", + "kleur": "^4.1.1", + "native-run": "^1.5.0", + "open": "^7.4.2", + "plist": "^3.0.2", + "prompts": "^2.3.2", + "semver": "^7.3.2", + "tar": "^6.1.11", + "tslib": "^2.1.0", + "xml2js": "^0.4.23" + }, + "bin": { + "cap": "bin/capacitor", + "capacitor": "bin/capacitor" + }, + "engines": { + "node": ">=12.4.0" + } + }, + "node_modules/@capacitor/core": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/@capacitor/core/-/core-3.9.0.tgz", + "integrity": "sha512-j1lL0+/7stY8YhIq1Lm6xixvUqIn89vtyH5ZpJNNmcZ0kwz6K9eLkcG6fvq1UWMDgSVZg9JrRGSFhb4LLoYOsw==", + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "dependencies": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + }, + "bin": { + "watch": "cli.js" + }, + "engines": { + "node": ">=0.1.95" + } + }, + "node_modules/@csstools/convert-colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz", + "integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@csstools/normalize.css": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-10.1.0.tgz", + "integrity": "sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==" + }, + "node_modules/@develar/schema-utils": { + "version": "2.6.5", + "resolved": "https://registry.npmjs.org/@develar/schema-utils/-/schema-utils-2.6.5.tgz", + "integrity": "sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==", + "dev": true, + "dependencies": { + "ajv": "^6.12.0", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/@electron/get": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@electron/get/-/get-1.14.1.tgz", + "integrity": "sha512-BrZYyL/6m0ZXz/lDxy/nlVhQz+WF+iPS6qXolEU8atw7h6v1aYkjwJZ63m+bJMBTxDE66X+r2tPS4a/8C82sZw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "env-paths": "^2.2.0", + "fs-extra": "^8.1.0", + "got": "^9.6.0", + "progress": "^2.0.3", + "semver": "^6.2.0", + "sumchecker": "^3.0.1" + }, + "engines": { + "node": ">=8.6" + }, + "optionalDependencies": { + "global-agent": "^3.0.0", + "global-tunnel-ng": "^2.7.1" + } + }, + "node_modules/@electron/get/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@electron/get/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@electron/get/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@electron/get/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@electron/universal": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-1.0.5.tgz", + "integrity": "sha512-zX9O6+jr2NMyAdSkwEUlyltiI4/EBLu2Ls/VD3pUQdi3cAYeYfdQnT2AJJ38HE4QxLccbU13LSpccw1IWlkyag==", + "dev": true, + "dependencies": { + "@malept/cross-spawn-promise": "^1.1.0", + "asar": "^3.0.3", + "debug": "^4.3.1", + "dir-compare": "^2.4.0", + "fs-extra": "^9.0.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/@emotion/babel-plugin": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", + "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/serialize": "^1.1.2", + "babel-plugin-macros": "^3.1.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/cache": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", + "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", + "dependencies": { + "@emotion/memoize": "^0.8.1", + "@emotion/sheet": "^1.2.2", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/hash": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", + "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" + }, + "node_modules/@emotion/memoize": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", + "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" + }, + "node_modules/@emotion/react": { + "version": "11.11.1", + "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.1.tgz", + "integrity": "sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/cache": "^11.11.0", + "@emotion/serialize": "^1.1.2", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/serialize": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.2.tgz", + "integrity": "sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==", + "dependencies": { + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/unitless": "^0.8.1", + "@emotion/utils": "^1.2.1", + "csstype": "^3.0.2" + } + }, + "node_modules/@emotion/sheet": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz", + "integrity": "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==" + }, + "node_modules/@emotion/unitless": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", + "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==" + }, + "node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", + "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@emotion/utils": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", + "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==" + }, + "node_modules/@emotion/weak-memoize": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz", + "integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==" + }, + "node_modules/@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.23.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", + "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/eslintrc/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@firebase/analytics": { + "version": "0.6.18", + "resolved": "https://registry.npmjs.org/@firebase/analytics/-/analytics-0.6.18.tgz", + "integrity": "sha512-FXNtYDxbs9ynPbzUVuG94BjFPOPpgJ7156660uvCBuKgoBCIVcNqKkJQQ7TH8384fqvGjbjdcgARY9jgAHbtog==", + "dependencies": { + "@firebase/analytics-types": "0.6.0", + "@firebase/component": "0.5.6", + "@firebase/installations": "0.4.32", + "@firebase/logger": "0.2.6", + "@firebase/util": "1.3.0", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x", + "@firebase/app-types": "0.x" + } + }, + "node_modules/@firebase/analytics-types": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/@firebase/analytics-types/-/analytics-types-0.6.0.tgz", + "integrity": "sha512-kbMawY0WRPyL/lbknBkme4CNLl+Gw+E9G4OpNeXAauqoQiNkBgpIvZYy7BRT4sNGhZbxdxXxXbruqUwDzLmvTw==" + }, + "node_modules/@firebase/app": { + "version": "0.6.30", + "resolved": "https://registry.npmjs.org/@firebase/app/-/app-0.6.30.tgz", + "integrity": "sha512-uAYEDXyK0mmpZ8hWQj5TNd7WVvfsU8PgsqKpGljbFBG/HhsH8KbcykWAAA+c1PqL7dt/dbt0Reh1y9zEdYzMhg==", + "dependencies": { + "@firebase/app-types": "0.6.3", + "@firebase/component": "0.5.6", + "@firebase/logger": "0.2.6", + "@firebase/util": "1.3.0", + "dom-storage": "2.1.0", + "tslib": "^2.1.0", + "xmlhttprequest": "1.8.0" + } + }, + "node_modules/@firebase/app-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@firebase/app-check/-/app-check-0.3.2.tgz", + "integrity": "sha512-YjpsnV1xVTO1B836IKijRcDeceLgHQNJ/DWa+Vky9UHkm1Mi4qosddX8LZzldaWRTWKX7BN1MbZOLY8r7M/MZQ==", + "dependencies": { + "@firebase/app-check-interop-types": "0.1.0", + "@firebase/app-check-types": "0.3.1", + "@firebase/component": "0.5.6", + "@firebase/logger": "0.2.6", + "@firebase/util": "1.3.0", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x", + "@firebase/app-types": "0.x" + } + }, + "node_modules/@firebase/app-check-interop-types": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@firebase/app-check-interop-types/-/app-check-interop-types-0.1.0.tgz", + "integrity": "sha512-uZfn9s4uuRsaX5Lwx+gFP3B6YsyOKUE+Rqa6z9ojT4VSRAsZFko9FRn6OxQUA1z5t5d08fY4pf+/+Dkd5wbdbA==" + }, + "node_modules/@firebase/app-check-types": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@firebase/app-check-types/-/app-check-types-0.3.1.tgz", + "integrity": "sha512-KJ+BqJbdNsx4QT/JIT1yDj5p6D+QN97iJs3GuHnORrqL+DU3RWc9nSYQsrY6Tv9jVWcOkMENXAgDT484vzsm2w==" + }, + "node_modules/@firebase/app-types": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/@firebase/app-types/-/app-types-0.6.3.tgz", + "integrity": "sha512-/M13DPPati7FQHEQ9Minjk1HGLm/4K4gs9bR4rzLCWJg64yGtVC0zNg9gDpkw9yc2cvol/mNFxqTtd4geGrwdw==" + }, + "node_modules/@firebase/auth": { + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@firebase/auth/-/auth-0.16.8.tgz", + "integrity": "sha512-mR0UXG4LirWIfOiCWxVmvz1o23BuKGxeItQ2cCUgXLTjNtWJXdcky/356iTUsd7ZV5A78s2NHeN5tIDDG6H4rg==", + "dependencies": { + "@firebase/auth-types": "0.10.3" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/auth-interop-types": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@firebase/auth-interop-types/-/auth-interop-types-0.1.6.tgz", + "integrity": "sha512-etIi92fW3CctsmR9e3sYM3Uqnoq861M0Id9mdOPF6PWIg38BXL5k4upCNBggGUpLIS0H1grMOvy/wn1xymwe2g==", + "peerDependencies": { + "@firebase/app-types": "0.x", + "@firebase/util": "1.x" + } + }, + "node_modules/@firebase/auth-types": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/@firebase/auth-types/-/auth-types-0.10.3.tgz", + "integrity": "sha512-zExrThRqyqGUbXOFrH/sowuh2rRtfKHp9SBVY2vOqKWdCX1Ztn682n9WLtlUDsiYVIbBcwautYWk2HyCGFv0OA==", + "peerDependencies": { + "@firebase/app-types": "0.x", + "@firebase/util": "1.x" + } + }, + "node_modules/@firebase/component": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/@firebase/component/-/component-0.5.6.tgz", + "integrity": "sha512-GyQJ+2lrhsDqeGgd1VdS7W+Y6gNYyI0B51ovNTxeZVG/W8I7t9MwEiCWsCvfm5wQgfsKp9dkzOcJrL5k8oVO/Q==", + "dependencies": { + "@firebase/util": "1.3.0", + "tslib": "^2.1.0" + } + }, + "node_modules/@firebase/database": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@firebase/database/-/database-0.11.0.tgz", + "integrity": "sha512-b/kwvCubr6G9coPlo48PbieBDln7ViFBHOGeVt/bt82yuv5jYZBEYAac/mtOVSxpf14aMo/tAN+Edl6SWqXApw==", + "dependencies": { + "@firebase/auth-interop-types": "0.1.6", + "@firebase/component": "0.5.6", + "@firebase/database-types": "0.8.0", + "@firebase/logger": "0.2.6", + "@firebase/util": "1.3.0", + "faye-websocket": "0.11.3", + "tslib": "^2.1.0" + } + }, + "node_modules/@firebase/database-types": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@firebase/database-types/-/database-types-0.8.0.tgz", + "integrity": "sha512-7IdjAFRfPWyG3b4wcXyghb3Y1CLCSJFZIg1xl5GbTVMttSQFT4B5NYdhsfA34JwAsv5pMzPpjOaS3/K9XJ2KiA==", + "dependencies": { + "@firebase/app-types": "0.6.3", + "@firebase/util": "1.3.0" + } + }, + "node_modules/@firebase/firestore": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@firebase/firestore/-/firestore-2.4.1.tgz", + "integrity": "sha512-S51XnILdhNt0ZA6bPnbxpqKPI5LatbGY9RQjA2TmATrjSPE3aWndJsLIrutI6aS9K+YFwy5+HLDKVRFYQfmKAw==", + "dependencies": { + "@firebase/component": "0.5.6", + "@firebase/firestore-types": "2.4.0", + "@firebase/logger": "0.2.6", + "@firebase/util": "1.3.0", + "@firebase/webchannel-wrapper": "0.5.1", + "@grpc/grpc-js": "^1.3.2", + "@grpc/proto-loader": "^0.6.0", + "node-fetch": "2.6.7", + "tslib": "^2.1.0" + }, + "engines": { + "node": "^8.13.0 || >=10.10.0" + }, + "peerDependencies": { + "@firebase/app": "0.x", + "@firebase/app-types": "0.x" + } + }, + "node_modules/@firebase/firestore-types": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@firebase/firestore-types/-/firestore-types-2.4.0.tgz", + "integrity": "sha512-0dgwfuNP7EN6/OlK2HSNSQiQNGLGaRBH0gvgr1ngtKKJuJFuq0Z48RBMeJX9CGjV4TP9h2KaB+KrUKJ5kh1hMg==", + "peerDependencies": { + "@firebase/app-types": "0.x", + "@firebase/util": "1.x" + } + }, + "node_modules/@firebase/functions": { + "version": "0.6.16", + "resolved": "https://registry.npmjs.org/@firebase/functions/-/functions-0.6.16.tgz", + "integrity": "sha512-KDPjLKSjtR/zEH06YXXbdWTi8gzbKHGRzL/+ibZQA/1MLq0IilfM+1V1Fh8bADsMCUkxkqoc1yiA4SUbH5ajJA==", + "dependencies": { + "@firebase/component": "0.5.6", + "@firebase/functions-types": "0.4.0", + "@firebase/messaging-types": "0.5.0", + "node-fetch": "2.6.7", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x", + "@firebase/app-types": "0.x" + } + }, + "node_modules/@firebase/functions-types": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@firebase/functions-types/-/functions-types-0.4.0.tgz", + "integrity": "sha512-3KElyO3887HNxtxNF1ytGFrNmqD+hheqjwmT3sI09FaDCuaxGbOnsXAXH2eQ049XRXw9YQpHMgYws/aUNgXVyQ==" + }, + "node_modules/@firebase/installations": { + "version": "0.4.32", + "resolved": "https://registry.npmjs.org/@firebase/installations/-/installations-0.4.32.tgz", + "integrity": "sha512-K4UlED1Vrhd2rFQQJih+OgEj8OTtrtH4+Izkx7ip2bhXSc+unk8ZhnF69D0kmh7zjXAqEDJrmHs9O5fI3rV6Tw==", + "dependencies": { + "@firebase/component": "0.5.6", + "@firebase/installations-types": "0.3.4", + "@firebase/util": "1.3.0", + "idb": "3.0.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x", + "@firebase/app-types": "0.x" + } + }, + "node_modules/@firebase/installations-types": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@firebase/installations-types/-/installations-types-0.3.4.tgz", + "integrity": "sha512-RfePJFovmdIXb6rYwtngyxuEcWnOrzdZd9m7xAW0gRxDIjBT20n3BOhjpmgRWXo/DAxRmS7bRjWAyTHY9cqN7Q==", + "peerDependencies": { + "@firebase/app-types": "0.x" + } + }, + "node_modules/@firebase/logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/@firebase/logger/-/logger-0.2.6.tgz", + "integrity": "sha512-KIxcUvW/cRGWlzK9Vd2KB864HlUnCfdTH0taHE0sXW5Xl7+W68suaeau1oKNEqmc3l45azkd4NzXTCWZRZdXrw==" + }, + "node_modules/@firebase/messaging": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@firebase/messaging/-/messaging-0.8.0.tgz", + "integrity": "sha512-hkFHDyVe1kMcY9KEG+prjCbvS6MtLUgVFUbbQqq7JQfiv58E07YCzRUcMrJolbNi/1QHH6Jv16DxNWjJB9+/qA==", + "dependencies": { + "@firebase/component": "0.5.6", + "@firebase/installations": "0.4.32", + "@firebase/messaging-types": "0.5.0", + "@firebase/util": "1.3.0", + "idb": "3.0.2", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x", + "@firebase/app-types": "0.x" + } + }, + "node_modules/@firebase/messaging-types": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@firebase/messaging-types/-/messaging-types-0.5.0.tgz", + "integrity": "sha512-QaaBswrU6umJYb/ZYvjR5JDSslCGOH6D9P136PhabFAHLTR4TWjsaACvbBXuvwrfCXu10DtcjMxqfhdNIB1Xfg==", + "peerDependencies": { + "@firebase/app-types": "0.x" + } + }, + "node_modules/@firebase/performance": { + "version": "0.4.18", + "resolved": "https://registry.npmjs.org/@firebase/performance/-/performance-0.4.18.tgz", + "integrity": "sha512-lvZW/TVDne2TyOpWbv++zjRn277HZpbjxbIPfwtnmKjVY1gJ+H77Qi1c2avVIc9hg80uGX/5tNf4pOApNDJLVg==", + "dependencies": { + "@firebase/component": "0.5.6", + "@firebase/installations": "0.4.32", + "@firebase/logger": "0.2.6", + "@firebase/performance-types": "0.0.13", + "@firebase/util": "1.3.0", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x", + "@firebase/app-types": "0.x" + } + }, + "node_modules/@firebase/performance-types": { + "version": "0.0.13", + "resolved": "https://registry.npmjs.org/@firebase/performance-types/-/performance-types-0.0.13.tgz", + "integrity": "sha512-6fZfIGjQpwo9S5OzMpPyqgYAUZcFzZxHFqOyNtorDIgNXq33nlldTL/vtaUZA8iT9TT5cJlCrF/jthKU7X21EA==" + }, + "node_modules/@firebase/polyfill": { + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@firebase/polyfill/-/polyfill-0.3.36.tgz", + "integrity": "sha512-zMM9oSJgY6cT2jx3Ce9LYqb0eIpDE52meIzd/oe/y70F+v9u1LDqk5kUF5mf16zovGBWMNFmgzlsh6Wj0OsFtg==", + "dependencies": { + "core-js": "3.6.5", + "promise-polyfill": "8.1.3", + "whatwg-fetch": "2.0.4" + } + }, + "node_modules/@firebase/polyfill/node_modules/core-js": { + "version": "3.6.5", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz", + "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==", + "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/@firebase/remote-config": { + "version": "0.1.43", + "resolved": "https://registry.npmjs.org/@firebase/remote-config/-/remote-config-0.1.43.tgz", + "integrity": "sha512-laNM4MN0CfeSp7XCVNjYOC4DdV6mj0l2rzUh42x4v2wLTweCoJ/kc1i4oWMX9TI7Jw8Am5Wl71Awn1J2pVe5xA==", + "dependencies": { + "@firebase/component": "0.5.6", + "@firebase/installations": "0.4.32", + "@firebase/logger": "0.2.6", + "@firebase/remote-config-types": "0.1.9", + "@firebase/util": "1.3.0", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x", + "@firebase/app-types": "0.x" + } + }, + "node_modules/@firebase/remote-config-types": { + "version": "0.1.9", + "resolved": "https://registry.npmjs.org/@firebase/remote-config-types/-/remote-config-types-0.1.9.tgz", + "integrity": "sha512-G96qnF3RYGbZsTRut7NBX0sxyczxt1uyCgXQuH/eAfUCngxjEGcZQnBdy6mvSdqdJh5mC31rWPO4v9/s7HwtzA==" + }, + "node_modules/@firebase/storage": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/@firebase/storage/-/storage-0.7.1.tgz", + "integrity": "sha512-T7uH6lAgNs/Zq8V3ElvR3ypTQSGWon/R7WRM2I5Td/d0PTsNIIHSAGB6q4Au8mQEOz3HDTfjNQ9LuQ07R6S2ug==", + "dependencies": { + "@firebase/component": "0.5.6", + "@firebase/storage-types": "0.5.0", + "@firebase/util": "1.3.0", + "node-fetch": "2.6.7", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x", + "@firebase/app-types": "0.x" + } + }, + "node_modules/@firebase/storage-types": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@firebase/storage-types/-/storage-types-0.5.0.tgz", + "integrity": "sha512-6Wv3Lu7s18hsgW7HG4BFwycTquZ3m/C8bjBoOsmPu0TD6M1GKwCzOC7qBdN7L6tRYPh8ipTj5+rPFrmhGfUVKA==", + "peerDependencies": { + "@firebase/app-types": "0.x", + "@firebase/util": "1.x" + } + }, + "node_modules/@firebase/util": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@firebase/util/-/util-1.3.0.tgz", + "integrity": "sha512-SESvmYwuKOVCZ1ZxLbberbx+9cnbxpCa4CG2FUSQYqN6Ab8KyltegMDIsqMw5KyIBZ4n1phfHoOa22xo5NzAlQ==", + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/@firebase/webchannel-wrapper": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@firebase/webchannel-wrapper/-/webchannel-wrapper-0.5.1.tgz", + "integrity": "sha512-dZMzN0uAjwJXWYYAcnxIwXqRTZw3o14hGe7O6uhwjD1ZQWPVYA5lASgnNskEBra0knVBsOXB4KXg+HnlKewN/A==" + }, + "node_modules/@floating-ui/core": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.5.0.tgz", + "integrity": "sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==", + "dependencies": { + "@floating-ui/utils": "^0.1.3" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.5.3.tgz", + "integrity": "sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==", + "dependencies": { + "@floating-ui/core": "^1.4.2", + "@floating-ui/utils": "^0.1.3" + } + }, + "node_modules/@floating-ui/react-dom": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.0.2.tgz", + "integrity": "sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ==", + "dependencies": { + "@floating-ui/dom": "^1.5.1" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.1.6.tgz", + "integrity": "sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==" + }, + "node_modules/@gar/promisify": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" + }, + "node_modules/@grpc/grpc-js": { + "version": "1.9.7", + "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.9.7.tgz", + "integrity": "sha512-yMaA/cIsRhGzW3ymCNpdlPcInXcovztlgu/rirThj2b87u3RzWUszliOqZ/pldy7yhmJPS8uwog+kZSTa4A0PQ==", + "dependencies": { + "@grpc/proto-loader": "^0.7.8", + "@types/node": ">=12.12.47" + }, + "engines": { + "node": "^8.13.0 || >=10.10.0" + } + }, + "node_modules/@grpc/grpc-js/node_modules/@grpc/proto-loader": { + "version": "0.7.10", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.10.tgz", + "integrity": "sha512-CAqDfoaQ8ykFd9zqBDn4k6iWT9loLAlc2ETmDFS9JCD70gDcnA4L3AFEo2iV7KyAtAAHFW9ftq1Fz+Vsgq80RQ==", + "dependencies": { + "lodash.camelcase": "^4.3.0", + "long": "^5.0.0", + "protobufjs": "^7.2.4", + "yargs": "^17.7.2" + }, + "bin": { + "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@grpc/grpc-js/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@grpc/grpc-js/node_modules/long": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", + "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==" + }, + "node_modules/@grpc/grpc-js/node_modules/protobufjs": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.5.tgz", + "integrity": "sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==", + "hasInstallScript": true, + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/node": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@grpc/grpc-js/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@grpc/grpc-js/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "engines": { + "node": ">=12" + } + }, + "node_modules/@grpc/proto-loader": { + "version": "0.6.13", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.13.tgz", + "integrity": "sha512-FjxPYDRTn6Ec3V0arm1FtSpmP6V50wuph2yILpyvTKzjc76oDdoihXqM1DzOW5ubvCC8GivfCnNtfaRE8myJ7g==", + "dependencies": { + "@types/long": "^4.0.1", + "lodash.camelcase": "^4.3.0", + "long": "^4.0.0", + "protobufjs": "^6.11.3", + "yargs": "^16.2.0" + }, + "bin": { + "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@hapi/address": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz", + "integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==", + "deprecated": "Moved to 'npm install @sideway/address'" + }, + "node_modules/@hapi/bourne": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz", + "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==", + "deprecated": "This version has been deprecated and is no longer supported or maintained" + }, + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "dev": true + }, + "node_modules/@hapi/joi": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz", + "integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==", + "deprecated": "Switch to 'npm install joi'", + "dependencies": { + "@hapi/address": "2.x.x", + "@hapi/bourne": "1.x.x", + "@hapi/hoek": "8.x.x", + "@hapi/topo": "3.x.x" + } + }, + "node_modules/@hapi/joi/node_modules/@hapi/hoek": { + "version": "8.5.1", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz", + "integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==", + "deprecated": "This version has been deprecated and is no longer supported or maintained" + }, + "node_modules/@hapi/joi/node_modules/@hapi/topo": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", + "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", + "deprecated": "This version has been deprecated and is no longer supported or maintained", + "dependencies": { + "@hapi/hoek": "^8.3.0" + } + }, + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + }, + "node_modules/@ionic/cli-framework-output": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@ionic/cli-framework-output/-/cli-framework-output-2.2.6.tgz", + "integrity": "sha512-YLPRwnk5Lw0XQ9pKWG+p2KoR5HjMBigZ6yv+/XtL3TGOnCS1+oAz56ABbAORCjTWhSJQisr8APNFiELAecY6QA==", + "dependencies": { + "@ionic/utils-terminal": "2.3.4", + "debug": "^4.0.0", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@ionic/utils-array": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@ionic/utils-array/-/utils-array-2.1.6.tgz", + "integrity": "sha512-0JZ1Zkp3wURnv8oq6Qt7fMPo5MpjbLoUoa9Bu2Q4PJuSDWM8H8gwF3dQO7VTeUj3/0o1IB1wGkFWZZYgUXZMUg==", + "dependencies": { + "debug": "^4.0.0", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@ionic/utils-fs": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@ionic/utils-fs/-/utils-fs-3.1.7.tgz", + "integrity": "sha512-2EknRvMVfhnyhL1VhFkSLa5gOcycK91VnjfrTB0kbqkTFCOXyXgVLI5whzq7SLrgD9t1aqos3lMMQyVzaQ5gVA==", + "dependencies": { + "@types/fs-extra": "^8.0.0", + "debug": "^4.0.0", + "fs-extra": "^9.0.0", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@ionic/utils-object": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@ionic/utils-object/-/utils-object-2.1.6.tgz", + "integrity": "sha512-vCl7sl6JjBHFw99CuAqHljYJpcE88YaH2ZW4ELiC/Zwxl5tiwn4kbdP/gxi2OT3MQb1vOtgAmSNRtusvgxI8ww==", + "dependencies": { + "debug": "^4.0.0", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@ionic/utils-process": { + "version": "2.1.11", + "resolved": "https://registry.npmjs.org/@ionic/utils-process/-/utils-process-2.1.11.tgz", + "integrity": "sha512-Uavxn+x8j3rDlZEk1X7YnaN6wCgbCwYQOeIjv/m94i1dzslqWhqIHEqxEyeE8HsT5Negboagg7GtQiABy+BLbA==", + "dependencies": { + "@ionic/utils-object": "2.1.6", + "@ionic/utils-terminal": "2.3.4", + "debug": "^4.0.0", + "signal-exit": "^3.0.3", + "tree-kill": "^1.2.2", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@ionic/utils-stream": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@ionic/utils-stream/-/utils-stream-3.1.6.tgz", + "integrity": "sha512-4+Kitey1lTA1yGtnigeYNhV/0tggI3lWBMjC7tBs1K9GXa/q7q4CtOISppdh8QgtOhrhAXS2Igp8rbko/Cj+lA==", + "dependencies": { + "debug": "^4.0.0", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@ionic/utils-subprocess": { + "version": "2.1.12", + "resolved": "https://registry.npmjs.org/@ionic/utils-subprocess/-/utils-subprocess-2.1.12.tgz", + "integrity": "sha512-N05Y+dIXBHofKWJTheCMzVqmgY9wFmZcRv/LdNnfXaaA/mxLTyGxQYeig8fvQXTtDafb/siZXcrTkmQ+y6n3Yg==", + "dependencies": { + "@ionic/utils-array": "2.1.6", + "@ionic/utils-fs": "3.1.7", + "@ionic/utils-process": "2.1.11", + "@ionic/utils-stream": "3.1.6", + "@ionic/utils-terminal": "2.3.4", + "cross-spawn": "^7.0.3", + "debug": "^4.0.0", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@ionic/utils-terminal": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/@ionic/utils-terminal/-/utils-terminal-2.3.4.tgz", + "integrity": "sha512-cEiMFl3jklE0sW60r8JHH3ijFTwh/jkdEKWbylSyExQwZ8pPuwoXz7gpkWoJRLuoRHHSvg+wzNYyPJazIHfoJA==", + "dependencies": { + "@types/slice-ansi": "^4.0.0", + "debug": "^4.0.0", + "signal-exit": "^3.0.3", + "slice-ansi": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "tslib": "^2.0.1", + "untildify": "^4.0.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz", + "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^26.6.2", + "jest-util": "^26.6.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/console/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/console/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/console/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/@jest/console/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/@jest/console/node_modules/jest-message-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/console/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/core": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz", + "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==", + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/reporters": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^26.6.2", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-resolve-dependencies": "^26.6.3", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "jest-watcher": "^26.6.2", + "micromatch": "^4.0.2", + "p-each-series": "^2.1.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/core/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/core/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/@jest/core/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/@jest/core/node_modules/jest-message-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/core/node_modules/jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/core/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/environment": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz", + "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==", + "dependencies": { + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/environment/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/environment/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/environment/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "dependencies": { + "jest-get-type": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz", + "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==", + "dependencies": { + "@jest/types": "^26.6.2", + "@sinonjs/fake-timers": "^6.0.1", + "@types/node": "*", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/fake-timers/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/fake-timers/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/fake-timers/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/fake-timers/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/@jest/fake-timers/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/@jest/fake-timers/node_modules/jest-message-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/fake-timers/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/globals": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz", + "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==", + "dependencies": { + "@jest/environment": "^26.6.2", + "@jest/types": "^26.6.2", + "expect": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/globals/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/globals/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/globals/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/globals/node_modules/diff-sequences": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/globals/node_modules/expect": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz", + "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-styles": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/globals/node_modules/jest-diff": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/globals/node_modules/jest-get-type": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/globals/node_modules/jest-matcher-utils": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz", + "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/globals/node_modules/jest-message-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/reporters": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz", + "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^7.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "optionalDependencies": { + "node-notifier": "^8.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/reporters/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/reporters/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/@jest/reporters/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "dependencies": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/reporters/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/reporters/node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/@jest/reporters/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@jest/reporters/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz", + "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/source-map/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/test-result": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz", + "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==", + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/test-result/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/test-result/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/test-result/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz", + "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==", + "dependencies": { + "@jest/test-result": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/transform": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz", + "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^26.6.2", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-util": "^26.6.2", + "micromatch": "^4.0.2", + "pirates": "^4.0.1", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/transform/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/transform/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/transform/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/@jest/transform/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/@jest/transform/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/transform/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", + "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@malept/cross-spawn-promise": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", + "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/malept" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" + } + ], + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/@malept/flatpak-bundler": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz", + "integrity": "sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "fs-extra": "^9.0.0", + "lodash": "^4.17.15", + "tmp-promise": "^3.0.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@mapbox/node-pre-gyp": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", + "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", + "dependencies": { + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" + }, + "bin": { + "node-pre-gyp": "bin/node-pre-gyp" + } + }, + "node_modules/@mui/base": { + "version": "5.0.0-beta.20", + "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.20.tgz", + "integrity": "sha512-CS2pUuqxST7ch9VNDCklRYDbJ3rru20Tx7na92QvVVKfu3RL4z/QLuVIc8jYGsdCnauMaeUSlFNLAJNb0yXe6w==", + "dependencies": { + "@babel/runtime": "^7.23.1", + "@floating-ui/react-dom": "^2.0.2", + "@mui/types": "^7.2.6", + "@mui/utils": "^5.14.13", + "@popperjs/core": "^2.11.8", + "clsx": "^2.0.0", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0", + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/core-downloads-tracker": { + "version": "5.14.14", + "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.14.14.tgz", + "integrity": "sha512-Rw/xKiTOUgXD8hdKqj60aC6QcGprMipG7ne2giK6Mz7b4PlhL/xog9xLeclY3BxsRLkZQ05egFnIEY1CSibTbw==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + } + }, + "node_modules/@mui/icons-material": { + "version": "5.14.14", + "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.14.14.tgz", + "integrity": "sha512-vwuaMsKvI7AWTeYqR8wYbpXijuU8PzMAJWRAq2DDIuOZPxjKyHlr8WQ25+azZYkIXtJ7AqnVb1ZmHdEyB4/kug==", + "dependencies": { + "@babel/runtime": "^7.23.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "@mui/material": "^5.0.0", + "@types/react": "^17.0.0 || ^18.0.0", + "react": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/lab": { + "version": "5.0.0-alpha.149", + "resolved": "https://registry.npmjs.org/@mui/lab/-/lab-5.0.0-alpha.149.tgz", + "integrity": "sha512-azOkKcyVX4KBZAqSp7eRD4OfKrUrvQXo7x2BjFJil+UeAJiMpB6I5lALo2PDZz3vjtJnHqlURnZtxZOHs1zfEA==", + "dependencies": { + "@babel/runtime": "^7.23.1", + "@mui/base": "5.0.0-beta.20", + "@mui/system": "^5.14.14", + "@mui/types": "^7.2.6", + "@mui/utils": "^5.14.13", + "@mui/x-tree-view": "6.0.0-alpha.1", + "clsx": "^2.0.0", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "@emotion/react": "^11.5.0", + "@emotion/styled": "^11.3.0", + "@mui/material": "^5.0.0", + "@types/react": "^17.0.0 || ^18.0.0", + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/material": { + "version": "5.14.14", + "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.14.14.tgz", + "integrity": "sha512-cAmCwAHFQXxb44kWbVFkhKATN8tACgMsFwrXo8ro6WzYW73U/qsR5AcCiJIhCyYYg+gcftfkmNcpRaV3JjhHCg==", + "dependencies": { + "@babel/runtime": "^7.23.1", + "@mui/base": "5.0.0-beta.20", + "@mui/core-downloads-tracker": "^5.14.14", + "@mui/system": "^5.14.14", + "@mui/types": "^7.2.6", + "@mui/utils": "^5.14.13", + "@types/react-transition-group": "^4.4.7", + "clsx": "^2.0.0", + "csstype": "^3.1.2", + "prop-types": "^15.8.1", + "react-is": "^18.2.0", + "react-transition-group": "^4.4.5" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "@emotion/react": "^11.5.0", + "@emotion/styled": "^11.3.0", + "@types/react": "^17.0.0 || ^18.0.0", + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/private-theming": { + "version": "5.14.14", + "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.14.14.tgz", + "integrity": "sha512-n77au3CQj9uu16hak2Y+rvbGSBaJKxziG/gEbOLVGrAuqZ+ycVSkorCfN6Y/4XgYOpG/xvmuiY3JwhAEOzY3iA==", + "dependencies": { + "@babel/runtime": "^7.23.1", + "@mui/utils": "^5.14.13", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0", + "react": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/styled-engine": { + "version": "5.14.14", + "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.14.14.tgz", + "integrity": "sha512-sF3DS2PVG+cFWvkVHQQaGFpL1h6gSwOW3L91pdxPLQDHDZ5mZ/X0SlXU5XA+WjypoysG4urdAQC7CH/BRvUiqg==", + "dependencies": { + "@babel/runtime": "^7.23.1", + "@emotion/cache": "^11.11.0", + "csstype": "^3.1.2", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "@emotion/react": "^11.4.1", + "@emotion/styled": "^11.3.0", + "react": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + } + } + }, + "node_modules/@mui/styles": { + "version": "5.14.14", + "resolved": "https://registry.npmjs.org/@mui/styles/-/styles-5.14.14.tgz", + "integrity": "sha512-+LzSg7IjfxJRukIPULfAd025qsSCquHrTEC10EYjxbJJvHuE5nWx9D9w7lSRXxfWrxZZx+92rTUKVk9607zXBA==", + "dependencies": { + "@babel/runtime": "^7.23.1", + "@emotion/hash": "^0.9.1", + "@mui/private-theming": "^5.14.14", + "@mui/types": "^7.2.6", + "@mui/utils": "^5.14.13", + "clsx": "^2.0.0", + "csstype": "^3.1.2", + "hoist-non-react-statics": "^3.3.2", + "jss": "^10.10.0", + "jss-plugin-camel-case": "^10.10.0", + "jss-plugin-default-unit": "^10.10.0", + "jss-plugin-global": "^10.10.0", + "jss-plugin-nested": "^10.10.0", + "jss-plugin-props-sort": "^10.10.0", + "jss-plugin-rule-value-function": "^10.10.0", + "jss-plugin-vendor-prefixer": "^10.10.0", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0", + "react": "^17.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/system": { + "version": "5.14.14", + "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.14.14.tgz", + "integrity": "sha512-y4InFmCgGGWXnz+iK4jRTWVikY0HgYnABjz4wgiUgEa2W1H8M4ow+27BegExUWPkj4TWthQ2qG9FOGSMtI+PKA==", + "dependencies": { + "@babel/runtime": "^7.23.1", + "@mui/private-theming": "^5.14.14", + "@mui/styled-engine": "^5.14.13", + "@mui/types": "^7.2.6", + "@mui/utils": "^5.14.13", + "clsx": "^2.0.0", + "csstype": "^3.1.2", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "@emotion/react": "^11.5.0", + "@emotion/styled": "^11.3.0", + "@types/react": "^17.0.0 || ^18.0.0", + "react": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/types": { + "version": "7.2.6", + "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.6.tgz", + "integrity": "sha512-7sjLQrUmBwufm/M7jw/quNiPK/oor2+pGUQP2CULRcFCArYTq78oJ3D5esTaL0UMkXKJvDqXn6Ike69yAOBQng==", + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/utils": { + "version": "5.14.14", + "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.14.14.tgz", + "integrity": "sha512-3AKp8uksje5sRfVrtgG9Q/2TBsHWVBUtA0NaXliZqGcXo8J+A+Agp0qUW2rJ+ivgPWTCCubz9FZVT2IQZ3bGsw==", + "dependencies": { + "@babel/runtime": "^7.23.1", + "@types/prop-types": "^15.7.7", + "prop-types": "^15.8.1", + "react-is": "^18.2.0" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0", + "react": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/x-tree-view": { + "version": "6.0.0-alpha.1", + "resolved": "https://registry.npmjs.org/@mui/x-tree-view/-/x-tree-view-6.0.0-alpha.1.tgz", + "integrity": "sha512-JUG3HmBrmGEALbCFg1b+i7h726e1dWYZs4db3syO1j+Q++E3nbvE4Lehp5yGTFm+8esH0Tny50tuJaa4WX6VSA==", + "dependencies": { + "@babel/runtime": "^7.22.6", + "@mui/utils": "^5.14.3", + "@types/react-transition-group": "^4.4.6", + "clsx": "^2.0.0", + "prop-types": "^15.8.1", + "react-transition-group": "^4.4.5" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "@emotion/react": "^11.9.0", + "@emotion/styled": "^11.8.1", + "@mui/base": "^5.0.0-alpha.87", + "@mui/material": "^5.8.6", + "@mui/system": "^5.8.0", + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@npmcli/fs": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", + "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", + "dependencies": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "node_modules/@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "deprecated": "This functionality has been moved to @npmcli/fs", + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/move-file/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.3.tgz", + "integrity": "sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==", + "dependencies": { + "ansi-html": "^0.0.7", + "error-stack-parser": "^2.0.6", + "html-entities": "^1.2.1", + "native-url": "^0.2.6", + "schema-utils": "^2.6.5", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.x" + }, + "peerDependencies": { + "@types/webpack": "4.x", + "react-refresh": ">=0.8.3 <0.10.0", + "sockjs-client": "^1.4.0", + "type-fest": "^0.13.1", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@protobufjs/aspromise": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==" + }, + "node_modules/@protobufjs/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==" + }, + "node_modules/@protobufjs/codegen": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==" + }, + "node_modules/@protobufjs/eventemitter": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==" + }, + "node_modules/@protobufjs/fetch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", + "dependencies": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "node_modules/@protobufjs/float": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==" + }, + "node_modules/@protobufjs/inquire": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==" + }, + "node_modules/@protobufjs/path": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==" + }, + "node_modules/@protobufjs/pool": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==" + }, + "node_modules/@protobufjs/utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==" + }, + "node_modules/@remix-run/router": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.10.0.tgz", + "integrity": "sha512-Lm+fYpMfZoEucJ7cMxgt4dYt8jLfbpwRCzAjm9UgSLOkmlqo9gupxt6YX3DY0Fk155NT9l17d/ydi+964uS9Lw==", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.3.tgz", + "integrity": "sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==", + "dependencies": { + "@rollup/pluginutils": "^3.0.8", + "@types/resolve": "0.0.8", + "builtin-modules": "^3.1.0", + "is-module": "^1.0.0", + "resolve": "^1.14.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", + "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "peerDependencies": { + "rollup": "^1.20.0 || ^2.0.0" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + }, + "node_modules/@sideway/address": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", + "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@sideway/formula": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", + "dev": true + }, + "node_modules/@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "dev": true + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, + "node_modules/@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz", + "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz", + "integrity": "sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A==", + "dependencies": { + "ejs": "^2.6.1", + "magic-string": "^0.25.0" + } + }, + "node_modules/@surma/rollup-plugin-off-main-thread/node_modules/ejs": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz", + "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==", + "hasInstallScript": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "dependencies": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "dependencies": { + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "dependencies": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/@svgr/plugin-svgo/node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "node_modules/@svgr/plugin-svgo/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "node_modules/@svgr/plugin-svgo/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "node_modules/@svgr/plugin-svgo/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "node_modules/@svgr/plugin-svgo/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "dev": true, + "dependencies": { + "defer-to-connect": "^1.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@testing-library/dom": { + "version": "7.31.2", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-7.31.2.tgz", + "integrity": "sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^4.2.0", + "aria-query": "^4.2.2", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.6", + "lz-string": "^1.4.4", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@testing-library/dom/node_modules/aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", + "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "dependencies": { + "@babel/runtime": "^7.10.2", + "@babel/runtime-corejs3": "^7.10.2" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/@testing-library/dom/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@testing-library/jest-dom": { + "version": "5.17.0", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.17.0.tgz", + "integrity": "sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==", + "dependencies": { + "@adobe/css-tools": "^4.0.1", + "@babel/runtime": "^7.9.2", + "@types/testing-library__jest-dom": "^5.9.1", + "aria-query": "^5.0.0", + "chalk": "^3.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.5.6", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "engines": { + "node": ">=8", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/@testing-library/react": { + "version": "11.2.7", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-11.2.7.tgz", + "integrity": "sha512-tzRNp7pzd5QmbtXNG/mhdcl7Awfu/Iz1RaVHY75zTdOkmHCuzMhRL83gWHSgOAcjS3CCbyfwUHMZgRJb4kAfpA==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^7.28.1" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/@testing-library/user-event": { + "version": "12.8.3", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-12.8.3.tgz", + "integrity": "sha512-IR0iWbFkgd56Bu5ZI/ej8yQwrkCv8Qydx6RzwbKz9faXazR/+5tvYKsZQgyXJiwgpcva127YO6JcWy7YlCfofQ==", + "dependencies": { + "@babel/runtime": "^7.12.5" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + }, + "peerDependencies": { + "@testing-library/dom": ">=7.21.4" + } + }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.2.tgz", + "integrity": "sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==" + }, + "node_modules/@types/babel__core": { + "version": "7.20.3", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.3.tgz", + "integrity": "sha512-54fjTSeSHwfan8AyHWrKbfBWiEUrNTZsUwPTDSNaaP1QDQIZbeNUg3a59E9D+375MzUw/x1vx2/0F5LBz+AeYA==", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.6", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.6.tgz", + "integrity": "sha512-66BXMKb/sUWbMdBNdMvajU7i/44RkrA3z/Yt1c7R5xejt8qh84iU54yUWCtm0QwGJlDcf/gg4zd/x4mpLAlb/w==", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.3", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.3.tgz", + "integrity": "sha512-ciwyCLeuRfxboZ4isgdNZi/tkt06m8Tw6uGbBSBgWrnnZGNXiEyM27xc/PjXGQLqlZ6ylbgHMnm7ccF9tCkOeQ==", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.3", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.3.tgz", + "integrity": "sha512-Lsh766rGEFbaxMIDH7Qa+Yha8cMVI3qAK6CHt3OR0YfxOIn5Z54iHiyDRycHrBqeIiqGa20Kpsv1cavfBKkRSw==", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/bytebuffer": { + "version": "5.0.46", + "resolved": "https://registry.npmjs.org/@types/bytebuffer/-/bytebuffer-5.0.46.tgz", + "integrity": "sha512-QxINdj2nX5ITZfRk4fOZza9IGVJ0QLBeVIuUcEEcmTm1MyPn0PRiK+tf8K7XXwJ+fjT9S5aKt+z78NlCm2RNtA==", + "dependencies": { + "@types/long": "^3.0.0", + "@types/node": "*" + } + }, + "node_modules/@types/bytebuffer/node_modules/@types/long": { + "version": "3.0.32", + "resolved": "https://registry.npmjs.org/@types/long/-/long-3.0.32.tgz", + "integrity": "sha512-ZXyOOm83p7X8p3s0IYM3VeueNmHpkk/yMlP8CLeOnEcu6hIwPH7YjZBvhQkR0ZFS2DqZAxKtJ/M5fcuv3OU5BA==" + }, + "node_modules/@types/debug": { + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.10.tgz", + "integrity": "sha512-tOSCru6s732pofZ+sMv9o4o3Zc+Sa8l3bxd/tweTQudFn06vAzb13ZX46Zi6m6EJ+RUbRTHvgQJ1gBtSgkaUYA==", + "dev": true, + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/eslint": { + "version": "8.44.6", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.6.tgz", + "integrity": "sha512-P6bY56TVmX8y9J87jHNgQh43h6VVU+6H7oN7hgvivV81K2XY8qJZ5vqPy/HdUoVIelii2kChYVzQanlswPWVFw==", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.3.tgz", + "integrity": "sha512-CS2rOaoQ/eAgAfcTfq6amKG7bsN+EMcgGY4FAFQdvSj2y1ixvOZTUA9mOtCai7E1SYu283XNw7urKK30nP3wkQ==" + }, + "node_modules/@types/fs-extra": { + "version": "8.1.4", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-8.1.4.tgz", + "integrity": "sha512-OMcQKnlrkrOI0TaZ/MgVDA8LYFl7CykzFsjMj9l5x3un2nFxCY20ZFlnqrM0lcqlbs0Yro2HbnZlmopyRaoJ5w==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.8", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.8.tgz", + "integrity": "sha512-NhRH7YzWq8WiNKVavKPBmtLYZHxNY19Hh+az28O/phfp68CF45pMFud+ZzJ8ewnxnC5smIdF3dqFeiSUQ5I+pw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz", + "integrity": "sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==" + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", + "integrity": "sha512-zONci81DZYCZjiLe0r6equvZut0b+dBRPBN5kBDjsONnutYNtJMoWQ9uR2RkL1gLG9NMTzvf+29e5RFfPbeKhQ==" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.2.tgz", + "integrity": "sha512-8toY6FgdltSdONav1XtUHl4LN1yTmLza+EuDazb/fEmRNCwjyqNVIQWs2IfC74IqjHkREs/nQ2FWq5kZU9IC0w==", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.3.tgz", + "integrity": "sha512-1nESsePMBlf0RPRffLZi5ujYh7IH1BWL4y9pr+Bn3cJBdxz+RTP8bUFljLz9HvzhhOSWKdyBZ4DIivdL6rvgZg==", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "29.5.6", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.6.tgz", + "integrity": "sha512-/t9NnzkOpXb4Nfvg17ieHE6EeSjDS2SGSpNYfoLbUAeL/EOueU/RSdOWFpfQTXBEM7BguYW1XQ0EbM+6RlIh6w==", + "dependencies": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + } + }, + "node_modules/@types/jest/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.14", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.14.tgz", + "integrity": "sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw==" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "node_modules/@types/long": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz", + "integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==" + }, + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" + }, + "node_modules/@types/ms": { + "version": "0.7.33", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.33.tgz", + "integrity": "sha512-AuHIyzR5Hea7ij0P9q7vx7xu4z0C28ucwjAZC0ja7JhINyCnOw8/DnvAPQQ9TfOlCtZAmCERKQX9+o1mgQhuOQ==", + "dev": true + }, + "node_modules/@types/node": { + "version": "20.8.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.7.tgz", + "integrity": "sha512-21TKHHh3eUHIi2MloeptJWALuCu5H7HQTdTrWIFReA8ad+aggoX+lRes3ex7/FtpC+sVUpFMQ+QTfYr74mruiQ==", + "dependencies": { + "undici-types": "~5.25.1" + } + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.3.tgz", + "integrity": "sha512-ehPtgRgaULsFG8x0NeYJvmyH1hmlfsNLujHe9dQEia/7MAJYdzMSi19JtchUHjmBA6XC/75dK55mzZH+RyieSg==" + }, + "node_modules/@types/parse-json": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.1.tgz", + "integrity": "sha512-3YmXzzPAdOTVljVMkTMBdBEvlOLg2cDQaDhnnhT3nT9uDbnJzjWhKlzb+desT12Y7tGqaN6d+AbozcKzyL36Ng==" + }, + "node_modules/@types/plist": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/plist/-/plist-3.0.4.tgz", + "integrity": "sha512-pTa9xUFQFM9WJGSWHajYNljD+DbVylE1q9IweK1LBhUYJdJ28YNU8j3KZ4Q1Qw+cSl4+QLLLOVmqNjhhvVO8fA==", + "dev": true, + "optional": true, + "dependencies": { + "@types/node": "*", + "xmlbuilder": ">=11.0.1" + } + }, + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.9", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.9.tgz", + "integrity": "sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==" + }, + "node_modules/@types/q": { + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.7.tgz", + "integrity": "sha512-HBPgtzp44867rkL+IzQ3560/E/BlobwCjeXsuKqogrcE99SKgZR4tvBBCuNJZMhUFMz26M7cjKWZg785lllwpA==" + }, + "node_modules/@types/react": { + "version": "18.2.31", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.31.tgz", + "integrity": "sha512-c2UnPv548q+5DFh03y8lEDeMfDwBn9G3dRwfkrxQMo/dOtRHUUO57k6pHvBIfH/VF4Nh+98mZ5aaSe+2echD5g==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-select": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@types/react-select/-/react-select-5.0.1.tgz", + "integrity": "sha512-h5Im0AP0dr4AVeHtrcvQrLV+gmPa7SA0AGdxl2jOhtwiE6KgXBFSogWw8az32/nusE6AQHlCOHQWjP1S/+oMWA==", + "deprecated": "This is a stub types definition. react-select provides its own type definitions, so you do not need this installed.", + "dev": true, + "dependencies": { + "react-select": "*" + } + }, + "node_modules/@types/react-transition-group": { + "version": "4.4.8", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.8.tgz", + "integrity": "sha512-QmQ22q+Pb+HQSn04NL3HtrqHwYMf4h3QKArOy5F8U5nEVMaihBs3SR10WiOM1iwPz5jIo8x/u11al+iEGZZrvg==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/resolve": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz", + "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.5", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.5.tgz", + "integrity": "sha512-s/FPdYRmZR8SjLWGMCuax7r3qCWQw9QKHzXVukAuuIJkXkDRwp+Pu5LMIVFi0Fxbav35WURicYr8u1QsoybnQw==" + }, + "node_modules/@types/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-+OpjSaq85gvlZAYINyzKpLeiFkSC4EsC6IIiT6v6TLSU5k5U83fHGj9Lel8oKEXM0HqgrMVCjXPDPVICtxF7EQ==" + }, + "node_modules/@types/source-list-map": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.4.tgz", + "integrity": "sha512-Kdfm7Sk5VX8dFW7Vbp18+fmAatBewzBILa1raHYxrGEFXT0jNl9x3LWfuW7bTbjEKFNey9Dfkj/UzT6z/NvRlg==" + }, + "node_modules/@types/stack-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.2.tgz", + "integrity": "sha512-g7CK9nHdwjK2n0ymT2CW698FuWJRIx+RP6embAzZ2Qi8/ilIrA1Imt2LVSeHUzKvpoi7BhmmQcXz95eS0f2JXw==" + }, + "node_modules/@types/tapable": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.10.tgz", + "integrity": "sha512-q8F20SdXG5fdVJQ5yxsVlH+f+oekP42QeHv4s5KlrxTMT0eopXn7ol1rhxMcksf8ph7XNv811iVDE2hOpUvEPg==" + }, + "node_modules/@types/testing-library__jest-dom": { + "version": "5.14.9", + "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.9.tgz", + "integrity": "sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==", + "dependencies": { + "@types/jest": "*" + } + }, + "node_modules/@types/uglify-js": { + "version": "3.17.3", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.3.tgz", + "integrity": "sha512-ToldSfJ6wxO21cakcz63oFD1GjqQbKzhZCD57eH7zWuYT5UEZvfUoqvrjX5d+jB9g4a/sFO0n6QSVzzn5sMsjg==", + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/@types/uglify-js/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/verror": { + "version": "1.10.8", + "resolved": "https://registry.npmjs.org/@types/verror/-/verror-1.10.8.tgz", + "integrity": "sha512-YhUhnxRYs/NiVUbIs3F/EzviDP/NZCEAE2Mx5DUqLdldUmphOhFCVh7Kc+7zlYEExM0P8dzfbJi0yRlNb2Bw5g==", + "dev": true, + "optional": true + }, + "node_modules/@types/webpack": { + "version": "4.41.35", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.35.tgz", + "integrity": "sha512-XRC6HLGHtNfN8/xWeu1YUQV1GSE+28q8lSqvcJ+0xt/zW9Wmn4j9pCSvaXPyRlCKrl5OuqECQNEJUy2vo8oWqg==", + "dependencies": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/@types/webpack-sources": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.2.tgz", + "integrity": "sha512-acCzhuVe+UJy8abiSFQWXELhhNMZjQjQKpLNEi1pKGgKXZj0ul614ATcx4kkhunPost6Xw+aCq8y8cn1/WwAiA==", + "dependencies": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + } + }, + "node_modules/@types/webpack-sources/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@types/webpack/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/yargs": { + "version": "17.0.29", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.29.tgz", + "integrity": "sha512-nacjqA3ee9zRF/++a3FUY1suHTFKZeHba2n8WeDw9cCVdmzmHpIxyzOJBcpHvvEmS8E9KqWlSnWHUkOrkhWcvA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.2", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.2.tgz", + "integrity": "sha512-5qcvofLPbfjmBfKaLfj/+f+Sbd6pN4zl7w7VSVI5uz7m9QZTuB2aZAa2uo1wHFBNN2x6g/SoTkXmd8mQnQF2Cw==" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz", + "integrity": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==", + "dependencies": { + "@typescript-eslint/experimental-utils": "4.33.0", + "@typescript-eslint/scope-manager": "4.33.0", + "debug": "^4.3.1", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.1.8", + "regexpp": "^3.1.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^4.0.0", + "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", + "integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", + "dependencies": { + "@types/json-schema": "^7.0.7", + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz", + "integrity": "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==", + "dependencies": { + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "debug": "^4.3.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", + "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", + "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==", + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", + "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0", + "debug": "^4.3.1", + "globby": "^11.0.3", + "is-glob": "^4.0.1", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", + "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dependencies": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" + }, + "node_modules/@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "dependencies": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" + }, + "node_modules/@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xmldom/xmldom": { + "version": "0.8.10", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", + "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "node_modules/7zip-bin": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/7zip-bin/-/7zip-bin-5.1.1.tgz", + "integrity": "sha512-sAP4LldeWNz0lNzmTird3uWfFDWWTeg6V/MsmyyLR9X1idwKBWIgt/ZvinqQldJm3LecKEs1emkbquO6PCiLVQ==", + "dev": true + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", + "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==", + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "peerDependencies": { + "ajv": ">=5.0.0" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==" + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dev": true, + "dependencies": { + "string-width": "^4.1.0" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/app-builder-bin": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/app-builder-bin/-/app-builder-bin-3.7.1.tgz", + "integrity": "sha512-ql93vEUq6WsstGXD+SBLSIQw6SNnhbDEM0swzgugytMxLp3rT24Ag/jcC80ZHxiPRTdew1niuR7P3/FCrDqIjw==", + "dev": true + }, + "node_modules/app-builder-lib": { + "version": "22.14.13", + "resolved": "https://registry.npmjs.org/app-builder-lib/-/app-builder-lib-22.14.13.tgz", + "integrity": "sha512-SufmrtxU+D0Tn948fjEwAOlCN9757UXLkzzTWXMwZKR/5hisvgqeeBepWfphMIE6OkDGz0fbzEhL1P2Pty4XMg==", + "dev": true, + "dependencies": { + "@develar/schema-utils": "~2.6.5", + "@electron/universal": "1.0.5", + "@malept/flatpak-bundler": "^0.4.0", + "7zip-bin": "~5.1.1", + "async-exit-hook": "^2.0.1", + "bluebird-lst": "^1.0.9", + "builder-util": "22.14.13", + "builder-util-runtime": "8.9.2", + "chromium-pickle-js": "^0.2.0", + "debug": "^4.3.2", + "ejs": "^3.1.6", + "electron-osx-sign": "^0.5.0", + "electron-publish": "22.14.13", + "form-data": "^4.0.0", + "fs-extra": "^10.0.0", + "hosted-git-info": "^4.0.2", + "is-ci": "^3.0.0", + "isbinaryfile": "^4.0.8", + "js-yaml": "^4.1.0", + "lazy-val": "^1.0.5", + "minimatch": "^3.0.4", + "read-config-file": "6.2.0", + "sanitize-filename": "^1.6.3", + "semver": "^7.3.5", + "temp-file": "^3.4.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/app-builder-lib/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" + }, + "node_modules/are-we-there-yet": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/are-we-there-yet/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/arity-n": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz", + "integrity": "sha512-fExL2kFDC1Q2DUOx3whE/9KoN66IzkY4b4zUHUBFM1ojEYjZZYDcUW3bek/ufGionX9giIKDC5redH2IlGqcQQ==" + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + }, + "node_modules/array-includes": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.reduce": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.6.tgz", + "integrity": "sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", + "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "engines": { + "node": ">=8" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + }, + "node_modules/asar": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/asar/-/asar-3.2.0.tgz", + "integrity": "sha512-COdw2ZQvKdFGFxXwX3oYh2/sOsJWJegrdJCGxnN4MZ7IULgRBp9P6665aqj9z1v9VwP4oP1hRBojRDQ//IGgAg==", + "deprecated": "Please use @electron/asar moving forward. There is no API change, just a package name change", + "dev": true, + "dependencies": { + "chromium-pickle-js": "^0.2.0", + "commander": "^5.0.0", + "glob": "^7.1.6", + "minimatch": "^3.0.4" + }, + "bin": { + "asar": "bin/asar.js" + }, + "engines": { + "node": ">=10.12.0" + }, + "optionalDependencies": { + "@types/glob": "^7.1.1" + } + }, + "node_modules/asar/node_modules/commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/ascli": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ascli/-/ascli-1.0.1.tgz", + "integrity": "sha512-JGQaNxpaCJz9Bd1JvVaFIHuWn9S+l3xhN17R0V/vmUDiGE0QngNMXhjlqpwqV+91plWz9Fg+Lt28Lj7p5vjs8A==", + "dependencies": { + "colour": "~0.7.1", + "optjs": "~3.2.2" + } + }, + "node_modules/asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/asn1.js/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/assert": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.1.tgz", + "integrity": "sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==", + "dependencies": { + "object.assign": "^4.1.4", + "util": "^0.10.4" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/assert/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "node_modules/assert/node_modules/util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "dev": true + }, + "node_modules/async-each": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", + "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ] + }, + "node_modules/async-exit-hook": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/async-exit-hook/-/async-exit-hook-2.0.1.tgz", + "integrity": "sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + }, + "node_modules/asynciterator.prototype": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "dependencies": { + "has-symbols": "^1.0.3" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/autoprefixer": { + "version": "9.8.8", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", + "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", + "dependencies": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "picocolors": "^0.2.1", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.8.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.8.2.tgz", + "integrity": "sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/axios": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz", + "integrity": "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.14.7" + } + }, + "node_modules/axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", + "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", + "deprecated": "babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "eslint": ">= 4.12.1" + } + }, + "node_modules/babel-eslint/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-extract-comments": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz", + "integrity": "sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==", + "dependencies": { + "babylon": "^6.18.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-jest": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz", + "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==", + "dependencies": { + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-jest/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/babel-jest/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/babel-jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/babel-loader": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.1.0.tgz", + "integrity": "sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==", + "dependencies": { + "find-cache-dir": "^2.1.0", + "loader-utils": "^1.4.0", + "mkdirp": "^0.5.3", + "pify": "^4.0.1", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 6.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/babel-loader/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/babel-loader/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz", + "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/babel-plugin-macros/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/babel-plugin-named-asset-import": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz", + "integrity": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==", + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.4.3", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.5.tgz", + "integrity": "sha512-Q6CdATeAvbScWPNLB8lzSO7fgUVBkQt6zLgNlfyeCr/EQaEQR+bWiBYYPYAFyE528BMjRhL+1QBMOI4jc/c5TA==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.3", + "core-js-compat": "^3.32.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz", + "integrity": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.3" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-syntax-object-rest-spread": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", + "integrity": "sha512-C4Aq+GaAj83pRQ0EFgTvw5YO6T3Qz2KGrNRwIj9mSoNHVvdZY4KO2uA6HNtNXCw993iSZnckY1aLW8nOi8i4+w==" + }, + "node_modules/babel-plugin-transform-object-rest-spread": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz", + "integrity": "sha512-ocgA9VJvyxwt+qJB0ncxV8kb/CjfTcECUY4tQ5VT7nP6Aohzobm8CDFaQ5FHdvZQzLmf0sgDxB8iRXZXxwZcyA==", + "dependencies": { + "babel-plugin-syntax-object-rest-spread": "^6.8.0", + "babel-runtime": "^6.26.0" + } + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz", + "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==", + "dependencies": { + "babel-plugin-jest-hoist": "^26.6.2", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-react-app": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", + "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/core": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.2.tgz", + "integrity": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.0", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-module-transforms": "^7.23.0", + "@babel/helpers": "^7.23.2", + "@babel/parser": "^7.23.0", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.2", + "@babel/types": "^7.23.0", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/babel-preset-react-app/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + }, + "node_modules/babel-preset-react-app/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==", + "dependencies": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "node_modules/babel-runtime/node_modules/core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", + "hasInstallScript": true + }, + "node_modules/babel-runtime/node_modules/regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + }, + "node_modules/babylon": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", + "bin": { + "babylon": "bin/babylon.js" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + }, + "node_modules/bfj": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.1.0.tgz", + "integrity": "sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==", + "dependencies": { + "bluebird": "^3.7.2", + "check-types": "^11.2.3", + "hoopy": "^0.1.4", + "jsonpath": "^1.1.1", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/big-integer": { + "version": "1.6.51", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", + "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "node_modules/bluebird-lst": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/bluebird-lst/-/bluebird-lst-1.0.9.tgz", + "integrity": "sha512-7B1Rtx82hjnSD4PGLAjVWeYH3tHAcVUmChh85a3lltKQm6FresXh9ErQo6oAv6CqxttczC3/kEg8SY5NluPuUw==", + "dev": true, + "dependencies": { + "bluebird": "^3.5.5" + } + }, + "node_modules/bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/body-parser/node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", + "dependencies": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + }, + "node_modules/boolean": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", + "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==", + "dev": true, + "optional": true + }, + "node_modules/boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "dev": true, + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/boxen/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bplist-parser": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.2.tgz", + "integrity": "sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==", + "dependencies": { + "big-integer": "1.6.x" + }, + "engines": { + "node": ">= 5.10.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==" + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dependencies": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dependencies": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dependencies": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "node_modules/browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dependencies": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + } + }, + "node_modules/browserify-sign/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/browserify-sign/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dependencies": { + "pako": "~1.0.5" + } + }, + "node_modules/browserslist": { + "version": "4.14.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz", + "integrity": "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==", + "dependencies": { + "caniuse-lite": "^1.0.30001125", + "electron-to-chromium": "^1.3.564", + "escalade": "^3.0.2", + "node-releases": "^1.1.61" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "optional": true, + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "dev": true, + "dependencies": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "node_modules/buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "dev": true + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "engines": { + "node": "*" + } + }, + "node_modules/buffer-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", + "integrity": "sha512-tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", + "dev": true + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==" + }, + "node_modules/builder-util": { + "version": "22.14.13", + "resolved": "https://registry.npmjs.org/builder-util/-/builder-util-22.14.13.tgz", + "integrity": "sha512-oePC/qrrUuerhmH5iaCJzPRAKlSBylrhzuAJmRQClTyWnZUv6jbaHh+VoHMbEiE661wrj2S2aV7/bQh12cj1OA==", + "dev": true, + "dependencies": { + "@types/debug": "^4.1.6", + "@types/fs-extra": "^9.0.11", + "7zip-bin": "~5.1.1", + "app-builder-bin": "3.7.1", + "bluebird-lst": "^1.0.9", + "builder-util-runtime": "8.9.2", + "chalk": "^4.1.1", + "cross-spawn": "^7.0.3", + "debug": "^4.3.2", + "fs-extra": "^10.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-ci": "^3.0.0", + "js-yaml": "^4.1.0", + "source-map-support": "^0.5.19", + "stat-mode": "^1.0.0", + "temp-file": "^3.4.0" + } + }, + "node_modules/builder-util-runtime": { + "version": "8.9.2", + "resolved": "https://registry.npmjs.org/builder-util-runtime/-/builder-util-runtime-8.9.2.tgz", + "integrity": "sha512-rhuKm5vh7E0aAmT6i8aoSfEjxzdYEFX7zDApK+eNgOhjofnWb74d9SRJv0H/8nsgOkos0TZ4zxW0P8J4N7xQ2A==", + "dev": true, + "dependencies": { + "debug": "^4.3.2", + "sax": "^1.2.4" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/builder-util/node_modules/@types/fs-extra": { + "version": "9.0.13", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz", + "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/builder-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/builder-util/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==" + }, + "node_modules/bytebuffer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/bytebuffer/-/bytebuffer-5.0.1.tgz", + "integrity": "sha512-IuzSdmADppkZ6DlpycMkm8l9zeEq16fWtLvunEwFiYciR/BHo4E8/xs5piFquG+Za8OWmMqHF8zuRviz2LHvRQ==", + "dependencies": { + "long": "~3" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/bytebuffer/node_modules/long": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/long/-/long-3.2.0.tgz", + "integrity": "sha512-ZYvPPOMqUwPoDsbJaR10iQJYnMuZhRTvHYl62ErLIEX7RgFlziSBUUvrt3OVfc47QlHHpzPZYP17g3Fv7oeJkg==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "dependencies": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/cacache/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacache/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "dev": true, + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cacheable-request/node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dependencies": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", + "dependencies": { + "callsites": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-callsite/node_modules/callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", + "dependencies": { + "caller-callsite": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001551", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001551.tgz", + "integrity": "sha512-vtBAez47BoGMMzlbYhfXrMV1kvRF2WP/lqiMuDu1Sb4EE4LKEgjopFDSRtZfdVnslNRpOqV/woE+Xgrwj6VQlg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/capacitor": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/capacitor/-/capacitor-0.5.6.tgz", + "integrity": "sha512-xjyv2ztJxD1VayTMGIkh+TNfpdJU9BT3jO4Y5kEsh5MpF+zEdBQYLC/pFD9lNyS6mi8Pm3b/bj0ZUSOKblkfcw==", + "dependencies": { + "immutable": "^3.7.3", + "lodash": "^4.17.21" + } + }, + "node_modules/capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "dependencies": { + "rsvp": "^4.8.4" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz", + "integrity": "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/check-types": { + "version": "11.2.3", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz", + "integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==" + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/chromium-pickle-js": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz", + "integrity": "sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==", + "dev": true + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/cjs-module-lexer": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz", + "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==" + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-css": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", + "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "dev": true, + "optional": true, + "dependencies": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate/node_modules/slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "dev": true, + "optional": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "dev": true, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clsx": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.0.0.tgz", + "integrity": "sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==", + "engines": { + "node": ">=6" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/coa/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/coa/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/coa/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/coa/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "dependencies": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/color/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/colors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", + "integrity": "sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==", + "dev": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/colour": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/colour/-/colour-0.7.1.tgz", + "integrity": "sha512-Rel466v0EnmKPcsxHo91L4kgPs/6XF7Pu2LJNszq9lXYwi5CFWEeIiRaTX5ym7PPMdj4udDHkLSVC1//JVkZQg==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + }, + "node_modules/compare-version": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/compare-version/-/compare-version-0.1.2.tgz", + "integrity": "sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + }, + "node_modules/compose-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz", + "integrity": "sha512-xzhzTJ5eC+gmIzvZq+C3kCJHsp9os6tJkrigDRZclyGtOKINbZtE8n1Tzmeh32jW+BUDPbvZpibwvJHBLGMVwg==", + "dependencies": { + "arity-n": "^1.0.4" + } + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/concurrently": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-6.5.1.tgz", + "integrity": "sha512-FlSwNpGjWQfRwPLXvJ/OgysbBxPkWpiVjy1042b0U7on7S7qwwMIILRj7WTN1mTgqa582bG6NFuScOoh6Zgdag==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "date-fns": "^2.16.1", + "lodash": "^4.17.21", + "rxjs": "^6.6.3", + "spawn-command": "^0.0.2-1", + "supports-color": "^8.1.0", + "tree-kill": "^1.2.2", + "yargs": "^16.2.0" + }, + "bin": { + "concurrently": "bin/concurrently.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/concurrently/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/concurrently/node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/concurrently/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dev": true, + "optional": true, + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/config-chain/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true, + "optional": true + }, + "node_modules/configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "dev": true, + "dependencies": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + }, + "node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==" + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-disposition/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "node_modules/copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "dependencies": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + } + }, + "node_modules/copy-concurrently/node_modules/aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "node_modules/copy-concurrently/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/core-js": { + "version": "3.33.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.33.1.tgz", + "integrity": "sha512-qVSq3s+d4+GsqN0teRCJtM6tdEEXyWxjzbhVrCHmBS5ZTM0FS2MOS0D13dUXAWDUN6a+lHI/N1hF9Ytz6iLl9Q==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.33.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.33.1.tgz", + "integrity": "sha512-6pYKNOgD/j/bkC5xS5IIg6bncid3rfrI42oBH1SQJbsmYPKF7rhzcFzYCcxYMmNQQ0rCEB8WqpW7QHndOggaeQ==", + "dependencies": { + "browserslist": "^4.22.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat/node_modules/browserslist": { + "version": "4.22.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", + "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001541", + "electron-to-chromium": "^1.4.535", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/core-js-compat/node_modules/node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + }, + "node_modules/core-js-pure": { + "version": "3.33.1", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.33.1.tgz", + "integrity": "sha512-wCXGbLjnsP10PlK/thHSQlOLlLKNEkaWbTzVvHHZ79fZNeN1gUmw2gBlpItxPv/pvqldevEXFh/d5stdNvl6EQ==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/crc": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz", + "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==", + "dev": true, + "optional": true, + "dependencies": { + "buffer": "^5.1.0" + } + }, + "node_modules/create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dependencies": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + } + }, + "node_modules/create-ecdh/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "node_modules/cross-env": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "bin": { + "cross-env": "src/bin/cross-env.js", + "cross-env-shell": "src/bin/cross-env-shell.js" + }, + "engines": { + "node": ">=10.14", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dependencies": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "engines": { + "node": "*" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/css": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", + "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", + "dependencies": { + "inherits": "^2.0.3", + "source-map": "^0.6.1", + "source-map-resolve": "^0.5.2", + "urix": "^0.1.0" + } + }, + "node_modules/css-blank-pseudo": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz", + "integrity": "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==", + "dependencies": { + "postcss": "^7.0.5" + }, + "bin": { + "css-blank-pseudo": "cli.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==", + "engines": { + "node": "*" + } + }, + "node_modules/css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "dependencies": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + }, + "engines": { + "node": ">4" + } + }, + "node_modules/css-has-pseudo": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz", + "integrity": "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==", + "dependencies": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^5.0.0-rc.4" + }, + "bin": { + "css-has-pseudo": "cli.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/css-has-pseudo/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/css-has-pseudo/node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/css-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-4.3.0.tgz", + "integrity": "sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==", + "dependencies": { + "camelcase": "^6.0.0", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^2.0.0", + "postcss": "^7.0.32", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.3", + "postcss-modules-scope": "^2.2.0", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^2.7.1", + "semver": "^7.3.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.27.0 || ^5.0.0" + } + }, + "node_modules/css-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-mediaquery": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/css-mediaquery/-/css-mediaquery-0.1.2.tgz", + "integrity": "sha512-COtn4EROW5dBGlE/4PiKnh6rZpAPxDeFLaEEwt4i10jpDMFt2EhQGS79QmmrO+iKCHv0PU/HrOWEhijFd1x99Q==" + }, + "node_modules/css-prefers-color-scheme": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz", + "integrity": "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==", + "dependencies": { + "postcss": "^7.0.5" + }, + "bin": { + "css-prefers-color-scheme": "cli.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-vendor": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/css-vendor/-/css-vendor-2.0.8.tgz", + "integrity": "sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==", + "dependencies": { + "@babel/runtime": "^7.8.3", + "is-in-browser": "^1.0.2" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==" + }, + "node_modules/css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cssdb": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz", + "integrity": "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==" + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.11.tgz", + "integrity": "sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==", + "dependencies": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.8", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz", + "integrity": "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==", + "dependencies": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha512-JPMZ1TSMRUPVIqEalIBNoBtAYbi8okvcFns4O0YIhcdGebeYZK7dMyHJiQ6GqNBA9kE0Hym4Aqym5rPdsV/4Cw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/cssnano/node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano/node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/cssnano/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "node_modules/cyclist": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.2.tgz", + "integrity": "sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==" + }, + "node_modules/d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "dependencies": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/data-urls/node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/data-urls/node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.21.0" + }, + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "dev": true, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" + }, + "node_modules/deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dependencies": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dependencies": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/default-gateway/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/default-gateway/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/default-gateway/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/default-gateway/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", + "dev": true + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dependencies": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/del/node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/del/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/del/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/des.js": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", + "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", + "dependencies": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-libc": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz", + "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dependencies": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "node_modules/diffie-hellman/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/dir-compare": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-2.4.0.tgz", + "integrity": "sha512-l9hmu8x/rjVC9Z2zmGzkhOEowZvW7pmYws5CWHutg8u1JgvsKWMx7Q/UODeu4djLZ4FgW5besw5yvMQnBHzuCA==", + "dev": true, + "dependencies": { + "buffer-equal": "1.0.0", + "colors": "1.0.3", + "commander": "2.9.0", + "minimatch": "3.0.4" + }, + "bin": { + "dircompare": "src/cli/dircompare.js" + } + }, + "node_modules/dir-compare/node_modules/commander": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", + "integrity": "sha512-bmkUukX8wAOjHdN26xj5c4ctEV22TQ7dQYhSmuckKhToXrkUn0iIaolHdIxYYqD55nhpSPA9zPQ1yP57GdXP2A==", + "dev": true, + "dependencies": { + "graceful-readlink": ">= 1.0.0" + }, + "engines": { + "node": ">= 0.6.x" + } + }, + "node_modules/dir-compare/node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dmg-builder": { + "version": "22.14.13", + "resolved": "https://registry.npmjs.org/dmg-builder/-/dmg-builder-22.14.13.tgz", + "integrity": "sha512-xNOugB6AbIRETeU2uID15sUfjdZZcKdxK8xkFnwIggsM00PJ12JxpLNPTjcRoUnfwj3WrPjilrO64vRMwNItQg==", + "dev": true, + "dependencies": { + "app-builder-lib": "22.14.13", + "builder-util": "22.14.13", + "builder-util-runtime": "8.9.2", + "fs-extra": "^10.0.0", + "iconv-lite": "^0.6.2", + "js-yaml": "^4.1.0" + }, + "optionalDependencies": { + "dmg-license": "^1.0.9" + } + }, + "node_modules/dmg-builder/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/dmg-license": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/dmg-license/-/dmg-license-1.0.11.tgz", + "integrity": "sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "@types/plist": "^3.0.1", + "@types/verror": "^1.10.3", + "ajv": "^6.10.0", + "crc": "^3.8.0", + "iconv-corefoundation": "^1.1.7", + "plist": "^3.0.4", + "smart-buffer": "^4.0.2", + "verror": "^1.10.0" + }, + "bin": { + "dmg-license": "bin/dmg-license.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" + }, + "node_modules/dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dependencies": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", + "dependencies": { + "buffer-indexof": "^1.0.0" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==" + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/dom-storage": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/dom-storage/-/dom-storage-2.1.0.tgz", + "integrity": "sha512-g6RpyWXzl0RR6OTElHKBl7nwnK87GUyZMYC7JWsB/IA73vpqK2K6LT39x4VepLxlSsWBFrPVLnsSR5Jyty0+2Q==", + "engines": { + "node": "*" + } + }, + "node_modules/domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "engines": { + "node": ">=0.4", + "npm": ">=1.2" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "node_modules/duplexer3": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==", + "dev": true + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/ejs": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", + "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", + "dev": true, + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron": { + "version": "16.2.8", + "resolved": "https://registry.npmjs.org/electron/-/electron-16.2.8.tgz", + "integrity": "sha512-KSOytY6SPLsh3iCziztqa/WgJyfDOKzCvNqku9gGIqSdT8CqtV66dTU1SOrKZQjRFLxHaF8LbyxUL1vwe4taqw==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "@electron/get": "^1.13.0", + "@types/node": "^14.6.2", + "extract-zip": "^1.0.3" + }, + "bin": { + "electron": "cli.js" + }, + "engines": { + "node": ">= 8.6" + } + }, + "node_modules/electron-builder": { + "version": "22.14.13", + "resolved": "https://registry.npmjs.org/electron-builder/-/electron-builder-22.14.13.tgz", + "integrity": "sha512-3fgLxqF2TXVKiUPeg74O4V3l0l3j7ERLazo8sUbRkApw0+4iVAf2BJkHsHMaXiigsgCoEzK/F4/rB5rne/VAnw==", + "dev": true, + "dependencies": { + "@types/yargs": "^17.0.1", + "app-builder-lib": "22.14.13", + "builder-util": "22.14.13", + "builder-util-runtime": "8.9.2", + "chalk": "^4.1.1", + "dmg-builder": "22.14.13", + "fs-extra": "^10.0.0", + "is-ci": "^3.0.0", + "lazy-val": "^1.0.5", + "read-config-file": "6.2.0", + "update-notifier": "^5.1.0", + "yargs": "^17.0.1" + }, + "bin": { + "electron-builder": "cli.js", + "install-app-deps": "install-app-deps.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/electron-builder/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/electron-builder/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/electron-builder/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/electron-builder/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/electron-builder/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/electron-is-dev": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/electron-is-dev/-/electron-is-dev-2.0.0.tgz", + "integrity": "sha512-3X99K852Yoqu9AcW50qz3ibYBWY79/pBhlMCab8ToEWS48R0T9tyxRiQhwylE7zQdXrMnx2JKqUJyMPmt5FBqA==", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/electron-osx-sign": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/electron-osx-sign/-/electron-osx-sign-0.5.0.tgz", + "integrity": "sha512-icoRLHzFz/qxzDh/N4Pi2z4yVHurlsCAYQvsCSG7fCedJ4UJXBS6PoQyGH71IfcqKupcKeK7HX/NkyfG+v6vlQ==", + "deprecated": "Please use @electron/osx-sign moving forward. Be aware the API is slightly different", + "dev": true, + "dependencies": { + "bluebird": "^3.5.0", + "compare-version": "^0.1.2", + "debug": "^2.6.8", + "isbinaryfile": "^3.0.2", + "minimist": "^1.2.0", + "plist": "^3.0.1" + }, + "bin": { + "electron-osx-flat": "bin/electron-osx-flat.js", + "electron-osx-sign": "bin/electron-osx-sign.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/electron-osx-sign/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/electron-osx-sign/node_modules/isbinaryfile": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz", + "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==", + "dev": true, + "dependencies": { + "buffer-alloc": "^1.2.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/electron-osx-sign/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/electron-publish": { + "version": "22.14.13", + "resolved": "https://registry.npmjs.org/electron-publish/-/electron-publish-22.14.13.tgz", + "integrity": "sha512-0oP3QiNj3e8ewOaEpEJV/o6Zrmy2VarVvZ/bH7kyO/S/aJf9x8vQsKVWpsdmSiZ5DJEHgarFIXrnO0ZQf0P9iQ==", + "dev": true, + "dependencies": { + "@types/fs-extra": "^9.0.11", + "builder-util": "22.14.13", + "builder-util-runtime": "8.9.2", + "chalk": "^4.1.1", + "fs-extra": "^10.0.0", + "lazy-val": "^1.0.5", + "mime": "^2.5.2" + } + }, + "node_modules/electron-publish/node_modules/@types/fs-extra": { + "version": "9.0.13", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz", + "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/electron-publish/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/electron-publish/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.563", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.563.tgz", + "integrity": "sha512-dg5gj5qOgfZNkPNeyKBZQAQitIQ/xwfIDmEQJHCbXaD9ebTZxwJXUsDYcBlAvZGZLi+/354l35J1wkmP6CqYaw==" + }, + "node_modules/electron/node_modules/@types/node": { + "version": "14.18.63", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.63.tgz", + "integrity": "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==", + "dev": true + }, + "node_modules/elementtree": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/elementtree/-/elementtree-0.1.7.tgz", + "integrity": "sha512-wkgGT6kugeQk/P6VZ/f4T+4HB41BVgNBq5CDIZVbQ02nvTVqAiVTbskxxu3eA/X96lMlfYOwnLQpN2v5E1zDEg==", + "dependencies": { + "sax": "1.1.4" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/elementtree/node_modules/sax": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.1.4.tgz", + "integrity": "sha512-5f3k2PbGGp+YtKJjOItpg3P99IMD84E4HOvcfleTb5joCHNXYLsR9yWFPOYGgaeMPDubQILTCMdsFb2OMeOjtg==" + }, + "node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/emittery": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz", + "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/enhanced-resolve/node_modules/memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/enquirer": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", + "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", + "dependencies": { + "ansi-colors": "^4.1.1", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/es-abstract": { + "version": "1.22.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", + "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.2", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.5", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.2", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.12", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "safe-array-concat": "^1.0.1", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" + }, + "node_modules/es-iterator-helpers": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz", + "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", + "dependencies": { + "asynciterator.prototype": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.1", + "es-set-tostringtag": "^2.0.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.0.1" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", + "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", + "dependencies": { + "get-intrinsic": "^1.2.2", + "has-tostringtag": "^1.0.0", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es5-ext": { + "version": "0.10.62", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", + "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", + "hasInstallScript": true, + "dependencies": { + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "next-tick": "^1.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/es6-error": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", + "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", + "dev": true, + "optional": true + }, + "node_modules/es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "dependencies": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "dependencies": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-goat": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", + "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint": { + "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "dependencies": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-react-app": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-6.0.0.tgz", + "integrity": "sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==", + "dependencies": { + "confusing-browser-globals": "^1.0.10" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0", + "@typescript-eslint/parser": "^4.0.0", + "babel-eslint": "^10.0.0", + "eslint": "^7.5.0", + "eslint-plugin-flowtype": "^5.2.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-jest": "^24.0.0", + "eslint-plugin-jsx-a11y": "^6.3.1", + "eslint-plugin-react": "^7.20.3", + "eslint-plugin-react-hooks": "^4.0.8", + "eslint-plugin-testing-library": "^3.9.0" + }, + "peerDependenciesMeta": { + "eslint-plugin-jest": { + "optional": true + }, + "eslint-plugin-testing-library": { + "optional": true + } + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-flowtype": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.10.0.tgz", + "integrity": "sha512-vcz32f+7TP+kvTUyMXZmCnNujBQZDNmcqPImw8b9PZ+16w1Qdm6ryRuYZYVaG9xRqqmAPr2Cs9FAX5gN+x/bjw==", + "dependencies": { + "lodash": "^4.17.15", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "eslint": "^7.1.0" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.28.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz", + "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.findlastindex": "^1.2.2", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.8.0", + "has": "^1.0.3", + "is-core-module": "^2.13.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.6", + "object.groupby": "^1.0.0", + "object.values": "^1.1.6", + "semver": "^6.3.1", + "tsconfig-paths": "^3.14.2" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-jest": { + "version": "24.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.7.0.tgz", + "integrity": "sha512-wUxdF2bAZiYSKBclsUMrYHH6WxiBreNjyDxbRv345TIvPeoCEgPNEn3Sa+ZrSqsf1Dl9SqqSREXMHExlMMu1DA==", + "dependencies": { + "@typescript-eslint/experimental-utils": "^4.0.1" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": ">= 4", + "eslint": ">=5" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "dependencies": { + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.33.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.12", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-testing-library": { + "version": "3.10.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-3.10.2.tgz", + "integrity": "sha512-WAmOCt7EbF1XM8XfbCKAEzAPnShkNSwcIsAD2jHdsMUT9mZJPjLCG7pMzbcC8kK366NOuGip8HKLDC+Xk4yIdA==", + "dependencies": { + "@typescript-eslint/experimental-utils": "^3.10.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^5 || ^6 || ^7" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/@typescript-eslint/experimental-utils": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz", + "integrity": "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==", + "dependencies": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/typescript-estree": "3.10.1", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/@typescript-eslint/types": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-3.10.1.tgz", + "integrity": "sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==", + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/@typescript-eslint/typescript-estree": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz", + "integrity": "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==", + "dependencies": { + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/visitor-keys": "3.10.1", + "debug": "^4.1.1", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/@typescript-eslint/visitor-keys": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz", + "integrity": "sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "dependencies": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/eslint/node_modules/@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/eslint/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.23.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", + "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dependencies": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/eventsource": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-2.0.2.tgz", + "integrity": "sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/exec-sh": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz", + "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==" + }, + "node_modules/execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/execa/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "dependencies": { + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/express/node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/express/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "dependencies": { + "type": "^2.7.2" + } + }, + "node_modules/ext/node_modules/type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" + }, + "node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extract-zip": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", + "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", + "dev": true, + "dependencies": { + "concat-stream": "^1.6.2", + "debug": "^2.6.9", + "mkdirp": "^0.5.4", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + } + }, + "node_modules/extract-zip/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/extract-zip/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/extsprintf": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz", + "integrity": "sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==", + "dev": true, + "engines": [ + "node >=0.6.0" + ], + "optional": true + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", + "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.1.1.tgz", + "integrity": "sha512-Klt8C4BjWSXYQAfhpYYkG4qHNTna4toMHEbWrI5IuVoxbU6uiDKeKAP99R8mmbJi3lvewn/jQBOgU4+NS3tDQw==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "optional": true + }, + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "dev": true, + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/filesize": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz", + "integrity": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/firebase": { + "version": "8.10.1", + "resolved": "https://registry.npmjs.org/firebase/-/firebase-8.10.1.tgz", + "integrity": "sha512-84z/zqF8Y5IpUYN8nREZ/bxbGtF5WJDOBy4y0hAxRzGpB5+2tw9PQgtTnUzk6MQiVEf/WOniMUL3pCVXKsxALw==", + "dependencies": { + "@firebase/analytics": "0.6.18", + "@firebase/app": "0.6.30", + "@firebase/app-check": "0.3.2", + "@firebase/app-types": "0.6.3", + "@firebase/auth": "0.16.8", + "@firebase/database": "0.11.0", + "@firebase/firestore": "2.4.1", + "@firebase/functions": "0.6.16", + "@firebase/installations": "0.4.32", + "@firebase/messaging": "0.8.0", + "@firebase/performance": "0.4.18", + "@firebase/polyfill": "0.3.36", + "@firebase/remote-config": "0.1.43", + "@firebase/storage": "0.7.1", + "@firebase/util": "1.3.0" + }, + "engines": { + "node": "^8.13.0 || >=10.10.0" + } + }, + "node_modules/flat-cache": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.1.tgz", + "integrity": "sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/flat-cache/node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, + "node_modules/flat-cache/node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/flatted": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" + }, + "node_modules/flatten": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz", + "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==", + "deprecated": "flatten is deprecated in favor of utility frameworks such as lodash." + }, + "node_modules/flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dependencies": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.3", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", + "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz", + "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==", + "dependencies": { + "@babel/code-frame": "^7.5.5", + "chalk": "^2.4.1", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" + }, + "engines": { + "node": ">=6.11.5", + "yarn": ">=1.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==", + "dependencies": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==" + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dependencies": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/global-agent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz", + "integrity": "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==", + "dev": true, + "optional": true, + "dependencies": { + "boolean": "^3.0.1", + "es6-error": "^4.1.1", + "matcher": "^3.0.0", + "roarr": "^2.15.3", + "semver": "^7.3.2", + "serialize-error": "^7.0.1" + }, + "engines": { + "node": ">=10.0" + } + }, + "node_modules/global-dirs": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", + "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", + "dev": true, + "dependencies": { + "ini": "2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/global-dirs/node_modules/ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/global-tunnel-ng": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/global-tunnel-ng/-/global-tunnel-ng-2.7.1.tgz", + "integrity": "sha512-4s+DyciWBV0eK148wqXxcmVAbFVPqtc3sEtUE/GTQfuU80rySLcMhUmHKSHI7/LDj8q0gDYI1lIhRRB7ieRAqg==", + "dev": true, + "optional": true, + "dependencies": { + "encodeurl": "^1.0.2", + "lodash": "^4.17.10", + "npm-conf": "^1.1.3", + "tunnel": "^0.0.6" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/got": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "dev": true, + "dependencies": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/graceful-readlink": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", + "integrity": "sha512-8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w==", + "dev": true + }, + "node_modules/growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==", + "optional": true + }, + "node_modules/grpc": { + "version": "1.24.11", + "resolved": "https://registry.npmjs.org/grpc/-/grpc-1.24.11.tgz", + "integrity": "sha512-8/AQdFCzCeCDWW3SoaMNp6ccbRvTQEH1O1u1uFtt29eWsg5gSZCJ3m6fbkduEIh3smY7WAPP+LgVJ5n3nZRxcA==", + "deprecated": "This library will not receive further updates other than security fixes. We recommend using @grpc/grpc-js instead.", + "hasInstallScript": true, + "dependencies": { + "@mapbox/node-pre-gyp": "^1.0.4", + "@types/bytebuffer": "^5.0.40", + "lodash.camelcase": "^4.3.0", + "lodash.clone": "^4.5.0", + "nan": "^2.13.2", + "protobufjs": "^5.0.3" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/grpc/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grpc/node_modules/camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grpc/node_modules/cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "node_modules/grpc/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grpc/node_modules/protobufjs": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-5.0.3.tgz", + "integrity": "sha512-55Kcx1MhPZX0zTbVosMQEO5R6/rikNXd9b6RQK4KSPcrSIIwoXTtebIczUrXlwaSrbz4x8XUVThGPob1n8I4QA==", + "dependencies": { + "ascli": "~1", + "bytebuffer": "~5", + "glob": "^7.0.5", + "yargs": "^3.10.0" + }, + "bin": { + "pbjs": "bin/pbjs" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/grpc/node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grpc/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grpc/node_modules/wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grpc/node_modules/y18n": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==" + }, + "node_modules/grpc/node_modules/yargs": { + "version": "3.32.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz", + "integrity": "sha512-ONJZiimStfZzhKamYvR/xvmgW3uEkAUFSP91y2caTEPhzF6uP2JfPiVZcq66b/YR0C3uitxSV7+T1x8p5bkmMg==", + "dependencies": { + "camelcase": "^2.0.1", + "cliui": "^3.0.3", + "decamelize": "^1.1.1", + "os-locale": "^1.4.0", + "string-width": "^1.0.1", + "window-size": "^0.1.4", + "y18n": "^3.2.0" + } + }, + "node_modules/gzip-size": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", + "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", + "dependencies": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/gzip-size/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + }, + "node_modules/harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + }, + "node_modules/has": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", + "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-yarn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", + "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash-base/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hash-base/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==" + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hoist-non-react-statics/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==" + }, + "node_modules/hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==" + }, + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==" + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "node_modules/html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "dependencies": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/html-webpack-plugin": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.0.tgz", + "integrity": "sha512-MouoXEYSjTzCrjIxWwg8gxL5fE2X2WZJLmBYXlaJhQUH5K/b5OrqmV7T4dB7iu0xkmJ6JlUuV6fFVtnqbPopZw==", + "dependencies": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.15", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + }, + "engines": { + "node": ">=6.9" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/html-webpack-plugin/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/html-webpack-plugin/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dependencies": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==" + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "engines": { + "node": ">=8.12.0" + } + }, + "node_modules/hyphenate-style-name": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", + "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" + }, + "node_modules/iconv-corefoundation": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz", + "integrity": "sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "cli-truncate": "^2.1.0", + "node-addon-api": "^1.6.3" + }, + "engines": { + "node": "^8.11.2 || >=10" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", + "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", + "dependencies": { + "postcss": "^7.0.14" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/idb": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/idb/-/idb-3.0.2.tgz", + "integrity": "sha512-+FLa/0sTXqyux0o6C+i2lOR0VoS60LU/jzUo5xjfY6+7sEEgy4Gz1O7yFBXvjd7N0NyIGWIRg8DcQSLEG+VSPw==" + }, + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "dependencies": { + "harmony-reflect": "^1.4.6" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==" + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immer": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz", + "integrity": "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/immutable": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz", + "integrity": "sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", + "integrity": "sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==", + "dependencies": { + "import-from": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-from": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", + "integrity": "sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==", + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-from/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-local/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==" + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz", + "integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==", + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dependencies": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-slot": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", + "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", + "dependencies": { + "get-intrinsic": "^1.2.2", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ip": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha512-vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-ci": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", + "dev": true, + "dependencies": { + "ci-info": "^3.2.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==", + "dependencies": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-in-browser": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz", + "integrity": "sha512-FeXIBgG/CPGd/WUxuEyvgGTEfwiG9Z4EKGxjNMRqviiIIfsmgrpnHLffEDdwUHqNva1VEW91o3xBT/m8Elgl9g==" + }, + "node_modules/is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", + "dev": true, + "dependencies": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-npm": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", + "integrity": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dependencies": { + "is-path-inside": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd/node_modules/is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dependencies": { + "path-is-inside": "^1.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" + }, + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "dependencies": { + "which-typed-array": "^1.1.11" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-yarn-global": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", + "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", + "dev": true + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/isbinaryfile": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz", + "integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==", + "dev": true, + "engines": { + "node": ">= 8.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/gjtorikian/" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "dependencies": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, + "node_modules/jake": { + "version": "10.8.7", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", + "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", + "dev": true, + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jake/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.0.tgz", + "integrity": "sha512-jxTmrvuecVISvKFFhOkjsWRZV7sFqdSUAd1ajOKY+/QE/aLBVstsJ/dX8GczLzwiT6ZEwwmZqtCUHLHHQVzcfA==", + "dependencies": { + "@jest/core": "^26.6.0", + "import-local": "^3.0.2", + "jest-cli": "^26.6.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-changed-files": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz", + "integrity": "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "execa": "^4.0.0", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-changed-files/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-changed-files/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-changed-files/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-circus": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-26.6.0.tgz", + "integrity": "sha512-L2/Y9szN6FJPWFK8kzWXwfp+FOR7xq0cUL4lIsdbIdwz3Vh6P1nrpcqOleSzr28zOtSHQNV9Z7Tl+KkuK7t5Ng==", + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^26.6.0", + "@jest/test-result": "^26.6.0", + "@jest/types": "^26.6.0", + "@types/babel__traverse": "^7.0.4", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^26.6.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^26.6.0", + "jest-matcher-utils": "^26.6.0", + "jest-message-util": "^26.6.0", + "jest-runner": "^26.6.0", + "jest-runtime": "^26.6.0", + "jest-snapshot": "^26.6.0", + "jest-util": "^26.6.0", + "pretty-format": "^26.6.0", + "stack-utils": "^2.0.2", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-circus/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-circus/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-circus/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/jest-circus/node_modules/diff-sequences": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-circus/node_modules/expect": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz", + "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-styles": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-circus/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/jest-circus/node_modules/jest-diff": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-circus/node_modules/jest-get-type": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-circus/node_modules/jest-matcher-utils": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz", + "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-circus/node_modules/jest-message-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-circus/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-cli": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz", + "integrity": "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==", + "dependencies": { + "@jest/core": "^26.6.3", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "is-ci": "^2.0.0", + "jest-config": "^26.6.3", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "prompts": "^2.0.1", + "yargs": "^15.4.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-cli/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-cli/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-cli/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/jest-cli/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/jest-cli/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/jest-cli/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-cli/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + }, + "node_modules/jest-cli/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-config": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz", + "integrity": "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^26.6.3", + "@jest/types": "^26.6.2", + "babel-jest": "^26.6.3", + "chalk": "^4.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-environment-jsdom": "^26.6.2", + "jest-environment-node": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-jasmine2": "^26.6.3", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-config/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/jest-config/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/jest-config/node_modules/jest-get-type": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-config/node_modules/jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-config/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-docblock": { + "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz", + "integrity": "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-each": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz", + "integrity": "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-each/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-each/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/jest-each/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/jest-each/node_modules/jest-get-type": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-each/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz", + "integrity": "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==", + "dependencies": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2", + "jsdom": "^16.4.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-environment-jsdom/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-environment-jsdom/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/jest-environment-jsdom/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/jest-environment-jsdom/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-environment-node": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz", + "integrity": "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==", + "dependencies": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-environment-node/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-environment-node/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-environment-node/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-environment-node/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/jest-environment-node/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/jest-environment-node/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz", + "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-regex-util": "^26.0.0", + "jest-serializer": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "micromatch": "^4.0.2", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "engines": { + "node": ">= 10.14.2" + }, + "optionalDependencies": { + "fsevents": "^2.1.2" + } + }, + "node_modules/jest-haste-map/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-haste-map/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-haste-map/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-haste-map/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/jest-haste-map/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/jest-haste-map/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-haste-map/node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-jasmine2": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz", + "integrity": "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==", + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^26.6.2", + "is-generator-fn": "^2.0.0", + "jest-each": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-jasmine2/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-jasmine2/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-jasmine2/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-jasmine2/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/jest-jasmine2/node_modules/diff-sequences": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-jasmine2/node_modules/expect": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz", + "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-styles": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-jasmine2/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-diff": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-get-type": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-matcher-utils": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz", + "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-message-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz", + "integrity": "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==", + "dependencies": { + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-leak-detector/node_modules/jest-get-type": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-mock": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz", + "integrity": "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-mock/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-mock/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-mock/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz", + "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-resolve": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.0.tgz", + "integrity": "sha512-tRAz2bwraHufNp+CCmAD8ciyCpXCs1NQxB5EJAmtCFy6BN81loFEGWKzYu26Y62lAJJe4X4jg36Kf+NsQyiStQ==", + "dependencies": { + "@jest/types": "^26.6.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.0", + "read-pkg-up": "^7.0.1", + "resolve": "^1.17.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz", + "integrity": "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==", + "dependencies": { + "@jest/types": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-snapshot": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-resolve/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-resolve/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/jest-resolve/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/jest-resolve/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runner": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz", + "integrity": "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==", + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.7.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-docblock": "^26.0.0", + "jest-haste-map": "^26.6.2", + "jest-leak-detector": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "source-map-support": "^0.5.6", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runner/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runner/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/jest-runner/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/jest-runner/node_modules/jest-message-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runner/node_modules/jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runner/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runner/node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-runtime": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz", + "integrity": "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==", + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/globals": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0", + "cjs-module-lexer": "^0.6.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^15.4.1" + }, + "bin": { + "jest-runtime": "bin/jest-runtime.js" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runtime/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runtime/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-runtime/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/jest-runtime/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/jest-runtime/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/jest-runtime/node_modules/jest-message-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runtime/node_modules/jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runtime/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runtime/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + }, + "node_modules/jest-runtime/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-serializer": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz", + "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.4" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz", + "integrity": "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==", + "dependencies": { + "@babel/types": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.0.0", + "chalk": "^4.0.0", + "expect": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-haste-map": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "natural-compare": "^1.4.0", + "pretty-format": "^26.6.2", + "semver": "^7.3.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/jest-snapshot/node_modules/diff-sequences": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot/node_modules/expect": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz", + "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-styles": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/jest-snapshot/node_modules/jest-diff": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot/node_modules/jest-get-type": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot/node_modules/jest-matcher-utils": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz", + "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot/node_modules/jest-message-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot/node_modules/jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-validate": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz", + "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "camelcase": "^6.0.0", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "leven": "^3.1.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-validate/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-validate/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/jest-get-type": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-watch-typeahead": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-0.6.1.tgz", + "integrity": "sha512-ITVnHhj3Jd/QkqQcTqZfRgjfyRhDFM/auzgVo2RKvSwi18YMvh0WvXDJFoFED6c7jd/5jxtu4kSOb9PTu2cPVg==", + "dependencies": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^26.0.0", + "jest-watcher": "^26.3.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "jest": "^26.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-watcher": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz", + "integrity": "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==", + "dependencies": { + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^26.6.2", + "string-length": "^4.0.1" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-watcher/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-watcher/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/jest-watcher/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/jest-watcher/node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/joi": { + "version": "17.11.0", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.11.0.tgz", + "integrity": "sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0", + "@sideway/address": "^4.1.3", + "@sideway/formula": "^3.0.1", + "@sideway/pinpoint": "^2.0.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/jsdom/node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jsdom/node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jsdom/node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jsdom/node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jsdom/node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", + "dev": true + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "dev": true, + "optional": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonpath": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz", + "integrity": "sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==", + "dependencies": { + "esprima": "1.2.2", + "static-eval": "2.0.2", + "underscore": "1.12.1" + } + }, + "node_modules/jsonpath/node_modules/esprima": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz", + "integrity": "sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jss": { + "version": "10.10.0", + "resolved": "https://registry.npmjs.org/jss/-/jss-10.10.0.tgz", + "integrity": "sha512-cqsOTS7jqPsPMjtKYDUpdFC0AbhYFLTcuGRqymgmdJIeQ8cH7+AgX7YSgQy79wXloZq2VvATYxUOUQEvS1V/Zw==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "csstype": "^3.0.2", + "is-in-browser": "^1.1.3", + "tiny-warning": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/jss" + } + }, + "node_modules/jss-plugin-camel-case": { + "version": "10.10.0", + "resolved": "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.10.0.tgz", + "integrity": "sha512-z+HETfj5IYgFxh1wJnUAU8jByI48ED+v0fuTuhKrPR+pRBYS2EDwbusU8aFOpCdYhtRc9zhN+PJ7iNE8pAWyPw==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "hyphenate-style-name": "^1.0.3", + "jss": "10.10.0" + } + }, + "node_modules/jss-plugin-default-unit": { + "version": "10.10.0", + "resolved": "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.10.0.tgz", + "integrity": "sha512-SvpajxIECi4JDUbGLefvNckmI+c2VWmP43qnEy/0eiwzRUsafg5DVSIWSzZe4d2vFX1u9nRDP46WCFV/PXVBGQ==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "jss": "10.10.0" + } + }, + "node_modules/jss-plugin-global": { + "version": "10.10.0", + "resolved": "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.10.0.tgz", + "integrity": "sha512-icXEYbMufiNuWfuazLeN+BNJO16Ge88OcXU5ZDC2vLqElmMybA31Wi7lZ3lf+vgufRocvPj8443irhYRgWxP+A==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "jss": "10.10.0" + } + }, + "node_modules/jss-plugin-nested": { + "version": "10.10.0", + "resolved": "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.10.0.tgz", + "integrity": "sha512-9R4JHxxGgiZhurDo3q7LdIiDEgtA1bTGzAbhSPyIOWb7ZubrjQe8acwhEQ6OEKydzpl8XHMtTnEwHXCARLYqYA==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "jss": "10.10.0", + "tiny-warning": "^1.0.2" + } + }, + "node_modules/jss-plugin-props-sort": { + "version": "10.10.0", + "resolved": "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.10.0.tgz", + "integrity": "sha512-5VNJvQJbnq/vRfje6uZLe/FyaOpzP/IH1LP+0fr88QamVrGJa0hpRRyAa0ea4U/3LcorJfBFVyC4yN2QC73lJg==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "jss": "10.10.0" + } + }, + "node_modules/jss-plugin-rule-value-function": { + "version": "10.10.0", + "resolved": "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.10.0.tgz", + "integrity": "sha512-uEFJFgaCtkXeIPgki8ICw3Y7VMkL9GEan6SqmT9tqpwM+/t+hxfMUdU4wQ0MtOiMNWhwnckBV0IebrKcZM9C0g==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "jss": "10.10.0", + "tiny-warning": "^1.0.2" + } + }, + "node_modules/jss-plugin-vendor-prefixer": { + "version": "10.10.0", + "resolved": "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.10.0.tgz", + "integrity": "sha512-UY/41WumgjW8r1qMCO8l1ARg7NHnfRVWRhZ2E2m0DMYsr2DD91qIXLyNhiX83hHswR7Wm4D+oDYNC1zWCJWtqg==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "css-vendor": "^2.0.8", + "jss": "10.10.0" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.0" + } + }, + "node_modules/killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==" + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" + }, + "node_modules/language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "dependencies": { + "language-subtag-registry": "~0.3.2" + } + }, + "node_modules/last-call-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", + "dependencies": { + "lodash": "^4.17.5", + "webpack-sources": "^1.1.0" + } + }, + "node_modules/latest-version": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", + "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", + "dev": true, + "dependencies": { + "package-json": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lazy-val": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/lazy-val/-/lazy-val-1.0.5.tgz", + "integrity": "sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==", + "dev": true + }, + "node_modules/lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", + "dependencies": { + "invert-kv": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==" + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" + }, + "node_modules/lodash.clone": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.5.0.tgz", + "integrity": "sha512-GhrVeweiTD6uTmmn5hV/lzgCQhccwReIVRLHp7LT4SopOjqEZ5BbX8b5WWEtAKasjmy8hR7ZPwsYlxRCku5odg==" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "node_modules/lodash.template": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "dependencies": { + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" + } + }, + "node_modules/lodash.templatesettings": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "dependencies": { + "lodash._reinterpolate": "^3.0.0" + } + }, + "node_modules/lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + }, + "node_modules/loglevel": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.1.tgz", + "integrity": "sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==", + "engines": { + "node": ">= 0.6.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/loglevel" + } + }, + "node_modules/long": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", + "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matcher": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", + "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", + "dev": true, + "optional": true, + "dependencies": { + "escape-string-regexp": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/matchmediaquery": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/matchmediaquery/-/matchmediaquery-0.3.1.tgz", + "integrity": "sha512-Hlk20WQHRIm9EE9luN1kjRjYXAQToHOIAHPJn9buxBwuhfTHoKUcX+lXBbxc85DVQfXYbEQ4HcwQdd128E3qHQ==", + "dependencies": { + "css-mediaquery": "^0.1.2" + } + }, + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memoize-one": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" + }, + "node_modules/memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/microevent.ts": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz", + "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/miller-rabin/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.11.3.tgz", + "integrity": "sha512-n9BA8LonkOkW1/zn+IbLPQmovsL0wMb9yx75fMJQZf2X1Zoec9yTZtyMePcyu19wPkmFbzZZA6fLTotpFhQsOA==", + "dependencies": { + "loader-utils": "^1.1.0", + "normalize-url": "1.9.1", + "schema-utils": "^1.0.0", + "webpack-sources": "^1.1.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/normalize-url": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", + "integrity": "sha512-A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ==", + "dependencies": { + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-collect/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "dependencies": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mississippi/node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==", + "dependencies": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + } + }, + "node_modules/move-concurrently/node_modules/aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "node_modules/move-concurrently/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dependencies": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==" + }, + "node_modules/nan": { + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==" + }, + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/native-run": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/native-run/-/native-run-1.7.3.tgz", + "integrity": "sha512-vEw8X3Yu8TAbP4/uCJV3nCsCrhfHgUecRRDc69ZU9EK0QXHHc7YDzmIeI7SfA08ywzPlC9YcpITcB6bgMbrtwQ==", + "dependencies": { + "@ionic/utils-fs": "^3.1.6", + "@ionic/utils-terminal": "^2.3.3", + "bplist-parser": "^0.3.2", + "debug": "^4.3.4", + "elementtree": "^0.1.7", + "ini": "^3.0.1", + "plist": "^3.0.6", + "split2": "^4.1.0", + "through2": "^4.0.2", + "tslib": "^2.4.0", + "yauzl": "^2.10.0" + }, + "bin": { + "native-run": "bin/native-run" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/native-url": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.2.6.tgz", + "integrity": "sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==", + "dependencies": { + "querystring": "^0.2.0" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "node_modules/next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-addon-api": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", + "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==", + "dev": true, + "optional": true + }, + "node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + }, + "node_modules/node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dependencies": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + } + }, + "node_modules/node-libs-browser/node_modules/buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "node_modules/node-libs-browser/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" + }, + "node_modules/node-notifier": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.2.tgz", + "integrity": "sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==", + "optional": true, + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^2.2.0", + "semver": "^7.3.2", + "shellwords": "^0.1.1", + "uuid": "^8.3.0", + "which": "^2.0.2" + } + }, + "node_modules/node-releases": { + "version": "1.1.77", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.77.tgz", + "integrity": "sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==" + }, + "node_modules/nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", + "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "dev": true, + "optional": true, + "dependencies": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npmlog": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", + "dependencies": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==" + }, + "node_modules/number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nwsapi": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", + "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.7.tgz", + "integrity": "sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==", + "dependencies": { + "array.prototype.reduce": "^1.0.6", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "safe-array-concat": "^1.0.0" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1" + } + }, + "node_modules/object.hasown": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "dependencies": { + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.values": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "dependencies": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/opn/node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/optimize-css-assets-webpack-plugin": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.4.tgz", + "integrity": "sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A==", + "dependencies": { + "cssnano": "^4.1.10", + "last-call-webpack-plugin": "^3.0.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/optjs": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/optjs/-/optjs-3.2.2.tgz", + "integrity": "sha512-f8lTJm4LKirX+45xsFhuRNjA4f46QVLQKfGoNH7e2AEWS+24eM4XNH4pQ8Tw2LISCIvbST/wNcLdtgvgcqVaxA==" + }, + "node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==" + }, + "node_modules/os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", + "dependencies": { + "lcid": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-each-series": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", + "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dependencies": { + "retry": "^0.12.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/package-json": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", + "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", + "dev": true, + "dependencies": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/package-json/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + }, + "node_modules/parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "dependencies": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dependencies": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==" + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==" + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "dependencies": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + }, + "node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-dir/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/plist": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/plist/-/plist-3.1.0.tgz", + "integrity": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==", + "dependencies": { + "@xmldom/xmldom": "^0.8.8", + "base64-js": "^1.5.1", + "xmlbuilder": "^15.1.1" + }, + "engines": { + "node": ">=10.4.0" + } + }, + "node_modules/pnp-webpack-plugin": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", + "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", + "dependencies": { + "ts-pnp": "^1.1.6" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/portfinder": { + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "dependencies": { + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-attribute-case-insensitive": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz", + "integrity": "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^6.0.2" + } + }, + "node_modules/postcss-browser-comments": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-3.0.0.tgz", + "integrity": "sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==", + "dependencies": { + "postcss": "^7" + }, + "engines": { + "node": ">=8.0.0" + }, + "peerDependencies": { + "browserslist": "^4" + } + }, + "node_modules/postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "dependencies": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "node_modules/postcss-color-functional-notation": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz", + "integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-gray": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz", + "integrity": "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==", + "dependencies": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-hex-alpha": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz", + "integrity": "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==", + "dependencies": { + "postcss": "^7.0.14", + "postcss-values-parser": "^2.0.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-mod-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz", + "integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==", + "dependencies": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-rebeccapurple": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz", + "integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "dependencies": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-colormin/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-convert-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-custom-media": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz", + "integrity": "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==", + "dependencies": { + "postcss": "^7.0.14" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-custom-properties": { + "version": "8.0.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz", + "integrity": "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==", + "dependencies": { + "postcss": "^7.0.17", + "postcss-values-parser": "^2.0.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-custom-selectors": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz", + "integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-custom-selectors/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-custom-selectors/node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-dir-pseudo-class": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz", + "integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/postcss-dir-pseudo-class/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-dir-pseudo-class/node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-double-position-gradients": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz", + "integrity": "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==", + "dependencies": { + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-env-function": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz", + "integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-flexbugs-fixes": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz", + "integrity": "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==", + "dependencies": { + "postcss": "^7.0.26" + } + }, + "node_modules/postcss-focus-visible": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz", + "integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-focus-within": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz", + "integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-font-variant": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz", + "integrity": "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==", + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-gap-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz", + "integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-image-set-function": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz", + "integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-initial": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.4.tgz", + "integrity": "sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==", + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-lab-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz", + "integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==", + "dependencies": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", + "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", + "dependencies": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-load-config/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/postcss-load-config/node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-load-config/node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-load-config/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/postcss-load-config/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-load-config/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-load-config/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "node_modules/postcss-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", + "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", + "dependencies": { + "loader-utils": "^1.1.0", + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^1.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-loader/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/postcss-loader/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/postcss-loader/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/postcss-logical": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz", + "integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-media-minmax": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz", + "integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "dependencies": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-merge-longhand/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-font-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-gradients/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "dependencies": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-params/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "dependencies": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "dependencies": { + "postcss": "^7.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "dependencies": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "dependencies": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "dependencies": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + }, + "node_modules/postcss-nesting": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz", + "integrity": "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-normalize": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-8.0.1.tgz", + "integrity": "sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==", + "dependencies": { + "@csstools/normalize.css": "^10.1.0", + "browserslist": "^4.6.2", + "postcss": "^7.0.17", + "postcss-browser-comments": "^3.0.0", + "sanitize.css": "^10.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-display-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-positions/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-repeat-style/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "dependencies": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-string/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-timing-functions/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-unicode/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "dependencies": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-url/node_modules/normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/postcss-normalize-url/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-whitespace/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-ordered-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-overflow-shorthand": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz", + "integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-page-break": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz", + "integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==", + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-place": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz", + "integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-preset-env": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz", + "integrity": "sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==", + "dependencies": { + "autoprefixer": "^9.6.1", + "browserslist": "^4.6.4", + "caniuse-lite": "^1.0.30000981", + "css-blank-pseudo": "^0.1.4", + "css-has-pseudo": "^0.10.0", + "css-prefers-color-scheme": "^3.1.1", + "cssdb": "^4.4.0", + "postcss": "^7.0.17", + "postcss-attribute-case-insensitive": "^4.0.1", + "postcss-color-functional-notation": "^2.0.1", + "postcss-color-gray": "^5.0.0", + "postcss-color-hex-alpha": "^5.0.3", + "postcss-color-mod-function": "^3.0.3", + "postcss-color-rebeccapurple": "^4.0.1", + "postcss-custom-media": "^7.0.8", + "postcss-custom-properties": "^8.0.11", + "postcss-custom-selectors": "^5.1.2", + "postcss-dir-pseudo-class": "^5.0.0", + "postcss-double-position-gradients": "^1.0.0", + "postcss-env-function": "^2.0.2", + "postcss-focus-visible": "^4.0.0", + "postcss-focus-within": "^3.0.0", + "postcss-font-variant": "^4.0.0", + "postcss-gap-properties": "^2.0.0", + "postcss-image-set-function": "^3.0.1", + "postcss-initial": "^3.0.0", + "postcss-lab-function": "^2.0.1", + "postcss-logical": "^3.0.0", + "postcss-media-minmax": "^4.0.0", + "postcss-nesting": "^7.0.0", + "postcss-overflow-shorthand": "^2.0.0", + "postcss-page-break": "^2.0.0", + "postcss-place": "^4.0.1", + "postcss-pseudo-class-any-link": "^6.0.0", + "postcss-replace-overflow-wrap": "^3.0.0", + "postcss-selector-matches": "^4.0.0", + "postcss-selector-not": "^4.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz", + "integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-pseudo-class-any-link/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-pseudo-class-any-link/node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-reduce-transforms/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz", + "integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==", + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-safe-parser": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-5.0.2.tgz", + "integrity": "sha512-jDUfCPJbKOABhwpUKcqCVbbXiloe/QXMcbJ6Iipf3sDIihEzTqRCeMBfRaOHxhBuTYqtASrI1KJWxzztZU4qUQ==", + "dependencies": { + "postcss": "^8.1.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-safe-parser/node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/postcss-safe-parser/node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-selector-matches": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz", + "integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==", + "dependencies": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-selector-not": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz", + "integrity": "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==", + "dependencies": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.3.tgz", + "integrity": "sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-svgo/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/postcss-svgo/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/postcss-svgo/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/postcss-svgo/node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/postcss-svgo/node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/postcss-svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/postcss-svgo/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "node_modules/postcss-svgo/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/postcss-svgo/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/postcss-svgo/node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "node_modules/postcss-svgo/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-svgo/node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "node_modules/postcss-svgo/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-svgo/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "node_modules/postcss-svgo/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo/node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "dependencies": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/postcss-values-parser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz", + "integrity": "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==", + "dependencies": { + "flatten": "^1.0.2", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=6.14.4" + } + }, + "node_modules/postcss/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", + "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + } + }, + "node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/pretty-format/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/pretty-format/node_modules/@types/yargs": { + "version": "15.0.17", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.17.tgz", + "integrity": "sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/pretty-format/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/pretty-format/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" + }, + "node_modules/promise-polyfill": { + "version": "8.1.3", + "resolved": "https://registry.npmjs.org/promise-polyfill/-/promise-polyfill-8.1.3.tgz", + "integrity": "sha512-MG5r82wBzh7pSKDRa9y+vllNHz3e3d4CNj1PQE4BQYxLme0gKYYBm9YENq+UkEikyZ0XbiGWxYlVw3Rl9O/U8g==" + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prompts/node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "engines": { + "node": ">=6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", + "dev": true, + "optional": true + }, + "node_modules/protobufjs": { + "version": "6.11.4", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.4.tgz", + "integrity": "sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==", + "hasInstallScript": true, + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/long": "^4.0.1", + "@types/node": ">=13.7.0", + "long": "^4.0.0" + }, + "bin": { + "pbjs": "bin/pbjs", + "pbts": "bin/pbts" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==" + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + }, + "node_modules/public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dependencies": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/public-encrypt/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/pumpify/node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/pupa": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", + "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", + "dev": true, + "dependencies": { + "escape-goat": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.11.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", + "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/query-string": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", + "integrity": "sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==", + "dependencies": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/querystring": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz", + "integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dependencies": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/rc/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-app-polyfill": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-2.0.0.tgz", + "integrity": "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==", + "dependencies": { + "core-js": "^3.6.5", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.7", + "whatwg-fetch": "^3.4.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-app-polyfill/node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/react-app-polyfill/node_modules/whatwg-fetch": { + "version": "3.6.19", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.19.tgz", + "integrity": "sha512-d67JP4dHSbm2TrpFj8AbO8DnL1JXL5J9u0Kq2xW6d0TFDbCA3Muhdt8orXC22utleTVj7Prqt82baN6RBvnEgw==" + }, + "node_modules/react-dev-utils": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.4.tgz", + "integrity": "sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==", + "dependencies": { + "@babel/code-frame": "7.10.4", + "address": "1.1.2", + "browserslist": "4.14.2", + "chalk": "2.4.2", + "cross-spawn": "7.0.3", + "detect-port-alt": "1.1.6", + "escape-string-regexp": "2.0.0", + "filesize": "6.1.0", + "find-up": "4.1.0", + "fork-ts-checker-webpack-plugin": "4.1.6", + "global-modules": "2.0.0", + "globby": "11.0.1", + "gzip-size": "5.1.1", + "immer": "8.0.1", + "is-root": "2.1.0", + "loader-utils": "2.0.0", + "open": "^7.0.2", + "pkg-up": "3.1.0", + "prompts": "2.4.0", + "react-error-overlay": "^6.0.9", + "recursive-readdir": "2.2.2", + "shell-quote": "1.7.2", + "strip-ansi": "6.0.0", + "text-table": "0.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-dev-utils/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/react-dev-utils/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dev-utils/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dev-utils/node_modules/chalk/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/react-dev-utils/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/react-dev-utils/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/react-dev-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dev-utils/node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "engines": { + "node": ">=6" + } + }, + "node_modules/react-dev-utils/node_modules/prompts": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", + "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-dev-utils/node_modules/strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dependencies": { + "ansi-regex": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-device-detect": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/react-device-detect/-/react-device-detect-2.2.3.tgz", + "integrity": "sha512-buYY3qrCnQVlIFHrC5UcUoAj7iANs/+srdkwsnNjI7anr3Tt7UY6MqNxtMLlr0tMBied0O49UZVK8XKs3ZIiPw==", + "dependencies": { + "ua-parser-js": "^1.0.33" + }, + "peerDependencies": { + "react": ">= 0.14.0", + "react-dom": ">= 0.14.0" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-download-link": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/react-download-link/-/react-download-link-2.3.0.tgz", + "integrity": "sha512-0aoj2DJFBfiD9jtdIn+WAseO1GSYmgkB5y5Ljt3DeC7j1RUlx0rR5y4S+wZwdxGhvgFogCzyh5Pa4W4YE+Pg/Q==", + "dependencies": { + "prop-types": "^15.6.0" + } + }, + "node_modules/react-error-overlay": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", + "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" + }, + "node_modules/react-fast-compare": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", + "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==" + }, + "node_modules/react-ga": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/react-ga/-/react-ga-3.3.1.tgz", + "integrity": "sha512-4Vc0W5EvXAXUN/wWyxvsAKDLLgtJ3oLmhYYssx+YzphJpejtOst6cbIHCIyF50Fdxuf5DDKqRYny24yJ2y7GFQ==", + "peerDependencies": { + "prop-types": "^15.6.0", + "react": "^15.6.2 || ^16.0 || ^17 || ^18" + } + }, + "node_modules/react-ga4": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/react-ga4/-/react-ga4-1.4.1.tgz", + "integrity": "sha512-ioBMEIxd4ePw4YtaloTUgqhQGqz5ebDdC4slEpLgy2sLx1LuZBC9iYCwDymTXzcntw6K1dHX183ulP32nNdG7w==" + }, + "node_modules/react-helmet": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/react-helmet/-/react-helmet-6.1.0.tgz", + "integrity": "sha512-4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw==", + "dependencies": { + "object-assign": "^4.1.1", + "prop-types": "^15.7.2", + "react-fast-compare": "^3.1.1", + "react-side-effect": "^2.1.0" + }, + "peerDependencies": { + "react": ">=16.3.0" + } + }, + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/react-messenger-customer-chat": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/react-messenger-customer-chat/-/react-messenger-customer-chat-0.8.0.tgz", + "integrity": "sha512-7HItF+2nElXCBLi1q5eccgE9X4P86BmjmzF5nBcok+hJNWVjdKJTdWxl9VZTQnjkp3GHB7WwTwN2l3d/RKmFuQ==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/react-refresh": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz", + "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-responsive": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/react-responsive/-/react-responsive-8.2.0.tgz", + "integrity": "sha512-iagCqVrw4QSjhxKp3I/YK6+ODkWY6G+YPElvdYKiUUbywwh9Ds0M7r26Fj2/7dWFFbOpcGnJE6uE7aMck8j5Qg==", + "dependencies": { + "hyphenate-style-name": "^1.0.0", + "matchmediaquery": "^0.3.0", + "prop-types": "^15.6.1", + "shallow-equal": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/react-router": { + "version": "6.17.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.17.0.tgz", + "integrity": "sha512-YJR3OTJzi3zhqeJYADHANCGPUu9J+6fT5GLv82UWRGSxu6oJYCKVmxUcaBQuGm9udpWmPsvpme/CdHumqgsoaA==", + "dependencies": { + "@remix-run/router": "1.10.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/react-router-dom": { + "version": "6.17.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.17.0.tgz", + "integrity": "sha512-qWHkkbXQX+6li0COUUPKAUkxjNNqPJuiBd27dVwQGDNsuFBdMbrS6UZ0CLYc4CsbdLYTckn4oB4tGDuPZpPhaQ==", + "dependencies": { + "@remix-run/router": "1.10.0", + "react-router": "6.17.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" + } + }, + "node_modules/react-scripts": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-4.0.3.tgz", + "integrity": "sha512-S5eO4vjUzUisvkIPB7jVsKtuH2HhWcASREYWHAQ1FP5HyCv3xgn+wpILAEWkmy+A+tTNbSZClhxjT3qz6g4L1A==", + "dependencies": { + "@babel/core": "7.12.3", + "@pmmmwh/react-refresh-webpack-plugin": "0.4.3", + "@svgr/webpack": "5.5.0", + "@typescript-eslint/eslint-plugin": "^4.5.0", + "@typescript-eslint/parser": "^4.5.0", + "babel-eslint": "^10.1.0", + "babel-jest": "^26.6.0", + "babel-loader": "8.1.0", + "babel-plugin-named-asset-import": "^0.3.7", + "babel-preset-react-app": "^10.0.0", + "bfj": "^7.0.2", + "camelcase": "^6.1.0", + "case-sensitive-paths-webpack-plugin": "2.3.0", + "css-loader": "4.3.0", + "dotenv": "8.2.0", + "dotenv-expand": "5.1.0", + "eslint": "^7.11.0", + "eslint-config-react-app": "^6.0.0", + "eslint-plugin-flowtype": "^5.2.0", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-jest": "^24.1.0", + "eslint-plugin-jsx-a11y": "^6.3.1", + "eslint-plugin-react": "^7.21.5", + "eslint-plugin-react-hooks": "^4.2.0", + "eslint-plugin-testing-library": "^3.9.2", + "eslint-webpack-plugin": "^2.5.2", + "file-loader": "6.1.1", + "fs-extra": "^9.0.1", + "html-webpack-plugin": "4.5.0", + "identity-obj-proxy": "3.0.0", + "jest": "26.6.0", + "jest-circus": "26.6.0", + "jest-resolve": "26.6.0", + "jest-watch-typeahead": "0.6.1", + "mini-css-extract-plugin": "0.11.3", + "optimize-css-assets-webpack-plugin": "5.0.4", + "pnp-webpack-plugin": "1.6.4", + "postcss-flexbugs-fixes": "4.2.1", + "postcss-loader": "3.0.0", + "postcss-normalize": "8.0.1", + "postcss-preset-env": "6.7.0", + "postcss-safe-parser": "5.0.2", + "prompts": "2.4.0", + "react-app-polyfill": "^2.0.0", + "react-dev-utils": "^11.0.3", + "react-refresh": "^0.8.3", + "resolve": "1.18.1", + "resolve-url-loader": "^3.1.2", + "sass-loader": "^10.0.5", + "semver": "7.3.2", + "style-loader": "1.3.0", + "terser-webpack-plugin": "4.2.3", + "ts-pnp": "1.2.0", + "url-loader": "4.1.1", + "webpack": "4.44.2", + "webpack-dev-server": "3.11.1", + "webpack-manifest-plugin": "2.2.0", + "workbox-webpack-plugin": "5.1.4" + }, + "bin": { + "react-scripts": "bin/react-scripts.js" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.1.3" + }, + "peerDependencies": { + "react": ">= 16", + "typescript": "^3.2.1 || ^4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/react-scripts/node_modules/@types/eslint": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", + "integrity": "sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/react-scripts/node_modules/adjust-sourcemap-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz", + "integrity": "sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==", + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/react-scripts/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/chalk/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/chalk/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/react-scripts/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/react-scripts/node_modules/convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/react-scripts/node_modules/dotenv": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", + "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/react-scripts/node_modules/eslint-webpack-plugin": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-2.7.0.tgz", + "integrity": "sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==", + "dependencies": { + "@types/eslint": "^7.29.0", + "arrify": "^2.0.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^3.1.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/react-scripts/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/react-scripts/node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dependencies": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/react-scripts/node_modules/postcss/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/react-scripts/node_modules/postcss/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/prompts": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", + "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/resolve-url-loader": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.5.tgz", + "integrity": "sha512-mgFMCmrV/tA4738EsFmPFE5/MaqSgUMe8LK971kVEKA/RrNVb7+VqFsg/qmKyythf34eyq476qIobP/gfFBGSQ==", + "dependencies": { + "adjust-sourcemap-loader": "3.0.0", + "camelcase": "5.3.1", + "compose-function": "3.0.3", + "convert-source-map": "1.7.0", + "es6-iterator": "2.0.3", + "loader-utils": "^1.2.3", + "postcss": "7.0.36", + "rework": "1.0.1", + "rework-visit": "1.0.0", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/react-scripts/node_modules/resolve-url-loader/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/resolve-url-loader/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/react-scripts/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/react-scripts/node_modules/semver": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", + "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-scripts/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/react-select": { + "version": "5.7.7", + "resolved": "https://registry.npmjs.org/react-select/-/react-select-5.7.7.tgz", + "integrity": "sha512-HhashZZJDRlfF/AKj0a0Lnfs3sRdw/46VJIRd8IbB9/Ovr74+ZIwkAdSBjSPXsFMG+u72c5xShqwLSKIJllzqw==", + "dependencies": { + "@babel/runtime": "^7.12.0", + "@emotion/cache": "^11.4.0", + "@emotion/react": "^11.8.1", + "@floating-ui/dom": "^1.0.1", + "@types/react-transition-group": "^4.4.0", + "memoize-one": "^6.0.0", + "prop-types": "^15.6.0", + "react-transition-group": "^4.3.0", + "use-isomorphic-layout-effect": "^1.1.2" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-side-effect": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/react-side-effect/-/react-side-effect-2.1.2.tgz", + "integrity": "sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw==", + "peerDependencies": { + "react": "^16.3.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-textarea-autosize": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.3.tgz", + "integrity": "sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "use-composed-ref": "^1.3.0", + "use-latest": "^1.2.1" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/read-config-file": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/read-config-file/-/read-config-file-6.2.0.tgz", + "integrity": "sha512-gx7Pgr5I56JtYz+WuqEbQHj/xWo+5Vwua2jhb1VwM4Wid5PqYmZ4i00ZB0YEGIfkVBsCv9UrjgyqCiQfS/Oosg==", + "dev": true, + "dependencies": { + "dotenv": "^9.0.2", + "dotenv-expand": "^5.1.0", + "js-yaml": "^4.1.0", + "json5": "^2.2.0", + "lazy-val": "^1.0.4" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/read-config-file/node_modules/dotenv": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-9.0.2.tgz", + "integrity": "sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/recursive-readdir": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", + "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", + "dependencies": { + "minimatch": "3.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/recursive-readdir/node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", + "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/registry-auth-token": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.2.tgz", + "integrity": "sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==", + "dev": true, + "dependencies": { + "rc": "1.2.8" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/registry-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", + "dev": true, + "dependencies": { + "rc": "^1.2.8" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==" + }, + "node_modules/renderkid": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz", + "integrity": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^3.0.1" + } + }, + "node_modules/renderkid/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/renderkid/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + }, + "node_modules/resolve": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.18.1.tgz", + "integrity": "sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==", + "dependencies": { + "is-core-module": "^2.0.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "deprecated": "https://github.com/lydell/resolve-url#deprecated" + }, + "node_modules/resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", + "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", + "dependencies": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=8.9" + }, + "peerDependencies": { + "rework": "1.0.1", + "rework-visit": "1.0.0" + }, + "peerDependenciesMeta": { + "rework": { + "optional": true + }, + "rework-visit": { + "optional": true + } + } + }, + "node_modules/resolve-url-loader/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", + "dev": true, + "dependencies": { + "lowercase-keys": "^1.0.0" + } + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "engines": { + "node": ">=0.12" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rework": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz", + "integrity": "sha512-eEjL8FdkdsxApd0yWVZgBGzfCQiT8yqSc2H1p4jpZpQdtz7ohETiDMoje5PlM8I9WgkqkreVxFUKYOiJdVWDXw==", + "dependencies": { + "convert-source-map": "^0.3.3", + "css": "^2.0.0" + } + }, + "node_modules/rework-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", + "integrity": "sha512-W6V2fix7nCLUYX1v6eGPrBOZlc03/faqzP4sUxMAJMBMOPYhfV/RyLegTufn5gJKaOITyi+gvf0LXDZ9NzkHnQ==" + }, + "node_modules/rework/node_modules/convert-source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz", + "integrity": "sha512-+4nRk0k3oEpwUB7/CalD7xE2z4VmtEnnq0GO2IPTkrooTrAhEsWvuLF5iWP1dXrwluki/azwXV1ve7gtYuPldg==" + }, + "node_modules/rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==" + }, + "node_modules/rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==" + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/roarr": { + "version": "2.15.4", + "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz", + "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==", + "dev": true, + "optional": true, + "dependencies": { + "boolean": "^3.0.1", + "detect-node": "^2.0.4", + "globalthis": "^1.0.1", + "json-stringify-safe": "^5.0.1", + "semver-compare": "^1.0.0", + "sprintf-js": "^1.1.2" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/rollup": { + "version": "1.32.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-1.32.1.tgz", + "integrity": "sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==", + "dependencies": { + "@types/estree": "*", + "@types/node": "*", + "acorn": "^7.1.0" + }, + "bin": { + "rollup": "dist/bin/rollup" + } + }, + "node_modules/rollup-plugin-babel": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz", + "integrity": "sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==", + "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-babel.", + "dependencies": { + "@babel/helper-module-imports": "^7.0.0", + "rollup-pluginutils": "^2.8.1" + }, + "peerDependencies": { + "@babel/core": "7 || ^7.0.0-rc.2", + "rollup": ">=0.60.0 <3" + } + }, + "node_modules/rollup-plugin-terser": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-5.3.1.tgz", + "integrity": "sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==", + "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser", + "dependencies": { + "@babel/code-frame": "^7.5.5", + "jest-worker": "^24.9.0", + "rollup-pluginutils": "^2.8.2", + "serialize-javascript": "^4.0.0", + "terser": "^4.6.2" + }, + "peerDependencies": { + "rollup": ">=0.66.0 <3" + } + }, + "node_modules/rollup-plugin-terser/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/rollup-plugin-terser/node_modules/jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/rollup-pluginutils": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", + "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", + "dependencies": { + "estree-walker": "^0.6.1" + } + }, + "node_modules/rollup-pluginutils/node_modules/estree-walker": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", + "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==" + }, + "node_modules/rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "engines": { + "node": "6.* || >= 7.*" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==", + "dependencies": { + "aproba": "^1.1.1" + } + }, + "node_modules/run-queue/node_modules/aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "node_modules/rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dev": true, + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" + } + }, + "node_modules/rxjs/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/safe-array-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "deprecated": "some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added", + "dependencies": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "bin": { + "sane": "src/cli.js" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/sane/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/sane/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/sane/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/sane/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/sane/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/sane/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/sane/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/sanitize-filename": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/sanitize-filename/-/sanitize-filename-1.6.3.tgz", + "integrity": "sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==", + "dev": true, + "dependencies": { + "truncate-utf8-bytes": "^1.0.0" + } + }, + "node_modules/sanitize.css": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-10.0.0.tgz", + "integrity": "sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==" + }, + "node_modules/sass": { + "version": "1.69.4", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.69.4.tgz", + "integrity": "sha512-+qEreVhqAy8o++aQfCJwp0sklr2xyEzkm9Pp/Igu9wNPoe7EZEQ8X/MBvvXggI2ql607cxKg/RKOwDj6pp2XDA==", + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-loader": { + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-10.4.1.tgz", + "integrity": "sha512-aX/iJZTTpNUNx/OSYzo2KsjIUQHqvWsAhhUijFjAPdZTEhstjZI9zTNvkTTwsx+uNUJqUwOw5gacxQMx4hJxGQ==", + "dependencies": { + "klona": "^2.0.4", + "loader-utils": "^2.0.0", + "neo-async": "^2.6.2", + "schema-utils": "^3.0.0", + "semver": "^7.3.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0", + "sass": "^1.3.0", + "webpack": "^4.36.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/sass-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/sass/node_modules/immutable": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz", + "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==" + }, + "node_modules/sax": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz", + "integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" + }, + "node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/schema-utils/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/schema-utils/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/schema-utils/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + }, + "node_modules/selfsigned": { + "version": "1.10.14", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", + "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", + "dependencies": { + "node-forge": "^0.10.0" + } + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", + "dev": true, + "optional": true + }, + "node_modules/semver-diff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", + "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", + "dev": true, + "dependencies": { + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/semver-diff/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/send/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/serialize-error": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", + "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", + "dev": true, + "optional": true, + "dependencies": { + "type-fest": "^0.13.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/serialize-error/node_modules/type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + }, + "node_modules/set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "dependencies": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/shallow-equal": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/shallow-equal/-/shallow-equal-1.2.1.tgz", + "integrity": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", + "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" + }, + "node_modules/shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "optional": true + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "dev": true, + "optional": true, + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/sockjs-client": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.6.1.tgz", + "integrity": "sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==", + "dependencies": { + "debug": "^3.2.7", + "eventsource": "^2.0.2", + "faye-websocket": "^0.11.4", + "inherits": "^2.0.4", + "url-parse": "^1.5.10" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://tidelift.com/funding/github/npm/sockjs-client" + } + }, + "node_modules/sockjs-client/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/sockjs-client/node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated" + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "deprecated": "Please use @jridgewell/sourcemap-codec instead" + }, + "node_modules/spawn-command": { + "version": "0.0.2-1", + "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz", + "integrity": "sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==", + "dev": true + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==" + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split2": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", + "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/sprintf-js": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", + "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", + "dev": true, + "optional": true + }, + "node_modules/ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/ssri/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + }, + "node_modules/stat-mode": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stat-mode/-/stat-mode-1.0.0.tgz", + "integrity": "sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/static-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz", + "integrity": "sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==", + "dependencies": { + "escodegen": "^1.8.1" + } + }, + "node_modules/static-eval/node_modules/escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/static-eval/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/static-eval/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-eval/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "node_modules/stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "dependencies": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dependencies": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + }, + "node_modules/strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-hash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", + "integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==" + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", + "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "regexp.prototype.flags": "^1.5.0", + "set-function-name": "^2.0.0", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/stringify-object/node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-comments": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz", + "integrity": "sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==", + "dependencies": { + "babel-extract-comments": "^1.0.0", + "babel-plugin-transform-object-rest-spread": "^6.26.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-loader": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz", + "integrity": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.0" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/style-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/styled-jsx": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-4.0.1.tgz", + "integrity": "sha512-Gcb49/dRB1k8B4hdK8vhW27Rlb2zujCk1fISrizCcToIs+55B4vmUM0N9Gi4nnVfFZWe55jRdWpAqH1ldAKWvQ==", + "dependencies": { + "@babel/plugin-syntax-jsx": "7.14.5", + "@babel/types": "7.15.0", + "convert-source-map": "1.7.0", + "loader-utils": "1.2.3", + "source-map": "0.7.3", + "string-hash": "1.1.3", + "stylis": "3.5.4", + "stylis-rule-sheet": "0.0.10" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || 18.x.x" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + } + } + }, + "node_modules/styled-jsx/node_modules/@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz", + "integrity": "sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/styled-jsx/node_modules/@babel/types": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz", + "integrity": "sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.14.9", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/styled-jsx/node_modules/convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/styled-jsx/node_modules/emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/styled-jsx/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/styled-jsx/node_modules/loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^2.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/styled-jsx/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/styled-jsx/node_modules/stylis": { + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz", + "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==" + }, + "node_modules/stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/stylehacks/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/stylis": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", + "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" + }, + "node_modules/stylis-rule-sheet": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz", + "integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==", + "peerDependencies": { + "stylis": "^3.5.0" + } + }, + "node_modules/sumchecker": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz", + "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==", + "dev": true, + "dependencies": { + "debug": "^4.1.0" + }, + "engines": { + "node": ">= 8.0" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + }, + "node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/svgo/node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + }, + "node_modules/table": { + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", + "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", + "dependencies": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/table/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/table/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/tar": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", + "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/temp-file": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/temp-file/-/temp-file-3.4.0.tgz", + "integrity": "sha512-C5tjlC/HCtVUOi3KWVokd4vHVViOmGjtLwIh4MuzPo/nMYTV/p1urt3RnMz2IWXDdKEGJH3k5+KPxtqRsUYGtg==", + "dev": true, + "dependencies": { + "async-exit-hook": "^2.0.1", + "fs-extra": "^10.0.0" + } + }, + "node_modules/temp-file/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/tempy": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz", + "integrity": "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==", + "dependencies": { + "temp-dir": "^1.0.0", + "type-fest": "^0.3.1", + "unique-string": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tempy/node_modules/crypto-random-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", + "integrity": "sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", + "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/tempy/node_modules/unique-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", + "integrity": "sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==", + "dependencies": { + "crypto-random-string": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", + "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz", + "integrity": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==", + "dependencies": { + "cacache": "^15.0.5", + "find-cache-dir": "^3.3.1", + "jest-worker": "^26.5.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1", + "terser": "^5.3.4", + "webpack-sources": "^1.4.3" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/terser-webpack-plugin/node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser-webpack-plugin/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/terser": { + "version": "5.22.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.22.0.tgz", + "integrity": "sha512-hHZVLgRA2z4NWcN6aS5rQDc+7Dcy58HOf2zbYwmFcQ+ua3h6eEFf5lIDKTzbWwlazPyOZsFQO8V80/IjVNExEw==", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/terser/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "node_modules/throat": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==" + }, + "node_modules/through2": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dependencies": { + "readable-stream": "3" + } + }, + "node_modules/through2/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "node_modules/timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "dependencies": { + "setimmediate": "^1.0.4" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==" + }, + "node_modules/tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + }, + "node_modules/tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "dev": true, + "dependencies": { + "rimraf": "^3.0.0" + }, + "engines": { + "node": ">=8.17.0" + } + }, + "node_modules/tmp-promise": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-3.0.3.tgz", + "integrity": "sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==", + "dev": true, + "dependencies": { + "tmp": "^0.2.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + }, + "node_modules/to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/truncate-utf8-bytes": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz", + "integrity": "sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==", + "dev": true, + "dependencies": { + "utf8-byte-length": "^1.0.1" + } + }, + "node_modules/tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + }, + "node_modules/ts-pnp": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", + "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==", + "engines": { + "node": ">=6" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==" + }, + "node_modules/tunnel": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", + "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.6.11 <=0.7.0 || >=0.7.3" + } + }, + "node_modules/type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/ua-parser-js": { + "version": "1.0.36", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.36.tgz", + "integrity": "sha512-znuyCIXzl8ciS3+y3fHJI/2OhQIXbXw9MWC/o3qwyR+RGppjZHrM27CGFSKCJXi2Kctiz537iOu2KnXs1lMQhw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + }, + { + "type": "github", + "url": "https://github.com/sponsors/faisalman" + } + ], + "engines": { + "node": "*" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/underscore": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz", + "integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==" + }, + "node_modules/undici-types": { + "version": "5.25.3", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.25.3.tgz", + "integrity": "sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==" + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "engines": { + "node": ">=4" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/union-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==" + }, + "node_modules/uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ==" + }, + "node_modules/unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dev": true, + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/update-browserslist-db/node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/update-notifier": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz", + "integrity": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==", + "dev": true, + "dependencies": { + "boxen": "^5.0.0", + "chalk": "^4.1.0", + "configstore": "^5.0.1", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.4.0", + "is-npm": "^5.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.1.0", + "pupa": "^2.1.1", + "semver": "^7.3.4", + "semver-diff": "^3.1.1", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/yeoman/update-notifier?sponsor=1" + } + }, + "node_modules/update-notifier/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/update-notifier/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, + "node_modules/update-notifier/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dev": true, + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "deprecated": "Please see https://github.com/lydell/urix#deprecated" + }, + "node_modules/url": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.3.tgz", + "integrity": "sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==", + "dependencies": { + "punycode": "^1.4.1", + "qs": "^6.11.2" + } + }, + "node_modules/url-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "dependencies": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "file-loader": "*", + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "file-loader": { + "optional": true + } + } + }, + "node_modules/url-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", + "dev": true, + "dependencies": { + "prepend-http": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/use-composed-ref": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz", + "integrity": "sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/use-isomorphic-layout-effect": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", + "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/use-latest": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz", + "integrity": "sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==", + "dependencies": { + "use-isomorphic-layout-effect": "^1.1.1" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/utf8-byte-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz", + "integrity": "sha512-4+wkEYLBbWxqTahEsWrhxepcoVOJ+1z5PGIjPZxRkytcdSUaNjIjBM7Xn8E+pdSuV7SzvWovBFA54FO0JSoqhA==", + "dev": true + }, + "node_modules/util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "dependencies": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", + "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==" + }, + "node_modules/v8-to-istanbul": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz", + "integrity": "sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/verror": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.1.tgz", + "integrity": "sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg==", + "dev": true, + "optional": true, + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/verror/node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", + "dev": true, + "optional": true + }, + "node_modules/vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/wait-on": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-6.0.1.tgz", + "integrity": "sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==", + "dev": true, + "dependencies": { + "axios": "^0.25.0", + "joi": "^17.6.0", + "lodash": "^4.17.21", + "minimist": "^1.2.5", + "rxjs": "^7.5.4" + }, + "bin": { + "wait-on": "bin/wait-on" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/wait-on/node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "dependencies": { + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0" + }, + "optionalDependencies": { + "chokidar": "^3.4.1", + "watchpack-chokidar2": "^2.0.1" + } + }, + "node_modules/watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "optional": true, + "dependencies": { + "chokidar": "^2.1.8" + } + }, + "node_modules/watchpack-chokidar2/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "optional": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/watchpack-chokidar2/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "optional": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "optional": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "optional": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", + "optional": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "optional": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "optional": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "optional": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "optional": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "optional": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "optional": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "optional": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "optional": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "optional": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/watchpack-chokidar2/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "optional": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/web-vitals": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-1.1.2.tgz", + "integrity": "sha512-PFMKIY+bRSXlMxVAQ+m2aw9c/ioUYfDgrYot0YUa+/xa0sakubWhSDyxAKwzymvXVdF4CZI71g06W+mqhzu6ig==" + }, + "node_modules/webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "engines": { + "node": ">=10.4" + } + }, + "node_modules/webpack": { + "version": "4.44.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz", + "integrity": "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.3.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + }, + "webpack-command": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dependencies": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-server": { + "version": "3.11.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.1.tgz", + "integrity": "sha512-u4R3mRzZkbxQVa+MBWi2uVpB5W59H3ekZAJsQlKUTdl7Elcah2EhygTPLmeFXybQkf9i2+L0kn7ik9SnXa6ihQ==", + "dependencies": { + "ansi-html": "0.0.7", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 6.11.5" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/webpack-dev-server/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/webpack-dev-server/node_modules/cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/webpack-dev-server/node_modules/cliui/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/cliui/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/webpack-dev-server/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/webpack-dev-server/node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "node_modules/webpack-dev-server/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/webpack-dev-server/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/webpack-dev-server/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dependencies": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-dev-server/node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/webpack-dev-server/node_modules/resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/webpack-dev-server/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/webpack-dev-server/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/string-width/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/string-width/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/webpack-dev-server/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + }, + "node_modules/webpack-dev-server/node_modules/yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dependencies": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "node_modules/webpack-dev-server/node_modules/yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dependencies": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/webpack-log/node_modules/ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-log/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/webpack-manifest-plugin": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz", + "integrity": "sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==", + "dependencies": { + "fs-extra": "^7.0.0", + "lodash": ">=3.5 <5", + "object.entries": "^1.1.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.11.5" + }, + "peerDependencies": { + "webpack": "2 || 3 || 4" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack-sources/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/webpack/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "dependencies": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "node_modules/webpack/node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dependencies": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/webpack/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/webpack/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/webpack/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/webpack/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/webpack/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/ssri": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", + "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", + "dependencies": { + "figgy-pudding": "^3.5.1" + } + }, + "node_modules/webpack/node_modules/terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "dependencies": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/webpack/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + }, + "node_modules/webpack/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/whatwg-fetch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz", + "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/whatwg-url/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "dependencies": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" + }, + "node_modules/which-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", + "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.4", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "dev": true, + "dependencies": { + "string-width": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/window-size": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz", + "integrity": "sha512-2thx4pB0cV3h+Bw7QmMXcEbdmOzv9t0HFplJH/Lz6yu60hXYy5RT8rUu+wlIreVxWsGN20mo+MHeCSfUpQBwPw==", + "bin": { + "window-size": "cli.js" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-background-sync": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-5.1.4.tgz", + "integrity": "sha512-AH6x5pYq4vwQvfRDWH+vfOePfPIYQ00nCEB7dJRU1e0n9+9HMRyvI63FlDvtFT2AvXVRsXvUt7DNMEToyJLpSA==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-broadcast-update": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-5.1.4.tgz", + "integrity": "sha512-HTyTWkqXvHRuqY73XrwvXPud/FN6x3ROzkfFPsRjtw/kGZuZkPzfeH531qdUGfhtwjmtO/ZzXcWErqVzJNdXaA==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-build": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-5.1.4.tgz", + "integrity": "sha512-xUcZn6SYU8usjOlfLb9Y2/f86Gdo+fy1fXgH8tJHjxgpo53VVsqRX0lUDw8/JuyzNmXuo8vXX14pXX2oIm9Bow==", + "dependencies": { + "@babel/core": "^7.8.4", + "@babel/preset-env": "^7.8.4", + "@babel/runtime": "^7.8.4", + "@hapi/joi": "^15.1.0", + "@rollup/plugin-node-resolve": "^7.1.1", + "@rollup/plugin-replace": "^2.3.1", + "@surma/rollup-plugin-off-main-thread": "^1.1.1", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^8.1.0", + "glob": "^7.1.6", + "lodash.template": "^4.5.0", + "pretty-bytes": "^5.3.0", + "rollup": "^1.31.1", + "rollup-plugin-babel": "^4.3.3", + "rollup-plugin-terser": "^5.3.1", + "source-map": "^0.7.3", + "source-map-url": "^0.4.0", + "stringify-object": "^3.3.0", + "strip-comments": "^1.0.2", + "tempy": "^0.3.0", + "upath": "^1.2.0", + "workbox-background-sync": "^5.1.4", + "workbox-broadcast-update": "^5.1.4", + "workbox-cacheable-response": "^5.1.4", + "workbox-core": "^5.1.4", + "workbox-expiration": "^5.1.4", + "workbox-google-analytics": "^5.1.4", + "workbox-navigation-preload": "^5.1.4", + "workbox-precaching": "^5.1.4", + "workbox-range-requests": "^5.1.4", + "workbox-routing": "^5.1.4", + "workbox-strategies": "^5.1.4", + "workbox-streams": "^5.1.4", + "workbox-sw": "^5.1.4", + "workbox-window": "^5.1.4" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/workbox-build/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/workbox-build/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/workbox-build/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/workbox-build/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/workbox-cacheable-response": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-5.1.4.tgz", + "integrity": "sha512-0bfvMZs0Of1S5cdswfQK0BXt6ulU5kVD4lwer2CeI+03czHprXR3V4Y8lPTooamn7eHP8Iywi5QjyAMjw0qauA==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-core": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-5.1.4.tgz", + "integrity": "sha512-+4iRQan/1D8I81nR2L5vcbaaFskZC2CL17TLbvWVzQ4qiF/ytOGF6XeV54pVxAvKUtkLANhk8TyIUMtiMw2oDg==" + }, + "node_modules/workbox-expiration": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-5.1.4.tgz", + "integrity": "sha512-oDO/5iC65h2Eq7jctAv858W2+CeRW5e0jZBMNRXpzp0ZPvuT6GblUiHnAsC5W5lANs1QS9atVOm4ifrBiYY7AQ==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-google-analytics": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-5.1.4.tgz", + "integrity": "sha512-0IFhKoEVrreHpKgcOoddV+oIaVXBFKXUzJVBI+nb0bxmcwYuZMdteBTp8AEDJacENtc9xbR0wa9RDCnYsCDLjA==", + "dependencies": { + "workbox-background-sync": "^5.1.4", + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4", + "workbox-strategies": "^5.1.4" + } + }, + "node_modules/workbox-navigation-preload": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-5.1.4.tgz", + "integrity": "sha512-Wf03osvK0wTflAfKXba//QmWC5BIaIZARU03JIhAEO2wSB2BDROWI8Q/zmianf54kdV7e1eLaIEZhth4K4MyfQ==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-precaching": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-5.1.4.tgz", + "integrity": "sha512-gCIFrBXmVQLFwvAzuGLCmkUYGVhBb7D1k/IL7pUJUO5xacjLcFUaLnnsoVepBGAiKw34HU1y/YuqvTKim9qAZA==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-range-requests": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-5.1.4.tgz", + "integrity": "sha512-1HSujLjgTeoxHrMR2muDW2dKdxqCGMc1KbeyGcmjZZAizJTFwu7CWLDmLv6O1ceWYrhfuLFJO+umYMddk2XMhw==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-routing": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-5.1.4.tgz", + "integrity": "sha512-8ljknRfqE1vEQtnMtzfksL+UXO822jJlHTIR7+BtJuxQ17+WPZfsHqvk1ynR/v0EHik4x2+826Hkwpgh4GKDCw==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-strategies": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-5.1.4.tgz", + "integrity": "sha512-VVS57LpaJTdjW3RgZvPwX0NlhNmscR7OQ9bP+N/34cYMDzXLyA6kqWffP6QKXSkca1OFo/v6v7hW7zrrguo6EA==", + "dependencies": { + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4" + } + }, + "node_modules/workbox-streams": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-5.1.4.tgz", + "integrity": "sha512-xU8yuF1hI/XcVhJUAfbQLa1guQUhdLMPQJkdT0kn6HP5CwiPOGiXnSFq80rAG4b1kJUChQQIGPrq439FQUNVrw==", + "dependencies": { + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4" + } + }, + "node_modules/workbox-sw": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-5.1.4.tgz", + "integrity": "sha512-9xKnKw95aXwSNc8kk8gki4HU0g0W6KXu+xks7wFuC7h0sembFnTrKtckqZxbSod41TDaGh+gWUA5IRXrL0ECRA==" + }, + "node_modules/workbox-webpack-plugin": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-5.1.4.tgz", + "integrity": "sha512-PZafF4HpugZndqISi3rZ4ZK4A4DxO8rAqt2FwRptgsDx7NF8TVKP86/huHquUsRjMGQllsNdn4FNl8CD/UvKmQ==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "fast-json-stable-stringify": "^2.0.0", + "source-map-url": "^0.4.0", + "upath": "^1.1.2", + "webpack-sources": "^1.3.0", + "workbox-build": "^5.1.4" + }, + "engines": { + "node": ">=8.0.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/workbox-window": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-5.1.4.tgz", + "integrity": "sha512-vXQtgTeMCUq/4pBWMfQX8Ee7N2wVC4Q7XYFqLnfbXJ2hqew/cU1uMTD2KqGEgEpE4/30luxIxgE+LkIa8glBYw==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "dependencies": { + "errno": "~0.1.7" + } + }, + "node_modules/worker-rpc": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz", + "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==", + "dependencies": { + "microevent.ts": "~0.1.1" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + }, + "node_modules/xml2js": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", + "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/xml2js/node_modules/xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/xmlbuilder": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", + "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", + "engines": { + "node": ">=8.0" + } + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + }, + "node_modules/xmlhttprequest": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz", + "integrity": "sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yarn": { + "version": "1.22.19", + "resolved": "https://registry.npmjs.org/yarn/-/yarn-1.22.19.tgz", + "integrity": "sha512-/0V5q0WbslqnwP91tirOvldvYISzaqhClxzyUKXYxs07yUILIs5jx/k6CFe8bvKSkds5w+eiOqta39Wk3WxdcQ==", + "dev": true, + "hasInstallScript": true, + "bin": { + "yarn": "bin/yarn.js", + "yarnpkg": "bin/yarn.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..1aba617 --- /dev/null +++ b/package.json @@ -0,0 +1,110 @@ +{ + "name": "debaters-toolkit", + "description": "A toolkit that helps you generate debate motions, calculate break chances and do timekeeping.", + "author": "[Quy Anh] «Elliot» Nguyen", + "version": "0.0.0", + "private": true, + "dependencies": { + "@capacitor/android": "^3.3.3", + "@capacitor/cli": "^3.3.3", + "@capacitor/core": "^3.3.3", + "@mui/icons-material": "^5.2.4", + "@mui/lab": "^5.0.0-alpha.60", + "@mui/material": "^5.2.4", + "@mui/styles": "^5.2.3", + "@testing-library/jest-dom": "^5.14.1", + "@testing-library/react": "^11.2.7", + "@testing-library/user-event": "^12.8.3", + "capacitor": "^0.5.5", + "core-js": "^3.19.2", + "cross-env": "^7.0.3", + "dotenv": "^10.0.0", + "electron-is-dev": "^2.0.0", + "eslint-webpack-plugin": "^3.1.1", + "firebase": "^8.6.7", + "grpc": "^1.24.11", + "lodash": "^4.17.21", + "react": "^18.1.0", + "react-dev-utils": "^11.0.4", + "react-device-detect": "^2.1.2", + "react-dom": "^18.1.0", + "react-download-link": "^2.3.0", + "react-ga": "^3.3.0", + "react-ga4": "^1.4.1", + "react-helmet": "^6.1.0", + "react-messenger-customer-chat": "^0.8.0", + "react-responsive": "^8.2.0", + "react-router": "^6.2.1", + "react-router-dom": "^6.2.1", + "react-scripts": "4.0.3", + "react-select": "^5.2.1", + "react-textarea-autosize": "^8.3.3", + "readdirp": "^3.6.0", + "resolve-url-loader": "^4.0.0", + "sass": "^1.52.1", + "styled-jsx": "^4.0.1", + "svgo": "^2.4.0", + "web-vitals": "^1.1.2", + "webpack": "4.44.2" + }, + "main": "public/electron.js", + "build": { + "appId": "com.ajdx3b1qk49oi3vsnuw5k34x.debaters-toolkit", + "files": [ + "build/**/*", + "node_modules/**/*" + ], + "directories": { + "buildResources": "assets" + }, + "extends": null, + "win": { + "icon": "public/media/icons/electron.png" + }, + "linux": { + "icon": "public/media/icons/electron.png" + }, + "mac": { + "icon": "public/media/icons/electron.png" + } + }, + "homepage": "./", + "scripts": { + "start": "react-scripts start", + "build": "PUBLIC_URL=. react-scripts build", + "test": "react-scripts test", + "eject": "react-scripts eject", + "dev": "concurrently -k \"cross-env BROWSER=none npm start\" \"npm:electron\"", + "electron": "wait-on tcp:3000 && electron .", + "electron-pack": "electron-builder -c.extraMetadata.main=build/electron.js", + "deploy": "gh-pages -d build" + }, + "eslintConfig": { + "extends": [ + "react-app", + "react-app/jest" + ] + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + }, + "packageManager": "yarn@3.6.4", + "devDependencies": { + "@types/react-select": "^5.0.1", + "concurrently": "^6.4.0", + "electron": "^16.0.2", + "electron-builder": "^22.14.5", + "gh-pages": "^6.0.0", + "wait-on": "^6.0.0", + "yarn": "^1.22.19" + } +} diff --git a/public/_redirects b/public/_redirects new file mode 100644 index 0000000..3e05d2d --- /dev/null +++ b/public/_redirects @@ -0,0 +1 @@ +/* /index.html 200 \ No newline at end of file diff --git a/public/electron.js b/public/electron.js new file mode 100644 index 0000000..602390c --- /dev/null +++ b/public/electron.js @@ -0,0 +1,40 @@ +const { app, BrowserWindow } = require('electron') +const path = require('path') +const isDev = require('electron-is-dev') + +let mainWindow + +const createWindow = () => { + mainWindow = new BrowserWindow({ + width: 800, + height: 600, + icon: path.join(__dirname, 'media/icons/electron.png'), + webPreferences: { + nodeIntegration: true, + contextIsolation: false, + }, + }) + + mainWindow.loadURL( + isDev + ? 'http://localhost:3000' + : `file://${path.join(__dirname, '..', 'build', 'index.html')}` + ) + + mainWindow.on('closed', () => (mainWindow = null)) +} + +app.disableHardwareAcceleration() +app.on('ready', createWindow) + +app.on('window-all-closed', () => { + if (process.platform !== 'darwin') { + app.quit() + } +}) + +app.on('activate', () => { + if (mainWindow === null) { + createWindow() + } +}) \ No newline at end of file diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..48129b4 --- /dev/null +++ b/public/index.html @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + +
+ + diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..1fb7adb --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,113 @@ +{ + "name": "Debaters' toolkit", + "short_name": "Debaters' toolkit", + "categories": [ + "education", + "sports", + "utilities" + ], + "description": "Generate a random debate motion, search our database of over 7000 motions, calculate break chances or do debate timekeeping.", + "screenshots": [ + { + "src": "media/screenshots/1.png", + "sizes": "1800x2040", + "type": "image/png" + }, + { + "src": "media/screenshots/2.png", + "sizes": "1800x2040", + "type": "image/png" + }, + { + "src": "media/screenshots/3.png", + "sizes": "1800x2040", + "type": "image/png" + }, + { + "src": "media/screenshots/4.png", + "sizes": "1800x2040", + "type": "image/png" + }, + { + "src": "media/screenshots/5.png", + "sizes": "1800x2040", + "type": "image/png" + } + ], + "icons": [ + { + "src": "media/icons/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "media/icons/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "shortcuts": [ + { + "name": "Motion Generator", + "short_name": "Generator", + "description": "Generate a random debate motion", + "url": "/generator", + "icons": [ + { "src": "/media/icons/generator/36x36.png", "sizes": "36x36" }, + { "src": "/media/icons/generator/48x48.png", "sizes": "48x48" }, + { "src": "/media/icons/generator/72x72.png", "sizes": "72x72" }, + { "src": "/media/icons/generator/96x96.png", "sizes": "96x96" }, + { "src": "/media/icons/generator/144x144.png", "sizes": "144x144" }, + { "src": "/media/icons/generator/192x192.png", "sizes": "192x192" } + ] + }, + { + "name": "Motion Database", + "short_name": "Database", + "description": "Search for motions from the database", + "url": "/database", + "icons": [ + { "src": "/media/icons/database/36x36.png", "sizes": "36x36" }, + { "src": "/media/icons/database/48x48.png", "sizes": "48x48" }, + { "src": "/media/icons/database/72x72.png", "sizes": "72x72" }, + { "src": "/media/icons/database/96x96.png", "sizes": "96x96" }, + { "src": "/media/icons/database/144x144.png", "sizes": "144x144" }, + { "src": "/media/icons/database/192x192.png", "sizes": "192x192" } + ] + }, + { + "name": "Break Calculator", + "short_name": "Calculator", + "description": "Calculate break chances in AP, WSDC, or BP tournaments", + "url": "/break_calculator", + "icons": [ + { "src": "/media/icons/break-calculator/36x36.png", "sizes": "36x36" }, + { "src": "/media/icons/break-calculator/48x48.png", "sizes": "48x48" }, + { "src": "/media/icons/break-calculator/72x72.png", "sizes": "72x72" }, + { "src": "/media/icons/break-calculator/96x96.png", "sizes": "96x96" }, + { "src": "/media/icons/break-calculator/144x144.png", "sizes": "144x144" }, + { "src": "/media/icons/break-calculator/192x192.png", "sizes": "192x192" } + ] + }, + { + "name": "Debate Timekeeper", + "short_name": "Timekeeper", + "description": "Do debate timekeeping", + "url": "/keeper", + "icons": [ + { "src": "/media/icons/timekeeper/36x36.png", "sizes": "36x36" }, + { "src": "/media/icons/timekeeper/48x48.png", "sizes": "48x48" }, + { "src": "/media/icons/timekeeper/72x72.png", "sizes": "72x72" }, + { "src": "/media/icons/timekeeper/96x96.png", "sizes": "96x96" }, + { "src": "/media/icons/timekeeper/144x144.png", "sizes": "144x144" }, + { "src": "/media/icons/timekeeper/192x192.png", "sizes": "192x192" } + ] + } + ], + "id": "/", + "start_url": "/", + "display": "standalone", + "theme_color": "#FFFFFF", + "background_color": "#FFFFFF", + "android_package_name": "com.debaterstoolkit.android" +} \ No newline at end of file diff --git a/public/media/bell.m4a b/public/media/bell.m4a new file mode 100644 index 0000000..4d7d541 Binary files /dev/null and b/public/media/bell.m4a differ diff --git a/public/media/icons/android-chrome-192x192.png b/public/media/icons/android-chrome-192x192.png new file mode 100644 index 0000000..55cd1ca Binary files /dev/null and b/public/media/icons/android-chrome-192x192.png differ diff --git a/public/media/icons/android-chrome-512x512.png b/public/media/icons/android-chrome-512x512.png new file mode 100644 index 0000000..8920c44 Binary files /dev/null and b/public/media/icons/android-chrome-512x512.png differ diff --git a/public/media/icons/apple-touch-icon.png b/public/media/icons/apple-touch-icon.png new file mode 100644 index 0000000..411508a Binary files /dev/null and b/public/media/icons/apple-touch-icon.png differ diff --git a/public/media/icons/break-calculator/144x144.png b/public/media/icons/break-calculator/144x144.png new file mode 100644 index 0000000..b2ae8b8 Binary files /dev/null and b/public/media/icons/break-calculator/144x144.png differ diff --git a/public/media/icons/break-calculator/192x192.png b/public/media/icons/break-calculator/192x192.png new file mode 100644 index 0000000..2bada3c Binary files /dev/null and b/public/media/icons/break-calculator/192x192.png differ diff --git a/public/media/icons/break-calculator/36x36.png b/public/media/icons/break-calculator/36x36.png new file mode 100644 index 0000000..7d81777 Binary files /dev/null and b/public/media/icons/break-calculator/36x36.png differ diff --git a/public/media/icons/break-calculator/48x48.png b/public/media/icons/break-calculator/48x48.png new file mode 100644 index 0000000..cc3084b Binary files /dev/null and b/public/media/icons/break-calculator/48x48.png differ diff --git a/public/media/icons/break-calculator/72x72.png b/public/media/icons/break-calculator/72x72.png new file mode 100644 index 0000000..e00896d Binary files /dev/null and b/public/media/icons/break-calculator/72x72.png differ diff --git a/public/media/icons/break-calculator/96x96.png b/public/media/icons/break-calculator/96x96.png new file mode 100644 index 0000000..c0e1f18 Binary files /dev/null and b/public/media/icons/break-calculator/96x96.png differ diff --git a/public/media/icons/database/144x144.png b/public/media/icons/database/144x144.png new file mode 100644 index 0000000..b5f29d5 Binary files /dev/null and b/public/media/icons/database/144x144.png differ diff --git a/public/media/icons/database/192x192.png b/public/media/icons/database/192x192.png new file mode 100644 index 0000000..597e9a2 Binary files /dev/null and b/public/media/icons/database/192x192.png differ diff --git a/public/media/icons/database/36x36.png b/public/media/icons/database/36x36.png new file mode 100644 index 0000000..504d394 Binary files /dev/null and b/public/media/icons/database/36x36.png differ diff --git a/public/media/icons/database/48x48.png b/public/media/icons/database/48x48.png new file mode 100644 index 0000000..066725f Binary files /dev/null and b/public/media/icons/database/48x48.png differ diff --git a/public/media/icons/database/72x72.png b/public/media/icons/database/72x72.png new file mode 100644 index 0000000..9d892f3 Binary files /dev/null and b/public/media/icons/database/72x72.png differ diff --git a/public/media/icons/database/96x96.png b/public/media/icons/database/96x96.png new file mode 100644 index 0000000..0ab68e7 Binary files /dev/null and b/public/media/icons/database/96x96.png differ diff --git a/public/media/icons/electron.png b/public/media/icons/electron.png new file mode 100644 index 0000000..61716bf Binary files /dev/null and b/public/media/icons/electron.png differ diff --git a/public/media/icons/favicon-16x16.png b/public/media/icons/favicon-16x16.png new file mode 100644 index 0000000..fa702d7 Binary files /dev/null and b/public/media/icons/favicon-16x16.png differ diff --git a/public/media/icons/favicon-32x32.png b/public/media/icons/favicon-32x32.png new file mode 100644 index 0000000..5e6e68d Binary files /dev/null and b/public/media/icons/favicon-32x32.png differ diff --git a/public/media/icons/favicon.ico b/public/media/icons/favicon.ico new file mode 100644 index 0000000..b5b38bc Binary files /dev/null and b/public/media/icons/favicon.ico differ diff --git a/public/media/icons/generator/144x144.png b/public/media/icons/generator/144x144.png new file mode 100644 index 0000000..5d16f72 Binary files /dev/null and b/public/media/icons/generator/144x144.png differ diff --git a/public/media/icons/generator/192x192.png b/public/media/icons/generator/192x192.png new file mode 100644 index 0000000..5c13d17 Binary files /dev/null and b/public/media/icons/generator/192x192.png differ diff --git a/public/media/icons/generator/36x36.png b/public/media/icons/generator/36x36.png new file mode 100644 index 0000000..71fc41a Binary files /dev/null and b/public/media/icons/generator/36x36.png differ diff --git a/public/media/icons/generator/48x48.png b/public/media/icons/generator/48x48.png new file mode 100644 index 0000000..3c12be1 Binary files /dev/null and b/public/media/icons/generator/48x48.png differ diff --git a/public/media/icons/generator/72x72.png b/public/media/icons/generator/72x72.png new file mode 100644 index 0000000..1490691 Binary files /dev/null and b/public/media/icons/generator/72x72.png differ diff --git a/public/media/icons/generator/96x96.png b/public/media/icons/generator/96x96.png new file mode 100644 index 0000000..4c11118 Binary files /dev/null and b/public/media/icons/generator/96x96.png differ diff --git a/public/media/icons/new-motion/144x144.png b/public/media/icons/new-motion/144x144.png new file mode 100644 index 0000000..063758f Binary files /dev/null and b/public/media/icons/new-motion/144x144.png differ diff --git a/public/media/icons/new-motion/192x192.png b/public/media/icons/new-motion/192x192.png new file mode 100644 index 0000000..4dd5b2a Binary files /dev/null and b/public/media/icons/new-motion/192x192.png differ diff --git a/public/media/icons/new-motion/36x36.png b/public/media/icons/new-motion/36x36.png new file mode 100644 index 0000000..9e295ff Binary files /dev/null and b/public/media/icons/new-motion/36x36.png differ diff --git a/public/media/icons/new-motion/48x48.png b/public/media/icons/new-motion/48x48.png new file mode 100644 index 0000000..6a33ae9 Binary files /dev/null and b/public/media/icons/new-motion/48x48.png differ diff --git a/public/media/icons/new-motion/72x72.png b/public/media/icons/new-motion/72x72.png new file mode 100644 index 0000000..ca6095b Binary files /dev/null and b/public/media/icons/new-motion/72x72.png differ diff --git a/public/media/icons/new-motion/96x96.png b/public/media/icons/new-motion/96x96.png new file mode 100644 index 0000000..4463198 Binary files /dev/null and b/public/media/icons/new-motion/96x96.png differ diff --git a/public/media/icons/timekeeper/144x144.png b/public/media/icons/timekeeper/144x144.png new file mode 100644 index 0000000..6de3d40 Binary files /dev/null and b/public/media/icons/timekeeper/144x144.png differ diff --git a/public/media/icons/timekeeper/192x192.png b/public/media/icons/timekeeper/192x192.png new file mode 100644 index 0000000..5e37ba7 Binary files /dev/null and b/public/media/icons/timekeeper/192x192.png differ diff --git a/public/media/icons/timekeeper/36x36.png b/public/media/icons/timekeeper/36x36.png new file mode 100644 index 0000000..d920419 Binary files /dev/null and b/public/media/icons/timekeeper/36x36.png differ diff --git a/public/media/icons/timekeeper/48x48.png b/public/media/icons/timekeeper/48x48.png new file mode 100644 index 0000000..5c455d8 Binary files /dev/null and b/public/media/icons/timekeeper/48x48.png differ diff --git a/public/media/icons/timekeeper/72x72.png b/public/media/icons/timekeeper/72x72.png new file mode 100644 index 0000000..66cd827 Binary files /dev/null and b/public/media/icons/timekeeper/72x72.png differ diff --git a/public/media/icons/timekeeper/96x96.png b/public/media/icons/timekeeper/96x96.png new file mode 100644 index 0000000..11e92b4 Binary files /dev/null and b/public/media/icons/timekeeper/96x96.png differ diff --git a/public/media/screenshots/1.png b/public/media/screenshots/1.png new file mode 100644 index 0000000..9b34385 Binary files /dev/null and b/public/media/screenshots/1.png differ diff --git a/public/media/screenshots/2.png b/public/media/screenshots/2.png new file mode 100644 index 0000000..6f6ef47 Binary files /dev/null and b/public/media/screenshots/2.png differ diff --git a/public/media/screenshots/3.png b/public/media/screenshots/3.png new file mode 100644 index 0000000..be29c7a Binary files /dev/null and b/public/media/screenshots/3.png differ diff --git a/public/media/screenshots/4.png b/public/media/screenshots/4.png new file mode 100644 index 0000000..1dfa6c4 Binary files /dev/null and b/public/media/screenshots/4.png differ diff --git a/public/media/screenshots/5.png b/public/media/screenshots/5.png new file mode 100644 index 0000000..dc7094b Binary files /dev/null and b/public/media/screenshots/5.png differ diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..e9e57dc --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: diff --git a/src/App.js b/src/App.js new file mode 100644 index 0000000..9a9541c --- /dev/null +++ b/src/App.js @@ -0,0 +1,38 @@ +import React from 'react' +import { BrowserRouter, Routes, Route, Navigate } from 'react-router-dom' +import { + HomePage, + MotionGenerator, + AdminPage, + BreakCalculator, + MotionDatabase, + SubmitNewMotion, + DebateKeeper, + About +} from './pages' +import { NavBar } from './core/components' +import { useStyles } from './appStyle' + +export default function App() { + const classes = useStyles() + return ( + +
+ + + } /> + } /> + } /> + } /> + } /> + } /> + }> + } /> + + } /> + } /> + +
+
+ ) +} diff --git a/src/appStyle.js b/src/appStyle.js new file mode 100644 index 0000000..6b9c159 --- /dev/null +++ b/src/appStyle.js @@ -0,0 +1,38 @@ +import { isBrowser } from 'react-device-detect' +import { makeStyles } from '@mui/styles' + +const style = !isBrowser + ? { + 'App': { + fontFamily: "'Lora', serif", + width: '100vw', + height: '100vh', + overflowX: 'hidden' + } + } + : { + 'App': { + fontFamily: "'Lora', serif", + width: '100vw', + height: '100vh', + overflowX: 'hidden', + '&::-webkit-scrollbar': { + backgroundColor: '#F1F1F1 !important', + width: '0.75rem', + }, + '&::-webkit-scrollbar-thumb': { + borderRadius: '8px', + backgroundColor: '#C1C1C1', + minHeight: '24px', + border: '3px solid #F1F1F1', + '&:hover': { + backgroundColor: '#A8A8A8', + }, + '&:active': { + backgroundColor: '#787878', + } + } + } + } + +export const useStyles = makeStyles(style) diff --git a/src/core/components/EditableSelector/index.jsx b/src/core/components/EditableSelector/index.jsx new file mode 100644 index 0000000..9c71e5f --- /dev/null +++ b/src/core/components/EditableSelector/index.jsx @@ -0,0 +1,90 @@ +import { useState, useEffect } from "react" +import Select from 'react-select' +import { customTheme } from "../../constants" +import { isObject } from '../../helpers/isObject' +import './style.css' +export const EditableSelector = (props) => { + const { defaultSelectValue, onUpdate, style, options, defaultValue, multi, components, styles, placeholder, isSearchable } = props + const [value, setValue] = useState(defaultValue) + useEffect(() => { + setValue(defaultValue) + }, [defaultValue]) + useEffect(() => { + onUpdate(value) + }, [value]) + const updateValue = (val) => { + if (multi) { + if (Array.isArray(defaultValue)) { + if (val != undefined && val != null) { + if (val.length == 0) { + setValue([]) + } + else { + let tempValue = [] + val.forEach(item => { + tempValue.push(item.value) + }) + setValue(tempValue) + } + } + } + else if (isObject(defaultValue)) { + if (val != undefined && val != null) { + if (val.length == 0) { + setValue({}) + } + else { + let newValue = {} + val.forEach(item => { + Object.keys(item.value).forEach(key => { + newValue[`${key}`] = item.value[`${key}`] + }) + }) + setValue(newValue) + } + } + } + } + else { + if (val == undefined || val == null) { + setValue("") + } + else { + setValue(val.value) + } + } + } + return ( + <> + { + multi ? + + } + + ) +} \ No newline at end of file diff --git a/src/core/components/EditableSelector/style.css b/src/core/components/EditableSelector/style.css new file mode 100644 index 0000000..8f9fe87 --- /dev/null +++ b/src/core/components/EditableSelector/style.css @@ -0,0 +1,7 @@ +.editable_selector { + width: 100%; +} +.editable_selector input { + font-family: "Lora", serif; + font-size: 0.7rem !important; +} \ No newline at end of file diff --git a/src/core/components/EditableText/index.jsx b/src/core/components/EditableText/index.jsx new file mode 100644 index 0000000..867a545 --- /dev/null +++ b/src/core/components/EditableText/index.jsx @@ -0,0 +1,25 @@ +import { useState, useEffect, useRef } from "react" +import _ from "lodash" +import './style.css' +export const EditableText = (props) => { + const { defaultValue, onUpdate, style } = props; + const [value, setValue] = useState(defaultValue) + const onUpdateWithDebounce = _.debounce(onUpdate, 500) + const inputRef = useRef(null) + const unfocusInput = (e) => { + if (e.keyCode == 13) inputRef.current.blur(); + } + useEffect(() => { + setValue(defaultValue) + }, [defaultValue]) + useEffect(() => { + onUpdateWithDebounce(value); + }, [value]) + useEffect(() => { + inputRef && inputRef.current && + inputRef.current.addEventListener('keyup', unfocusInput); + }, [inputRef]) + return ( + setValue(e.target.value)} /> + ) +} \ No newline at end of file diff --git a/src/core/components/EditableText/style.css b/src/core/components/EditableText/style.css new file mode 100644 index 0000000..6b505e8 --- /dev/null +++ b/src/core/components/EditableText/style.css @@ -0,0 +1,13 @@ +.editable_text { + border: 1px solid transparent; + outline: none; + width: 100%; + /* display: flex; + justify-content: center; + align-items: center; */ + font-family: "Lora", serif; +} +/* .editable_text:focus { + border: 1px solid black; + outline: none; +} */ \ No newline at end of file diff --git a/src/core/components/EditableTextArea/index.jsx b/src/core/components/EditableTextArea/index.jsx new file mode 100644 index 0000000..76668cb --- /dev/null +++ b/src/core/components/EditableTextArea/index.jsx @@ -0,0 +1,26 @@ +import { useState, useEffect, useRef } from "react" +import TextareaAutosize from "react-textarea-autosize" +import _ from "lodash" +import './style.css' +export const EditableTextArea = (props) => { + const { defaultValue, onUpdate, style } = props; + const [value, setValue] = useState(defaultValue) + const onUpdateWithDebounce = _.debounce(onUpdate, 500) + const inputRef = useRef(null) + const unfocusInput = (e) => { + if (e.keyCode == 13) inputRef.current.blur(); + } + useEffect(() => { + setValue(defaultValue) + }, [defaultValue]) + useEffect(() => { + onUpdateWithDebounce(value); + }, [value]) + useEffect(() => { + inputRef && inputRef.current && + inputRef.current.addEventListener('keyup', unfocusInput); + }, [inputRef]) + return ( + setValue(e.target.value)} /> + ) +} \ No newline at end of file diff --git a/src/core/components/EditableTextArea/style.css b/src/core/components/EditableTextArea/style.css new file mode 100644 index 0000000..b985ebe --- /dev/null +++ b/src/core/components/EditableTextArea/style.css @@ -0,0 +1,13 @@ +.editable_text_area { + border: 1px solid transparent; + outline: none; + width: 100%; + height: 100%; + font-family: "Lora", serif; + resize: none; + overflow: hidden; +} +/* .editable_text_area:focus { + border: 1px solid black; + outline: none; +} */ \ No newline at end of file diff --git a/src/core/components/InformationContainer/index.jsx b/src/core/components/InformationContainer/index.jsx new file mode 100644 index 0000000..c6796b2 --- /dev/null +++ b/src/core/components/InformationContainer/index.jsx @@ -0,0 +1,68 @@ +import { isBrowser } from 'react-device-detect' +import { useStylesPC } from './stylePC' +import { useStylesMobile } from './styleMobile' + +export const InformationContainer = () => { + const classesPC = useStylesPC() + const classesMobile = useStylesMobile() + return ( +
+
+ +
+
+ {/* I no longer use Facebook. */} + + + + {/* I no longer use Twitter. */} + + + + + + + {/* I no longer use Patreon. */} + + + +
+
+
+
+ Debaters' toolkit is an open-source software licensed under the{' '} + + MIT license + {' '} + that aims to be useful to all debaters. Our motions are collected + from various sources. While we strive to update the database as + regularly as possible, we cannot warrant absolute correctness for + all motions. If you have any issue with our content or detect any + bug in our app, please contact us at{' '} + + quyanh.nguyen@helsinki + + . +
+
© 2021 [Quy Anh] «Elliot» Nguyen.
+
+
+
+ ) +} diff --git a/src/core/components/InformationContainer/style.scss b/src/core/components/InformationContainer/style.scss new file mode 100644 index 0000000..cde62e7 --- /dev/null +++ b/src/core/components/InformationContainer/style.scss @@ -0,0 +1,128 @@ +.informationContainer { + width: 100%; + display: flex; + flex-direction: column; + background-color: #282a35 !important; + height: 38vh; + min-height: 14.3rem; + font-family: "Source Sans Pro", sans-serif; + margin-top: auto; + .topLane { + width: 100%; + height: 20%; + display: flex; + justify-content: center; + align-items: center; + button { + padding: 0.3rem; + border-radius: 5px; + border: 1px solid white; + background-color: transparent; + font-weight: 500; + a { + text-decoration: none; + color: white; + } + } + button:hover { + background-color: white; + a { + color: black; + } + } + } + .midLane { + width: 100%; + height: 20%; + display: flex; + justify-content: center; + align-items: center; + button { + background-color: #282a35; + border: 1px solid white; + border-radius: 5px; + padding: 0.4rem; + margin-left: 0.2rem; + margin-right: 0.2rem; + i { + color: white; + font-size: 2rem; + } + } + button:hover { + background-color: white; + i { + color: black; + } + } + } + .botLane { + width: 100%; + height: 60%; + display: flex; + justify-content: center; + align-items: center; + .introText { + color: white !important; + display: flex; + flex-direction: column; + align-items: center; + width: 90%; + div { + margin: 0.5rem; + text-align: center; + a { + color: white; + span { + text-decoration: underline; + } + span:hover { + color: #4caf50; + } + } + + } + } + } +} +@media only screen and (max-width: 379px) { + .informationContainer { + height: 47vh; + .topLane { + height: 12%; + } + .midLane { + height: 10%; + } + .botLane { + height: 78%; + margin-bottom: 0.5rem; + } + } +} +@media only screen and (max-width: 425px) and (min-width: 380px) { + .informationContainer { + height: 40vh; + .topLane { + height: 17%; + } + .midLane { + height: 13%; + } + .botLane { + height: 70%; + margin-bottom: 0.5rem; + } + } +} +@media only screen and (max-width: 768px) and (min-width: 426px) { + .informationContainer { + height: 25vh; + .topLane { + } + .midLane { + } + .botLane { + } + } +} diff --git a/src/core/components/InformationContainer/styleMobile.js b/src/core/components/InformationContainer/styleMobile.js new file mode 100644 index 0000000..8fa4c00 --- /dev/null +++ b/src/core/components/InformationContainer/styleMobile.js @@ -0,0 +1,126 @@ +import { makeStyles } from '@mui/styles' + +export const useStylesMobile = makeStyles({ + 'informationContainer': { + width: '100%', + display: 'flex', + flexDirection: 'column', + backgroundColor: '#282a35 !important', + height: '38vh', + minHeight: '14.3rem', + fontFamily: '"Source Sans Pro", sans-serif', + marginTop: 'auto', + '& .topLane': { + width: '100%', + height: '20%', + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + '& button': { + padding: '0.3rem', + borderRadius: '5px', + border: '1px solid white', + backgroundColor: 'transparent', + fontWeight: 500, + '& a': { + textDecoration: 'none', + color: 'white' + }, + '&:hover': { + backgroundColor: 'white', + '& a': { + color: 'black' + } + } + } + }, + '& .midLane': { + width: '100%', + height: '20%', + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + '& button': { + backgroundColor: '#282a35', + border: '1px solid white', + borderRadius: '5px', + padding: '0.4rem', + marginLeft: '0.2rem', + marginRight: '0.2rem', + '& i': { + color: 'white', + fontSize: '2rem' + }, + '&:hover': { + backgroundColor: 'white', + '& i': { + color: 'black' + } + } + } + }, + '& .botLane': { + width: '100%', + height: '60%', + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + '& .introText': { + color: 'white !important', + display: 'flex', + flexDirection: 'column', + alignItems: 'center', + width: '90%', + '& div': { + margin: '0.5rem', + textAlign: 'center', + '& a': { + color: 'white', + '& span': { + textDecoration: 'underline', + '&:hover': { + color: '#4caf50' + } + } + } + + } + } + } + }, + '@media only screen and (max-width: 379px)': { + 'informationContainer': { + height: '47vh', + '& .topLane': { + height: '12%' + }, + '& .midLane': { + height: '10%', + }, + '& .botLane': { + height: '78%', + marginBottom: '0.5rem' + } + } + }, + '@media only screen and (max-width: 425px) and (min-width: 380px)': { + 'informationContainer': { + height: '40vh', + '& .topLane': { + height: '17%', + }, + '& .midLane': { + height: '13%', + }, + '& .botLane': { + height: '70%', + marginBottom: '0.5rem' + } + } + }, + '@media only screen and (max-width: 768px) and (min-width: 426px)': { + 'informationContainer': { + height: '25vh' + } + } +}) diff --git a/src/core/components/InformationContainer/stylePC.js b/src/core/components/InformationContainer/stylePC.js new file mode 100644 index 0000000..40a0fc4 --- /dev/null +++ b/src/core/components/InformationContainer/stylePC.js @@ -0,0 +1,138 @@ +import { makeStyles } from '@mui/styles' + +export const useStylesPC = makeStyles({ + 'informationContainer': { + width: '100%', + display: 'flex', + flexDirection: 'column', + backgroundColor: '#282a35 !important', + height: '38vh', + minHeight: '14.3rem', + fontFamily: '"Source Sans Pro", sans-serif', + marginTop: 'auto', + '& .topLane': { + width: '100%', + height: '20%', + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + '& button': { + padding: '0.3rem', + borderRadius: '5px', + border: '1px solid white', + backgroundColor: 'transparent', + fontWeight: 500, + '& a': { + textDecoration: 'none', + color: 'white' + }, + '&:hover': { + backgroundColor: 'white', + '& a': { + color: 'black' + } + } + } + }, + '& .midLane': { + width: '100%', + height: '20%', + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + '& button': { + backgroundColor: '#282a35', + border: '1px solid white', + borderRadius: '5px', + padding: '0.4rem', + marginLeft: '0.2rem', + marginRight: '0.2rem', + '& i': { + color: 'white', + fontSize: '2rem' + }, + '&:hover': { + backgroundColor: 'white', + '& i': { + color: 'black' + } + } + } + }, + '& .botLane': { + width: '100%', + height: '60%', + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + '& .introText': { + color: 'white !important', + display: 'flex', + flexDirection: 'column', + alignItems: 'center', + width: '90%', + fontSize: '1rem', + '& div': { + margin: '0.5rem', + textAlign: 'center', + '& a': { + color: 'white', + '& span': { + textDecoration: 'underline', + '&:hover': { + color: '#4caf50' + } + } + } + + } + } + } + }, + '@media only screen and (max-width: 379px)': { + 'informationContainer': { + height: '47vh', + '& .topLane': { + height: '12%' + }, + '& .midLane': { + height: '10%', + }, + '& .botLane': { + height: '78%', + marginBottom: '0.5rem', + '& .introText': { + fontSize: '0.8rem' + } + } + } + }, + '@media only screen and (max-width: 425px) and (min-width: 380px)': { + 'informationContainer': { + height: '40vh', + '& .topLane': { + height: '17%', + }, + '& .midLane': { + height: '13%', + }, + '& .botLane': { + height: '70%', + marginBottom: '0.5rem', + '& .introText': { + fontSize: '0.8rem' + } + } + } + }, + '@media only screen and (max-width: 768px) and (min-width: 426px)': { + 'informationContainer': { + height: '25vh', + '& .botLane': { + '& .introText': { + fontSize: '0.8rem' + } + } + } + } +}) diff --git a/src/core/components/Message/index.jsx b/src/core/components/Message/index.jsx new file mode 100644 index 0000000..4619db6 --- /dev/null +++ b/src/core/components/Message/index.jsx @@ -0,0 +1,44 @@ +import './style.css' +import { useState, useEffect } from 'react'; +export const Message = (props) => { + const { status, successMessage, failureMessage } = props; + const [show, setShow] = useState(false) + useEffect(() => { + if (status != undefined) { + setShow(true) + } + }, [status]) + useEffect(() => { + const resetShow = () => { setShow(false) } + if (show) setTimeout(resetShow, 1500) + return(() => { + clearTimeout(resetShow) + }) + }, [show]) + return ( + <> + {show && +
+ { +
{status == true ? : }
+ } +
+ { +
{ + status == true ? +
+
{successMessage}
+
+ : +
+
{failureMessage}
+
+ }
+ + } +
+
+ } + + ) +} \ No newline at end of file diff --git a/src/core/components/Message/style.css b/src/core/components/Message/style.css new file mode 100644 index 0000000..a78016a --- /dev/null +++ b/src/core/components/Message/style.css @@ -0,0 +1,31 @@ +.successLineOne { + color: #abe491; +} +.successLineTwo { + color: #b9b9b9; + font-size: 0.8rem; +} +.failureLineOne { + color: #e49191; +} +.failureLineTwo { + color: #b9b9b9; + font-size: 0.8rem; +} +.message { + font-weight: bolder; + font-family: "Source Sans Pro", sans-serif; + display: flex; + width: 100%; + align-items: center; + justify-content: center; +} +#successIcon { + color: #abe491; +} +#failureIcon { + color: #e49191; +} +.statusIcon { + margin-right: 0.6rem; +} \ No newline at end of file diff --git a/src/core/components/NavBar/index.jsx b/src/core/components/NavBar/index.jsx new file mode 100644 index 0000000..c4d74a1 --- /dev/null +++ b/src/core/components/NavBar/index.jsx @@ -0,0 +1,58 @@ +import { useState, useEffect } from 'react' +import { NavBarItem } from './navBarItem' +import { isBrowser } from 'react-device-detect' +import { useStylesPC } from './stylePC' +import { useStylesMobile } from './styleMobile' + +const navBarConfig = [ + { + tabID: 'home', to: '/', specificTabName: "home", children: + <> + + + }, + { + tabID: 'motionGenerator', to: '/generator', children: + <> +
Motion
+
Generator
+ + }, + { + tabID: 'database', to: '/database', children: + <> +
Motion
+
Database
+ + }, + { + tabID: 'breakCalc', to: '/break_calculator', children: + <> +
Break
+
Calculator
+ + }, + { + tabID: 'keeper', to: '/keeper/bp', children: + <> +
Timekeeper
+ + } +] +export const NavBar = () => { + const [activeTab, setActiveTab] = useState(`/`) + useEffect(() => { + setActiveTab(window.location.pathname) + }, [window.location.pathname]) + const classesPC = useStylesPC() + const classesMobile = useStylesMobile() + return ( +
+ {navBarConfig.map(config => { + return ( + {config.children} + ) + })} +
+ ) +} \ No newline at end of file diff --git a/src/core/components/NavBar/navBarItem.jsx b/src/core/components/NavBar/navBarItem.jsx new file mode 100644 index 0000000..940bc18 --- /dev/null +++ b/src/core/components/NavBar/navBarItem.jsx @@ -0,0 +1,10 @@ +import { Link } from 'react-router-dom' + +export const NavBarItem = (props) => { + const { to, tabID, setActiveTab, children, isActive, specificTabName } = props // setActiveTab(to) + return ( + { setActiveTab(to) }}> + {children} + + ) +} \ No newline at end of file diff --git a/src/core/components/NavBar/styleMobile.js b/src/core/components/NavBar/styleMobile.js new file mode 100644 index 0000000..b7b7068 --- /dev/null +++ b/src/core/components/NavBar/styleMobile.js @@ -0,0 +1,77 @@ +import { makeStyles } from '@mui/styles' + +export const useStylesMobile = makeStyles({ + 'navBar': { + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + backgroundColor: '#282a35', + fontFamily: '"Source Sans Pro", sans-serif', + height: '7vh', + width: '100%', + '& .anchor': { + color: 'white', + textDecoration: 'none', + display: 'flex', + fontWeight: 'bolder', + fontSize: '0.8rem', + height: '100%', + width: '24vw', + display: 'flex', + flexDirection: 'column', + justifyContent: 'center', + alignItems: 'center', + '&:hover': { + backgroundColor: '#000000' + } + }, + '& .home': { + width: '4vw !important', + '& i': { + fontSize: '1.2rem' + } + }, + '& .active': { + backgroundColor: '#000000' + } + }, + '@media only screen and (max-width: 379px)': { + 'navBar': { + '& .anchor': { + fontSize: '0.7rem', + width: '22vw', + }, + '& .home': { + width: '12vw !important', + '& i': { + fontSize: '1rem !important' + } + } + } + }, + '@media only screen and (max-width: 425px) and (min-width: 380px)': { + 'navBar': { + '& .anchor': { + fontSize: '0.8rem', + width: '22vw' + }, + '& .home': { + width: '12vw !important', + } + } + }, + '@media only screen and (max-width: 768px) and (min-width: 426px)': { + 'navBar': { + '& .anchor': { + fontSize: '1.1rem', + width: '22.5vw', + }, + '& .home': { + width: '10vw !important', + '& i': { + fontSize: '2rem !important' + } + } + } + } +}) \ No newline at end of file diff --git a/src/core/components/NavBar/stylePC.js b/src/core/components/NavBar/stylePC.js new file mode 100644 index 0000000..21c211b --- /dev/null +++ b/src/core/components/NavBar/stylePC.js @@ -0,0 +1,81 @@ +import { makeStyles } from '@mui/styles' + +export const useStylesPC = makeStyles({ + 'navBar': { + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + backgroundColor: '#282a35', + fontFamily: '"Source Sans Pro", sans-serif', + height: '7vh', + minHeight: '2.63rem', /**/ + width: '100%', + minWidth: '48.125rem', /**/ + '& .anchor': { + color: 'white', + textDecoration: 'none', + display: 'flex', + fontWeight: 'bolder', + fontSize: '0.8rem !important', + height: '100%', + width: '24vw', + minWidth: '13.5rem', /**/ + display: 'flex', + flexDirection: 'column', + justifyContent: 'center', + alignItems: 'center', + '&:hover': { + backgroundColor: '#000000' + } + }, + '& .home': { + width: '4vw !important', + minWidth: '3.375rem !important', /**/ + '& i': { + fontSize: '1.2rem !important' + } + }, + '& .active': { + backgroundColor: '#000000' + } + }, + '@media only screen and (max-width: 379px)': { + 'navBar': { + '& .anchor': { + fontSize: '0.7rem', + width: '22vw', + }, + '& .home': { + width: '12vw !important', + '& i': { + fontSize: '1rem !important' + } + } + } + }, + '@media only screen and (max-width: 425px) and (min-width: 380px)': { + 'navBar': { + '& .anchor': { + fontSize: '0.8rem', + width: '22vw' + }, + '& .home': { + width: '12vw !important' + } + } + }, + '@media only screen and (max-width: 768px) and (min-width: 426px)': { + 'navBar': { + '& .anchor': { + fontSize: '1.1rem', + width: '22.5vw', + }, + '& .home': { + width: '10vw !important', + '& i': { + fontSize: '2rem' + } + } + } + } +}) \ No newline at end of file diff --git a/src/core/components/SelectComponents/ClearIndicator.js b/src/core/components/SelectComponents/ClearIndicator.js new file mode 100644 index 0000000..76ea781 --- /dev/null +++ b/src/core/components/SelectComponents/ClearIndicator.js @@ -0,0 +1,8 @@ +import { components } from 'react-select' +export const ClearIndicator = ({ children, ...props }) => { + return ( + + {children} + + ); +}; \ No newline at end of file diff --git a/src/core/components/SelectComponents/DropdownIndicator.js b/src/core/components/SelectComponents/DropdownIndicator.js new file mode 100644 index 0000000..4c85511 --- /dev/null +++ b/src/core/components/SelectComponents/DropdownIndicator.js @@ -0,0 +1,8 @@ +import { components } from 'react-select' +export const DropdownIndicator = ({ children, ...props }) => { + return ( + + {children} + + ); +}; \ No newline at end of file diff --git a/src/core/components/SelectComponents/Input.js b/src/core/components/SelectComponents/Input.js new file mode 100644 index 0000000..66e0105 --- /dev/null +++ b/src/core/components/SelectComponents/Input.js @@ -0,0 +1,6 @@ +import { components } from 'react-select' +export const Input = props => { + return ( + + ); +}; \ No newline at end of file diff --git a/src/core/components/SelectComponents/MultiValueContainer.js b/src/core/components/SelectComponents/MultiValueContainer.js new file mode 100644 index 0000000..464170b --- /dev/null +++ b/src/core/components/SelectComponents/MultiValueContainer.js @@ -0,0 +1,6 @@ +import { components } from 'react-select' +export const MultiValueContainer = props => { + return ( + + ); +}; \ No newline at end of file diff --git a/src/core/components/SelectComponents/Option.js b/src/core/components/SelectComponents/Option.js new file mode 100644 index 0000000..b7e2adc --- /dev/null +++ b/src/core/components/SelectComponents/Option.js @@ -0,0 +1,6 @@ +import { components } from 'react-select' +export const Option = props => { + return ( + + ); +}; \ No newline at end of file diff --git a/src/core/components/SelectComponents/Placeholder.js b/src/core/components/SelectComponents/Placeholder.js new file mode 100644 index 0000000..2d2ea2e --- /dev/null +++ b/src/core/components/SelectComponents/Placeholder.js @@ -0,0 +1,4 @@ +import { components } from 'react-select' +export const Placeholder = props => { + return ; +}; \ No newline at end of file diff --git a/src/core/components/SelectComponents/SelectContainer.js b/src/core/components/SelectComponents/SelectContainer.js new file mode 100644 index 0000000..c3a3af8 --- /dev/null +++ b/src/core/components/SelectComponents/SelectContainer.js @@ -0,0 +1,8 @@ +import { components } from 'react-select' +export const SelectContainer = ({ children, ...props }) => { + return ( + + {children} + + ); +}; \ No newline at end of file diff --git a/src/core/components/SelectComponents/SingleValue.js b/src/core/components/SelectComponents/SingleValue.js new file mode 100644 index 0000000..5a14132 --- /dev/null +++ b/src/core/components/SelectComponents/SingleValue.js @@ -0,0 +1,4 @@ +import { components } from 'react-select' +export const SingleValue = ({ children, ...props }) => ( + {children} +); \ No newline at end of file diff --git a/src/core/components/SelectComponents/ValueContainer.js b/src/core/components/SelectComponents/ValueContainer.js new file mode 100644 index 0000000..abaa9a7 --- /dev/null +++ b/src/core/components/SelectComponents/ValueContainer.js @@ -0,0 +1,4 @@ +import { components } from 'react-select' +export const ValueContainer = ({ children, ...props }) => ( + {children} +); \ No newline at end of file diff --git a/src/core/components/SelectComponents/index.js b/src/core/components/SelectComponents/index.js new file mode 100644 index 0000000..816e32c --- /dev/null +++ b/src/core/components/SelectComponents/index.js @@ -0,0 +1,9 @@ +export * from './ClearIndicator' +export * from './DropdownIndicator' +export * from './MultiValueContainer' +export * from './SelectContainer' +export * from './ValueContainer' +export * from './Placeholder' +export * from './Option' +export * from './SingleValue' +export * from './Input' \ No newline at end of file diff --git a/src/core/components/Table/index.jsx b/src/core/components/Table/index.jsx new file mode 100644 index 0000000..8a01a44 --- /dev/null +++ b/src/core/components/Table/index.jsx @@ -0,0 +1,47 @@ +export const Table = (props) => { + const { dataSource, columns, showActions, names, ref } = props + return ( + <> + { + dataSource.length != 0 ? + + + { + columns.map(columnItem => { + if (columnItem.type != "action") { + return ( + + ) + } + }) + } + { + showActions && + } + + { + dataSource.map(item => { + return ( + + { + columns.map(columnItem => { + return ( + + ) + }) + } + + + ) + }) + } +
{columnItem.name}
{columnItem.render(item)}
+ : <> + } + + ) +} \ No newline at end of file diff --git a/src/core/components/index.js b/src/core/components/index.js new file mode 100644 index 0000000..87af8c6 --- /dev/null +++ b/src/core/components/index.js @@ -0,0 +1,7 @@ +export * from './NavBar' +export * from './EditableSelector' +export * from './EditableText' +export * from './EditableTextArea' +export * from './InformationContainer' +export * from './Message' +export * from './Table' \ No newline at end of file diff --git a/src/core/constants/MOJImotions.json b/src/core/constants/MOJImotions.json new file mode 100644 index 0000000..144df75 --- /dev/null +++ b/src/core/constants/MOJImotions.json @@ -0,0 +1,7309 @@ +[ + { + "tournament": "BY Online Debate Open", + "year": "2021", + "format": "BP", + "content": "Chúng tôi sẽ ép buộc toàn bộ người dân phải ăn chay thuần.", + "infoSlide": "Ăn chay thuần: Không ăn tất cả các sản phẩm có nguồn gốc từ động vật.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BY Online Debate Open", + "year": "2021", + "format": "BP", + "content": "Chúng tôi sẽ yêu cầu tất cả các công ty truyền thông (tin tức, báo chí, đài phát thanh,..) được vận hành bởi nhà nước.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BY Online Debate Open", + "year": "2021", + "format": "BP", + "content": "Chúng tôi, với tư cách phong trào nữ quyền, sẽ tích cực phản đối sự tuyên truyền rằng phụ nữ nên Việt Nam \"chủ động tránh thai, tròn vai thiên chức\".", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BY Online Debate Open", + "year": "2021", + "format": "BP", + "content": "Chúng tôi ủng hộ việc cảnh sát có quyền tư pháp để trấn áp, với mức độ cao nhất là giết người, tại các khu vực có tỷ lệ tội phạm cao thường xuyên.", + "infoSlide": "Tư pháp là việc phán quyết hình phạt đối với phạm nhân. Toà án là chính thể duy nhất có quyền tư pháp.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BY Online Debate Open", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng các nhà lãnh đạo cách mạng không nên tham gia các chính phủ hậu xung đột.", + "infoSlide": "Thời kỳ hậu xung đột là thời kỳ mà xã hội đã đạt được trạng thái hòa bình sau các xung đột nội chiến kéo dài. Khi này, các tổ chức chính phủ, tổ chức phi chính phủ, và tổ chức quốc tế nỗ lực để ổn định chính trị, kinh tế, quân sự, và cấu trúc xã hội thông qua các dự án tái thiết.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BY Online Debate Open", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng ở các vùng kinh tế-xã hội kém phát triển, trường học nên dạy giáo dục khai phóng thay vì dạy nghề.", + "infoSlide": "\"Giáo dục khai phóng\" là một triết lý giáo dục cung cấp cho các cá nhân một nền tảng kiến thức rộng và những kỹ năng có thể chuyển đổi được sau khi ra trường. Chương trình học khai phóng là một chương trình học giáo dục tổng quát nhiều lĩnh vực học thuật và nhiều chiến lược học tập, bên cạnh chương trình học chuyên sâu trong ít nhất một lĩnh vực nào đó.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BY Online Debate Open", + "year": "2021", + "format": "BP", + "content": "Giả sử công nghệ cho phép, chúng tôi sẽ đánh thuế lũy tiến hạnh phúc với mọi người dân và dùng tiền đó để thay đổi phúc lợi xã hội.", + "infoSlide": "Thuế lũy tiến hạnh phúc (tiếng Anh: Progressive tax) là loại thuế áp dụng mức thuế suất tùy thuộc vào mức độ hạnh phúc của công dân (thấp hơn đối với người có mức hạnh phúc thấp và ngược lại), được nộp dưới hình thức hiện kim.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THBT progressive political candidates and parties should refuse to accept donations from corporations and high-net individuals.", + "infoSlide": "", + "division": "Loxodonta", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THS Mafia Association Laws.", + "infoSlide": "Mafia Association Laws criminalize membership of specific powerful organised crime groups.", + "division": "Loxodonta", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THW confiscate persistently vacant residential properties to use as social housing.", + "infoSlide": "Social housing is residential property that the state uses to house people who cannot afford decent housing.", + "division": "Loxodonta", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THW prohibit criminals publishing glorifying or sensationalist accounts of their crimes.", + "infoSlide": "", + "division": "Loxodonta", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THBT all existing HeLa cells should be destroyed.", + "infoSlide": "HeLa is an immortal cell line used in scientific research. The line is deprived from cervical cancer cells taken from Henrietta Lacks, a 31-year-old African-American, who died of cancer on October 4,1951. The cells from Lacks’s cancerous cervical tumor were taken without her knowledge or consent. On average, 300 studies are done per month using the cell line.", + "division": "Loxodonta", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "TH, as developing states, would prefer the use of a neutral aggregate currency to the US Dollar as the global reserve currency.", + "infoSlide": "A reserve currency (or anchor currency) is a foreign currency that is held in significant quantities by central banks or other monetary authorities. The reserve currency can be used in international transactions, international investments and all aspects of the global economy, and can be used in emergencies where a country’s own currency has lost its value.", + "division": "Loxodonta", + "language": "English", + "link": "", + "round": "6", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THBT settler-states should pursue immigration policies that lead to no cultural or racial group being a majority of the population.", + "infoSlide": "Settler-states are post-colonial countries where the population descended from colonists is the largest ethnic group. Eg the United States, Canada, New Zealand, and Australia.", + "division": "Loxodonta", + "language": "English", + "link": "", + "round": "7", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THBT liberal media organizations should actively glorify political candidates of color.", + "infoSlide": "", + "division": "Panthera", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THP a world in which no one sought revenge.", + "infoSlide": "", + "division": "Panthera", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THS the use of adversity scores in college admission exams.", + "infoSlide": "An adversity score is score applied to a students standardized college admissions exam (SAT, ACT, ATAR, etc.) that measures a students adversity based on a number of criteria including but not limited to: race, income, crime rate in their area, parents education, quality of their school and others.", + "division": "Panthera", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THS the rise of the anti-hero in film and television.", + "infoSlide": "", + "division": "Panthera", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THW abolish the common farming exception.", + "infoSlide": "The common farming exception is a clause in most animal cruelty legislation that states that an action cannot be animal cruelty if it is common farming practice.", + "division": "Panthera", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "TH, as developing economies, would require international actors to match the financial value of their indirect foreign investment in the form of foreign direct investment as a prerequisite of entry into investment in their stock exchange", + "infoSlide": "Foreign Direct Investment pertains to foreign investment in which the investor obtains a lasting interest in an enterprise in another country. It involves establishing a direct business interest in a foreign country, such as buying or establishing a manufacturing business, building warehouses, or buying buildings. Foreign Indirect Investment (FII), on the other hand, refers to investing in the financial assets of a foreign country, such as stocks or bonds available on an exchange. In simple terms, it involves the purchase of securities that can be easily bought or sold. The intent with FII is generally to invest money into the foreign country’s stock market with the hope of generating a return.", + "division": "Panthera", + "language": "English", + "link": "", + "round": "6", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THBT the queer community should actively promote queer theology at the expense of critique to religion.", + "infoSlide": "Queer theology is a theological method that has developed out of the philosophical approach of queer theory. Queer theology begins with an assumption that gender non-conformity and gay, lesbian and bisexual desire have always been present in human history, including the Bible.", + "division": "Panthera", + "language": "English", + "link": "", + "round": "7", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THS Russian intervention in the Nagorno-Karabakh Region.", + "infoSlide": "Armenia and Azerbaijan have been in conflict over Nagorno-Karabakh from the collapse of the USSR. They were engaged in a six-year war over the region. The conflicted area was a part of Muslim-majority Azerbaijan but mainly populated by ethnic Armenian Christians. Recently, armed violence between the two countries has escalated into full-blown conflict. Turkey has been actively involved since the escalation of the conflict in September. A peace agreement has been signed, with Azerbaijani control and significant numbers of Russian troops in the region.", + "division": "", + "language": "English", + "link": "", + "round": "Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THW ban the appearance of children on reality television.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Schools Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THW create UN protectorates in failing states.", + "infoSlide": "UN protectorates are international administrations established to govern countries or regions in crisis. Examples include the United Nations Interim Administration Mission in Kosovo (UNMIK) and United Nations Transitional Administration in East Timor (UNTAET). A failing state is a political body that has disintegrated to a point where basic conditions and responsibilities of a sovereign government no longer function properly. Examples include, South Sudan, Somalia and Haiti.", + "division": "", + "language": "English", + "link": "", + "round": "Schools Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THBT countries with judicial supremacy should confirm new Supreme Court judges by a nation-wide popular vote requiring a 60% majority.", + "infoSlide": "Judicial supremacy is a system where judges are empowered to strike down laws passed by the legislature that they believe are inconsistent with constitutional laws e.g. the Bills of Rights. The most famous example of judicial supremacy is the US Supreme Court.", + "division": "", + "language": "English", + "link": "", + "round": "ESL Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THW not induct successful athletes strongly suspected to have used performance enhancing drugs to their sport's Hall of Fame.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "TH, as a wealthy retired contact sport player, would sue their former teams for health problems obtained during their careers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Uhuru Worlds", + "year": "2021", + "format": "BP", + "content": "THR the Mbokodo narrative.", + "infoSlide": "Mbokodo is a Nguni term for a rock. Over the course of history, the slogan \"You strike a woman, you strike a rock\" has been used to express the resilience and strength of women, eventually leading to the coining of the term mbokodo as reference to women. It alludes to women being as solid as rocks.", + "division": "", + "language": "English", + "link": "", + "round": "Open Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Asia BP", + "year": "2021", + "format": "BP", + "content": "TH regrets 'sharing culture'.", + "infoSlide": "‘Sharing Culture’ refers to an online phenomenon where individuals are sharing more and more aspects of their lives, including personal issues, to their followers/friends on social media (Instagram, Facebook, Twitter, etc.)", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Asia BP", + "year": "2021", + "format": "BP", + "content": "THBT schools should replace the teaching of established classic literature (eg. works of Shakespeare, Fitzgerald etc.) with contemporary literature (eg. Harry Potter, Hunger Games, John Green books, etc.)", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Asia BP", + "year": "2021", + "format": "BP", + "content": "TH regrets the second impeachment of Donald Trump.", + "infoSlide": "Donald Trump was impeached for the second time by the House of Representatives on January 13, 2021. The US Congress adopted one article of impeachment against Trump: incitement of insurrection, alleging that Trump incited the storming of the U.S. Capitol on January 6.", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Asia BP", + "year": "2021", + "format": "BP", + "content": "Assuming it were possible, THW allow individuals to trade in years of their life to enhance their skills, traits or appearance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Asia BP", + "year": "2021", + "format": "BP", + "content": "TH Prefers leaderless social justice movements over ones where an identifiable leader exists.", + "infoSlide": "Examples of social justice movements that are known to be leaderless: Black Lives Matter, #MeToo, etc. Examples of social justice movements that are known to have identifiable leaders: Martin Luther King Jr. for the Civil Rights Movement, Nelson Mandela for the anti-apartheid revolution etc.", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Asia BP", + "year": "2021", + "format": "BP", + "content": "TH regrets the prominence of ‘gritty’ teen media (eg. Riverdale, the Winx Saga etc).", + "infoSlide": "‘Gritty’ teen media describes TV shows, movies and other media aimed at teenagers, which have more adult themes (such as violence, sexual content, portrayal of mental health issues, etc.) than typical teen shows. It has become popular in recent years to reboot franchises previously aimed at children with these mature themes.", + "division": "", + "language": "English", + "link": "", + "round": "Junior Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Asia BP", + "year": "2021", + "format": "BP", + "content": "THBT states should never rescue failing companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Junior Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Asia BP", + "year": "2021", + "format": "BP", + "content": "TH regrets the glorification of creating a legacy.", + "infoSlide": "A legacy is the presence of a person across society - whether it be through institutions they set up, actions they do, achievements they have, or wealth they create. A legacy usually lasts beyond a person's death.", + "division": "", + "language": "English", + "link": "", + "round": "Junior Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Asia BP", + "year": "2021", + "format": "BP", + "content": "TH regrets the romanticization of failure as part of the process for success.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Asia BP", + "year": "2021", + "format": "BP", + "content": "THW require all major infrastructure projects (eg. motorways, major apartment blocks, mines etc.) to be approved by public vote of the affected geographic community.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Asia BP", + "year": "2021", + "format": "BP", + "content": "THBT ASEAN should suspend membership of Myanmar until the Tatmadaw cedes power to the democratically elected government.", + "infoSlide": "The 2021 Myanmar coup began on the morning of 1 February 2021 when democratically elected members of Myanmar's ruling party, the National League for Democracy, were deposed by the Tatmadaw (Myanmar's military). The Tatmadaw declared a year-long state of emergency and declared power had been vested in Commander-in-Chief of Defence Services Min Aung Hlaing. The coup occurred the day before the Parliament of Myanmar was due to swear in the members elected at the November 2020 general election, thereby preventing this from occurring. The Association of Southeast Asian Nations (ASEAN) is a regional intergovernmental organization comprising ten countries in Southeast Asia: Brunei, Cambodia, Indonesia, Laos, Malaysia, Myanmar, the Philippines, Singapore, Thailand, and Vietnam.", + "division": "", + "language": "English", + "link": "", + "round": "Open Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian English Olympics", + "year": "2021", + "format": "BP", + "content": "As left-wing progressive political parties, THW prioritize pushing for reduced voting age, at the expense of pushing for reform of race-based voter suppression (including discrimination against immigrants).", + "infoSlide": "", + "division": "1", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian English Olympics", + "year": "2021", + "format": "BP", + "content": "THBT Robinhood should abandon the ‘payment for order flow’ practice and charge direct trade commissions instead.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian English Olympics", + "year": "2021", + "format": "BP", + "content": "As environmentalists, TH supports the Earth Liberation Front.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian English Olympics", + "year": "2021", + "format": "BP", + "content": "As Biden’s Administration, THW abide by the US-Taliban Peace Deal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian English Olympics", + "year": "2021", + "format": "BP", + "content": "TH prefers a tolerant religious society over an atheist one.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian English Olympics", + "year": "2021", + "format": "BP", + "content": "TH prefers the hypersexualisation of men rather than the desexualisation of women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian English Olympics", + "year": "2021", + "format": "BP", + "content": "TH prefers a world without nuclear weapons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian English Olympics", + "year": "2021", + "format": "BP", + "content": "TH, as parents, would teach our children to embrace the philosophy of water instead of the philosophy of fire.", + "infoSlide": "The 'philosophy of water' comprises \"H+H+O = H2O\", which in detail means \"Humility: water stays low in the river, yet it is a life-giving force; Harmony: water does not fight against its surroundings, it works with them to find a course; and Openness: water is open to change: gas, liquid, solid. It adapts and alters its form accordingly. The 'philosophy of fire' comprises opposite elements: Fierce, Insistent, Relentless, Exhaustive. It teaches one to develop a more rigid and firm sense of self that charges forward no matter what and burns all obstacles.", + "division": "", + "language": "English", + "link": "", + "round": "Novice Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian English Olympics", + "year": "2021", + "format": "BP", + "content": "THW legalize champerty.", + "infoSlide": "Champerty is a process at which an external party (normally companies) purchase an individual's right to sue even when that external party has no direct bearing to the legal suit. The individual and the third party could strike their own agreement; whether it is to split the settlement or if the third party pays a flat fee to the individual upfront to completely take over the legal case. This practice is currently illegal.", + "division": "", + "language": "English", + "link": "", + "round": "Open Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian English Olympics", + "year": "2021", + "format": "BP", + "content": "As the feminist movement, TH celebrates the degeneration of Y chromosome in human species.", + "infoSlide": "Recent research shows that the Y chromosome that symbolizes likelihood of women to get birth to male offspring has degenerated rapidly in the 21st century. There is an indication that this research shows that the number male population is on progress to be extremely decreased in the future.", + "division": "", + "language": "English", + "link": "", + "round": "Open Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian English Olympics", + "year": "2021", + "format": "BP", + "content": "THBT ASEAN should immediately abandon the non-interventionist policy.", + "infoSlide": "ASEAN's non-interventionist policy is loosely defined as “no involvement in domestic affairs ranging from political commentary to military intervention”. This normally includes refraining from economic sanctions or establishing political stances to nudge countries in domestic affairs.", + "division": "", + "language": "English", + "link": "", + "round": "Open Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian English Olympics", + "year": "2021", + "format": "BP", + "content": "THW take the blue pill over the red pill.", + "infoSlide": "The human race has reached the 30th century and earth as we know it has fallen into a dystopian, robots-controlled battleground. Conscious human beings are placed in a simulated reality to avoid revolt, detached from the unfolding dystopia. You are made aware that you are living in a simulation more peaceful and serene than reality itself. You are offered a blue pill by the rebel group that was able to penetrate the simulated reality system and invite you to escape this simulation to live in the dystopia and revolt against the evil self-conscious robot society. Alternatively, you are offered a red pill that will erase the memory of you having this dilemma and you will stay in this simulation happily until your consciousness runs out.", + "division": "", + "language": "English", + "link": "", + "round": "Open Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Winter Online BP Open", + "year": "2021", + "format": "BP", + "content": "THBT social movements in developing countries should use strategies that seek the acceptance of the majority as opposed to using a confrontational approach.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Winter Online BP Open", + "year": "2021", + "format": "BP", + "content": "THO the trend of the Chinese work philosophy of \"touching fish.\"", + "infoSlide": "For the purpose of this debate \"touching fish\" refers to the rising Chinese Gen Z workplace trend and philosophy of taking the chance to \"slack off\", when others are already hard at work. \"Touching fish\" is not uncommon among older generations of China but was generally not as widespread as it is today among Generation Zs. The term takes after a Chinese proverb that says, \"muddy waters make it easy to catch fish\" which means the more convoluted a situation, the easier it is for opportunistic behaviour.", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Winter Online BP Open", + "year": "2021", + "format": "BP", + "content": "THW only allow lawyers to reject work in areas in which they practice based on the prospects of success as opposed to the client’s identity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Winter Online BP Open", + "year": "2021", + "format": "BP", + "content": "THO political centrism.", + "infoSlide": "Centrism is a political outlook or position that involves acceptance and/or support of a balance of social equality and a degree of social hierarchy, while opposing political changes which would result in a significant shift of society strongly to either the left or the right.", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Winter Online BP Open", + "year": "2021", + "format": "BP", + "content": "Upon the condition that essential medical workers and the most vulnerable have been vaccinated, THBT the WHO should compel its rich members to donate their vaccines to COVAX for fair and equitable distribution to low middle-income and lowest income countries.", + "infoSlide": "COVAX stands for \"Covid-19 Vaccines Global Access Facility\". Led by the WHO, it aims to develop, purchase and deliver vaccines to more than 180 countries, the scheme has started distributing vaccines in February 2021, with poor and middle-income countries receiving the lion's share. COVAX hopes that, by the end of 2021, more than two billion doses will have been delivered to countries across the world, especially the poorest ones.", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Winter Online BP Open", + "year": "2021", + "format": "BP", + "content": "THBT the feminist movement should actively oppose the \"not like other girls\" trope.", + "infoSlide": "\"Not like other girls\" trope is a common TV/Movie/Book/Meme plot or characterization where the main female protagonist is described as being \"different\" and \"unusual\" (e.g. being smart, emotionally resilient, down to earth, independent, less caring, lacks interest in certain things) compared to other 'typical girls'.", + "division": "", + "language": "English", + "link": "", + "round": "6", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Winter Online BP Open", + "year": "2021", + "format": "BP", + "content": "THBT developing countries should auction off their long term right to govern underdeveloped areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Winter Online BP Open", + "year": "2021", + "format": "BP", + "content": "THR the commercialisation of the Hajj.", + "infoSlide": "The Hajj, in Islam, is the pilgrimage to the holy city of Mecca in Saudi Arabia, the holiest city for Muslims. Hajj is one of the five pillars of faith in Islam, and is a mandatory religious duty for Muslims that must be carried out at least once in their lifetime by all adults provided they are physically and financially capable of undertaking the journey, and can support their families during their absence.", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Winter Online BP Open", + "year": "2021", + "format": "BP", + "content": "THBT ASEAN should play the leading role in returning Myanmar to the path of democracy (e.g. through sanctioning Myanmar, etc.), as opposed to maintaining its principle of non-interventionism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Winter Online BP Open", + "year": "2021", + "format": "BP", + "content": "THBT parents should raise their child in a society with low levels of uncertainty avoidance.", + "infoSlide": "Uncertainty avoidance - measures the extent to which different cultures socialise their members into accepting ambiguous situations and tolerating uncertainty. In a culture that practices high levels of uncertainty avoidance, people place a premium on job security, retirement benefits, and so on, while in a society with a culture of low uncertainty avoidance, people are more willing to take risks, and are more adaptive to change.", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Philippines Queer Open", + "year": "2021", + "format": "BP", + "content": "THW establish and subsidize gender minority divisions in competitive gaming.", + "infoSlide": "Competitive gaming (e-sports) is where professional players of multiplayer video games compete for prizes as competitors would in physical Olympics. Currently, competitive gaming, participated and watched mostly by male gamers, only has age/experience-based categories (junior leagues, novice championship, etc.) and does not have any specific gender categories/divisions.", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Philippines Queer Open", + "year": "2021", + "format": "BP", + "content": "TH, as the U.S, would employ gray-zone warfare against China in the Taiwan region.", + "infoSlide": "Gray-zone warfare is a tactic designed to degrade opposition's attrition by constantly forcing them to stay in a high state of alert (ex. scrambling fighter jets and having them fly just outside the border ex. sailing ships just outside naval territorial boundaries). As the name implies, the tactics are almost always 'technically' not illegal by international legal frameworks, though are discouraged. Recently, China has significantly increased the amount of gray-zone tactics it uses against Taiwan on a regular basis.", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Philippines Queer Open", + "year": "2021", + "format": "BP", + "content": "TH, as a non-profit/charity organization working with marginalized young and adult men, would embrace the perceived traditional ideals of masculinity rather than campaigning for the deconstruction of masculinity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Philippines Queer Open", + "year": "2021", + "format": "BP", + "content": "THO the deplatforming of Parler by tech giants.", + "infoSlide": "Parler is a microblogging/social media web service / app. It is often positioned as a free-speech, no-moderation alternative to Twitter and other social media networks. In the aftermaths of the 2021 attack on the U.S. Capitol, many tech companies have taken action against Parler - e.g. Apple and Google has removed the Parler app from their stores, and Amazon Web Services have stopped its hosting services for Parler. In letters sent to Parler about their decisions, Amazon, Apple, and Google all cited the social media company’s lack of a workable system to keep violent content off its platform.", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Philippines Queer Open", + "year": "2021", + "format": "BP", + "content": "THBT refugee centers should be constructed with the intention of serving as permanent relocation centers rather than temporary areas before returning refugees to their home countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Philippines Queer Open", + "year": "2021", + "format": "BP", + "content": "THBT the trans movement should equally recognize the legitimacy of the detransitioning narrative to other trans narratives.", + "infoSlide": "De-transition is the cessation or reversal of a transgender identification or gender transition, whether by social, legal, or medical means.", + "division": "", + "language": "English", + "link": "", + "round": "Open Pre-Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Philippines Queer Open", + "year": "2021", + "format": "BP", + "content": "Assuming this tech exists, THS the use of this AI.", + "infoSlide": "An AI technology has been invented that creates realistic virtual humans equipped with simulated partial consciousnesses for users to interact with. Users may legally do anything they wish to these consciousnesses. These consciousnesses are programmed to experience all the same emotions as a human--including pleasure, pain, fear, etc.", + "division": "", + "language": "English", + "link": "", + "round": "Open Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Philippines Queer Open", + "year": "2021", + "format": "BP", + "content": "THO integration with nationalism by social movements.", + "infoSlide": "Examples of social movements integrating with nationalism e.g. USA Pride Flag, \"Real Brits support women's equality\", POC floats at independence parades, etc.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UMT Parliamentary Debate Open", + "year": "2021", + "format": "BP", + "content": "THS the rise of escapist media and art.", + "infoSlide": "Escapist art refers to art that is, art with no overt social function.", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UMT Parliamentary Debate Open", + "year": "2021", + "format": "BP", + "content": "THBT gender and sexual minority groups (feminist and LGBTQIA+) should ensure that decision making and representation for their cause is done by members of the minority group and limit the advocacy of allies to support and mass action (such as protests and petitions).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UMT Parliamentary Debate Open", + "year": "2021", + "format": "BP", + "content": "THS the complete demetrication of all social media.", + "infoSlide": "Social media demetrication is the process of removing all metrics such as likes, views, number of shares, etc. from all posts.", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UMT Parliamentary Debate Open", + "year": "2021", + "format": "BP", + "content": "THR the fall of the Soviet Union.", + "infoSlide": "The dissolution of the Soviet Union was the process of internal disintegration within the Soviet Union, which began with growing unrest in its various constituent republics developing into an incessant political and legislative conflict between the republics and the central government, and ended when the leaders of three primal republics (the Russian SFSR, the Ukrainian SSR and the Byelorussian SSR) declared it no longer existed, later accompanied by 11 more republics, resulting in President Mikhail Gorbachev having to resign and what was left of the Soviet parliament formally acknowledging what had already taken place.", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UMT Parliamentary Debate Open", + "year": "2021", + "format": "BP", + "content": "THR the narrative that resilience is a virtue.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UMT Parliamentary Debate Open", + "year": "2021", + "format": "BP", + "content": "TH, as the Government of Imran Khan in Pakistan, would actively pursue normalization of ties with India independent of any negotiations over Kashmir.", + "infoSlide": "Ties between India and Pakistan have faced considerable deterioration since the abrogation of Article 370 by the Indian government. However, more recently there have been attempts towards rapprochement by both sides and public statements indicating potential pursuit of improved ties. For example, a proposal in the Pakistani federal cabinet was recently extended to allow the import of cotton yarn from India. This proposal was rejected by the Prime Minister who reiterated the policy of prohibiting.", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trouvaille Debate Open", + "year": "2021", + "format": "BP", + "content": "Chúng tôi sẽ tước tất cả các phúc lợi y tế được chính phủ trợ cấp cho những cá nhân chọn lối sống không lành mạnh.", + "infoSlide": "Trong bối cảnh của trận tranh biện này, lối sống không lành mạnh bao gồm các hành động như:Hút thuốc, ăn uống không điều độ, lạm dụng chất cấm và KHÔNG bao gồm chế độ sinh hoạt như ngủ muộn, làm việc nhiều giờ.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trouvaille Debate Open", + "year": "2021", + "format": "BP", + "content": "Chúng tôi, với tư cách là một người nhập cư bất hợp pháp, sống trong quốc gia có sự kỳ thị với nhóm người của mình, sẽ ưu tiên một cuộc sống tội phạm nhưng kiếm được nhiều tiền thay vì một công việc hợp pháp (hình thức công việc không vi phạm pháp luật).", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trouvaille Debate Open", + "year": "2021", + "format": "BP", + "content": "Chúng tôi lấy làm tiếc việc Vinfast khởi kiện kênh youtube Gogo TV.", + "infoSlide": "Chiều 2/5, VinFast Vietnam – fanpage chính thức VinFast – đăng tải thông tin phản hồi về trường hợp của ông Trần Văn Hoàng, chủ kênh Youtube GogoTv đã sản xuất và đăng tải clip nói về lỗi của chiếc Lux A2.0. Bài đăng mô tả nội dung trong clip có nội dung “không đúng sự thật về chất lượng xe VinFast Lux A2.0, gây hoang mang cho người dùng và ảnh hưởng tới uy tín của VinFast”. Trong clip của mình, GogoTV phản ánh rằng rằng Vinfast có chất lượng sản phẩm cũng như chất lượng phục vụ không tốt.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trouvaille Debate Open", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng Mỹ nên từ bỏ những nỗ lực gây ảnh hưởng lên Biển Đông để tập trung ảnh hưởng lên khu vực Trung Đông.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trouvaille Debate Open", + "year": "2021", + "format": "BP", + "content": "Chúng tôi, với tư cách là các quốc gia đang phát triển, sẽ ưu tiên đơn vị tiền tệ tổng hợp làm tiền tệ dự trữ thay vì sử dụng đồng đô la Mỹ.", + "infoSlide": "Tiền tệ dự trữ (hoặc tiền tệ neo) là một loại ngoại tệ được các ngân hàng trung ương hoặc các cơ quan quản lý tiền tệ khác nắm giữ giữ với định lượng đáng kể. Tiền tệ dự trữ có thể được sử dụng trong các giao dịch quốc tế, đầu tư quốc tế và tất cả các khía cạnh của nền kinh tế toàn cầu, và có thể được sử dụng trong trường hợp khẩn cấp khi đồng tiền của quốc gia bị mất giá trị. Đồng tiền dự trữ toàn cầu hiện tại là đô la Mỹ. Đơn vị tiền tệ tổng hợp là đơn vị tiền tệ toàn cầu có giá trị được tính từ nhiều loại tiền tệ hàng đầu tổng hợp.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trouvaille Debate Open", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng phong trào nữ quyền nên đấu tranh cho việc bình đẳng tình dục hóa ở nam và nữ trong truyền thông thay vì phản đối tình dục hóa ở nữ giới.", + "infoSlide": "Tình dục hóa là hành động đặt giá trị ngoại hình và sức hấp dẫn tình dục của một người lên trên tất cả các đặc điểm khác. Khi đó, người ấy trở thành đối tượng để người khác sử dụng với mục đích tình dục thay vì được coi là một cá thể có năng lực độc lập. Các nghiên cứu đã chỉ ra rằng nữ giới thường bị tình dục hóa nhiều hơn hẳn nam giới trong các ấn phẩm truyền thông (ví dụ: mặc quần áo hở hang, với tư thế cơ thể hoặc nét mặt ngụ ý sự sẵn sàng tình dục) và bị vật hóa (ví dụ: được sử dụng như một vật trang trí, hoặc như các bộ phận cơ thể hơn là toàn bộ con người).", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trouvaille Debate Open", + "year": "2021", + "format": "BP", + "content": "Chúng tôi sẽ phổ biến sự tồn tại của cỗ máy đó.", + "infoSlide": "Giả sử có tồn tại một cỗ máy tạo ra thực tế ảo của riêng một người cho phép con người đó làm tất cả những hành động bạo lực, phi nhân tính nhất trong đó.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DAV IR Cup", + "year": "2021", + "format": "BP", + "content": "Chúng tôi, với tư cách là chính phủ Mỹ, sẽ ưu tiên thiết lập quan hệ kinh tế với Triều Tiên thay vì yêu cầu giải giáp vũ khí hạt nhân.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DAV IR Cup", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng các quốc gia thành viên của EU nên từ chối lời đề nghị gia nhập của Thổ Nhĩ Kỳ.", + "infoSlide": "Sau khi nộp đơn xin gia nhập vào EU vào năm 1987, năm 1999, Thổ Nhĩ Kỳ mới được công nhận tư cách ứng cử viên. Đến năm 2015, Ankara mới có thể bắt đầu tiến trình đàm phán gia nhập với EU. Từ đó đến nay, các cuộc đàm phán về vấn đề này gần như vẫn rơi vào bế tắc bởi giữa 2 bên vẫn còn tồn tại nhiều mâu thuẫn.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DAV IR Cup", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng các nước phương Tây nên tích cực hỗ trợ cho hoạt động của các tập đoàn đa quốc gia tại các nước Châu Phi để đối đầu với chiến lược “Vành đai - Con đường” của Trung Quốc trong khu vực.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DAV IR Cup", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng việc từ bỏ nỗ lực trở thành quốc gia độc lập khỏi Trung Quốc sẽ mang lại lợi ích tốt nhất cho Hong Kong.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DAV IR Cup", + "year": "2021", + "format": "BP", + "content": "Chúng tôi sẽ yêu cầu chính phủ hoàng gia và chính phủ Anh Quốc trả tiền bồi thường cho các quốc gia thuộc địa cũ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DAV IR Cup", + "year": "2021", + "format": "BP", + "content": "Chúng tôi, vơi tư cách là Hamas, sẽ chuyển giao toàn bộ vũ khí cho chính quyền Palestine của Tổng thống Mahmoud Abbas.", + "infoSlide": "Hamas và Fatah là hai đảng phải đối lập lớn nhất đang cạnh tranh cho sự lãnh đạo của Palestine. Fatah, với lãnh đạo là tổng thống của Mahmoud Abbas, có một cách tiếp cận hòa bình hơn và muốn thỏa hiệp với Israel để chấm dứt xung đột, trong khi đó Hamas vẫn muốn cạnh tranh vũ trang với Israel để giành lại lãnh thổ. Mặc dù khác biệt về hệ tư tưởng, hải đảng phái vẫn cố gắng để đạt được một chính phủ đoàn kết của Palestine. Nhưng để thỏa thuận được thông qua, tổng thống Abbas đã đưa ra yêu cầu bắt buộc Hamas phải chuyển giao toàn bộ vũ khí và quân đội lại cho nhà nước Palestine.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DAV IR Cup", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng ASEAN nên đình chỉ tư cách thành viên của Myanmar cho đến khi quân đội khôi phục chính phủ dân sự.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DAV IR Cup", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng Ấn Độ nên rút khỏi bộ tứ kim cương do Mỹ khởi xướng.", + "infoSlide": "Bộ tứ kim cương (còn được gọi là Đối thoại Tứ gia an ninh/The Quad) là một diễn đàn chiến lược không chính thức giữa Ấn Độ, Hoa Kỳ, Nhật Bản và Úc, được duy trì bằng các hội nghị thượng đỉnh bán thường xuyên, trao đổi thông tin và diễn tập quân sự giữa các quốc gia thành viên.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2021", + "format": "BP", + "content": "THP a world where children are raised communally.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2021", + "format": "BP", + "content": "This house would expropriate foreign and white-owned businesses in Southern Africa (i.e., South Africa, Namibia, Botswana, Zimbabwe).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2021", + "format": "BP", + "content": "This house supports the cult of productivity.", + "infoSlide": "The cult of productivity refers to a set of norms where being continuously productive and busy in both your professional and personal life is seen as desirable and virtuous.", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2021", + "format": "BP", + "content": "THW replace \"real world\" prison incarceration with simulated incarceration, for people not sentenced to a life sentence.", + "infoSlide": "For the purposes of this debate, there exists a safe technology which can accurately simulate the experience of being in prison. A person within the simulation will experience the simulation as fully real, including time passing slowly as in \"real life\", while not interacting with others in the \"real world\". In reality, even a long sentence in the simulation will be done in a matter of days.", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2021", + "format": "BP", + "content": "As China, THW fund and arm the anti-coup movement in Myanmar.", + "infoSlide": "On February 1, 2021, the Myanmar military (\"Tatmadaw\") overthrew the civilian government led by Aung San Suu Kyi and the National League for Democracy (NLD). Since the coup, extensive violence has broken out over Myanmar, with frequent civilian-military altercations and mass violence committed by the army. The coup followed general elections last year, where the military suffered a significant defeat and refused to accept the results of the elections. In the status quo, China allegedly sells arms to the Burmese military and has blocked an official condemnation of the coup at the U.N. Chinese investment, firms, and infrastructure have been targeted by protestors.", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2021", + "format": "BP", + "content": "THBT the legacy of historical figures should not suffer due to those figures' immoral actions, if those actions were generally seen as morally unproblematic by their own society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "TH, as South Korea, would aim to significantly increase its cross-border economic cooperation with North Korea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "THW ban social media companies from independently deplatrforming politicians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "TH prefers environmental movements heavily prioritizing a local agenda over a global one (e.g. focusing on local pollution rather than climate change).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "TH opposes the glorification of professional e-sports players.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "THS opposes the general approach of companies to grow by massively sacrificing short-term profitability with the hope of gaining a large portion of the market. (This is the original business model of companies such as Uber or Amazon)", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "THBT it is in the interest of the Catholic church to officially recognize Folk Saints.", + "infoSlide": "Folk Saints are dead people recognized by the general population as saints who were not officially acknowledged as saints by the Catholic church. Unlike regular saints, they lived lives that the church considers sinful. They are popular in many regions, especially in Latin America. Examples include Sarita Colonia that answers the prayers of sex workers & LGBT people; and Juan Soldado that answers the prayers of people who commit low-level crimes out of financial desperation.", + "division": "", + "language": "English", + "link": "", + "round": "6", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "THBT pursuing strong expansionist policies in the Arctic region is in the Russian interest.", + "infoSlide": " Expansionist policies include but is not limited to: Including but not limited to: building artificial islands in order to claim additional territory, trying to significantly limit foreign presence, stationing warships and troops.", + "division": "", + "language": "English", + "link": "", + "round": "7", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "TH opposes the academisation of social justice movements", + "infoSlide": "Academisation: The increasingly significant presence of academics and academic terminology, processes and structures in many parts of the world.", + "division": "", + "language": "English", + "link": "", + "round": "8", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "THBT states should classify organized crime syndicates as terrorist groups.", + "infoSlide": "Classification as a terrorist group would legally allow law enforcement to pursue tactics such as targeted extra-judicial killings, reducing barriers to law enforcement gathering evidence, using military forces, criminalizing membership, etc.", + "division": "", + "language": "English", + "link": "", + "round": "9", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "TH would teach children to have a logical approach to life, even at the expense of reducing their emotional bandwidth (e.g. trying to react in less emotional ways, prioritising logic over emotions when approaching problem-solving, etc.)", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "TH supports the rise of language-generating AI.", + "infoSlide": "For the purpose of this debate, 'language-generating AI' is AI that can generate fluent streams of text after processing billions of words from sources such as books, articles and websites. Language-generating AI could conceivably have the potential to write press releases, stories, debate speeches, guitar tabs, scientific hypotheses, technical manuals, code, and more. In limited contexts, the latest versions of the advanced language generating technology were found to be indistinguishable from human writing, however the technology as a whole is still error-prone. Language-generating AI already has commercial & research applications by large organizations, and the technology is expected to rapidly develop in versatility & scale in the near future.", + "division": "", + "language": "English", + "link": "", + "round": "Open Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "TH prefers a world in which the Resident Evil machine exists.", + "infoSlide": "Resident Evil is a VR machine. It leads its user through a set of scenarios aimed at testing whether the user would diverge from universal moral norms. These norms could include not killing, not stealing, not betraying others, or similar. While connected, the simulated scenarios feel completely real to the user. All adults are tested on Resident Evil and their results are publicly available.", + "division": "", + "language": "English", + "link": "", + "round": "EFL Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "THBT police commissioners should be directly elected by their local community.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "TH opposes the Biden Administration's plan to finance large scale governmental projects through multi-trillion dollar fiscal stimulus.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "TH prefers to live an average anonymous life in South Korea over being a K-Pop star.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "THBT international discussion forums should not self-censor in an attempt to increase inclusivity to people from countries with stringent freedom-of-speech rules.", + "infoSlide": "Examples of self-censorship: AI conferences avoiding discussions on the implications of the use of a certain technology by oppressive regimes; competitions censoring topics; moderators removing politically sensitive content from discussion boards.", + "division": "", + "language": "English", + "link": "", + "round": "EFL Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "THBT governments would be justified in heavily pursuing Longtermism.", + "infoSlide": "For the purposes of this debate, supporters of Longtermism believe that significantly more beings will be alive during the future, and that we should assign moral value to the unborn. Thus, they conclude that when evaluating our actions today, the largest consideration is how they affect the future. Potential examples of Longtermist policies can include encouraging people to dedicate their lives to reducing long-run existential risks, allocating a substantial portion of the budget to try and improve the welfare of future generations, or trying to expand humanity to other planets. Under a Longtermist view such policies are ethical even if they come at the very strong expense of more immediate and certain goals like poverty reduction, providing healthcare or increasing the happiness of the living.", + "division": "", + "language": "English", + "link": "", + "round": "ESL Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "TH supports the creation of an international court with a mandate to prosecute leaders for health crimes.", + "infoSlide": "For the purposes of this debate 'health crimes' are massive violations of the international health codes. For example, the unwillingness to comply with the WHO's regulations on dealing with pandemics, a significant violation of norms on the prescription of antibiotics, breaching the experimentation codes of ethics.", + "division": "", + "language": "English", + "link": "", + "round": "Open Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Korea WUDC", + "year": "2021", + "format": "BP", + "content": "TH loves online debating and supports all competitive debating being held exclusively online indefinitely regardless of external factors e.g. pandemic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Master's Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THS higher than usual taxes on non essential businesses (Netflix, Zoom) that made significant profits due to the pandemic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THBT it is morally justified for individuals to evade inheritance tax.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THBT the regulation of overconsumption of common shared resources is justified.", + "infoSlide": "Common shared resources are resources everyone has equal access to, for example, roads. Overconsumption of shared common resources often has negative outcomes, for example - taking numerous flights in a given period, using a car everyday, overgrazing on common fields.", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "In a world where self driving cars exist, THP, that in cases of accidents when some damage is bound to occur, self driving cars be programmed to outsource the decision to the human driver (the car would not make a mathematical harm calculus), over picking the outcome that causes the least numerical human harm.", + "infoSlide": "If a car with a passenger inside had to pick between running into A, a motorist (which would cause grave injury to 1 motorist) vs into another car B with 5 people inside, the latter scenario would probably run into A.", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THW allow the “Human-Sims” game.", + "infoSlide": "The Sims is a life-simulation video game where you control all the activities of a virtual character. There now exists a technology that allows real humans to opt into this game as characters. For the duration of the game, these “Human-Sims” will be under the control of another person. Once the game ends, the Human-Sims will have no memory of this experience. They will also be financially rewarded.", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "TH, as the working class, supports creating digital clones of themselves.", + "infoSlide": "There is a technology that allows people to create digital sentient clones of themselves. These clones can perform your daily chores (assignments, office work, etc). The clone will be stored in an egg-shaped device, and will have a mind of its own. A corporation mass produces this technology aimed at the working class to make it easily available for them.", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "TH, as the Radical Left, supports Liberation theology.", + "infoSlide": "Liberation theology was a late 20th-century Roman Catholic movement arising in Latin America. The Liberationists said the church should act to bring about social change, and should ally itself with the working class to do so. Some radical priests became involved in politics and trade unions; others even aligned themselves with violent revolutionary movements.", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THR de-platformation of Parler.", + "infoSlide": "Parler is an American alt-tech microblogging and social networking service. Parler has a significant user base of Donald Trump supporters, conservatives, conspiracy theorists, and right-wing individuals. Posts on the service often contain far-right content, and conspiracy theories such as QAnon. Journalists have described Parler as an alternative to Twitter, and users include those banned from mainstream social networks or opposing their moderation policies.", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THW limit corporate funding of scientific research.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THP bail-in over bail-out.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THW mandate pharmaceutical corporations to reveal the cost involved in research and development.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "TH, as the LGBTQIA+ movement, will reject legalism as an avenue of emancipation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THBT capitalism is incompatible with LGBTQIA+ justice.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THBT complete gender emancipation requires the end of family as a dominant social construct.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "In the wake of the frustration brought about by the COVID-19 pandemic, THBT the African states should not have discontinued the use of CFA Franc.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THO vaccine nationalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THBT India should heavily militarize ANI.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THO the prominence of heroism as a value in society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THBT the point system should provide positive points if the overall impact of actions are good, even if their motivations are corrupt.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THO the centrality of sport to national identity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THW impose rental caps in urban hubs (e.g. San Francisco, Manhattan, Mumbai).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "In countries with largely agrarian economies, THP governments providing higher quality utilities over providing MSPs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THW allow citizens from specific localities to vote on whether big corporates should set up business operations in those regions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "THS legal realism in jurisprudence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DTU Parliamentary Debate", + "year": "2021", + "format": "AP", + "content": "TH, as citizens of a developing country, would actively choose to practice stoicism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ bắt tất cả các trường đại học nhận học sinh dựa trên các phương pháp phi định lượng (bài luận, phỏng vấn,...) thay vì dựa trên điểm của bài thi chuẩn hóa.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi lấy làm tiếc về quan niệm phổ biến \"Đại học là con đường cơ bản dẫn tới thành công\".", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng hệ thống giáo dục đại học nên ưu tiên giáo dục khai phóng hơn giáo dục chuyên ngành.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ chỉ cho phép những người bán hoặc cung cấp dịch vụ được phép quảng cáo những thông tin liên quan đến thông số kỹ thuật của sản phẩm.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ tách Vingroup thành các công ty độc lập.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng các quốc gia đang phát triển nên ưu tiên chính sách bảo hộ mậu dịch hơn tự do thương mại.", + "infoSlide": "Bảo hộ mậu dịch là việc áp đặt thuế xuất nhập khẩu cao hoặc áp dụng các biện pháp phi thuế quan (nâng cao tiêu chuẩn về chất lượng, vệ sinh, an toàn, môi trường...) lên một số mặt hàng nhập khẩu từ nước ngoài nhằm bảo hộ thị trường nội địa. Tự do thương mại là các biện pháp xóa bỏ hàng rào thuế quan và phi thuế quan để thúc đẩy giao lưu hàng hóa và dịch vụ giữa các quốc gia trên thế giới.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ không tiêu dùng (bao gồm nhưng không giới hạn hình thức xem, mua bán, ủng hộ...) những tác phẩm nghệ thuật của những nghệ sĩ có hành vi vô đạo đức.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng người nổi tiếng nên chịu hình phạt nặng hơn mức phạt thông thường vì những tội họ gây ra.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng nghệ thuật tốt là nghệ thuật phục vụ đám đông.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách chính phủ Israel, sẽ tiêm vaccine cho người Palestine trên lãnh thổ của chúng tôi.", + "infoSlide": "Israel đã tiêm vaccine Covid cho 15% dân số, và sẽ sớm tiêm vaccine cho toàn bộ dân số của họ. Tuy nhiên toàn bộ người dân Palestine và tù nhân người Palestine sống trong các khu vực lãnh thổ do Israel chiếm đóng thì đều không được chính phủ Israel tiêm vaccine.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ không ưu tiên việc phân phát vắc xin Covid 19 cho những người có hành vi ảnh hưởng đến sức khỏe cộng đồng (VD: trốn cách li, tuyên truyền những thông tin sai lệch về dịch bệnh, ...)", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi ủng hộ việc tạo ra \"trái phiếu ASEAN\" để hỗ trợ phục hồi kinh tế khu vực sau Covid-19.", + "infoSlide": "Trái phiếu ASEAN (ASEAN bonds) sẽ là giấy nợ phát hành để toàn bộ khối ASEAN có thể vay tiền từ những nhà đầu tư nước ngoài.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách là phong trào nữ quyền, sẽ tích cực công khai chỉ trích X.", + "infoSlide": "X là nữ chính trị gia đầu tiên của đất nước bước vào hàng ngũ lãnh đạo quốc gia. Hiện tại, X được tôn vinh và được xem như một nhân vật truyền cảm hứng. Trong quá khứ, X từng có hoạt động gây phương hại cho phong trào nữ quyền (vd: giảm số năm tù cho tội phạm xâm hại tình dục có nạn nhân là nữ...); tuy nhiên, thông tin này ít được mọi người để ý đến.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng những người phụ nữ có địa vị cao trong xã hội nên từ chối vị trí lãnh đạo trong các phong trào nữ quyền.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Ở trong những ngành học bị chiếm đa số bởi một giới, chúng tôi sẽ có những chính sách ưu tiên cho giới còn lại (VD: hỗ trợ tiền học cho sinh viên nữ học quân đội, điểm đầu vào thấp hơn đối với sinh viên nữ trong ngành công nghệ thông tin, hỗ trợ tiền cho sinh viên nam học ngành múa, ...)", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng Wakanda nên theo đuổi một chính sách toàn cầu hóa (trao đổi với tất cả các quốc gia kể cả không cùng gốc gác châu Phi) thay vì chính sách ưu đãi riêng cho các quốc gia châu Phi.", + "infoSlide": "Wakanda là một quốc gia được dựng nên bởi 1 nhóm người cổ đại tại châu Phi. Nhờ sở hữu 1 loại kim loại quý có tên gọi là Vibranium, Wakanda có công nghệ vượt trội so với thế giới, vì vậy Wakanda đã tự che giấu mình khỏi thế giới suốt 1 thời gian dài. Hiện nay, công nghệ vô cùng tiên tiến của Wakanda đã được thế giới biết tới.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng Việt Nam nên dừng chính sách \"Bốn Không\" trong Quốc phòng.", + "infoSlide": "Chính sách \"Bốn Không\" của Việt Nam trong Quốc phòng bao gồm: không tham gia liên minh quân sự; không liên kết với nước này để chống nước kia; không cho nước ngoài đặt căn cứ quân sự hoặc sử dụng lãnh thổ Việt Nam để chống lại nước khác; không sử dụng vũ lực hoặc đe dọa sử dụng vũ lực trong quan hệ quốc tế.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ bãi bỏ cơ chế phủ quyết của Hội đồng Bảo an Liên Hợp Quốc.", + "infoSlide": " Cơ chế phủ quyết (veto) của Hội đồng Bảo an Liên Hợp Quốc (UNSC) là cơ chế trao cho 5 thành viên thường trực của Hội đồng (Trung Quốc, Hoa Kỳ, Nga, Pháp, Vương quốc Anh và Bắc Ireland) quyền được phủ quyết bất kỳ một nghị quyết nào của Hội đồng. Một nghị quyết sẽ không được thông qua nếu có ít nhất một trong 5 thành viên thực hiện quyền phủ quyết cùa mình.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi lấy làm tiếc về quan niệm \"hy sinh là điều kiện cần thiết cho hạnh phúc\".", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi lấy làm tiếc về quan niệm phổ biến trong giáo dục trẻ em \"cái thiện luôn chiến thắng cái ác\".", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi lấy làm tiếc về sự ca ngợi văn hóa khởi nghiệp thay vì theo đuổi con đường sự nghiệp truyền thống.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách là 1 sinh viên tiềm năng, có tư tưởng tiến bộ, vừa tốt nghiệp đại học, sẽ lập tức kiếm tối đa tiền có thể (làm việc cho các tập đoàn lớn, công ty nước ngoài...) rồi đóng góp từ thiện, thay vì làm việc trong mảng hoạt động xã hội (NGO, ...)", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách là những người châu Á tiến bộ sống tại phương Tây, sẽ lựa chọn cách sống đạo Phật như một cách phản đối cuộc sống dựa trên những giá trị tư bản.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam University Debating Championship (VUDC)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng các cá nhân đã thỏa mãn những điều kiện sống cơ bản sẽ là vô đạo đức nếu họ không cống hiến của cái dư thừa để tối đa hóa lợi ích cho xã hội.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi lấy làm tiếc về sự ca ngợi \"người tốt việc tốt\" trên mạng xã hội.", + "infoSlide": "\"Người tốt việc tốt\" đề cập đến những câu chuyện người thật, việc thật mang lại những lợi ích to lớn và quan trọng cho các cá nhân và cộng đồng.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi lấy làm tiếc về việc các công ty mạng xã hội (Facebook, Instagram, ...) cấm những nội dung có yếu tố phân biệt và xúc phạm.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi phản đối văn hóa tự phê bình trên mạng xã hội.", + "infoSlide": "Văn hóa tự phê bình là một văn hóa nơi mà các cá nhân được khuyến khích tự chỉ trích một cách công khai những thiếu sót của bản thân mình.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi lấy làm tiếc về sự phát triển của chủ nghĩa nữ quyền đại chúng.", + "infoSlide": "Chủ nghĩa nữ quyền đại chúng tôn vinh sự trao quyền cho phụ nữ và bản sắc nữ quyền thông qua các phương tiện truyền thông, bao gồm nhạc pop, quảng cáo, thời trang và các chiến dịch truyền thông xã hội. Ví dụ về nữ quyền đại chúng bao gồm các bài hát và màn trình diễn khác nhau của Beyonce hoặc chiến dịch “My Choice” của Vogue Ấn Độ.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi lấy làm tiếc về quan niệm \"Phụ nữ cùng lúc có thể có tất cả\" (sự nghiệp, gia đình, ...)", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng các nhà nữ quyền nên sử dụng chiến thuật “Call-in” thay vì chiến thuật “Call-out”.", + "infoSlide": "Chiến thuật “Call-out” tập trung vào việc công khai lên án các cá nhân có hành động phân biệt hoặc áp bức với phụ nữ. Chiến thuật “Call-in” tập trung vào việc cố gắng đối thoại riêng (qua email, trực tiếp hoặc bất kỳ hình thức nào khác) nhằm giải thích và thuyết phục những cá nhân có hành động phân biệt hoặc áp bức với phụ nữ.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ cấm ngành công nghiệp lông thú và da thú.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách là một công ty có thương hiệu sản phẩm uy tín trên thị trường nhưng đang trong thời kỳ khó khăn về tài chính, sẽ ưu tiên nhượng quyền thương hiệu thay vì tiếp tục duy trì hoạt động kinh doanh tại các cửa hàng bán lẻ của doanh nghiệp.", + "infoSlide": "Nhượng quyền thương hiệu là một chiến lược chủ yếu được sử dụng bởi các công ty dịch vụ, qua đó doanh nghiệp bán thương hiệu cho nhiều chủ sở hữu khác nhau để lập nên nhiều chi nhánh. Các chi nhánh này hoạt động độc lập với chất lượng và quy trình khác nhau nhưng vẫn mang thương hiệu ban đầu của doanh nghiệp. VD: Cộng Cà Phê, Sữa chua trân châu Hạ Long, trà chanh Bụi phố, lẩu Phan,..", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng ngân hàng nhà nước nên đặt ra trần nợ dựa trên khả năng quản lý dòng tiền thay vì dựa trên mức độ cho vay tối đa của các ngân hàng quốc tế (Ví dụ: World Bank, ADB, ...)", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ ưu tiên tiêm vaccine Covid cho người trẻ thay vì người già ở các nước đang phát triển.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi nghĩ rằng COVAX nên ưu tiên cung cấp vaccine cho các nước thành viên có tỉ lệ nhiễm Covid cao, thay vì ưu tiên cung cấp vaccine dựa trên tỉ lệ dân số (ví dụ: nước thành viên sẽ được cung cấp số vaccine tương đương 10% dân số).", + "infoSlide": "Tổ chức Y tế Thế giới (WHO) xây dựng chương trình COVAX là một quỹ toàn cầu để thu mua và phân phối vaccine Covid-19 cho các nước thành viên. Hiện tại COVAX có 92 thành viên đủ yêu cầu nhận vaccine đều là các nước đang phát triển, ví dụ như Ai Cập, Syria, Ấn Độ, Việt Nam.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Trong thế giới hậu Covid-19, chúng tôi tin rằng các quốc gia đang phát triển nên ưu tiên đảm bảo sự tăng trưởng của thị trường nội địa thay vì ngoại thương.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ yêu cầu tất cả các sản phẩm được bán phải hiển thị rõ ràng giá của chúng bằng tiền tệ DC.", + "infoSlide": "Tiền tệ DC, hay Tiền tệ trẻ em tử vong (Dead children currency). Mục đích: Cứu sống mạng của những đứa trẻ thông qua những phần thưởng từ thiện khoảng 1000$. Tiền tệ DC là một giá của sản phẩm, ngang giá với số trẻ em có thể được cứu bằng việc sử dụng khoản giá tiền đó. Ví dụ một chiếc xe mới hoàn toàn có thể cứu được 28 đứa trẻ, một bữa ăn ở một nhà hàng có thể cứu được 2 trẻ em khỏi chết đói và một ngôi nhà sang cho vật nuôi giá 320,000$ có thể cứu 320 đứa trẻ khỏi việc tử vong.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ yêu cầu các học sinh, sinh viên phải thực hiện hoạt động phục vụ cộng đồng.", + "infoSlide": "Hoạt động phục vụ cộng đồng là công việc không được trả công do một người hoặc một nhóm người thực hiện vì lợi ích và cải thiện cộng đồng mà không có bất kỳ hình thức trả công nào. Việc yêu cầu ở đây đề cập đến học sinh, sinh viên cần đạt được số điểm hoặc số giờ nhất định để được tốt nghiệp. Hoạt động phục vụ cộng đồng có thể khác với hoạt động tình nguyện, vì nó không phải lúc nào cũng được thực hiện trên cơ sở tình nguyện và có thể là bắt buộc, tùy theo tình huống.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi phản đối việc marketing/branding các chương trình thiện nguyện do các cá nhân trong xã hội thực hiện.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng lực lượng giữ gìn hòa bình của Liên Hợp Quốc nên có khả năng can thiệp quân sự vào các xung đột, bất chấp sự cho phép của nước sở tại.", + "infoSlide": "Lực lượng gìn giữ hòa bình của Liên Hợp Quốc (biệt danh: mũ nồi xanh) hoạt động với ba nguyên tắc chính: 1, chỉ đưa quân vào khi có sự cho phép của nước sở tại. 2, Chỉ có chức năng bảo vệ các nhóm không vũ trang và không can thiệp vào xung đột. 3, Được sự thông qua của Hội đồng Bảo an Liên Hợp Quốc.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ cho các nước đang phát triển hai phiếu bầu (thay vì một) trong các buổi họp về thương mại của Liên Hợp Quốc.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi lấy làm tiếc về việc Putin trở thành tổng thống trọn đời của Nga.", + "infoSlide": "Vào ngày 1/7/2020, Nga sửa đổi Hiến pháp, đặc cách xóa bỏ giới hạn nhiệm kỳ cho chức vụ Tổng thống của ông Putin.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ đánh thuế các hoạt động giải trí đại chúng để tài trợ các hoạt động giải trí hàn lâm (nhạc thính phòng, nhạc Trịnh, v.v).", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi ưu tiên 1 thế giới nơi tất cả mọi tác phẩm nghệ thuật đều ẩn danh.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Trong xã hội hậu xung đột, chúng tôi ưu tiên sự sáng tạo của nghệ thuật truyền cảm hứng và đồng nhất thông điệp hơn là các hình thức nghệ thuật miêu tả sự đau khổ trong quá khứ và hiện tại.", + "infoSlide": "Xã hội hậu xung đột là một hình thái xã hội đã đạt được trạng thái hòa bình sau cuộc nội chiến kéo dài, nơi mà các tổ chức chính phủ, phi chính phủ và các tổ chức quốc tế nỗ lực để ổn định chính trị, kinh tế, quân sự và cấu trúc xã hội thông qua các dự án tái thiết.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi phản đối quan niệm “Thừa nước đục thả câu” của công nhân viên tại Trung Quốc.", + "infoSlide": "Các nhân viên thế hệ Z (1990-2003) có các hành vi chống đối môi trường làm việc của Trung Quốc bằng cách nghỉ ngơi, lười biếng, không chịu làm thêm giờ và trốn trong nhà vệ sinh. Họ tin rằng điều họ đang làm là chống đối một nền văn hóa làm việc hiện đại mà họ cho là đòi hỏi quá cao mà không có đủ lợi ích.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi phản đối lối sống DINK.", + "infoSlide": "DINK là viết tắt của “Dual/Double Income No Kids”, nghĩa là lối sống thu nhập nhân đôi, không có con cái. Lối sống này được cho là bắt nguồn từ những năm 1980 ở những nước đã phát triển, khi mà các cặp đôi có thu nhập ổn định, mức lương khá, suy nghĩ tiến bộ, có học thức quyết định lựa chọn kết hôn để chia sẻ các vấn đề về tài chính và không sinh con.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEU Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi ủng hộ lối sống \"làm việc để hưởng thụ\" hơn là \"làm việc để tích lũy\".", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cogic Debate Online (CODO)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách là cha mẹ thuộc cộng đồng thiểu số, sẽ dạy con cái thích nghi với sự phân biệt đối xử.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cogic Debate Online (CODO)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ loại bỏ phương thức bình chọn của khán giả để quyết định kết quả của các cuộc thi tài năng.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cogic Debate Online (CODO)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách Hoa Kỳ, sẽ tích cực chạy đua vào vũ trụ với Trung Quốc.", + "infoSlide": "Vào năm 2019, Trung Quốc tuyên bố kế hoạch xây dựng một trạm nghiên cứu trên mặt trăng cho đến trước 2030. Cùng với mục tiêu thám hiểm Mặt Trăng, trước khi hết nhiệm kỳ, Tổng thống Trump yêu cầu Quốc hội tiếp tục gia tăng ngân sách cho NASA.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cogic Debate Online (CODO)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tỉn rằng phong trào bảo vệ môi trường nên xây dựng hình ảnh “Môi trường là để phục vụ con người”.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cogic Debate Online (CODO)", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách phong trào nữ quyền, phản đối việc những người nữ giới có địa vị xã hội đứng lên đại diện phong trào.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cogic Debate Online (CODO)", + "year": "2021", + "format": "AP", + "content": "Giả sử công nghệ cho phép, chúng tôi sẽ cho phép người dân mua bán tuổi thọ của mình.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "THO Pokemon battling.", + "infoSlide": "Pokémon involves the catching and training of fictional creatures called \"Pokémon\" and using them to battle other Trainers.", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "THP a world where individuals are born with random superpowers to a world where no one has superpowers.", + "infoSlide": "In the universe of My Hero Academia, every person is born with a single, random superpower. The superpowers generally cannot be changed, transferred, nor removed, and vary in strength and utility from person to person.", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "TH, as the chosen kids, would choose to stay in the memory and be with their Digimons forever.", + "infoSlide": "In the universe of Digimon, “The Chosen Kids'' refers to a group of kids who were chosen by the Digimon world to battle against the evil with their Digimons. The reason for this divine plan is that they represent a crucial characteristic valuable to this world (i.e., braveness, hope, brightness, wisdom, etc.). Along with the battles, they have developed an intimate relationship with their Digimons. However, in the “The Last Evolution Kizuna”, because of the harshness of the real world and choices they had to make to become a grown-up, they were no longer innocent enough to represent those characteristics. Therefore, they lost their Digimons involuntarily. In this anime, Menoa, as one of the chosen kids who is reluctant to separate with her Digimon, created an imaginary world and lethargic other kids in their memory to enjoy those good times with their Digimons.", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "TH, as Itachi, would not have massacred his clan.", + "infoSlide": "Itachi is part of the Uchiha clan, who are feared by the broader Konoha village for their powers and are also treated disrespectfully as a minority, living on the outskirts of the village. Itachi works as an assassin for the village and finds out his clan is planning to revolt in a coup d'etat. In addition to potentially weakening the village, which might make it vulnerable to encroachments from other antagonistic villages, it would also likely be a very deadly coup. Itachi's boss instructs him to kill his clan, including his parents and love interest, with the guarantee that Itachi's little brother Sasuke could be spared by Itachi and would be taken in by the village afterwards. In the anime, Itachi decides to genocide his clan.", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "TH, as Saber, would choose not to pull out the sword Excalibur after winning the Holy Grail War.", + "infoSlide": "In the universe of Fate series, the reason why heroes are summoned to the current world as servants in the Holy Grail War is that they have an unfinished wish back in their life and the Holy Grail can satisfy their wishes. Altria Pendragon, aka Saber, joined the war because she wanted to deny the existence of her kingdom. She thought she was not a suitable king and the kingdom under her regime was a failure. She wanted to destroy the fact that she pulled out the sword Excalibur in the stone, which had decided her destiny to be the king. However, in the 5th Holy Grail War, she was summoned by Shiro, who also became her significant counterpart at the end and showed her how worthy she was as a King.", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "You are an academy city student with no foreknowledge of the Level Uppers long-term effects. THW use the level-upper.", + "infoSlide": "In Railgun, there exist people called Espers, who have the ability to manipulate and change the world around them through scientific principles (i.e. they have superpowers). Every Esper is ranked and classified into a Level from 0 (no powers at all) to 6 (power never before reached by anybody). Abilities scale exponentially rather than linearly as levels increase. Improving your level is a long and difficult process, and some people never even get past level 0. Espers live and study in a place called Academy City, a place created specifically for the education of Espers. Many students move to academy city from far flung corners of Japan to become Espers. There exists a black market item called the Level Upper. To use it - you simply listen to a song on your phone. It will improve your abilities drastically and increase your level.", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "THBT Natsu would have been happier with Lisanna (after her return) instead of Lucy.", + "infoSlide": "Fairy Tale: Natsu is one of the main protagonists of Fairy Tale. He was orphaned as a child as his dragon father mysteriously disappeared. After being orphaned, he joins the wizard guild Fairy Tale and grows up there. Fairy Tale has taken in other children, such as Lisanna, as well, and they grow up together as each other's family. Natsu and Lisanna are shown to be extraordinarily close as children, and it is heavily implied there was mutual romantic interest. Lisanna however disappears one day in a magical accident as a pre-teen and is presumed dead. Years later, Natsu meets Lucy on an adventure and she joins the guild. Lucy becomes one of the main characters, goes on many adventures with Natsu, and they become extraordinarily close. On one adventure, the main cast discovers Lisanna in an alternative universe and brings her back to the guild. Lisanna as both a pre-teen and adult is shown to have moderate magical strength. Although he does reconnect with Lisanna as friends, in the show Natsu is shown to continue to prioritize his friendship with Lucy. They continue to travel together, grow stronger together, and eventually become a canon couple.", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "THBT Hinata Shoyo should date Kageyama Tobio.", + "infoSlide": "In the universe of Haikyuu, Hinata Shoyo and Tobio Kageyama are teammates in the volleyball team of Karasuno High School. They are a perfect match in terms of their volleyball skills, particularly when it comes to their freak fast attack. Probably no one would ever have the same chemistry when pairing up with them. However, in terms of personality, they are totally different. Hinata is more of a very noisy, outgoing, bringing joy to people around him, and doing everything without thinking. On the other hand, Kageyama is more quiet, less open to people, and does not know how to show his care to people he cares about.", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "THBT Retsuko should have stayed with Tadano.", + "infoSlide": "Retsuko is a red panda office worker who is dating Tadano: a multi-millionaire donkey tech entrepreneur. Retsuko believes that the end goal of any relationship should be marriage. Tadano tells her that while he wants to be with her forever, he does not believe in marriage and sees it as an unquestioned social norm he finds pointless. Upon learning this, Retsuko breaks up with him.", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "THW not use the NerveGear.", + "infoSlide": "In the universe of Sword Art Online, technology has progressed to the point where people can participate in virtual reality (VR) worlds by putting a helmet-like contraption called the \"NerveGear\" on their heads. The NerveGear functions by receiving brain waves directly from its users and sending corresponding inputs, which allow users to feel experiences (via the five senses, for instance) in VR which are indistinguishable from those of real life. Users can visceral experience getting better at a skill, as well as feel physical pain during battles.", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "THW ban Indian Poker.", + "infoSlide": "There exists technology to record and replay dreams - called Indian Poker. Some people are extremely good at capturing dreams and can create any scenario a dreamer might want. Using Indian Poker is extremely easy - you buy a trading card off a street vendor and place it on your forehead before you sleep. The dreams are extremely realistic, incorporating all senses. The dreams available through Indian Poker are extremely varied - from lewd fantasies to dreams of flight to instructional dreams that can improve real life abilities and skills while you sleep.", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "THS the Sibyl system", + "infoSlide": "In the universe of PSYCHO-PASS, criminal activity in society is monitored by a central system called the \"Sibyl System\". The Sibyl system holistically assesses the various external characteristics of a person (age, gender, race, body movements, etc..) and outputs a coefficient of how much they are likely to commit a crime within the next minute. If the coefficient crosses a certain threshold (meaning it is highly likely that the person will commit a crime) and if that crime is particularly awful (such as violent sexual assault or murder), police officers are allowed to preemptively kill the target person.", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "TH, as Togashi, would choose to outsource the art of HxH and instead focus on completing the story.", + "infoSlide": "Yoshihiro Togashi is one of Japan’s most famous mangaka, best known for both writing and illustrating the Yu Yu Hakusho and Hunter x Hunter series, which have sold over 100 million copies in Japan to date. Since 2006, Togashi has become infamous for taking numerous lengthy hiatuses while creating HxH. This was due to several factors, such as illness and lower back pain, but it is also speculated that his slow output is because he is a perfectionist that wants to do everything himself. Recently, Togashi has broken his record for length of hiatus (almost 2 years!) for HxH.", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "TH, as a fledgling anime studio, would choose to produce cheap and easy to produce romcoms rather than focusing on more niche arthouse anime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "THR the rise of the isekai genre.", + "infoSlide": "Isekai (異世界 meaning \"different world\") is a genre of LN/manga/anime/video games that revolve around a person from Earth who is transported to and has to survive in another world. Usually some bullshit plot device involving Truck-Kun. You all know the drill. The previous decade was indeed the decade of the isekais (\"In Another World with My… Debate Partner?\")", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "THO the redemption arc of Endeavor.", + "infoSlide": "Endeavor is ranked as the second most powerful hero in the My Hero Academia universe. He is driven by a desire to surpass the #1 hero, All Might, who is much stronger than him. This all-encompassing desire leads him to be a rude hero to fans, as well as a terrible father, being both largely absent and prioritizing raising strong hero children over love or care when present. This causes severe emotional and psychological abuse to both his wife and children, which damages his children and leads his wife to have a psychotic break. Over the course of the series, Endeavor is shown to come to regret his decisions and the show frames this as a redemption arc. He seeks atonement from his children, who are unwilling to provide it. He vows to become a father they might be proud of one day. We are provided flashbacks from the perspectives of other heros that attempt to humanize Endeavor, showing him to for example work harder than anyone else at unseen parts of hero work such as disaster cleanup. His wife reveals that Endeavor visits her often (from afar) and sends her flowers in the psych ward. In the last episode of the most recent season, Endeavor very nearly dies fighting a dangerous villain, and is shown to be concerned with being a morally good hero, father role model, and fan role model in order to fill All Might's role now that he has retired in the moments before risking his life and right after. The show provides us clips of his family seeming to start to change their minds on their perspective of him, and fans who formerly felt cast aside by Endeavor having rekindled their love for him. Endeavor now replaces All Might in a key moment of the show's opening sequence in the currently premiering season.", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "THR the Tachikoma’s development of individuality and sentience.", + "infoSlide": "In the universe of \"Ghost in the Shell Stand Alone Complex\", the Tachikomas are a series of AI endowed combat support robots created for Section 9. At the start of the series they share a collective consciousness and always straightforwardly follow their programming and orders. A section 9 member, Batou, bonds with one of the Tachikomas and gives it natural oil. As a result, this Tachikoma develops a personality and eventually sentience which spreads to the other Tachikomas. All the Tachikomas develop sentience. Once section 9 learns of this, they are sent for decommission and dissection. Natural oil is banned. Only 3 Tachikomas remain, working in civilian jobs such as construction and elderly care.", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Anime Open", + "year": "2021", + "format": "AP", + "content": "THW burn the journal for fuel.", + "infoSlide": "In the universe of Girls' Last Tour, you and your companion are traveling across a post-apocalyptic world and you have been told by an omniscient alien lifeform that you are the last two people alive. One of your life’s big projects has been keeping a journal of your travels and of your life with your companion. You are running out of fuel and food. There is no way to replenish your fuel or get more food.", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách bố mẹ tại các quốc gia châu Á, sẽ phản đối bộ phim Sex Education.", + "infoSlide": "Sex Education là bộ phim về giáo dục giới tính, chủ yếu dựa trên nền tảng quan niệm tình dục phóng khoáng của phương Tây.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi phản đối việc nhà trường khuyến khích học sinh tìm ra tài năng thiên bẩm.", + "infoSlide": "Mew là cô bé học tại một trường top đầu thành phố, nơi hội tụ các thiên tài. Nhà trường khuyến khích học sinh tìm ra tài năng của bản thân, và những học sinh đạt giải cao được nhà trường đối xử đặc biệt. Dưới áp lực của một ngôi trường chạy theo thành tích, Mew đã quyết định sao chép tác phẩm hội họa của người khác để biến mình thành \"thiên tài\".", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách người ở cấp quản lý các trường THPT, sẽ chủ động lập nhóm F4 tại trường của mình.", + "infoSlide": "Shinhwa - một trong những tập đoàn lớn mạnh nhất của Hàn Quốc được điều hành bởi nữ chủ tịch Kang Hee Soo, mẹ của nam chính. Trong F4 là một nhóm các chàng trai hào hoa và quyền lực nhất trường, tượng trưng cho sự bất bình đẳng xã hội, đây là 4 người con của 4 gia đình giàu nhất trường TRung học Shinhwa, có khả năng và cũng là nhóm chuyên bắt nạt và ức hiếp các học sinh yếu hơn.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi hối tiếc việc các nhà khoa học không kiểm soát được Mewtwo.", + "infoSlide": "Các nhà khoa học, được thuê bởi lãnh đạo nhóm Hỏa Tiễn, đã tạo ra một pokemon là Mewtwo có sức mạnh ngang ngửa với pokemon mạnh nhất - Mew. Sức mạnh này cho phép Mewtwo đánh bại hầu hết tất cả pokemon và phá hủy thế giới. Sau khi biết sự thật rằng mình sẽ bị lợi dụng cho mục đích con người, Mewtwo đã giải phóng sức mạnh và giết toàn bộ nhà khoa học. Sau đó rời đi với âm mưu trả thù loài người.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách là Iruma, sẽ không quay lại thế giới loài người.", + "infoSlide": "Iruma là cậu bé 14 tuổi sống trong một gia đình nghèo, không được đi học, phải làm việc cực khổ. Cậu bị bố mẹ mình ký giấy bán cho một ác ma. Cứ ngỡ cuộc đời cậu chấm dứt, nhưng cuộc sống của cậu ở Ma giới lại tốt đẹp hơn với đầy đủ tiện nghi, được đi học đầy đủ, có những người bạn tốt. Cậu chỉ có một nỗi sợ duy nhất là các ác ma khác phát hiện ra cậu là con người và ăn thịt cậu.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ thực hiện phiên bản live-action của bộ phim với toàn bộ nhân vật trong gia đình là người da màu.", + "infoSlide": "Gia đình siêu nhân kể về cuộc phiêu lưu của gia đình siêu nhân Incredible với hai vợ chồng siêu nhân và những đứa con cũng có siêu năng lực. Bên cạnh chủ đề siêu nhân, bộ phim cũng khai thác khía cạnh và đặc điểm của một gia đình người da trắng điển hình trong xã hội Mỹ. Live-action là phiên bản phim do người thật đóng dựa trên sách hoặc hoạt hình, thường các phiên bản này sẽ có sự thay đổi so với nguyên tác để tăng tính hấp dẫn.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi phản đối sự phát triển của quan niệm “Tình yêu sẽ chiến thắng khoảng cách”.", + "infoSlide": "Phim “Hạ Cánh Nơi Anh” kể câu chuyện tình yêu giữa một nữ doanh nhân thành đạt Hàn Quốc và một quân nhân Triều Tiên. Sau nhiều khó khăn, cuối cùng người quân nhân đã theo đuổi đam mê của mình là nghệ sĩ piano. Từ đó, mỗi năm, họ lại gặp nhau một lần trong chuyến lưu diễn của anh quân nhân đến Thụy Sỹ.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi ủng hộ cách khắc họa độ tuổi vị thành niên trong bộ phim.", + "infoSlide": "Độ tuổi vị thành niên là độ tuổi có nhiều sự thay đổi và nhiều bồng bột, trong phim “At the end of the f**king world”, hai nhân vật chính ở độ tuổi vị thành niên được khắc họa với cá từ ngữ như “tâm thần”, “quái dị”, ... với các hành động như trốn nhà, cướp xe của bố, quan hệ tình dục, giết người, ...", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách phong trào nữ quyền, phản đối việc khai thác các tính cách xấu của các nhân vật nữ trong phim Little Women.", + "infoSlide": " Little Women xoay quanh câu chuyện của 4 chị em gái trong gia đình. Mỗi người có một ước mơ riêng, hoài bão riêng. Tác giả nguyên tác lẫn nhà sản xuất đã tôn trọng tất cả các ước mong của các nhân vật nữ trong phim. Tuy nhiên, một số tính cách được xã hội xem là tính cách xấu đặc trưng của phụ nữ được khai thác rất rõ trong phim như tính đố kỵ, ham chưng diện, ...", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi hối tiếc về việc những người dùng mạng xã hội tham gia vào việc truy đuổi tên sát nhân.", + "infoSlide": "Don’t F**k With Cats là bộ phim tài liệu cuộc săn lùng kẻ sát nhân. Đầu tiên, tên này đã giết mèo và đăng tải clip, cư dân mạng lập tức lập các hội nhóm anti và truy lùng. Vô tình, tên sát nhân này là một kẻ vô cùng thích được quan tâm và muốn có được sự nổi tiếng. VIệc lập các group truy lùng khiến hắn nghĩ mình được quan tâm nên đã tiếp tục giết người để gây chú ý. Tuy nhiên, việc lập các group này cũng đã hỗ trợ rất nhiều trong việc giúp theo dõi các hành động của tên sát nhân và báo cáo với cảnh sát.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Giả sử công nghệ cho phép, chúng tôi, với tư cách các công ty công nghệ, sẽ xóa ký ức của nhân viên về khoản thời gian làm việc trước khi họ nghỉ việc.", + "infoSlide": "Trong phim tài liệu The Social Dilemma, những chuyên gia đã nghỉ việc từ Facebook, Google, Twitter, Instagram, Pinterest,.. đưa ra cảnh báo cho người xem về chính những hệ thống mà họ xây dựng.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách các công ty giải trí Hàn Quốc, sẽ công bố thời gian biểu hoạt động của thực tập sinh.", + "infoSlide": "Nội dung phim “Black Pink: Light up the sky” xoay quanh 4 năm hoạt ododjng của các thành viên trong nhóm kể từ khi nhóm ra mắt từ năm 2016. Một vài ý kiến cho rằng phim chưa kể đúng sự thật về việc làm thực tập sinh cũng như chưa thực sự cho thấy cái nhìn đa chiều về Kpop. “YG Entertainment có hàng chục cô gái dành 14 giờ đào tạo mỗi ngày với mục tiêu trở thành thành viên của nhóm nhạc nữ. Những buổi học đó rất tàn bạo, như thể họ đang chạy đua tại thế vận hội Olympic”, một báo cho biết.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi phản đối các bộ phim có chủ đề “Dark Technological Future”.", + "infoSlide": " “Dark Technological Future” là đề tài chủ yếu được khai thác và lột tả trong season 3 của Black Mirror. Black Mirror season 3 mô phỏng cuộc sống con người trong tương lai, với các trang thiết bị phục vụ tối ưu nhưng con người sẽ đối mặt với nhiều vấn đề. Các tập phim xoay quanh chủ đề những mặt tối của công nghệ cùng với ảnh hưởng xấu của chúng lên hành vi con người.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ cấm bố mẹ sở hữu siêu năng lực dùng siêu năng lực đó trong việc chăm sóc và nuôi dạy con cái.", + "infoSlide": "Trong The Umbrella Academy, Allison là nhân vật có khả năng thôi miên khi cô nói “Tôi đoán là…”. Ví dụ, khi cô muốn đứa con đi ngủ cô nói “Mẹ đoán là con đã buồn ngủ”. Trong phim, Allison đã dùng năng lực để thôi miên con gái của mình trong quá trình chăm sóc và nuôi dạy con.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách những người đứng đầu cuộc tuyển chọn, ngoài việc chọn 3% ưu tú nhất từ Inland để được đến Offshore thì cũng sẽ chọn 3% kém ưu tú nhất từ Offshore để gửi vào Inland.", + "infoSlide": "Phim 3% nói về một tương lai thế giới bị chia cắt làm hai: Offshore và Inland. Một bên sống trong sung sướng, văn minh, tiến bộ và một bên sống trong thiếu thốn, khó khăn và lo sợ. Hằng năm, những cư dân đủ 20 tuổi sẽ được trao một cơ hội tham gia vào Quá TRình Chọn Lọc, khi tham gia, họ sẽ phải trải qua nhiều bài kiểm tra khác nhau, để xem họ có đủ khả năng lọt vào 3% trên tổng số người được đến với Offshore (Bên sống tốt đẹp hơn).", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách chính phủ VIệt Nam, sẽ cấm chiếu bộ phim Hai Phượng.", + "infoSlide": "Hai Phượng là một nhân vật nữ trên hành trình tìm kiếm con của mình, cô thực hiện việc này gần như là một mình, không cần sự trợ giúp của cơ quan chức năng hoặc thậm chí có hành vi không hợp tác với cảnh sát.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng phong trào LGBTQ+ nên ưu tiên phát triển quan niệm “Hôn nhân đồng giới vẫn đảm bảo vai trò của một người đối với gia đình và xã hội” thay vì quan niệm “Là chính mình mặc kệ các định kiến xung quanh”.", + "infoSlide": "Sau nhiều năm du học, Văn trở về cùng với người yêu đồng giới Ivan để thú nhân về mối quan hệ của họ. Ivan tiếp xúc với những điều gần như tươi mới của văn hóa miền quê Việt Nam - nơi có một gia đình nhiều thế hệ cùng chung sống, gắn bó; có người mẹ tần tảo hết mực chăm lo cho con; nơi coi việc lấy vợ, sinh con như một nghĩa vụ đối với đấng sinh thành.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách các công ty sản xuất phim, sẽ ưu tiên nguồn vốn cho các bộ phim có khai thác chủ đề văn khóa truyền thống.", + "infoSlide": "Tại Việt Nam, các bộ phim thị trường thường được đánh giá là phim đem lại lợi nhuận cao, dễ xem, dễ hiểu,... trong khi các bộ phim khai thác các đề tài văn hóa truyền thống được cho rằng là các bộ phim khó tiếp cận khán giả. Tuy nhiên, các bộ phim khai thác văn hóa truyền thống lại được nhà nước quan tâm và hỗ trợ.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách người Việt Nam, sẽ ủng hộ các nền tảng xem phim trong nước (Galaxy Play, Pops, FPT Play, ...) thay vì Netflix.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ bắt buộc Netflix đặt máy chủ tại Việt Nam.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Netflix International Debate", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách Netflix, sẽ xóa bỏ rào cản vùng trên nền tảng của mình.", + "infoSlide": "Netflix thực hiện chính sách cản trở vùng dành cho người dùng ở các khu vực khác nhau, Điều đó có nghĩa là sẽ có một số bộ phim không được phát ở một số quốc gia hoặc vùng lãnh thổ.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng phụ huynh từ các gia đình thuộc nhóm thiểu số nên dạy con cái của họ rằng làm người thành công quan trọng hơn làm người tốt.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng trường học nên giảng dạy lịch sử một cách khách quan thay vì chọn lọc.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ coi giáo dục là một loại dịch vụ và học sinh là khách hàng - họ trả tiền để được giảng dạy.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng việc phụ nữ nói dối về tình trạng mối quan hệ của họ và kế hoạch tương lai khi phỏng vấn xin việc là chính đáng.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi, với tư cách là phong trào nữ quyền, sẽ phản đối việc các nữ nghệ sĩ nhạc pop tình dục hóa bản thân trong các sản phẩm âm nhạc của họ (Cardi B - WAP, Nicki Minaj - Anaconda, ...).", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng các phong trào nữ quyền nên ủng hộ quan niệm cho rằng \"vẻ đẹp không quan trọng\" hơn là quan niệm cho rằng \"tất cả cả các cơ thể đều đẹp\".", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng các nhà hoạt động môi trường nên đặt trách nhiệm lên những hoạt động phá hoại môi trường của các công ty, tập đoàn lớn hơn là khuyến khích các hành động bảo vệ môi trường của cá nhân (hạn chế sử dụng nước, tái chế rác thải, v.v).", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi tin rằng các phong trào môi trường nên áp dụng thông điệp về chủ nghĩa lạc quan sinh thái hơn là chủ nghĩa bi quan.", + "infoSlide": "Chủ nghĩa lạc quan sinh thái tập trung gửi thông điệp phong trào môi trường xung quanh những câu chuyện thành công của nó và giảm thiểu việc sử dụng sự diệt vong và các con số chết chóc.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ yêu cầu các quốc gia gây ô nhiễm nặng nề cho môi trường phải mở cửa biên giới cho làn sóng tị nạn môi trường.", + "infoSlide": "Những người tị nạn môi trường là những người bị buộc phải rời khỏi vùng họ đang sinh sống do những thay đổi đột ngột hoặc lâu dài đối với môi trường tại địa phương của họ. Đây là những thay đổi gây hại đến hạnh phúc và sinh kế an toàn của họ, chúng bao gồm: hạn hán gia tăng, sa mạc hóa, nước biển dâng và phá vỡ các kiểu thời tiết theo mùa (như gió mùa). Những người tị nạn môi trường có thể chọn để bỏ trốn hoặc di cư sang quốc gia khác, hoặc họ cũng có thể di cư ở trong chính quốc gia mà mình đang sinh sống.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi ủng hộ sự áp dụng của Luật Người tốt.", + "infoSlide": "Luật Người tốt, hay Luật Người Samaria nhân hậu (Good Samaritan Law) là luật giảm thiểu trách nhiệm pháp lý của những ai giúp đỡ người bị thương hoặc bị bệnh, tuy không giúp tránh khỏi bị khởi tố, nhưng sẽ giúp giảm án một cách đáng kể.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi sẽ yêu cầu phụ huynh chịu trách nhiệm pháp lý cho hành vi của con cái mình.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Giả sử công nghệ cho phép, tôi sẽ yêu cầu tất cả các bản án phải được quyết định theo một thuật toán xem xét xác suất tái phạm của người bị kết án.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "", + "infoSlide": "Hỗ trợ phát triển chính thức, hay ODA, là một hình thức đầu tư nước ngoài, thường cho nhà nước vay. Đầu tư trực tiếp nước ngoài, hay FDI, là hình thức đầu tư dài hạn của cá nhân hay công ty nước này vào nước khác bằng cách thiết lập cơ sở sản xuất, kinh doanh.Cá nhân hay công ty nước ngoài đó sẽ nắm quyền quản lí cơ sở sản xuất kinh doanh này.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi lấy làm tiếc về sự phân chia cứu trợ tài chính COVID chỉ nhằm vào các tập đoàn (thay vì các công ty nhỏ).", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi ủng hộ các công ty độc quyền tại các quốc gia đang phát triển.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Giả sử công nghệ cho phép, chúng tôi sẽ xóa toàn bộ ký ức về các mối quan hệ cũ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi ủng hộ quan niệm xã hội nơi mà các cá nhân ưu tiên sự duy trì các mối quan hệ với số lượng ít thay vì mở rộng vòng tròn xã hội của mình.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Da Nang Debate Open", + "year": "2021", + "format": "AP", + "content": "Chúng tôi phản đối việc con người tìm kiếm \"nửa kia\" của đời mình.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2021", + "format": "WSDC", + "content": "THW decrease the weightage of a voter's ballot as they age.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2021", + "format": "WSDC", + "content": "TH opposes the prominence of the \"girl boss\" concept.", + "infoSlide": "\"Girl boss\" or \"#girlboss\" is a concept/phrase coined to signify a woman who is seen as being \"in control\", dominant, determined and rebellious in pursuing her ambitions. The phrase is often used in campaigns as a slogan to inspire women to embody success by abandoning compliance and avoiding traits that have traditionally been associated with femininity and subservience, while pursuing their career ambitions. Examples of proponents of this persona can range from CEOs/COOs like Sheryl Sandberg, to political figures, and instafamous online celebrities and entrepreneurs.", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2021", + "format": "WSDC", + "content": "THBT all hospitals should be run by the state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2021", + "format": "WSDC", + "content": "THW abolish eminent domain.", + "infoSlide": "minent domain refers to the power of the government to take private property and convert it into public use. In different contexts, it may be required that the government only exercise this power if they provide just compensation to the property owners.", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2021", + "format": "WSDC", + "content": "TH prefers a world where all tertiary education shifts online permanently.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2021", + "format": "WSDC", + "content": "THR the emphasis on the concept of \"justice in the afterlife\" within religious preaching.", + "infoSlide": "Within many religions, the concept of \"justice in the afterlife\" is emphasised, as a means to teach people that worldly systems of justice are not final and that guilty individuals will one day be judged by their Maker; in the ultimate and most important judgment.", + "division": "", + "language": "English", + "link": "", + "round": "Open Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2021", + "format": "WSDC", + "content": "THR the glorification of the act of \"not giving up\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Junior Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2021", + "format": "WSDC", + "content": "THBT comedians of minority attributes should not base their comedy on stereotypes and slurs about their own attributes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Junior Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2021", + "format": "WSDC", + "content": "TH, as the historian, would destroy Mein Kampf Vol II.", + "infoSlide": "This is a hypothetical/fictional scenario. You are a reputable historian who has discovered the existence of Mein Kampf Vol II in which Hitler journals his thoughts reflecting his regrets, sympathy and empathy about the events of WW2. You are the only person who has access to this journal.", + "division": "", + "language": "English", + "link": "", + "round": "Junior Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2021", + "format": "WSDC", + "content": "THBT the choice of economic liberalism as a dominant doctrine by major international financial institutions does more harm than good.", + "infoSlide": "Economic liberalism is a doctrine that assumes the best way to develop societies is to minimize government intervention into the economy and apply greater focus to international trade. International financial institutions such as the World Trade Organization (WTO), the International Monetary Fund (IMF) or the World Bank ften support measures in line with this doctrine. Examples of implementation include: minimizing the number of trade tariffs in the world by the WTO, or encouraging the reduction of public spending and privatization of state-owned enterprises by the IMF.", + "division": "", + "language": "English", + "link": "", + "round": "Open Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2021", + "format": "WSDC", + "content": "", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oldham Cup International League", + "year": "2021", + "format": "WSDC", + "content": "This house supports the “right to try”.", + "infoSlide": "The right to try refers to the legal granting to individuals with life-threatening conditions the opportunity to access (‘try’) experimental treatments - even one that have yet to pass regulatory approval.", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oldham Cup International League", + "year": "2021", + "format": "WSDC", + "content": "THBT minorities in US should reject the narrative of the American Dream.", + "infoSlide": "The narrative of American Dream is the belief that anyone, regardless of where they were born, what class they were born into, what one’s gender is, can attain their own version of success in American society, where upward mobility is possible for everyone. Meritocracy is a core tenet of the American Dream, emphasizing that success achieved through hard work, rather than by chance.", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oldham Cup International League", + "year": "2021", + "format": "WSDC", + "content": "THR the rise of comedy shows with journalistic content as a prominent news source (e.g. John Oliver, Stephen Colbert, Trevor Noah, Samantha Bee)", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oldham Cup International League", + "year": "2021", + "format": "WSDC", + "content": "THBT animal rights groups should prioritise their campaigns on farmed animal being treated well and kill without excessive pain and suffering, rather than discouraging the use of animal-based products.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oldham Cup International League", + "year": "2021", + "format": "WSDC", + "content": "THP a world with one dominant global power, rather than several competing global powers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oldham Cup International League", + "year": "2021", + "format": "WSDC", + "content": "This house opposes the increasing sympathetic portrayal of villains in movie and TV shows (e.g. Joker, Disney’s Maleficent, Light Yagami in Death Note, Marvel’s Thanos, Breaking Bad’s Walter White, etc.)", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "6", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oldham Cup International League", + "year": "2021", + "format": "WSDC", + "content": "THBT ‘armchair activism’ has done more harm than good for the feminist movenment.", + "infoSlide": "“Armchair activism” refers to individuals sharing and posting content about injustices and social issues happening across the world on social media, without necessarily taking direct action to solve the injustices.", + "division": "", + "language": "English", + "link": "", + "round": "Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oldham Cup International League", + "year": "2021", + "format": "WSDC", + "content": "THBT progressive media should focus on “success stories” of immigrants, rather than instances of their exclusion, suffering, or vulnerabilities.", + "infoSlide": "The progressive media are socially liberal and open to inclusion of migrants into society. Examples include: The Guardian, The Huffpost, etc.", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oldham Cup International League", + "year": "2021", + "format": "WSDC", + "content": "THBT the pursuit of normalisation of relations with Israel by Gulf states is in the interest of the Middle East.", + "infoSlide": "Gulf States refers to Bahrain, Kuwait, Oman, Qatar and Saudi Arabia and the United Arab Emirates. The second half of 2020 has seen an accelerated rate of normalisation of ties with Israel by Gulf states. The “Abraham Accords” were signed with the United Arab Emirates (UAE) in August, and Bahrain a month later normalising ties with Israel. Normalising relations includes but isn’t limited to resuming diplomatic ties, trade and investment agreements, technology and security agreements, etc. Oman and Saudi Arabia have established semi-official relations with Israel, with Saudi Arabia gauging the prospect of normalisation. Before August 2020, only two Arab countries had officially ties with Israel - Egypt in 1979 and Jordan in 1994.", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nanjing Debate Open", + "year": "2021", + "format": "WSDC", + "content": "THW heavily restrict the number of students that get education overseas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nanjing Debate Open", + "year": "2021", + "format": "WSDC", + "content": "THR the narrative the marginalized groups (e.g. people of color, LGBT+ individuals) should support left-wing parties and politicians.", + "infoSlide": "Within politics, left-wing is a position that supports social equality and egalitarianism. What a person means by left-wing depends on where the person lives; generally left-wing parties and politicians are in favour of reducing or eliminating the ills of society such as poverty, inequality, disctrimination, homelessness, etc… through social programs, universal utilities, and a robust welfare system. Prominent left-wing parties range from the Labour Party in the United Kingdom to the Democratic Party in the US, and include politicians ranging from Bernie Sanders and Alexandria Ocasio-Cortez in the US to Moon Jae-in in South Korea.", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nanjing Debate Open", + "year": "2021", + "format": "WSDC", + "content": "THS the decline in a culture of reconcilliation among family members.", + "infoSlide": "For the purpose of this debate, a “culture of reconciliation” refers to a general want or attitude for people to seek reconciliation, with family members after growing apart, experiencing serious falling outs, or going through incidents which may have caused the family to estrange themselves from one another.", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nanjing Debate Open", + "year": "2021", + "format": "WSDC", + "content": "THW make business that are making unprecedented profit from the pandemic (E.g. Zoom, Netflix, Amazon) donate a portion of their profits to be redistributed to businesses that have taken losses.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nanjing Debate Open", + "year": "2021", + "format": "WSDC", + "content": "THW strongly discourage people from “looking for their soulmates”.", + "infoSlide": "A soulmate is a person with whom one has a feeling of deep or natural affinity. This may involve love, romance, platonic relationships, comfort, intimacy, compatibility and trust.", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nanjing Debate Open", + "year": "2021", + "format": "WSDC", + "content": "THP a world where musical artists perform and publish under anonymous personas (eg. Daft Punk, Yorushika, Marshmello).", + "infoSlide": "Musicians performing under anonymous personas are musicians that choose not to publicly reveal their real identities. Sime, such as Daft Punk and Marshmello, choose to conceal their identity by way of physical objects that obscure identifiable traits, while others such as Yorushika are entirely anonymous to the public, publishing music under an animated persona and opting out of live, in-person performances.", + "division": "", + "language": "English", + "link": "", + "round": "Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nanjing Debate Open", + "year": "2021", + "format": "WSDC", + "content": "As the US, THR the Biden administration’s decision to launch an airstrike in Syria.", + "infoSlide": "The US recently carried out an airstrike in Syria, in the first military action undertaken by the Biden administration. It targeted the facilities used by a number of Iran-backed militia groups, including Hezbollah, who are allied with the current Syrian government. The strike was ordered after a Folopo civilian contractor with the American led coalition was killed in a rocket attack in early February. A US service member and five other US contractors were also injured when the rocket hit sites including a base used by a US-led coalition.", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nanjing Debate Open", + "year": "2021", + "format": "WSDC", + "content": "TH opposes vaccine passports.", + "infoSlide": "Several countries such as Denmark, China and Sweden are working on developing their own vaccine passports for international travel. The passport, available in both digital and paper formats, shows details of a traveller’s Covid-19 inoculation, as well as nucleic acid and antibody test results.", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nanjing Debate Open", + "year": "2021", + "format": "WSDC", + "content": "Assuming the existence of robots that cannot lie and only report facts objectively, THW use the robots to teach nation’s history at schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Tabate", + "year": "2021", + "format": "WSDC", + "content": "This House, as a member of a single-parent and only-child family, would sacrifice themselves for the sake of their family.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Tabate", + "year": "2021", + "format": "WSDC", + "content": "This House believes that children should not block their parents from their social media accounts.", + "infoSlide": "On most social media platforms (Facebook, Twitter, Instagram, etc, there usually exists a feature for a person to block another user. The blocked user will not be able to view the content or interact with that person on the platform.", + "division": "English", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Tabate", + "year": "2021", + "format": "WSDC", + "content": "This House believes that children should have a legal say in whether their parents/guardians can adopt a child.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Tabate", + "year": "2021", + "format": "WSDC", + "content": "This House supports Bird’s nest custody.", + "infoSlide": "Given the appropriate resource, Bird’s nest custody is a custody arrangement whereby the child lives in one house, and the parents would take turns living with the child in that house.", + "division": "English", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Tabate", + "year": "2021", + "format": "WSDC", + "content": "This House would consider any investment from parents on their children beyond the age of 18 a legal loan that requires repayment with interest.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Tabate", + "year": "2021", + "format": "WSDC", + "content": "This House opposes the belief that parents would have the final say in their children’s important decisions.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Tabate", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi, với tư cách là bố mẹ của những trẻ em ở nhóm thiểu số, sẽ lựa chọn giáo dục tại gia con.", + "infoSlide": "Giáo dục tại gia (homeschool) là hình thức dạy học cho con cái hay trẻ em tại nhà hoặc nhiều nơi khác ngoài trường học. Việc dạy học thường được tiến hành bởi phụ huynh, gia sư hoặc giáo viên trực tuyến, như là một giải pháp thay thế hợp pháp cho các trường công lập và tư thục.", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Tabate", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi tin rằng các bậc phụ huynh nên nuôi dạy con cái bằng phương pháp phạm vi tự do thay vì phương pháp trực thăng.", + "infoSlide": "Nuôi dạy con cái trong phạm vi tự do dựa trên tinh thần khuyến khích con cái hoạt động độc lập và có sự giám sát mức độ thấp từ bố mẹ. Ngược lại, phương pháp nuôi dạy trực thăng là khi bố mẹ luôn giám sát và bảo vệ con cái trong cuộc sống của chúng.", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Tabate", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi tin rằng Gen Z nên tích cực chỉ trích các chuẩn mực xã hội của thế hệ trước.", + "infoSlide": "Gen Z là thế hệ trẻ sinh ra trong thời đại công nghệ và hội nhập toàn cầu, từ những năm 2000. Các chuẩn mực xã hội có thể ở tất cả các lĩnh vực đời sống, ví dụ như các đặc tính giới truyền thống, định kiến về hôn nhân và tình dục, ...", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Tabate", + "year": "2021", + "format": "WSDC", + "content": "Trong một gia đình có mâu thuẫn kéo dài giữa cha mẹ và con cái, chúng tôi sẽ sử dụng công nghệ X.", + "infoSlide": "Giả sử tồn tại một công nghệ X có khả năng hoán đổi linh hồn của bố/mẹ cho con cái trong một khoảng thời gian 6 tháng. Khi hoán đổi, mỗi người đều phải thực hiện hoạt động thông thường của người mình nhập vai. một ví dụ viễn tưởng có thể kể đến như phim Freaky Friday, tác phẩm Hồn Trương Ba Da Hàng Thịt, ...", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Tabate", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi ưu tiên một thế giới nơi mọi người không mong muốn có được sự công nhận xã hội.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Tabate", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi tin rằng các gia đình thuộc tầng lớp trung lưu nên áp dụng mô hình tuổi vị thành niên kéo dài cho con cái, thay vì tự lập sớm.", + "infoSlide": "Tuổi vị thành niên kéo dài là một hiện tượng xã hội mà trẻ vị thành niên hoặc người lớn trong độ tuổi từ 18-25 trì hoãn các trách nhiệm người lớn và quá trình tiếp nhận những hành vi thường được coi là trưởng thành.", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FLSS Debate Tournament", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi sẽ đuổi học những học sinh có hành vi bắt nạt trên mạng.", + "infoSlide": "Bắt nạt trên mạng là một hình thức bắt nạt hoặc quấy rối qua phương tiện điện tử. Bắt nạt trên mạng là khi ai đó, thường là thanh thiếu niên, bắt nạt hoặc quấy rối người khác trên internet, đặc biệt là trên các trang truyền thông xã hội. Hành vi bắt nạt có thể bao gồm đăng tin đồn, đe dọa, nhận xét về tình dục, thông tin cá nhân của nạn nhân hoặc đưa ra những ngôn từ kích động thù động.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FLSS Debate Tournament", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi tin rằng các bằng chứng được thu thập bởi cảnh sát một cách bất hợp pháp không nên được sử dụng làm bằng chứng trong các phiên tòa hình sự nghiêm trọng.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FLSS Debate Tournament", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi tin rằng các nhóm hoạt động vì môi trường nên tập trung gây sức ép nắm bắt các tập đoàn lớn chịu trách cho tác hại của họ lên môi trường thay vì khuyến khích người tiêu dùng có ý thức hơn về bảo vệ môi trường.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FLSS Debate Tournament", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi, với tư cách là X, sẽ từ bỏ mối quan hệ hiện tại để chủ động theo đuổi một mối quan hệ với người mình muốn.", + "infoSlide": "X là một người đã tiếp tục duy trì một mối quan hệ tình cảm với người X cần trong một thời gian dài. X gần đây mới gặp được người X muốn, và may mắn thay, người đó cũng muốn X.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FLSS Debate Tournament", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi tin rằng ASEAN nên đàm phán các thỏa thuận đầu tư với các thực thể chính phủ Trung Quốc như một khối (với các quyết định được đưa ra khi các thành viên đều đồng thuận) để không một quốc gia nào tham gia vào các thỏa thuận đầu tư mà không có sự đồng ý của phần còn lại.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FLSS Debate Tournament", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi ủng hộ quan niệm rằng cuộc sống là một điều diệu kỳ hơn là bể khổ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi lấy làm tiếc việc những người trẻ như Greta Thunberg, Malala Yousfzai, ... trở thành biểu tượng của các phong trào xã hội.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi sẽ cho phép việc sử dụng những chứng cứ được thu thập một cách trái pháp luật (hacking, đặt máy nghe lén, ...) trong các phiên tòa hình sự.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi phản đối việc xây dựng những chính sách giải quyết vấn đề dân số tập trung vào vai trò của người phụ nữ. (Những chính sách trên hướng đến việc hỗ trợ tài chính cho phụ nữ ví dụ như thưởng tiền cho gia đình sinh đủ 2 con trước 35 tuổi, ...)", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2021", + "format": "WSDC", + "content": "Giả sử công nghệ cho phép, chúng tôi sẽ loại bỏ cảm xúc của người lính.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi lấy làm tiếc sự phát triển của \"Hình sự Giải trí\".", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi lấy làm tiếc chính sách công bố rộng rãi thông tin cá nhân của những người mắc Covid.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi sẽ chọn diễn viên cho các bộ phim lịch sử dựa vào khả năng diễn xuất thay vì độ tương đồng của đặc điểm nhận dạng. (Độ tương đồng của đặc điểm nhận dạng bao gồm màu da, vóc dáng, v.v.)", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2021", + "format": "WSDC", + "content": "THS vaccine passports.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2021", + "format": "WSDC", + "content": "THW ban out of court settlements for crimes related to sexual harassment of any kind.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2021", + "format": "WSDC", + "content": "This house would significantly tax all expenditures on private education and use the revenue to fund public education.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2021", + "format": "WSDC", + "content": "This house regrets the glorification of the individual pursuit of social mobility.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2021", + "format": "WSDC", + "content": "This house, as a young adult, would choose to maintain and strengthen relationships with friends rather than invest time into a romantic partner.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2021", + "format": "WSDC", + "content": "This house prefers a world where all academic records and achievements of individuals were private between the student and their academic institutions (including but not limited to degrees, transcripts, or any evidence of schools attended or merits awarded, etc.)", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2021", + "format": "WSDC", + "content": "This house regrets the rise of blockchain technology.", + "infoSlide": "Blockchain is a kind of record-keeping technology which stores data in blocks that it chains together chronologically each time new data is added, creating an ever-expanding link of information that is continuously verified by a vast network of server farms and individual \"miners\". This peer-to-peer verification keeps the information very secure, but also results in an extremely high electricity consumption to maintain the networks (currently estimated at over 130 Terawatt hours in a year, or 0.6% of global electricity consumption). A basic purpose of Blockchain is to be able to assign a unique identity to a tradeable piece of digital information, preventing attempts to alter or replicate it (because the peer-to-peer verification system mentioned above would detect such violations). A core use of Blockchain is cryptocurrencies like Bitcoin and Etherium, which are able to function as a decentralized currency without a central bank or government’s control. The blockchain is used to store a ledger of transactions on each coin, and the verification system keeps in place an artificial scarcity that prevents more from being \"printed out.\" Some other examples include the NFT (Non-Fungible Token) - a way of trading \"ownership\" of digital art by storing unique links to art pieces in blockchain form - as well as digital collectibles.", + "division": "English", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2021", + "format": "WSDC", + "content": "This house would significantly tax all expenditures on private education and use the revenue to fund public education.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "Junior Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2021", + "format": "WSDC", + "content": "This house believes that retribution is a legitimate justification for violence.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "Junior Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lychee Debate Open", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi sẽ đặt mức giá trần cho các nhu yếu phẩm (VD: gạo, thuốc men, v.v).", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lychee Debate Open", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi sẽ không ưu tiên phân phát vaccine COVID-19 cho những người vi phạm quy định về an toàn sức khỏe công cộng (phát tán tin tức sai trái, không đeo khẩu trang, ...)", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lychee Debate Open", + "year": "2021", + "format": "WSDC", + "content": "Trong các khu vực với trình độ học vấn thấp, chúng tôi tin rằng hướng đi chung của các tổ chức giáo dục từ thiện nên là tập trung nguồn lực vào việc tối đa hóa tiềm năng của học sinh xuất sắc thay vì giúp đỡ học sinh học kém nhất.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lychee Debate Open", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi tin rằng chính phủ nên cho phép những người lao động nhập cư mà không phải công dân chính thức được bầu cử ở cấp độ quốc gia và địa phương.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lychee Debate Open", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi lấy làm tiếc sự thương mại hóa của các phòng trào xã hội.", + "infoSlide": "Sự thương mại hóa: việc triển khai và áp dụng một hình ảnh hay khái niệm trong các sản phẩm/dịch vụ cho mục đích sinh lời (các công ty đưa ra sản phẩm/chiến dịch quảng cáo thể hiện sự ủng hộ cho cộng đồng LGBT+ hoặc có thông điệp #MeToo; #BLM, v.v).", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lychee Debate Open", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi phản đối các sản phẩm nghệ thuật và giải trí lấy các bệnh tâm lí làm nội dung trọng tâm.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lychee Debate Open", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi sẽ ngừng mọi nỗ lực liên lạc với các trí tuệ ngoài hành tinh.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canopus Debate Championship", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi lấy làm tiếc sự tồn tại của Ngày lễ Tình nhân (Valentine's Day).", + "infoSlide": "Ngày lễ Tình nhân (Valentine's Day) thường được tổ chức vào ngày 14/02, khi các cặp đôi tặng sô-cô-la và các món quà cho nhau như một cách thể hiện tình cảm.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canopus Debate Championship", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi ủng hộ sự tồn tại của lớp học thiên tài.", + "infoSlide": "Lớp học thiên tài là một lớp học đặc biệt dành cho các học sinh có thành tích học tập xuất sắc, quy trình đầu vào rất gắt gao, mọi học sinh đều có cơ hội dự tuyển mỗi năm. Các học sinh trong lớp học thiên tài sẽ nhận sự giáo dục (chất lượng giáo viên, cơ sở vật chất, ...) và được đãi ngộ đặc biệt hơn các học sinh còn lại.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canopus Debate Championship", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi sẽ áp dụng hệ thống bỏ phiếu D.", + "infoSlide": "Hệ thống bỏ phiếu D cho phép mỗi phụ huynh được ủy nhiệm bỏ phiếu thay mặt cho người con đang sống phụ thuộc vào thu nhập của họ. Đối với phụ huynh đang trong mối quan hệ vợ chồng, mỗi phụ huynh sẽ có thêm nửa phiếu bầu cho mỗi người con; đối với phụ huynh đơn thân, mỗi phụ huynh sẽ có thêm một phiếu bầu cho mỗi người con mà họ nuôi dưỡng. Khi người con đã đạt 18 tuổi, phụ huynh sẽ không bỏ phiếu thay mặt cho người con đó nữa.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canopus Debate Championship", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi lấy làm tiếc về sự phổ biến của các video Tiktok nói về các phong trào xã hội bởi người dùng mạng xã hội. (VD: lên tiếng về dreadlocks, phản đối việc bạn trai là người trả tiền trong các buổi hẹn,...)", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canopus Debate Championship", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi sẽ phá bỏ mọi rào cản đạo đức nhằm tiếp tục phát triển nghiên cứu khoa học.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canopus Debate Championship", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi tin rằng nghệ thuật là thành tựu lớn nhất của nhân loại.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canopus Debate Championship", + "year": "2021", + "format": "WSDC", + "content": "Chúng tôi ủng hộ một thế giới không có cạnh tranh, mâu thuẫn, trách nhiệm.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Debate Tournament", + "year": "2021", + "format": "BP", + "content": "Chúng tôi lấy làm tiếc việc các công ty công nghệ lớn (Facebook, Twitter, ...) cấm Trump khỏi nền tảng MXH của họ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Debate Tournament", + "year": "2021", + "format": "BP", + "content": "Chúng tôi sẽ ngừng miễn thuế thu nhập đối với tất cả cơ sở tôn giáo (bao gồm cả tiền lễ, tiền cùng, tiền dịch vụ cũng bái, ...)", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Debate Tournament", + "year": "2021", + "format": "BP", + "content": "Chúng tôi ủng hộ bỏ hệ thống điểm số và thay thế bằng hệ thống đánh giá tại trường học.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Debate Tournament", + "year": "2021", + "format": "BP", + "content": "Chúng tôi lấy làm tiếc về quan niệm: “Tình cảm gia đình là vô điều kiện”.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Debate Tournament", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng Mỹ nên cản trở Trung Quốc trở thành cường quốc khu vực Châu Á Thái Bình Dương bằng mọi giá (trừng phạt kinh tế, chiến tranh, ...)", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Debate Tournament", + "year": "2021", + "format": "BP", + "content": "Chúng tôi sẽ đăng tải thông tin các vụ án hình sự nghiêm trọng lên MXH để người dân bỏ phiếu quyết định Vô tội/Có tội.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Debate Tournament", + "year": "2021", + "format": "BP", + "content": "Giả sử có 1 cỗ máy có thể đo được sắp đẹp, chúng tôi sẽ tạo ra thuế sắc đẹp (càng đẹp càng trả thêm thuế).", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Debate Tournament", + "year": "2021", + "format": "BP", + "content": "Chúng tôi lấy làm tiếc về sự bùng nổ các hoạt động cộng đồng, hoạt động thiện nguyện của học sinh sinh viên.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietname BP Championship (VBC)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi tin rằng giáo dục phổ thông nên tập trung chuẩn bị cho học sinh những kỹ năng ngành nghề (quản trị kinh doanh, tin học, các ngành nghề thủ công, v.v) hơn là các môn học truyền thống (toán, văn, anh, ...)", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietname BP Championship (VBC)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi hối tiếc về cuộc điều tra luận tội của Tổng thống Donald Trump.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietname BP Championship (VBC)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi tin rằng các doanh nhân xã hội nên loại bỏ lợi nhuận làm tích lũy cá nhân.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietname BP Championship (VBC)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi tin rằng trẻ em đến từ các nhóm thiểu số nên được dạy về bối cảnh bị áp bức và học cách để thích nghi với điều đó.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietname BP Championship (VBC)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi sẽ đình chỉ tất cả các quy định liên quan đến luật pháp và chính sách bảo vệ môi trường trong thời kỳ suy thoái kinh tế kéo dài.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietname BP Championship (VBC)", + "year": "2020", + "format": "BP", + "content": "TH regrets the prioritization of STEM (Science, Technology, Engineering, Math) in Asian Education.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietname BP Championship (VBC)", + "year": "2020", + "format": "BP", + "content": "TH, as Donald Trump, would militarily invade Iran.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietname BP Championship (VBC)", + "year": "2020", + "format": "BP", + "content": "THR the rise of the gig economy.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietname BP Championship (VBC)", + "year": "2020", + "format": "BP", + "content": "THW ban any form of inheritance.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietname BP Championship (VBC)", + "year": "2020", + "format": "BP", + "content": "THBT court sentencing should take public sentiments into account.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietname BP Championship (VBC)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi phản đối cách ly xã hội như là phương pháp chủ yếu để chống COVID-19.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietname BP Championship (VBC)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi tin rằng mạng xã hội nên tính phí sử dụng thay vì sử dụng quảng cáo là nguồn thu chính.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietname BP Championship (VBC)", + "year": "2020", + "format": "BP", + "content": "Trong một thế giới mà công nghệ biến đổi gen đã được nghiên cứu thành công (có thể chữa bệnh hiểm nghèo hoặc thay đổi tích cực thể trạng con người), chúng tôi sẽ chỉ cho phép sử dụng công nghệ này trong đời sống khi đại bộ phận dân số có đủ điều kiện để chi trả.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietname BP Championship (VBC)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi sẽ tẩy chay các cá nhân nổi tiếng trong lĩnh vực thể thao, giải trí (cầu thủ, ca sĩ, diễn viên, ...) nếu phát hiện có lối sống phi đạo đức.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietname BP Championship (VBC)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi tin rằng Trump nên trừng phạt Trung Quốc vì che giấu dịch bệnh COVID-19.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Online Debating Championship", + "year": "2020", + "format": "BP", + "content": "THW require companies to pay the stay-at-home wages of the partners of employees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Online Debating Championship", + "year": "2020", + "format": "BP", + "content": "THBT democracies should hold new elections immediately after the end of COVID-19.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Online Debating Championship", + "year": "2020", + "format": "BP", + "content": "THW not allow businesses that are bailed out by the government to buy back their shares.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Online Debating Championship", + "year": "2020", + "format": "BP", + "content": "THBT the Catholic Church should direct their priest to grant absolution to criminals who make confession to them, conditional upon their surrendering themselves to the police.", + "infoSlide": "The act of granting absolution refers to the act of priests or other religious authorities “forgiving” on behalf of God, the sins of Catholics who make confessions to them. In Catholic tradition, confessions are strictly confidential between the priest and the confessor and are never disclosed to anyone, not even the police.", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Online Debating Championship", + "year": "2020", + "format": "BP", + "content": "THR the dominance of “Asian Values” in Asian democracies.", + "infoSlide": "The term Asian Values is a political ideology that arose in the 1990s, which defined elements of society, culture, and history common to the nations of Southeast Asia and East Asia. It aimed to use commonalities - for example, the principles of collectivism or communitarianism - to unify people for their economic and social good and to create a pain-Asian identity. This contrasted with perceived European ideals of the universal rights of man. The concept was advocated by Mahathir Mohamad (Prime Minister of Malaysia, 1981 - 2003, 2018 - 2020), Lee Kuan yew (Prime Minister of Singapore 1959 - 1990), Park Chung Hee (President of South Korea, 1962 - 1979) and Shinzo Abe (Prime Minister of Japan, 2012- present), as well as other Asian leaders.", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Online Debating Championship", + "year": "2020", + "format": "BP", + "content": "THW, as the leader, accept the offer.", + "infoSlide": "You were the leader of a long-standing opposition party in a deeply racist country that won the most number of seats amongst all parties on a platform of anti-corruption and racial equality. Your party did not have enough seats to form a government on your own, so you formed a government by building a coalition with smaller parties. After some time, members of your smaller coalition partner-parties were bribed by members of the previous racist government to create a new majority coalition, thus putting you out of power.", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Online Debating Championship", + "year": "2020", + "format": "BP", + "content": "THBT medical service workers should be paid salaries in the highest income decile (e.g. the top 10%).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beihang International Online Debating Championship", + "year": "2020", + "format": "BP", + "content": "TH celebrates the decline of globalisation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Japan BP", + "year": "2020", + "format": "BP", + "content": "This House Supports the rise of virtual influencers.", + "infoSlide": "By definition, virtual influencers are fictional computer-generated ‘people’ who have the realistic characteristics, features and personalities of humans. Behind each of them are creators and coders from robotics and AI companies who mostly remain faceless and are responsible for growing their Instagram platforms and generating new content such as posts, vlogs and even music for their social media. A popular example would be Lil Miquela, a \"forever 19-year old\" Brazilian-American model and music artist, who has amassed over 2.8 million followers on Instagram. Her list of countless brand collaborations include being the face of Samsung's #teamgalaxy campaign in 2019 and teaming up with supermodel Bella Hadid for a Calvin Klein advertisement. She has also been listed within The Times’ ‘Most Influential People on the Internet.'", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Japan BP", + "year": "2020", + "format": "BP", + "content": "This House Would mandate property developers to build low-cost housing proximate to their high-end construction projects.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Japan BP", + "year": "2020", + "format": "BP", + "content": "THP the characterisation of politics as a “career”, instead of “social / public service”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Japan BP", + "year": "2020", + "format": "BP", + "content": "This House Believes That minority religions in the West should strongly encourage their congregations to refrain from public display of their faith.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Japan BP", + "year": "2020", + "format": "BP", + "content": "In countries with deep ethnic and religious divides (e.g. Iraq, Libya, and Egypt), THP autocracies to decentralised democracies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Pre Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Japan BP", + "year": "2020", + "format": "BP", + "content": "Assuming a nuclear non-proliferation treaty is offered by Joe Biden, This House, as Iran, Would choose to accept the offer.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Japan BP", + "year": "2020", + "format": "BP", + "content": "THBT micro-finance organisations (including but not limited to NGOs, charities, and developmental banks) should offer micro-finance loans in developing nations exclusively to women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Japan BP", + "year": "2020", + "format": "BP", + "content": "This House Supports the Regional Comprehensive Economic Partnership.", + "infoSlide": "The Regional Comprehensive Economic Partnership is a trade pact signed by Australia, China, Japan, New Zealand, South Korea, and the ten members of the Association of South-East Asian Nations (ASEAN). The Regional Comprehensive Economic Partnership will create the world’s biggest trading bloc, and cover almost a third of the world’s GDP, to the exclusion of the United States of America.", + "division": "", + "language": "English", + "link": "", + "round": "Novice Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Japan BP", + "year": "2020", + "format": "BP", + "content": "THBT youth-based political parties in developing countries should include the fight for queer rights in its manifesto.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Melbourne Mini", + "year": "2020", + "format": "BP", + "content": "THR the decline in solidarity strikes.", + "infoSlide": "Solidarity strikes (also known as secondary action, a secondary boycott, or a sympathy strike) are industrial actions undertaken by trade unions in support of strikes initiated by workers in a separate corporation.", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Melbourne Mini", + "year": "2020", + "format": "BP", + "content": "THBT individuals should be encouraged to make significant sacrifices for their community.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Melbourne Mini", + "year": "2020", + "format": "BP", + "content": "This House, as Iran, would accept the ‘Iran Deal Plus’.", + "infoSlide": " In 2015 Iran signed the ‘Joint Comprehensive Plan of Action’, also known as the Iran Deal. In exchange for committing to denuclearisation and allowing UN inspection of their nuclear sites, the international community would unfreeze Iranian assets and remove economic sanctions. In 2018 President Donald Trump removed the United States from the deal. In 2020 Iran formally announced it would no longer comply with the deal. Joe Biden has indicated his willingness to resume the Iran Deal. Other parties to the deal like Germany have suggested they would require an ‘Iran Deal Plus’ to re-enter. An Iran Deal Plus would involve Iran making additional concessions, perhaps including the dismantling of its ballistic missile program or ceasing funding extremist groups throughout the Middle East.", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Melbourne Mini", + "year": "2020", + "format": "BP", + "content": "THS the democratisation of powerful civil service appointments.", + "infoSlide": "Democratisation refers to the introduction of a democratic system or democratic principles. Powerful civil service appointments include the heads of bureaucratic departments and agencies.", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Melbourne Mini", + "year": "2020", + "format": "BP", + "content": "Assuming feasibility, This House believes that the Holy Kaaba should be under the custody/guardianship of the OIC, instead of Saudi Arabia.", + "infoSlide": "The Kaaba is a cube shaped building at the center of Islam's most important mosque, (Masjid al Haram) in Mecca, Saudi Arabia. It is the most sacred site in Islam and is considered by Muslims to be the House of God. Muslims orient themselves toward this building during the five daily prayers, bury their dead facing its meridian, and visit it on pilgrimage. The Saudi government's oversight of the building complex marks one of its primary claims to authority and legitimacy in the Muslim world. The Saudi King bears the title of official custodian. The Organisation of Islamic Cooperation is an international organisation consisting of 57 member states, with a collective population of over 1.8 billion. The organisation states that it is \"the collective voice of the Muslim world\" and works to \"safeguard and protect the interests of the Muslim world in the spirit of promoting international peace and harmony\".", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Melbourne Mini", + "year": "2020", + "format": "BP", + "content": "THBT progressive activists in conservative societies should aggressively adopt conservative language/rhetoric in advocating for their agenda.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Melbourne Mini", + "year": "2020", + "format": "BP", + "content": "This House would prefer a world the average person experienced substantially less intense emotions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Melbourne Mini", + "year": "2020", + "format": "BP", + "content": "THS the creation of 'ASEAN bonds' to fund the post-COVID-19 regional economic recovery.", + "infoSlide": "ASEAN bonds' would be debt investments whereby the entire ASEAN bloc could collectively borrow money from foreign investors.", + "division": "", + "language": "English", + "link": "", + "round": "ESL Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Melbourne Mini", + "year": "2020", + "format": "BP", + "content": "THW mandate that social media users select middleware packages to curate the information they see on their social media accounts.", + "infoSlide": "Middleware is software that rides on top of an existing platform and can modify the presentation of underlying data. Middleware allows users to choose how information is curated and filtered for them. For social media platforms, users could hypothetically select middleware services that would block, prioritise and reconfigure different types of data, and social media platforms would use those determinations to curate what those users saw.", + "division": "", + "language": "English", + "link": "", + "round": "Open Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Melbourne Mini", + "year": "2020", + "format": "BP", + "content": "This House, as Moon Jae-In, would not have repatriated the North Korean defectors.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PKU Pro-Am", + "year": "2020", + "format": "BP", + "content": "TH, as a young Asian progressive living in the West, would opt for the 'Buddhist way of living' as opposed to a life based on capitalist values.", + "infoSlide": "A Buddhist way of living is a life that prioritizes spiritual satisfaction through ascetic practices. Asceticism is a lifestyle characterized by abstinence from sensual pleasures, often for the purpose of pursuing spiritual goals. Ascetics may withdraw from the world for their practices or continue to be part of their society, but typically adopt a frugal lifestyle, characterised by the renunciation of material possessions and physical pleasures, and sometimes adopt religious practices including meditating and reflecting.", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PKU Pro-Am", + "year": "2020", + "format": "BP", + "content": "THR the narrative that sacrifice is a necessary prerequisite for great happiness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PKU Pro-Am", + "year": "2020", + "format": "BP", + "content": "THBT ASEAN should reform into a monetary union.", + "infoSlide": "A monetary union is a group of countries that collectively decide to adopt similar monetary policies through a common central bank (e.g. European Central Bank). The union typically shares a common currency. An example of a monetary union is the European Union.", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PKU Pro-Am", + "year": "2020", + "format": "BP", + "content": "TH, as postcolonial states, should actively reject the use of their former colonizer's language and prioritize their native language.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PKU Pro-Am", + "year": "2020", + "format": "BP", + "content": "In democracies, THBT pro-welfare politicians should prioritize implementation of UBI over increasing welfare for specific groups.", + "infoSlide": "Universal Basic Income (UBI) is a governmental program for periodic payments delivered to all on an individual basis without means test for work requirement.", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PKU Pro-Am", + "year": "2020", + "format": "BP", + "content": "THBT it is in the interest of womens' rights groups to adopt violent female goddesses as prominent symbols in patriarchal societies.", + "infoSlide": "Violent goddesses are goddesses who represent liberation through force, violence, aggression and power. An example of a violent female goddess is Kali, often portrayed wearing a garland of skulls of the men she has killed around her neck and standing on her lover, the Hindu God Shiva, who lies calm and submissive beneath her.", + "division": "", + "language": "English", + "link": "", + "round": "Pre Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PKU Pro-Am", + "year": "2020", + "format": "BP", + "content": "With the benefit of hindsight, TH, as the United States, Would not have used the 'shock and awe' tactic in the Middle East intervention.", + "infoSlide": "Shock and awe (technically known as rapid dominance) is a tactic based on the use of overwhelming power and spectacular displays of force to paralyze the enemy's perception of the battlefield and destroy their will to fight. This tactic was used as a primary tactic by the USA in the Gulf War and the Iraq intervention.", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PKU Pro-Am", + "year": "2020", + "format": "BP", + "content": "THBT less economically developed states should prioritize the mitigation model over the suppression model in combating COVID-19.", + "infoSlide": "In public health, the mitigation model seeks to \"flattening the curve\" to make the pandemic less intense by, say, isolating cases and quarantine infected households, while the suppression model seeks to stop the pandemic in its track by adopting a broader range of measures, including shutting in everybody, other than those who cannot work from home, and closing schools and universities.", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2020", + "format": "WSDC", + "content": "This House supports Student-Designed Curricula in secondary schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2020", + "format": "WSDC", + "content": "THW ban all private financing of election campaigns.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2020", + "format": "WSDC", + "content": "THBT children do not owe a special moral obligation to their parents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2020", + "format": "WSDC", + "content": "THBT courts should not allow gag orders to be part of settlement offers in environmental damage lawsuits.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2020", + "format": "WSDC", + "content": "THW break up Disney.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2020", + "format": "WSDC", + "content": "THW ban all forms of space weaponization.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2020", + "format": "WSDC", + "content": "THBT creative industries (e.g. music, film, paintings, etc.) should oppose computational creativity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - WSDC", + "year": "2020", + "format": "WSDC", + "content": "This House celebrates the decline of Capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THR the increasing trend of producing reboots within franchises (e.g. Marvel Cinematic Universe, Star Wars, Harry Potter, X-men).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT Asian immigrants to Western countries should assimilate in the culture of their host country even at the expense of losing their original culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT artists should refrain from actively and openly interpreting their own art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT philanthropic figures focussed on COVID-19 should focus on prevention (e.g. distributing PPE) to possible cures/vaccines", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "In the aftermath of the COVID-19 Outbreak, THBT Western liberal democracies/governments should actively promote the narrative that individuals ought to sacrifice/make sacrifices for the collective community.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THS excess profit taxes on corporations that derived significant profits from a pandemic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THP a world where the legacies of radical revolutionaries are glorified over the legacies of peaceful revolutionaries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THR the use of nostalgia (e.g. reminiscing over past/historical leaders, periods, or events) in politics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT technocrats (highly educated and skilled experts) within authoritarian states should collectively refuse to work with/for the government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THP a world where sexual compatibility is prioritised over emotional compatibility, in relationships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT parents have a duty to push their children to succeed even if it comes at the expense of their happiness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THS parents actively confiding in their children about financial problems and personal insecurities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THW not give employers access to criminal records of potential employees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THW require both parties to use state lawyers, instead of private lawyers, in defamation trials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT all sentencing should be decided according to an algorithm that considers purely the probability of recidivism of the convict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT LGBTQIA+ activists in religiously conservative countries should seek to actively solicit support, funding, and endorsement from religious entities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "High School Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THR the dominant narrative that mainstream social movements should refrain from being antagonistic and aggressive, in pushing for changes/fighting against injustice.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "High School Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT movements should not use civil disobedience as a strategy to achieve their goals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "High School Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT post-conflict societies should construct national identities around a shared ethnicity, as opposed to a common culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "High School Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THO the narrative that refugees' entitlement to help should be conditional upon their potential utility to the economy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "High School Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "In post-conflict societies, THW actively suppress information and interpretation, that paints any past dictator in a sympathetic light.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "High School Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT US Senators who approved (in confidential briefings) the CIA's use of enhanced interrogation (waterboarding, sleep deprivation, exposure to low temperatures for extended periods etc.) should be tried for war crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT Iran should end its nuclear weapons program.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "TH, as Bernie Sanders, would have stayed in the race as opposed to dropping out.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "TH, as a prominent religious leader of a major organised religion, would promote any scripture/interpretation/doctrine that says that the determinant factor of entering heaven is good deeds and not the level of faith/piety.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THP a world where the belief and disbelief in the existence of a God or Gods is seen as an involuntary decision.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THR the usage of religious appeals as a rallying call for humanitarian causes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT developing nations should distribute, as a dividend to citizens, income derived from nature resource extraction.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT the 'Tax Mix' should be set by reserve banks.", + "infoSlide": "Tax Mix is a combination/mixture of various taxes, as opposed to the aggregate tax level.", + "division": "", + "language": "English", + "link": "", + "round": "Open Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT the World Bank should have the full responsibility for the share of loss due to corruption.", + "infoSlide": "When the World Bank lends loans to states, it must be repaid by the country and its population. Therefore, even though loans were stolen by corrupt leaders, citizens must pay it back. It is said that one-third is the normal rate of corruption of WB loans.", + "division": "", + "language": "English", + "link": "", + "round": "Open Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THR \"self-crit\" culture.", + "infoSlide": "“Self-crit culture” refers to a culture where individuals are encouraged to publicly and openly criticise themselves for their shortcomings.", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THR the narrative that ideal deliberation should exclude display or involvement of emotions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THO the use of scientific discoveries obtained through unethical means.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi lấy làm tiếc sự nhấn mạnh các hiện tượng học sinh nghèo đạt thành công trong giáo dục.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng hệ thống giáo dục nên thưởng học sinh dựa trên kết quả hơn là dựa trên nỗ lực.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi, với tư cách những người làm giáo dục Việt Nam, sẽ dạy sinh viên kỹ năng giao tiếp trên bàn nhậu.", + "infoSlide": "Kỹ năng giao tiếp trên bàn nhậu là những kĩ năng để làm việc, đàm phán và gây dựng mối quan hệ ở những nơi nằm ngoài môi trường làm việc (thường là bàn nhậu).", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ áp dụng mức thuế thu nhập thấp hơn đối với phụ nữ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi, với tư cách những nhà hoạt động nữ quyền, sẽ ủng hộ án tử hình cho các tội nhân quấy rối phụ nữ ở các quốc gia có tình trạng bất bình đẳng giới nặng nề.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi ủng hộ All Lives Matter.", + "infoSlide": "\"All Lives Matter\" là một khẩu hiệu được gắn với việc chỉ trích phong trào ủng hộ quyền của người da màu \"Black Lives Matter\" (BLM). Những người ủng hộ khẩu hiệu này cho rằng ủng hộ BLM đồng nghĩa với việc không tôn trọng những \"sinh mạng\" thuộc các nhóm khác và liên tục tuyên truyền chống BLM.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ không công nhận tư cách nghệ sĩ cho những nghệ sĩ có lý lịch đen (sử dụng chất cấm, có hành vi bạo lực, ngoại tình , ...) bất chấp khả năng nghệ thuật của họ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Giả sử chiến tranh nổ ra, chúng tôi sẽ bắt buộc tất cả các nghệ sĩ nổi tiếng chỉ được tạo ra tác phẩm âm nhạc phục vụ cách mạng.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi phản đối văn hóa review.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi ủng hộ thuế thừa kế ở mức 100%.", + "infoSlide": "Thuế thừa kế (inheritance tax) là khoản thuế đánh vào tài sản thuộc sở hữu của cá nhân khi nó được chuyển cho người thừa kế. Mức thuế thừa kế tối đa hiện tại là 40%, nhưng thực tế mức trung bình chỉ ở 17%.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi ủng hộ lao động trẻ em.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ xóa bỏ đồng tiền chung châu Âu.", + "infoSlide": "Euro là đơn vị tiền tệ chính thức của Liên minh châu u, đối với 19 quốc gia thành viên và 6 nước và lãnh thổ không thuộc Liên minh châu Âu.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi phản đối niềm tin vào \"nửa kia định mệnh\" trong tình yêu.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Pre Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi ủng hộ tình yêu thực dụng.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Pre Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi, với tư cách cha mẹ, sẽ dạy con gái mình hạ thấp giá trị của tình yêu lãng mạn.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Pre Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi ủng hộ sự phản ánh một chiều của The Social Dilemma.", + "infoSlide": "The Social Dilemma (2020) là một bộ phim của Netflix với nội dung xoay quanh cách các mạng xã hội điều khiển người dùng bằng quảng cáo và thu thập thông tin cá nhân của họ nhằm tối đa hóa lợi nhuận. Đồng thời, bộ phim cũng tố cáo cơ chế hoạt động của chúng ảnh hưởng nghiêm trọng đến tâm lý người dùng, gây nghiện và có thể trở thành các công cụ chính trị. Tuy nhiên, bộ phim nhận sự chỉ trích từ đại diện Facebook về việc nó không có sự thể hiện đa chiều và đã \"ngó lơ toàn bộ nỗ lực của các công ty đã cảnh báo người dùng, cũng như giải quyết các vấn đề được khiếu nại\".", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi phản đối việc khắc họa sức mạnh tình bạn là giải pháp cho mọi vấn đề.", + "infoSlide": "Trong rất nhiều truyện tranh và các tác phẩm chuyển thể, ở các tình tiết mấu chốt, quyết định thành bại, sức mạnh tình bạn được miêu tả như yếu tố để giành lấy chiến thắng.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi phản đối hình tượng siêu anh hùng trẻ em.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng Brexit mang lại nhiều tác hại hơn lợi ích.", + "infoSlide": "Việc Vương quốc Liên hiệp Anh và Bắc Ireland rời khỏi Liên minh châu u, hay còn được gọi tắt là Brexit, là một mục tiêu chính trị chủ nghĩa dân tộc được nhiều cá nhân, nghiệp đoàn và đảng phái chính trị theo đuổi nhằm yêu cầu Vương quốc Liên hiệp Anh và Bắc Ireland rút khỏi với tư cách thành viên từ Liên minh Châu Âu theo Điều 50 của Hiệp ước Liên minh Châu Âu.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng Trump tái đắc cử sẽ có lợi hơn cho Việt Nam.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi, với tư cách Mỹ, sẽ hợp tác với Trung Quốc để giải quyết vấn đề đại dịch COVID-19.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ tách mọi trẻ em thiên tài khỏi cha mẹ chúng ngay sau sinh và nuôi dạy biệt lập ở Học viện Thiên tài.", + "infoSlide": "Học viện Thiên tài: Là trường học đặc biệt được điều hành bởi chính phủ, chuyên đào tạo những trẻ em thiên tài. Ở đây, học viên được cung cấp mọi điều kiện giáo dục tốt nhất để đạt được 3 yếu tố: tối ưu hóa khả năng thiên tài, đảm bảo nền tảng đạo đức tốt và mục đích cuộc đời thuần túy là cống hiến cho sự phát triển của xã hội loài người.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Chúng tôi ủng hộ một thế giới nơi tất cả mọi người phải tuân theo Luật Giới hạn.", + "infoSlide": "Luật Giới hạn: Mỗi người chỉ có giới hạn số lượng mối quan hệ, và cách duy nhất để \"nạp\" thêm mối quan hệ khi số lượng đạt max là bỏ đi những mối quan hệ cũ. Những mối quan hệ đã bỏ đi sẽ không thể được tái thiết lập lại.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northern Coast Debate Open", + "year": "2020", + "format": "AP", + "content": "Nếu công nghệ cho phép, chúng tôi sẽ quyết định tuổi thọ của một người dựa trên IQ của họ theo tỉ lệ nghịch.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hòa Vang Debate Online", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ tạo ra một kỳ thi đại học mà ở đó thí sinh chỉ cần đủ điểm sẽ có thể học đại học, bất kể tuổi tác.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hòa Vang Debate Online", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng các quốc gia đang phát triển nên ưu tiên chủ nghĩa bảo hộ mậu dịch hơn thương mại tự do.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hòa Vang Debate Online", + "year": "2020", + "format": "AP", + "content": "Trong bối cảnh khủng hoảng bệnh dịch, chúng tôi sẽ áp dụng chính sách phân cấp bệnh nhân và ưu tiên chữa bệnh cho những người nhóm A.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hòa Vang Debate Online", + "year": "2020", + "format": "AP", + "content": "Chúng tôi ủng hộ việc Việt Nam lấy tiếng Anh làm ngôn ngữ thứ hai.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hòa Vang Debate Online", + "year": "2020", + "format": "AP", + "content": "Chúng tôi lấy làm tiếc việc sử dụng tôn giáo làm chất liệu cho thị trường văn hóa.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hòa Vang Debate Online", + "year": "2020", + "format": "AP", + "content": "Giả sử việc tráo đổi không bao giờ bị phát hiện, chúng tôi sẽ nói với cặp đôi nghèo rằng đứa trẻ của họ đã chết và đưa đứa bé sống sót cho gia đình giàu có.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Teen X Debate Online", + "year": "2020", + "format": "AP", + "content": "Chúng tôi phản đối quan niệm “Lấy người yêu mình thay vì lấy người mình yêu”.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Teen X Debate Online", + "year": "2020", + "format": "AP", + "content": "Chúng tôi cho phép người lính được kiện chính phủ vì những cuộc chiến tranh phi nghĩa.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Teen X Debate Online", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng trẻ em ở những nhóm yếu thế (ví dụ: người da màu, dân tộc thiểu số, v.v) nên ưu tiên việc phát triển cộng đồng thiểu số của họ hơn là lựa chọn thành công ở nơi khác.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Teen X Debate Online", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng ASEAN nên từ bỏ nguyên tắc đồng thuận chung (10/10 quốc gia phải đồng ý), thay bằng nguyên tắc đại đa số phiếu (7/10 quốc gia đồng ý).", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Teen X Debate Online", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ cung cấp phúc lợi xã hội dưới dạng hàng hóa và dịch vụ thay vì tiền mặt.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Teen X Debate Online", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ tăng thuế lên các công ty sử dụng AI thay thế cho công nhân lao động.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Teen X Debate Online", + "year": "2020", + "format": "AP", + "content": "Chúng tôi phản đối trẻ vị thành niên tham gia các chương trình truyền hình thực tế.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT poor families in developing countries should focus their resources on the child with the highest potential instead of distributing it fairly to all children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THW determines the teacher’s pay rate based on students’ feedback.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT children who broke school law to create more good than harm should not be punished.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THW ban all traveling in and out of epidemic countries under the light of outbreaking infectious virus.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT in global epidemic situation, WHO should be in charge instead of the local government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THW criminalize sick people who hid their illness during epidemic situations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THW grant independence to territories in which the majority of people vote for it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT Democratic Party should actively encourage candidates from minority groups (Women, POC, LGBT, etc.) e.g. Elizabeth Warren, Pete Buttigieg (LGBT) instead of white male leaders (Bernie Sanders, Joe Biden, etc.)", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gấu Online Debate Open", + "year": "2020", + "format": "AP", + "content": "THBT Thailand should abolish the Royal Family’s power over the military.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Debate Open", + "year": "2020", + "format": "WSDC", + "content": "THW ban politicians from party-switching.", + "infoSlide": "Party switching is any change in political party affiliation of a partisan public figure currently holding elected office that occurs outside of the election season.", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Debate Open", + "year": "2020", + "format": "WSDC", + "content": "THBT the environmental movement should heavily prioritize anthropocentric argumentation (i.e. human-centered effects and reasons e.g. rising sea levels can destroy villages, extreme weather damages crop output, and could produce food shortage) in their advocacy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Debate Open", + "year": "2020", + "format": "WSDC", + "content": "THR the narrative that family love should be unconditional.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Debate Open", + "year": "2020", + "format": "WSDC", + "content": "THBT major news outlets should not send their journalists to warzones.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Debate Open", + "year": "2020", + "format": "WSDC", + "content": "THW, as the USA, withdraw all military presence from Yemen.", + "infoSlide": "Civil war erupted in Yemen in 2014 when Houthi rebels took control of the capital, Sanaa in the North, forcing President Hadi to flee to the South. In 2015, a Saudi-led coalition launched an offensive in Yemen against the Houthis. Shortly after taking office, President Donald Trump intensified American efforts in Yemen, backing the Saudi-led coalition offensive. Members of the US Armed Forces have provided aerial targeting assistance, intelligence sharing, logistical support, and a naval blockade of Houthi-held territories in “Operation Restoring Hope”.", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Debate Open", + "year": "2020", + "format": "WSDC", + "content": "THO the glorification of the “Bad Boy” trope", + "infoSlide": "A “bad boy” is a confident, mysterious, troubled, and attractive young man, often portrayed as the love interest of the female protagonist in novels, films, and television series. They tend to be rebellious in nature and may engage in rule-breaking activity, such as violence or underage drinking. Through the story arc, the character typically reveals other dimensions of their personality and undergoes various forms of character development. Notable examples include Danny from “Grease”, Jughead from “Riverdale” and Damon from the “Vampire Diaries”.", + "division": "", + "language": "English", + "link": "", + "round": "6", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Debate Open", + "year": "2020", + "format": "WSDC", + "content": "THW make COVID-19 vaccination compulsory for all residents and citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "7", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Debate Open", + "year": "2020", + "format": "WSDC", + "content": "THBT youth leaders should form youth-based political parties instead of joining established political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Highschool Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Debate Open", + "year": "2020", + "format": "WSDC", + "content": "THR the rise of self-care culture.", + "infoSlide": "Self-care culture refers to dominant socio-cultural norms that emphasize:\n- Individuals needing to care for their own emotional wellbeing\n- Adopting self-care routines/practices such as mindfulness yoga, meditation\n- Pursuing commercialized services, such as massage and spa treatment, etc.", + "division": "", + "language": "English", + "link": "", + "round": "National Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Debate Open", + "year": "2020", + "format": "WSDC", + "content": "THR the rise of stan culture.", + "infoSlide": "A stan is an extremely or excessively enthusiastic or devoted fan. Stan culture is defined as a global phenomenon in which celebrities have massive “stan” - basses, characterized by a culture of intense social media following and idolization. Notable examples include the BTS Army, Taylor Swift’s Swifties, and Beyonce’s Beyhive.", + "division": "", + "language": "English", + "link": "", + "round": "Highschool Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Debate Open", + "year": "2020", + "format": "WSDC", + "content": "THR the secularisation of religious literary works (e.g. Rumi, Firdousi).", + "infoSlide": "The secularization of a text is a process that involves taking explicitly religious text (philosophical or literary) and removing the elements that tie into the original religious context. This is often done through the process of translation or explicit removal of religious references. A prominent example is the work of the 13th Century Persian poet, Rumi, (Mowlana Jalal ad-din Muhammad Rumi) such as the “Masnafi”, which were intended as explanations of the Koran having all references to the Koran removed.", + "division": "", + "language": "English", + "link": "", + "round": "National Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Debate Open", + "year": "2020", + "format": "WSDC", + "content": "THO the narrative of condemning appeasement.", + "infoSlide": "Appeasement is a diplomatic policy of making political or material concessions to an aggressive power in order to avoid conflict. The term is most often applied to the foreign policy of successive British governments, particularly that of Neville Chamberlain, towards Nazi Germany and Fascist Italy between 1935 and 1939. Some consider the Western response to Russia’s annexation of Crimea, US policy towards North Korea, and the recent Abraham Accords between Israel and Middle East states as modern-day examples of Appeasement.", + "division": "", + "language": "English", + "link": "", + "round": "National Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Debate Open", + "year": "2020", + "format": "WSDC", + "content": "THS the buying and selling of physical traits.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open High School Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Debate Open", + "year": "2020", + "format": "WSDC", + "content": "THBT Wakanda should pursue a policy of globalism (E.g trading with non-African countries as well as African states) rather than pan-Africanism (E.g focusing on helping exclusively African countries).", + "infoSlide": "Wakanda is a small landlocked country in Africa. Millions of years ago, a meteorite made of vibranium, the strongest substance in the universe, struck the continent of Africa, affecting the plant life around it. And when the time of humans came, five tribes settled on it and called it Wakanda. As time passed, the Wakandans used the metal to develop technology that was far more advanced than any other in existence and a cloaking field to protect themselves from the chaos that was slowly consuming the rest of the world… Suppose the world has been made aware of Wakanda’s technological advancement and wealth.", + "division": "", + "language": "English", + "link": "", + "round": "National Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UPenn World Schools Online Debating Tournament", + "year": "2020", + "format": "WSDC", + "content": "THW require corporate boards to allocate a substantial number of board seats to representatives of the employees of the company.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UPenn World Schools Online Debating Tournament", + "year": "2020", + "format": "WSDC", + "content": "THP a world in which social media companies use FB’s policy regarding political advertisement rather than a world in which they use Twitter’s policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UPenn World Schools Online Debating Tournament", + "year": "2020", + "format": "WSDC", + "content": "THW allow civil lawsuits against religious leaders/organizations for damages caused by adherence to the religion (e.g. rejecting medical treatment according to doctrine).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UPenn World Schools Online Debating Tournament", + "year": "2020", + "format": "WSDC", + "content": "THBT the environmental movement should adopt the message of Eco optimism rather than pessimism.", + "infoSlide": "Eco optimism focuses the messaging of the environmental movement around its success stories, and minimizes the use of doom and gloom figures.", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UPenn World Schools Online Debating Tournament", + "year": "2020", + "format": "WSDC", + "content": "THBT it is in the interest of the US to adopt a heavily non-interventionist military policy (e.g. significantly reducing expenditure on the military, committing to not using its military except in self-defense, shutting down drone strikes programs).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UPenn World Schools Online Debating Tournament", + "year": "2020", + "format": "WSDC", + "content": "THBT people of color and children of immigrants living in Western nations should not adopt Western variants of their name.", + "infoSlide": "A common practice among people of color and children of immigrants is to be called by a western name instead of their ethnic name.", + "division": "", + "language": "English", + "link": "", + "round": "6", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UPenn World Schools Online Debating Tournament", + "year": "2020", + "format": "WSDC", + "content": "As social justice movements, THW also embrace violent wings within movements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UPenn World Schools Online Debating Tournament", + "year": "2020", + "format": "WSDC", + "content": "THO the narrative of a person having \"one true love\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UPenn World Schools Online Debating Tournament", + "year": "2020", + "format": "WSDC", + "content": "THP a world in which the USA was founded as a parliamentary democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debaters VTV7", + "year": "2020", + "format": "", + "content": "That we applaud Greta Thunberg.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Preliminary", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debaters VTV7", + "year": "2020", + "format": "", + "content": "That we oppose the rise of sharing culture on social media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Preliminary", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debaters VTV7", + "year": "2020", + "format": "", + "content": "That we reserve LGBT+ roles only for LGBT+ artists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Preliminary", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debaters VTV7", + "year": "2020", + "format": "", + "content": "That it is better to choose a high-paid job that you are uninterested in than a low-paid job that you like.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Preliminary", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debaters VTV7", + "year": "2020", + "format": "", + "content": "That we regret the idolization (of individuals) who do not follow traditional education paths (Bill Gates, Mark Zuckerberg, Warren Buffet, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Preliminary", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debaters VTV7", + "year": "2020", + "format": "", + "content": "That we would prefer sending old parents to nursing homes to caring for them at home regardless of financial burden.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debaters VTV7", + "year": "2020", + "format": "", + "content": "That we would believe developing countries should prioritize FDI over ODA.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debaters VTV7", + "year": "2020", + "format": "", + "content": "That we would create a beauty tax.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debaters VTV7", + "year": "2020", + "format": "", + "content": "That it is justified for parents to push their children to succeed, even if it comes at the expense of their children's immediate happiness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debaters VTV7", + "year": "2020", + "format": "", + "content": "That we should aggressively incentivize the minority gender to study in the fields that are dominated by the opposite gender.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debaters VTV7", + "year": "2020", + "format": "", + "content": "That we should abolish the grading system in schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debaters VTV7", + "year": "2020", + "format": "", + "content": "That we would let AI determine humanity's future.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2019", + "format": "WSDC", + "content": "THBT governments should actively prevent gentrification.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2019", + "format": "WSDC", + "content": "THBT the US National Security Agency should notify software manufacturers of all zero-day vulnerabilities in order for them to patch the defect.", + "infoSlide": "A zero-day vulnerability is a computer-software vulnerability that is unknown to those who would be interested in mitigating the vulnerability (including the vendor of the target software). Until the vulnerability is mitigated, hackers can exploit it to adversely affect computer programs, data, additional computers or a network. The US's National Security Agency has a large stockpile of zero-day vulnerabilities which are used as part of their cyber warfare arsenal.", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2019", + "format": "WSDC", + "content": "In art and popular culture, THBT creating new lead characters for minorities (e.g. Hancock, Black Panther) is better than recasting them in existing roles already played by other actors/communities (eg Ghosbusters, The Little Mermaid).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2019", + "format": "WSDC", + "content": "THW break up Amazon.com, Inc.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2019", + "format": "WSDC", + "content": "In post conflict societies, THW grant amnesty to perpetrators of crimes rather than seeking prosecutions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2019", + "format": "WSDC", + "content": "THW ban payday loans.", + "infoSlide": "A payday loan is a relatively small amount of money lent at a high rate of interest on the agreement that it will be repaid when the borrower receives their next wages.", + "division": "", + "language": "English", + "link": "", + "round": "6", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2019", + "format": "WSDC", + "content": "THW reserve seats in parliament for candidates under 30.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "7", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2019", + "format": "WSDC", + "content": "THW ban the practice of \"importing brides\".", + "infoSlide": "Bride importing is where a man agrees to pay a woman and sponsor immigration into his country, in exchange for her agreeing to marry him.", + "division": "", + "language": "English", + "link": "", + "round": "8", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2019", + "format": "WSDC", + "content": "THP a world where adult children take in their elderly parents rather than support them to live separately.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2019", + "format": "WSDC", + "content": "THS the right of indigenous peoples to have publicly funded schools with autonomy over curriculum, operations & educational philosophy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2019", + "format": "WSDC", + "content": "THS China’s attempts to become a global dominant power (eg. establishing its own global financial/development institutions; Increased FDI in Africa, South America, Asia; Increased military spending).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2019", + "format": "WSDC", + "content": "THBT charities and humanitarian aid organizations should not use images of graphic suffering in their advertising campaigns.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2019", + "format": "WSDC", + "content": "THBT more economically developed countries (MEDCs) should provide reparations to less economically developed countries (LEDCs) due to the effects of climate change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2019", + "format": "WSDC", + "content": "THR the glorification of soldiers as heroes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam Schools Debating Championship (VSDC)", + "year": "2019", + "format": "WSDC", + "content": "THW require students from public schools or state universities to work in their country of origin for a number of years after graduation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam Schools Debating Championship (VSDC)", + "year": "2019", + "format": "WSDC", + "content": "THR the approach of environmental groups in focusing their resources on changing individual behavior (metal straws instead of plastic straws, limiting personal travel, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam Schools Debating Championship (VSDC)", + "year": "2019", + "format": "WSDC", + "content": "This House penalise sporting teams for the poor behaviour of their fans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam Schools Debating Championship (VSDC)", + "year": "2019", + "format": "WSDC", + "content": "THW ban research attempting to create Strong Artificial Intelligence (AI).", + "infoSlide": "Strong Artificial Intelligence is a form of machine intelligence that is equal to human intelligence. key characteristics of strong AI include the ability to reason, solve puzzles , make judgments, plan, learn and communicate.", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam Schools Debating Championship (VSDC)", + "year": "2019", + "format": "WSDC", + "content": "This house would impose a sin tax on meat.", + "infoSlide": "A sin tax is a tax imposed on goods considered as harmful or undesirable, like the taxes currently imposed on alcohol and cigarettes.", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam Schools Debating Championship (VSDC)", + "year": "2019", + "format": "WSDC", + "content": "This House believes that developing nations should place restrictions on rural-urban migration.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vietnam Schools Debating Championship (VSDC)", + "year": "2019", + "format": "WSDC", + "content": "THW establish an official single currency for all ASEAN countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Debate Open", + "year": "2019", + "format": "WSDC", + "content": "TH, as a parent in an Asian society, would not pressure their children to succeed academically.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Debate Open", + "year": "2019", + "format": "WSDC", + "content": "THW mandate that all contributions from sponsors to athletic teams of one gender also be made to an equivalent team of the opposite gender.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Debate Open", + "year": "2019", + "format": "WSDC", + "content": "THO the practice of selling the land-use-rights of previously-owned land, at discounted prices, to corporations to develop for residential and/or tourism purposes. (e.g. Ecopark, Vinhomes, etc.).", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Debate Open", + "year": "2019", + "format": "WSDC", + "content": "THO mandatory military services in peacetime.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Debate Open", + "year": "2019", + "format": "WSDC", + "content": "THBT Asian governments should actively suppress the influence of Western media in their own countries (through tariffs, direct censorship, replacing with national alternatives, etc.).", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Debate Open", + "year": "2019", + "format": "WSDC", + "content": "THR the environmental movement's focus on changing consumer habit (using bamboo straws, not eating meat, etc) to protect the environment.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Debate Open", + "year": "2019", + "format": "WSDC", + "content": "THP a world with open borders between nations.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Debate Open", + "year": "2019", + "format": "WSDC", + "content": "Chúng tôi tin rằng Hàn Quốc nên mở cửa khu công nghiệp Kaesong trở lại.", + "infoSlide": "Năm 2004, Hàn Quốc và Triều Tiên đã hợp tác đầu tư và xây dựng Kaesong Industrial Complex (KIC) đặt tại Triều Tiên. Đây là một cơ hội hợp tác hiếm hoi của hai nước. KIC từng bị Triều Tiên đóng cửa 4 tháng vào năm 2013 sau đợt tập trận quân sự giữa Hàn Quốc và Mỹ, giam lỏng các lao động Hàn Quốc. Năm 2016, phía Hàn Quốc đột ngột đóng cửa KIC. Nhiều nhà phân tích tin rằng vụ thử vũ khí nguyên tử thứ 4 của Triều Tiên và những tính toán kinh tế phía Hàn Quốc chính là lý do đằng sau, và cũng không loại trừ nghi ngờ về sự thành lập liên minh chính trị Mỹ-Nhật-Hàn.", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Debate Open", + "year": "2019", + "format": "WSDC", + "content": "Chúng tôi sẽ đưa các tiết phê phán văn học vào trường THPT tại Việt Nam.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Debate Open", + "year": "2019", + "format": "WSDC", + "content": "Chúng tôi phản đối Thỏa thuận Môi trường Mới của Alexandria Ocasio Cortez.", + "infoSlide": "Thỏa thuận Môi trường mới (Green New Deal) là một nghị quyết của Quốc Hội được đưa ra bởi Alexandria Ocasio Cortez - Hạ nghĩ sĩ trẻ nhất của Hoa Kỳ. Thỏa thuận yêu cầu Quốc hội Mỹ đưa ra chính sách thay đổi toàn bộ ngành công nghiệp năng lượng nhiên liệu hóa thạch sang công nghiệp năng lượng tái tạo. Trong thỏa thuận, Alexandria đưa ra kế hoạch 10 năm, trong đó dự tính cung cấp 100% điện năng của đất nước từ năng lượng tái tạo và không khí thải, số hóa mạng lưới điện của quốc gia, nâng cấp mọi tòa nhà trong nước để tiết kiệm năng lượng hơn và đại tu hệ thống giao thông của quốc gia bằng cách đầu tư vào phương tiện điện và đường sắt cao tốc.", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Debate Open", + "year": "2019", + "format": "WSDC", + "content": "Chúng tôi phản đối luật cấm mạng che mặt dành cho phụ nữ Hồi Giáo tại nơi công cộng của Pháp.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Debate Open", + "year": "2019", + "format": "WSDC", + "content": "Giả sử y học cho phép, chúng tôi sẽ cho phép bố mẹ chọn lựa giới tính cho con.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Debate Open", + "year": "2019", + "format": "WSDC", + "content": "Chúng tôi ủng hộ sự gia tăng sử dụng robot tình dục.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Debate Open", + "year": "2019", + "format": "WSDC", + "content": "Chúng tôi hối hận việc công bố ảnh của bé Alan Kurdi.", + "infoSlide": "Bức ảnh của Alan Kurdi, cậu bé 3 tuổi người Syria bị sóng đánh dạt vào bờ biển Thổ Nhĩ Kỳ năm 2015, đã được chia sẻ khắp thế giới như một trong những minh chứng sống động và ám ảnh nhất về cuộc khủng hoảng di cư do xung đột Syria gây ra. Bức ảnh đã đánh thức lòng trắc ẩn của hàng triệu người trên toàn thế giới và mang về khoản tiền từ thiện kỉ lục từ các mạnh thường quân trên toàn thế giới dành cho những nạn nhân.", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Online Debate Open", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng trường học nên dạy học sinh hoài nghi về thẩm quyền của người lớn.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Debate Open", + "year": "2019", + "format": "WSDC", + "content": "Chúng tôi tin rằng các quốc gia với dân số già nên tăng số lượng người nhập cư hơn là khuyến khích người dân có thêm con cái.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Online Debate Open", + "year": "2020", + "format": "WSDC", + "content": "Nếu có thể, chúng tôi lựa chọn sinh ra trong một thế giới không có tôn giáo.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Online Debate Open", + "year": "2020", + "format": "WSDC", + "content": "Giả sử công nghệ cho phép, chúng tôi sẽ biến đổi gen gia súc, gia cầm để chúng không cảm thấy đau đớn nữa.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Online Debate Open", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi ủng hộ kiến nghị của chính phủ Ấn Độ lên Tòa án Tối cao để gia hạn cho nhà mạng Bharti Airtel và Vodafone Idea.", + "infoSlide": "Luật Ấn Độ quy định công ty viễn thông tư nhân để có giấy phép hoạt động phải khai báo AGR (tổng thu nhập điều chỉnh) và hàng năm chia một phần AGR với chính phủ. Cuối năm 2019, hai nhà mạng lớn của Ấn Độ là Bharti Airtel và Vodafone Idea bị Tòa án tối cao Ấn Độ kết án khai báo AGR không chính xác và buộc phải bồi thường xấp xỉ 12,5 tỷ USD. Vụ kiện khiến giá cổ phiếu của hai công ty liên tục giảm mạnh và khoản tiền bồi thường quá lớn đẩy 2 nhà mạng đến rìa phá sản. Việc này đã khiến cuộc đấu giá phổ tần số dành cho 5G của Ấn Độ bị trì hoãn nghiêm trọng vì hai nhà mạng lớn nhất sẽ không có khả năng tham gia đấu giá sau khi trả hết nợ. Trước tình hình này, chính phủ Ấn Độ kiến nghị Tòa án Tối cao cho phép hai nhà mạng trả dần khoản nợ trong 20 năm.", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ka Paio Online Debate Open", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi sẽ tạm tước quyền lực của công đoàn và nới lỏng luật bảo vệ người lao động khi khủng hoảng kinh tế xảy ra.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2018", + "format": "WSDC", + "content": "This House would require professional sports teams to be owned by their local communities instead of individuals or corporations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2018", + "format": "WSDC", + "content": "THO the development of lethal autonomous weapons.", + "infoSlide": "Lethal autonomous weapons are a type of autonomous military robot designed to select and attack military targets (people or installations) without intervention by a human operator.", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2018", + "format": "WSDC", + "content": "THR the widespread belief that motherhood is a rewarding experience.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2018", + "format": "WSDC", + "content": "THBT states should allow all non-citizen migrant workers to vote in local and national elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2018", + "format": "WSDC", + "content": "THS a school voucher system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2018", + "format": "WSDC", + "content": "THW not allow sellers and service-providers to advertise their products beyond showing information and images that reveal technical product details.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "6", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2018", + "format": "WSDC", + "content": "This House regrets the Belt and Road Initiative.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "7", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2018", + "format": "WSDC", + "content": "THR the rise of call-out culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "8", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2018", + "format": "WSDC", + "content": "THBT democratic states should not own or run media organisations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Double Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2018", + "format": "WSDC", + "content": "THP a world with no belief in the afterlife.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Octofinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2018", + "format": "WSDC", + "content": "THBT foreigners should not be allowed to own land in developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2018", + "format": "WSDC", + "content": "THBT rehabilitation should be the only consideration in criminal sentencing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC", + "year": "2018", + "format": "WSDC", + "content": "THBT the West should end all arms sales and military cooperation with Saudi Arabia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": {}, + "tournamentID": "" + } +] + diff --git a/src/core/constants/MOJItourneys.json b/src/core/constants/MOJItourneys.json new file mode 100644 index 0000000..ad06b80 --- /dev/null +++ b/src/core/constants/MOJItourneys.json @@ -0,0 +1,237 @@ +[ + { + "name": "BY Online Debate Open", + "format": "BP", + "year": "2021" + }, + { + "name": "Uhuru Worlds", + "format": "BP", + "year": "2021" + }, + { + "name": "Cambridge Asia BP", + "format": "BP", + "year": "2021" + }, + { + "name": "Asian English Olympics", + "format": "BP", + "year": "2021" + }, + { + "name": "Beihang International Winter Online BP Open", + "format": "BP", + "year": "2021" + }, + { + "name": "Philippines Queer Open", + "format": "BP", + "year": "2021" + }, + { + "name": "UMT Parliamentary Debate Open", + "format": "BP", + "year": "2021" + }, + { + "name": "Trouvaille Debate Open", + "format": "BP", + "year": "2021" + }, + { + "name": "DAV IR Cup", + "format": "BP", + "year": "2021" + }, + { + "name": "HWS Round Robin", + "format": "BP", + "year": "2021" + }, + { + "name": "Korea WUDC", + "format": "BP", + "year": "2021" + }, + { + "name": "DTU Parliamentary Debate", + "format": "AP", + "year": "2021" + }, + { + "name": "Vietnam University Debating Championship (VUDC)", + "format": "AP", + "year": "2021" + }, + { + "name": "NEU Debate Open", + "format": "AP", + "year": "2021" + }, + { + "name": "Cogic Debate Online (CODO)", + "format": "AP", + "year": "2021" + }, + { + "name": "The Anime Open", + "format": "AP", + "year": "2021" + }, + { + "name": "Netflix International Debate", + "format": "AP", + "year": "2021" + }, + { + "name": "Da Nang Debate Open", + "format": "AP", + "year": "2021" + }, + { + "name": "Asian Online Debating Championship (AODC) - WSDC", + "format": "WSDC", + "year": "2021" + }, + { + "name": "Oldham Cup International League", + "format": "WSDC", + "year": "2021" + }, + { + "name": "Nanjing Debate Open", + "format": "WSDC", + "year": "2021" + }, + { + "name": "The Tabate", + "format": "WSDC", + "year": "2021" + }, + { + "name": "FLSS Debate Tournament", + "format": "WSDC", + "year": "2021" + }, + { + "name": "Hanoi Debate Tournament (HDT)", + "format": "WSDC", + "year": "2021" + }, + { + "name": "Lychee Debate Open", + "format": "WSDC", + "year": "2021" + }, + { + "name": "Canopus Debate Championship", + "format": "WSDC", + "year": "2021" + }, + { + "name": "Gấu Debate Tournament", + "format": "BP", + "year": "2021" + }, + { + "name": "Vietname BP Championship (BP)", + "format": "BP", + "year": "2020" + }, + { + "name": "Gấu Online Debating Championship", + "format": "BP", + "year": "2020" + }, + { + "name": "Beihang International Online Debating Championship", + "format": "BP", + "year": "2020" + }, + { + "name": "Japan BP", + "format": "BP", + "year": "2020" + }, + { + "name": "Melbourne Mini", + "format": "BP", + "year": "2020" + }, + { + "name": "PKU Pro-Am", + "format": "BP", + "year": "2020" + }, + { + "name": "Asian Online Debating Championship (AODC) - WSDC", + "format": "WSDC", + "year": "2020" + }, + { + "name": "Taiwan Online Debate Open", + "format": "AP", + "year": "2020" + }, + { + "name": "Northern Coast Debate Open", + "format": "AP", + "year": "2020" + }, + { + "name": "Hòa Vang Debate Online", + "format": "AP", + "year": "2020" + }, + { + "name": "Teen X Debate Online", + "format": "AP", + "year": "2020" + }, + { + "name": "Gấu Online Debate Open", + "format": "AP", + "year": "2020" + }, + { + "name": "Hong Kong Debate Open", + "format": "WSDC", + "year": "2020" + }, + { + "name": "UPenn World Schools Online Debating Tournament", + "format": "WSDC", + "year": "2020" + }, + { + "name": "The Debaters VTV7", + "format": "", + "year": "2020" + }, + { + "name": "WSDC", + "format": "WSDC", + "year": "2019" + }, + { + "name": "Vietnam Schools Debating Championship (VSDC)", + "format": "WSDC", + "year": "2019" + }, + { + "name": "Ka Paio Debate Open", + "format": "WSDC", + "year": "2019" + }, + { + "name": "Ka Paio Online Debate Open", + "format": "WSDC", + "year": "2020" + }, + { + "name": "WSDC", + "format": "WSDC", + "year": "2018" + } +] \ No newline at end of file diff --git a/src/core/constants/PAmotions.json b/src/core/constants/PAmotions.json new file mode 100644 index 0000000..62f7916 --- /dev/null +++ b/src/core/constants/PAmotions.json @@ -0,0 +1,6870 @@ +[ + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "THW adopt communal policing in areas of high crime rates.", + "infoSlide": "Communal policing refers to policing performed by members drawn predominantly from the local neighbourhood. These organisations have the right to decide whom they arrest, and what force they deploy, consistent with national law (i.e. can go up to the level of force stipulated by the law, but not exceed it).", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi sẽ sử dụng \"Chính sách cảnh sát cộng đồng\" ở những khu vực có tỉ lệ tội phạm cao.", + "infoSlide": "\"Chính sách cảnh sát cộng đồng\" là một biện pháp trị an được thực hiện bởi những thành viên thuộc cộng đồng địa phương. Những tổ chức này có quyền được quyết định bắt ai, và sử dụng biện pháp nào, tuân theo luật pháp quốc gia (ví dụ: có thể tăng mức án phù hợp với luật quy định, nhưng không được phép vượt quá mức cho phép).", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "THBT states should financially compensate victims of serious crimes committed by reoffenders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi tin rằng chính phủ nên bù đắp về mặt tài chính cho các trọng tội gây ra bởi những tái phạm nhân.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "THW hold social media companies liable for the spread of fake news.", + "infoSlide": "To be held liable means to be accountable or legally responsible for a particular action or event. Fake news: this is a form of news that consists mainly of misinformation or hoaxes and is deliberately spread through traditional forms of media and online/social media.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "Assuming it is feasible to measure rehabilitation, THW release prisoners purely based on their level of rehabilitation as opposed to having set prison sentences.", + "infoSlide": "Rehabilitation refers to the process of re-educating and retraining those convicted of crimes in order to help them re-integrate back into society. It involves various forms of approaches, ranging from psychological counselling to work training.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "Chúng tôi sẽ bắt các công ty mạng xã hội chịu trách nhiệm cho sự phát tán thông tin giả.", + "infoSlide": "Chịu trách nhiệm là thực hiện đúng nghĩa vụ theo pháp luật vì một hành vi hoặc sự kiện cụ thể nào đó. Thông tin giả: đây là loại tin tức bao gồm hầu hết là thông tin sai sự thật và được cố tình phát tán qua các phương tiện truyền thông truyền thống cũng như mạng xã hội/internet.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "Giả sử có thể đo được mức độ cải tạo, chúng tôi sẽ trả tự do cho tù nhân phụ thuộc hoàn toàn vào mức độ họ cải tạo thay vì đặt các án tù cố định.", + "infoSlide": "Cải tạo là quá trình giáo dục và đào tạo lại những cá nhân đã bị kết tội để giúp họ hòa nhập lại với xã hội. Nó bao gồm nhiều phương thức tiếp cận khác nhau, từ việc cố vấn tâm lí cho đến đào tạo lao động.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "THBT victims of violent crimes should decide the sentence of the offenders.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng nạn nhân của những tội ác bạo lực nên được quyết định bản án cho bị cáo.", + "infoSlide": "", + "division": "English", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "This House would designate specific non-residential areas in which drug users and dealers are legally allowed to buy, use, and sell drugs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "This House would replace human judgment with computer algorithms in criminal sentencing decisions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": " This House prefers a world where all land was held in government trust and leased out on limited-term contracts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "5", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THW impose criminal liability on individuals who fail to assist a person in danger, when doing so would not place them at serious risk.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Octofinals", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi sẽ cho phép ma tuý được mua bán và sử dụng ở những khu vực phi dân cư được chỉ định cụ thể.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi sẽ thay thế quyết định của con người bằng thuật toán máy tính trong các quyết định tuyên án hình sự.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi ủng hộ thế giới nơi mà tất cả đất đai thuộc quyền uỷ thác của Chính phủ và được cho thuê theo hợp đồng có thời hạn.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "5", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi sẽ áp đặt trách nhiệm hình sự lên những cá nhân không hỗ trợ một người đang gặp nguy hiểm dù việc hỗ trợ sẽ không khiến họ gặp nguy hiểm nghiêm trọng.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "MOE Invitational Debating Championship (MIDC)", + "year": "2020", + "format": "WSDC", + "content": "THW hold religious leaders liable when identifiable adult believers are harmed by adhering to doctrinal teaching (e.g. gay people who opt into conversion therapy, Jehovah's witnesses refusing blood transfusions).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "MOE Invitational Debating Championship (MIDC)", + "year": "2020", + "format": "WSDC", + "content": "THR the continuation of NATO after the dissolution of the USSR.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "MOE Invitational Debating Championship (MIDC)", + "year": "2020", + "format": "WSDC", + "content": "THW allow ex-felons to become police officers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "MOE Invitational Debating Championship (MIDC)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi sẽ bắt các nhà lãnh đạo tôn giáo chịu trách nhiệm khi mà những tín đồ trưởng thành được xác định bị tổn hại khi tuân thủ giáo lý (VD: những người đồng tính chọn tham gia liệu pháp chuyển đổi, những nhân chứng Jehovah từ chối truyền máu).", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "MOE Invitational Debating Championship (MIDC)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi nuối tiếc sự tiếp tục của NATO sau khi Liên Xô tan rã", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "MOE Invitational Debating Championship (MIDC)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi sẽ cho phép những người từng phạm trọng tội trở thành cảnh sát.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Oldham Cup", + "year": "2020", + "format": "WSDC", + "content": "THBT criminal justice policy (e.g mandatory arrests, minimum sentencing, post release conditions, etc.) should be decided by experts instead of elected representatives.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Oldham Cup", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng chính sách tư pháp hình sự (ví dụ như lệnh giam giữ bắt buộc, hình phạt cấp thấp nhất, điều kiện được tại ngoại, v.v.) nên được quyết định bởi chuyên gia thay vì các đại biểu cử tri.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "In the case a human destroys the robots beyond repair, THW charge murder instead of property damage.", + "infoSlide": "In 2050, AI robots are able to replicate their appearance, conversation, and reaction to emotions of human beings. However, their intelligence still does not allow them to sense emotions and feelings such as pain, happiness and joy, etc.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Trong trường hợp một người phá hủy các robot đến mức không thể sửa chữa được, chúng tôi sẽ buộc tội người đó giết người thay vì phá hủy tài sản.", + "infoSlide": "Vào 2050, các robots trí tuệ nhân tạo có khả năng phỏng theo hình dạng, cuộc trò chuyện và phản ứng với các cảm xúc của con người. Tuy nhiên, trí tuệ của họ chưa cho phép họ cảm nhận cảm xúc và các cảm giác như đau đớn, hạnh phúc và vui vẻ, etc.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THP a world where the criminal justice system's role is mainly for victims' vengence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng thế giới sẽ tốt hơn khi hệ thống pháp lý tội phạm có nhiệm vụ chính là phục vụ sự trả thù cho nạn nhân.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THW allow prosecutors and victims to veto assigned judges.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi cho phép công tố viên và nạn nhân quyền phủ quyết các thẩm phán đã được chỉ định.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THW removes all laws that relate to filial responsibilities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THW removes all laws that relate to filial responsibilities.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Giả sử chúng ta có thể đo được mức độ nguy hiểm đối với xã hội của các thai nhi trong tương lai, chúng tôi tin rằng chính phủ nên nuôi dạy những đứa trẻ sơ sinh có tính đe dọa cao.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Schools Debate Open (HKSDO)", + "year": "2020", + "format": "WSDC", + "content": "This House Prefers a world where sentences are determined by an AI which makes decisions through machine learning rather than by human judges.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Schools Debate Open (HKSDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi ủng hộ thế giới nơi mà việc xét xử được định đoạt bởi một AI (trí tuệ nhân tạo) đưa ra quyết định thông qua máy học hơn là những người thẩm phán.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "DAV Debate Open (DDO)", + "year": "2020", + "format": "AP", + "content": "THBT all major legislative decisions must be approved.", + "infoSlide": "A citizen consultation council is a group of 100 or so randomly selected within guidelines reflecting the population as a whole in terms of gender, age, income and education. Over the couse of weeks or months, they meet to discuss a potential legislative decision in a considered, careful way. Often they are paid for their time. At the end they present their recommendations to politicians.", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "DAV Debate Open (DDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng tất cả các quyết định chính của cơ quan lập pháp phải được thông qua bởi các hội đồng tham vấn công dân trước khi chúng được thông qua.", + "infoSlide": "Hội đồng tham vấn công dân là một nhóm gồm 100 người được lựa chọn ngẫu nhiên theo hướng dẫn cụ thể phản ánh dân số nói chung theo giới tính, độ tuổi, thu nhập và trình độ học vấn. Trong vài tuần hoặc vài tháng, họ gặp nhau để thảo luận về một quyết định lập pháp một cách cân nhắc, thận trọng. Thường thì họ được trả công cho thời gian của họ. Cuối cùng, họ trình bày các khuyến nghị của họ với các chính trị gia.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "AP", + "content": "Assuming we are living in a world with superheroes, THW require all superheroes to obey the law.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "AP", + "content": "Giả sử chúng ta sống trong một thế giới có siêu anh hùng, chúng tôi sẽ yêu cầu tất cả các anh hùng tuân thủ pháp luật.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Nghe Tinh Debate Open (NTDO)", + "year": "2020", + "format": "WSDC", + "content": "We believe all countries should replace their GDP with the GNH Index.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Nghe Tinh Debate Open (NTDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng tất cả các quốc gia nên thay chỉ số GDP bằng chỉ số GNH.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Nghe Tinh Debate Open (NTDO)", + "year": "2020", + "format": "WSDC", + "content": "We believe that African countries should accept a \"re-borrow\" of antiques instead of fighting for the return of them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Nghe Tinh Debate Open (NTDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng các quốc gia Châu Phi nên chấp nhận \"giải pháp mượn lại\" cổ vật thay vì đấu tranh đòi hoản trả.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "THBT government's act of emphasizing the detrimental effects of social problems in order to introduce policies not widespread approved but thought to be beneficial to national defense is justified.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng việc chính phủ phóng đại tác hại của các vấn đề xã hội để ban hành chính sách không được ủng hộ rộng rãi mà họ cho rằng có lợi cho an ninh quốc gia là điều chính đáng.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "THW allow courts to accept evidences collected illegally in cases on high-level corruption.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi sẽ cho phép toà án chấp nhận các chứng cứ được thu thập trái pháp luật trong các vụ án tham nhũng cấp độ cao.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "cjpl": { + "check": true, + "title": "Criminal Justice/Police/Law" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "THO \"Humble Culture\".", + "infoSlide": "For the purpose of this debate, \"humble culture\" refers to a culture where people are encouraged (either by others; or themselves; or both) to actively refrain from publicly showing/revealing their successes, possessions and achievements.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi phản đối \"Văn hóa khiêm tốn\"", + "infoSlide": "Trong hoàn cảnh của trận tranh biện này, \"Văn hóa khiêm tốn\" là một loại văn hóa mà mọi người được khuyến khích (bởi người khác, hoặc bản thân, hoặc cả hai) chủ động hạn chế công khai/tiết lộ về những thành công, của cải và thành tích của mình.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "THR the commercialisation of hip hop.", + "infoSlide": "Hip hop is an art and culture movement that is said to encompass music, dance, fashion, style, use of language and social attitudes. It originated in the predominantly African American neighbourhood of South Bronx, New York City in the late 1970s. Although widely considered to be a synonym for rap music, the term hip-hop refers to a broader complex culture comprising four key elements: (i) deejaying, \"scratching\" or \"turntabling\"; (ii) rapping, also known as \"MCing\" or \"rhyming\"; (iii) graffiti painting, also known as \"graf\" or \"writing\"; and (iv) breakdancing or \"B-boying\".", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi nuối tiếc sự thương mại hóa của hip hop.", + "infoSlide": "Hip hop là một phong trào nghệ thuật và văn hóa phản ánh âm nhạc, nhảy, thời trang, phong cách, ngôn ngữ và thái độ xã hội. Hip hop khởi nguồn ở một khu dân cư người Mĩ gốc Phi ở South Bronx, New York City vào cuối thập niên 70. Mặc dù Hip hop được biết đến rộng rãi là một từ đồng nghĩa với nhạc rap, Hip hop thực chất bao hàm một văn hóa rộng lớn hơn bao gồm 4 yếu tố chính: (i) DJ, (ii) rap, (iii) graffiti paint, (iv) breakdance.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "THBT cancel culture does progressive movements more harm than good.", + "infoSlide": "Cancel culture refers to the popular practice that originated on social media of withdrawing all support for (cancelling) public figures and/or companies after they have done or said something considered objectionable or offensive. This cancelling can be initiated by individuals or groups. Cancel culture usually involves, but is not limited to; the calling out of bad behaviour, the boycott of works (e.g. products, music, movies) and demands for removal from public platforms.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi tin rằng văn hóa tẩy chay gây hại nhiều hơn mang lại lợi ích cho các phong trào tiến bộ.", + "infoSlide": "\"Văn hóa tẩy chay\" là một hành động phổ biến phát triển trên mạng xã hội, khi mọi người dừng ủng hộ những người nổi tiếng/các nhãn hàng sau khi họ nói hoặc làm thứ gì đó phản cảm. Hành động tẩy chay này có thể được khởi xướng bởi một cá nhân hoặc một tập thể. Văn hóa tẩy chay thường bao gồm một số hành động như lên tiếng chỉ trích những hành động xấu, tẩy chay các sản phẩm của một nhân vật/công ty nào đó và yêu cầu hình ảnh của họ bị xóa bỏ khỏi những phương tiện truyền thông công cộng. ", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Pre VBC", + "year": "2021", + "format": "BP", + "content": "THR the humanisation of villains in film and media (eg: Joker, Maleficent, Gru, Megamind, etc.)", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Pre VBC", + "year": "2021", + "format": "BP", + "content": "Chúng tôi lấy làm tiếc sự nhân đạo hóa các nhân vật kẻ ác trong phim ảnh và truyền thông. (VD: Joker, Maleficent, Gru, Megamind, etc.)", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "THBT the rise of social media as a primary source of news distribution has done more harm than good.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng sự phát triển của mạng xã hội với vai trò là nguồn cung cấp tin tức chính đem lại nhiều tác hại hơn lợi ích.", + "infoSlide": "", + "division": "English", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "THBT the Vietnamese government should actively and aggressively impose policies of cultural protectionism. (e.g. preferential tax incentives for local firm production groups, government subsidy for shows and music videos that depict Vietnamese culture and history).", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng chính phủ Việt Nam nên chủ động đưa ra các biện pháp mạnh để bảo tồn văn hóa (VD: ưu đãi thuế cho các doanh nghiệp sản xuất trong nước, tài trợ cho các chương trình và MV minh họa lịch sử và văn hóa Việt Nam).", + "infoSlide": "", + "division": "English", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "CNH Debate Open (CDO)", + "year": "2020", + "format": "WSDC", + "content": "TH, as a famous artist who has lost sympathy from the public, would prioritize the dedication of professional and high quality works to other activities such as charities, gameshow participation, etc. to regain reputation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "CNH Debate Open (CDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi, với tư cách là một người nghệ sĩ nổi tiếng đã đánh mất thiện cảm từ công chúng, sẽ ưu tiên việc cống hiến các tác phẩm chuyên môn chất lượng cao hơn là những hoạt động khác (làm từ thiện, tham gia gameshow, ...) để lấy lại danh tiếng.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THW allocate the majority of government sports funding to encourage grassroots participation (e.g. amateur community clubs, after school sports clubs, etc.) rather than invest in achieving success in prestigious competitions (e.g.: intensive coaching academies, player and personnel salaries, etc.)", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "", + "infoSlide": "Chúng tôi sẽ phân bổ phần lớn số tiền trợ cấp Thể thao của chính phủ vào việc khuyến khích sự phát triển từ cấp cơ sở (VD: các câu lạc bộ cộng đồng nghiệp dư, câu lạc bộ thể thao sau giờ học, ...) thay vì đầu tư để đạt được thành công ở các giải đấu danh tiếng (VD: các học viện huấn luyện chuyên sâu, lương cầu thủ và nhân sự, ...)", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "THO social media blocking president Donald Trump' account.", + "infoSlide": "", + "division": "Vietnamese", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "Chúng tôi phản đối việc các mạng xã hội khóa tài khoản của tổng thống Donald Trump.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Schools Debate Open (HKSDO)", + "year": "2020", + "format": "WSDC", + "content": "THBT KPOP has done more good than harm to Asian music industry, artists, and art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Schools Debate Open (HKSDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng KPOP đã đem lại nhiều lợi ích hơn là tác hại cho ngành công nghiệp âm nhạc, các nghệ sĩ và nghệ thuật của Châu Á.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Schools Debate Open (HKSDO)", + "year": "2020", + "format": "WSDC", + "content": "This House Opposes the romanticisation of antiheroes in popular culture.", + "infoSlide": "An antihero is a protagonist who is lacking in heroic qualities, such as morality, compassion, and courage. Examples include Severus Snape (Harry Potter), Loki (Marvel Cinematic Universe), and Bakugou Katsuki (My Hero Academia).", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Schools Debate Open (HKSDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi phản đối sự lãng mạn hóa những phản anh hùng trong văn hóa đại chúng.", + "infoSlide": "Phản anh hùng là một nhân vật chính thiếu những phẩm chất anh hùng, như là đạo đức, lòng trắc ẩn, và dũng cảm. VD: Severus Snape (Harry Potter), Loki (Marvel Cinematic Universe), và Bakugou Katsuki (My Hero Academia).", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Oldham Cup", + "year": "2020", + "format": "WSDC", + "content": "THO the norm that popular culture aimed at children should have happy ending.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Oldham Cup", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi phản đối quan niệm rằng văn hóa đại chúng hướng đến trẻ em nên có kết thúc có hậu.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "THO matchmaking TV shows.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "Chúng tôi phản đối các chương trình mai mối trên truyền hình.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "Assuming cybersecurity is ensured, THW use social media accounts instead of ID.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "Giả sự an ninh mạng được đảm bảo tuyệt đối, chúng tôi sẽ sử dụng tài khoản mạng xã hội thay cho chứng minh nhân dân.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "THBT young people should pursue consumer lifestyle rather than saving lifestyle.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "Chúng tôi tin rằng giới trẻ nên theo đuổi lối sống tiêu dùng thay vì lối sống tiết kiệm.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "THBT social networks should remove the content and images of individuals and organizations involved in gangster activities. (Huấn Hoa Hồng, Khá Bảnh, etc.)", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "Chúng tôi tin rằng mạng xã hội nên xóa bỏ nội dung, hình ảnh của các cá nhân, tổ chức có dính líu đến hoạt động Xã hội đen. (Huấn Hoa Hồng, Khá Bảnh, ...)", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "THR the describing of daily lives of the disabled as an inspiration.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "TH prefers a world where the court of public opinion is active.", + "infoSlide": "'Court of public opinion' is a situation in which individuals are accused, justified and judged unofficially by public opinion. Individuals judged guilty will be treated differently, and this judgment is completely independent from that of the court of law.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi ưu tiên một thế giới nơi có toà án dư luận tích cực hoạt động.", + "infoSlide": "\"Toà án dư luận\" là tình huống khi mà những cá nhân bị buộc tội, bào chữa và phán xét một cách không chính thức thông qua dư luận công chúng. Các cá nhân bị phản xử là có tội sẽ bị đối xử một cách khác biệt, và phán quyết này hoàn toàn độc lập với phán quyết của toà án.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "THO the disclosure of the identity of people infected with COVID-19.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi phản đối việc công khai danh tính người nhiễm COVID-19.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "THW eliminate \"culture of denial\".", + "infoSlide": "\"Culture of denial\" is the act of stopping the public in favor of celebrities or companies because of what they have done/said is considered evil. Culture of denial is often discussed on social media.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ loại bỏ \"văn hoá bài trừ\".", + "infoSlide": "\"Văn hoá bài trừ\" là hành động công chúng ngừng ủng hộ những nhân vật nổi tiếng hay công ty vì những điều mà họ đã làm/nói bị coi là xấu xa. Văn hoá bài trừ thường được thảo luận trên mạng xã hội.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "THO the development of \"slum tourism\".", + "infoSlide": "\"Slum tourism\" companies connect tourists with residents of the slums. Visitors are not be allowed to film or take pictures. This is common in Mumbai (India), Manila (Philippines), Johannesburg (South Africa), etc.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "THW decide the number of children a couple can have based on their financial condition.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ quyết định số con một cặp đôi có thể có dựa trên điều kiện tài chính của họ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "We believe that a society with only 1 culture is better than a multicultural society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng một xã hội chỉ có 1 nền văn hoá tốt hơn 1 xã hội đa văn hoá.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "THBT developed countries should deploy protectionist policies to protect low-wage workers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "economics": { + "check": true, + "title": "Economics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi tin rằng các quốc gia đang phát triển nên thực hiện các chính sách bảo hộ để bảo vệ những người lao động thu nhập thấp.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "economics": { + "check": true, + "title": "Economics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Pre VBC", + "year": "2021", + "format": "BP", + "content": "THBT governments should not provide preferential treatment to local firms when allocating investment incentives.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "economics": { + "check": true, + "title": "Economics" + } + }, + "tournamentID": "" + }, + { + "tournament": "CNH Debate Open (CDO)", + "year": "2020", + "format": "WSDC", + "content": "THW temporarily radically relax minimum labor standards during periods of unusually high unemployment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "economics": { + "check": true, + "title": "Economics" + } + }, + "tournamentID": "" + }, + { + "tournament": "CNH Debate Open (CDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi sẽ tạm thời nới giãn triệt để các tiêu chuẩn lao động tối thiểu trong các thời kỳ tỷ lệ thất nghiệp cao bất thường.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "economics": { + "check": true, + "title": "Economics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THBT multinational companies should be liable for human rights abuses that occur anywhere in their supply chains.", + "infoSlide": "A supply chain is a system of organizations, people, activities, information, and resources involved in supplying a product or service to a consumer. Supply chain activities involve the transformation of natural resources, raw materials, and components into a finished product that is delivered to the end customer.", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": { + "economics": { + "check": true, + "title": "Economics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng các công ty đa quốc gia nên chịu trách nhiệm cho những vi phạm về nhân quyền xảy ra ở bất kỳ đâu trong chuỗi cung ứng của họ.", + "infoSlide": "Chuỗi cung ứng (Supply chain) là một hệ thống các tổ chức, con người, hoạt động, thông tin và các nguồn lực liên quan tới việc đưa 1 sản phẩm hay dịch vụ từ nhà cung cấp hoặc nhà sản xuất đến người tiêu dùng. Hoạt động của chuỗi cung ứng liên quan đến việc biến đổi các tài nguyên thiên nhiên, nguyên liệu và các thành phần thành một sản phẩm hoàn chỉnh để giao cho khách hàng cuối cùng (người tiêu dùng).", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": { + "economics": { + "check": true, + "title": "Economics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THW ban job applicants from disclosing the name of the university that issued any degrees they may hold.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "6", + "topic": { + "economics": { + "check": true, + "title": "Economics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi sẽ cấm người đi xin việc tiết lộ tên của trường đại học đã cấp bất kỳ bằng cấp nào mà họ có.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "6", + "topic": { + "economics": { + "check": true, + "title": "Economics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THW ban corporate sponsorship of research within academic or educational institutions.", + "infoSlide": "In the context of this debate, \"corporate\" means for-profit companies.", + "division": "", + "language": "English", + "link": "", + "round": "6", + "topic": { + "economics": { + "check": true, + "title": "Economics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi sẽ cấm các công ty tài trợ cho nghiên cứu trong các cơ sở giáo dục hoặc các tổ chức học thuật.", + "infoSlide": "Trong bối cảnh của trận tranh biện này, 'các công ty' là các doanh nghiệp vì lợi nhuận.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "6", + "topic": { + "economics": { + "check": true, + "title": "Economics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THBT states should reclaim a large proportion of all donations to charities and redistribute it across charities on the basis of their effectiveness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": { + "economics": { + "check": true, + "title": "Economics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng nhà nước nên thu hồi phần lớn tổng cộng các khoản đóng góp cho các tổ chức từ thiện và phân phối lại dựa trên cơ sở là tính hiệu quả của chúng.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": { + "economics": { + "check": true, + "title": "Economics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Schools Debate Open (HKSDO)", + "year": "2020", + "format": "WSDC", + "content": "THBT governments should donate money to NGOs operating in developing countries instead of paying foreign aid.", + "infoSlide": "NGOs are non-profit groups which function independently of any governments. They can be organized on community, national, and international levels, and serve social or political goals such as humanitarian causes or the environment (In the context of this debate, foreign aid refers to assistance in the form of money or resources given from one government to another).", + "division": "", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Schools Debate Open (HKSDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng các chính phủ nên đóng góp tiền cho NGOs vận hành ở các quốc gia đang phát triển thay vì chi tiền cho các khoản viện trợ ngoại quốc.", + "infoSlide": "NGOs là các tổ chức phi lợi nhuận, phi chính phủ. Chúng có thể được tổ chức ở cấp độ cộng đồng, trong nước, và quốc tế, và phục vụ mục tiêu xã hội và chính trị như chủ nghĩa nhân đạo hoặc môi trường (Trong bối cảnh của trận tranh biện này, khoản viện trợ ngoại quốc đề cập tới sự hỗ trợ dưới dạng tiền bạc hoặc tài nguyên từ chính phủ này sang chính phủ khác).", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Cogic Debate Online (CODO)", + "year": "2020", + "format": "AP", + "content": "TH will levy high taxes on companies that use AI instead of labourers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Cogic Debate Online (CODO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ đánh thuế cao những công ty sử dụng AI thay nhân công lao động.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Nghe Tinh Debate Open (NTDO)", + "year": "2020", + "format": "WSDC", + "content": "We will break Apple's monopoly.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Nghe Tinh Debate Open (NTDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi sẽ phá vỡ thế độc quyền thị trường của Apple.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Nghe Tinh Debate Open (NTDO)", + "year": "2020", + "format": "WSDC", + "content": "We believe that economic policies should be decided by a panel of experts instead of politicians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Nghe Tinh Debate Open (NTDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng các chính sách về kinh tế nên được quyết định bởi một hội đồng chuyên gia thay vì các chính trị gia.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "THBT Vietnam should adopt the sustainable direction instead of the developmental direction.", + "infoSlide": "Vietnam is a country with one of the highest GDP increase rate in the world. America has just decided to remove Vietnam from the list of developing countries, meaning that ODA support for Vietnam is likely to be cut. Now, Vietnam can head in two directions. The sustainable direction is to temporarily halt the speed at which the economy develops, investing in non-profitable departments (education, infrastructures, etc.) to remain in the list of developing countries. The developmental direction is to continue encouraging economic growth to exploit the chance, thus stop being a developing country and instead become a moderately developed country.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + }, + "politics": { + "check": true, + "title": "Politics" + }, + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng Việt Nam nên áp dụng Hướng đi Bền vững thay vì Hướng đi Phát triển.", + "infoSlide": "Việt Nam là một quốc gia tăng trưởng GDP nhanh hàng đầu thế giới. Mỹ vừa quyết định sẽ đưa Việt Nam ra khỏi danh sách các nước đang phát triển, đồng nghĩa với việc trợ cấp ODA của Việt Nam có nguy cơ bị cắt giảm. Việt Nam lúc này có 2 hướng đi. Hướng đi Bền Vững là tạm phanh tốc độ phát triển kinh tế, dành nguồn tiền đầu tư vào các ngành không sinh lãi ( giáo dục, cơ sở hạ tầng, ...) để duy trì ở trong nhóm nước đang phát triển. Hướng đi Phát Triển là tiếp tục tăng trưởng kinh tế để tận dụng cơ hội, từ đó vươn ra khỏi nhóm nước đang phát triển, trở thành một quốc gia phát triển trung bình.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + }, + "politics": { + "check": true, + "title": "Politics" + }, + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "THBT minority communities should heavily prioritise teaching values of individualism to children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi tin rằng các cộng đồng thiểu số nên tích cực ưu tiên dạy trẻ con về những giá trị của chủ nghĩa cá nhân.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "TH opposes the growth of students' social activities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "THW abolish university ranking systems.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "THW require children from 18 years old to pay for the money that their parents/guardians spent on bringing them up.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "THBT that students' faults should only be kept to themselves instead of being publicised in the class.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "THO the privatization of schools for gifted students.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "THBT that from secondary schools, schools should treat students as clients.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "Chúng tôi phản đối sự phát triển của các hoạt động xã hội của học sinh-sinh viên.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "Chúng tôi sẽ xóa bỏ các hệ thống xếp hạng đại học.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "Chúng tôi sẽ bắt buộc con cái từ 18 tuổi trở lên sẽ trả lại khoản tiền mà cha mẹ/người bảo hộ đã dùng để nuôi nấng họ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "Chúng tôi tin rằng lỗi sai của mỗi học sinh nên được giữ riêng cho học sinh đó thay vì công khai trước lớp học.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "Chúng tôi phản đối sự tư nhân hóa các trường chuyên.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "Chúng tôi tin rằng từ cấp phổ thông trung hộc (THCS và THPT), trường học nên đối xử với học sinh như khách hàng.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "THBT literature curriculum at schools should replace classic literature (Tắt đèn, Số đỏ, 1984, Weathering Heights, Crime and Punishment) with popular young adult books (To All the Boys I have Loved Before, The Fault in Our Stars, Twilight Saga).", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng các trường nên thay thế các tác phẩm văn học cổ điển (Tắt đèn, Số đỏ, 1984, Đồi gió hú, Tội ác và hình phạt) trong chương trình ngữ văn của mình bằng các tiểu thuyết tuổi teen (Những chàng trai năm ấy, Khi lỗi thuộc về những vì sao, Series Chạng vạng).", + "infoSlide": "", + "division": "English", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "CNH Debate Open (CDO)", + "year": "2020", + "format": "WSDC", + "content": "THBT governments of developing countries should actively discourage students from pursuing post-secondary education abroad.", + "infoSlide": "Post-secondary education is any level of education after high school, including education obtained from colleges, universities, trade schools, seminaries, institutes of technology and any other facility that offers an academic degree or certificate.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "CNH Debate Open (CDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng chính phủ của các quốc gia đang phát triển nên tích cực ngăn cản sinh viên theo đuổi giáo dục hậu phổ thông ở nước ngoài.", + "infoSlide": "Hậu phổ thông là bất cứ một chương trình giáo dục nào từ cấp bậc Đại học trở lên.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THW pay additional benefits to families on welfare according to their child’s performance in school.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi cho các gia đình được hưởng thêm phúc lợi dựa trên kết quả học tập của con họ ở trường.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "THB that Asian educational system should promote the opinion that Asian culture is better than Western culture.", + "infoSlide": "", + "division": "Vietnamese", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng hệ thống giáo dục châu Á nên tích cực thúc đẩy quan niệm văn hóa châu Á tốt đẹp hơn văn hóa phương Tây.", + "infoSlide": "", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THBT college entrance examinations should accept students on the basis of their academic performance in secondary education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng các trường đại học nên tuyển học sinh dựa trên thành tích học tập ở bậc trung học.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi ủng hộ thế giới mà chính quyền đưa tiền cho các cá nhân để họ có thể tự do lựa chọn các con đường học tập của bản thân (bao gồm nhưng không giới hạn lựa chọn về trường, các học viện tư nhân và gia sư) thay vì đầu tư vào nền giáo dục công lập.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THW abolish all requirements and evaluation criteria in higher education (i.e, attendance, exams, assignments).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THW abolish all requirements and evaluation criteria in higher education (e.g. attendance, exams, assignments, etc.)", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ loại bỏ tất cả yêu cầu và tiêu chuẩn đánh giá ở các cấp học cao hơn (VD: sự chuyên cần, các kì thi, công việc được giao, ...)", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Oldham Cup", + "year": "2020", + "format": "WSDC", + "content": "THBT formerly colonised nations should only teach local indigenous literature, to the exclusion of literature from other countries.", + "infoSlide": "", + "division": "Senior", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Oldham Cup", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng các quốc gia thuộc địa trước đây chỉ nên dạy văn học bản quốc thay vì văn học ngoại quốc.", + "infoSlide": "", + "division": "Senior", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Oldham Cup", + "year": "2020", + "format": "WSDC", + "content": "THP a world where the research, writing and teaching of history focuses on studying the lives of ordinary people as opposed to that of important leaders of society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Oldham Cup", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi ủng hộ một thế giới nơi mà việc nghiên cứu, ghi chép và giảng dạy lịch sử tập trung vào nghiên cứu cuộc sống của những con người bình thường thay vì của các nhà lãnh đạo quan trọng trong xã hội.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "THR the popularity of the notion: \"University is the fundamental path to success\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "Chúng tôi lấy làm tiếc về sự phổ biến của quan niệm: \"Đại học là con đường nền tảng dẫn đến thành công\".", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Nghe Tinh Debate Open (NTDO)", + "year": "2020", + "format": "WSDC", + "content": "We believe that schools for colored people should educate students that their future depends on individual efforts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Nghe Tinh Debate Open (NTDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng các trường học dành cho người da màu nên giáo dục học sinh rằng tương lai của chúng phụ thuộc vào nỗ lực của từng cá nhân.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "THBT Vietnam should not teach history in a way that emphasizes the praise of the nation's victories.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng Việt Nam không nên dạy lịch sử theo cách chú trọng ca ngợi các thắng lợi của quốc gia.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "THW eliminate student attendance score.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "THW build vocational schools and bring in low performing students here.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "If we could only choose one of the two, we, as students of the below average intelligence group, would choose a world where everyone has an average education instead of a world where 50% of the population who have low intellectual level enjoy basic education, and the rest 50% of the population with high intellectual level enjoy advanced education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "TH, as members of the Vietnamese debate community, will invest this money in the National Debate Team.", + "infoSlide": "Suppose the ministry of education provides a budget to the Vietnamese debate community. However, this budget is only enough to develop the National Debate Team (Level 3 and University) or distribute it to develop debate in remote areas of Vietnam.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "We believe that the Vietnamese debate community should set up a confession page.", + "infoSlide": "Confession pages are created on social networking applications to allow participants to create anonymous confession posts by sending them to the pages' administrators. The administrators have no obligation to investigate the authenticity of information.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "THW prioritize the training of debate in Vietnamese over English.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ xoá bỏ việc tính điểm chuyên cần của học sinh.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ xây dựng các trường dạy nghề và đưa những học sinh có thành tích học tập yếu vào đây.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Nếu chỉ được lựa chọn một trong hai, chúng tôi, những học sinh thuộc nhóm trí tuệ dưới trung bình, sẽ lựa chọn một thế giới mà mọi người đều được hưởng nền giáo dục trung bình thay vì thế giới mà 50% dân số trí tuệ thấp được hưởng giáo dục cơ bản, và 50% dân số trí tuệ cao được hưởng giáo dục nâng cao.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi, những thành viên của cộng đồng tranh biện Việt Nam, sẽ đầu tư khoản tiền này cho Đội tuyển tranh biện Quốc gia.", + "infoSlide": "Giả sử bộ giáo dục cung cấp một khoản ngân sách cho cộng đồng tranh biện Việt Nam. Tuy nhiên, khoản ngân sách này chỉ đủ để phát triển Đội tuyển tranh biện quốc gia (Cấp 3 và Đại học) hoặc phân bổ để phát triển tranh biện ở các vùng sâu, vùng xa của Việt Nam.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ ưu tiên đào tạo tranh biện bằng tiếng Việt hơn bằng tiếng Anh.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "THS the creation of LGBTQIA+-only schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi ủng hộ việc thành lập các trường học dành riêng cho cộng đồng LGBTQIA+.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Pre VBC", + "year": "2021", + "format": "BP", + "content": "THBT feminist organisations should not criticize female politicians for their views on women's issues.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Pre VBC", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng các tổ chức hoạt động nữ quyền không nên phê bình các chính trị gia nữ vì góc nhìn của họ về các vấn đề liên quan đến phụ nữ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "TH, as feminists, would encourage women not to wear make-up.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "Chúng tôi, những nhà hoạt động nữ quyền, sẽ khuyến khích phụ nữ không trang điểm.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "TH, as Jane, would choose to work at an elite Catholic high school for boys instead of an all-girls public high school in an underprivileged neighbourhood.", + "infoSlide": "Jane is a young, politically progressive female teacher with an interest in activism. She has many years of experience anad expertise in advocacy education.", + "division": "English", + "language": "English", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + }, + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "Chúng tôi, với tư cách là Jane, sẽ chọn làm việc ở một ngôi trường THPT Công giáo ưu tú thay vì một ngôi trường THPT nữ sinh công lập tại một khu dân cư có điều kiện kinh tế khó khăn.", + "infoSlide": "Jane là một nữ giáo viên trẻ có tư tưởng chính trị tiến bộ và quan tâm đến các hoạt động phong trào xã hội. Cô có nhiều năm kinh nghiệm và chuyên môn trong ngành giáo dục vận động các phong trào xã hội.", + "division": "English", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + }, + "education": { + "check": true, + "title": "Education" + } + }, + "tournamentID": "" + }, + { + "tournament": "CNH Debate Open (CDO)", + "year": "2020", + "format": "WSDC", + "content": "THBT celebrities have corrupted the feminist movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "CNH Debate Open (CDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng người nổi tiếng đã làm biến chất phòng trào nữ quyền.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THBT mainstream search engines should refuse to list results with sexist, racist or otherwise offensive content.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "6", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng các công cụ tìm kiếm chính thống nên từ chối hiển thị các kết quả có nội dung phân biệt giới tính, chủng tộc hoặc các nội dung phản cảm khác.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THBT large international institutions (e.g. UN & World Bank) should only accept female country delegates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "PDOs - Motion 2", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng các tổ chức quốc tế lớn (như Liên Hợp Quốc & Ngân hàng Thế giới) chỉ nên chấp nhận các đại biểu quốc gia nữ.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "PDOs - Motion 2", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THBT social movements should actively use anger to mobilise support for their cause.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Octofinals - Motion 2", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THBT social movements should actively use anger to mobilise support for their cause.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Octofinals - Motion 2", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng các phong trào xã hội nên chủ động dùng sự bức xúc để huy động sự ủng hộ cho mục đích của họ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Octofinals - Motion 2", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Oldham Cup", + "year": "2020", + "format": "WSDC", + "content": "THBT feminists should challenge militarism instead of advocating for the 'right to fight' (e.g. pushing for the inclusion of women in national draft registration and combat duty).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Oldham Cup", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng các nhà nữ quyền nên phản đối chủ nghĩa quân phiệt thay vì đấu tranh cho 'quyền chiến đấu' (ví dụ như thúc đẩy việc bao gồm phụ nữ trong quá trình ghi danh quân dịch quốc gia và nghĩa vụ chiến đấu).", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THW disclose this information.", + "infoSlide": "Context: A prominent member of the LGBT movement has discovered that a very influential politician helping the LGBT movement has been lying about their sexual orientation as being gay when they are straight.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ tiết lộ thông tin này.", + "infoSlide": "Bối cảnh: Một thành viên nổi bật trong phong trào LGBT đã phát hiện ra rằng một nhà chính trị gia ủng hộ LGBT có ảnh hưởng vô cùng lớn đã nói dối về xu hướng tính dục của mình (người này bảo mình đồng tính nhưng thực ra người đó dị tính).", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THBT the LGBTQIA+ movement should denounce the existence of marriage as opposed to fighting for equal rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng phong trào LGBTQIA+ nên đấu tranh để loại bỏ sự tồn tại của hôn nhân thay vì đấu tranh cho quyền bình đẳng.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THBT the LGBTQIA+ movement should condemn the consumption of movies and TV shows that cast straight actors in non-heterosexual identified roles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng phong trào LGBTQIA+ nên lên án các sự tiêu thụ phim ảnh và chương trình TV được đóng bởi diên viên thẳng trong các vai được xác định là không dị tính.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Schools Debate Open (HKSDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi, với tư cách là một nữ chính trị gia, sẽ dùng quan niệm rằng những phẩm chất truyền thống của phái nữ (VD: lòng trắc ẩn, lòng nhân ái) giúp các lãnh đạo nữ đối phó với thời kì khủng hoảng tốt hơn.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "THBT feminist movement should praise the decline in childbirth rates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "Chúng tôi tin rằng phong trào nữ quyền nên tán dương sự giảm thiểu tỉ lệ sinh đẻ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "THW demand religious leaders to amend religious doctrines that belittle gender equality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi sẽ yêu cầu các lãnh đạo tôn giáo phải thay đổi những giáo lý hạ thấp sự quan trọng của bình đẳng giới.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "THBT film and television awards should scrap gender-specific categories.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng các giải thưởng điện ảnh và truyền hình nên huỷ bỏ các hạng mục giải thưởng riêng biệt theo giới tính.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "TH, as a feminist movement, would oppose the trope \"unlike any other girl\".", + "infoSlide": "The trope \"unlike any other girls\" is a popular plot in movies or books, etc. In this trope, the female lead is described as special or extraordinary (e.g. extremely smart, persistent, independent, unaffected by emotional changes) compared to other girls.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi, dưới tư cách phong trào nữ quyền, sẽ phản đối hình tượng \"không giống bất kì cô gái nào khác\".", + "infoSlide": "Hình tượng \"không giống bất kì cô gái nào khác\" là một cốt truyện phổ biến trong phim ảnh/sách/truyện/... Trong đó, nữ chính được miêu tả là một nhân vật đặc biệt và khác thường ( Ví dụ như cực kì thông minh , kiên cường , độc lập , không bị chi phối bởi cảm xúc ) so với những cô gái khác.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "gfl": { + "check": true, + "title": "Gender/Feminism/LGBT" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "", + "content": "THBT the \"Two-Child Policy\" should be implemented across the world.", + "infoSlide": "For the purpose of this debate, the \"Two-Child Policy\" refers to a policy where each adult is granted a tradeable permit to have one child (e.g. a couple, without buying and selling extra permits, can have up to two children). Assume that the policy can be effectively enforced, such that no child is born without their parents having the required permits.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "", + "content": "Chúng tôi tin rằng \"chính sách 2 con\" nên được áp dụng trên toàn thế giới.", + "infoSlide": "Trong bối cảnh của trận tranh biện này, \"Chính sách 2 con\" là chính sách mà mỗi người lớn được cấp giấy phép (có thể trao đổi) để có một con (ví dụ: một cặp đôi, nếu không mua hoặc bán thêm giấy phép, có thể có nhiều nhất 2 con). Giả sử chính sách này được thực hiện một cách hiệu quả, sao cho không có đứa trẻ nào được sinh ra nếu như bố mẹ của chúng chưa được cấp số giấy phép cần thiết.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "THBT it is justified for women to lie about their relationship status and future plans during job interviews.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "Chúng tôi tin rằng việc phụ nữ nói dối về trạng thái các mối quan hệ và kế hoạch tương lai của họ trong các buổi phỏng vấn xin việc là hoàn toàn chính đáng.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "TH prefers a world where all romantic relationships are consensually polyamorous.", + "infoSlide": "Polyamory is the practice of having a romantic relationship with more than one partner with informed consent of all the partners involved in the arrangement.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "Chúng tôi ủng hộ một thế giới mà mọi mối quan hệ lãng mạn đều là đa ái.", + "infoSlide": "Đa ái là việc có mối quan hệ lãng mãn với nhiều hơn một người với sự đồng thuận của tất cả mọi người liên quan.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Shanghai International Debate Open (SIDO)", + "year": "2020", + "format": "BP", + "content": "TH prefers to live in a world where people predominantly believe that free will does not exist.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Shanghai International Debate Open (SIDO)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi ủng hộ một thế giới mà mọi người hầu hết đều tin rằng ý chí tự do không tồn tại.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "THBT couples studying abroad should break up instead of trying to maintain a long-distance relationship.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "Chúng tôi tin rằng các cặp đôi nên chia tay khi đi du học thay vì cố gắng yêu xa.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "CNH Debate Open (CDO)", + "year": "2020", + "format": "WSDC", + "content": "THR the notion that \"family love should be unconditional\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "CNH Debate Open (CDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi lấy làm tiếc về quan niệm \"tình cảm gia đình nên vô điều kiện\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THR the emphasis on longevity in relationships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Assuming feasibility, THW choose to continuously relive the happy moment of one's life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi lấy làm tiếc sự nhấn mạnh về sự lâu dài trong các mối quan hệ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Giả sử có thể, chúng tối sẽ chọn liên tục tái hiện các khoảnh khắc vui vẻ của trong cuộc đời của một người.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "THO the trend of honoring the wealthy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "Chúng tôi phản đối xu hường vinh danh người giàu.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Cogic Debate Online (CODO)", + "year": "2020", + "format": "AP", + "content": "TH as the Chinese government, would apply polyandry policy to women and only women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Cogic Debate Online (CODO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi, với tư cách là chính phủ Trung Quốc, sẽ áp dụng chính sách đa phu cho phụ nữ và chỉ phụ nữ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "THR the strategy of publicly shaming people for microagressions.", + "infoSlide": "Microaggression is a term used for brief and commonplace daily verbal, behavioral, or environmental indignities, whether intentional or unintentional, that communicate hostile, derogatory, or negative prejudicial slights and insults toward any group, particularly the culturally marginalized ones. Microaggresions can appear to be a compliment or a joke, but contain a hidden insult about a group of people. Microaggressions differ from macroagressions, which are more extreme forms of discrimination (such as lynchings or beatings) due to their ambiguity, size and commonality.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi nuối tiếc chiến lược công khai làm xấu hổ những người có hành động 'gây hấn vi mô'.", + "infoSlide": "'Gây hấn vi mô' là một cụm từ dùng để chỉ các hành động nhỏ trong sinh hoạt thường ngày làm người khác thấy xấu hổ và mất danh dự, có thể có chủ ý hoặc không. Các hành động này thường thể hiện sự xúc phạm và các định kiến tiêu cực đến các nhóm thiểu số. Các hành động gây hấn vi mô có thể là một lời khen hoặc một câu đùa, nhưng chúng ẩn chứa một sự xúc phạm về một nhóm người nhất định. Các hành động gây hấn vi mô khác với các hành động gây hấn vĩ mô ở sự không rõ ràng, mức độ và sự thường xuyên. Các hành động gây hấn vĩ mô là các dạng phân biệt đối xử cực đoan hơn (ví dụ như treo cổ hoặc đánh đập).", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "THP the notion that people should appreciate the differences between themselves and others instead of trying to find common values.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi ủng hộ quan niệm con người nên tôn trọng sự khác biệt giữa bản thân với những người xung quanh, thay vì cố gắng tìm các điểm tương đồng.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "THR teaching children to believe in the notion that good people win over bad guys.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "THBT parents should conceal their use of the \"Happy Families\" service from their children.", + "infoSlide": "In 2050, the company \"Happy Families\" invented an AI parent that can take care of children like their real parents and the children cannot distinguish.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "TH, as Mrs. Nở, would refuse to accept this gift.", + "infoSlide": "Nở is an expectant mother bearing her first child but her husband unfortunately passed away. Nở's family have decided to buy her an AI that is 90% similar to her husband based on information about her husband (his voice, personality and appearance).", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi, với tư cách cô Nở, sẽ từ chối nhận món quà này.", + "infoSlide": "Nở là một người mẹ đơn thân đang mang thai đứa con đầu tiên nhưng chồng cô không may qua đời. Gia đình Nở quyết định đặt mua một con AI giống với chồng cô 90% dựa trên những thông tin của người chồng (giọng nói, miêu tả tính cách, hình dáng) dành tặng cho Nở.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "tournamentID": "" + }, + { + "tournament": "CNH Debate Open (CDO)", + "year": "2020", + "format": "WSDC", + "content": "THBT the fight against climate change should include international implications against nations that have allowed or have been indifferent to actions directly affecting the environment.", + "infoSlide": "International implications can be exclusion from international organizations, embargoes, military intervention, etc.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "tournamentID": "" + }, + { + "tournament": "CNH Debate Open (CDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng công cuộc chống biến đổi khí hậu nên bao gồm các gây các ảnh hưởng quốc tế lên các quốc gia đã cho phép hoặc thờ ơ với những hành động trực tiếp ảnh hưởng đến môi trường.", + "infoSlide": "Các ảnh hưởng quốc tế có thể kể đến bao gồm bị khai trừ khỏi các tổ chức quốc tế, cấm vận, can thiệp quân sự, v.v.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Schools Debate Open (HKSDO)", + "year": "2020", + "format": "WSDC", + "content": "THO the narrative that technological development (e.g. investing heavily in renewable energy, building sea walls) should be the primary approach to solving climate change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Octofinals", + "topic": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Schools Debate Open (HKSDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi phản đối quan niệm rằng sự phát triển công nghệ (ví dụ như đầu tư mạnh vào năng lượng tái tạo, xây dựng tường chắn sóng) nên là hướng đi chính để giải quyết biến đổi khí hậu.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Octofinals", + "topic": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "tournamentID": "" + }, + { + "tournament": "DAV Debate Open (DDO)", + "year": "2020", + "format": "AP", + "content": "THW establish an environmental commissioner who has universal prosecutory powers for crimes against the environment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "tournamentID": "" + }, + { + "tournament": "DAV Debate Open (DDO)", + "year": "2020", + "format": "AP", + "content": "THW legalise the licensed hunting of endangered animals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "tournamentID": "" + }, + { + "tournament": "DAV Debate Open (DDO)", + "year": "2020", + "format": "AP", + "content": "Assuming feasibility, THW mandate a central global authority to control food markets (supply, production, price, etc.)", + "infoSlide": "In 2020, the World Food Programme (WFP) was awarded the Nobel Peace Prize for its efforts in combatting hunger. Globally, the agricultural industry produces enough food to meet the energy needs of all people alive today. However, the UN estimated that 815 million people, over 10% of the world's population, are suffering from chronic undernourishment; although technological advances have increased production, food shortages remain an issue.", + "division": "", + "language": "English", + "link": "", + "round": "3", + "topic": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "tournamentID": "" + }, + { + "tournament": "DAV Debate Open (DDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ thành lập một ủy viên môi trường; người này sẽ có quyền truy tố các tội ác với môi trường trên toàn cầu.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "tournamentID": "" + }, + { + "tournament": "DAV Debate Open (DDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ hợp pháp hóa việc săn bán động vật có nguy cơ tuyệt chủng có giấy phép.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "tournamentID": "" + }, + { + "tournament": "DAV Debate Open (DDO)", + "year": "2020", + "format": "AP", + "content": "Giả định tính khả thi, chúng tôi sẽ ủy quyền cho một cơ quan trung ương toàn cầu kiểm soát thị trường thực phẩm (nguồn cung cấp, sản xuất, giá cả, v.v.)", + "infoSlide": "Năm 2020, Chương trình Lương thực Thế giới (WFP) đã được trao giải Nobel Hòa Bình cho những nỗ lực của mình nhằm đẩy lùi nạn đói. Trên toàn thế giới, ngành nông nghiệp sản xuất đủ thực phẩm để thỏa mãn nhu cầu năng lượng của tất cả mọi người. Tuy nhiên, Liên Hợp Quốc đã ước tính rằng có 815 triệu người, hơn 10% dân số thế giới, đang chịu cảnh suy dinh dưỡng mãn tính; mặc dù những tiến bộ công nghệ đã đẩy mạnh sản lượng, thiếu thốn lương thực vẫn là một vấn đề. ", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "3", + "topic": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "THW ban scientific studies showing medicinal uses of wild animals (rhino horn, bear bile).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1", + "topic": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "Chúng tôi sẽ cấm những nghiên cứu khoa học chỉ ra các loại động vật hoang dã có thể giúp chữa bệnh (sừng tê giác, mật gấu).", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "1", + "topic": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "tournamentID": "" + }, + { + "tournament": "Nghe Tinh Debate Open (NTDO)", + "year": "2020", + "format": "WSDC", + "content": "We believe that environmental refugees should be granted citizenship in countries that have heavily contributed to global pollution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "tournamentID": "" + }, + { + "tournament": "Nghe Tinh Debate Open (NTDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng những Người tị nạn môi trường nên được cấp quyền công dân ở các quốc gia mà đã đóng góp nặng nề cho ô nhiễm toàn cầu.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "THB that developed countries should be forced to accept climate refugees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng các nước phát triển nên bị buộc phải chấp nhận những người dân tị nạn do biến đổi khí hậu.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "Given the technology to accurately measure and transfer happiness, THW progressively tax and redistribute happiness.", + "infoSlide": "To progressively tax and redistribute means to increase taxes as the taxable value increases and to reallocate that value to others.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "philosophy": { + "check": true, + "title": "Philosophy" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "Giả sử có thể đo một cách chính xác và chuyển giao sự hạnh phúc, chúng tôi sẽ đánh thuế dần dần và thực hiện phân phối lại sự hạnh phúc.", + "infoSlide": "Đánh thuế dần dần và phân chia nghĩa là tăng thuế dựa theo mức độ mà giá trị có thể đánh thuế được tăng và phân phát lại giá trị đánh thuế đó cho người khác.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "philosophy": { + "check": true, + "title": "Philosophy" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "TH opposes the narrative that we should be empathetic.", + "infoSlide": "Empathy is the capacity for one to feel or understand what another person is experiencing.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "philosophy": { + "check": true, + "title": "Philosophy" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "Chúng tôi phản đối quan niệm rằng chúng ta nên đồng cảm.", + "infoSlide": "Đồng cảm là khả năng cảm nhận hoặc thấu hiểu những gì người khác đang trải qua.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "philosophy": { + "check": true, + "title": "Philosophy" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "THW use this technology.", + "infoSlide": "There is a technology that allows people to sell and buy individual attributes such as intelligence, physical appearance, stamina, and so on. Upon the agreement of sales between two individuals, the technology will transplant the attribute from the seller to the buyer. Once an attribute is sold, you can never get it back.", + "division": "English", + "language": "English", + "link": "", + "round": "", + "topic": { + "philosophy": { + "check": true, + "title": "Philosophy" + }, + "technology": { + "check": true, + "title": "Technology" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "Chúng tôi sẽ sử dụng công nghệ này.", + "infoSlide": "Có một loại công nghệ cho phép mọi người mua bán các đặc tính cá nhân như trí thông minh, vẻ đẹp ngoại hình, sức bền, v.v. Với sự đồng ý của hai bên mua bán, công nghệ này sẽ chuyển giao đặc tính từ người bán sang người mua. Khi đã bán một đặc tính nào thì không bao giờ có thể lấy lại đặc tính đó.", + "division": "English", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "philosophy": { + "check": true, + "title": "Philosophy" + } + }, + "tournamentID": "" + }, + { + "tournament": "CNH Debate Open (CDO)", + "year": "2020", + "format": "WSDC", + "content": "THR the appreciation of the notion of seeking meaning in life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "philosophy": { + "check": true, + "title": "Philosophy" + } + }, + "tournamentID": "" + }, + { + "tournament": "CNH Debate Open (CDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi lấy làm tiếc về sự đề cao quan niệm \"đi tìm ý nghĩa\" trong cuộc sống..", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "philosophy": { + "check": true, + "title": "Philosophy" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "THO applying science as the primary interpretation of the world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "philosophy": { + "check": true, + "title": "Philosophy" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi phản đối sử dụng khoa học như là cách lý giải chính về thế giới.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "philosophy": { + "check": true, + "title": "Philosophy" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "THP that a world where people can fully control their own emotions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "philosophy": { + "check": true, + "title": "Philosophy" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "Chúng tôi ủng hộ thế giới nơi mọi người có thể hoàn toàn làm chủ cảm xúc của bản thân.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "philosophy": { + "check": true, + "title": "Philosophy" + } + }, + "tournamentID": "" + }, + { + "tournament": "Cogic Debate Online (CODO)", + "year": "2020", + "format": "AP", + "content": "TH prioritizes a world that maximizes productivity over a world that maximizes enjoyment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "philosophy": { + "check": true, + "title": "Philosophy" + } + }, + "tournamentID": "" + }, + { + "tournament": "Cogic Debate Online (CODO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi ưu tiên một thế giới tối đa hoá năng suất hơn một thế giới tối đa hoá sự hưởng thụ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "philosophy": { + "check": true, + "title": "Philosophy" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "THO the narrative that democracy is an innate human right.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "THBT society should not celebrate violent and militant revolutionary figures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi phản đối quan niệm dân chủ là một quyền con người.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi tin rằng xã hội không nên tôn vinh những nhân vật cách mạng bạo lực và hiếu chiến.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "", + "infoSlide": "Tax evasion: illegal underpayment, or nonpayment of taxes. Authoritarianism: a form of government characterized by strong central power maintained by political repression and limiting political freedoms.", + "division": "THBT it is legitimate for individuals to evade taxes in authoritarian regimes.", + "language": "English", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "In times of crises, THP a technocracy over a democracy.", + "infoSlide": "A technocracy is a form of government whereby ministers are chosen based on their technical expertise and background. A technocracy differs from a democracy in that these individuals who are elected are chosen through a process that emphasizes their relevant skills and background, rather than whether or not they fit the majority interests of a majority vote.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "Chúng tôi tin rằng việc các cá nhân trốn thuế trong một chế độ độc tài là chính đáng.", + "infoSlide": "Trốn thuế: việc trả thuế ít hơn mức cần thiết hoặc trốn trả thuế hoàn toàn một cách bất hợp pháp. Độc tài: chế độ chính phủ được thể hiện bằng việc chính phủ thâu tóm quyền lực bằng cách đàn áp chính trị và giới hạn quyền tự do chính trị cá nhân.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "Trong các cuộc khủng hoảng, chúng tôi ủng hộ một chính phủ kỹ trị hơn là dân chủ.", + "infoSlide": "Kỹ trị là một dạng chính phủ mà các quan chức được chọn dựa vào độ thông thạo kĩ thuật của họ. Một xã hội kỹ trị khác với một xã hội dân chủ ở chỗ là ở xã hội kỹ trị thì những con người này được chọn để điều hành đất nước qua một quá trình chọn lọc mà coi trọng kĩ năng liên quan của họ, thay vì việc cá nhân đó có được sự ủng hộ của số đông hay không.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Pre VBC", + "year": "2021", + "format": "BP", + "content": "TH, as the Biden Administration, would not prosecute Donald Trump for his accused crimes (tax and bank fraud, real-estate fraud, sexual misconduct/harassment, inciting mob violence, Russian interference in 2016 election, etc.)", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Pre VBC", + "year": "2021", + "format": "BP", + "content": "Chúng tôi, với tư cách là cơ quan hành chính dưới quyền Tổng thống Biden, sẽ không khởi tố Donald Trump vì những tội ác mà Trump bị cáo buộc (gian lận thuế và ngân hàng, gian lận bất động sản, quấy rối tình dục, kích động bạo lực đám đông, sự can thiệp của Nga vào cuộc bầu cử năm 2016, v.v)", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "THR the rise of nationalist leaders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "Chúng tôi hối tiếc về sự gia tăng của mức độ phổ biến của các nhà lãnh đạo dân tộc chủ nghĩa.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THBT opposition political parties should boycott elections, rather than contest them, when the electoral process is believed not to be free and fair.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THW ban political parties and require all candidates for national public office to seek election as independents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng các đảng chính trị đối lập nên tẩy chay các cuộc bầu cử thay vì tranh chấp chúng khi quá trình bầu cử được cho là không tự do và công bằng.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi sẽ cấm các đảng phái chính trị và yêu cầu tất cả các ứng cử viên cho những chức vụ công của quốc gia vận động bầu cử độc lập.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Oldham Cup", + "year": "2020", + "format": "WSDC", + "content": "THBT progressive individuals in weak democracies seeking to improve society should work for corrupt governments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Oldham Cup", + "year": "2020", + "format": "WSDC", + "content": "THR the normalisation of the politics of outrage.", + "infoSlide": "The politics of outrage refers to a norm of embracing anger in public discourse and using public anger as one of many responses to a social issue. This is as opposed to a norm of dispassionate objectivity where participants in the discourse are generally calm.", + "division": "Junior", + "language": "English", + "link": "", + "round": "Semifinals", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Oldham Cup", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng những cá nhân tiến bộ trong các nền dân chủ yếu kém có mong muốn phát triển xã hội nên làm việc cho các chính phủ tham nhũng.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Oldham Cup", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi nuối tiếc sự tiêu chuẩn hóa (bình thường hóa) chính trị cực đoan.", + "infoSlide": "Chính trị cực đoan là việc ủng hộ phản ứng cực đoan trong các buổi diễn thuyết trước công chúng và lợi dụng sự phẫn nộ của công chúng ddeer phản ứng với một vấn đề xã hội. Điều này trái ngược với quy chuẩn về sự công bằng khách quan vì người tham gia các buổi diễn thuyết thường khá trấn tĩnh.", + "division": "Junior", + "language": "Vietnamese", + "link": "", + "round": "Semifinals", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THR the \"Candle Light Will\" narrative in the political discourse of South Korea.", + "infoSlide": "The \"Candle Light Will\" is a term derived from the symbolic candle-light protests for the impeachment of the late president Park Geun Hye, commonly used to mean the people's will to fight against corrupt governments. The Moon Administration has frequently referred to the Candle Light Will as the driving force behind its election that grants legitimacy to this policy.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THW impose a cap on the property and incomes of politicians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THW gives the youth extra votes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi hối tiếc việc sử dụng thuật ngữ \"Candle Light Will\" trong các cuộc tranh luận chính trị ở Hàn Quốc.", + "infoSlide": "\"Candle Light Will\" là một thuật ngữ chỉ cuộc biểu tình có ánh nến biểu tượng cho cuộc luận tội của cựu tổng thống Park Geun Hye, thường dùng để nói về ý chí chống lại những chính quyền tham nhung. Chính quyền của Moon thường xuyên đề cập tới Candle Light Will như là động lực đằng sau cuộc bầu cử đã hợp pháp hóa chính sách này.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ giới hạn tài sản và thu nhập của các chính trị gia.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ cho thế hệ trẻ thêm phiếu bầu cử.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "THBT a minister must have the background and qualifications associated with that department.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng một Bộ trưởng phải có lý lịch cá nhân và bằng cấp liên quan đến ban ngành đó.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "THBT a society with more widespread charity and donation is better than a society with a state-run social welfare system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "We will choose a society that prioritizes global poverty reduction over poverty reduction in their own countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng một xã hội có hoạt động từ thiện và quyên góp phổ biến tốt hơn một xã hội có hệ thống phúc lợi xã hội do Nhà nước điều hành.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi sẽ lựa chọn 1 xã hội ưu tiên giảm đói nghèo toàn cầu hơn giảm đói nghèo trong quốc gia của họ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "TH welcomes China's mask diplomacy.", + "infoSlide": "The term \"Mask diplomacy\" refers to the People's Republic of China's delivery of medical supplies - including masks and personal protection equipment - and offering of medical assistance to countries who are combating the COVID-19 outbreak.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "Chúng tôi ủng hộ chính sách ngoại giao khẩu trang của Trung Quốc.", + "infoSlide": "\"Chính sách ngoại giao khẩu trang\" là việc Trung Quốc phân phát thiết bị y tế - bao gồm khẩu trang và các vật liệu phòng hộ cá nhân - và cung cấp sự giúp đỡ y tế cho những nước đang đối mặt với đại dịch Covid-19.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "THW tax parents of obese children.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "1", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "Chúng tôi sẽ đánh thuế cha mẹ có con béo phì.", + "infoSlide": "", + "division": "English", + "language": "English", + "link": "", + "round": "1", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THO the narrative of sacrifice as a description of the work performed by essential workers during a pandemic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "PDOs - Motion 1", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi phản đối việc miêu tả công việc của các lao động thiết yếu trong một trận đại dịch như một sự hi sinh.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "PDOs - Motion 1", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "THR the notion that: \"Aging is a disease that needs to be cured.\"", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "4", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "Chúng tôi lấy làm tiếc về quan niệm \"Sự già đi là căn bệnh cần phải chữa.\"", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "4", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Nghe Tinh Debate Open (NTDO)", + "year": "2020", + "format": "WSDC", + "content": "We believe the US should replace private insurance companies with Medicare for All.", + "infoSlide": "Medicare for All is a policy that provides universal healthcare insurance to Americans. This system would be paid for by the US government.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Nghe Tinh Debate Open (NTDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng Mỹ nên thay thế các công ty bảo hiểm tư nhân bằng Medicare for All.", + "infoSlide": "Medicare for All là chính sách cung cấp bảo hiểm y tế dành cho tất cả người Mỹ. Chính sách này sẽ được chi trả bởi chính phủ.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "THO the disclosure of the identity of people infected with COVID-19.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi phản đối việc công khai danh tính người nhiễm COVID-19.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "TH, as developing countries, will give priority to economic development since the successful announcement of Covid-19 vaccine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "THBT to combat the Covid-19 epidemic, countries should act according to a common process instead of acting independently as they are today.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "THW prohibit those who obstruct the Covid-19 anti-epidemic efforts (spreading false information, intentionally making a false medical report, deliberately spreading the virus on a large scale) from being vaccinated.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi, với tư cách những quốc gia đang phát triển, sẽ ưu tiên phát triển kinh tế từ khi vắc xin Covid-19 được công bố phát triển thành công.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng để chống lại dịch bệnh Covid-19, các quốc gia nên hành động theo 1 quy trình chung thay vì hành động độc lập như hiện nay.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ cấm không cho những người gây cản trở công tác chống dịch Covid-19 (tung thông tin sai lệch, cố tình không khai báo y tế thành thật, cố tình lây lan virus trên diện rộng) được tiêm vắc xin.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "publicHealth": { + "check": true, + "title": "Public Health" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "THBT ASEAN nations should place sanctions upon Myanmar, conditional upon the treatment of Rohingya refugees in the country.", + "infoSlide": "The Association of Southeast Asian Nations (ASEAN) is a regional group/organisation that promotes economic, political, and security cooperation among its ten current members; Brunei, Cambodia, Indonesia, Laos, Malaysia, Myanmar, the Philippines, Singapore, Thailand, and Vietnam. The Rohingya people are an ethnic group from Myanmar. Most live in Rakhine State on Myanmar’s western coast. Myanmar is a majority-Buddhist nation, but the Rohingya people are primarily Muslim (though a small number are Hindu). Though Myanmar recognizes 135 distinct ethnic groups, the Rohingya are not one of them due to assertions that they are not historically a community that originated from Myanmar itself. Viewed as ‘non-citizens', the Rohingya people lack basic rights within Myanmar and are considered stateless.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Parliamentary Debating Society (HKPDS)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi tin rằng các quốc gia ASEAN nên áp dụng cấm vận lên Myanmar do sự đối xử của chính phủ nước này đối với người Rohingya.", + "infoSlide": "Hiệp hội các quốc gia Đông Nam Á (ASEAN) là một tổ chức khu vực nhằm khuyến khích sự hợp tác về kinh tế, chính trị và an ninh giữa 10 nước thành viên bao gồm Brunei, Campuchia, Indonesia, Lào, Malaysia, Philippines, Singapore, Thái Lan và Việt Nam. Rohingya là một dân tộc ở Myanmar. Họ chủ yếu sống ở tỉnh Rakhine ở bờ tây Myanmar. Myanmar là một nước có phần lớn dân số theo phật giáo, trong khi đó, người Rohingya hầu hết theo đạo hồi (có số ít theo đạo Hindu). Mặc dù Myanmar ghi nhận 135 dân tộc khác nhau, Rohingya lại là không phải là một trong số đó do nhiều ý kiến cho rằng lịch sử không ghi nhận họ là một cộng đồng bắt nguồn ở Myanmar. Do không được công nhận là công dân, người Rohingya không được sở hữu những quyền cơ bản ở Myanmar và bị coi là vô quốc tịch.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Shanghai International Debate Open (SIDO)", + "year": "2020", + "format": "BP", + "content": "THO the ideology of globalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Shanghai International Debate Open (SIDO)", + "year": "2020", + "format": "BP", + "content": "Chúng tôi phản đối hệ tư tưởng chủ nghĩa toàn cầu.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THW not distributed emergency and humanitarian aid through non-state groups linked to terrorism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals - Motion 1", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THBT the West should withdraw their military cooperation from India until they restore special privileges to Kashmiris in the J&K region.", + "infoSlide": "There is an ongoing dispute between India, Pakistan, and China over territory in the former federal unit of Jammu and Kashmir (J&K). J&K was the only state in India to have a majority Muslim population, and there has been a longstanding secessionist movement in this state. The Government of India has consistently responded to this with brutal military repression. Formerly, J&K also enjoyed 'special status'. They had a separate constitution, flag, and autonomy over internal administration of the state. Only designated permanent residents of J&K could own property, obtain government jobs in the state, receive govt. scholarships, etc. In late 2019, the Government of India placed major political leaders under house arrest, revoked its special status, and partitioned the state into two territories that the Government of India has direct and complete control over. Non Kashmiris now can buy land and own property, access government positions, etc, effectively ending any special protections for Kashmiris.", + "division": "", + "language": "English", + "link": "", + "round": "Quarterfinals - Motion 2", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi sẽ không phân phối viện trợ khẩn cấp và viện trợ nhân đạo thông qua các tổ chức không trực thuộc chính phủ liên quan đến khủng bố.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals - Motion 1", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng các nước phương Tây nên rút hợp tác quân sự khỏi Ấn Độ cho đến khi họ khôi phục các đặc quyền đặc biệt cho người Kashmir trong khu vực J&K. ", + "infoSlide": "Ấn Độ, Pakistan và Trung Quốc đang có tranh chấp về lãnh thổ của đơn vị liên bang cũ là Jammu và Kashmir (J&K). J&K là bang duy nhất ở Ấn Độ có đa số dân theo đạo Hồi và đã có một phong trào ly khai lâu đời ở bang này. Chính phủ Ấn Độ đã liên tục đáp trả điều này bằng các cuộc đàn áp quân sự tàn bạo. Trước đây, J&K được hưởng một 'chế độ đặc biệt'. Họ có một hiến pháp, lá cờ riêng và quyền tự trị trong việc quản lý nội bộ của bang. Chỉ những công dân thường trú được chỉ định của J&K mới có thể sở hữu tài sản, làm việc trong chính phủ của bang, nhận được học bổng của chính phủ, v.v. Vào cuối năm 2019, Chính phủ Ấn Độ đã đặt lệnh giam giữ tại nhà một số các nhà lãnh đạo chính trị lớn, thu hồi 'chế độ đặc biệt' và chia bang này thành hai vùng lãnh thổ mà Chính phủ Ấn Độ có toàn quyền kiểm soát trực tiếp. Những người không phải người Kashmir hiện có thể mua đất và sở hữu tài sản, tiếp cận các vị trí trong chính phủ, v.v., chấm dứt hiệu quả mọi biện pháp bảo vệ đặc biệt dành cho người Kashmir.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Quarterfinals - Motion 1", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "THBT these countries should establish a new economic institutions to relace existing ones (WB, IMF, etc.)", + "infoSlide": "BRICS is the name of a large bloc that includes newly connected economies such as Brazil, Russia, India, China and South Africa. Because they felt they were not properly represented in their position in the international agencies, a new forum was created to express interests and plan activities in the bloc.", + "division": "Vietnamese", + "language": "English", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam BP Championship (VBC)", + "year": "2021", + "format": "BP", + "content": "Chúng tôi tin rằng các quốc gia trong khối BRICS nên ập ra một thể chế kinh tế mới để thay thế cho các thể chế hiện hành (WB, IMF, ...)", + "infoSlide": "BRICS là tên gọi một khối lớn bao gôm các nền kinh tế mới nối như Brazil, Nga, Ấn Độ, Trung Quốc và Nam Phi. Bởi vì họ cảm thấy không được đại diện cho mình đúng với vị thế trong các cơ quan quốc rế, cho nên đã lập ra một diễn đàn mới để bày tỏ lợi ích cùng hoạch định hoạt động chung trong khối.", + "division": "Vietnamese", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "THBT the first country to successfully produce Covid-19 vaccine should give away its recipe to other countries for free.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Trường Teen", + "year": "2020", + "format": "", + "content": "Chúng tôi tin rằng, quốc gia đầu tiên sản xuất thành công vắc xin Covid-19 phải cung cấp miễn phí công thức cho toàn thế giới.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "THBT South Korea and North Korea should stop all attempts at unity and treat each other as two independent nations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "Chúng tôi tin rằng Hàn Quốc và Triều Tiên nên ngừng mọi nỗ lực thống nhất và coi nhau như 2 quốc gia độc lập.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Cogic Debate Online (CODO)", + "year": "2020", + "format": "AP", + "content": "TH regrets the advent of \"Arab Spring\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Cogic Debate Online (CODO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi hối tiếc sự kiện Mùa xuân Ả Rập.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "THB educational institutions in developed countries should publicize their academic documents to developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng các cơ sở giáo dục ở các quốc gia phát triển nên công khai các tài liệu học thuật của họ cho các quốc gia đang phát triển.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "THBT ASEAN should break the principle of consent.", + "infoSlide": "Consent means that there is no objection based on free will. Accordingly, the decision will not be passed if only one member state objects.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "THBT ASEAN should establish a closer partnership with China than the US.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "We believe ASEAN should have a common currency.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng ASEAN nên phá bỏ nguyên tắc đồng thuận.", + "infoSlide": "Đồng thuận có nghĩa là không có sự phản đối nào dựa trên sự tự nguyện. Theo đó, quyết định sẽ không được thông qua nếu chỉ có một quốc gia thành viên phản đối.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng ASEAN nên thiết lập quan hệ đối tác gần với Trung Quốc hơn là Mỹ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng ASEAN nên có đồng tiền chung.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "irw": { + "check": true, + "title": "International Relations/War" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "THW nationalise all development and usage of AI that are likely to replace human labour.", + "infoSlide": "Nationalisation refers to the process of transforming privately-owned assets into public-owned assets by bringing them under ownership and control of the national government or state.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "technology": { + "check": true, + "title": "Technology" + } + }, + "tournamentID": "" + }, + { + "tournament": "Asian Online Debating Championship (AODC) - BP", + "year": "2020", + "format": "BP", + "content": "Chúng tôi sẽ quốc hữu hóa mọi công trình phát triển và sự sử dụng trí tuệ nhân tạo mà có khả năng cao sẽ thay thế nhân lực con người.", + "infoSlide": "Quốc hữu hóa là quá trình biến tài sản tư hữu thành tài sản công hữu bằng cách thay đổi quyền sở hữu của chúng thành của chính phủ quốc gia hoặc nhà nước.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "technology": { + "check": true, + "title": "Technology" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THW destroy this technology.", + "infoSlide": "Context: In x years later, a technology that could comprehensively evaluate and record individuals' character traits (e.g maliciousness,wittiness, benevolence, articulateness, etc.) has been developed. This tech can be used to rank and publicise each individual's overall moral worth.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "technology": { + "check": true, + "title": "Technology" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ phá hủy công nghệ này.", + "infoSlide": "Bối cảnh: Trong x năm tới, một ki thuật công nghệ có thể đánh gia toàn diện và thu thập tính cách cá nhân (VD: độc ác, khôn ngoan, cẩn thận, etc) đã được phát triển. Công nghệ này có thể đánh giá công khai giá trị đạo đức của từng cá nhân.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "technology": { + "check": true, + "title": "Technology" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Assuming technology allows, THW allow parents to choose the sex of their baby before birth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "technology": { + "check": true, + "title": "Technology" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Assuming technology allows, in countries with compulsory military service, THW force troops to erase all memories of the battles they participated in before they were discharged.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "technology": { + "check": true, + "title": "Technology" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Giả sử công nghệ cho phép, chúng tôi sẽ cho phép bố mẹ lựa chọn giới tính con của mình trước khi sinh ra.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "technology": { + "check": true, + "title": "Technology" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Giả sử công nghệ cho phép, tại các quốc gia có nghĩa vụ quân sự bắt buộc, chúng tôi sẽ ép quân lính xoá toàn bộ ký ức về những trận chiến họ tham gia trước khi cho họ xuất ngũ.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "technology": { + "check": true, + "title": "Technology" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THP a world where each believer established their own connection to God, rather than establishing one through organised religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Octofinals - Motion 1", + "topic": { + "religion": { + "check": true, + "title": "Religion" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi ủng hộ thế giới nơi mà mỗi tín đồ tự thiết lập liên kết của riêng họ với Chúa thay vì thông qua các tổ chức tôn giáo.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Octofinals - Motion 1", + "topic": { + "religion": { + "check": true, + "title": "Religion" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THW, as a religious leader/group, cease attempts at increasing the number of believers and instead prioritise boosting loyalty amongst adherents to the religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "religion": { + "check": true, + "title": "Religion" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Assuming feasibility, THP a world where a panel of church leaders would create a universally accepted interpretion of the Bible that the believers should abide by.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "religion": { + "check": true, + "title": "Religion" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THW aggressively crackdown on megachurches.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "religion": { + "check": true, + "title": "Religion" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi, với tư cách là một người lãnh đạo tôn giáo/tổ chức tôn giáo, sẽ dừng các nỗ lực tăng số lượng người theo đạo mà thay vào đó củng cố niềm tin của những người đã theo đạo đó.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "religion": { + "check": true, + "title": "Religion" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Giả sử có thể, chúng tôi tin rằng thế giới sẽ tốt hơn khi một nhóm các nhà lãnh đạo tôn giáo tạo ra một bản diễn dịch được chấp thuận toàn cầu của Kinh Thánh mà tất cả các người theo đạo nên tuân theo.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "religion": { + "check": true, + "title": "Religion" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ mạnh tay đàn áp các đại giáo đoàn.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "religion": { + "check": true, + "title": "Religion" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "TH, as a religious leader, would fervently spread the notion that atheists can ascend to heaven.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "religion": { + "check": true, + "title": "Religion" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi với tư cách là lãnh đạo tôn giáo, sẽ tích cực truyền bá quan niệm rằng những người vô thần vẫn có thể lên thiên đường.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "religion": { + "check": true, + "title": "Religion" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "THW choose the job they are passionate about.", + "infoSlide": "Context: You are a talented, middle-class person in your early twenties about to start your career. You have the choice between a job in which you will make a lot of money and work long hours (e.g., investment banker, corporate lawyer, etc.) and a job which pays less but that you are more passionate about (e.g.: social worker, chef, teacher, small business owner, etc.)", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": { + "fiction": { + "check": true, + "title": "Fiction" + } + }, + "tournamentID": "" + }, + { + "tournament": "Online WSDC", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi sẽ lựa chọn nghề mà mình đam mê.", + "infoSlide": "Bối cảnh: Bạn là một người tài năng thuộc tầng lớp trung lưu đang ở độ tuổi 20-25 chuẩn bị lập nghiệp. Bạn có quyền lựa chọn giữa một công việc mà bạn sẽ kiếm được nhiều tiền và làm việc nhiều giờ (ví dụ: nhân viên ngân hàng đầu tư, luật sư công ty, v.v.) và một công việc trả lương thấp hơn nhưng bạn đam mê hơn (ví dụ: nhân viên xã hội, đầu bếp, giáo viên, chủ doanh nghiệp nhỏ, v.v.)", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": { + "fiction": { + "check": true, + "title": "Fiction" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Schools Debate Open (HKSDO)", + "year": "2020", + "format": "WSDC", + "content": "THP, as humanity, that the aliens reveal themselves to Earth.", + "infoSlide": "There is an alien civilization near Earth equipped with advanced technology. This technology means that it has been able to cloak itself and avoid detection fairly reliably.", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": { + "fiction": { + "check": true, + "title": "Fiction" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Schools Debate Open (HKSDO)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi, với tư cách là nhân loại, khuyến khích người ngoài hành tinh tiết lộ thân phận với Trái Đất.", + "infoSlide": "Có một nền văn minh gần Trái Đất được trang bị bởi công nghệ tiên tiến. Công nghệ này có thể tự che giấu và tránh bị phát hiện một cách khá đáng tin cậy.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": { + "fiction": { + "check": true, + "title": "Fiction" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Oldham Cup", + "year": "2020", + "format": "WSDC", + "content": "THP a world where the research, writing and teaching of history focuses on studying the lives of ordinary people as opposed to that of important leaders of society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Grand Final", + "topic": { + "fiction": { + "check": true, + "title": "Fiction" + } + }, + "tournamentID": "" + }, + { + "tournament": "6th Oldham Cup", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi tin rằng thế giới sẽ tốt hơn khi việc nghiên cứu, ghi chép và giảng dạy lịch sử tập trung vào nghiên cứu cuộc sống của những con người bình thường thay vì của các nhà lãnh đạo quan trọng trong xã hội.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "Grand Final", + "topic": { + "fiction": { + "check": true, + "title": "Fiction" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "TH, as the commander, would use that weapon.", + "infoSlide": "You are the defensive commander and your side is losing. However, you own a weapon that can destroy the entire enemy army but the price is your entire army including you.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "fiction": { + "check": true, + "title": "Fiction" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "Chúng tôi, với tư cách là chỉ huy, sẽ sử dụng vũ khí đó.", + "infoSlide": "Bạn là chỉ huy phòng ngự cứ điểm và phe của bạn đang thua. Tuy nhiên, bạn sở hữu một thứ vũ khí có thể tiêu diệt toàn bộ quân đội đối phương nhưng cái giá phải trả là toàn bộ quân đội của bạn bao gồm cả bạn.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "fiction": { + "check": true, + "title": "Fiction" + } + }, + "tournamentID": "" + }, + { + "tournament": "Cogic Debate Online (CODO)", + "year": "2020", + "format": "AP", + "content": "Assuming technological feasibility, THW allow people to change their racial identity (skin color, ethnicity, etc.)", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "fiction": { + "check": true, + "title": "Fiction" + } + }, + "tournamentID": "" + }, + { + "tournament": "Cogic Debate Online (CODO)", + "year": "2020", + "format": "AP", + "content": "Giả sử công nghệ cho phép, chúng tôi sẽ cho phép con người thay đổi danh tính chủng tộc của họ (màu da, sắc tộc, ...)", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "fiction": { + "check": true, + "title": "Fiction" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "THW everyone infected with this zombie virus instead of continuing to quarantine them.", + "infoSlide": "Suppose a zombie virus has the ability to spread strongly and easily hit half of the world's population. People who have the disease will have two states: when they do not have the disease, they will have the same humanity as ordinary people; when then get sick, they will completely lose their humanity. All of these patients were gathered in a separate area.", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "fiction": { + "check": true, + "title": "Fiction" + } + }, + "tournamentID": "" + }, + { + "tournament": "Southern Debate Open (SDO)", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ giết tất cả những người bị nhiễm virus zombie này thay vì tiếp tục cách ly họ.", + "infoSlide": "Giả sử một loại virus zombie có khả năng lây lan mạnh và có thể dễ dàng lây nhiễm một nửa dân số thế giới. Những người mắc bệnh sẽ có trong hai trạng thái: khi không phát bệnh vẫn có nhân tính như người thường; khi phát bệnh hoàn toàn mất đi nhân tính. Tất cả những bệnh nhân này đã được tập trung trong một khu vực riêng.", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "fiction": { + "check": true, + "title": "Fiction" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THBT having star players for team sports do more harm than good to the team.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "sports": { + "check": true, + "title": "Sports" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THR the emphasis on winning a medal in the Olympics as a core example of success.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "sports": { + "check": true, + "title": "Sports" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THP a world where sports serves purely entertainment purposes even at the expense of fair play.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "sports": { + "check": true, + "title": "Sports" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng việc có các ngôi sao thể thao gây hại nhiều hơn lợi cho đội chơi.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "sports": { + "check": true, + "title": "Sports" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tiếc nuối sự nhấn mạnh việc thắng huy chương trong thế vận hội như ví dụ chính của sự thành công.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "sports": { + "check": true, + "title": "Sports" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi tin rằng thế giới sẽ tốt hơn khi thể thao đóng vai trò duy nhất là công cụ giải trí, kể cả không đảm bảo được tính công bằng trong thi đấu.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "sports": { + "check": true, + "title": "Sports" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "THW require professional sports clubs to have at least 50% of the shares (in charge of the main decision) owned by the locals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "sports": { + "check": true, + "title": "Sports" + } + }, + "tournamentID": "" + }, + { + "tournament": "Vietnam Debate Online (VNDO) - BP", + "year": "2020", + "format": "BP", + "content": "Chúng tôi sẽ yêu cầu các CLB thể thao chuyên nghiệp có ít nhất 50% cổ phần (nắm quyền quyết định chính) sở hữu bởi người dân địa phương.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "sports": { + "check": true, + "title": "Sports" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THW ban media content that denies the efficacy of COVID-19 vaccines without substantial evidence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THW ban media content that denies the efficacy of COVID-19 vaccines without substantial evidence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ cấm các thông tin truyền thông mà phủ nhận sự hiệu quả của các vaccine COVID-19 nếu như không có chứng cứ xác thực.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "ceam": { + "check": true, + "title": "Culture/Entertainment/Art/Media" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Schools Debate Open (HKSDO)", + "year": "2020", + "format": "WSDC", + "content": "Assuming a post-COVID world, THS the trend of working from home.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "2", + "topic": { + "others": { + "check": true, + "title": "Others" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Schools Debate Open (HKSDO)", + "year": "2020", + "format": "WSDC", + "content": "Giả sử ở một thế giới hậu COVID, chúng tôi ủng hộ xu hướng làm việc tại nhà.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "2", + "topic": { + "others": { + "check": true, + "title": "Others" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "During a pandemic, THBT businesses which can benefit from the pandemic should be additionally taxed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "others": { + "check": true, + "title": "Others" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "THW nullify the effect of medical patents in cases of medical emergencies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "others": { + "check": true, + "title": "Others" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Trong tình hình đại dịch, chúng tôi tin rằng các doanh nghiệp hưởng lợi từ đại dịch nên bị đánh thuế nhiều hơn.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "others": { + "check": true, + "title": "Others" + } + }, + "tournamentID": "" + }, + { + "tournament": "Spring KNC", + "year": "2020", + "format": "AP", + "content": "Chúng tôi sẽ vô hiệu hóa tác dụng của các bằng sáng chế y tế trong những trường hợp ý tế khẩn cấp.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "others": { + "check": true, + "title": "Others" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "TH advocates black liberation groups to admit and adopt violence as a strategy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "", + "topic": { + "others": { + "check": true, + "title": "Others" + } + }, + "tournamentID": "" + }, + { + "tournament": "Hanoi Debate Tournament (HDT)", + "year": "2020", + "format": "WSDC", + "content": "Chúng tôi ủng hộ các nhóm giải phóng người da đen công nhận và sử dụng bạo lực như một chiến thuật.", + "infoSlide": "", + "division": "", + "language": "Vietnamese", + "link": "", + "round": "", + "topic": { + "others": { + "check": true, + "title": "Others" + } + }, + "tournamentID": "" + } +] \ No newline at end of file diff --git a/src/core/constants/PAtourneys.json b/src/core/constants/PAtourneys.json new file mode 100644 index 0000000..1044fc7 --- /dev/null +++ b/src/core/constants/PAtourneys.json @@ -0,0 +1,97 @@ +[ + { + "name": "Hong Kong Parliamentary Debating Society (HKPDS)", + "format": "BP", + "year": "2020" + }, + { + "name": "Asian Online Debating Championship (AODC) - BP", + "format": "BP", + "year": "2020" + }, + { + "name": "6th Shanghai International Debate Open (SIDO)", + "format": "BP", + "year": "2020" + }, + { + "name": "Trường Teen", + "format": "", + "year": "2020" + }, + { + "name": "Cogic Debate Online (CODO)", + "format": "AP", + "year": "2020" + }, + { + "name": "Spring KNC", + "format": "AP", + "year": "2020" + }, + { + "name": "CNH Debate Open (CDO)", + "format": "WSDC", + "year": "2020" + }, + { + "name": "Hanoi Debate Tournament (HDT)", + "format": "WSDC", + "year": "2020" + }, + { + "name": "Southern Debate Open (SDO)", + "format": "AP", + "year": "2020" + }, + { + "name": "Hong Kong Schools Debate Open (HKSDO)", + "format": "WSDC", + "year": "2020" + }, + { + "name": "DAV Debate Open (DDO)", + "format": "AP", + "year": "2020" + }, + { + "name": "Vietnam Debate Online (VNDO)", + "format": "WSDC", + "year": "2020" + }, + { + "name": "Vietnam Debate Online (VNDO) - BP", + "format": "BP", + "year": "2020" + }, + { + "name": "Nghe Tinh Debate Open (NTDO)", + "format": "WSDC", + "year": "2020" + }, + { + "name": "Vietnam BP Championship (VBC)", + "format": "BP", + "year": "2021" + }, + { + "name": "Pre VBC", + "format": "BP", + "year": "2021" + }, + { + "name": "Online WSDC", + "format": "WSDC", + "year": "2020" + }, + { + "name": "6th Oldham Cup", + "format": "WSDC", + "year": "2020" + }, + { + "name": "MOE Invitational Debating Championship (MIDC)", + "format": "WSDC", + "year": "2020" + } +] \ No newline at end of file diff --git a/src/core/constants/customTheme.js b/src/core/constants/customTheme.js new file mode 100644 index 0000000..8073c79 --- /dev/null +++ b/src/core/constants/customTheme.js @@ -0,0 +1,10 @@ +export function customTheme(theme) { + return { + ...theme, + colors: { + ...theme.colors, + primary25: 'grey', + primary: 'black', + } + } +} \ No newline at end of file diff --git a/src/core/constants/englishIDs.json b/src/core/constants/englishIDs.json new file mode 100644 index 0000000..f7d473a --- /dev/null +++ b/src/core/constants/englishIDs.json @@ -0,0 +1 @@ +["00bi44bNvxJAYc1Pz2I3","01znHr5Tw03At0XBXYWo","033tM2sISqUEP7bMXzOj","03NgsrwkpgOnUaEcU4oQ","043xYxce3HMA2aQEevaL","04dd18xJmMVKvrjv9iK7","053lJPcVWS1qqA04rGvu","054SAgUy63E9kY69Yxh8","05XJYaYwDuRn76hT6Sn3","08f3fZTKX6AkRjjJIBf5","08g8SGvU7jaq82kXWtcw","09ahF09frK1f1DY6Geib","0A0GmHjk4BKwJiIOjUM9","0BQ11CMvVd65AoQIDBWK","0C0Rigq1z26JdpayGYBg","0CRvaYku412AXL4MqZzP","0D8ZqIcUwoCZqH1wjtkq","0DMYaFmdbaDAJ4lauRLJ","0DNMtLVaaRMujIR6m2XU","0DgnbSwx8l6VixeUg2sz","0ECGZxattuhVsM8oR0S6","0EKFiaOoUXVCaRsRJESo","0F0xPFYkx4LZqQOJ6SLB","0HCp9oXxNjVyqMRQyYEr","0HQcvjsfjQ7ix5jeiCcl","0Hjl2ozfVgNmJDjXU7su","0IH6V0PnDh4W9Kr9raYy","0IVDLmTGBTPGNt3TWGeU","0JDvtyshmcqnESDELs0l","0Jxv8xc8xRvhSvzgsZtr","0KFKqBXuS5nvioSYYMsa","0KWkOXPuVopVJEoAYAV0","0Kr1lvkI2thgwoyCgyAb","0MnLHvhWCC9icU3N8TQR","0MtV0AgxREvC0Ypo6Ya7","0NJ7gfoLmzcc3xIqPFYm","0NSJ9OYa6XgimK6BvKC5","0OAshdUAH1uzseUZPVkM","0PRrFWRQ57NvQuX3xdjy","0PT4bg2PmajYrR8mQ3UY","0SlzCZOgKQOx7TZRfiJg","0V23uopwTOC68JLwsAzv","0VTj0O35naKUYrImMJaG","0VgllVrdgE3En4FqIxjA","0VniFYmQdvaJTDNL8B42","0W7ys3MdxMhs7riaCYie","0WPYRJMYAzd3XpAvsafD","0X1nh9hSDwGFuRCwFWm8","0XPKRaMVgstF9aZhiu4X","0XTBBLpHPbxgMfSdQUob","0XbwWe81UH3raifhujK9","0YrC76kq6ebVTveXN0B0","0Z2j4bFRbiCeFUK3NdIF","0ZOcmP3Xs6WCqfJORR6l","0ZV6xSsQLew3nP8PV0aW","0a3IiWD9UWdrfZj2caqQ","0aFdwanlpaXjYl1nHTfc","0albdtrYPORds5mzwDjY","0asOTv0phPln6zuQMQOQ","0bApOJa0UNkph2KWa2pC","0cLA66BkygdbDcjuM4sC","0cwq8FbTcdC1VAota44n","0dUSiHcx4WrHAbvzJdYw","0dbjd34wa9cXvh2ch4VV","0ef7CSPhye735VRLtBbO","0g7h4YxrLL0TRLRhPn5i","0gkmldPejqTFz9QswNXO","0h5VJllCvoTEg3Dm9Yyc","0hCn7FC2Qdb9m6HJw4yb","0hxKaMx9wmnMzB02Sfy9","0hysKVMnkQKCoxdT8RzY","0iUFv8kIRA487eCi29Yx","0iXz9MTWCt7aSXJ2JtLw","0j3zfYHqGZJ2u7cp3tBt","0jwAebmPY5GxiZ5rbkzd","0kep52nK4rd1X4nTFzXw","0l9xGGDTUxNcG5Gn6NoP","0lRSkeXFd84F5hQJ7B4q","0lhLkwN4nmvDpus8cCBG","0mD0xK7eHvjvXNAVvaQN","0n6lO7WwdinXKI1UWnsL","0oQ1b2fQybQlnzFsfeNI","0obRx8EYFZNb1fFq7QVD","0pXGv03sbfiPEasnycWf","0qNeFZoG0zYtxHNnPVBh","0qmuJmPdkPePyzjA4zGL","0rWGDuLIWgSLNzT2wpfy","0raM9lsRiLDgFWRxsfBQ","0sRFqZF0MfcB2wgMJ0Yh","0t4oXniO3usVCB4FPLip","0tCltd87Hp1TNv3mkmBR","0tNHGrH9JRoIEhJBDwiT","0tYIksjHZLac47O4lvAh","0uH9qgaQnI3fcKzmzbEz","0uLMzBs7fv2ksnkg4Dez","0v7h083LzUiD2QBb0vWd","0vIRFjX2sFVUzYeHlc3q","0wBEHZ3mndFRSfIRLRq0","0wcBRt8GNCkb0u9VBpMP","0wfZDk6Xs6oibCR8kbQG","0x8vBDWANrqwZHdbDoJX","0xy7FRsITYL9Qaslu9YD","0yS49tB1SSZzrRaYedKC","0yn8G9DZQGGhcdJH3SRH","0yobn6rwqpVw3hJsXwGY","0zdTRO965kLvfuamDXkP","0zo6AgVDut2oUZXNFyOU","109UxOIyKCnqxPPDQ1VH","10rYM3aOvFDK6yFG5NZO","119tQnqaYbHMT78ODVHG","11LVjleV96CpPFjJ36By","11o4zJYPsdQHP1x0Pl3P","12VzVmTkC45Mebxs4OQK","12gQdrf0GpXCeKmxlcbX","12q2dW6bOxUSYeebtnDy","13GgkSB6ykAAovoDUZzg","14I2yRBV3nMA0JAAWzKz","14T7Cm2cLDSZJ1w8dhni","15icrSwN0lXLgQAt89CX","16AistknDXLy6PczAqE8","16C1h3a7yF4SC9yUV0Bb","16oYQ5vs9qEibJUepOgi","17H34pKEe9Kco5BPQtoy","17J1uMmd3LrVp4CdL6rg","17xSKY6nyEyo7Z3wSg2R","1845vSf6Cp4gM9AgVeYF","18xme2nOcET0Aa0pukIr","19XFvS3bV24R018o5XZq","19g6ATR6fDglssZSpDf6","19z3TCMpM7C4IqViS0Vw","1AuDbP7hqEcIsp93Vw8z","1BJ73iwAHBt5Wz9iqsyP","1BXw2hDQVhXdatfpnwAh","1Bdi85VqwicaIdJsguxq","1CI8Z25kskhQZSKKB0ql","1CPFfRZoRwrYAI0FVbmS","1DKUfzQESOrsJoMs9KxX","1DODhRLAUsy3Tufxb7JO","1DwHhzycsg9MukQjShl8","1EZo4R6queIV4tDOqSmB","1EfInZzcWYDjesqLIcnv","1Eg2D91DS27klT8N1Z2u","1FWpblICWdLUHPfrJo7m","1GBjZQmcCBgBMGGlkUUO","1GG2LnPeWzl10xhB7ZKn","1GIlZLo4JKLd1nez1u9j","1GzjHwjtOyr7YYMFyBO7","1Ho3sxVtoBDOgrwWArRV","1JB1xEilDNgL0QK4fJK7","1JcrAyoNsSn6vPcirFGD","1JgHgddTnyY5DeHtAd1e","1JhtOwgggqjXMjcuZ2zP","1JyqIdObmJtwuEoFpy5v","1KjmumOERgr0CGbfKzjy","1LDjTHGVC5zACb4LFIhi","1MiJU7O88DLsxc9l19M9","1MnFfmMB4VXVPTEfZcCq","1NgRkcCGnTEujQs5zhjm","1OyuUkustQrw8omoNgae","1P3rfjok6pYhy94zm6Zc","1QLiIJHWb3zE6jX8K9sm","1R26qSY1Z8dsPagmAZs7","1S19vjBbwslA1q7ff9oR","1SVOU6YdYW5b3HyHC3Dv","1TPebHdoq2Pewmtaebvp","1U73UzrbWKoTqXHeMltS","1UEM6zXzfiPfZct5bNVt","1UMi34qXfWp8CjV6Gp8q","1UMqhwdEC66aqkjQYqIp","1Vr0zwoXSmYYuHUSH5vO","1Vu7Zq4OnRXBsMhznhVW","1WGDR4AmelfsXIushDni","1WVt5OJT3Pmyx4UeDDDb","1XjR9sQZahAliG4vrwqx","1Y0QIMWkPWSqcHyriWSG","1YIKHCwLokvBueHRWHOy","1ZKF922MEKUsRneOpdEi","1bMVThjP3KCMgmjlLHxz","1bhcjs7iuCz1GbZDxSX1","1c6TPasY9lSq2iuDcSKn","1dAK3T77X0BFgVwHwOHG","1dY1aCnQ6lkLJL3xYZWm","1e1H876KmnusabqE5Ggp","1eDOBkXqOhyq1eQYrPE5","1eDVJVvdkWOAb8OUysVh","1eJEYYqJzMc6GhoPCXuC","1fTq4e4Y7ID5FD9a58l0","1gDq097CtzDKPruIGSPB","1ga8tOWA6u4IYX979Ydj","1gl6TN8qAxZxYotTyc5j","1gomrgOuvqEq0rCngPEf","1gqCJvW2QXgvTLKFglQ2","1hRhN7PReLMWrAvhxveP","1hsDcVwRMP9AdAwOw2m6","1iA5V314HhyEClSFF2Wz","1ii6TioKsf7qrNnhqPpm","1jWQTT2LbtU3PKfImDbF","1kn6Nh79sA9rGc9gIjBI","1mwgWhETl8gQ7Zxynr4N","1nBTxcpqyk8S7HlfWxTj","1njAWn45BtLacSiqdpTy","1pFCYECYzj5J6cRM4CZq","1pem7d56MO5nYhopWxLt","1psnfEzxkxE7McXRzBiw","1qdrPfmLD9FhzoOFzEQ8","1r9KMsGIIyHagWYVqYbH","1reQTGrfTODj2cd3oYIj","1sQR1onqs511uK7aDCKc","1sXEC24pfJ7a7wQhvs5o","1t2BZJGxWaaWWAJq6LhZ","1tq0HdonR9tJ4jG9KhN5","1tuqsM4XxwwCL2q6W4Lc","1u3FzImOIb7Y2StZbBxn","1uvv2hTl3WKbBOrEWG6T","1vBfWf95jN7wbnmFHlXo","1w3xUDEYifxlchP3OOOz","1wnTQ00eU3Z1Kn9jetGt","1xRHVS3BdU1898U8kpru","1ypmnWDCmL3ovjpFz50C","1yyxIl1lUFyj78eX6cqn","1zClo4MY6HFkPJj7MWJx","200z9N6YvAVBqcbIDsMZ","204mGbfrCZfuQJln2ZkP","20fAOeKWcv8fRjrgAKzp","21bCALNVJhZvrnk21RRy","22hqinhOW9ZVXAhBS6sz","24GUJEkbeEaf2bvCq8gK","24cxTgdHGTBQEmVuBk6Z","24w0A6GuCnZRZi1cLPy3","25HVZIAHpTDfnqFaXeVl","25eJfABBgFZ4cOCfxJg1","264iwNT7q6VzKxr8zfZY","26kYXJgqOiyAX7SiczLj","287FNKSIPkMDzut7kux6","28fXHFlbWEgEZcj6f4ou","28rP970DBjj1NVRwpaKH","296BjkViy1KHuDnVaW3V","29FeTwqJiv7u35vnYR5z","29syRHJV13szExCXYFoJ","29vT08PrRvrRnR2cfseV","2Ao8kEHbjilg9Ps7rxo6","2B1MeAPwphZM5HRgfRFu","2BVvIfjg4WODvNnovnJq","2BxgiKHNpWkYkeLDkgiY","2Cp1m4s75DovsaPvdBL4","2DJ1np0zLkOeWaNctem8","2DkJ7Ha1Gr5NfURFe5ta","2F2HVdI5L3qi78hF3hNR","2FkOaltUYnmBY9OmwZN5","2FzNqbrMdWEysSayeF62","2Gc7LUFFTHoicHavDeQq","2HAJJzo0tf0T4kpeXXlu","2I4gUKVw0sWH15PxheKE","2JRWyoiOOGZNho4eZLOz","2K0tFXp0VvCvm9QCKLsi","2KAOzlMbONPUVg7UHJcN","2KSjDcDkqYiaMaCcVg9r","2M2w7lz8q50Hm8Xvd0LX","2NAMLgSQnfRCz4iK9DaS","2NbECFo2a1GojjheP2De","2Nv00vjye2b8VlW3Kb4n","2O2PDSwS7yzrBRAi72oz","2OE7Y9z5TeUqZEkm3chM","2OdjDrLphu13YcfXNYEW","2OnQQebfYUXF8Q0ehoID","2PerjaXffw55bEXbRbpI","2PlFoH2LwDxTf6VCvA44","2QlqWcCpnPHTjUoCL8Ls","2QriauWotMC8mpOOSi5g","2RAMveVTTRfQQWXiZwwV","2RByXoVLnuBnALCXK2hw","2RDl5My9QBoju2tsSTVe","2Ri9HBGpk0JVyasSUkbD","2RxhBRD3dVNxx0j2eLdq","2S4YvfhR5yBXnp9FUtC0","2S9jfTbc1Paxn8qHZJRn","2SIMRJX6KkEmUQaKtk2q","2SRoDpFfSgcELqLDZHxK","2SWTHfQ9TmoZOEP8fRr1","2TQoCMsl3trkBXAAimkd","2TcrXh0L1yEQxDWFanbt","2UBVmuUuM6S7dQbFzfxO","2UNxRY38DZaD2CDUcgyU","2Up8a0HPBAP5K7VCQB66","2UzfYoJyw8r8JD2hfbrp","2VhYmw58jGlMEgHQfZWT","2W6BU2geyeIVakNN1Rx3","2WVdVk1ppinO9qPo6vDm","2WX2uUb9a350HphH2VHP","2WlEQTHiT63feDBEaQ44","2X8EHjmGGisw8KGSfBOj","2XE0XXjIBJwP2v0ZqlDj","2YSYs3mIyAMtqN02i62E","2YZ69lHntzWaFATwtHxj","2Z7qvP5CmzS0R1PPk0WB","2ZIofo7YGUfIM7q3M8AS","2Ze7LH334d9u2jE3uRH1","2ad7dAUfMfb2wYCHEQik","2bhwfJ30BLjvV7byZduE","2bmpG5NhozoIqq3ChT57","2cE5cqAJHKMFcJJxvFYX","2cMXDaMaO91kGGi8o6LT","2cTalwQmiWsQZeeSNHAP","2cbYDa3jFSiLGKwpk1ip","2cnHnO7KI4nJclSHfkri","2d2qVwguMnB36zZxR96H","2d5PjbG47mImgJT4T0eo","2ds0JKQwUSdo6dUsq3an","2eRAaORtS1XyYqLpKVTF","2f1D1uKAQliw5qjxH8KY","2f4aQPQvYQFJj3HUcDyC","2fPeByqXopRZBRJS0C2C","2faDF53pWrJ3fl7FHkGK","2fhY2ttYGmVjwQtxTU76","2h0DWsiQthIqWh7E8RgN","2hVxh46c8kiEWtIDdD43","2iFA0RsQuDkx7XMDbtJe","2ju2spYZ0IFfEr2yNuEd","2lV80wpgdGj23Df2sMt9","2lW0QgfZoYDP9zKzzelX","2lhc9DfN6gAXAvSsbIW7","2lzavBi7zbrPsPMcfT2j","2mlarwfbPaL8B7atwIO6","2nNnUYovxnl8H9hitsAD","2qEtaLBIbHQbDqEER3Wm","2rGkZuHbt5LTLyPlXWtW","2rd03susZQ6g3aKQCnvC","2sxzxtJrGg0GeQvkDxA3","2tEF55k7Ta13Mt7fPvn4","2tQFdOdtFYI9gZRlNrJz","2tRUuECMZyawTtbsDwLV","2tsOTw95nKpBsgttBIc0","2uLuiyCmY6r5p01Gn28A","2uPvAxwPT6kwZZ7Gxb6U","2uf3ikQMu58nyQo5U0xL","2v7zRhE6RTKF2EJk3bHl","2vH4OtoAoagMl0CdhOYB","2vKNdd7E1sMW2M9ycud6","2wDVqPK4xMi64j57E6Hd","2ygTm5EciNAppKYBWtST","2yrqM2pLGAgTWxDLhPv8","2zACFgtdhFVRpSuZZQyp","2zEY6fcUxTvRTju3QlgL","2zEYjO3K9MU5QE6CuxZJ","2zJGeHMDqE9bA3qz69Sy","2zRp6D0e90GaegzqjfYT","2zX7M9hNlYxTGW0XhO0c","300dCF5H74RzRvuduIjT","30Ipvr48n3o0PMFg3JQL","30R7lfNdFM8FDwR6Z5ax","30hBfuj7QelGGzNnkYNE","31oCGeb7dJaGQrIfXp2a","336RbbyxvChAIMc75Ewj","337uDtu1XKlUNfwwjT0X","34QCYXoYPPgaTOcA6aHg","34Zxv0ndVivuZnIB2Awq","34ye2U5Oo2BuhIVXRB06","358K93ponDBj4isGjhtB","35flLD6IsqFolrDQqDW1","36BaQbDvTCKSf7fp3VcE","36xaXpStgRkaCTzvksCW","37RLKTX9ggHfz8Mt0W4E","37tWWMAHWDd1Miy87V7n","38e8w8rLMYn6IWAOyBiE","39WXUmRsaLbLvTBDE9PO","3A16uwTihNUOx8cr9l8B","3AXOfXA4qc8sa8imdPBV","3BWH176U0hZZTrIu1ueZ","3EbFyCmQ83hMcTrKybID","3EjxDuYmtMw6hIeiRnld","3FOK3Z0iJn37LO1hDqUg","3FW8eLfPH7FDqCFgvWWm","3H1kLTGDKaH5WMj6By4k","3HZgHAsbqCol3equof9J","3HbrFT6z50CUiQaN09Ne","3JRbjrfxLC5aUngdw7C5","3JnQpZjOi9TFO6Fni6kB","3Kpnvvv7AQq0lmNPu3bF","3L9RHsAyGnHXJxTX8wme","3LPRFFerybZBQCmQEV0m","3NLozFWr9FHXzDgATd0x","3NRf1PJw5slsJT3dFDtb","3NlProU3dZ01eR9scjmM","3OmuKj39tO1TPBhCwTAs","3PtyG6SjsUXw2HZtqLyA","3QhGJ3ygKlRshzEihAGL","3RAFnNaEYcdi3WlDecsM","3RY7Sj7yuuLjRNLgCPyE","3TFZ58KL6dCN7wBkKXrR","3TubFdUO9eYhsr3Dly3M","3TvkJCljFTjwCLaabjQ9","3UEWn7rEw999LJSKzPjV","3UcSiULwI6ib5WGvcwXT","3Vjxb9aOSRiAj7VHdUNT","3WMlk6vvi2VkG0XXuref","3WtVEoIfTQdZnSXOFrWJ","3XOhuFqsfezqKhiyjntZ","3YF7YgrGdosjTxIjR6N8","3ZCgp69vYos9Nkzl9up7","3ZvhzypLYmqbr9SSFyth","3aaKXLZrv3DfV5BYcpNd","3am0vCv7iRoiRgcbNDkG","3bF1sNmeBEBnoReVFJEd","3bKpD9sax6rTZfU9HNBK","3bP0fH4H5InXZklqIKL8","3bsL5XZ0RdREdTaecf6m","3cB5g6Uv8KTT1g7MVVjM","3cNOYO2gnof6Xgh0YgcQ","3cUFccGMUFbkR8j8dA2H","3dE9TlnjtW0tp35JYKn7","3dNbaTZARDVPdaWjQ8ip","3dcGiow2Ge5IJxXQqq75","3deHFfu6jLSw8Y4fFG9i","3djsAikNzQxxJJK2TgEw","3dnkhUOtcmztWxeT0chJ","3e2zSIHs0XIlTX7YGf7f","3eKE7FiIpKzS7bbpxK6N","3eUaBKfJ2yk2kLDsoEbb","3eoxiMVkJzfPpbKBDJNv","3fB1lBkV8rn1mi7ineUR","3fdZ9odNi4zae0MF3pJu","3flFn0PBj12F2QIpTCnP","3gCATmeNqej9khZ7SxyU","3gKviA78lCHAlb5KX2sK","3grvVwN3P2uJbRqicrpp","3h88KyECrQRoBawxMuwO","3h9miuHzOfMcVXXlgv0y","3j1OaqE1hASXnSVIj7nB","3jOTMKxRFcjO6qa1p59C","3jTsJXHrXdP3aAn4RnsC","3kCuZYwR2UaTI28bKUWI","3lVCQj2H90IFbTs26qWC","3lu7h7Bo5JVcotEeDY8v","3mbLIE1NYBmSv2flUTrH","3mg7ToOsjfu3HHoyUBh6","3oEDzQ20skSk6SEc3y8t","3oh5hZeO0OkMyRPUiGHU","3ov5CN8pzeiMDC7C7C7C","3pQwxooW1V9bIUe4ftGD","3pqQUdsTkC69ne4nIdZu","3qezABfIxkubEu5vyRup","3qnReFa7o6Uj8sfuypCO","3rT5BWuYOQBuAReHm4zA","3rqxsVCKFXlbJhtmvF8n","3sdovHtRek2TtZB7Eyek","3tAt5LDLVl7QXYq0euax","3thmP736jk5FQosC3DLX","3tlVxx0EX6e7oSzsSezA","3ugimPlbZY0Kq1uHLgz7","3v3h2VYzekzo8ND4PNSw","3vQxVb41BQ3lYzlCds0E","3vSBd9doFHkkn4Njw6G5","3vTnjs3RAGhjyPDtHRR2","3vcDAzr4G7cVC1rS91t4","3vnGxCAq6NKQmaiouPxH","3vpjTBuzULT1qumhD1O1","3wTxr4vuwphA8g2kWtsA","3x544LmzsmWONoQgvEQw","3yd7fKYEZHlCs6VtOUL6","3zcMt0Vx7AqZkBUG9lmL","3zwQRE5LouQbmtNMW3wg","40MwT3xZfiRP9962Key8","41Pro1YKuWoxq5Fuq4XG","41afZLjCcRaMi1aLXmG6","41ldgStVcYBCYxZnlR6M","41q7MCDcxml89kOStajT","423ywGUoJJXFUwHehugi","427kvwq4gWWVVuykdPhy","42MLYKV2GEKcWzH3uRoO","42exBNhpRGlXJeEXFeuw","42iq5VyELoI4MNeklLv1","43GfgYu7Sn5lzzTCByaE","43hzDI03oZDjArGVvSe7","43u9pleqsxpCDYFAsomL","43uRDewYIDdHOEyOKSxE","45I5rOV2f3L64xCwBeiv","46Gm3qYbAi3JnEXvN2lC","46IIg3rUcSPnx7wPNkBZ","46Pt6CTWESlHS4fMp9DP","46ZrUjmsJKuw1PIMPJDY","47HZoNIVa3fnucU4dSGj","47MX3SdXQ0xLVNcwZmPG","47k2CZOfHRAABNHxmdeK","47nzRfh2z5zr1PuN0dJe","490zuAtjyl9xltBgwtOL","49ejaXiBCtJ0tsctrwQ5","4Ajbg7E2oN2Pmtrx3ss6","4AkW6Qyt4xnbrVOImeBc","4BAFkH3OpDmyOOfWvRjJ","4BGMZOVYEAg5yEoCOsDz","4CH54iHErMDX0PzAKIgj","4CkhRb3O8VEGfnmo1d57","4CycLOTfXoCj0dJJFsux","4D7xqOP93BLwz7Ub23E4","4DJpmc6pwYgfCnRfa99N","4Dcx2o648J1Wg98NhFL5","4DwuJFKUADaSKmQE0R8T","4E1Zt9hwWkB0IHcFAMhf","4Fd4Rqk1qJDmISyH47RF","4FdSDLw100yejwqKcuzY","4Fz3fBzFKwwxzHJ2mo5h","4GIJqOW9vXmisO3QolXl","4HJVYJtVjAA6Da1MRtLd","4I6xPniVfzvjCJdycPkK","4ICIDX0h95BwUM1aM3zU","4IDHPnis5vGwrUxedHwq","4IHPG5DxQ5yc1fzPU9ZO","4IlEwei7Nw93rwTQJb3v","4IpnaLvW6mTETnDrNjm9","4IyA1OgK6QRPsRwDx3Tq","4K2EW97uiQdugbwQrXGB","4KF2BALJFr3BcTd8a4qc","4L3xSH4R08HqqcvOlx6V","4Ln3x1DWwA02S1rWBb1I","4M8zBhB1VZXbJ7phwq5F","4MWNjjw6sqblWyhzYdBp","4NFm0fBfs1747qTrihCD","4Nkr5Lx6RXKpfafJqs2A","4NoQsJvY3pkV1GYYV8AL","4O3b7XT6L2qnbxaLccAN","4PQyADdpqJ5yelx1KPGI","4PVd53GDOfeLcwR6YBmD","4QIf6vBhNEOCxptQkP7v","4QuAEvAZAjzDGalDNa3r","4Race9nu0gq1YzBZMHf7","4SGE1p23vpP0wK2dx8Q9","4TWHEJV2p5hqpvkmpvGx","4TsfHuXNNynLU6lmWNAe","4VB9OvdDAvZTOBnhe3Ym","4W4yErh6StGwmfnFRPZc","4XPh2JDU01m7opXt07uN","4Yb2aTCJtRao4DJFlMwP","4ZSWPFiPgwEg5iqyuPan","4a6zKFX9BT6Qa8uaXkik","4a7hnmFg8f9uNZNBl8U1","4a9GDLP0Hzo5gK93FcAz","4aTfuWeuOsZJo5HzytO7","4bBhilwbhRI7v6ofXYAn","4bXzEgewCnurfZbjk1rn","4btf59WlNDk0gDf4ESto","4cHG6yrELMSz1r3PLza3","4cHnUYpS7wxeTHCusppY","4cg8rUG4QrzJ8wOH7dnO","4czNHf4LpnxCvle4CIlU","4dEcr9fYdfBFexqo2vDe","4dKbdGdiXWzKy9N9KlC1","4e9n6TFcPcpOnsIZ415V","4eGdiu3lF7EPX5pRA05O","4ePM1lGx6WbcxshtVz94","4eXAQA9SotCazjdSczG4","4eiQ0Dqvc3nnDJkSLtg3","4fUOImUATmXyAeWK5oKC","4fWCxZUsPuvMLgBbxFkT","4fmS04qeTXONIVZ5CszL","4g26qa1GSOuu5GtadxaS","4gL2DabpnJ2UZrleLtkI","4kfyiGpcZR653VJcdBCY","4lHqBKJLFtZYcthTIaQK","4lh6bdXy4cA7L0KgJ1Sx","4mDxm1fzKQGwOSvCh2kq","4mHLJFS5yL6UjmwJUe5C","4pSg7SgyIwalU52VC7Sv","4phmripFrzvf7ZKcFJkY","4pz7eIqPmUgIXgaZ83PF","4rT7fdl7CKJfP269CDTf","4rTMPdP9TrR2UfTg5M8z","4sezxPC7u2jfmyw2prr8","4svDJA6pjHXC4hN5IeNC","4syN6n9eiFY2B4Xic1SB","4t8ifrlugU5WPvZ3TMov","4tJsjT9OTZXXWQycz1Nb","4tNBzhUbJspLJO4VNJU7","4u9wpLUDFrm6Q63VCI1q","4vdXCOvtCtQmFcVR8hRd","4wofDkTEusBXKnjyuFko","4xDomjsgnY1trpsOLAUZ","4xSbgjamw8E7BQq8uOzk","4xcqYlI8SZOipjaunhvo","4xwxLW9yAzLyBKv8oGUp","4yVhAsHqxB5XqTi2hbeb","4z8bmuoSygRx07tg9Ozm","4zKKplP89VWbbuNq9ZBq","4zfdqX8d9xXqzUOhcJFj","503HsQU163s82s3W5VnV","507VSxyj9ylw1ThdwCG9","50i0M0deYAnT0cKgTuNB","50xpaC1jFyYRDxBcn098","51FjDM3jlGUCM0OjVJzc","523AP2K6XU3EcqWSfqzU","52j2p9lfYxPH9SQ62mXX","52u9eqSEi9K7rLbY5RKd","53YlhKigwS8gTLoGf8ct","53iXom5mm4aUpgk2zcfL","53jioJxia2dod9VaVXq2","54nCUptxZWDe8X5hrPwW","54xci1FzmaqImcmf6Jj2","5537uYAvAsjpLYPELz8r","57D9h824MqSlUwFz7pC8","57I5R79jPPvbvcwl0YTE","57OXckNzsyTxC7PBbEY1","57ZM4ODoyBvUQsbuwh61","58864HrpJ2mF48rRCbNb","58Oz1FqgrNBiWT16swG4","5B9hlCVvForpVnOhTtTr","5Bxen221DEPgKaKByB7y","5CRkc4HyAicW2d35S7VF","5CdGMTRqnI2IdpRzJzDX","5Cmn0HJiv3uAmWhY7onl","5EMjtJDcNMMYnyqpSPmR","5F1Dv04U13AEERaPNV3l","5FK0AymFR9i1XM47URif","5FUt7LOgunfbUBukQfnp","5GZhQYPizfv5UaV3vb0U","5GrOEgZnoa5gZ7m8yr6Z","5H5Zlx90j177oYuEFMT3","5H5nR8UnQUHeFhqJV1Bh","5HW9p1ylkRfpStbJtUOv","5HqCVOCP9vkbELYQdDOr","5Hx0vxmy6NFgPGYSZera","5HybYfUEpbyQhGzwHpci","5J1tCtJAB11niXwqXnxk","5J9PdGmoMoQfSuf8g2xc","5JOHKKDvE0tl70QiVFoP","5Jd2p3LYKo5YG64uHcOi","5KQ8brFana94rvgMmwYP","5LBOAhhsXUf851xtUaRl","5LowfhRBQtexb7CIHYpD","5MJGm8r7WCiAwBEhcWMG","5N5JaJ1NDUXtAoyCd5Ev","5NAamTOI2pFeSlYiwb5s","5NM8BGDSzAyRs9pjzNDv","5NqywLGnTh0c0wPxVaIy","5O5IgRSUKTy1m7Rh6gnk","5Ob0vdrimqQTKKxEi2HA","5OzQhIULsvWQJqS92x75","5PpRPLXGJ36TB4AR0B8X","5QKOS3kLFUctuwRvSuM2","5QNbrC2TR7JXlYMp6CqK","5QW9oXk7hX8Axt64IVcG","5QhicoqNmZ2jYhu3gcOg","5QqAdphK2Gi6WRF0L0X5","5S1lLbsT1tsiJElNWKYn","5TXlTogmvQfMqlcAf0Q5","5URY2F6knMStOLvFS7vc","5UtqTYmtQBdXyuyUvxAd","5WZZnU2bzngF02GXrU2w","5XPq7p314g74i5z5abac","5XThaLoNk5IcvYzISBCh","5YuPNKHkGDKXOGIZ2Vgy","5ZTowQieDmoBUxRu0ysy","5ZryRP13ggY7B6QiRzOs","5acGDRJ6DENEkbAg0NkR","5arv9r8s7V1iAwhgXmE0","5bMewKaNzlQoLwLmvfLK","5bjgsNn32cxO4YJj13nO","5bt902ViEtHKAYI7ty7V","5cpehoQaArbwqCeVCU3R","5dRWQ5VlgJuq1rI9HykO","5ddyRGwKaauoNTUttel8","5eXHLLVki3AisIPbrLx9","5ecEgstwTAHU2HGY9ebf","5fLjqyK06NYSzD0kEjkh","5fTneZpeEgEKY9YebS8t","5fwcbwxqjRVvqUueVEkO","5gCCh7kkiUtmKl2FKruA","5gMayQQXEh9tnImDuRwR","5gtx1BUnhSHmtKT2oPyJ","5h6oUqQCG1LT6Ssgprae","5hBgtYZmjAuZ1BxK9220","5hLrwo9CogDYn8XAwlkd","5iZfEOBm9AWgAKFZl2Dn","5jJJb8buAWLNgJJfxznC","5jL5lb5WYD81sXNJL8f5","5jZAM26a7iLzBKHw3Cxd","5k3JXHI7d8y6EhdntYFP","5lavKnDJF8NucldJxfvv","5no4g2czxVloLWqMWtCp","5oHYuYLbgfIKRclcH0Xi","5ocnN8veZMOd4w4CIuwD","5omOtLwMye9eN8dep2Gd","5pWNvhok2l5kNvM68o3p","5ph9lZLsFcZaPM17y3Oq","5qPCt4fNp8GvEHvLYpgO","5qSxu5wXPvo4FKv1y4Ob","5qpNEavGrYCVNb3bcleW","5qtgQrxUzr4nTA30qv9f","5r0PlaUK1hbJj5tbd8k5","5rCeRgUjs8t5sxqtgj7s","5ro24eadBzZkAgGiTaiy","5s3KKkDYQQUlyV1wCg4G","5sawNhGBzPccvxcSH4G4","5sw0Q8YR032c21xleULW","5tAr6owYDPIgqv8Qw37t","5tKi7HYqP6VLQgA4Jr3Z","5tpCuC4X7r3LvFEr2eTz","5tt6PSV4TrmTgnICWsAj","5tzTdegugOsvEq5ZkMVg","5uDP6KFjvzbuKYvkloXB","5vnVRFsJxvVVols6Mowo","5wdvNJEdRealII6q08Bs","5xScNCJKjESBt2WddjyR","5xSylZR9t1SFsow5YrtY","5xm3sXcrsfw1lpBXuSAB","5yjDKdZbIHcGuhF5A2SM","5zjpTnwqDPieEHTAfbaV","62Ll3d196tpP1ZBpYfEP","63NyVp3A1NE5SiLw8bpr","63TJhc6m843YAOhkKKqH","66FXiwvgeHAx6thMrcrH","68BgKHV1Gl62FX1tsOKg","69UhKK1siIpjIYE9O9jj","6BKxStbpgLpocmDzbrp0","6BZanAlj5dHNP2ceB3ma","6Bq6qPMbAjTqjrIAkjft","6DwWSkjLjCWa8Ma1goZL","6EifC1E1dt0TCApEMFms","6EpKNhC41M115VE1gBYL","6FERBtDJ6bLbEKKANBDf","6GLaoj85S4OU7MF1P2mV","6Gbgc3O9BxxZVyZtiraD","6Gt0gMtd0Ix5eyZ6vKIb","6H6UwoHGFXW3QeKPKkqO","6Hdz0WKcOzjiQcG4MxRD","6HwExJadrrANlMFv00Ly","6I1mMw5r3549LPddimki","6IhP9ZqRo1CyEhxkqJGe","6IiDJcMN9IH3Zzfj7atb","6Iy6F9V8umbEDwkE07uq","6JTigqb1aYyLeecLPjbf","6K3wR2uFcs9otoG7jTnn","6K7mFNc8AJVuoS2Ky2MV","6KN6JKZjIsb2Dgg132Up","6KUfPFIXg2OgLgN3r81Z","6LDmF0GTI8zQcwy3OFwY","6LEIspmPqAvOnG82bCCQ","6MGFhK5xkp5VmEFSZ3sZ","6MjDMnWTRD9NdRLyZnkv","6N7e77cyaqKYhwwmsJqx","6NsVDjMoKDv0IGu0ppXT","6ORQrFyVuoQ0TYGGGDcN","6OXv6O0WyffImB1LXo9I","6OiEngRI21xth3iavwxF","6Ot0s0jJsKyVTKbO4NSE","6OuRGdU2Ld3U4XiohjbX","6PNki48smVqMTbOJPjin","6PPhbala11VOy172eVw1","6PaVKmkNk2bw846Ffcbe","6ReK39wO4Ptli3uB4wYF","6RwB1GDAw5ImnO0LfOly","6T9soAvTb2j2CZzjnU9D","6TcERrQLnUAPRpGLHZdE","6TjgIqXIH6jHlFVLFXkM","6U9ZA22nRi00MpnfLYpp","6UNkqEHeVmF6bN3fJQdU","6Uq27VUSd5q11ZYiOY2Y","6VNz0FP1ncl8kLkJYLPx","6VPHRMbVqvPfMJkKoikM","6VYowlZXjYCIHH9ZxnLX","6WA0wRgVXQiKgA1FACDt","6XAQQpGo1xNgulFCwrji","6XeRYCerIF4YzEKzcuop","6XgIgaYuqNJkkshsMmSb","6Yha7uiNwVTkw0zhk7eO","6YuWa2nt5TUXVttLIyVI","6Z0A7R93bkO48161G7mo","6ZfYOSB73itmqFehWzU7","6aUNMsrMzeVrBLbXKhaZ","6afben45qF86pRVf17l3","6cfL0WL6sCfIgVMZ406n","6cxiw7kFvzx8oBRzoydN","6dkN5yIyqgnZFIjwrCWx","6doKPJ6F0OgZlSYYwskn","6dsfDnVOfa96cfj6Egif","6esO1yzojUIcnJg61iem","6fgb03KOK57GeFHUMtab","6gLaKim2gQdR6wtMeQEl","6gQaTdgVdDnDuAWenNZc","6glfOFnftKbwm4CN4Z04","6iFg0Di0qZv23YOohabH","6itMgwLZ9IQ3yZCByhBF","6kPhHACQg9S7tWkmkvjL","6lqkAwi3hzDNFCG1vRGB","6lxXPByrCZHNohorPYLw","6mZrZCDzjIMYr0Z1dzjP","6nMXcuXJBx6U6DWRQguZ","6nQiuJJFIIimJYCregnN","6nVWZEdNpADAkLlyC0iQ","6ojiVuEoe14FD9ShPTbc","6p4WoaqPhYwN7wn97SYF","6phcZiHoy8Nyf0IlCO9i","6qBOwh8BjHPJtGSXZc3i","6qGIDwQOd6EkEkLNsXFP","6r5ITKdJce010njwnzJR","6rMXgGhN1InDi8NDGZlh","6rk7eJ1wTzqWYhjlmFJT","6tLupy9hox5HrPfcYNTL","6tigjStdhIUA5w4icKZr","6wHd3deFLNPnrdARZQy9","6wYbNXEQq3vSkWN1QYHg","6xvctaNOfRH7mjEfb8ox","6xwqBCw4OKnm4R1iVxIK","6yAKYnaeVMwDDTqdS6NR","6yAnFXjkXNhB3BoYGwFY","6z7cmVHIlngKaGXD6S33","6zAopVzItZcnonaPOXe7","6zLCz23Ob2OebA1Bk2Xz","6zYUCpJC5deaYeCaTucY","6zYaCNiYXDNOo8m0hePK","6zm93fWEtxFG3Dg2AQfS","70Cu3XxyZoAjD0UJstq0","70gwU8auTa1yKMdRwWdq","71HE3dHqVsklceu6rQ9j","71KdQp65p0xck62VobAE","71N7wFXllZfAEJTqGfJ6","72GyF5eQVeFLCNd7ibvz","72NCWhbDv5ZGD2LJEp5d","73YzngvcIBBmap7fvDWd","73gXRdMnrBJcIauretbw","73ylh5TsySgoU9lGfRLu","74foHwACKej7yMD8rMi1","74xlhoXKWZ9GXHmArYeT","75RTPd2r4JswEovMXfiN","75km2uPYxLX6bclPJglE","76XJa5xQRx1EJ3Slg04q","772WEPZtt5rZW7qRYM5r","77roPgFocrdSzzZ7wHSo","789jPW1tTNEne0tnFKMt","79HpdwrmpF0dZ4svvAE0","79mLvruHcipCh1DtE0Nw","7AUskRoFijgjjWKB84Wk","7Ag4mAsSTYPkf1Ruu68i","7An1PJvYCnceqnqRcEZs","7CeVRjFC6dELPEOMMZMS","7CoV8rqPUKNSErFeDAml","7D0LZJptS9or0R21umE2","7DDL3hDSBKmEYl0XxAGv","7E3CQly5MLe4F5699Erg","7EEHlbgoPm8SbyyMoEJ1","7EoXme6PCLknz7oXqLQB","7FEhsRHvvNk724mc9J28","7FTGsN9n4SImm1reBH9N","7FpVSWmHr0IjyVOPBkhT","7GbM4wmiSoLbqOyE9ett","7GhqcUKa12pTY9pCYXOj","7GnWqr17GvgNZYKTKQgR","7Gz8WYlxXi6d3Q7vUhuB","7HSECAzUaIXSgijzs5Wt","7HSFWc6Av7fsPB8IG5m2","7IOlNFDuWSSqM6sECIon","7KHkij9Rqp30uI9bokb8","7KaVgdW16m5qoT0uaXaw","7Km6lYbFv1f6LYkKFu9j","7LMKzrvsdB51ts6f11Ca","7LQPtl05C5mBk6kI8Ak6","7LaDb3o2i3WMF82OCWhB","7Limh1dl8odPiPtXcQoD","7N82IB0MHabEqM8p9Hfr","7NqenuaItwmG8S2jJ3Cg","7O9uazpVdQg57IMGC98H","7Of0XZ2WFEjKsECib3fc","7Op428cMMm4zLFFK8sUl","7OyhO2HdpU9YRBvkhYq9","7PSn2qks5dexKpDaH3Ek","7PTo5Ajg98oEdLeaJrFY","7Pp6Nq0aUmrQYEGZViCe","7Qkz8UURVyOSr2PWYs3v","7SJjwCh02LWjJVpWJQYt","7T6OIIWJ3D4Gb5zw6ZcP","7TqBMc4GmnM1wcQWDBRR","7U8eri0diIW5xBDiwL4t","7UfPE9GEaumc26S4bVJM","7V32qIjs04A1kDyU75PB","7VqQd59awiLeUFt00plu","7VxhGFNuQOSb6vOBtdcg","7WB7EdjgFtY7euhddIJi","7ZpK4Byo5aqrM95bYu6A","7a5Is5DMGVWLuSut3t5W","7ap2CZdolKPYLCzCtlfc","7b6HdPuVNmOFJ13mPtNs","7bIBiICMKsZojw9yJyxI","7bP2XKXgKK8PetDaCN3n","7bRZ5vUud7sBL7gql7Ad","7bloDiJ2F43xjistngMD","7bsfbrcN1xALD0jS85ZM","7bxV0OfuzO5nVThwNYvq","7c636JKIPudz302m5bjN","7cOoEpZJ1MCKBkDBfvd2","7cbb7H4kruoXHMm0VyBD","7cpqWqCda5BQM0lMWAqf","7cy4uDhTPy4bPqSDyUH3","7dIrJiyhPEgY4dFkEa4F","7e9RqzLOlG85pA25XyDr","7eD2DP4q7qzbUXHsowJn","7eSTaIm8E6jtoWWICmC2","7fLGZSUxdyxWcHtBUyUl","7gBDojDPpyHW5CdL5O7L","7gDjsLuQIrHkrOeIMAIc","7gxVxuVxYX4f9EYaAmZi","7h9MgxAJrr2KILfvBCEe","7hOMzZ7UnaPUd7t465Ki","7hmc8I6NJLrsGWmsHgs1","7hsASo1ogNWGiP4iLFXL","7iNvxPYC2UfQuQ2hgcev","7iOtPe34QFLkb6jG0SvU","7j6csHdgFO7aDlFijjwE","7jL6jF7vCpKFwTjoSUZV","7kLQGRg7gsjdL9HipVTl","7kgmNVkG98jJoRCc4hvd","7l3GaS75AyOj7vG2HTnE","7liPrdkEdQVIB1vQRBzO","7m6bckgp9jjXHQQkAHWy","7mj9tv6hjBt9noEBSIbI","7mxpgX8flReUntUFL4M8","7n2jv8OJRAqV1mT5pg9Z","7n7J5y76SKIgkLoPfSA9","7naKwMFRp2qX3xKkYlvF","7oMvPahUxYiqIRzC9ByD","7oTa47lPHN5Ikbn42cLl","7oaBx1XqIXgsVQsffhkd","7om56Wgog01LjDlZuah0","7psIrSc8iEVOuizpCDvA","7qCyWONex83EJt1fZIts","7qqYYXpD8CMPxqyeMyMG","7r9CRis4UxaxiCD36I6m","7rMzm7FAHiDJlpzhPSbg","7rrNEhjBitgAlzGLW7ZP","7sQqH8Jqv1Q0asLmg7WZ","7sWpZqefWxijrmNRNXNT","7sbEtXTQ7X22OGd552uT","7stik4zxPq73oyTrQnJj","7t5S7RPAF2AY58b4kruv","7tMshaBYZWb9xzrX8bym","7tRrqTzB2r0bBs3qNXhB","7taL25rSYPAqprb08mv3","7tsy5pX2QlYPFPYqilvC","7uKf9TfRNvBFD1L9Yohm","7uKmHGTC8IUlXkJIQuuG","7wXziMLW5lGoo9XGVk3E","7wsWFNo8jWbgLmxhtiIU","7wtd0E4QV3W5QLQBWKlD","7xv6ntnScNbYcIMAbAYc","7xwIDThdy1x5PBOwjImT","7xwPeS0ZeBEtdAXfZQHq","7z69OwErKoPaWY4KyHls","80AyaJZ7haGZMuewJCf3","80o3YM7u3oDv6EJC9xbG","81RfJPUwdE52amhmW3Ee","81TymhxgR8FBjecXYr9F","81ubkKp7selUv8XhK5Oh","822MwpynIkz6zRIJgfAS","82xDrm479pu5C7B24LTd","848tsKjINGtUf4xQAAUX","84pwEK1qU5PEEREnxYlL","85bfjxC0r9Lc3hcveg5i","863km14qwjlu1kdNU9aK","88UwCTi4RJejAjnQCDzq","89VcJ4MfrNGI2YY7E0p1","8BlpHVvAYr3JXNg7SzJ5","8BwMTqOsCju95IJRGDzj","8D2MuDkf7WKWaSLzq6TM","8D79PvDSyuo1oAtngbJv","8DM1Fx89fFsvmLNxQnnT","8DqLxEvrgyYOnvzhVjs2","8DxGY8t0yWJ9dcgs44yE","8EHYlFs4ZHyVXjRAupUp","8F0vjNqoO2QFMbPDjgvN","8F497xyIBErMNPjzAtLe","8FWqtFFDZH1afkGQkS3Q","8FzqNCaswlyjlv4GEGTc","8GBhTn0MDWUNlCOF37b6","8GgYgw2VEsLK0dorNSDB","8H0KeNyFnEDyc9bOvL1O","8HTxsYts3bgNzIuiq4fr","8I1DRFD7MP61L9vbIBjg","8KJx44xYhBJQVMxaK1Hw","8KbUNJp0YhJgrO7h2Yqb","8LI4muZOQWBNwfGpczuR","8LLV869kcyks4HkkF5Jl","8Lb9oNBxYirs9FmxphOI","8MGVZrS21kFVvSzT0be2","8MZniLSbRpSE0GI3kMqq","8NrmspyhlXD8KkzopB1z","8OYSpaAKplZ1QKoqtK3I","8Oj9b4lBOX19lluNUVXJ","8Pa1RL1T7EgGygdyZfv8","8PnRYtaAKFiV5pVYrBk4","8Q00L0CdWwnan2E2u1Ez","8QRUq3qTJ4TbvqZKKwrF","8QXhO48qLHGbbdLXZedB","8SDErfw2kVtwkZH3rfct","8Swn6K6jTpAr95URQKkq","8WASkTPLVRrqvA7SEUvU","8WMj5CbCtHigjyHi5We2","8YAeSmvuoLqkG1DmcGhh","8YPkXNjZ6R0Hv6mKFOa9","8YQn2zfPNFWFiUN3Xoa4","8ZpgN1mCnOccxNSQJrOs","8aCk4csm6lcfSBBAIHUB","8bAyCeQFtHfmjd2m9kQq","8bcmZC0Qg7xzaaD2Qg4Q","8brwcZyufpvwiXD4gVee","8c16GdNgecyyCUPowTDq","8cIH07ihhRuOUCeGRioc","8cMDnCRe0lEWzrd47TAB","8cRVtW27Xl0yhJpCHmvQ","8gIq2vHUDhdJpzvSInAh","8hKvhBwiBCoUN43krpw4","8hw2scw18kG1XQrmIHS0","8iQnWijhUCjxcpq34dIe","8iTwxHrV09p4KS96XdCH","8jbLxHPWxUDETlvPU6ND","8jfzta0Rgh68oCW9wAwE","8k9DS5C2fIXNlreZMOnV","8lRPJ5Snmm5mpoDLybcX","8lsdXOpSe5U3Drhuhetu","8m9fFo5j2QtrCtXoyg8k","8mKUowxzNYkq5sob63nw","8mMG05OpaL0nYOMy7OcP","8mQQp2nxGpq0XIwi4zRe","8n1x1bkkMbniXZzOpXGk","8nYbjoyhiLcsPkkQsFiD","8nceDx6ucJnVgE9zraNt","8nzd3fHjGj0xo3EiI3fK","8ozbup2BoG01tdzLUuAz","8p8PjkQKmEOPjx2zYftA","8pgJzZ3ZHIax5l80hRTq","8qqGqjD2MeMamPMl58gc","8rAGuqk1AFPxG4RsXoCF","8rlGnhbQQ5v9FklQKqlr","8t4Juw2KsV5Eh88q6pk4","8tHoR6Y6RsE7VBdSQ9gi","8tYqluPk9jccKnvkiXdc","8tZQwdORB7CKwTrHqZV7","8taKymvcogK95ZaJ6DMk","8uMbRFa7rpYXCnCzPhMP","8uSLACkQFPjeJwrqLohA","8unGNcDMKhx4sBPurwS9","8vVajIzOETBxBrhDmHH1","8w0oggCMMQVC8wFCiAqI","8wKZC2mtQ2vEdyoQqtey","8xMhGaPL6SRuJ0B4rkZ6","8xVhGGdd4FlYDxT8JdHe","8xoQ4XmxdEDXqC874iXr","8zRR4ZiVI39SSuTGiZF0","906v4Q4hbt9BGG3KRmx3","91bfgePmD6rdr6vAnhVy","93M051gSnhEFhcMbuaUN","93U4oPZNJvpFJAkFIF2M","93j5baK7ms6ML0NhDwB1","93xL9aGu1lpoz2kTMrCa","94Bm9gXv72BEKZ1ZCHu4","94Cx40TsYUPXLNIJHUyP","94QLo6lui8LdUDOEN6TA","950nwV6TNKCNoz3xnKeB","952QxuKt3DqF2u1rBVYx","95KWLl7unXnHpzxhlq8V","95OlbeTcUjxMKDAmDLDj","97bxSBXpdu8RudFO5Xqh","98Ec6lX3KbvWQenDGUKP","98bVBalBJM0x3C9VY3IE","98czuAsI9L5VwRoHUZuS","99kprvwYLSHrknUOoKfe","99q75zAj1Yx9G0N9vhqG","9A7a1H8mH5WMIHafQqJW","9ACU3Cf7nOpPveQJ5faV","9BgGn5rWBARcMKvBcfAi","9CAIQqFGOpMpFv4FDBO1","9CCvYZc9pFyPm9YosGtv","9Do4ttmsGBT0iQIKgooX","9DywrGlILRWSvZJzDYMy","9EmCZjNb0fLwWCmVilx3","9EtNl2Ij1NSut5dWcmrG","9G9u4ETQ2lX8WyKfihgh","9GCJcesH73ktarfsJzQl","9GZEpYnFhdXp0CDtmSCT","9Gbc4QKOfm90krUDES7W","9IQqJw22fuXJwk4OVMci","9JHpHIHHGZfS3r5zWSzW","9JgkjNVYdyTIB2CGWhhe","9JsnHIPbuxyXRg54VTwY","9KIJwMjcSUy1BExtAXGv","9Kqj4QZpH9artJ9D0UHX","9LtC6GrNegMn7tdJL9jm","9NP46AvOnUgKPDna9tHL","9O7zI9jdFiVUo1MwXAIY","9ODoXjEpYIgFHeybcS99","9OVKtm9aO0hsib6sqJld","9PA25vA3o3FQguHPfGu0","9PFsUpiJIP6XkZq5Fvpi","9RMtyGDRmwI9UWUXYAYR","9RXywKV0v4TC8BruEG57","9RdA8pmiSUEgUlGZff4W","9SoFyvv3ZD5ql1hCNOmH","9SpKLvap38eUFYIYi6ry","9WFC9L9mVIOtHdEp32Wy","9WTQsyT37sZ6kG0RaE7A","9Wu0jxh9a6GrcnizGlYE","9XFPQrRQfnpUZ27DqsPi","9XWONgtyhiL03RQaUkAB","9XX19XdyHuApxRhYxdNu","9XZ6xgboJjOAIBCRfAVn","9YEj3rgEeOZmdHRwS60A","9YNWj6TsIEfDxWFEfyz4","9Yo7hc6dZdKnEXTQyeaD","9YoJtSYtl9m7Twh3oSNU","9Yz8qppSBarZClyVyyN0","9a4JHj0DOSy5YrZmIrf3","9aMFPavkA11oqkfc3VY6","9bPSiwGiLavVOMPAr7u0","9c2du26QM2jgq7vh4qUP","9dbLdjPTCVKLzrETdEI6","9dz51zRJZnupEkbCZeaJ","9f2nD1CgDg3Q2FapnsMd","9flauRVvXhqw34pXQduO","9fqnapn1E0BeiXDX5rzN","9glqQCVd0y3B56A9Rnav","9hSGi8rgtTLXNs6xrcI9","9hwf4X9RilnDlOyCu3Oy","9iC1sTbmRjcdcWbNi9cO","9jYIiJEr5xlWrxfB3pPa","9jzyja4q5et0akhcnh6g","9kXVFgDTgRxHMWDDyg6Z","9knqlZrkitL1txFKk6ub","9ll2Kipdm9YL6YHaRy8d","9lzhPVC4Czb43A29ogPH","9n7aucPbh6oE6yA6QDRf","9pgIXse7zUN4EE7m2W0c","9qUnxAJu9ZDQR70Qj7ot","9qVDcmU6BezxrC6irrjt","9qlYnB79drs65zO5RZNp","9sAR4PjFL6XOiGYedXr9","9sPIlQYuGnofrIKCI1ZI","9tn36AdjVUZgsgO7bB1T","9uCYJz3RXzBs1SfKuqdz","9ubDiDdYSvwegGPSBTaV","9v1CwKWNDwb5cSOQheIK","9v2cmN1yLqJmug2BbJw8","9vBwZSfU34o15bvfauMf","9vorvcjzQa5pjOPgQFhm","9wdtPoVYY5tcZ3IuzGaU","9wlv2dbc7I9aKD5I1Clo","9xGez7zZVIA1qShQpE7Z","9zHBOrPjSHklhE8P6u0U","9zY5FdnG5mncY9IiTfgF","9znpXUnhaixAgrqHOvOv","A0DV2eiKRZn2Dh5Ez7Nn","A0ekPvJ9M2L42gZXl1WZ","A0xQhvAYqSdxv0ciWP25","A1ivrDx04qinKP1e3Ps0","A218sW5ycuGuOUPt4PMQ","A2EEqnxFTj0O0f4Z4SRj","A2PAz2JfcVKQIlBupOEa","A2TNl7qZwfJSdKh44RdD","A2lEOcT3TYBnZxk5vuUm","A2sJn5iK0rD7HfQnfmKf","A33j9lBwnTaHu4wm2qWP","A4MkFlSMZ5Mguu4mbBLc","A4rRXPTBy7Ili1c2sV5s","A4tnxnA7T0wnQbR80lEq","A5RE5lJZffJxlkvyoHEn","A5gL7K7kQIEj0h0WU8k9","A6BblfxEQMYX6I9aPZ6k","A6fGJjyZhCqaVe6nQvg3","A6tbOGBCIdP4Ajf4b03e","A7vgxwehWPhTqvnRBB7k","A8ijQGGGbE6ZVeNGuYY7","A8lrQoqUf6Ub8BMNdkbz","A9hUAHAwZfUg4OVrS06N","AA9mY5cARxrQmfZKPIHf","ABHm55HTXvBFzcDoOYoj","ABN0S1zMGnq731iZMjR3","ABjbe7WwSvGT5B2ofzqH","AC7K3998fp9WN5swK9Le","ACAhHc7GqiZp0iY1RaQl","ACnFnXpaY8HhHCEPAtIh","ADpdSTLJjhCC8lEbsyj9","AEK0tFlcF54f05OKsQSX","AEK1lme4waNFeUENnQmt","AFNi0CXwRx0BHKNCuoje","AFXNxFNNIFFZigYaaPtH","AGPRT6AzJzdygQ5wd05J","AGSpuDIfIuE1OOhUKjtN","AGe7kuMxnnJZidNVNkvc","AI9vkSFchmV0L7AwKz7g","AIbZQIN16G5AnQmOioXY","AJ4YPSmoHvpjGdLGjPZn","AJj8c3N9m4NaarG9rSgf","AJp7cnp5QYph2LS0yt7W","AKlKfRBHOtnnGiNOWpwu","AKodpUwEGydY1NeBG1Fu","AL5NZW6oUq8cUksZeGFD","AM5AGn6ys4DsBNUhEaBS","ANldFFjlWP9PmcruOOeV","ANz4Hwe0RXk7kas3YZpU","APanjEs1VgpwraMiW2aO","AQ6wyFuURIdb4EzYyKtU","ARCew9fOr1p4zOvsaVNF","ARQn8TgeHZSRTSo1PIAx","ATcfmuoSdkqH8T1qNfDz","AUGtPq4hyCcvqaQ0oHn9","AVYWf9chHyBdoTbcZFZ5","AWM7Oe3PDVy1FBU9R4YR","AXYk7BDHd1EvkgdiUJDB","AXe1v51cJzp5UQzn56oF","AaA7yyu4jUqCO5zUdgub","AaXjy1Uk5I09ZRYOZ97u","AajnEvRiea4L3o6terWW","AbBFsSvWFYkwh2coxuZg","AbdzREwsoGa9pR8NmQeQ","AcBXJpwGMaxOvXDLKVT4","AcFzLidcH1dYys8PGjo3","AdbgbkwayPqSGwdmXbgu","AdcBLqDvYIqrQtekN9PG","Adkb4ZJnXE3kDscz3BxS","AefJVvMYy9fKoyDyGKTB","Af3ryDZi3Jrjq53QnfXx","AfQInvA4jRXzo2b4phA5","AfbrhRLnl1nK4x0MQLyF","AgDpERgCVv3D4SUvpYU0","AgI1vToPMrlm2lpLeW3x","AgRoL3EXcrEjSiVuwOlS","AhAMP4LDo7WM4sDKBWhX","AhFF7AEq7H0lTu8nK4yB","AhMmLzYNcJPyMwTwAd5q","Ai5PTyt4anDNOwzv3naG","AkGRlE6TsrhkfhK2USDg","AkjujATN0G2SOVSgdyut","AksTFgyLyYjG0nWuX6ty","Akxu9EJN4Wm5Ej9uFmoj","AkzP2BaeFTviwye3DrVx","AmIc0hrZ4IU7KbhVzJWv","AnjR6nIdXhGW1hehJEWJ","AonkheAJb29Sih8aZ8E7","ApBF2fHDu30YcOspNfLu","ApT0QVa13pU1NSamfTeA","ApUEFU23imiGUT65qUif","ApgAsVKutCY17mYzTV9q","As03N0nc0G9322IB9scj","Asocm2To9cXAYgh6BGTW","AtTwgiVyxbpb8Y0pdmr8","AuuqDfuaVSWzT8e5LAFO","Av6QfEH5SnsRcsikdNQq","AvTBQL4xEF4fCCbOLqhG","Awktpr8GLLHnO6Ecfx2I","Ax7EaWuWD1XPtnJc5LqV","AxawXOvJeeoJCnWkWgCn","AxfGITP8lzvI4IQILozv","AyKmFPqJbgFeYQ7ZQuI8","AyW0Y4Bc8JM7pThc9wKw","Ayc8abzNnSM0fiSrqyc3","AyuoLdnxOSff2pH53KwN","AyxYmlIXAuho6BWi4emf","B0y5VvbLsUEXQv52dk2b","B1NGgLGtKuy1v7ZJcqf8","B1psNiMk9p5caFxSJmdd","B1t4hoN1M50mvLGe1mSs","B2hplHaBlvvEzRfRXosG","B2ijfRspdCmDuSC5IGE8","B3DuCw0se9Cz5q7rN6gt","B3YRuvlXnNee3UkxXUki","B53O9SeBM37mirfobcaI","B6383baiDcUEiIR4wCRv","B77U35v5vfl94gRvMBkd","B7O2TstaEeEBsFfS1xZf","B88sbcBGlj6s8ACTHzFn","B8Om9P7xKdnUl2MwGZMQ","B9UgkjVi0klQELgM9FcW","B9eToWi36PKRN8GvE8Pf","BAXCwVKtKvyfBjN5oEWw","BAmyy4okxQ4GpVw0UAbB","BB63rQmvzG59fQVUxQWs","BC0O3pT5CP1jL7mBcASM","BDCIsot07h6HXVBk9VC1","BDcebWwf7qlXHSuTDzMo","BDoY6kgfxzKUDoF2he99","BEM5tyIIzstudSJ5TEO9","BErmyWVcP1yzp3mkAzHz","BEvrrmwWWGh6yxGSLQMR","BEzyb3SgiSct5OTVZg4A","BF1Sok7cWXw4GmXAyilW","BFXRO65uGowZJQ4g25w1","BGDdQuWGWvdH6lPLhjxq","BGSN4FaE5V6ioeze3lXa","BH1dyZEhk4jfOC1hQtRp","BHFRGwrgGZ9EEjlcWzDE","BJ0pzuG6t4E12HQiDq7A","BJPeXt8v3snCAKlPgKUP","BJhZ0Re0U4S6Necup7ew","BJt62KwKowkzna1SlOv3","BKDJqecY9RrTil1njcai","BKSedKhXwmw4RTtZe4Vn","BKTymxWankrrezfGFujO","BKeJw8dCGRtiMRdASJLO","BM4HbNVXiolulHF9TLzn","BMT2bVXf0zCYevPJC9zK","BPlyl66PDfrXgn4o5U74","BREB2be5ha5pxKdAlwPT","BTOlMQaFuNXU0B8Q51cS","BTsNUGhlMCnv1wVuIwQL","BU3ROfFVGu1u4L1hVJQ7","BUNKxMdOeAdrEEAMGvaC","BUcvMy8Jllpaf417zILe","BUh8wkZlR8ckIk2S7oHv","BV4LroVJCU3ypC4AoesR","BVE9xuUSOeXffmEEucdk","BVHGGvzAqLR1k9W2lO2e","BWbsegdye2KbK6RX5hI8","BWz1FNgdwMSxS6H10Z0i","BXmTS8Jr5dDgYL2qk6SB","BXxSJ82jHHBctBsMPt33","BYPYgYuKTDuqUKNqDyhn","BYRevFpLQeEdDipAAVNP","BYyLFxx05gX0khEpxbJO","BZHwJgRZA7oABWSnLCTL","BaiIhxdmIKHCgG1Ruk1p","BatKYvKWIxMJg2mXyBYG","BbKNDZE6E86bWa4Je4Cv","Bbc5wLjJwx8jpmxqsNPf","BcZyRuoqo5PCqKk1KT5f","BccL2balQTUYTqJ5V06R","Bcd825P3WUxQtQwmi2Ct","BdBsy5pkUhRGMgAlcF2u","BdVBK8eQD20nLk9N0FNX","BdmNk5dxMZP1QqpozdI7","Bg73fPsC8zaGqWD2usl4","BhpIKScJYl68NFozNWjJ","Bi39RC2UZAJ1g9wLOyCH","BiZV802tMtOHxgbL6kb3","BicB2Ye6SS2garPmmWpf","Bj1RtL7ahdJkXD0gbKl7","Bj9Kdc5pm4sh8VGQ0G9S","BjVZEjehBqfSAmfAOUU5","BkRRezhDtG9nkGoB5Jeo","BlO12ir3QtP6vxnr2YI4","BlSyB6gY1iKhAzJlAjyA","Bm9wphSwZzKWPWsZ5y2z","BmkriTORq1DfeieG1Qwv","BmyfZCGPbQv1wTb8Hnsf","Bn3AVZtCDFqntt74vPbC","Bn7CpZcqKdsModxW2j9E","BnKLSMqadokRwfo7DuL6","Bo4RCcByOGYi3tI2PfxD","BoJlMB7qkl0phj3RUYtK","BomAliFMwbM6MdeLaA7I","Bomq1RfRpcxxERRqjU46","Bp8RFYQIujajqN0TeFr8","BpBA7e28MSU5SYn1JWGf","BpF4sUnJSpTCc1rOvyf2","BpgtYS6M54je7qrGln60","Bps4vH7pzGgYf4AZjiQL","BptnAB5t1Y89NDbIawhd","Bq0r1lb5U9vOLnRWySlc","BqWYkiNDl230QgDFLrog","BqiNFEG9cZx0mZP2Y7h8","BsLB6nkTwJpv6ZxRyITX","BtH4XF5lJPhQiNPFJGht","BtnsuGLDM5qpEkGm5fg1","Bub2YPvrWb1Vx2wzHCo2","BukAt3CmmNvUzvdzN0hn","Bv4Kxo2INYhSUaf7fFJB","BvJb2G5Dg8mEkBxXyKMz","BwAGy0FoLkTmv81oIqHs","BwRg3WC4gGkI59g5rJ0x","Bwdk58eJlRfPbJ3ZpRKQ","BwnnxzgkqTXFo55VKrzh","BwwqmJvuRihmXXAxC1Fm","BxNCxlouZaleGdwpiLaS","By1DPbENKTlPlgTlOSxO","By9Hf2moFpZwxeVSNhF6","Byq4wDhx9GXuqQPrErDo","BywAoK10SXH6bNyhEWuD","BzArkChRK3PJjqvN8uav","BzGcaJATxWvc2YRS4p6v","BzME1PTcvv08N6wyrWbA","C0wVO9yi7shAmKhDx1sR","C27a9orGM35CARHD5jmS","C2KSJOIwDxaCnYovHAmV","C2eEXV2h69IECZSDpieL","C2jakemgWP2xRToCI7As","C3TnJ2CXz420CgvjLhch","C3fStWpGQq3bZE2vjLwC","C3g7iX8vNiN9ZnQwC9MY","C4utER9e57S2GvlPOtDU","C5KvQEXPn69ZsP2g3wA1","C7SdGhC8uRIudXPTaGGS","C7k2kPACCYqWpALUmVZv","C81QVKR82OcjGL4qiWhP","C83ABqM9rw3b0tSoH7SV","C8YGrJPR6rR3IRChhej2","C8dYRaSYeLEBQ5RydJyh","C93NJRHuQyInTixwUwmP","C9MdEEhDlNhR6Xb4kLJW","C9PNIpeWOU1f4BtYBmv9","C9nND0UjzD5pMrywbmSw","CAGa6C050sdbR2EYENgj","CBpCpMOA0ss4SzwVQqeD","CC1uWIWyXvizntd4Gi2v","CC9M6BVnnNEHrVBAJ99x","CCatQCGkHV8C34hYEcK8","CCnI7XGYpQHqBGSQxqeB","CCw1RJi1yiLhGoPUATFl","CDt3TgS4tdNOPCbRdMK9","CEMFlPYLg7an0XqMxSGn","CEjrWUKxs60x5PJTq0aU","CFwShqO28xaeyH6TrXOw","CGAvoohjTn5LnzzJ4suV","CGxXd14Y0wTT0TrqxCCf","CHhUc1YRboUBJB4quLN7","CJ3Lh8tfwwkWTNG0dfjJ","CJJf9oAYMxNp3FsudLGa","CJzO0XVsAGKjCMw8pLaa","CKcyr0ytrxGVNYdXpRm1","CMAT3nOvSJSds2meOIIA","CMLJOoITgOm8S17BHYbU","CMkU7Cxt12xWreesauOP","CMwGkMBKYuByy342rnLh","CMxXOosEFzTfhjwOuQ6K","CN5qjGKG2vEabTNM0vPT","CNWV7NH5HojyC3sMzn88","COSjVPhU6zkI1QgaD7TC","CQJXxu0HqS3wMCAgjuJu","CQsAm6V6WWWOw98V7RNi","CR5KKxZzalf7fDuDAItn","CRQmaIb9lIZQYvacqyQW","CRVLGbyOOvhwnK2E3VeH","CS2801gckxQWucicGerH","CSWX9FRTf5MoZkEGjkAy","CTHH8YmkYUDQQQoIPTaQ","CTHplG65JDsQmGO6pLTn","CUIei9UUoULLngDVkWyQ","CUKRl64i2wBeGmsqHpyS","CUtZwhW2QhBmDSrD37e1","CV9ypiiMrZSgg5hmEEXm","CVq1S4eQXDYGoZmqrdaB","CWmzI2nJzBpnObOClUc9","CXA2vncIMnvPeJvQcC1i","CXEMyPBxltRzwamMWKgr","CZ8qtXwJIRjJkP6FJEck","CZ9WnN3lgF5UO5kAUAb6","CavKaE3ML7E2XptAuiYR","Cb8uj8vgM6Azw15gAnXk","CbFr2ZcioB9PDRMaBvnu","CbixTJx6wdIuAsHWYs4X","CblgK6c7iezuYislPhpG","CcAqc1UwdK8ls1a15BGi","CdGMqCiNwTSoQ47keRSt","Cesoe8Oq8EB2405y3XDo","CewoQy3afFvcn5RvG6Gl","CfHbx0PxAaIipjlJ75UG","CfJs4euqqU38hOgyQGkE","Cfkz1ZaUQRQBhY4wXhR7","Cg3xCCnxJeX5iF3gxBF8","CgKQwKthw2KpYzHQPFGM","CgmIfkN21QmnfAqpBPmB","ChzQmq8iEEf9rA9nhfaW","Cicm6KUHq131XZM3vLJd","CjHQsmdbEJflrWHxJOYP","CkJVHs253gmpk5MaPDhn","CmyWXtwayNL2eRhpIZo7","CopnnZQIu8ZUGihmjP0A","Cp4BlYStQbTNgyp8gUvA","CpDmRjUPEvZ5q9Uh35zE","CpO6SgCKvA3FWG8J9PSA","Cq4tvtwfkYYDvwbgNOoh","CqPbDpljEPBSNkVZaZcI","CqTlt48oMytNzPJHL5LA","CqeYAgr3HkouzIKlDRAA","CqxefkjItCI9EyHDrhGB","CrLLu99PX098ssVn2rQO","CrkJ9FwTXxZfg4z7yk42","CsldXJlOU2yXacDXnx6E","CsmTzvzu86mDr4j0DNGi","CtEtm7EyM4Nk2yFV5sWt","CtNpGlWmxXVXsY3oGikP","CvbQLG9gvk4qaIei3IdN","CvbtNiYnTZBcyVMBfaiE","Cvx8q5XAOQXFIrLJm4cA","CwBV4pxsErLln9DKn9m2","CwLgKzebmIIuVdXHHWPE","CxBls5w5URsQeW6Ebt6z","CyD6TQuQfSGV2iUESqum","CyfrhqzoU1lvUGaY2Urt","Cz4gdQlganc1kmqz5diu","CzQ18BdvPD9Q0gs6IX3Y","CzW9ZZz1BNkBg36wsdxM","D0E42pFlhZrzQRKKrfzT","D0SLCbwabQPbriXstN7d","D151hkk6xhBaH8BqRYdd","D1LJL2q612CXs7B05d9V","D1T0DaNayV05vrBEDnoV","D1jc94o5Qp8JvGDDqzHo","D1mfcssZ9clYFeMHifSQ","D2KHOlC74TAkwxYj2PWm","D3BsM6SgidIy0TPDOMB4","D3KoYhbwwkmdHWDBngH8","D3lUJgOuKIgDcd0hY2Vb","D3m4RH3zhMdvvIPpO3PA","D4dAXR5KQlv5msFSEf2U","D52a98Ah30urq3oNb6zX","D54V6mGbbYu3XzabzsdA","D5tjM3HIb8NSrVxIsCMl","D63J1GHYBxJUGoyrNLkc","D6Digaz7HxM5ukMeR4p4","D6xEpmD9LfhSspD38PTa","D7OGGYKeZ8h10V2vh8O8","D7SjrTeZ5wN9Od1JvORX","D8msucxEcihulUQjYlZR","D9PupMo1X9TCbNYq338p","D9ULnTxkxV03z9LfqJrn","DB1V0SI3C2rNxkjDVzcc","DBsmiSUgfBdVx2ccLa9N","DC1WkjDikR0ZOtFQsGBd","DCibgrSD8nZpnOpg6lOP","DD1ecoIO7G7YtP5BNz1c","DDbswZgjwzvKIO3baclF","DE0wjYjWe1P1u2GB5F1U","DE7YGC2rw3lhTyRXyBTp","DEPzi9JPtm3XlFQp6xvo","DEUQoHjwJ01FoQfZ7q7t","DF7frGcMeEkfUxZlbzze","DFcu0yMsd5ovi32Ehqhh","DG1AG6gidwhobQKj6rlH","DGl2Eq1VLJatXLMzrjy9","DGxkCPqt5g7T0Aby21K0","DHjsgLm91XcOcvb9NG7C","DI0ozBaPGHIPg1TtqPpn","DIVZhAkZTqlTtQ3NSUiA","DIpz9yEXYoAFCCYcWPAN","DJTxOd0jryBsM8XodSjS","DJmVHZegHiMYXVzRm4y0","DKAxKeSP8A4q04wIyXob","DKtqNbo4c5L4H2bk2XCb","DKzww2HZ8f7L3z8xHU2S","DLRxjeKsBWIrE5SOiheq","DLY1Cv6FWzc2bqqTmmMp","DMe1rCfkh8WuB1zFQuKD","DMz16p4R09lmdiAVpLUg","DOQvms6gjb7MAxiOvPb5","DOnvjQzHtsMpKHUGBugW","DOs3lGrYMqG5asbTuixi","DOzs6fjQzzFCfBd1Q6fO","DPGy4ksuTH8wqBMQiKK6","DPpuVnniSMsQUoJQTtPV","DQAhucTDY41Ygmh1Lpzl","DQwuRfqKvGf5FkyyHwAH","DSEELYIMmmsHQlKKDnH2","DUyDyRUHXjFsOMjWKvs4","DVjELQ2MMvyFEtCcaXnv","DVoLVaTHBF0mBM6XyVHi","DWdAmVUozWqBfFVxiTvP","DWqeFgoW7nJbffMjNhYe","DXskj5ndASDwH0d8Kisb","DYMJr5aKPKOBeVppSjbY","DYpPIoxgTdi1SR3fwG7k","DZXZv6ph5ZqhMBnm3J1M","DaeHHspYrE1uc0Cbc4Dt","DbAmwOpqPrdScYVzxyUk","DbwOAFYnnSGrQZnSRgEz","DcMBgDCI7IPaZjLNS0eZ","Dd6flg4ZJiTvkJkOGb9O","DdhzofWeRNbaxV7hZeMi","DfdhZ4Hml5GncTPoFAqW","DgYH1muZuYTNfn9CzKh1","Dgjj1q1UkC2T8IrDK4hD","Dgl7gnEsL7xdW20dmmVG","Dgsckg6iECw7ts0HOmCr","DiGwBKslL6nVM3d243Lh","DiKHqz9MO76owp9WCdX6","DiTGR5rYZVbQPrbX98JS","DiaCLN7t7M1b9aj6wdAh","DigbqJUQ7UPfuxOEXOtT","DiqV1JGbm2scKXQoWQQI","Dis1YlYTMGapMzHLxtsz","DjTkBe2xoIMwSZtclzWD","Dk9mjx9sdEhbNJ0u9yfQ","DkIF4DSTEJUbSYFno2uh","Dkp0SZkFQ0BuaQoQfpg7","DmGmsAHHJLONcCSxnFfV","DnltQwCcfE2ATvhz4GWQ","DohV9F3ZTtCKNtLGPSBr","DojYlRWq9vtN4e8X1Gg7","DomlCiT8nRteScQU43Kg","Dq21PGpngBd9UaitW9VF","DqphZm8kWiSFOnSsLzPN","DrS3EBy9A0AqGVzoDbix","DrlDJ2EOE5SAnExMKGB8","DsG8JGDewC05ZMxQ9UME","DsQWsZiMfRFrArzft96h","DsawxI2yGGa6GvqBJiif","Dt06ZX8ywKDlRckqJS50","DtCtlHfYKLGQyN8WCoFb","DtKzWMth3APQVvFgVGIv","DtPo7l8FzrBpLDsqfCRO","Duh74aFtQMh0jbTPC4xi","Dv7APBjGKypfAWXbvfSV","DvACg5uZjMT7fQnzaBd8","Dvttuxd4ONVO3bgll95c","Dw83uUch88tDvdarMSas","DxOEzDFlzjMwrPHb85fX","DySf6Xg6FGUukOiOQXXd","DyuKtfjcvpXXwSQBtBvK","DzAnOWICPvdPRqvQDrSo","DzVHlAIlOsaruXUcyeok","DznJnmKclimMuHngIMEH","Dzqz1hbg8cCQJrlr1zl9","E03RP9qpRr1uHTFuXRLC","E0DodQRbpzISlVJ11bnZ","E0PixBPq3mh7583PoNRL","E0caRdZGGlusNLKbcDuH","E10GpADsYbF09rzcegsU","E1eDZLhd4U2h2wU2BLyy","E1hB78zZheY3rDdagFqq","E213rJ76YrpOPAZMkhYe","E21jwBENKqeEClQRiQUQ","E3ffYUvmAs0N4PmLU4Hv","E5M2x8vf5xbuHJnoDLBO","E5dDWBnE1HgXUXIo7XH7","E62pMymF1Gwn7uZ9GbRa","E6ELkGpXEQ7G1Vkhh6Yt","E6SHbmqnWuBOwt3FMrGc","E8YTXbywIIv0haneZvr6","E9Df6xwFeF29cN5xXrMB","E9dAVN72BzxWRDl2zxI6","E9v5LlOm1tutAMW5qrWb","EAIEf14qsRjwdACy33Ae","EAofx4U03dsULvTJduwz","EAp76oPkVTVAbza8iGiN","EBNtbpB2VMSrUEkLEbcn","EBmKBqe5Ea8Csy158QeU","ECFQpAl7sJLwpcWw74cc","EDN6fL0i4NNQ0vryaHqd","EF1Y6rCybT110Dt0UfqG","EFnNMlW5n1KGpZ3zUvp0","EG4olVdwKScmzMI3jDPS","EGoEVgIXk54VVms255DE","EI2jI1BBRqZIhOqGTSW8","EINh0ri8zJMCIT29lHnC","EINzzAIqmkgVUoaq5eck","EIsh7Hg6dl1jpqI2JiyV","EJjGcJYJYfJ5BNZ7upBM","EJtqcZgNm59vB1zHy9k9","EKixanlFYmHDrfmtdtvx","EL1kXlg3f0w3dFE4L4yt","EL9RbNMz1rvRKwg5vLpf","ELTwiFwmieLMWgquWYal","EM59Ipm2L6BE82Vf7Or8","EMBACj9LuYubCS3NY8LV","ENEIt3IhDxX53JKeJGeK","ENUchIoR7Jr0HCQb4YTl","ENcQRpgpaEyPjIvRtXS5","EPoTFR2L6QPqrLw8LMTx","ERXxnoe5q2jNPvclZuSz","ES14QE9U6RqPJaU98hIV","EUAzXCjEjPaNsu1rCABQ","EUcMYEKvBeUYdFzG1one","EW3HWEa2L9bm5SfwF62o","EWSO9FdHlspml8l5eAjF","EWyeG4ore7P3GgBwLoVL","EXVf6Z91Z5fMQkvXdLiL","EYPBacVL1MMOoECJq6sK","EZP4XR0t9tcKKzws5MZW","EZu3wKRreh4DxagEN4bg","Ea4TF62vkbx6ht6AIr2d","Ean3RYFAPHMrN38PxsuX","EaoSkFDl1dufaOPyLlXe","Ear5RKqMNZFgXy9UtIin","EbzZRQPsGhOTrShLvl11","EcC9pVroqBC12ebnbkdF","EcgogKUHKhUNDWmmFqxR","EdP9mqTmRyQImaZK5qSP","EduwVaN1oM3vNc7hJPrQ","EdxvaPJVE5hx0BC2WMNb","EdzkShJnv3PMvTcjC2nC","Ef0sWwuy2omU6ObTZ4pv","Ef5nGrr0ksrRfryztPXZ","EgVItfGWgakDlSH3MEmE","Egg7jHSwkyX45uzYvrlu","EguOOQQ6tEFBOLIMbU7X","Eha5Y163ljJ0ym5QohIj","EhbCF65cRSOpKQRRpIlA","EiYj6Raow3NMH6UJLsXW","EiafVS5EA88naBST3HhV","Ek3VsnbsETKTKpxZ2v9S","Ek7jD2raqDxLvyIS3LbQ","ElA1OF3bkLYz6BfvkGyS","Em39ekjUTd5yFuuXPnv5","EmrBz1W4BXS5GS1BzP36","EnBrYLFnqA3gp6MlJDLy","EnGfgz16Px5VQivvu1Hd","EnQS0Pg46bQN5HXQtI1T","EnWGnl8Pxoi7gUpf8Eek","EnaHqoea0QIoZ2vH7lc1","Eop0WAY6mZstjD61SWzp","Eor4tXZWdLsGzlYh7QWo","EqxSYuGVWYnWInlXLScb","Er9ufqk3QWZsqzywVTAi","Es73PeI1uoTDghLIWuvn","EsKIDpPvdxAhXCMp500d","EsoomY0pfdKp06S7P490","EsqOEsISKlrEj3kqbvl1","EtDgZkXWcEMSnNJznTVa","Etc90P8pZBzb67YBP60g","EtuwJKa3Q3aOFXlzUpPI","EuQ0xI1kWTTSZFbXdlkS","Euly8IhlWOD8klU3rzeG","EvlbNTwdsAkee5tVwtDc","EvydFInqvSpa0hhllwTW","EwkKf59Z91ZzhK89dy09","Ex0JpYmKCgPPXLWkqbk2","ExfEa8ABa4BXag5deWgA","EyCfkaxFvRzHLTLNjqZg","EyN8CSEVJwNYV1NlMYqi","EyntXJ5nrVEEcdlLMHQs","EzBWalpiT33ZGJ1V0Id5","Ezq1UZcup6p4VHN0eyXu","F01MkPnHXZ3hhTEpanWe","F0LLM7LN31fp7CuJSrNM","F0y6llqjYHhnDMD2QAB0","F18LTzdyothmUNqLJ3S2","F21lNg1GhTJMWwPddlx7","F2k0EG0mbpBIuRD5BoAo","F34C2x423dAnOi6LawuZ","F5IDWpruFXkQRTHYcEBg","F5MGy21uZvGUlPtIW5IO","F5kOr5HSmMTCctrCu4Us","F88yjRVafaO3Nx5ixnAC","F8SRu5e8qbZy6Bs06SRy","F8ex612FFb7Z55mz0H87","F8os50SWsdFnzWoYxp6C","F96O7t3xnZqL65L628Al","F9LhfaPYg1GGLThrTDpC","F9MbCnPUFLWOeLvsHZuj","F9eJMoIsD63LuVCQ4Q1M","F9v6kQ7gdUyB6EZ24IKo","FA7bJJwMZSplvAJe9aNV","FA8drjSqNSN4BakzBKm8","FAaD6NVYh6FJiPIW3hut","FAchhhSAOQkB1p2eyVwF","FBAM51juC87KXAZudAEO","FBCp85YNKtUVxlF9exHy","FBqnfexG8Vgk7L4UJYFA","FCbxuU3wwGIGS3oJxnTr","FCtfhTsy3ZO4IRvdKF3m","FCvUWvDzb9xZ9Eta7OhZ","FDOseZBy2H08fhYSE8d7","FDjRLPBsO95m0ppRrpNf","FDqMTpF3inBSZaJWRNaG","FDqwy8IDF7f6HX7ixOG4","FFNEGCTaDMxzHYSrhM4L","FFhe0X8uGmwAUx9ZU3Ix","FG4zRwDUZfIWVtWl9nFP","FGEHCW99RkKIkDTiwJ71","FGv8Tw9ft2HB0bD7vdEg","FH01xAJIuL1Nshh9kbex","FHd9nexWy9AjjQ2l5iYa","FHps9Ll1Wd8yZrXoC8NH","FI4UllwieHEzi33dIVyi","FJJk1Crg30PuXiubmw5K","FJQXhKPP7gSwl72Fibl5","FJnj64JsMnRywNpjoWXb","FJwltdo4hkmXmXmVwxTU","FK3uvNmHjzNecGVeTszk","FLaVXr2L2RQo5bD5hwtr","FMEfqktFKOCZHO7nBFFL","FOsT64vV8UZIgDJmD6rO","FP4HHfcsvMAo3H9846ov","FPmfl7JSPeUCunHPfi8Q","FQbBiZqm5O8jl3aeJTzi","FRilfCzEPrsEq3IL0E6Y","FS3s7RJjFeySqlJPb8MG","FSTeitESoBUnB7ppmFsL","FSlUZ1PgCsidq1KaBBuG","FTBRYIR5nor5hzOUIiQ6","FU0qUgorcx6zY8LiilYz","FUgiK2f49pb7A4b7tFwC","FUsIJ1Gj7yh7KWRa2EYS","FWQE50T62ZWnnEQJQNid","FWjResUrCIZhx815SfFn","FY4sfwnIVkHLiHVSHOR4","FYor3AI1klegMPiU9wQ4","Fa2qn5Jwn1fkHY956yWx","FaAK5hOLbMnDotb1WFkQ","FauZ3ZxzbYGYRFmWNJUQ","FawAgxwh1I3V0CpBj00m","FboOD9tn0qWts3zcLVrr","Fc6976oKR8ZlDTdAdOzJ","FcbN6dZaawfBBk3BZpT5","FchnTI7bPZSwLBuFZFd5","FdqlyivPRCJoYXbZPuEU","FfjL5RNl7DTXQ6rLj8Dy","FgrwGufzviTA0lifNHAN","Fh0pMuojHyFtf9eDMTSN","FhG0yo22AZ3CjUjNc4fW","FhI1qs9kVmtJsnlUJSIN","Fhb6HuK63lKNzz13XsnJ","FhpYvdKz3xPeK423Fm29","FhsvY6MNIYqXOTzy7WVR","FiHGfuLqaEfivuaYF3m1","FihWqfN7BEtODVF8Y2gl","Fiq1Ak9gMHvoqv6yQkPO","FjijCXnXBAGYyhj1GGwK","FkYAuEsBjVFwrFc1t9PK","Fkj7duPq9Fqx5Y6Mxt4H","Fl5MQqwmouKkKFOLdkiV","FmiBunlpBeblcx6MKSpj","Fmw7ddDEkSZYdJFIfzEA","Fn7O0VQASnSiyGnaHElx","Fnr92HVLZEELVmCyfshO","FnuoaMdhBxWeS7hoTOvW","Fp8QsRxHAkzjdRPZrCZx","FpKLddRekauTM8myZpfU","FqKNoFwCPioY0Q4Us7FM","Fr5PJqMk4r5RQ3zf8BFC","Frtw0EK7sSxzq0XD6wwv","FsQQ9IvAvH9jV0JFh4AO","FtZbEB6KvDmXfZFpkakJ","FvisNcQzci3zIUtv25mF","Fvsa6GjMiRCunkzIAAHe","FwETFe5s0dbKj2qalgZP","FwS8dhUZ5jYHVG16lJxy","FwZYeHj90LyOwTAS0TK3","Fwx519Ce5ZyzNRPNxDaK","FxHu8NuUE8AQHAV0Bk5H","FzJc2EdOTC0eZ0tK5mdK","G0ViAsGSiwrcWwkOcVgv","G0cBGAjsLBgvZKu1Rk3q","G1EVqbigo26by0n2neMi","G1EvPBV3SzyudoUjhdAQ","G2B5TtOVqEoEPPriC3UX","G2Ie6RmYVH2A5hYFRDYH","G2SYesg5NC3ffFO4MGG5","G2UjNEBplA62qFvW57RC","G3FpKdPZvJdscPsNvuAP","G3GQutjDM0INB4W6V5Kh","G43OvnSVJ4LGD3z82HV1","G5uwVctETtdXLRJe8PdR","G65V7N8lxF1qo95GND0a","G67mqQnecMFjjWzAT6uu","G6BG2s6OgGT28BYizFBf","G70I7cWJDyYaQLfoM1X5","G7IaRDTGnkMqyNAx9PhK","G7jx0TXyBeqa3SG1biQ4","G7vHb8xquovwDA0fQ3zQ","G8hPX167mFqPyW7TAXoN","G9QT1d6ZsGgnNjveOVUA","G9owhiw5ZCQjOL70kwuR","G9ze6id1RyjJjUgNn3yY","GA1DlXyVDtURCninwaho","GA40chA3v289pE2sQOAr","GAdvyJ9xfd9l60fXfaSA","GAjuoiW96VDZ9K0lLYld","GB8896eMvcywoE4JsOr8","GC7YHpTs5Nd2jyoTVPfS","GCfUQKe6KQmUJGUx2VKn","GDcnGWdHiLngaPpv4h6T","GDjiB7cFJIZVD4qGLGUR","GEajiHF9zTSrzzeiiG8E","GGDuhCUPczx4oiQUyvau","GGIWRPnxZEwQIPsrsM0m","GGX8eMQPa6qopLGrMzJv","GGd7PamcatSBH6PpDVeD","GHYWtpJD0kSIjWO0ukzU","GIFr26tS60cDrYhEoGLd","GINnqDdOgLywvbVZCFq5","GIUzxY4YHAw9V7NDNMcq","GJ8nInb5nuXEeSOJDc1j","GJNQXL0aAaZ8UGuV9NaL","GJq9rBheNX0PqZoBrQMH","GJsyRm8bkLCdEdxTIaZb","GJvTcFz3OnB3Hru9RYGd","GK54uajT4Bep9mdHr2Vi","GL2RnXduk1Xy49Wl72xp","GM5D0b6dvPMbYFQHxTvj","GMssdaFTT26JaF04EG1l","GNJ9oJh97fK2Ae956BqK","GNU3a1DTgdPRni1wk86c","GNxpt7xqWzXceXonw8br","GPDEYM5jT16yrglr53Op","GPaptWjxWGymZNA8f0uW","GQDeJPmhxUkEpSkVSHP6","GQSyrMRTzY4D6KNcCPUN","GQud2gZS0bpbQcvZAv2B","GSDiIY77u1TXStnHejSV","GSFFmOeYne1CwqTsvRfY","GShlm8mF40OawTxXtZfO","GTagdFdDrKq1UoUsgVPX","GTlIRqDRMKtxDFgT5TxB","GU5MMGSD2DLVRmZhsRtE","GUVz3VTLkixXQAGy2me4","GUt4Q6OOqOALhYfPoF5R","GVApcqe0M4Ogag7geWY4","GVRlYIk8k4aBiHnvnT2z","GVbg4UFXaFMTRc4iNmvW","GWIGKGFVm0AX202HkJW1","GXYQEzoUy6Eg41X4RcmV","GXx68xQNKTqZO6SxPd8s","GYYouxqtsfZNvOxlR4Nl","GYapR9UFPxtYNnrRMr04","GYh5thLsrm9AMqGi8Udg","GYs8ekjCSyQ8hk2FjOxl","GZF2zoInBUTpdMpEaGF0","GZwnmrKzccUq3w5kWx1K","Ga900bykMZYq8GSdC27z","GahfqftnlDtPMNV3UvXY","Gb1TRcvIUIUWKPl721i3","GcfW7emsDJNKl8zoLEz0","GciNQ5zOb9FVMkQn0O48","GcuNTWw7bprDxdlJdbkl","Gd1h7IadJPCMuV7972UC","Gd4zdhPayykZOhv7KgsN","GdvbAnWCtrRbh5NAUaA3","GeuPoVOJjM3uQW39rdvC","GewD48fmjcBMph0nW9Bu","GfSzlYlztWjdGCU2zXu9","GfpUit5F5FWsJYdZxHhh","Gg3hkamIeQLZlnNtJ0Gu","Gg4vmnVF3Yi1BcVtE0Eo","GgY7DuQLSiS5XtKw5RDs","GhRM7RgupuFrUF6NY6Ec","GhmJ0Q6PRSDA5gAqLdpa","GhnVjnxw8Mfizl6rJ5au","GixMa5gnHnzrKTEtHZFo","GlFxB7t1K9XJo8ybfzCT","GlkcdhTAeixLsI8Zd9KA","GmbPNhJk2xGKhyCafQko","GmiOlc8xSlIIQcKEDkix","GmokZfvatc3lID6A6v3g","Gory1J9f18CLdgw3vRvf","Gp0dnfzruafqWv3h35Bm","GpqKiRPbumzut7H7IPPw","Gq8aCovFTH7pa07JIdmQ","Gqs4CHCFVAJz6wyMfvAO","GsC6ivcFWtNxpSSDV5wX","GsrvhqqWrza4p0b1n0zu","GtPazGrUmZzMH2KZG6IJ","GuzDdWYs9z3an3rVZGn4","GvHDvTKPRUHHs0CEL1uP","Gwcyj3xC9760JCGCBytc","Gx8TJ0fxK9imvHfq5F3L","GxFGoi9itBxR13TzM50Y","GxQFktuoBffy9SoP0qOY","GxoB1BdAqR58gUPlBqs8","Gy29kqJ4QnJneia4RQ49","Gy3MJPardRVJDlWUeaP3","GzgOSEswBH8LnbxuLWoh","GziAzY5pNZ7knpTbFFUi","GzmTLDvTqNSyfHnwtFid","GzsUwPRHrsK7EMFUIMRA","H0J1aAUx8QnqObZMLnp3","H0edQpUBsKPqpanL5veQ","H0kfk7s7GBRBD2Et7hRG","H1AFh4abLfxrRARydVlo","H1Htr3u3BhcPdn6noDky","H2UIgzop8xqzzpUflrTS","H2dX28Ijmt9kjIUhNDlG","H4Uw0RGYqlApRjrTj3GQ","H4crhywiqVRcPpMfQyNG","H53ukTNjKhsDiJfsVvYZ","H5e9drxuKQxxvUuKwyMU","H6NsRj43hEfaD4dqFCvE","H7VZ4GFyqfG1301z9Jrh","H7dKiw7sfz3VtOniDMzg","H8CT7tpl8BGMh2hXG12L","H8RjgY13aBXR5ZEAIkrO","H8nfejs5vMta9zKWMYpF","H9QUDlD4N5Y6CP8hwCYq","H9iFdLxKlyQ20hhb08qY","H9tUFCytyEnmYY5K7ZIS","HAOKzjqOZERLMhoNGlGG","HE7aaGP1fDvQeOqMHJ1k","HERhVmSLVVXMI5X5cfGk","HEcooRnogYECI6m5tcUG","HFhSCup7iMzbLNLTFsRs","HGT2N2T56cFEVS8KPGJS","HH28MoiHGTKyKGGi7Afi","HHKp7JSxxyNiXDfEdRZt","HI4Hcme5uigswXBWP3fA","HIsnYzhQbIO7i8JS7bWH","HJB7nrEB6bgsghnfGfee","HJcyAuP9XiGURGNpoboj","HKHHfxao3iInyZMySpHP","HMHYf6hN7TT4LpNY5E3B","HMX22kqJENBgERGtTf6A","HN54lPuwHrm9yZ9M69pm","HN5FN9lyzDE6JWmn2iY4","HO2M5xRyhcvscJodAuTn","HO8Win4Yy7kaJhsbWydZ","HOGmImoQyKtNOs6CSlPN","HOnGhOWQcDXuvMDYUQic","HOxCJOwrJ1cK8jqp4MY6","HPGlERpPdRD7tD4kzzjG","HPQiZX01bHitwxqVnJZn","HPWp81DebANIRa76aeXM","HPy3ky5LpEuOjTXSPUxw","HR4UKEetKrFF10OprRhV","HRThw51zbwnfUkOb2xj4","HReTiq5dilv7L88G54dh","HRylSp80NF9Nh1ld8qn6","HTTQLpi5InyJiWIcQPm3","HTWhZP5F8rbCr9xFOVLM","HUPHgUJDK67Hil0z3Npa","HUtkExRybFjDFFDSYU2t","HUwFf8DP11pDj24fcxkw","HVD7lwQeVchdAyytrj5c","HVDf4GazfXUvgXQoRp3p","HVqxIbksGhBEjOlPOEGE","HW4zJY4xbyDMrQ7C73KY","HWINPGs9zG12DPqGL34C","HWeDeSznS7nfhauVFa7a","HXI9QkNwh5VxEHLRDK4g","HYb4UlZRTX21MeM45XwK","HZ95fpsyGFmhicGkBKMN","HZQhr2XRTsf257axIawE","HZgVs7BQXfHwFhLNiEiK","HZk6bftoxA3qAfKo0zQ6","HaD1c1jHB0pcAJ0U24Nh","HaIpFgzxVCSRfND45nZp","HavnDH6aws0kZscf2eOQ","HbRiNhzIvRTXgZKynS1i","HbtQ5Bv4tQkdrDFM0rBy","HcABGi83Z2JCzwzzU602","HcP1E7fP5NeGV9UQcPio","HdH07rAueoDC1iGwiBZg","HeGCtOe5Nqw8AU99VzMP","HeNp5qSydtwNHngKoFxX","Hf1UEVsQZcC976q5F1A7","Hg0KHIvyKCcgCWJRJmK4","HgFsgHN4PpyPY11wxj6A","HgPcKn1vylRPyUgAhpj0","HgXj5fIEPfH4M2gpGzfd","HhkuRlhHNZJFGFTvGLz8","Hi3Yh5XLmDM1KMYwd2NH","Hi5GeiiDDnHwZ0i8q3PZ","HiBgbroxwckfocNvuJET","HiTm30TCe5UtQrJUyXF3","HjvVrShFrYDUC7STJ3C2","Hk4Bs1rplikGLQJqsTS8","Hm5rRKjh2pL0mITu6zcX","HmkHRUOEx5RtJk3Y4gQ7","Hn2zzQ3fn42fWAEgg5Vy","HnRFHjoi6E2nd5Dkh7TB","HnTPmuIj4oxnzR5NyIVT","HoaJ4pFx1tdewce2C5Dl","HpDkdxqEeYGz9JZSP9L3","Hpi8G4KcgcIN5QgoIrmN","HqkdTJd8hFaAeSJuSNBB","Hqu7zXpw7lmox4jXStLM","HrERyyoBr5qIGhMmBN8X","Hralq5gzfFqeiOJW9hZu","Hrub70KnI0Rq7OrBIBXS","Hs7zrUK7wVko6DQpBu9u","HsMv7FUblbjnvArERh64","HsTe9BMRO51gC1FGB2Im","HsgSU9DQkUC5Qf0ci2wK","HtM0mZ9RfmGorQDldvwi","HtoeQd5VrFOPB0Gko5PV","HttAVkw2LBP6zDeymyGC","Hu22ASqcKUqwlxJ1Ber4","HulhKlbqUa5aOglhwQcm","HvlSKeosxwYasmDtBKFL","HwdlRYXZwtDTZUdMZ1QW","Hy1TcM20jNf3l0C5LD5F","HyBXf4O45LD2llcsPXPD","HyK8T62VAFKyg27DPQ1F","HyKTf6DQoxLpMzbIyACw","I06BsYlWPAw3lXmyZ8vc","I0ZQ9uqf4bNEAyd7Ba6A","I1vNZHqwboQ7TMsYVxXg","I24MvT21vGlRbyQaxOk0","I2fAnl7Df421IpQENpxF","I2fVo15doCp7YJfHUyly","I2uNzN70ZAa8VjHDu8Yc","I3hArwGx006db4IK7JgS","I3xN7gY1R2qMPG4swciE","I4J3yw5UOCMp5kYk6Qy1","I4YW1TWyxOuqzcsRyBzg","I5VXa1oi6ata8ivNsM6z","I6TyPzZUOvQCidAbiu6h","I6mjAZleh37MCcD1QF0Q","I6oZ0jqKZsnYWz27J9tW","I8uM7oLwOqikAql58l9k","I9L7oOZ2t8SbKLxBcfYn","I9SAeFehx58AZen0s5Mj","I9okl4JDNQnHbalszSik","I9xwRdwaWflvKLmAB2pV","IAM48dtIwOeKKn8lPOFt","ICNmNpaB9188VyFjZZJj","IClTkQkZGm6sZEDqdoQX","ICvdRDJ6ia9O2M58rv9U","IDTvW9iSIcFzlx8vy7YK","IDUX2OrYscgBiS036TnH","IDaPllDPgutlFv1zs1s3","IE6GPUJI4XVaHEP9UJ8a","IEtDNBnd8F1HqAqUOce5","IFGtwXFltyQXtZYayMQv","IFpp0h1oVvCUXljTX7ZT","IFtmHHuIQbEsqDWh9HvH","IHDHj6aaImM5SqZkpT7g","IHYUO8WH6DYU3kXGfV9F","IHjHwvZpTKbKdigtye5j","IHtggZHmMamHTJKhunMw","II0I3B5KEy37PP3sQYTf","IIDLgX4DpPYMd98sd7sn","IINGaEeRzFvJmS8G9554","IJ2A3JfrtLGwQgS6uvGs","IJ5E8G9Q5olu6mhLC5Wz","IJHpV3LhpzzR7lJUSG8Z","IJKAVKUwyxTxkK7EPa4r","IJPwmQBmr9e2BEvRiAvt","IJvIs9ZYwbjoOjnV1gJm","IKb9eQ8q9IkMaU1Ve1Lc","IKelIYZX9hDgyHkcI5xx","IKgwcIWw7iQd10QGpnLQ","IKqa0pknRVvI44DSv61a","IKr1Cl8Y2sdud8cJK6A7","IMTbVVpvz7h4B9Rw46tC","INCKMKq8kTMsfKo7BjRO","INTWVynJbYAdHdx9M4zt","IO31eXF2cYAGP054wdVZ","IORtJncXcfvhCsF0F8qg","IPfIiyFX6A7YLPCn9eJX","IPvftxBZzlIxztkZ7WEc","IQfatzvOZdEjjNWTsug9","IQkdofw7DmY4qNelvQLu","IQrUHrFo5anxBwGDCHFc","IRaga64LMBUYaABja9v3","IRvUFN3Y6cJTEw0gJWD2","ITunb2qtjExRImx53OFX","IUPmAq09HJpGgr2uDIh8","IW3cqUmpS1DTvkpVdsBP","IWKoa1dR4qRQDziddNVA","IWNI1rd4eKfaj05iUFZz","IWXSvK7HdRx5u7j8WQeK","IX2c4NSo7DiyIeScPhGb","IXKMc6GAMLJdHlMM2D0m","IYNz96tjaAiRLxcrKEgf","IYSMe5lFyW4SGQUKaVPP","IYpQ7IIvkr7HEgukjrql","IYqtyuiPAEueqboCM82h","IYys9VhmRb3bhDm6gUrO","Ia2KteniJKtWv9o3k8um","IbPEW1qeNWoTv2ih16LI","IdVlWLpx5aG0uVUz7qSE","IeL1pWN5qI5t5q2O5zdB","IeVpl1K2KrrMzE6rJUyy","IeymbZVJhWbsQyfg2XlE","IfFrXcvhqX348lyVTcPp","IfG1ItDmUPj73cScVqdv","IfvK6AIvUscEpUFKOZf9","Ig4AOo2IKPij5x3nuLRn","IgqTy6LJBuf8FymebvTT","IgzLhLK12Qwwl3Hg9frG","IhGIVuuW3VUJTXdHN9BK","Ii6YaQbjtC2SKWIkWoK7","IiFPS86kRjC95fEHeDfr","IidWtn9eWtEMAH96sVKV","IjCeVgJ5HNI8obZI9Kel","IjO3Y8uXiaf8YeHaefzP","IlDPTIvuFPYWh6PUimIx","IlFSuAdWMjzmPEKC4AjI","Ila9dz5oGfwK2D0tgUsi","IldiCmEQWEPWmqAbqnQD","IloRIQXbxPyxF3UQtvhJ","IlsPl8Ui80o0ZFFMcJuu","Ilsm9uM3z7vmVoUGdBnG","ImrPT1bsdyh3cJUj22AH","InPIara57ibyCTZZPBX8","Io28mBeRjzWAGMppu5uf","Io9lKzvSIXnJ0mE5BesL","IoojehwunyjHaadfE0q0","Ip2Txdif9dpUjyoelaLF","Ip55ZMzwsJGrRmKdX4Sj","IpMOQhFfieSs7XlkCKcy","Iq1vdgHrrotL9ahPwauI","IqEMiQw0dLs6LUPOUBgy","IqFEqpqqYso6na2MSD3M","IqGRGsiObKtvbGtyaFE5","IrXKmO8wVEnQHaz7gOIW","IrZzr349W98urxjFqKfg","IryhjPpNhjn8LQ7BKDep","Itjx7wgW9OwqH97Hu5da","Itkj4AYuD6vgk3SgEKRq","IudNePBzs2AeCsPBFgU7","IuuafuxYNBi7vgSuCxJB","IvHtE9QUf5RjeUsp3OGd","IwNVUR0vRvO7L4pIgzsp","IwvTshdouki0ih5KCNZ6","IymhLqjGzLbTVUCYvvjE","IymvnKdhdCFeJYsbIOeZ","IzEvQKN0WXsvs8ZBeb1s","IzTCz4rIggONRWt6y8Zz","J03nkXqEbsIunX80loqQ","J0J27efMqtpqCfui3XuS","J1awGYs2cwPR64mCQIO2","J1qM1aPsda5j1KFxxJLk","J4wkzqGW2WN1dZOPH775","J5AB6HYfCsezFMfsuq8X","J5D1r8C9CjHsUwVQ3636","J5MH8nIzp8RmXMkP1G9G","J666S6NjJVpnO4g9RWdS","J6LgodaRvsFfIc3ugRoy","J6nWLlwMZ5LoiMaeJYDF","J7Te2ymhsMs6HeFH4JIs","J7fJdo3Mb7laW6PinYjz","J8pB28jpXZOJfWklKcIY","J8xVQcMnbGroTx8gszww","J9kobEWqg2Lo2TxHF6op","J9nC71FeZvaMStagAXcZ","JAaBixWeGzDACqwuWKDf","JC7yNdTuvVH1D7SzeJKg","JCp4sro8f9a8xWf67jPR","JCyoVhcjem28iEsiec23","JDoxOs8FafiJUsC5UCn7","JE17u4CGpzMnuSMZeiZ5","JEFHLdaWXJK8u6P2nH4c","JEFVXNRK8rv7PoG6p6PC","JEbpW0Xw4xEbsXTSfYWW","JEnngIjk7wunyEWqiZj0","JFnKEOwN7R7OHWQMJ9m3","JHqq8WbN5gxUbP6wJJ2h","JHu9vGX9qofkTNDDO0We","JI1PAjfzbswRB0EqXC1q","JIDb3lso4FX6b9yTSYUM","JIsas5oLAAPClezO1Flf","JJFXZVDetfP5IwXEdXQF","JJPXWMMc8KneqV39LPqf","JJbJYo7Qmed4dH4WXQRt","JJkJYZf68Npc8rdbhfIO","JJz2D94CkTHICokfbh6R","JKG1nvbr0emu5sZRWanj","JKRUcfoxAeWvukCrXXH7","JLMV31ejtwuIYwu0pjWV","JLbANXtT7DtpJl5Yhs5m","JMjVy2bxsVcJX3lTPXtV","JNSZHZQW5FTipIoF4gAg","JNl04NZGUkFp3aZEGoSO","JNx81iWt2APNuN7qJwUT","JPY61UAZxj8Cvp8IJXpv","JPrOXUBaHAZVGUlSc6bz","JQ4Qdodiki465jN9IBtS","JRd6SHc05ZRAiYr8uakS","JSJ6mCDkALbNDloSO2ao","JShFb44R2LAq6zzR1nO6","JUai4bIrSaTHuO1K87e5","JUpNkTzuOfYELshnUaus","JVmtNbZM9uzXvbAEwMFf","JVnqQK3zfWrKnssVpBx7","JWMipATjWuhDzqt9gGHl","JXz6U4TMnZ0rojGek0u9","JY0KTsWf9O0QQy5B9mB2","JYXArcY5YPQOMzs9chWm","JZ5PS3cAXN9jkIjC1e74","JZfoWm25KK0nsgGqBBpj","JZuvzteGbinADqwfiwPz","Jaf2VK2ubP0WrRMMe4Lt","JakfdfdVShvtTJ2PotbB","JalNqFC63NdHUBJ9P3ly","Jbr0v3RkCptyQLyM7YNN","Jc0GO8paUp2clXm6PKkJ","JeDgKic6d57LNxOfoaK8","JeHrAtac9zXyoXdXjeSM","JetlcncZmIkwtIebzeZs","Jexhu49Ile8L47xDWPLK","Jfq7plCyGiplb9zrn7O2","JgEwyvkwhsQ019zvZlHZ","Jh1kZQltfb6fAyYCsNwl","JhIu8klVhL00mt23k14z","Jhv4QgNzSgw2wQyBGB7s","Jhy4MGY2wfuMfcXcblmk","JiSQvsuXQbGXGzOv5T94","JjMRJckUFmOMqC8wagI1","JlAbBTTdDv7ZnwTjwENZ","JohVKKlImAKeOmtA8HXa","JowELrV0JGqQFToO4oFa","Jq2wAu8Fw88xfqsVZtoH","JqhuKlDChchM45A5AvTM","Jqp32iiUYVCCvx7BWmBp","JqyLLojoxDmS3rLqfgVN","JrRtmJ94hNT7Qx9QyGnn","JratyoAE0tR2HAcrbme9","JtJX5BGBFWVrDxMx88Y4","Ju9C9iWQjP93mhDjQIBX","JuYvC8Sx0vZHQvSDqgkK","Jv4aZMYegur3oaMVlcbp","Jw7h3U2u7BD3qcrMV7an","JxZswUFYmZ8VkNL9lzMq","JxdHPbqBEypQxfd7mq72","JxylIW2bD1ZA1MhbvUls","Jy9EsoQjiiPMt8OIWOJp","JzFvdtQR4SVkrmXW88GM","JzfB1J81OAySYFaOMTIz","JzwtpteTXmUqIxfgP3k1","K0Fx1mQy5p5eO2cbc7ZD","K0Ies9oB6VdAtA72rdBP","K0TW5YxWRs33AyqbRFV2","K0oFfYrzI1VOQEoQdwlP","K17wIAsDPFdOlKpQVj4L","K19KEzQgupLlqUjhrI00","K19qYgL9mCuvdkuLLMse","K1sYZVgWyjFkhEycKqwO","K1wlWJ3NGUU5nnTi4Ckr","K2gR5AM8s7DSzrvtvrDn","K2roanJapcFdtnwEx9fA","K31BynHTI7dE1Q4VVNb0","K3Oxb6itq3xm0CtUgGuA","K5BkLpsH9YMhbuHRV7u0","K6KcrQlxVzTSycKYAzwO","K6Tz49ZkTuDs1gK2G4Tt","K6dbRSJQcdMaVKdlse9q","K6rDk6hkx4chaTRSMRiU","K712TP5qxZcYjfES5pOu","K7zoLiIajONExtBrj9zK","K8nTfrTpWGoZNjfGLOqv","K9fNQfUyCbyPM80W8OEx","K9sFxnlHKAjqKMIMI4VM","KBGHmeXJz9ANKLGgE0Qd","KBejZ0rOvumhWienwOmI","KCNjz4zQ8bqChV3frOVm","KCSsnYBYAIMIzokMw1Xg","KD7MpTTpsTdNnZusKQfI","KF5FrfmJwErv07SdQZCK","KFZk6on31D1ZmYcS7eoG","KFfryAHoAGtZ1pOMNzAj","KGWk8SrumVc1uRHRBHYG","KHJ5CFbPdnfg9IHTOAbC","KITI8qbsiJ4Gnat82RMy","KJ3uf3Cp7n696D2OCcjn","KJiBRSZdW8i5Pf8AZgUw","KJtJRE4jriIqOJ9kZLGJ","KKT1Q9UHVzZA2H0HHvbq","KKeGM5FTu4Q5wYwoZwCA","KLNdVsyleE8lVKjnMDPv","KM35wNbQ0rR4Na1g589M","KMZKUQPl4s5MVUakQNA4","KMcup6IG8t88lAtADXnM","KNcr3Toeg6IK5szsQ0LO","KO2k7wr2v4PaxhkANXVU","KOpehifrZcwdNHo47rcQ","KPeetjBXWVJV1t0UH0D5","KPl5MP8VSKLVBtGSrVjC","KQtEPAvCpNUIlsZ02kgp","KR8to8d9fvApfW4Xucws","KTH9MtYoJf1qr7jFuRKs","KUibckLdeKtLReDBHxmF","KW22sMLvy7SG38ElGB3r","KWEC3b1ZO6wnQUxBFgJ0","KWUNtWONIhF2vcP1LsPC","KWlFV7OhKLuczb7KChae","KYt6Fqhmzk566sNfdRQs","KZA0J7lGq27Fg10gdYzq","Kb7ZqxtYmKdNmBn1y4gW","KbQEtg7dEt3x3WUGiwbe","KbS9kbnaN49TVKd3vqbA","KbgodwQnVRXONW4hWCf6","KcjIejkDXY2tABeLtrSu","KcjxLTNvwxlHg3cqzV2I","Ke1W9P7ldFMYpefljkiO","Ke2Ya5QIHZf4GgZYfh5L","KeBwZObgIpjPHCreDzkA","KfiijAnIqKT3KBY3qqxd","Kfxjtn1umN3yDJSZD5V1","KgqmlV2Jqt4MAVYVFDUU","KhqM7TWhix8uakN4u3tl","KhvjgLO85CZnbggdcxMV","KiO5oSlq1lEKUDtyhDvh","KitnMV0hln12i9dCuDdN","KiusiM3zmfiORisFENUW","KivQFMe7dpmw4FC18aUn","Kk2RjZkbGoJZhLps5fIr","KkzwwjIPuC7NC23keGaD","KnLQGDR24NvGrCvfmXmp","KnOn0LDnMuN8RIB5NNjg","KokTsSU3rqkRplU2DylP","Kp0HB6m1yE3PJXEcJZzP","KpJ0cMrrhPvsZBquMdIm","KpLKe3HEytMbRSUFFpJv","KqZKNHtvhFSIRa8vxccf","KrdYOhoQHFIYUBnBYFJX","KrhR7bs3K5UCFdK3GNXW","KrhRSsDzy55Xtv77MKkl","KrnCeibN6P7pXzL8Ro59","Krw71FXkIZQvPsAV3fbk","KsA3IOZHXNMe6uYAD4Lk","KsEXgX7nybhlBO7EL8E1","Kslt5JnWq8OJw8GoLQlq","KtN3vNeozawCH6uSntKJ","KuRqClwyyIAAFx79tpzr","KugMWYrwDyyGJ10ZvTdN","Kwv9eAtDg1xOhCjvqIz3","Kxa4pnGaQ4eOlq3kyykT","KyrLz4cvyE13q660opr4","KytwgmxLiDkwuLqmpVVl","Kyu8kUi4GLlUGEAEcc8Q","Kz5DthjfR3dsJXWoiqUk","Kz75nNTIcjmlH21q0Lel","KzBzkr1fQOJJZ4364ToY","KzPNM7hyM3ZvFD3pX82w","Kzpq0mRn58WjfSYhdzuB","L01zseX7cpOeOd2I8bVB","L0DjdnJLcr5MXWXcUpd4","L0jt88G9PI73ZsFlfySA","L0k5HsTIiDaxaQlkbxuL","L0sDx6uQN2N5091voDAL","L21sgFGwHDgVsl6YwI8Y","L3iTVyWzHEu2NmngRwVi","L5gAkWnNsOdCfTfGaVMA","L6DNkGn8ZHYh8c1nJxNC","L7yfI4cEPswv5n3qeUeb","L86xZFqmQTXAt4z3Lfyv","L8lqgKT5ob1Fb2zoaPdl","L8rOsOFqfwKYe896LuKa","L8z5Ss6rAnLFWpIlfZ3c","L9eRAY8vKtjKbp0hmUMp","L9kwRVvp27g2LxKZ8kPM","LBEXmwHkyYeOH0YxB5cM","LBlw0rgt88zoUxrR2SNR","LCFPfnWQqajsmZRHd11T","LCVoqmOBgqnTna8KrDOM","LDCNbn4cqCMtdmiVtrmO","LDV3yS0tcqxCbcabczGX","LDZEhMpvXogFKM6O4nHj","LE2dVP3a9s02sjrrGsyc","LEBnmFhh14Bxn1bRMQwP","LF5Vjf72YFXO56fU3IaT","LGxHD4Q9FBjoPYlcMYg1","LGy0gGv8wrc9SwhJiYDA","LI1TQpSVsPxRnX1XHW1g","LJ3H6xORaKPf5iCs4npy","LJMmYx3WF98UuU7AHdOp","LJivsQoG5MtsdQp3ksrz","LK8M7lFaz8zsylK4Fzvp","LKalonNVrfJ8VMOYjilw","LMEI8F50Kp0vpsp2x7qu","LMG90jABgaNqsCAINlR1","LMZYT8jHt9Mr9LvGitjk","LMhWLH97kABH53uXkIeF","LMykBVktzM7vPU5mQRhw","LNX4wG8A4SKN4NGCj3FK","LO0F78TTKkwTZqYnpFsm","LOKkJGk4WbsrQldEUVCt","LOZ7Zp6xzyC5RCnndBTf","LQMKKIgSGBbQSUKRj3wp","LQQi61vRHVJ3IRerKCoU","LRP7nhtHwVzO9f87Dxqi","LRa2u09M1mpiO5ycV76t","LS2plP3zJI2qjmv1N7yl","LSYdTk43rWT7RFv0BmDL","LSvWRKCglUicDgRMP2lQ","LULd0SDlIJzDMuZfr4dE","LUQSGDjFP9b1Dn7CLKv8","LUt8W2D6aiWVacXNPE3z","LV8QfALgrV0H378vy4SC","LVdhNc7fgh3KIsyNDSWH","LWbtr3YOeFwrqZWKkSP3","LXUesWLF71mVgBMFFeXU","LYO5uEQKJpg4B9dqKvBA","LYvwMhXf2le1ABG5KUx0","LZPMFJBqxcC71ToyseW9","La4EBTgtu1jJZv9Kef0p","LaEB7Bh5c94UoDhe1SJF","LcJsm5v9LKkTKBf0VRSO","LcdbCbsBzLbsQqpzsMni","LdFTxm4EmLBvWgtY8wSf","LeCFNcP88Gyn6hFELkBJ","LeFovddByMJ1TRoNUXF7","Ley6IJvE9jsTgQt9o1J9","Lf9DYIgBSr6gcUwdhmvm","LfuIN98fXtXHYsB242z0","Lg9RGyjdl6PZdSnjNK1l","LgMZTWqxuIXj7aEcwT40","LgkxpAgq2XWL3R9hy6tn","Lh1YW6sNIyXSRfGqzMvX","LhZ2lFg0U2473CI4Vu8q","Li9EtmfsjtPwE43ZIVJh","LkibJTFDzu0DJTb1rwwS","LkkKU6vSFbq3MU7bbAOJ","LkkTuTsYURNErDQG85Zc","LkksXg01zTBGqrpmqsjC","Lkvim5YfOqjuvI70dmsw","LlEuI4zoPQ5l6Fk0zlFK","LlWqPGRkLX179Jgkpfyv","LlaQ0KPFUc5vd7GrTXct","LmZ3SOtc8FGrlZsFy9iz","LmaxQ906iDZ6lK3R8RkR","LnSnhWiZmLxmZjGFWDX2","LoEU5EpfSLZ4aH5xyfhL","Lpaq7cxAXuE1FCtdEMA0","LqVEjtWdm8MLayqh1tmb","LqdUbYDfYVf272q4QAJx","Lr7qdkfynxDWT7BMj2BP","LrlubnrYyEITARyuyRRZ","LsCtxY0bKLGtLuk6N6q8","LsHAZ7RZoH9FIibmjLXy","LsK5gbUpI2aw3IgCTGlP","LtAoC8P3LZD58jKtD2BF","Ltr0iJCErwPCk2zkpPTJ","LuaXhxSMuJxEPg9gmDMo","LvSqWS5ltDorGCQsmyCM","LwO683DxgGCWd5eDHYir","LwwOaSznWsPeYKO0cRj9","Lx2SsNv8Qn8zoBoZTe1W","Lx6lW8SFow4bRwaMpHEz","LxZD82tQW5HEcxZctIAO","LxndkPALg9YLyOc0roL5","LyM1ioDlVmYXZ2Q5BSaj","LyXMv88x7ij8tLn5yLMq","Lz86DvNatOxMGqPSOTlW","M04U39dVRKyZlVzo7qtY","M0N5HJR8eI5ohOcUkplK","M0dG8b5Qxt5khIClZmFS","M0nrN2vEThvTroR19hWK","M11CBmwDVVJ7tfTRNUnD","M1Q0hlGofFXiD8CB559j","M2CY8i1bumJepymI80FT","M2f2A7YV1RDB8JYicuI3","M2hAkwKaSni46xJJOrSX","M2lFtsI0SQ11y6WI0NfI","M2nV6rnnkMKiQdfX7D1h","M39IU1udCqhu2ajcQVx5","M3kvPcTMFzImss14h6tu","M46LAJdg6hWtUeow3ysK","M46xzOqkSbfkrehYvkKV","M5UH0y9195juhjwyxEX6","M6O0fI1nPy1no6hRpFr2","M6uKWpE30mPysJx7vnVS","M7PPYscApiCJCIUSa2qO","M7x2QZRoUxNTlOljn0DN","M85IDHthVWe4kRfP2Pri","M8IMDZRV1vhUPLnF2fYy","M8bGdAWwUeK4y36Z33zG","M9OVWlw3xXNcT7sWbLXi","MAiFo5vMmnE7xgWM58Tp","MB71cqWjSj0sEo2KVZfr","MBMF0GPQCDaUisgZCcRK","MCxRO9Bf0oMpIxZQZFzq","MDPVlHVEGlBLjkWSazyb","MDcteZkJJ4nRBkDWRym7","MDpJcsDLfxmgOB9paon2","MEJnAogcW6RzAkQsyMfw","MEYt040hkdsMf3gz2Vwa","MF6rpT5PfyvSZe6qls1c","MFQcKSPSAzj4BpnTjmHL","MFSS0VOEzbAz7N5DkhmM","MGCDGNfYLuyJkbIZE93e","MGfZKN7HcdmnKu9U5V62","MGpjEhGYKS53iw0RSQd7","MHyzAcFCo8iWddQdouyh","MIkc98XsQhJD0pvS9Fbd","MJiy2vjbR9NtJNmQLYHx","MJmC27WyNX6d48RfgrUz","MJrmz59q0WHs1I0Mb06a","MK7T8RGRHuGYzJdNTkdj","MKCnOHeJz4sPyK5zw4Nq","MKobm5wHCsWPMq6PFKGF","MKzpZokcUcMoZhs99hY7","ML8EKRjtAR9sCZ0xoL8d","MLhXJthT9A3ZVE2ZVa6o","MMSY8FFsmq8EDBpXHe10","MNxXezoVG99jAIHDsLf9","MO4lYWm7v8gkzII6J37f","MOFs3q0CT2jrvxbrQlJP","MOncG9PTz7zc0SukexH8","MOsYJ4IOCEcsnKN3saWH","MQnvk6dEqfLNKil0YMiu","MR3FHgLxTGJ4loK9h6yc","MTuIs1SR7HaedyXYtRpM","MU2ZahnPRWkkmMK6pQNE","MUnEwTy3uMIg8B4mBXtL","MVan6O6zvFId3TB99ab4","MVbbfnOdY0cgGtmWRGwq","MVyEzOE2YpMRikUkWrEW","MWEsE0aiYegYLYnkLs2Y","MWKcGc9zVOXYvigCSyEJ","MWQYFEZClHSOmpxfacPj","MY5J6Abg6DpIBJRPCMku","MY8DSLeswRYfHXunYr2S","MYWn1W8houVt1X0uDcJ9","MZkJWmdHvJS1jBkK84pY","MZuZQ0CGsQrgLsKTFYuE","Ma73s7mVwu4BJ2yr3JoA","Ma7oyiIPJtjItfgcI1P1","MaMR4HFZMx4J1W9ceHPh","MarmpET4hHzbHptv2h3Y","Mb7Y6ZXJeGYoP72xvyGg","MbjF3ULIaPc0kE1mDH29","McA221xF41urA1EIPot3","McINZreyMuRYee9MCC6T","McN9fute1LGIBexdS0Qs","Mcur6inrPyBFSQXoE4DS","MeEPWzcldW6djTWXAmaO","MeKfDXEueyR3kKBa2Ul1","MeLUFNtq86UroP6nXEKH","Mfs1I7aUrqc0lu81AEG2","Mg1HlHzLBbKi1M9wDuj0","MgSUFlhWn2lURSwhljiH","Mh5y7csUt0Hi0tLX1GnM","Mivc0ZUfmAupInhXaeZX","MjH0BtkeAvbVzYf5wL0g","MjekhE3lIIgAT1cVwTci","MkIkE1MqVf9UDdlqVEgx","MkKlm6DG4D44awqcnnoG","MkdtA0YfEchHQGe038Mq","Mkfw7rS2Z8Mja3CXSABX","Ml1QhloVzVpoyoycTEbs","Ml2LkynVTgtAnmkAuyzv","MmD0EtPm3TGGWlfh7AQS","Mn4xnIcDS5555yWM2Ka2","MnBTm0BBz8Mcy5yVKUPU","Mpn1r3Fa29wFHKWrT5pm","Mpy0Nn6JvpN6hbLCCfi2","Mq1LjuLyEU2qfL3sgeZg","Mq6A9H8lpQ63OLRv2wJo","Mqzq8oipwEcyTwXI78z1","Mrd8Luz1iqMPN2mOzVjh","MuGSZ6iRT5CLAbLFWVyS","MvW8iAdd3KFGa6Kd5Q2F","MwloiV81EQsPF1mstIrI","Mx6RTJdbL3ulxOh8xIpw","Mx6vMmRNLnXMtoHKS1ex","Mxv7RYrTCczbYcniELuI","Mz1T8L9RWal64FEzTQWp","N0ZOGVICsdK5cJVns4Vg","N0j5gC3YJdbaGZ4u93WU","N1LGlv5G0kgqBUnSZ5OU","N1wxt3e11Vzt4Rl6IdT7","N1yDHVXH5Sbsu7tqu0eP","N2E3NJlYalL3xQ5w954q","N3GzOv2BMdOy5lVvFzw9","N3j6picOHN2KWLQNXObW","N479zSzoTaOLwiEoDIOB","N4BfIePvMK50yTQgUPOC","N55W4H18d1Yh069OznqO","N5eKcv4tCWex2eODOioc","N6eHru4OcZPUE8ok1RLv","N6flCpd7qECCj2IhYhod","N6mhppp6AwVMTfgDdyjT","N6nq1NkCHvvD3oGTaIvR","N6zw19lGghFYN9lwbumu","N7HifQOFw9OgWN76Epeh","N8e3AvSrIKFl8fJnBmKM","N8hC56veP6jAnbhl6a2k","N8mtehp14wtRFNhYZw1E","N8uyF3TTxbyDgDVpVxvT","NAIT89dZrcfvWM07yOeI","NAJiKus74QxIfnrfviBO","NEdExNuszodyA55xoXfb","NEhjVaehr1A6Wk3u8e88","NFcA1L5Uge5cqVhJuyhB","NFo7lLlJyvjxn0Zar4UH","NG4qoOhPjhpaTUf7eLxl","NHLKv9etuLoTdM7qrpzO","NINGnoXXyA5AOR154j2K","NIXrhUREIx3MRucRElSq","NJEh0XNC1noqL7ogvW89","NJGd7Cqyqv6qTW3UigS5","NK1VwErOoAoR7YgOWcWy","NKyrOWAd20NYFPW8wWVV","NLkMaEjy16og2oZ2WMBN","NM7Wsq5kqLSCEPdrUDin","NMHFaYO8WFAe1L6nn4dv","NMIXM2v4QvuoGOOk7wvp","NMYpyKluKsUsKU6RtXcm","NMd689z011aTiVQq8mk6","NMi3KjIEik7zb5UMCBk6","NOVLuRsqlDAC9NOykCT4","NOjpVv34rT6MvFC0Qhv4","NPImT9SpxgV3dThHrvqQ","NPRFVq2ljioQ8ycY2nuO","NPwVQSST1puZBvXDMuRw","NQQ4jCePH9X81R0jqPb1","NQkJRkGPe28Kg0VcszeY","NSmcI5UNQ1X6UxPih8Xd","NT7r8YyIj9MRvEoc9jpV","NTEndhP4KtDr25wq7y6Y","NTUKKD7cbcut9RnhDaYO","NU99vFtuqmxFk0dwulFf","NUBXYuQVDXKhn0kUkghY","NUFMnr5szHWeLQpgA16F","NVc64E6PazD1jKsBiPC9","NVk28pcvSB9pAvmJsl6X","NWcEaUuR3e5yPMiwK4v8","NXJAZVZAgiVc5MaZoKjU","NXJtVfacvt0z6WSdpzhr","NXpsxdufJu3npr4ORcfH","NZPRb6wNCiXRte8HeiNR","NZU8cRjpIex0iRWbMokn","NZdBDtYY4Xk34FyGqC17","Na4USJy0Ygfls1cNW6ud","Na83y0O7Df712qC0erZz","NaQvhz5pEzY6w5aHlzSH","Nb1j25AmrjEUCEnNM9Ul","Nb3M2kYkxkBebAgK0Bvv","Nb6VXl4kH848b2sySpZe","Nc3zu9XrALpBWkbmW4HO","NceVxEgXAQlreTkDQuWj","NcojcddohRp4admkUy3v","Nczv42Hqe8BviAUb9IlH","Nd3bqkgc3yKqJPbHkElj","NdM7QwVCYpmCwl6Tqwci","NdlIfdPo2NtlatM52kRI","NdsoGVExb0b6KirY5DHF","NeFxr0AwiX7zdqaaIpH8","NeOPf5yZhl5bpf93ZTcO","NfacsekoKymmu7EudfId","NgLG2DKG8QrCh3mMVxKl","NgYQtS1A3mByz9jnMOyg","NgrUPEJr4WDLfpGRZTTz","Nj3uEcWpXmYHxnjcxXQX","NjHoEIkpRBJ0hNMZXA9i","Njhiux7Z9oA8cUZE28ja","NjnVfQLCphE1k13ShF99","NjoysmQvGAKz1viNCoNu","NjpiGFp5i3FD0rvsqwP0","NkFbnwJfx4RHmZBH7h8j","NlJIhzjOjREJoeBSo7tx","NlbLItMVS3HqVXJuPvuS","Nm82pork8QIMXGw5PGqg","NmOJLKNhXpv4kIGKb0FL","NmUOIMPUmmi3OBjrCPRF","NmkHpMzXuHvQ0YfFBSYO","Nn0YxT8gxh41tMirNaVJ","Nn2CJ4iGp6bQdrDFPy2i","Nn6yAvajxARJGTJ1Vi7c","NoGG71AVoPI1Oxthn70n","Np2SG6kDIj3wehUFEILA","NpfnQueZzfgdr4FbZrV7","NpuCwWQZq3Af3mRWmafz","NqJGvkSY2GcGooTqv8sr","NqLjUGAvm4k9FAI0HcRH","NquzXAx1JPHqaaii9NVD","NrA2ZZzrpkj5B9MAZ68Y","NrOeMgCYz1T4bS9QWyth","NsDNhJPF5TyP1Jv1o9Dd","NsF6VoBXKab5OxecGotE","NsdcERtNc4xiYxK7Tsss","Ntyk8XgDWn2PvzHcqXMi","NuEe5tjNLjyqeIJO9CAO","NuoVy1EJrzGuFSaGPy8W","NuqNYW6g2xT3Av8Enlvi","NvET8XEr1sEzzAi5GSNt","NvfCh8l05xyEDdcE34ee","NvqobOmhEIzeF6hlhwjg","Nx4iHCNtEMrA2LtgHuEB","NyQ7QY0uf49pgw6DLfdo","O0Ek2EzAiowGB2JfaLQP","O0FWbegTfN1IKKuDiZHH","O0LIw56KHi73F9PGvtke","O0LWhUOqLMD0d5ES3yGT","O1hofG43bNBEc7N44N3a","O1jmPN2TYofJ3qnvbwxg","O2JIvDp6WAub5NAZcCl4","O2brx7fmhEXaWGLvMdKP","O2sQEsI4Fr9gxKkRVCq9","O3IuwVw84mAzNRleuZHV","O3SHvJQhQ1NGZLGfeD9W","O4nqVQpWfev6QQvLvZhR","O5Q9H1vzjs02HqADBTgd","O614NgCW7orr8wr2OxYa","O6UC61qQubwFuB8R8myy","O8P6i4aDkj1qbIz2mb2x","O9Auj2Nd2XKTtAWd5RY5","O9nBwJh4l8XTWdEo7x2d","OA8V7Oy9WSbKPIfgkxBx","OAZtLEGSPvWLSHlUxoHb","OAjLMfzMWZ8AtjCpuCZj","OAssQpGSoQWvcIy5lHoo","OCDCJ8hnFJpl41xBZOT2","OCaW2Z6ORePDBERvHhqw","ODEhdH0NOfdjoJRiKaiT","OELjXvSNbkl0tt7Rsmb7","OEuK9WKes4Sqv1eFHxsN","OFBjI8Z1xUOC4UeokRbE","OFJ3L40QX39KRSeunFZC","OFufll1Rg8kxwQq5cQ4M","OFvYQl9Bncancwo7xV8V","OHGEkKHmL6t2UQIaaKfT","OHatHroZO1xfFlOdoTbm","OHrz4shzBqkn3SMm6KOp","OImDONHzKva7aZN0F9RT","OK120L10Q9S6oTZgxxk4","OKRDbRGBY0nB6wGDPyZM","OKZDookUX07kcGpabyzG","OKq47jIc7CN9nCHDG8aE","OLy21VXxT0RsrqgqnRw8","OM8FOJdJ7TdJSohubz24","ON2ZBmcg9ILfK7h8vzvv","ONARey0KN1gEBogZnUF0","ONiuODvnXqQ8lqHSvDwE","ONuMJ3bltQpMhS1o416u","OO3ut5TbWmDBBxMlnU4S","OOKTh5zYlO34Z8TWceGv","OOfQB58CTi77eI4Is4Wb","OPkMoFvEOCIQ2bqWPQfm","OPnZ2UNKAZldsf7UeBpl","OPx6D9lkXrlBtPbSt63X","OQG80JQUaTZ569lvGPqN","OQNT10EFCljiy5WSfQdd","OQvBciyJTq9hflRWSbFh","OQvrxSlB1DF2AXNiN5d3","OR2PZ67pOp1GAqTmkUpH","ORU666zf38A8BWd947Tr","ORY9icGJOClcCaJU7IAI","OVKcFsl7WeKwnHcPGmSg","OVloE503dKhg4b2kCaGy","OWDnUkW98NIFbl0GLXW7","OWmOkpHV2HtuMQqiwFXK","OWwmECEc556HEKEWAexg","OXvI4W7Imv5lukuPkE3U","OXvN7hKda7Mx1egDWA1F","OYi5zNC7arJDSXK1WWYw","OZxiMA8wgwuo1FuiVkq4","ObHuk4FcXvbBUpSUqXzt","Obut8hOawBcuEbiW8oKL","OcRAXKjdegK2XGXOGIyF","OfJPwTXm5yt2kJ2PPKjN","OfbUz83GnyxWz3KTrRpe","OghG97x3sh4JjsK6TTVS","OgxKLXYKUoNobwVEXfDU","Oh2LmzM9rcg9ut0vSTxS","OhBtIthTpjM1k7M3Zuw0","OhEhWtThNIiUUxQ0KoRi","OhiysBN1yAOrpuwOpo8W","OiQF4KFP26TIWyInFlGg","OjX7FfzMCWM2pTcnSUWV","OjYdoGkiK89W2Uy3J6D0","OjuIfMgy6QcLI7yGEbC3","OkmcKLecB0dli7v4VB8c","Om0TiqsJAw3ATv4HO2gg","OmC8131GGdsucw5YDZWK","OnrqtSty8NSKpVtOVHcs","OnuiYx0WdIzKz1SnKBDJ","OoeIZRaw3u4kqqMskpfu","Oor4krdZm2aNo3X7TLw2","Op2WtnTMoFLDCKQZe2aN","Op9OYDaCyX9GIeofnCNX","OpaGFWw83oZva2eBg4cN","Oq1G7Tl6VBE5UiOUtVF1","OqLgCNb9sDoCTKDxnuMy","OrunmCCAHQSRyRO2mLSn","OshVkstLfN72ydNlAhwD","Osubn6w3i1QbX5zTjC7r","OuomkGaQmK5eyDqx3w4c","OuyQTjpHjG4VJ5x1LcJ1","Ov1dXrB9Y569SiV7SmEq","OvWTc5mLbpbu4r2ok1jc","OvrqR5FtWCvRnULHdfsW","OwSIn3lOgEhJTqJsxnMc","OxiirsqBq0eiDbEPxSG5","Oxl9UBIkruki7ggkJRfC","OxvwfZQiOUZLYtQt6ZFb","Oxwi4hG4K4qYsTlGtYzs","Oy0liEqlkWQfFR5Lm2qQ","P08ePe3lUDIwFkKnm2AG","P0GvylwROlxLJNiN3FE1","P0VVdSDZg3XroTp6B9vd","P0orcS79BhKoAJOAth67","P0uTzjaAEpcHucdJVtBW","P0yAhjbNvjRJZ4LyOj8s","P280l2lCNDubFuHRsidU","P2OHunJi9aK8VBqpfF1q","P2nN1qDMZ6m9SB90li89","P2nO8KcpCkSxNekdzLRb","P3Aa62KGIj4cvsr68UjF","P3ZypV5uRVlpjbdISJ44","P3fp4Osa0DbTQSEOHWzf","P3xwGt5X0JRyXHvOYyM0","P56sXFv8aKFr2qfMAnnb","P5Vz8q37E5XvYpd0KQey","P6Lqlvu4GtFavZHwbRsD","P6n9yGQFhpoRvzsJjmQN","P7SxC5Nxr0tNPNpJcktR","P9A1QZ5XT9VIzXqBojuQ","P9gDviH11jBPF2e7H6VU","P9o49wcJVbmB0J0fwOsE","PAPfZhgYnDTA75DCtoZa","PASd3FTs8AXQi12DSlDY","PAhW8AfjRkFel2j9TfHh","PAkDMpuElSQjG3ediA1y","PBGnjzqiTaf2wdbuhCHN","PBmRmiSw9hIGthd2cNfM","PBvvPrp9MQNIZnIcEuCv","PC73nszkCFis71z4Qa5H","PCQz0LpKRzt3yqZJY7om","PChFn1LrfMzbUSesT9pB","PDHh3W3112yoSDKkIz80","PDIfMHHb5AvMXKlxzK08","PDJFpCii3XjbLjuyurvR","PDs2ZDC2JzFG53LVZwDF","PEEW5en5USIG3M3woduY","PEqj8lo3nbalmcQ9rBDI","PF1LT8Ddg4fc70eaeAS8","PFYN3VUvIw5tNeLpuTGl","PGL7ejUFuqoHgRCUJU3U","PHOrJ2sOzZAubMrJCjxq","PIHigC7WwlSY232PXnOo","PJFvZiKXatTbm3So4NW4","PJuLsUP7YjGiD12WXt0F","PK9CWYVWnNf29cb3sHcn","PKfT8QhOh8BF3fxENgYL","PKvX46iz4IQMCPDTGZuW","PLgB5BZ6UQniVABzob8p","PNpmJUavHk8xIsQi8W9s","PO8B1QsexuWFz7qieCG8","POIRQYAGM5DvMl794p72","POVxW0Cey2qjmMbbst1I","POcsM4cv4mgySNeIDQus","POwBpvDPp5N2k3cufea9","PPPj6jJ0Cw4TPhHclP49","PPUlMmODEuRGCHD6jYLq","PQ1WrQ2oBElLvLwilIpI","PQKX3wrVDHkIu6kwn57l","PQmRwEOCyUOp1luSxLUX","PR49KFvux8QZkmSUfEIe","PSM4ivSbgvcqZbUXN5JB","PTbGy06RQL3nBHiOo8Ut","PUhGuE5HJClXeXk8mlDt","PW71ZEXVNznY2C9XIKRJ","PW8vUhD1bqC8IyKCCWUv","PWmiUwXhIh8j5dq0tbIV","PXjEg7benvHYODnfO8Se","PXmRahcNzOiwcv9jHWxl","PY97TK0aYiPSHc4fmbzS","PYZC86fGNp0Eh6fIG4nZ","PZCP1x7jyxK6n0jsy3gS","PZQ1Y1PdQUuO4BLRgCVg","PZzvl8fs91KYSeCY9dhx","PbadQSwnswQM1zF9bYZk","PbskHTR4I9K8QPgfhufp","PbtSihLZSSdcUEliKjvm","PcF4MJR6ECyXrYMyLHFZ","PcxIegy7irjL6v3fMOC2","PdKi3Zc5W9ZVNHrLN0eh","PdOPU9jbfVw5EAvMEkTv","Pdr2MJBcHYIxLfAllZxF","PezYZSc0iD2F7z4TSV0z","PfEG4sU4QbeUQGyD4oKT","PfEMu9MSBJRwoBa39Bi2","Ph2XF2boaQLtLOLSrJD6","Ph5c0IbbnWUbJjWAZEzQ","Pha53dINitK4pm9ZUbdM","PiHcfB0mSm9kMl63HsJm","PiW01jpZ3wC7BSBuPqPY","PirgnhlsQCkmGkmURgNR","PitzW7Zi6ZKhUJbeA84x","PiyI4U1pSu6AXNxqFoP2","PjLsSrVcEVD967A43VTX","PjRmqheTJCIxTaN29jHI","Pk9UIKVgMK1goUnW19R9","PkI3o3m9zj90484Jrq4h","PkaKGH3LyF2AvJVGMYqv","PkhdF6QhhvSlPPzXPq2H","PlH8A2FE3fTqtCqsu06R","Pm3X3kLRxeWJnXyEntZW","Pnuj3zmYGkEWuTTkybsn","PnwISV4tESp9MTwUXL3d","PnzF9i0ONw2gvr3olAtl","PobaFZXOYsqf43Z7BXIb","PpL3qKqxt6xTEYlkQKqv","Pq1xClguT4rMmOTLpmkG","Pq8LEjNZCpNWVhBNSD5n","PqsMwOmsGClLJE3TAl0b","Pras47IsOxHvLLT063mZ","Prr2B1E5viR6xwS2yRiW","PsGm3s0J2xeI8TRovxgx","PsSC0zNBh4YFjCyIknqw","Pu7MVarwX3vzN7CUdYGG","Pui3KJCeqikUZjOhhq8v","PusBFHgUqIpjI843j2S4","PvKhi78hKvflZndfC1qH","PvwZXGJpHrzPcKfxLBEw","PwNeKWuu0HIiFu7mFh2m","PxOtf7cJDyUlwS8SNCQE","Pz1xUrM2UGJr4z2Ylz7b","PzB7VnWFfX9043vSwmLo","PzcQvWOMzkgUH6lbq0oO","PziXlNweyHNx4tnkD8Ul","Q0J2pMaZtlSTTiKyCnRf","Q1MP8g4OhiAfqTe8wfmn","Q20CCxOdhMwB1Eivy9FO","Q2ISENTWDG3TRkQq9Til","Q3cHGsz79mJr0sumuMOe","Q3z9o7GMczUFnO2EbcS1","Q4LUQRAYB0aWsIfnGZ1E","Q4SCBHqypxetjpKyeWrL","Q4e6DCHSNuo0GYEtMYBY","Q549moULLZ3yDflgnlqn","Q6cNJn21en1sHuFFirud","Q70LjKWNpXkr86dKu5Pb","Q7UvJxKHV7G1nV6w5CVK","Q7n9vm1a29Z4iNGBzYmB","Q7wNJgBYWoCChqxT8RZp","Q8wJHLTcA13bGNnQWXWw","Q8zOpAXqVMdBri5H4GHi","Q96hBhsCJSEyiMqAkYLd","QBVVC1OeoZ27TXhHoDVa","QCEFVXq9vuQxa65Sf7LZ","QCMX1vL5TN8phZDHbTE9","QD9RnEiGNI72AzIo2Abk","QDOqQAfgHJitQGGp69BA","QDUJFdMWlmIA5F2gm6i5","QDYiwFyvSxV8dyv7SVw5","QDx4et4FbJF4cupmserR","QELE13mGiWwiENpD0BSb","QF7mByejdOeXneoXuVMb","QFnCeEpxdTizmQ92Hm6X","QFxjELrLHfFMnH4hB3Zs","QG8kjZZCjWJKhhinmF8l","QGPVn6iAk871KYaKUEYV","QGaEbAoun8DLdN1R4JQx","QGiigitL2xbMjk58TiYQ","QHiRna20ekQJDC2z06Y5","QHscacGMhBp6tSwZWVsT","QIi2Bl1GuIsUpexvvLke","QKDHG4veFtgHTMThyPEJ","QKhB3JKn3hdsk7wqq4qd","QKkMqqAdHH9sVVlX6C7f","QLv157Ia8PCSoYCrBIIu","QMCKkMJN0KU1RGzCGgrP","QMmdIYfk1S7w92qEJWbO","QN2elDgtHacORK7x3AGd","QN835qzpLDyQGTEp2ona","QN9JoDMH7GZfnH2WG0mD","QOBYEwmQ0QLHsEu14WBx","QPHb5h45FET1JJDgk78m","QPWmfnfQ4QuYMiNFVG9e","QPYBKfqvhP5Yregf1WGU","QPbI6UJ0HDWvN3lMvkdu","QQBF0oeY6zEmmq8TU4jo","QQhWMWqeKaiu3NOKzXiL","QRBAhCYXAavbSwLQDUMJ","QRxpoLFTD2p5SbHWSzko","QSLr9W9Z8gp6WZkGJHNp","QSciPdjOedpUFQmxiDjO","QShAhz6SfXCXhVY8gt5Z","QUOderlNwoYxQmdr6nR1","QUQcqdOrqqas7rxTQivj","QVPScMCVihf9AJ2x7vuI","QW3Y1iK1XCMFupSB7b7G","QWI5N2ZtYhpLmMFvKtHB","QWnLhv6nxPQzUhbYPuCR","QXCHD1K97vrrMqkR8YKh","QXXM6JvFMBV39598NgIU","QXcmTli4UGcT3EoJcABb","QY8fNHTfLXJ2jFtgIq4R","QZYytKz3lzqhh5vomS60","QZl1txSxTViURaU7FzB4","QZojfkczBRuekGlMKtVi","Qa8RD6PjwX9fgPZQejWZ","QbDSTqYwavGXViyc0NmG","Qbn5Jh4k3sJm7E6CaIEo","Qc18u9SAmQsgTGTjwhLj","QcO6GPjrUEV9YBZYJVFf","QcbnayUrRMg1DPWFlVmM","QcfBKIevabd3XK2Zd8Cy","QdTQQeig22Mw0gMlsaCi","QdgpAcHYheoymKwcZynO","QedKjJLOkHYtGTkuX0HB","Qev7n7WcuDRn1EF0Ak0f","Qexz8yzsZ1qzcaNtcH9D","Qf13hug52Tm8YxT48FXV","Qg6iPkecUYz7uuFZQbDL","QgqB9b4DKTKcdJ8UPWn8","QgxdYvMxGx4KrDdBFkJu","QiTQc61TCmumRLwCckUG","QkO13WTNFCrVGrbz0Nkt","Qlj4viycWejuInqaqLZN","QlkXl0WKvojvrec6GZjY","QloIBKekavBuklB03BtP","Qlp9gpHHvqHNIJs8vCyf","Qmcw8jyML5ZrT0gJPUSV","QmquVl5o8NlycJCc26Ut","QosSoNPH1fiWjXrvOJCY","QotPmUKteKSZZrO1a8JO","QoxC0Sk4IgjxqLeO7tpp","QqRp037RLkjFN6expfgC","QrN98QMrWvvOYvSWJHfa","QrYCHpE1T44jqCE8ZL9k","QracjJyUigd3CnGgXFX0","QuTubJeoykQjyy1tESGg","QukWrQeRHar5TumLZ5TY","Qx5W26lrnvNnKaF5KhWj","QxPBWxDyYtfQuo2VDMDD","QxdHLQW0RTA3JSu5VLIq","QyAzVUrevvwMfP9KyrWB","QykNQe63aMnjRyiz2NgZ","Qz1gPF4w9Y9Lt60WF0mz","QzF6YLdOraCyI1RBgDcv","QzWXSacuRPkDQg9yMZfg","QzzbtFDNo8lhmeDybsko","R0AjiqthA5ZLcZw0cpTI","R0rJHO7oceiPgrARXqtE","R0yCD7NTofpZ2zoZQOdq","R15BJtoA1rqm44awvSCz","R1PTA0oMtktWn53eX2IJ","R1S1lqqmJqbYUPX8Eir8","R27i0EnFpGJMM9Z41Pk3","R2Ki2ODSeGyXIALNMtCN","R2QLSz9jkzSm0yam7Oi7","R37OOcbb0TSglVSed6nv","R3Q6dGTcekPdpnbn8SMJ","R3cpvk2uxqlO1BmJWSkw","R3kzAw0m3yb8ufhORYR4","R4nrDCfiYsYnFBxfPgZ1","R4va8OhUauuhrKFJ841U","R5GHSi1QSZ7Jmwu79FzB","R7RR5lJL1y256bBdKbbe","R8L726xzAhUtWPDnqgjU","R8Y9LsoEfTPR9bZCBsnb","R8ahqOpTTRa7sx2cKye6","R8jIsW4z9DSTG3Q0KgSP","R8r5xAVmhhsI4sxVOUEe","R92s3VcZnkH5McsQRY32","R9E5v3oCd6n1bM6PARZC","R9PyAFQU7WWZ7Hczyplj","R9aKLSWJJZl4hmRd92XT","R9lepIagyiJKlQgRORgl","RAVSQMex8wdkJVnb8rcR","RAfKoti5pPOVideTTw7b","RC1qDtZ1SctaXfllkBFG","RCF51WZoTy7xhyoM6I2F","RELIMu3V26tZOFDSJcHO","REStHaiGOkj9pC5Nbzn5","REU1jRw6NDmP3KQooN4t","REpP2ZClYxlE2eGc10vF","RF7BptjWw4Cg7BgWhkWz","RFJRx83bvcusR0QP3QsJ","RFUMbCZ4jFMGsAEJw2dq","RGKFOlKa383WXYD3tZ05","RH2iRFbeJGmTHpDcUcPS","RHrI54fG4KXRNLzlW8rO","RIW3CWIMmcmdkRMlFOQy","RIvd5iAfr6iheqoVN0Zz","RJl3ttqd8edrjTHhGhJf","RKr5Y6CkrXrLVZupj8ju","RKvjozfeJZEAYftLgmFv","RKxF5MLoYrfkV0pGZsPH","RLJ6sIsuYf4EUdLIE0BN","RLhQgYHFX5yCZaXjfiXn","RLmnXpLISD99fLUB6BrS","RLxD3OweQGpE1zGcxXVr","RLzO2uPPmq7zVzSMKTkU","RMJMEcKrHJanhtDBXpT3","RN8rBY4ZwGFuS3OUL8er","RNPLklKYvtBA2EjhSlSa","ROWdlm5CkDUH3hIiX7yA","RPeyHi8rJn7IIRlw9mCE","RQxrbeTKTo0T82vuKxK6","RRHF0kdlQUtshALkhYlj","RRMiP12y5vCxRzi2NQMd","RRwW9OtRFtUHks3mTDp6","RSRySfq4KW2XgAi9rBLO","RSqqnGpZ5ORzqxV4336R","RSw3Y8vd9QySjFLu8X8p","RTZRdVFAwWcqM6WmTYSl","RVAJt6PAjSVEHD8UuoMu","RVCIre7Ua9QrpB63g77g","RVxRE5QXGjidZw1eV8kW","RWVB4fvr5J664OdP924q","RWZkPYSVqgCFeB1H08fs","RWsUkDXDVXZsiCOHKIR6","RXO66Ul1REYD7L0bMXKO","RXTyJmHFztUYyGvwYfDB","RYCBb0GqqxukROToCUca","RZ37cW5CJgMFEsyXfVle","RZRFcPqShN9530J7dE32","RaEMLX8LPhArCiSbxpcF","RaT18YKg4Ty4ETANdI2R","RamDLv6tDOx6KlwSAuU2","RamEnhCygMntUhlBybJi","RaznNUgmXFOr2msTrQPQ","RbTVC6KX6mSkhth8On1m","RcAfbUH8hjvLkTmMAlZh","RcyJYUGE46DwVrny8pIp","RdL5I51gZORwNJnFvvSc","RdolOB2RlKbtRLw165Sx","ReBd3KO8YfrFoQh7h4zX","ReRJw1272SkiozT50O1D","RfE6OE9GZkKcqs99Saym","RfeYaYCQCmkr6WCjUhfa","Rfn3tqAw1tgzc3pUREZT","RfsFWMlMg0bR7tLQeerZ","Rg5W7W1g81C3Ptlx0FZv","RgIBJEnWfQPz8DeDJvtP","Ri4bXvNWro1vKXuSVHzZ","RiHqlLv8ixXl7CpDNZ9F","RiWVcsQqRzZQQj6gfVA2","RiuCh4cPuGk7m884yFpP","Rjek0jZBm3C5LiiOGMXm","Rk4E1bgiLLEuSPAkOalh","RkWVzELgmc4u852NNrwx","Rl6oqrluHLgmryNKWce5","RnC04BkGrHSFFSRDtk7Z","RoCZcngHSOX9kETom10C","RpNgpMHZIgAjyuCavyZh","RqWdICYyzvQGi7Qb9d8N","RrIHo7bg4vjtxiVl1nmD","Rs3IBif7yN6bC912axrT","Rsk9N7GVa2hw1r96iLsI","RsyR6CqttoRVRpkuTTEV","RtG5oBDBFoPDK8rek2gc","RtnhGjiGParcE8xh6gCV","RtpWKyU9u15J1nAMjKOy","RvLzk8o9pZLltdLUKOgm","RvX7Cik5fu5EoRMi6Rvh","RwFwscKzr3LzWKhLqvnb","RwGWVKKikRZH0ZQCDDbP","RwYsu1EdikaHub6BD8fq","RxKHFKnAJiEeCiX3CeFR","RxjPu3yZeSX2tUX8u6Kh","Ry79w5D5fK8SL8ovlofM","Ry8YWcuvyMDkYIfkKYCk","RzAHL84iMQP7IDvyoHts","Rzfy8HwOhMRKo524B023","S0kqnyTwY0K7GJ20oiX5","S1MWzgm0uQeM54GpHoZF","S1h2gUlddwiXosAyTCLY","S2aBXAmfykn3Whz9O34Q","S3BqRTnB7BTzZt9fMYSm","S3bhonYLgr5p4N7IkkQr","S3xItLo3lnPYzP3CpzJu","S3zGOBvoOPxAGmhPQP2n","S4Pr5kwabicIfrpWcfbQ","S4hUA72qaz1M6GKFD4kr","S62lb3wCpC5Hw9lZYFFg","S6wAtISMdTZRrGRVoqb8","S74EGT35eQM0U8PO4Na3","S7IcOP61c7LsMKEtmOvI","S7RRpCL841fgOlmek9ky","S8AFFJOWXLOaHiUfnCE8","S8SPPqvlfjsEFD59UoEp","S8osQmx1xqokqRt7XB8S","S9FGTjJUvJLqjSdbEkca","S9SbwHBMxYeJcdQPuqs0","S9zV5eDzw6bDlxMnbRVT","SAFFLwAESMpKCtCeiWK2","SAR65w0leqUvo34DUMTd","SArlfUVPafpP2EIJnq2D","SAtqfLuK7nSIfYjaj0JJ","SAyVhOkSh7w0eM7jkkmr","SDJJbVmmzQrZZ7gDDax5","SEM6FVcNmnZ8eTBOK8NB","SEZ9cxcX2tnQxFeVcupW","SEz2PUGUS0ATlX6Tdooz","SEzhOVkAuCXTkdobKx4b","SF0KEWCuIpkrZacE47LR","SGbS70uHMqDu7ZtnawYv","SGletr8Qj7nP9UrCo66b","SGnZYmWiuV6WXKu6zXg6","SHr7XHZXfF7zuFBSn7dn","SI9jdIglfYZWNvjLidmn","SIEECaBbrmTfNMgfcG2U","SIRpwvgPAm6WGxgRm5kg","SIflMsABEuYqr0iwZ9K1","SIumopEzmKcK7iUpICrQ","SKDQqsWbK3bIczrzK7xP","SKDZIt9nSzuwxtrEmMde","SKp1DMxetQtHRvztvS18","SLGB5IGGQrwKcrKoqWsd","SLvorc3G64qGnJN5bKIG","SM1NKtqyADK41kvTiqKf","SMQ8JrqbB41rvJMz0V20","SNXOIC61lEbcfUrTxmrq","SO9Gxev2idWpCq2WVHjx","SOsk6kZxhURQdNRsYI2N","SP2GL5ZHEukd6nEkYhpD","SR9KV1gV97A0PyhJTc1y","SRJ2YfkRsllGEju4YLzO","SRZFEGQ7jiA5BOlTzdbe","SRb9vMjvNISUrggY5j8j","SRqny7wH4w57cehmcMhE","SRw012NiVNBiJuqpUvh1","SSIPzraUOivlTZn8JjQ1","ST04PqwCQiewUXdoExmY","ST6bZZJ5bSyqTNRIC8Yv","SUicLOBcaVAmzK3vUfcK","SUnbZ4C3ucxHelW4091O","SVRfCsVxdv5KB2rN3XA4","SW64pbT3GaaeUMSuBfa6","SXIy2Mq9nZcj7CloozQj","SXMso2zYcm5v9yomBiMJ","SXTjAK6pYQDHh312gDX2","SXrr845jlpSInwoB5ppd","SXz0DBowaAMXTcBPaUef","SYPZsqWuT0oKt484cAU8","SYZgE89kOZIb0UWB4U41","SYfx5xEAYmz7i1ypr5UD","SZONYlv3pMHeFjEIZQb4","SZrV6mvnjf4Y3hB7DhAp","SaEpNmqSqUkibXCKC0GE","SbePfDhDhe7ngPoRLhnQ","SbkDnHYpSTjGU2xPGXTE","SblrkG9qq1yAsQUtBUyw","SboPYqQaNqwco6PqyUoq","ScNVh262qWfszCMLrjwx","ScOQCKmEPJQNr7frnA2A","ScUyDLaoe9s1y3tAXU6O","Sctdye5xDEuivGcptZNA","SdIdP1ZRwoKASA92lvnF","Se46JtPCTL5py63xIRKC","Se6QKHAnQw0BpstKvNS1","SeKngwdmXAsfNRrkRMsJ","SfD7GUDrkncgKLqIxGqp","SfU6EOYGIDMqbho5X6hk","Sfi0sButKZGOaYm5PSr9","Sg4lhBibATWO5YkTvvTg","Sg4vj5lfQ4vKWZdZLUvk","SgwADY9EBp2BJO8YA3VK","ShPwCyRw4C5EwvHTgA9g","ShRl6mVdsjkiqRImvPvX","ShTCqbR5kVGxZ2z91ekr","ShrPGTPfRC6Qs4Xfqfht","ShtyCBnK9kyW8re9z81P","SioEaKdKltrEsNojqfoE","SivTTG5EJn0uvaTVMMyz","SjMnV613xKJuK2Ffuaqo","SkpPdoWl6IABkz7pLRWf","SlG9KZWHbjE5HYTtvfy7","SlaJQAKRrWeqVVK5sQuR","Sm9mBPbmYFHMvjqz8vwS","SmTacxVoJRicQye3MRrJ","SnOAGUuleRHzM3kNw8i7","Sod1JtnLvvl88F9SaqzS","SosRGMJxwij29R4xxBsy","SosVBsr6n8xISqLXkjYL","SqXmleO95DPzch9rTg6F","SrFXYoUzYO7vKM4hMXyf","SrK5OJ8vg0qklftB6orz","SrsvHbNd6bdptA34KAiG","SsVPwAGBoBJOGZxxWRUP","SsXhcCMKcS4q6GxYkV1A","StO7WPGaF7gmkwbPsHVw","StZVC98OdVBiUcaRktBn","SuRSTwBdi64ePPenG8N1","SusV6TRPSF2wI92Zj015","SxIUQdixSxGcH1TtNYvQ","SxfZ81u3bkIm5b2XfH4P","SyDcPHMpU8tySlusutNv","SyILpnwsNp7M42xEqxG4","SyRKtYZDkLngZshwflFf","SyoPDWcCdin2PhrVFZdl","SyuIDep9eTWgozDc3KIm","Sz4hsHU8fQAtJGXjy7T6","T0GbvD7oUW5eC43eTJHd","T1tdWaPMkn7xWTxk5yJq","T1zwxsvTyq5xTnLXnwNI","T204h1qnRtHwOv7hRjJ0","T33V1ij5iiK6JdD6ofnB","T4IUnpUILAwOhNYC5Ojz","T4Jml8xnzWYHWU5kpApD","T4QHwv87lzmHi1jwKzCj","T5fsSb0oa6IoHzPfk0vD","T6TU1QFtBsLPKDq1YXBS","T6ZzteaigmTMbT1mc4iI","T7FmPR06EUuSTFyiiMb6","T7vOVFoJQktYVi7yzkWK","T8QsEsbsFBJkO2sx02Pa","T9sEHr48UvwSDKCnrl52","TAUf9cZAJidddtLMMDS1","TBQCxwySUrcO7yOKAd8Y","TBbjxgfrisOy9nTABX5n","TBetL8EXb6kNU4QNthH1","TBuygOYjJHnsAxlXn0vg","TC7Atxya837wsu746zIT","TConQ4ptdYYpgwe26PmN","TCtBf82FqJHdZ7wrdPCr","TDQFB5PDBoVF6hNLdU2o","TEH0O0x4VY7djB0JoyIW","TGS5faRAKQF8KIEaPnOV","TGiycWzZKgsaxEIUnUXv","THBQgvDRVpSCXOTwxObd","TJPU5dz3PMoBgDRLo4kS","TK1PkYca9bHqgrdqXSrX","TLkpQJ5fZris5J1P7dhV","TMSIQL2OW6yVcXi3urLL","TMxElwaJ2UTBfNK5Yjte","TNC9P7FLgRWPkHYVfxRW","TNHI10N3oZJWmyP7zKfE","TNKBujSSfAXJJJaejC9e","TNYZOdncpscOH6BD5zgL","TO6TB26wi12svJyLdnuT","TOTSjCa7W23IHbk74gan","TOlPYdoHRlrhisOXCy0U","TRTIgicrT6z8wScSZHn4","TRzzz17a5rSti9JWqmsL","TSDPYRYPP0e20K54OHsM","TSf4PJg8oV05JmySvdDF","TTB3KhQe51AN0q1WtgAo","TTYY2Y4UjTmUSyHydCJN","TUA4nuuHqxj8B2CTAAvP","TUEVRx4BHiTKHgOHQW5p","TUQ1E8hg5PI1FRTjOBDd","TWQucKRzDXJIgF7rcKfn","TWgHpaPtG1mKmw1cYgAr","TXd201QiNI0W9mOnmiBl","TYDYCkIbA0CJFxa2vMyo","TYgKyb6qAYlAsYCNGaV3","TZNptvosu9ZwRoWT3HSf","TZO2zS3n3I6Ddbm93Wvn","TaV9KM1xUAgwxtT4CjR5","TaZlfRXglc2A0owtK7Gt","Tbk2W0IkSKX5J4sDmyWc","Tcidxqk2oJU8Am7TCM39","TdfvhvjTlUknxFWaPO5h","Tdi8xHrP0xseouY7eR9s","TevcrXrta2JvvIml5GE7","TfGhedZpZ1aLesiqcK3G","ThlICcCtts8QmjC3ZKZn","Tk1ejkC7ErhXOT1L1zzr","TkWINKOxlUuVsc6X5mTn","TklB1TK9iUbSMMwOiwfW","TkqhELOuzmdsDftwiGi7","TlCXGG3PuR3cvem08Da1","TlCswKMVsHKAVDVej4hD","TlsyGf6xJMb1urRUBJ51","Tm2DtRS69Tc0dLMNfC5D","Tma0CMIqqsnHYd263drT","TmgPMclGRDB9PAon3orb","Tmq1jfj7AaNrAOBmb8es","TmuTS6XGx5Np2zyLa0NG","TnYdOsRXnChtcBXrCcV4","TnyLfxVM1VunVlzvS9rN","ToG9PQPaD5ohPMCDEjws","TojMVqezeL8dEmqiUUn9","Top961HmgEvHXYQNhFkj","Tov3hg0cWVqBStS0tZqz","Toy99IfNul1Hrt3ZC5Pp","TpjjJwvUmXNpN9JWXJOP","TpuJ6O3iWudYnAQhiUL5","TrTmn5sjyt7fTLneJm9X","TrZDGR98ZvO3LCpCAmW2","TsB2aoBAFagVhxFZBe4i","TsKOKd5D6lLO4Mr9oX3F","TsPWhVznSDF9GbfKuEqW","Tsn5KHLTbOtbRyaExgKn","TteHyOszdlz3O6zqIkVI","TttMyoQWyETIufHrHlp4","TuC3DZcP7Xm1zlad4G5y","Tv0irYZ4DUAigkJmIIQK","TwJwL4qjyFR84FEPXcQE","TwKnSwRl74BUE8b3Uw7S","Twwsz72aK5D8YqW14IYs","TxSeLYTsH0a4nyi2zld8","TxaCQEcDyEWe4R2Dlf0V","TyHvosikz87acaZl9sIG","TyJ7kcSgwmcGUS0wJ3Sr","TyMKhJdne9F61nom3GBd","U0ZbEnO9qgT9CCXsxV06","U0wdHISkqJM908duyZrG","U107wrU2LDmkJV1gyIXU","U1gp0i9RphzRA5QR6jtf","U23BeXAdDgLCT7Uf6p5d","U2X7LqnDM5RLGpcdepP6","U2ir0SOkZsoGfSzsC7ZG","U2n9uTT0bgvCgwUskWII","U34RygoNWeiJxmYAOgx8","U39lURLREPBzCKRCWpue","U4BPXrc1uo0ZN9KX87NU","U4NvGoIHX6oTPnCJYxl5","U4Uh9O9MxWRngz8a9E1Z","U5IqUGDzoTIwOxbUFmWA","U5cdBg2azvacp03jOrNA","U6RKTDxdzu6QKhsBWt62","U6nd3CGsR09rUQXyIOpt","U73KPY86DFMKJE4SRYif","U7pSyYNhjUl0DcUu16X8","U8qA36OSuEh5cv47YUfo","U8uYJm5YHaakuCawOpeP","U9RUkxqBO6LV5E4ialRx","U9fnSOuxwlIGpLQrpqIG","U9t54prxalzBLoFEf7fx","UA93Hd4o77rLWHLl8Zkb","UAF33K04uC7jLBHdd29y","UApvVVoBRQREgVCHTYeI","UAvtpzKp2L845SntSkC1","UB6sZirnUeUhyJzvQOzp","UBzmEiMLy6lJy0G0L9yq","UCcJq4ZSBEL42uew1Dor","UDLmAI9ZdhoLBIh2awIQ","UDPcpWMoBFlS2taNgIsT","UDet3iymJp5yzeS0XEpJ","UDhxXXvtq9KPwgEBFbIm","UDsyHdMdJVZ2I97OfJCt","UESRCLh8fRW3selDTPKa","UETJn2yaibaeX6fdKRBY","UFP76VtYjXLx7Zbku67R","UGIh3gXZq36s9lriP2pV","UGPL6bYAq3OSvN4K2NPk","UGjGKR2sKWSEhbwdoJ9t","UGmRlB9XHt83A7hq64DB","UGsOzDHlOz5uH6WgcF0h","UHIozLot8Q3A7aUqzwg3","UHkzBWhYYsRsCr7k2y6b","UI83SanL7SMS4yJv8LWz","UIAQOd3c8ES08bj1xyrm","UIDTypD08jAMiQogFZWI","UJi1pIzSFkDqxgOfai0E","UKKvtHOZ94hVliIA7DQl","ULM9Q1Ej5GWbgYxdAiLG","UMRt3WZGFd9677s56msP","UMYXxnyHIkHMpLtu0wex","UMdkkRpTvXtLbxr685hQ","UNgQ9wRQmHRBVeND29UF","UNjNLv7jR5e0f53vV8Qo","UO10Ldu9uX0jnUM3e6rr","UO12idOyDxEuwPT3IEVd","UOPOeeNqhGUbHkqv4Npl","UOiMMsVepeMP7BYrghBO","UQ469tHePV7NsnPCNE9n","UQQlHO3ZrFQKdigL5PJ5","UQaRXKU8uNHWUH8jiFbZ","UQweXWNj7btDvDS4SSdI","US6DmqUHR1GAQ27abLDx","USCOdZjasrnenb64byXg","UTDuqlIc9WYizWRp4ttv","UTNI7XH0dY4VG0e0fcVQ","UTZZEvYzXkkDDbmNBgz8","UTrPRJSCDWih7rfcxIEL","UU8nJuJuY2Ael3DCHFXT","UUPpZnMrhn1lAK0rdhfj","UVb7fI9HkGvd4sBUogTU","UW87ZyyzCv3smHl5VDFo","UWET4dl5CePSDvCrNcX9","UWQJVpEvfN84dohhOU5t","UWmT0mqsLxHCoyUeAvYa","UWo4IWaKvzywZzVNl20X","UY1PCvT20i9SdP9iPeZ1","UYJc2eCPbePmcrXuqUfP","UYMNY2oBIqsYMfOAsM8f","UYRTKVxQ33f1yRRm3Ymq","UYhMQ6T9F00D06IcKVa8","UZ0Io24XubsigLhYKcJ8","UZ9pJezPTz8aL868SJ7C","UZFUMZPL1pRYArJigdsp","UZi0dYXXvzDNyepzlqOu","UZvfWl5FLsoWLHuSmlQI","UaIEtlyu4glh6O8AliY3","UbsHzcJe6vdmLj6wQLqV","UbtYGOwYADgqlQdS7snM","UcFKVFWJvOrm3EAQdP1y","Ud3SiuIS4BRbSlpfzoB7","UdlagYqCFufbLhSrH1Bi","Ue6Th9qDKkTbmO9xuRO5","UeVJ2LaNHjpLNhHEzlux","UfanrWlbOdistNgXVhJq","Ufo02a9jNliYo6QPo3gt","Ufr7Q7zLJNXFQkX5NWS6","UiFWUIGSZR4rzJBpxKKP","UiGSZ107QIvH1dgaeaMD","Uj7pDMWq1Hz6fjjJYUyY","UjVLg5K3HmSJv1uaG2Ag","UjzA6MK0AMyZlVDk1Lob","Ukj3jGjuUZXDl5HegsIz","UmjpUX3rIkpUSsxAhKx9","UmkFPHw3HwxmVYVdLTPl","UmuB5pKPlJP27trFBukl","UnL1ISsGjQtnov5NY4We","Unz3zpJazb8eTqSHX2mD","UoAY4We2oP550TYox4DI","Uoi3fnNgYV9kUF51S4cU","Up3Wov39Fav7vnkN8MOg","UpXtJ96HLeoFhLIEePiU","UqbpHObDk2HZInaCyu83","UrSvHwjziNuz82eihjSE","UriCgHWxTdqetmyPOwez","Urk4AkbCUU6UndfTPwVE","UrnC8MOjf7uhJBu0InCm","UsmQNCRCQSyiNKSkMPyD","UtebGYQYHR9MLsgwKGPZ","Uty1DvCQNxtOuE8neJuZ","UuRoeV6ztDTKMVUMAOJ4","Uuu3dYTEyG4Emiz7Omdj","Uv1xuFwAiZ5CVJZe9K3r","Uw0U2eUgEdqtLT2WtMDW","Uw8ja2b795IeSm38Vtr0","UxWP8fJCWcDG1sQO3UCp","UyndgxK07cdq4Es3SMXn","UyzjFmYOqBK8yLeCNXpJ","UzRMFue1xG8EYNjKsAks","V0OaWQk3wJokXc76WY4H","V0z8ZQ3VHIFpeOg5eGO0","V16UZLHVowE5GxWdW5dl","V1l4MrVCcKqX6nCnqwdr","V1rf03CUPCPmB2wdxfOV","V20nbX2ppaZttI9zV5ix","V2rZX1vUuA3BQ7josZIc","V2taii80Ux7DueOrB1AT","V3FFUIikroZJlrhE5ft4","V3dukxaS4OhWzlmqsr8W","V3z7yiMDBZB2Z3CEOUNi","V4LbSirLBtbjJU9ERNpR","V5XA5dByWa7FwfOpr29k","V5kBcYu5QzPNTrF6cuwB","V6u23WPzl6OTq7GlQjpi","V7KUIDpWArOzLgG8gCoU","V7kWlRIZSarv4MMnDmA6","V81YQamguVDZAGOpwNcI","V8oX5ZZy06mudbfSY1is","V8wb3eM6eCRxlgePc5w4","V9ibhVfB4ixGUjxHbLfT","V9viO259mzS6iOUFW63T","VB6TQtqr2qYQkfYT06Dl","VBQtp6zBGJhNBb2bTXTc","VDBGPj53B6BzOoQzyqwy","VDDT1WuwMEuw39c1sKxW","VDfHf9Nyahr2kk0FpnFB","VDfI6RWf37lbRdn78zd8","VEc3zBVB6PCuegQ0gIbh","VFKZ1nrNPJ4MiYFS9uW5","VFlYPZw7B3nge9XTPV7N","VFosNa6AOOdDjIGoIpBV","VFvCOUzXbLDL3rB4TkXq","VG7zYpgv6ouEuz5wvA4d","VHzjMZk9cTYVSREQ2tbr","VIaV6AMBaQJuKHz5upgZ","VIagOnYW34LktFJrIO9F","VIhCY7vtSjbXwHsI3rXY","VJfFGLuTADlpIQakCLED","VJofj8jmAKb7d6bpNIrE","VKdCqLAPG0iCgwUewrJG","VKdK7yC8FvElsY7XWb0i","VKxDkxy2b4EKR51oEW5i","VLakhgSiCfXafV6WeBoE","VMltXZAuklZd9LHVEFqM","VMovmlPaHLNKUukKsn7z","VNihgPB6QltrZQ3SbMoG","VORBSGGJa7Oq6lFRjwB7","VOSz82KkuM0G0sQLJU79","VPJJFmXQk9uNeQsOl5Oa","VPetGAylDKu86czk4XK3","VQJEwI9H1sreeVJ1OxWX","VRSh0rch37qvMXX6vTvh","VRlOado3OCncGyhIZHHX","VS2ZDasY3m313Kc4xVHv","VSRPNRjlTyyyqL4nVD8O","VTS6Eq9quhqT6oX9qoSd","VUZ2YC7GtFnnwiqNTQpA","VUfvalBdG6QcJiSuxNnx","VVM89Vm8WzIrZ71oBcTV","VVlKVrkyYV1ktaUoqnmJ","VVlRpTIvhpLlKCBELXw4","VWQBhmWqnqGsXrPah2MB","VXHOhigNmRxWODFmbtFY","VY1WV4YsHuMyRo900jMO","VY9Fu9bYf6bwl6qEwvgp","VYJhNga7nlQPME3CuzOW","VZctZ9MPao01GwAPx6P8","VZfSHVHod3iwe3JR3lER","VazEq6maGK37J2xPnAT3","Vc6pDhDVNyQzvQM8VDUm","VcU9FDrbpP8PXQt8tatf","Vcbh7Z8s7s5pR308H0in","VdvVnOxetm2SKb7fLzHv","VebU2dEhbudB2fVL7lvq","VfK6ul0H85nPc0PIJxWQ","Vfh0SYRKdpbYMBTgYngH","VflCXQIoPO0ZzuItyaH4","Vg6l4AXPvTeBHjb2pyiB","VhQl0avttqsVFOY72whw","Vi26L5hQiyk3yYdOvMt0","ViVJscvOkX5G8lvGnCtQ","Vj1KD8YjrwcK74WWsnXE","VjBgxP6lkefkBVllipu4","VjZB74v1jIsEs25RuO0W","Vm1rPPyZdi2ZlcBeJ2aP","Vm5vFK8jPQmwkVVBWrKE","VmCgNB6mdF66evQNEwKZ","VmrpErQfighvYBN5PSa5","Vnm1VqBeZyWDj7EoC8gN","Vofehf4brqmg12kSPHif","VokR1HsiInlrAodDCO9z","VqyqfFJ7Htv31j3EydyH","VrWjRi9Z138VreKfASzY","VrxX1XUqirkdE9QoHgQq","Vs9auNkry2g8KIuqjx2l","VsRuPHkJrgzF57txhifH","Vt36vLJMcWUT4ZV1NHne","VtDrN0r0HfgEdyIiAR63","VtYJpnvJ5CQ6hr5m2Wxb","VtpC3Pasg9QqTZYyR3sF","Vu3vREmwMFuxmZqIpcce","Vv3jbm4E5YpUvzSCaw6H","VvlXMswKfpNsZxcilVNG","Vw0nno5WNbiQCZ72ViHT","VwZM6VTeHFNNWm0TusuJ","VxuP1xDg2VbIsypPCpM8","VyDFR6WwvdtOKkRdS9HU","Vyhic2jPRdcug7buBixl","Vz9SwOgx0tI4w5dg8txg","Vzg1iu0PCmwe5MhPa6gO","VzokecQxlpLKJj8ITzMz","W0LRuRBcVeVENcChOiXL","W0v3tw8XM3uaB71JCzI2","W1EE79LIUBCmPJ4Apo7S","W2KnIYDBcJhIXuJNPin7","W2bL4tcL1L5tbUKEsHK9","W2kEh8bfkDW0GH8kHRKL","W3iP9IC3ONzqEIzwLzZ7","W4FTnMv5bR4wuWoEZzkA","W4WQQH3yBCCBAwKIv0aS","W5WT9R8lxuqQTK6RuN7G","W5vMF0btENsBGUCHrjSf","W6G84NXyJxUv42lLCvC6","W77xwHW4CusVuReMB7I5","W83d38911mbMhW6mTy5U","W8eJ2x3BWUCkluCDZ9Wa","W8rlveZoXxvLJ6BvaM8w","W9qkNbgPA2sYnXREORyB","WALQEJ2rUGqY82ka7CAp","WAmAk9oVXKzidH8ZdyQ2","WBYA1ZldcFLGBsH55z8i","WBomLBPpUandp6dwForT","WC0sdAP1kaWdoVat5yIa","WDI4eaF4V5Hjc93WjJ3i","WDcIfEkzJZ85FKjQ2rh2","WDdRJZuql643nwM5Ry9F","WEOUo0KWMI3NCzV9HTmf","WET1Rgb3dHpozDB93w8e","WH5KfbFTEorlXZcTLZTu","WHEr56rr7qlR8nsFeb1f","WHJUfmcD6E0LMkgcWXsX","WHdQ2hr6otqEDoDLVsX1","WI79htnMnuZ4qfgafJu2","WIZWud54czkFJ9cXm8Oc","WImeleFkQ4cY2TwCPVHh","WJH0awMv5Y4XteqNDVCx","WJJTBpKQJ0oQfDz3Vr8b","WJJicxSMwe8hclPTilOc","WJWr9bBw6BvCmK3b0DPW","WJtEjI9OBMR1acPmLiLU","WLCHTrjJDCGPgdbtlqLn","WLH3qHnljcJkwDBmT4O3","WLJTIjqy6a0MVvqD73iI","WLX8K8YhmsrUCce3Xnfw","WNcP3af6PBSrsDF0bEbh","WOMYjJExGZMMvK2kRIo1","WOUrSBeXJP703BjACMNS","WOl96LzIE64ddIhyXSFF","WPVgCuKeBT59MxeEaiXa","WQDfOG9mKpY7wEw787yU","WTVHgiTy6lBeRqxVuL2G","WTVYaDr4H5kLAZ4u2ws3","WTWAPbiXfXmeapkwqwiW","WUVO3reRVyzPP2jS3Q0h","WVVSc6WTgXEL250Fy2MP","WVqiaKtrHI6cWCB0G3oO","WWOPnkfFs65FDSUIVcEi","WXwS5jWNVaj4QJXQdgQg","WYYTHqc1tX9pbkduqFY8","WZODRd90TLe2uuPJ9oY4","WZU76W5k0wolY0TO1nhR","WZdvyfR8E8bnahcyHpOs","WaCM4EnAKyCGvbqgVif7","Wbyi9lJIPWUKGad6iLmt","WcuMo7in3G3gZJ1Hd4r0","WdIYM7bevkrDN1w0sqck","WdWPWMedc3HvVoPfubkG","WdaNAZalTosWo1fyEV7f","WeRwgymh4USMNZZhaRG9","Wff542ZzFK8YxIdLQ8gs","Wh2EYkdjCUtWn6ADhyW9","Wh2rFlZDaPiio9ZyNoka","WhUypqR9LeVlZRN07r1l","WhnCA0J9yRHxODSXCD0j","WiNfHpI5SpU7nEotx86I","WkRwNwKdVpdP9iLgUaU9","WlbHYXxNMXphirETPdKe","WmYz88Dy3FLAE4OiS9rx","WmpFx0Jq4czWpQkwDLmH","WonWscparobVzqZWCKGT","Wp3rgMypDLi9aoTOXtMi","WqWmOTusDaQtOJEyCawU","Wr5TIbKEHqfbA4OqPwCn","WrkO90D8SfuDWHvQduvV","WrmAtk15Ik4fr9eU6Rrb","WrxW2mBRYmqiWINBeP3l","WsQWHrgunkyLTDILLNW3","WsxtoRdlW7DX1AXdguPn","WuYs0VUC3I2P9mYJ6MX3","WulIznJOCR6EmHKareKx","Wv1h9JVFeBLp5gcD8E8Q","Wvy62dUJXjrAYuTMOWZw","WwtCpz6AnW5WFl2tv29a","WwxDq9gucrQVwoEJsHm9","Wx10WVsbqmF0EjbN6Lq0","WxY9lWjLFZIacSTz04bw","WxruUzzf4sQ0xzCy7mZP","WyO1P67cXB0DpP86MlZ7","Wza25HkX5GrokcaoiZd6","X0jTzS0ZhBB5t8MhzpxO","X1hxa2oKjQRpTKAcBFrr","X1q2KHz3TRZegj03T9HW","X28ou1JB1SNsYV2MKB0W","X2V9Xdmdur9dCRimgcG4","X3fzyRdEEaZ2HjOjNHdv","X3vjiVX7XxEY4Bo7kILK","X4IBVKwXmcvCE8yuKl8F","X50qdWcMfLeXLMzKUaur","X5Q9PbFKpHVkm3BGYVIM","X5YpOhplZ8Kw1WHq2cYW","X6cC4ci656aiqQBmLA6X","X8nUv4v8RIVeI3y8SnVv","X8te7i2TlmmGi18oFaYt","X8wlLIsSBVTWoKtnkBxO","X8z1jR9giGADm9IrZYfG","X9BMcLCMKTSHdOT957TD","X9NROIR5z04dNdNYlpbN","X9iU15L52vOtNRsA5jx1","X9wxNU1UlglRUc2drdaA","XAE7fqxef9mZoHufEQtQ","XAYd9P5z0Y3rT70QGPVL","XBoyHkd74qNs81A3ib8S","XC216ay0tE9GILbhCOLH","XCh8wh85z6MsLXDgl1nO","XEoYdThjrXqW86jCrGvp","XF3gXakj0gnrHx2qmIxt","XFiHfuan5kWbQRM3ZM7O","XFksYls9C59UWCVsYQku","XFnc9UZaGkbhyi0wPxtl","XFpvlRazVwaFqi7e2Z79","XGWL6MulkXfFBC48mO7P","XH69npyeIqMXq6x0TDmH","XI1XqZEybG5NUl6hyhWR","XKY5FVNBVbwNgbmxVkIr","XLfAQ1K0d6psFgeLRTGX","XLmpgPWMjCZBbNfxvdzn","XM1wlqfX611X3nhAE0Dd","XMT2YSPZ7NNXVIXdVU8g","XNnfMZFqY2ubmwJnSvzb","XOp3s5wZVrGmz6n9s7KP","XOzUHcBl1qYlahpC85VQ","XPwGammKpZZUz6g7ewB7","XQbfKnJji4bY11NGmT9n","XQju3MVKPbdFtbagndNE","XRCdcMqz6plyBC7QoZWC","XRH5dZklIevrwBZmuWhc","XSyy3B7NFCgAD3T6jli5","XTVLPqW6OTPe6K1wq1yJ","XTrxQ0ENfFcMvdLkhLmM","XUP83jzYTiod5v5UJTEP","XWCJhPoiRkMYVk6lc54S","XXBkR7FJ23OdVq0uQ2iT","XXnmNYugZkCE98Eca5ZF","XXwQ4l5BmffaWz3Bn8Qo","XYfgzYPJD8cCgkLLiXmo","XZFLhoVSsWJTJyZcBs37","XZrlhM7oGSF2b7riUKET","Xa8ADcV0m5arvjD48wSc","XaMEsjiDuUzocYRhjtqe","XapRTl7F6FIQrHdxbJ9X","Xar3woQo3iqb5eGM3P0a","Xb1thCGyDCS9StvauDCq","XbBkE9rtGQm76LNIWLyf","XbwrmKVQzMwt7t1eHPV9","XdBGmwVY57Ec7ZlLQhOH","Xe5HsdBFIYXfmbuAWxX0","XeGxpFLPHB2ag2w1bK7V","XeejFK7BkfhaM6HZIpgq","XenarBD49YWEgO5VnFZh","XeniCOgTp7wq3H1utLoo","Xf0NuCDX72Oc8cGdL9Dc","Xfc31c4m9MiaNrb37f0t","XfrslivF4vXCD74dgxpf","Xfyih2z11iWhpaoeIBqt","XgdBqIY9GHYanuwj8YKT","XhPl1AAu0hbAYRd6AYnw","XhsB1s9ImzW9prKvF54Q","XhyTjIgQl0qGEwo4Tzbn","Xi1DRpoBQE6dp2PXyujt","Xi6tnAB9YyaWfMgFr93m","XiCM4Y8Osc7BVvE6uVGf","XiRR3lwKq0OaIQALTSVb","XiqpPvEj0IGYdD5kvfS6","Xk98CHWsn3ai6XaJ5H9X","XkUcsSHYSZhxtsVVlji1","XklydXIkl3N67t6D3HXc","Xlj88NTJp4AkpUjxOKT2","Xm1kOjqlPODkgaTmHWs3","XmnJ0tV9w1hYSnPlps9n","Xn5QP0r3FYeqO2CEKbGr","XnU3zuuNBwwjxgqtQ8Pt","XnpBiyDIXC0hS36JuSv7","XoDwq16RMFibSeTD5QCi","XohiefkPYp2OL5zEp5VF","XosLyzDvaSsBud0t8Roa","XpnwO0Pd9J1Z66R3D3IC","XqDHPjuGyMrr0fpzx4A6","XqXVhTMaKVkSGEFcIDM5","XqZGd6ZoJYTVwVM7lA6h","XqZMcW1yGApTbSytPhPB","XsmNLmGMJmhWcWZ9CTPV","XtgJKSltQiWJXyF2I41u","Xu8sY8LFc37XYECa1ypE","XumuFS90YPAbgZgPjul0","Xv8EgJutbvc3vThuO6fT","Xvh1dxsuR80fLB6wK58Z","Xwsz4PQQa3Nc6wBCAR0Z","Xy7wnCCR5wRJewkLizSx","XyIbuDhtZBrxI8i5BHow","XzAADnMQmJv8fzaqWcmc","XzNEuKvS5pxqyfymrwkq","XzWkpI5zHxqv6eOQtUsB","Y0Af60QoH6593YXC6sZt","Y0K4IhHNM37x5F3Jo3TC","Y0NSDf1x22FJyVcg4t7K","Y0uu8xXM384qInI1K8zn","Y1rsXS3awjCIwYt4XniU","Y2eeHi1lmKIZEpW13ZM2","Y2eyJFIDqGwnHYD2btyx","Y3DYcn3j2XsnHmW0YG87","Y3KGRJTCQmGBRZuEsQ9y","Y3jHVyuL0xRTYy2fIQQF","Y57VtgNYH0zISvEXJC0A","Y5Fetut52c05fk4odWBn","Y5xItUmpxFPdS85NBL5n","Y6AYuTg2Ysm5K8hIaD5Y","Y6CRiJyUCijUlMMGPLFj","Y6Q2aMj8kYlmwTJAE2R0","Y6j98oC3Wl6N9NJblCOM","Y6yMh9SgngAt3ua5RArQ","Y7TZLS5bTeLKGeCmgVyH","Y7wXbEENqQ9kAdo6Lfop","Y8VH9bsTzzQ1YewKMAWG","Y9C2YoBj1TIYj1yO3rQL","Y9WCVLDiGrsC7xbboppt","Y9hntzJDAqbBmYRTr5j7","YBIyNN4aTGKIJwoZrs7q","YBo3R3rFRDZA88pkYqtc","YBsklVfRzH6Gg1vNKJCo","YC9bWN67XdoufqMBPfTT","YCu9xjCmMEk4nDi8O0P0","YDF15FCIIJwPNjAOjTsv","YDivAuXYVUnGzDxhfJ2c","YE0AUgKUFfmeIwTdhxIW","YEhXtLOhKlzcqwWtnW2T","YEnM1Fn13CZmYm5fHJEu","YF2YPaaL2mVBOrsHLs1w","YGDdgHBkYwBHoL7OUqnp","YGelrBdkFYFIziv38C0j","YGuGLfBO43zfATwInU0D","YHAILiPc715jf4uA4SFM","YHSaefwHptipfGkwOxhM","YHqAq3a4oPZXS3id9U7U","YIfpuSn5aR3Y2yitAXyf","YJx1peFC8w4NY2iyGqIT","YMEuIgwHj6TND3CNRRIw","YMNof1uIjepv3futTopT","YMd50OOJXthbk2aKpKiv","YNWh0NnilysV3CXqoaWf","YOJbeES9AyWpm2NhbDz9","YOWJnNwKbOpvo99EBu10","YOY5VSEcMbBxEuVa8Vxr","YOw6yDEvOjAA3oMHNWHy","YPPPuK4CzBzaEL45b0uf","YPnwhhtmyBHbUveXayqO","YQ0KUjyTUIxaWrMnJAEi","YRM2pe4i8r8SSl7nalVl","YRP3zbf2OCEwkfMx0Drj","YS3TgW7Ecs7vt1YSrq5k","YSRpjsLRbjCaEUzYVITV","YTJm2iVUAhq5M3gwXDvh","YTZv9bDQR8z29WyDHXKt","YViTHg05xlw6CCWCxhxF","YVoqFMi8wl9DQ6ex02c4","YVtwu8wxND8S1saKaB2M","YW5O30Vrj8rLWNPnpIax","YWAnY8ZwVxydbXdLzNFh","YWBVTt4vszhVV04M7Z1t","YWLAZN6PVuXeTjPlRor3","YWW6ZvAUZGYKp8zwtqjt","YWenzbqW5kZlTyJO2rEB","YXLFSCOgnXps7uEjfglr","YXUnaNkFqnC0beTpvvs3","YXt21kOomvJRO0S5rDAS","YXtA7q5RIoEF3v48Ywkl","YY6aQsQBLLK56uFUEIEZ","YYlSncgirMolm4g3cmak","YYlwgURwbD8BbFAZnmub","YZDOwtWNWEDHpl0WldmO","YaHK6ojNuSQ6kJlzZ2fi","YaylvZqzLfq5sp39r31G","YbBVQ00keUV3FwSZOYLf","YbnTake3Q7WMzUCywdKl","YcoeMgDHcZl56AjYQp5R","Ydfe5xZFcq1ItKGhQwzG","YeItsYfSalgdk71Arljs","Yfie5KUeodJ0EUPRKgKm","Yg4CZjXZUtwYbsaCRGfW","YgTjtkCl4Y8Qv7p5uRoK","Yh8Htj6QiDNTcycmXs0X","YhDRpAR0ZCN98q8bCVHh","YhDWYm3Uxx1oK16iuIAv","YhNE2xILFIaBUtRvOKED","YiTjRPFmXaRVEDOQ1W8i","Yjl9gLzW5c7Sngjo1zO1","Yjluo0Rn5794dNLnlGB4","Yk4ygSQiWD2aVLwfpsOY","YkzqRF6OMlwx0WG63c2A","YlfbHg7iQCBSZQcjvuQ4","YmCQR2syRECnbeoizah1","YmaUC7ac2BybFrjyf8z6","YmzIyeEWOIwGYlVlbs0W","YnAaeqvudNzsrl0uMdDH","YnVABlthaCAxenq5edoT","YoBnWCqOq85Vv3rfwH5H","YpUg4R5NybXRKOkgsrid","Yq0zzovo0LPzqK9wsvTn","YqmuQYP4SveZEvE22HDa","Ys1EqFZpZVMDSkJsgZdu","Yt0ekZDWprA6BGYVxRlI","Yu0njR6uxif2aaH0mqy4","YuD3ClrwnLbhDy0JGGb6","YuNT9GFg0BzfRxDghFGT","YuVvhpBT3xrMerdJDY9L","YujtAbhHED0UeQDiKfMe","YuzivOqMTTP84yiXxoAs","YuzqLqmGXvvQ8MEDnZ5f","YvThhYev6798DLlTwhiT","YwypabvfvuuMrDHqpyyB","YxD4ZRHY9Ii70KQR600D","YxgghRKYJT6Y2aMwVpys","YxxuEvMQZHJkGtb61vgS","YzNnOhs6e4oPW2TV82LU","Z09iJvdGfUUqr5WLkzkS","Z0IRCeda73pZ5EPXmPmg","Z1djtZeCPGTMbMl5gAmw","Z2KbXy0fuJd0lDyGnQNx","Z3MWzVhqgdAvjaMXDcW7","Z3WJDdpB06JxpYMUjl0u","Z3lenBI1B5b6i27he56A","Z4KQVpEIelx0ijYS3DtL","Z4adjzTQawx6kVFG12MP","Z5DLidD4glifeX1y4jUj","Z5KsQDwKN03Gm5a3k6hG","Z5PVRUf8t8MTgkyFBREr","Z5eXHHI8IuEMvgI9Ze5O","Z5xKk8whR4neccAst65D","Z6I7CZF5PqBJKGJt7A4a","Z6iqdfnutZeX9Eqn1oeb","Z6qrFx0Si8QGSXXbDFjM","Z7vu5uJJn5EnpVpjY50X","Z8HBiEBZaa1ZuvgWCgBu","Z9d6IeVnaAkMRjDAbm9A","Z9ngIEHXjmc1SQpgRYsZ","ZABdzah8bW86CE1uBAHQ","ZAX7wbVr3MdBNE5n5FVt","ZAhb1C8EGxlGahF5UFVs","ZAk4rKZhNME1Rufo5ti0","ZAnWovZfCCwUKb5FX0pb","ZBFw3sefwSUO2cZrSN9v","ZBNAqSKRvw3F4YCgSios","ZBUOPPQScQCXMkAmHtcn","ZBZODZGsmaaMKSN4Cfiw","ZCHwPvJy1QUNeTjvdn68","ZDaFPoxy7ZOsBFbmiHiS","ZDy5hkdBklszhn3TVeBo","ZED7VmjBbgAwYhulvbrg","ZEEn3RaRDlHthdIyBVqA","ZERxXAjz5bPAqH7eFt9a","ZGN31wqqyeQT4hlbfhGo","ZHRjz4l5SWHAgsRXWXjn","ZJ3IqrQfcERpNTqpDIj0","ZKSx7dZkg2cwOx24RHAK","ZKpQb8gepfolYdyt2wV3","ZKufQPyQUyM9kSDapFzE","ZLmftdtwmk7c1rez0Y9f","ZLwnEdqOVLvI7HmeCsLd","ZN1FVZgn1lHJqAnDyXBk","ZN5uujrJjxv1raBOUzBd","ZNH60JlRoexz1LP5sIqz","ZOSN9HdRdCmQDNXg5gXp","ZPDLITPSTjsCZITwc4Pj","ZPfEgD5IA9EwC7RYcWbW","ZQFWtpqY8qk1fX8n4NKL","ZS1JKq5azZWVJqsw1MDb","ZTRTeZWx51dpFfSW8F9d","ZTXHHDIT54STsWshZNoA","ZTdPqL9cDj1qTYiUoMGw","ZUAwBN6oiLNmXz2DVGGb","ZUQ5nNWsZNnS6NjJRuUt","ZUbv2AjXRJZL5A7lKDdF","ZUhaHyX6nVOtkXg4PngS","ZVA3JR6NWRAmPU3K75aN","ZVY0B0RhhbeJJCdeJBFH","ZVble07dyo5hZpJ1Ac1w","ZWLdi50ZiYfrLG9Y6wsJ","ZXTLBYG4O8GEpG1nYSbv","ZYN4wdsa9HLWQ84yAEGO","ZYPg2xGUKfNW0QcLnpbF","ZYfnN5d4doKgYMtdmOvZ","Za1LgcVC8jS0wI5zXTSJ","ZaIVNKHvspqrvobxhZdu","Zbk13MQvL69WCLV7iKgY","ZcKUbe4je1DFBbwOCnaZ","ZcYSpaZCYgK08bRBREzr","ZcdCI6KA84NlJkkiXAU8","Zcj7XU2uaTjhk760MI1N","Zdfy8lu6Ha1Vo6z7WkOX","ZdinO47HmvExGPVXXy3G","ZeVUae7hFSJcuvKmR1wE","ZfAzkJA6yUod27Bn93JC","ZfKkXDjwuNbNhU5bJ6S1","ZfXbGEvW5T4NqgEylA3r","ZfmPbtI1coh5JcyHVRHS","ZgHPAr8uRxiPJ60iJJZ4","ZhBuY4efLVThqpQgrFhm","ZhTcCs7QjAbkQiwOC3Jm","ZhXFmVcAIplZQGiUpEbc","ZhcUVQiXs8MamqWbT2BK","Zi0Sfe9vuPX3Fp14e9Yz","ZivXik2ku1w1ssDUIDES","Zj0JUCmE5O29tbCbn6J4","Zl4U3fht2GGUdi49MCeI","ZmVc7147Y6fk1SpwXfbC","ZolvKhsmmMOE7OjH2x17","ZplcYVJFfS6H4iNXbitX","Zr4vq6uwJriCOgLNGvbE","ZrLWKODqRE3Y8h8GOM0P","ZrZFO45BYvGaLHWVB0Fh","Zs0VfYzk67jnCPc9ZMFk","Zs3d5mnfmVPGpNnJmIvc","ZsWVQOOlBf7fTCo3uuNo","ZuZVRlZBOi2pVpI0Y1RI","Zusy5yLtu5mqNUe5zFOB","ZuvSRSPhKcO8XylPfkEP","ZvMQSbhva9S1AOfzdDIK","ZvysUvJ4pwqg5oN02ZkN","ZwI4QnhyYBTT308ARtwo","ZwThSCQA9JE1fIkvWJFN","ZwjgjqtvKzwGHAdmvz4V","Zwx69KznFfkegIy0vQPr","ZxDYIa0WqnU407NGBN8A","Zxj0T8w62Ikac5oxT2sb","ZxqeUddhLemrZCe2w2t3","Zxrao86BSnLp15JRkiWc","ZyUuT4DuPVkRgYquBzoD","ZydO7DLxVlEVEF5AJphQ","a0v3HoKRtZCUe5MZ3AIp","a1A4mSBm20M9raML23bu","a1etHA7PYqf84Iq8wxRG","a1wSKPl4bFaPIz5h85Wu","a2dWgGwAqYF3QWCd4f8o","a2f8hJxlrJs4MzepNhbC","a2fUmPQNuLJn0ZvEE3jJ","a2gJr3VVzOtdqZvvL3dL","a33dPuC8rMb1WorfzKtN","a3TJvLZqCIcqBaQofLM4","a3bQjGEUoCh79WhQI5aB","a4fG6kPBOqtcMwwNh57f","a4gvnqZ4N7VNtI8ZF9xN","a5s9HRHf4uiIPJl0nXBg","a6X0VpxxHi4og1TCvy5W","a6mGbbUN7S2bzEuxel8X","a6oqUTKU8pmkuHmCTYox","a7G8n7E9nedreFjFKVYQ","a7iIKftGvsLEvtTNNEWb","a81FslTrhvUygW8P6Fga","a9F2jugeooy0bke38TRs","a9FeRgzN6H3zmkT4ezfP","aA8eFE0BwbKh8VgfVICy","aA95EG84K1RqY6OOGjdo","aB948gCKxOe2cMANyjml","aB9ixcoFAvkcDunG49Zk","aBP2P8WUifCiRNdqfbpI","aBRyS4xsUnjlNyYYOzdm","aBV8mcmj4zpYZpLjDRiR","aCp8g1sovTd5pRNJ4iFN","aCzz9C0j4a8lMXxn3w0D","aDM6jWR898NP6jc3R3vk","aDkav08YKjbijwmfOVGB","aFHgZXts3GIBGqmBBMHb","aFZQMY8kLsFgBGSFdQKT","aHS12DHHgsF4Il8u4QdW","aHpZrqgiaT5haUOobhyS","aIXu82t4yuqzW0u8UNGe","aIs23RItrNysEJeNn5e0","aKvK3yR6BsAZzvwGeFPs","aLJ2GQ3pD5uxX55ylcoG","aOOF6KPEoWE25J0uPSUO","aOcSb8QF9X6KHwLvG8hk","aPzxa0NQohbrc0Ohz1SQ","aQQ7JBwghFmyQ60QQSWQ","aScJZLXknpRqYpTNvUew","aSjQeg9X20n1hxeGR2yH","aSzpJHqncMz8TFyb8MxB","aT0xgmvZpO14oks1iya5","aTPpp3lazf2LXiZAOL1z","aU13u7EWlgZYZQeo5n9Y","aUzxXcrqtTlxDryISVtN","aVmdK6WHnlHdwoReCdsx","aVqAxe9q1zOrYfdrK9wg","aVxMJNYaYF2VACMFKgQU","aXUZux4dLk0FEmMZSWbq","aYWiEHr91xXtNsgz0u4M","aZGG8p2lDZqBFF2qugP0","aa0ARGQoqF22HkJ0C0zB","aaCSTbEtNfw9UVgdk1f3","aaPTS4cfDjHl91wDPe79","aawdTCi5qgUWw7APsmR0","abdEKwkBJjj7O6rTkFD3","acidWhzKj86G8YkWRdnU","aeZ6lZUMTRtggzVWhAs4","afk8Dt7Hy2avxPE1kwIg","agS8rBb0WQZTYI3TBKnu","agfLzs5WZ0upo7IJ2x6j","ahFbzmZrR0FdjB9R1jjR","ahy7eyjNu8Ui0CFXz2jk","aiNxCy7xTwSVq5YYl9rT","aiXSgoNtLHWpLHUmBUzM","aisjlW4rUCMg1jKViKCu","ajAID2RRXdRD4dlCtUKK","ajCNdgVEZotDKkPnEll6","ajNDplNdBs4YyIL851kj","akI08wvnyFflnADFja5w","akW3OU9YTckFlcW4c9R1","akdDgINU6GMKvIWOS3hc","akk4gtQ6H712vbehj3B2","akx6DptYy9dImxI3FkL6","al1DLdb4Wh8cFXXeUw1y","al422XYtM5Bbm5NODxbP","alTbOsichz1u4pxTgGYI","alu2stSp25gyz9SrYHxf","alxApZ6u8U7Gijjd1Ps6","amtW86YMdGbiMIXC2Xek","anCbdSCfDiZqDUhVyY88","arRMIDTIm1WHVwDbP2Qi","atB3q5S0BjHd6WwUUAmj","athHy4Gn9V5x7XNJjzYK","atoSTSwQLa2kGICRTXow","auUnUqll0j48QzdPNXAl","auVNpSTBzOQfNRrxOBWt","auwNjZI72FLEog4fggz5","avIkIFylnLjA4jBdYRS0","awRvtZ4g6Oq9UlXH8NUw","awXtArc3f3klS0Qy1oG5","axFNk0qQduKzuWyE9CPw","axnNrAUmjUIAl49AO3qS","ayAWFv57wpUNB2gumhtX","ayEh5E8KtYkZ56DaHBUD","ayWjHSrwBQEkD1vEiMEa","aywtMeMzqxPOgJ0kUeee","azDmmkK10mwtrutQqMav","azEezYtQwTOmKOtBC9SX","azTkabAYcFmR3hKLzpEQ","b0TSz27iiabhLohVzYs2","b0nqgbB6IDQ7WiffD70T","b1d88mEVJK1WrS1cyyzH","b1pbRAaYwdjXJMknAdf7","b2F6lU0Mjrpl0RGYIWBH","b2gsUT0kjbXRpP5tnqjU","b3125WtQDnhcVcBFKr4o","b3DAdqISuRfd0Yj1uvDV","b3briGNAgib6PMdSYcId","b3zWbMqqGfH02pfTqfSo","b51vnyP4vA5vXB9xByE4","b53aW3QOaDBeGOm1vn04","b59Hc3FNXpIvuaNro5rB","b5H6OXWOwlCRlSjQ5K0A","b5JYx7aamwu2HZxIZh9c","b5K7iulokOCoD2gSwq55","b5gkO5teKBrW4Kznka9v","b6tNZTZlLEVMEgZF2whD","b7L7TNDKwEJPcBIqZc2q","b7RdF8yH4TIEGyHqXhAm","b8YVDfMPoRZnBNvEggwb","b8i3ubakyV51CmtkyoXL","b9GegdWds7zC1BN47Ra7","b9MEztYBz2XAqoB51Mpi","b9qghs62NnWXYX6ywJk9","bA8tsfo8YwWlfM7UACg1","bAvsGo8Sf1Ho09FOvNa7","bAzoxO6ij0l54skGilG2","bBDy3bY9kMVXJWnAzOfx","bBELD7rqwkteNxZ4NfEl","bBEf2XPXx9276XTxTKWR","bBjtqTf7vAJk9LANVN2p","bCQvL8efFiOTiQ5uj3ln","bDgQTbfYyxXYZSZg3out","bEdhDdqFmZgCkplGj8DR","bFlWn3aN64dThPawh6pe","bGPSsbyHeELelQJbhwRN","bGR7DwQdMFaLsoyMURDi","bGm8ZLVkTf78UYK6Sfon","bI1cZfw9wlVLMw6oIj2A","bIEpEpCqQjVRx03WSASF","bIRQCqNVAguR3bXUIIE8","bJQx9LkTqdJzLI2tdt4g","bJeWANrCkZTWiDzTwXFO","bJunr3zDPpWmn1otwrxC","bLWRBzto6gCTU6tuqVL6","bM3P92lkB7AVMkYFUmwa","bMErg2bnge82P5TNnE8h","bMhu9K3UHo1Vc1vrScAB","bN2RhmfYQ6YU8zS0ayTR","bOtPLbuWBlbq1n6TEWDR","bOvAcnihWLb5vPWVgBAD","bPWOleyYHmnxJDNqeTtE","bQ34uOF1oBOwvwSpXXOW","bRbhjmRNuS4UUiFDCFps","bUH1pG0PzYRP4qXDlfa2","bUqutyykxHC2C9O1XLFY","bXYP7i6XzHbdIfQUOGVJ","bXbqz1H77TtAU4vQxyXW","bYXZB6vL5lIJKTwR4SY4","bZ9vPzfz0C7JB6iTs7Em","bZU7cNlbUh6JHPKYql1v","baPkbG6Sbu5A7uP39bPn","babgJSF8mzdExcZ4B1fC","bar653Y2VYJoey2DbJMZ","bbyqFAJalIlakEeXXYkB","bcb3QRklNGwvMdRexxOx","bd8IS2HIdz2vkqUNYs5Z","bdzB4adhbVqhIiTayngu","bg2M37MvVbRqZntmfKNM","bges6R8Ino7IdZseAcYC","bi6NnYUg5FFaVKGhXHhi","bibN7U3ArNXXdRx49V9G","biscSeGaDcE6rwG9Hg7Y","bj17lP7YetaIRqKWbvff","bjIh5AknTxEKqBU6wwyC","bmSH3iLx1KeedpAUuCTc","bmTFVjNQax8tten9nnkw","bnTnDcSqLpkBlCXnelLe","bnUC9I19W6jwTaieqpQS","bndFNzOEhMm7bekaFZuy","bneg5UTtHVjIEqfAAbly","bogCUbryVsgQPDJFjjAh","bpjVilRU5jsPPGCXKsiN","bprBwWja2rb0qhgHdj53","brF9cUjd7vC9sWffqTCe","brV1bHsjBf2LEhDQzAbQ","bswl1Jzapv2WKCw4K9bk","btMWBNz0F3Y8DfHBeymT","btqD0SQAeifOCws2gpJk","bubPvWST9AkIDmsV2Mk2","bvsTBEQKQoWnq8oUVEDp","bxC2YRIRb30itJWKnyDp","bxX0JAMU0TUlkMxGX4va","bxftrXiAUvsOAqTRrvo1","bxl5liKYLOzpIMgAeCqN","byhXuE3qnuTpa7gMTvIG","bz39kx5thdX3DuIkLICd","c1A6hmsOQrQIOsIIo2rB","c1JDWGPpbR0U6CqHPAYC","c3GFz0X0qKnA8oJRNNeA","c4sk0Vlm5nMtZaMDG73a","c61k4r1Jp2E2safkRioq","c7CGtSEM3WZ209noLRQq","c7Vprgww36HqDHZ5jjkL","c8tcLhWoyDlCgmTeN3H5","c9IqRt37hKwvNr8uQ4g3","c9NAVxr17ItzLXhF7p3N","c9xfR9wF9Z89XBXJAlo5","cATVXBMsaOeZNnjuWWHo","cBCiqiMQinrqDfIK1peu","cBVO8Dhis3qvIvvjbAtN","cBtzEuRqBsKO3h59L29S","cC5kWumsoJGX1RatDVoA","cD9bpPuQFcGINNPQN8ys","cDPLOMIEMNF7wD8wtOAZ","cDru53u8zza7eMQnfauR","cEcNeYOMOwDMTfkRrP7m","cEjxr52dsme9ZeAbnlfB","cF771QetVGN4f78Zc148","cGmInB9RweJhlQBqgyu1","cHDzgP7PabI3oE2lNhDI","cHLtQh2A1r7O6Rppw9XY","cHXsCuuGUiL09MK91dHx","cHsCR8STK0JSeVlFIeSL","cIJ5sYzK3ASffwnqpCCz","cJ2jAIM2o7l8jpANoLDL","cJ4d9665fV124K60oNUi","cKFfbtm9Cy99zSFgz7ZJ","cL8csRBrNtWKaMjGs7rD","cLFapG2QuPys5WVluzgw","cMnfIOH6e5cfhIW4sdrC","cMo0EvPYntw2yFz4WcxN","cN74owwsqNcFKpMKzOPx","cN90p1BroLQjlqbJPcFX","cNJLrfxMLVa9tygbRsg0","cNrXxCCBQEyq5nzkL2Si","cO961Ptx9bKE3e1qD6hh","cORT7QjaOEXcOYURKzpO","cOg7mD2zVA3YZskhxHQr","cOtkG90VQZ3oTooKNExs","cPdP117RGXnytElUuOgD","cQKzWD4islzrdvAp6Ghc","cQLujgHFX1oBwRnv29nb","cR2W8ub8vowlHO7dGe7k","cSBG1Ed1a5kn0LgMy6kj","cT7iwjnqXXp3xSdZWKVn","cToK8ivChm0nB3vpB7b3","cTpNcR2A0tyf680YhtGH","cU45tV9cb6vDrTqL1EfE","cUDTzHEVWu8pOuFRoYn2","cUqpgIRZbNGM6qwYjpZL","cVcLAAxmiFWNNbH5JHd9","cWNW5msB8R1XCMoAGcyx","cWyX2YRzo2xmIwSzyYow","cXCvjTC2FaMos5inuuBs","cXbnYbHecHT34VVVMNr9","cYj6pKlzpKwbUZPC3MrZ","cZSWlMMTDRWGf4rmW3iK","cZjg7NWWrYjVePKJyplL","cZp2q1lgdRZIvjeUBWDn","cZu0ez5oRj7ocu6CK6my","cZyFTTjXokQ9Jf60lFBu","ca8vo0VUoPUKn48SfU6n","caWETySS2RpwwlPeLfk5","cauVTXE0RppESI1KYZrt","cbCUfOSaTedklA4mItiL","cbxnmctjdhcAW186nOrj","ccAN1Lxoq9Il7Jpaz5qs","ccgXVNSjw4ISOpUgayu7","ccgbXsSwfBRgNbzfN5Z9","ccmGCiYube5aSeKhXVhK","cczZ0qskYTMT5TYFjEdZ","cdj4eKg3fNzo8G2is0Zc","cdv3PG6LEJeFdMWe5skP","cf63rzkO7u8ufaMD4tZn","cf75Ux33vDuoDQOXcjXM","cgCMqWt0wNzriW3Fz1O7","cgJieJOvyPHpfmgxpCBb","cgZwkbgG0WMTNdx9vNIN","cgu5FrZ05Mi8yXQGRq7u","chkGa16zqQJp3LF9uFFP","ci16TgD8LGY7dUgNWs3r","ci48R5oGyGS7fKk5B0GD","ciKwnMHcAwaWxEkKaAPS","ciLIHrPgd0s21WE798mf","cjS9od7F7KWFC2aHYQfY","cjXNV0KZUKDahKOcttBr","cjYUhgRn1ACIuY5txbR0","ckCRbSgtrOpXe8Mszm9p","ckSGb1FDUusoys7UzRsI","clrNCxkTdKId62xhsdOr","clwzz9DcTJnVsxOvPxGI","cnYle60Y39tcIPi3tIep","cnZX4WUqBEq9dZJI7hQN","coCvLGxKjdZyTIrV25kr","cpociGvK1913DgVcd3Be","cra5gcFGJOpFhNGex2rB","cs9E5gaWvKADSryD4BCA","ct5RACqBUVSrgXYCfjBe","cticq6nShvUWawO7eobJ","ctwPeWM5LU8iSFv07DtE","ctwVmdVo1m2VCl3kejuf","cu7gUmWdgWb61Ox8WQ2K","cvGsyDyqxxxWz1J45pkL","cvrGf5N8Pqy3cUOkO4LX","cw0St9DlVuGhmMRCgWtL","cw68bxoKGNN7lpBGfYfv","cwEbuxyDtCzrQGDVWFiU","cwGuXkpABmCjUsqPVJKa","cx4ZL4vBB7gtU4KxYtMD","cyCP04MAKeaEqVQ15nZx","cyFYVsjeK1mMIQU5yW42","cyLxjqrnEPMfGKO0mY2w","cyV5yLri00YxkBb18dNf","cylYFdLA4hjTBhVoXYoA","czIlGVJMqN5nUzoOiHep","czQHdPqhPhs4DH94ASuI","czr82cD4amk4hKy9CWoi","d0KNF4KsJ2z03hjSHPCN","d0OOy32kaow6MZqFVb9G","d0Q5EfKP3vKUd0AJQuUF","d0jn6EP2ZGpxci81G8in","d15BMqV2T7XghLWdaMOY","d1RpmdCMF4p4SDu7nKNe","d28USuF0fbjV7kr8WMul","d2ehIzu63sM6jQGwqZSk","d2iE0TQJTtaoracw9P0E","d31MMCfTgg6wXhukdsg3","d4cz2lNAHruxk1KTBqN6","d5dprv2J1Y4gbbKhHZSA","d7IELTVz9bVjaeXtD24U","d8auvkMciTVav1k1Zmax","d9BQGjyhqFn8V39Qyggb","d9mHFePm25vge7EpWkho","dAnuWiX0hFJ8EUoNYhPT","dCos0V9AzBOwQq65uUAz","dDX2FRbP5ymoWGX9SrSJ","dE7BOxDAxaYsnoBamAWu","dEd3OvyWyguc2s8qjbkg","dEi6RgPo98r1GR10KUWy","dEuu6BXEuAPryzwF9Ikb","dFiUjyIGDkfHG4mdIwG3","dGRIpIqx2ApGphhXLQVo","dHFMneSXA2ob4tDaScKS","dHPh8Ev0hWv3exS7iahn","dHjlqdW7lxKJaCdtpayq","dIiUBAjUtyc1slPtlx3w","dIlIiJ6F3wX6ssSEHxIC","dJukQtsIWzwk1JXOTKpi","dKhFhwBXPbmWPk2WLefe","dLZe2RWnyYdiXyT3hiLH","dLmu6FKnoN4xNCmAJ5l0","dMtUTRvsTSWK7zo7wzoj","dMw3nvF3weadZSa369VZ","dN6ww08tcWLUDYlO51it","dNh3MlAiMKqX6WaPixy5","dNkIk9nQHvR7PFQR0Gxg","dO7qRhOHnwiHgM4RQpq8","dPrx615yxMtggTcfzDbm","dQIHrlrKxqU2qNKvuTY2","dQmHcafSAAtBidT8T3Tv","dRpl3Uib1ePV9jWErXSJ","dShvqRrPGNkZHLdzIaj5","dT8aqggtjS8q2XotHcds","dTjstwMdkeurtAi4gwk5","dTkSNq6kM63J5MhZktON","dTxuRJGqXjkEjyO9vlmw","dU3H8NwenjqB1oUIEkXG","dUJjR4orw8F2l9Q5Bsu6","dUf0VkV85FiCuhYf4WVw","dUzKvAx0sYsbyqD1I2di","dVW6vUPf0cbt0NswaPMK","dVWcETRna4e7FAQZAzGA","dVem2YfnSuZjKo6drZQk","dVeuzGEiCay2fXwqiRBX","dWMkUvK0qse6d9DcGhp4","dXbJKZOU4vAeG9MQ2UdV","dYRBPCNzbZOu2wiBDPke","dYRam7EqqChBaXf6Rffn","dYVbie1W4CsyHSQGsHYU","dYkN0DmWQ8dQPUCC7ctJ","daIwPOKsbjJQHELAevSb","daYiYTl2FMcRusgSSdXA","dbKbfA1tHi5xZWvMZnlP","dbyzOldEOujmQ9LL01mQ","ddBPOiVsQRPTOc3YtggP","ddFeShq8bAFFj1Lhq4kb","ddnG0KsB5IwkvVNA9N0V","dgaAiczTv6GejNFDhXap","dhs0dvrSGxBYyxLsFOUj","di6nDLR8tzLczkTHO1w9","dipfmUUa2JtKbwzC31Hd","diwCTOksBkJKDzyRV8Ty","dj6oZcsZzPZA4yzvuCJy","djX7mBBS4rumcrARcWfo","dk0lx01QgclbOZbSzihY","dk6YPn8lth2g2fbBODeP","dkIqfUckcCQnsxj6xnnS","dlzi41a4FMyUvx3PZ5zF","dmI07BISKazZ8n6w1SZS","dnM82aUTePQ0Ho3TQ9py","dnXrktMplMHIlavAwRE6","dnYNjmpcA3dKVhIiAmzZ","dncv1k23manReT2u3fZn","dnhGhHUEhJqPhsEEqYBO","doEtUXD2WvO0I3oJGC2w","doyPrAoTGe0K3WBwYvdT","dp5fc7ZrjR4ugNy1xlxN","dpcZWmDcvJBOhX0rqtJ6","dqi0VPdQvF4sJNeoPFvQ","drTEyUmqTUO08G0hOvLk","duNZRpTQJODhyIZskfQp","duOP1NLY77W63lpjHfom","dvaHxQslZMcyggbxDgr9","dvkT0QBfqPKVvvviLvmy","dweP2OGRFgnaBUXSdOwN","dxYydU5ajjuxnKKyECd0","dxv7JzrOcaP4QcnBRC9o","dyf3rXsAY9cc7dtwvke9","dz0ZpiLA5P5KAYxEf5Ih","dzFHuXS3LzzPUR2kfiCz","dzJEOQjPUSr2sLaDhx7K","e00Le2oUWbGntMCmMZTg","e0A9NPHfyy70u7b5V2FA","e0asye0xAAWdZK8Gwv40","e13EE77Uqo0K02YfWcPS","e1iOhXTns0yK5o3GACjw","e2TrqZKDs3HBhS4CKhPm","e2sHd2Jn8hnTULRsrTIT","e3AO5xPNCz23yBtGcIyk","e3PbeeGvBT4gZjDhYsxX","e3uSfPcw7SYwwkHVYrlY","e43hzGLcbqkCekPBmFqY","e4Afs85t1GqYtr2SkSV4","e4VH5xszbuuPn0CzxPMM","e4es3PKLwv09ERSwMPKL","e6dddavKcFBDgYaNkc0P","e6nHQs2QHQtNfc7y8zRO","e6sxlrMVOhTyxU5PDkb4","e7jjSeeTBStiJuyBt0fl","e8NPgmOCNTV6HAR7MDit","e9EImuoWefw4rsSUW37S","e9RcgxmQ23J6ch7BQUte","eAP4aOMtZwlJtvz5gcxC","eAtvFtKCKE8ZsLwMtbFI","eB10ahEd50TVis1YE2GU","eBEAxFUNlJY7H7mo8pnh","eCPYF4bLLllGiIl67GDf","eDAPAte4bxt7vq9hScrz","eDMAL0XyTjHcUrR1Ct7I","eEAWW9tZtIu5j9NmfwkM","eEI209LqB8HfgUBWBEGd","eEluMDw6vviVObjq4WwP","eFi24npxgmjJK8lOPf5y","eFkankESkZMlNMa3c9ND","eGfBz2hF26ieUCcDvVWx","eGqBTumktVtZ5AxblsMb","eGsW56iGfPGTxVOkACgd","eH7azmTm2N7IJLOH1Wji","eHQj3r6Ci1EDfVP2UOGf","eHoc4msykp83l148FA61","eI6hhqkffdxkcZWTrbgo","eIKIrAuCFjWBQAYWuxfk","eJg2ERIzYe6tij2zZ4Z0","eKTQ2oHI4vI5LlEXbANL","eKTXG7qJVT0oKH3KYHtj","eKoKLxWLytSW03mlDMyD","eL2gxf4TSjdHijVXAAEi","eL9aFKIC44xah5DzfmQm","eLTslMwM2p6mla0ewUKF","eLniP2Dh5jUIILMloNcp","eNARh0fFyf2L0rGo2tld","eNX2sqJ6DWrPsONnRMNQ","eNaua4AjBU0IwPRHhoe9","eNw1eMP77mpmzeJoo9Px","eOApdF4cLTfoDWIolqkm","eOdOf76ZiNFhY3TLAcQv","eOoBe39usNy9IlQfuTHP","ePxga09eiRRz8cMOmfiY","eQUWZGkou9dlb5J7Ux2u","eQjgOnN9v5OG4c5SntNY","eQxOPogHk4zLIEc34M3P","eRJqRlC6h2aygXo1lNgD","eRKsPlsxGEJGvqrYHNUi","eRezGTzYJzO03Oelpm21","eS5EnHz6HUD7siv2kW0G","eSm1az906n4yuH6pkXuP","eTAcdHiThacdUTRyYEmg","eTBExF9uxCz6UlfAdbuU","eTb8u1BknWVv3VML2pVF","eTbkvGmPuTQSMQ146hmS","eTjMMH62GZ8wPizh606I","eTvpUD1JZNnCXlkoogaq","eUcnIkNfoXReQd3hUBkm","eUi4nNvrl5gnfkXPzN8q","eUl14Ma9aZzNgKztVTL4","eUlbaBvK5Dpzs46FivGm","eUwYlY0RkA356GRIMQWT","eV3R04fdsIlg062St9ww","eW8i5MG0hXOUCZ6iuVvO","eWknrSyCSEkg8yVdoKd1","eWz4ArcFC3RremspoVys","eXE6lEvAKkiMVz9qTmcj","eXU9QnEcAZnVAX6XSl5V","eXsqjrvvepQnuXnVvuSY","eYWLq4WS8LTLi2dLqu4E","eZ46FH0MM9XT7ZNAsYlR","eZEZEbSyq40ieVe8ojCS","eafxkhYg1fOiB8U6XakL","ebCCzGug89PvlDS4i1Ov","ec0abBYAjsT3nEofc0xv","eccTBbnjm2hCfz57ligZ","ecoW0PnEY4hFkxrlXaBu","ed6tEJN6QjLefqwdMVde","ee9BKlkDP1eZTXWaA3Gl","eew9cLYOCXaelYKyYrYR","ef3jPZJPvvHIULCHPZEc","efLYtXr5Q0S7gHFIQ3ZH","egAhiMSgeVeShh8ovU4P","egJ6XcHZhN1YO07GBkFP","egMA0Hhq3TbMJGzRyud8","eh9JZZ9k7lX77hFynbg6","ehH5yl4e41mrlZPOWNhB","ehS6OC43HUWC2GlPNcWw","ehiGn5BAWjYCSHKKEHON","ehlHPFSpcIrYyNCFs2rC","ehten2BEn2ygSuFMT4Ve","eitAhYDNTShzNsTVv7Ws","ekMlsqMYzyfPd9DePQi6","ekYyL3t36B3TYnPFjC5e","ekag9zMYiH2rUeRqjtYC","ekkLnZhMQCF3j9YN1nBp","elAa1gWsr05KOC1Q8Src","elEW5KjzYv52Y4oeoa3A","elvbVSDrWBnFbS2aXjoe","en06gsdKhJkYkVbOzj8E","en0JiizybLvOrPcHgEoY","enOuJwzmI7BCf7tmM4EX","enTvzbbWzIuHiKWDb3wA","eoFGZgsksspWS961GJop","eoK1AflXqtaIPewfnMix","eoKeTcqVwZTroBqncN6m","eoSgElXFHxyhvcBaugIZ","eoktAv2rocuP00KlOGCh","epEVYzy5VRXEyelFWFBb","epIlgfVClng6XRAvqlDg","epPSQ2mqVBTnPvXx4rMX","epqGAKGusMZ0kUl2JxdJ","ert0xiWPGaduXXaGZroy","esBwRIPM82L2elKqhGCa","esHFnhki9Sxc53ALSa2A","etVz8DmwHMr6qbU1NifT","euEMgaWn20BWzWtbUgbn","euJ2DPkBV4Dadlp71qWW","eufAV4v0j7lvBW04cZPl","evPhwgB9LWoeSdNwkYOY","evg9eWAfw1rV5DA8oq3a","evyASfkayZh68QnOxLUo","ew9iehf1jfa83UKLwAFA","ewrjb9uDKRyNMEftzxGf","ex81CYdLC31VvvaUjghj","eyFzG4suqx1vwpuv8Zg7","eyziRANvBnYjQBWGse23","ezeUXR4Ytiu7jk6BmERj","f0CMGLDOINO1Hd5u9pBB","f1W46dRy9ajiRQ44oqpj","f2OoJbDPLIpCvewy9P4P","f2sQmue1HRdQdnTKq5iD","f38ylrcQ26ay96vEVQnT","f4T6blVPm2ClMdQjfxE8","f4YYR5HjcAqqcZ3yVITA","f6SLgKDOLjjKyHZpFWP9","f6q9LJtBLwgcPR5DAKDe","f8Cug09r3d5P0g8nHzgW","f8ygQoEh5GAkJuQhvKau","fA08MJiQBmf142qKbNPL","fA0QBNa5O8M0T3TnIOwy","fAPSSAOaezh2Bt5MEHce","fAkNipcUgNYY8dqJicwJ","fAl5ppCSsnzkVAGPncpV","fAnvZpEefY3hTJU5Rw5h","fCDIG6cHxIX7ymPwHdwD","fCnMjYJm19d7lQUfAkeN","fD7XadjUADA1zTWn8P79","fD8jmwfqL0dF4vfW0pkL","fEDXwUpbgg0iE76b0xIx","fEJIT3OTle1dlt3UngIg","fGU0fp9Q01eJqqaMibMx","fGko97tG3jjVNuT1cfsm","fH3WLL1Ul7UXa1BR70nb","fHELqQFRcGln2f6eqrs2","fIPmF2MnsXfi0ckAHK4y","fJJNB7wDq3uusBtWXFlb","fJgdjs2gu8HLbcq95bPq","fK3TNUVOZKKs5dIEhg4Q","fKNJlrGp5eeZ7dWvdviZ","fKOHE5g7hcthyOUb0IxO","fKyP40Dihorbi4w7sfan","fLdA5i7nzWiFIh0WcuMx","fLma2YEXo5PsZhiGLurp","fLsGiaLDBjV3cQgJg7lJ","fM54hONx6JqLNGaNUI1q","fM8OUoqGI0TYlLsrrAmO","fMBoLzdCCnLqpsJzXym8","fN7M098ctCkldiax3Sb1","fNFFGZJIZ85w9MnVrv6h","fNLE2jbHWP8n3ZHWN4KR","fOTegC0YF61dezcO0ujI","fQ8lCZgFMWBbVsrhuLBe","fR7ZsXMuPm46NXmFcIfy","fRRJhiAcktVxDYefJXUk","fS5uQFO85ZQgH0QOPxS1","fSIsL5ubCJqa36yCU5Tw","fSdsb7xir4Y2tGg1NWKy","fSndyr526qnFXVu25RZU","fSum8POPu9xqM6YkZnOv","fU6WJZTg1iZdlie61h3U","fUCDCeWfyXgH78FbdrO1","fUhtz7DJwOFEs8grT6SJ","fVtkl2FRZ4wO3jfWw5Fs","fWMahsyZ6jPrCsEKVHWE","fWeyUXYlrhI9aCMPS90V","fXqLuoft3398FVVOM6F2","fYMh6y6Scw7w2A43LGjW","fZL3zI7UsAWG1T6bqzfg","fZNZzwkPtvhlu08bPx2i","fZYZqOyGlH6ziukZthNy","fZrrJBUt4qTqS6vAJw0h","faYIsI1lRFSjlosZE1ZG","fbyA9RVSxzRQZ3Uf2Je0","fd1Alub61wfODIws0JvP","fdKL9W87N42lBtsgMWqk","fdyR0mnsZyzVuXIcXfNA","feRA4tjmN31zq5PsKCdO","ffZId1WY7q0d3RhIfMZZ","ffxTXvxMubORaz1hl8TJ","fg4NfInQCc2ilGNDjwTs","fgPn7O3rfWgVUeulfyFJ","fgsB4gTBqLofqTV5Py0j","fhFBMQtpFp9UwXZ66r1h","ficjlEznIpJW0lmTcVqm","fji6EJoYNUCNzsQw0VYb","fk5YO8cVxKScea0UD0xe","fl3O8HbypP4BQ93aMd7T","flII3W0JzdKVYdG79FHx","flrVIDwIk746n9UP76e5","fltPLhVngtxhs67YCVdb","fmrXTdhdmZpQpegQMNnM","foRz53waCbfwTmsp1Z05","fohmuoz51HZXnVXYLyqy","fpw1qvHTWuPd3hAH5CiD","fq8WCp0E4oOlGgXlM4SY","fqMqAsqhTowDV8cfuBuJ","fr0197vcUqp9zX7oVAp1","frS6hk58g8MLm9FcYzLX","fsU1PsdiPpKPAhlnSszs","fsiGJuaLKQVaooO5dRXG","ftXnhPIe36WdrikuVpZp","ftpMeggeeLhUHdStVARi","ftwdOAvn8aT2GdyLdvfE","fxR867ZIJmZiNEjRJXa1","fxfIppHsPP7STmXL5SUr","fxhFYO3HbPZH619iuP30","fxkLR9ETS7M5OjKixzMz","fyLBdVVBVpdhSBUhiCaY","fybvgvYnfOSqaB4AMmLx","fyeCx6fY8v7uwDhwlEpn","fyu8YOMrgPByykeXjXzl","fyzjrXqzhVknawwdJ4W1","fzLPmNqxlBl5sqkQhU7l","fzpjkJqXKX9SH1OwzwSG","fzv6m2hjUzoICWZ2WG5y","fzvpqJeVSSFxUKRSRRJ6","fzyEyVE4IUjBCoa8uTrq","g0GWWteysDmmjMeoe2Nr","g0JPixAAmnWb4XPEr3ae","g1DZ1AfnW4jciox3K8Pq","g1vTgm5bj0HPGBP5vg8s","g22N803zO1mRs3Idsj8s","g2uN8kSDTJQI1WU9u4e6","g3J27GdCMKU14CtcSW11","g3Y2kbBQubmGCERbHU1e","g3tRRAeRYLK35JLdhLbS","g4Ox2rAQu6zHNCQ2NhbP","g5yBlSYIPvo38t2IIB7l","g62nwOC8ZU6HnNPjEA81","g6peJ84n7ZUtI8mV6Yjw","g8O96ssjZy1KtdGT8qoo","g9MHDTurkITDTog0dlUJ","gAmsZrkaJrazJBhg0mxM","gCS8fcvepp3f2lGAKgto","gCxSgZeQSOlMp9mXJwW9","gCyyWH5E4Tf2VF6M7mw5","gDNq9FlXRz66iRb2vL0A","gDVGMKxnQvlqVVTqlotw","gDWOL22tFRWxOr55Jfwy","gDs18IH9srJZdz1znpl5","gDyXf1ZW3xQLrcT4SSUn","gEJxtZoPeYEFc0McFxMk","gFII9JLVUNWwnFDutDQL","gFbtmgSwT5hpwkIXpgjZ","gFrtaiHxNLk7uKuHfsAd","gGooA9Bv7l4G5ehTPqbA","gHBnpcd0nDjhOaI24dpS","gIEUGAqfukudcAJApLgL","gIKYeMgqfK6Z5VPAKTX1","gIYJwItnTEiA49a5UR4d","gIiFA5DI5X5xmey7rlJV","gKhnlEIUB0CpkC8R51So","gKi8RRglZ3yyClFr2MXN","gLGjlHKChKmABtOwreZP","gMdC0vdiymaLmMsC8clO","gMmK50Gt4MJGuvBghEnD","gOdetrNewZ4hq5lFIcNm","gPT6Ug3ulTmePbRS42je","gPfRX8I9hB55yerJUTmS","gPlJSt3ViU6lh8jbazrQ","gQLL6d7lL6gKHijB5Axc","gRGrxHdo7F3lUhawtyvL","gSnJ4lWgm9WzASQwvAOK","gT3OCFgtJErqQAVfj5Hf","gT5x6kKUczqnvl4qb9Yt","gU7h9QMwafHpXdZhZkTe","gUz7rdl2ZvHiOwu9YbmV","gWVR3BMmOHnu4MgZCJRS","gXcyEvXCwyyHNHdatHrD","gY4ReepQVWlJx0xo9CkG","gYNyB5aWTllv9ukLy6XZ","gYlSsq97WeW2XKVqYqFK","gZEboEhMz9iTxbGVbDeo","ga3b1Mv0PFDIp6YdSoF9","gaA6ql9Jv9cFjffIn2jn","gaaUFUgEne5AiGsU0fhC","gajyJZ2XlXQAjgyhk9IG","gb8e9uFLF3I2cFiExifC","gbCahKMY1d0DE8hjptkT","gbI4JxkVSzHKNj2yPK6D","gcddJjcnunAE7oRIISOE","gcf3rfj7djWMMwqrIpL9","gcjSjulXSJpS00vUV0Qq","gczzuNKZz26ZlV8v8Hyp","gdqI1g6Q0imLZLpLlOiV","geFhYXwG9pXCJGDn1T0g","geHFEfUACVRtbmmKxMQp","gfSO296bJFVLaCE16Cx7","gg02QRqBcqnaYn3jsGF3","ggRq2UCyMcazHxz5M2U4","giREaeJtCuL1YDiv3RAz","giehmfjNXEfRr8Ia6p26","gjT6Fqy9VU3n5FEQHkxD","gjtHhXKq6UFkA8nNI6DS","gk1eIkNVrL3EVii5a7U7","gkUEM7X5GXJL1QWWf9ys","gkuWmTXteNEWPK9VCPjR","gl5UsTGLa47MiJ3b1Juq","glHHog6M6YIGsWNbgWV0","glyKkj0I4NnWd7FOcuPe","gmDLvO9HY6DZcpG9SKIa","gmL0HS2PpyQTFLwrZyhj","gmLurKPUjwMV9zSS1cIR","gn5sY5rmG7Fn9PqfV5cq","gnTQkKiNAaKwVeYDMOjJ","gnbN7ov6MqkUA2FtJTvB","gnwQtVNZYJdBy1nW3SK7","goGi3E2BQXIq8NG2l9cf","gp4AwqtCVtO7LZV2S7Mz","gpUQ321w7krJya7hNO3N","gpUzVd0HzPnNHdVz8d1s","gql8wGxukEHgMcVaqBML","gr2czd0AjYke3svgviL2","grl9DQkN7ylLccFCniag","gruEQlT137ZLMyzLWxV2","gsk63j6jKfhdSRlJ3xR6","gt7nS4KZMqs0zocGXf9H","gtHxRm0hvTzWxY6BRbc3","gtKwt4XMzzsLB66D5JUG","gtcNiMjXpbuvzxNNO60v","gtt1hQcRwt6GCGp3tlBZ","gu4cIjIyIrJ8Ao9ncfEB","guHESa9rq3elwwpob94n","gul8reuTII48DOXR5taT","gv1e2mk6OTOcenHzFoKQ","gvTMOrDyEPANlPvs4jUx","gvuWVLV6k1BXaOhBfSn3","gwG9RKuRUDZkujGOwKf0","gwkfRcBzSXtlDT4yyATa","gxEN5wEdoP0aAHKy3BzZ","gxuVt10xhBR48YlKqdns","gyJRdhG6BK1vEFGUnUTr","gygpiGwEfQHEuEH98G6L","gz4pvtU5uvwVPBQFDgDE","h09Lh55F1tVpFLs1IinZ","h1UYvKUjQmWSjQoPGyXd","h1W9A6OpqjqP3iWDkTrr","h1YE6mBkhYCGfsfnlkYx","h2GjuvrO9dybUvFGueSm","h2K2c7rxggKhT1HFcG7i","h2mlgBo9APLyWwZsDiIy","h2nqW96O4RGHRsgRTVEh","h3xxDYUXEP3gb0W8aIvn","h4jKlXgaJ7qYuqyX6oAv","h55YeqJnVrr2XiDUc4tI","h5Fdntg9DKrdJaCxpEz5","h5doNkVNO6M5cxcPmfqy","h5hAuw1JyGammjkln328","h68YWCl2uxcIq16rQVLy","h7J9yBXdEXs0ZoT5rkyl","h8eAWFp1lORr9p0FLGhn","h8wbCNnFYnPFru6mYrgD","h9jKfrgEgZXl7bbl6lvF","h9syI02NMRY2A91DFtdp","h9vZ1WUJ8xm3OqjIvzCT","hAKS7wbqcpf5GCcHYNoF","hAKgxUX19bR5bDbtFck1","hAuteHIGRQHwq9PnA0SE","hBTUApVlcMEVd1771kHd","hBsv074xffcTwADS7Isv","hC5gdF2bVsAL5ufdKsKz","hCMy0z0vLC7aRAGnhzyl","hCOpNoRQOYL0E6BJQLi3","hCRjh2v7yWon3At7OViX","hClEYUqd50SqMxjbX1bG","hCyyOkiiIRdfhrmq2ANr","hECsXJiJujL9lTfUPULI","hEVKCqx32pZcv4h39v3o","hFR5k8MrAba1KtOL9fJ0","hHxzMkEPGoOJIKwlG3Nw","hI1ESdJKk8UmRhYqWpr6","hIR7rsb4HD7ufcusq7wk","hIoras7rsX0HKhh7xKt8","hJ2cY1C70LvtpxbMHaEC","hJgcxVBNy77wWD9aqg4w","hJgvfPEvcMsR77HeqSyV","hJv7rx3jFa4o4EEcM3Y4","hKTAdDstRwp8yDgrddWZ","hKikMHZNv7pSBqfe51aA","hL6srzQvgFJ6YmjAvNZc","hNE6Kfpa7YzlLvx3M767","hNX7mH6ukqRkgB6iM8Mf","hOpZE64wFQT2oi9biPA2","hPBKja5OZjY9X3CYex4j","hPL4362nOTTD61jpRd7g","hQN5AvdQ4bdzrOfXk94T","hQetF2voVgQU4oaYmnLC","hRyKDFmHLc5QdOgNXFe5","hRzQ3oBbICe3pHYMUm5T","hSTW7MwWu8ZqTvcbPaup","hSwU4TCxNwon7RzRoZ0M","hT0t7bTfO4ECLOyKtm02","hT8IJg5tBRJZI4zoaj3o","hTanzPnTEBHIiwkOrZEf","hTilaHpvSqe29xNzrV9h","hTr9gxnJ76H9ZRESSwRz","hU5Xk3SFJXURa7p1wHJg","hUi0PzU1YYOJZ7m0b0nw","hUlfQ6nS2JWhNtsS37jK","hVrqqsIKxPhEKmiF7qIp","hWCEbS9QKHcHhmqw7AUj","hWY8gyjmiE5gDpn5dChX","hY26MoMRxLPPm89Jh64i","haGF8rGdRMFQLySTr3xc","hapfbn2oNCYZxWRSUy9u","hbse4p6XncLGvIw7zTjU","hcSdHMTMwODq6hMlzRAP","hch6DyQIM6nlbUNGgrmJ","hd30wbbxxqFBetKyZ6yp","hd4JtltJBG0npDRJOOnX","hf7XluelE15uOUFTeiTA","hfAaKHNAaLtcHIlu8VXt","hfUmH8S58rTwstM9x22X","hgFjwnLrBftHUmbJTHEX","hgojIFRJ7g5eUk5P7pNI","hh9kJnHa9UURm4RyXMHH","hhqHBVOLrvrJknh9bnlD","hhwwZbFjiv0KVvNlNDzw","hiYB0VMRxfkv7N98RjCA","hjLUJNg9oNOXiA0vA9m6","hjOmsuLXjMJyhlFLh5vc","hjsweJvynv1iEyareqqI","hk9LPRvfTvBax3G7KbJl","hkUZbCC3bCz71SC8HlHI","hl48o3dRnatuUzaWgA9L","hl9r8k6eqSeBtrw3v0KY","hlUO9nFi4RT78aeK529v","hlhDwVIinXPKCwFNdhFJ","hlxzYSDlYVilu7VOWwOv","hmgj2DFYQQlbWNFcyIFo","hmvZvEvYzJKUADZODKjy","hnXaZouiIO79o0tdgoEN","hoKNBeBpofZteG7xae1v","hoRHp8S1YpxdlnF1wbzR","hoWYse6QZCttm8s0ciZA","hoc81aqC1YBpBgSOawNX","hqdqXzVdLNtDGrHXkvrJ","hr8N3o5k1maeqWGcVsMY","hsf4BjBmxDOXI5FhZWMy","hsmisyWbfRvx4aZnP99l","ht630icnizduWORraVcj","hto6MlX1EIIcPhJY4HTu","huUXRoJ5WxEwuKwK55Dr","hul2zrRVHjiN8Q2arGJL","huo1lx6bdpte6KvMxljN","hvI0RQZQB8sTkthDO7Zl","hvlHYex4P4vA4Jg3xcvm","hw5PnK4wxEXqkZwJ5yFU","hwq4gAYhEFt7wFEmKaxS","hxZQlCLGw3MPVM3xkUCa","hxebGvTuMZuNI5ee0BJL","hy3q061W64RJPq9p51cs","hygnfEvxuXYDqg70soVw","hyz4hdsdRQkNsM1zUB6p","hzzlnG2h1YGLXAzgjCT4","i14ifUCrFEGpaMZjVGxw","i1VCXB1QJ1hzlrrGnTfb","i1iqAqORs5hhmIiVJMd1","i29CruUy6vh6PPn65YA7","i2LSPTMMslAhccBrvEpa","i2NG5IfIdbp6ZVFxq6U7","i2xPWkKjgW4kzrZK0AG9","i3GJYJ3Ed0nga6Gz3TYp","i4OGt3iBjmIQCxfxBelh","i4StcRGbtI0QhJGKoPtl","i4ebbAaIyCsfzhQPNslO","i4gCVHE2TAetqYWm4tlq","i5Jcd4IrAJPbNELz1ZSJ","i5fpFVSWufctH3orRfPb","i6fo60O3tzRSr5FqrRk9","i7bj6XxkRbqkwEOV1QUu","i7l2w2FLACiUx7TkibDN","i9EPbH1769R1x0SKd5RH","i9hk9S23bVOMrXmk4l5q","iAcfn4wxBw9xi3T50zgr","iAiUcDIiekqvv4XeqFqW","iCYN06z3cZvtoFDVkXEO","iCkcDqiU9YrFEZFJ8Yul","iD3NldDETBDTk8rIBIRg","iDBZLsgVAPcoDxf08ruD","iDMkUDMnGO5dXR3rR4og","iDsU7ft1wnsjrANcO2M7","iDwVD2IE9fcu20Al0SDf","iFE7HFrsdOo5PDfXEIae","iFJbQyfBZIPmFeY8fXav","iFOdpWjtaOFXyECYgqr3","iFoSjRmzDjynckFhkWz8","iGCs0rA6KgqfJhuUTGG8","iGHpM6rdyjCKkEgD6kf4","iGSEzQJjbwRl9K0CF0RG","iGh6n79vvLfSDaTJJ5dx","iHCqSiKmo0xeKWHW62Oq","iIHPZFOWG68V6vUT8QBn","iIwdJnln5HdT3ruD8znX","iKr0KTDPYX89gvS9TIlb","iLSHarLdrJABBnEwqi1b","iO1G8GOiIXewIJigMCtR","iQ1Eijh9rDMAoKGJgQj2","iQ9yifS216x5ZxKBZOIC","iQR5yOCjrgqL0pRm3tWR","iQbZ4CR6WCTTx2m29Qa2","iRdL898KjBXABoEo5oEo","iSFdtJLn2YZKiyI39DIR","iSFfNIaY97zaH91VXzWm","iSeupLZgohvc7wdEpdut","iSg8jn6skaOtBA6DXPS8","iSt9EPJv8dRw3gHTAjeA","iStbtRnrwxcjlECHxJkn","iT1NWhMSlwcSnabYzAQo","iTAPZltLQa3QdyWUih6m","iTGn264xLFHC1mDHZ5HW","iTYrrIi4JUVC3HqA7NNc","iTqFkFtFER8Of4WEbilf","iUO8afg6Lpyd3p2sGu1F","iUV8uYan6k9TzvlsGQer","iVqP2CnHHzsCjtGBrpiq","iVqdF7IRqXZFmoaDBNYF","iW2slBhJhbE7bYuB0bX2","iWx1qFhWB0bKM8YMuqrK","iXNisVuKn5R2gJNT1nNn","iYAysYBUOjmtOhrVqisc","ia3j7Z9uXLRIgnqc3i5L","ibWUeZ9d85Tc7fdBx6hg","ibZg8sMG3tRWVjUMg3AX","ibzdNJtoAIpOuwJqKSaM","icvEtdgnruWwuzYR4US6","id5q8iRLOWalEQCnxdUa","idUA9lUzSMWzee2EJQYJ","idW7bV8kbl02Bs7kgDnx","ieiOHtrreD8ys016XHRo","iekhV16DssH6oZIYEjAN","if3sjzdVn0iLhEva6ucV","ifbVHUqrhyns429Xm66X","ifn4gWVi5jtrbNmgwOaz","igFqr9PfsaxkCtQTEEXA","ihW2yN1gemrIVrCFlWiY","ihsxnR94UK9luzQJUtLi","iiyUBNSuCOROkflTXfy0","ijqBZVOSGvMfxnEDbDyo","iktAcvifZlw028IBH6ub","ilPdxCLYHyNIS1AOyhiL","ilq2XlO328yzPfwQoVjS","imaWxdXSYhz8BT2qQhP5","imaX8ZtUKXkS7wIP221T","in5bPriLKBpvYa1mkUzR","ioTQSg2E2nCTtI5ATioB","iogZJKcelqOzFFlvR067","ipOtkXmAZYyA1udr2Ghe","irL2AhAbspTcwPJZexW2","irclsgNAS4LODwReUKhF","itM0gNLohh4IopQprYPd","iuTdLyzfDYY73WYRGbkn","iuerHqG7ToQvZDaeifZO","iufWWKTu7jdtCB6BsZlm","iuvtnadLUyV3u7QRQFV2","ivBvalNsto4iUMfUDpwa","iwE5edrPNLjZ2cDxdYPa","iwloyY1Pxo4ppkWVtZOY","iwnQXsw8MIcgSU4T85Rl","ixk9KmPxeBTgHveadoYV","iy85aFlqROTR0VT3c9EB","iyaiK5S9zUiaOLmZ16bi","iz4KmpEuS4dnOQB82MU1","izYspRyiswvPMXW8dprr","izfHxZLb419Ld8yGOBQN","j0guO4KhXhk1HaOPfl1y","j2KOZtbX5z27FJwxe4tZ","j2MyAQX0pQrn3JlEuTJb","j3B0vQdD868rhTzCGBiK","j43TQfRdKNwQ1JxE2YMm","j682xArLL9aPieGd2w0F","j6ALNxdwWen2dbJ3IQes","j6C36g1nT94jcpC4xZeV","j6coAeqD7wL02fGGDk5H","j6nJIBAsfpHgpyum8MyD","j7VX80RkT74cam5nZzEi","j7YP8uzBy0hzsWU4Bwum","j7eEHxQtyl7r55y2aOvi","j8HmDbWR6QCgtIzZjtcP","j8JbH62JJIdG4HmYfJcJ","j9RUqeLjf2o3S9IDcGLT","jALweGRz7x0hbEQeJEk9","jAkEEecWqG98yIttpMc0","jAzCg3KKQxiRT9s9neJ7","jBAwmg39AgyJJGHa5DBY","jBqyDZcJQgREty8IarAM","jCuDhkBJyOkpNO7Oc8Jf","jDGDpz0eUieUOskvip97","jDt5V7009eZHkCgiDLGQ","jE7ApTBASR2YnZ8xZFmZ","jEBsOZ8B9nOKBt07FgbH","jEldCFcIiTIXKc85wXXn","jEoIUgnI8502fLxN6W5K","jEyE4vilfdeUbAFWGCpW","jFBpx7yB3bdy4iZhOqy3","jFQNErNQUHS6eSat51JK","jFkVEluJQ5t42tc9sNby","jFzHImcReU9E8QnexAwf","jG47X2gtqREoNfJjbdGh","jGOUnChEGVVD5HtpaqQW","jGpp7TZTKsde4hHHvREp","jH7IggC9mqKkdUCJ7WTH","jHZZleByYw80r30tDLHe","jI2pLHGiFFCLBZW9xawa","jIKsSK4hrPSFlaet8NK6","jJ9aWEcjpf6rGnssZ7um","jJnGwwaJFwI5xcpu2ZWj","jJx8tOk2uETy9stgdefg","jLBBbHRVivIFBNUsL7qv","jLasAfXLr0BdC9vLC0Zn","jMR9KHlYWxHZrEK4Nzuy","jMvOJiTWqkcz4woQ3nl6","jOAJdy0BOg7vTW5tMOhT","jPDCwTXOVRvwF299hdVB","jPjMGt5rHjFw5wId1azE","jQGICtm8jXVWA85K4UuF","jRIBafoFKidqwzIao3JI","jRkTBfY1aaUgao9tnSx2","jS1yjSVSWsuQN5qr5rb2","jTOgZLvbT18PgTHytztN","jTmD11gQB6tGbfqTAmSZ","jTnpd2SxJ8xaQ7yuplJK","jTvxNl7VZJosOTbj3ks1","jTxjGQ47pODs0V7QogEG","jWvB2ZDhGH63QdczqUyG","jYAbJaTVwoEuYtUtO2ac","jYSmEWJf4KYTaiTrqyuk","jYk8FTqyAyVh2raQCYVh","jYtcpbOdu4uFmTGDbQSl","jZQiHDyEoOc4ytKOr122","jbUWb5ZRdmpcjFVXr8b5","jc3BnCiIOoDgE6wJatu1","jcMSmjE0yv8y5TJ3f8e4","jcbzo3HDLBYy8btKGGQx","jes2l2eg1nygfweaRfTE","jf4O3hPt44zjIFRCFBdX","jiIGmt9cL1eyBcs40Tbp","jie6Z1LBH4mRUCVeV4jV","jj9jEfZAPz1UGxq1tshJ","jjeXhKOJsJ8y487Gzod2","jk4DsK6FIRTl2jEbmWwJ","jkMzE7YLDX0B6sACfGc9","jlEizgERGyyQ9JCABtEL","jmSX0eFk2GvknwkPCsDX","jnS5pQxnYKKKfdrjTpQ2","jnyA6WmOgx6EcxXjG9Vx","joiNLqIIrCTLkPSrc0bp","jooSSRl2DA0HAH241BRZ","jr5VTBJkAXjxIszglGc0","jr7pC38qfhetDuBDjLuR","jrmr6n8KtMUuKBEsDJBJ","jtPOGz2HPf8rFr8cXuJQ","jtVGazXCtc3m4HyhSPfI","jtXi0zNwHBh2GK2QIHdK","jvMx4xcg4gVnMLKEsbtA","jw4DLkyGTYdZzN65j4it","jwPCvJl5o31ivUqbWsvl","jwqRbD8pSPXGDfWwbjRf","jx7DNWBF3lzjhCDyeu3q","jxcF3M2g8SFHWkvSVBFQ","jxovSoM6tpJ6SBxQC4PJ","jy1Qkule5XCCEmT4T8hw","jy2uYd7SY6SO8kh7GQrp","jy6GusEMlJ8H88PeFyrZ","jyz6G3MzxGnjC2FtdvJV","jz02NYWL8H4GI1ifSZiR","jz995zJ9PWkeoVsafXEo","jzEyYFmCkGSwlNo93auK","jzJ7FL55bNo30DH5oq9Z","jzW04GYzh6NBWncwwm0Q","k0nLdC36dFqKKKQvjqSX","k0u9Gg883uIJRW97sDTr","k1YKDRj6U1rKkAVhqSCV","k1les9BROmt827ISh9wx","k2ivQZGtmIYCqAyEr2gi","k2oi5q2r1IuH5HtFSFXd","k3EFaivtyYPrrMFRhqei","k4ACHqZGfdzYZOKXtGc9","k4bTmbQEfKeKwnxB9XfF","k4kC1mLjYfQuloYE0b6L","k6PEVL9oN4z0MQWCJfDg","k6gln8atkrWkN9JsSyRf","k7AraSiHHXrY5ga8u7D4","k7Fw3uDP4gXrsEBitdtA","k7uhTLtB7fBJlDqiP4Hu","k9Ay5yiUF8by4I552JG6","k9NmGmwq8BdfHpt5IMz4","kAENyzvq0INwBu7JAqQB","kAGMQQ9oodkBB6nDTBda","kAkK4gI99mHqpsbfQaHt","kAyKLdRjbmuVQelD6Fia","kCPAp3HWwanezZokDsOW","kCXWi2vASqO9KjkTpFcz","kD0Bs25HMVhp0c4XlVon","kDGDzsdu7aj21ug5VM9i","kDN00dOaLfltHNspsvMc","kEH7LLV3MzOa6hkc4qs4","kEQ2fGenWc0bXduM7r0o","kEdjdKMiRHc1dVnmBLcG","kEkx9Bm06E65itAUksXJ","kF4x6efGcX9gWxwEeCBc","kF70yo2JjY0aob062vVo","kFJdLfXPkcjX22Bo0ZUo","kFLprOtRWC38WYCxaV6z","kFSu5P2Mu0851nqlaeY3","kG78sYasktlQPZPgFVX9","kJKlG6NVD4jIbVvK6KT2","kJWjDZEv0wNU7p1doDQj","kKkTnm8PhhwjeIXCkh4b","kL3YQA3ifhZIRWMSHjLi","kLlNO6bg77SABuNRVSHp","kM8IH6vdoxxMihAq9TJo","kMzq5dZGFiXc3qbx5uBx","kN1DAq0kKgw45rbSWv8u","kNL3iGiWn3ZzXAAZgPnE","kNlWTUhDbIpIhCQqvMvd","kPK495HdArh4wiI16kmm","kQ4jWK2OPkYeLUZes7Dc","kQ5tYlOAICu3cftfCHgi","kQGHk5SJH95BFXvhaTEs","kQWuRV0ikKPEgKM0CfLf","kQeZPb8VU1ehElplpNTJ","kRFzovV8Jgmcy2SOoSqt","kSsMegkTG5s55hxlKY9q","kTCnr8xpUJs5hO8GwQyg","kVpQvf8CZgaiHf04bDK4","kX604JDqgNYeDAUXhMpN","kYcsaIaG33eyDdWGd5Fx","kadh93Yib9RY5p6swSPD","kahN1NAjPN5BR7W7pGJ7","kbJ9viz6EHZh6whiMWmW","kbPEWkpmzBZiNDRxaNQr","kbbLEUmH4Ml6vXacfPHJ","kbwT5OZ00zbWz8XZzd5c","kc7EBaBZ6hEXpjLVtHeX","kcUMMYyC7JXE81GrtZT4","kcZl63gF0qx24biQwhGI","kctk0tNhcYxnvLfIoayy","kd4vKYzLve4hLx8OZk3B","kd6FpGX38Dzk7IEG2ENO","kd6MCxrP5b08fkSCq215","kdu3MYRaic9rcuBT1aTR","keDUwKOEeiWq9QtoXcel","kePn7llKvKC3cAYQ723N","kfzofuKnchqDIIbDf1to","kgC7UyJziyNwkc9Osnfz","khXARB6BVm5GfOCOuoQz","ki5AnkJzVhPvzXc48rn2","kiZP37hNLWqukdNdFgM7","kip0FCigFV0nNRj4UmqQ","kkBOqXeL1BCXnGVLeLnR","kkThMavqb8GvVtIsvzaw","kkaFY8tlXM2qJSVVTTVL","klDy1L8tDlSLTsl0v2bo","kn3f2CU202WfqKg7BL0w","knCa4dNltXoNrenA9yXY","koAtp4lJVFzmI3MtKMoW","kphnaTmKBfzbhSf43R8r","kpvSSTKOwpvaaHX7qKQE","kqQEtJJ2CdaZ7MfqPs8y","kqTl4EZkdNnaU0QFgD0O","krDozqn5YTcUMgH0bvWh","krEcuCxEM4UbJjlrTc8R","krGy8CWH6aJ7zvvaetA1","krMTnUeHdE4CsTLvxn1j","krMUFTro5tGaekawmvVd","krRwjruJ033ukxJuFTz7","krdJO0UE68WcSv4gLdw3","krfM0PnJfmuREPYcMXOp","ksAVKIstq9f38CVrG5dv","ksi3a7zginaJi02S4OJt","kskMtV08EuAkMq4S6FRg","kt2yfGy3DXACm5wknxmR","ku1EkLXxTT7o2SpNYdgw","kuVgBXaQwTQANuzIgen3","kujzAbsJQL5LEI8pkqxe","kuqZQQctwogNJc34qZLR","kvJT6SCmUUkIpjmVLd2X","kvudwZyfkguSeMDvwKrf","kw5mh5qf2r30VCEvr1EZ","kwEclklyo7LXX6orpxJs","kwv2vkdtfffEw7QfOddZ","kxNJHhROJx5EOpe2Bd8M","kylCVZWFx8N74y54D4fU","kzRCoyZ7H93VngtLSyEc","l0oGVqPTSIiGq5qqr3bA","l1U9naVFugY0yMrsSlw9","l1s0S1Mtz6Gu1JEMaN04","l20Cv4WII3bJ9FdDU7N2","l248dJWqZJggfBEXiHUy","l26EyhiQhnXBLhuvOohf","l2FMYMex419e3DV2By3f","l2jnrRFdMyGpqXHXAK3E","l2ratOImOeVjNDekRQqX","l2uzps3WwICzSr0N8acO","l35CPdak8zLIORbIuiJH","l3DII1Fi3H3b22WGRisW","l40RwRXQ5QLWrd7pPUKk","l47pgg49ybJJIEt4h9rS","l4DSypE3CsBoHKdrhkjk","l4HLLbvewXvpEPawZSR8","l4LPgMsfKH3DdAyu3ggT","l6AnXipNpCbOnL5rPftc","l6V92tl9XyTaPFEEB4Qe","l8R0Pv3ZywgqWGted6uq","lC0nGLk9UPlgI1JYQvvt","lCEnUfjsqJeYUof1TMuZ","lCJHWGNWwCyA7bDEZCkD","lD03bLrYWPucSNuzWbYA","lD2IQaS1ngtkhu06dZPI","lDYLL2JHk6244r6Z59lm","lDdnWYYizB0cez6z0j2p","lE2Q0SNyOzGHzqM1ZdXK","lE4gG1xA5WYhuJsLArCu","lGA41cUR91YXVD4YLK56","lGQwsDPTmgHUYfmOFcJy","lGtlTz1gv30xF8rPeDc9","lI1p8MtIvF4e8mUg6HKe","lJM8t3zonjM7sHG2OIZC","lJNT0rh3k7GY5xZHC4Gt","lJohgwqrOUxtCz9AWnKK","lK3H4O9WVofOZiTpyZxG","lLJbHzS8IBHqqkpjlI7u","lMLOsPfrz5mop374VaXO","lNPtkH0Ndu7p02nPqI69","lNQoMcBNwRFooDKoMCG7","lNemUTRJEshdKdEOfTAO","lNvMziisYrKU3K4nZ8jO","lNvsMxk6KxWLjE3db1BL","lPc46mriWWvEo2vd9ASz","lPd8MrRtWnGU10XJYl7p","lQQhcaxuj5vlSrhvaUZ5","lQxduZPkBhWqcxvU7VLh","lR9dczpHJcT8BxFZiuNY","lRbT6TXOVfeQwRbDe0RQ","lRejpQgHwl7gGX4xH0Es","lSPP4ypu3eW35UzBzWxV","lSjCHgEZS2gJcoou8P3A","lSnVGu5Dh7cODa9PX1EL","lTAuYQOiMcp7Is8FHbvW","lTTpRbScxmqqz1TqVfqe","lTaClYeLchgJEquNCfVm","lUVaXuGGoCsbMLBHEzzH","lUWCnSj9O9f31cTd8WUR","lVCmDvp0tEAaPWRyzGCx","lW7mWrW9faLUFHnHGUu9","lWCfthV0CrYEX2XAQib6","lWCiM6rgA2K20VLpEHPa","lWgjUEF2RzQqWhwz4SWy","lXvvrDtF8jnFQVgs6k9d","lY1mKqr4JV7yQZATpGNz","lYelFKZSa2hDRnyeHAkb","lZfgc7nKhkW0KRpgJQbz","laFH5znUtlvRe8yEhAfP","laLVLDuCpJ8beDsFLwdU","lb1ygKLLpqSnNO94lhhP","lbt974GT6FuvksnCzMJb","leKCrsWH8oomVgS3OHNp","leVVhrEP2U3C5qmhNn8t","lf4RqK5tJAaBG5vOD8NW","lfDVAwXc4TEt3Fq2B3Ew","lfG6RuzYsOkNnXVGH6Wl","lfmjnKveYwVRix76SRuN","lg2vsLonBQtkyd30bF3q","lhuAm6Jl4RnF4Xy7xl2N","liHwSiiltYw9Pebfpm6B","liKeKfnyTu0nM7Vs4IAc","licskCucZZbzEnbmwchJ","liiQs5EhCf3WrGIqPTif","lisuxgkrKyU37hXn3RmK","lj6RFHMtMrqDjxjfHdNq","ljPtqAw5Kjl6faWCjVOF","ljbzp8MKDvaee53yavuw","ljlcPhdkrNuySQAX0DkK","lkxr8D3mQoLv7TyYuSkZ","llCKP98VsR3oFP288CKp","llQCOXn9NCctM5r3R6KN","llf0JmCBROZvIbJ02jYn","llqBxFXCLMIufV7bYFav","llznoOHx8MQQFm7IknZv","lmBh4Nu7lz4F6x7c7mgM","lmhgWEb5IamBgjYB9vcn","lmlcKPL2zZoILjK0ZP7N","lnNfeYuuTACM7QjNh7wh","lnTVhL2M8u2jiH65Xns9","loPmIhZKroIYyZbVXFVl","lokK5JRM43Zzqlxa9QRc","lpeUOrPRwMM4Y5T18L5C","lpt1RlED5qDKmS6AehWH","lq5nbWJhjDi0DPcfw38X","lqJh15xXA7q5P5Yiev0S","lqqm3x8KHpWyU9ibTTMX","lr4N0UANc728cyXv3zTx","lsPIbGz1M7PvmlefQvFL","lsRMSQ2qSUVC2sIWNhbb","lsmn6QHaFM3vzOYpYYcb","ltMICICiYAIgT2yHL47F","lut1ZBHPraGuhs1wM5wT","lwcU9texGj1npAxce1x0","lwcoET9MzTFMkns0ENab","lwlnJeQoiOvRLKU9r38g","lx8M8kdkZF5biK0bGVim","lxHALrFO68pJsabpGFqq","lxcj5nSo3WZGXUZf2Y7z","lxo0qfX9NLFdqSR8747I","ly9mQa757SWFpoI6soZ9","lzxweombcEHkI7UYMg8I","m1U9TKPM3h73KjjylPmR","m2CpFdMnRcPBtVAgkSUb","m378ER31MmyqlEoXxW6Q","m4Gtq0KSlROBvrGiHfdL","m4Z5yfBwlEYCy4HNt0Zz","m4eQfbWLKwFjCIvLjCXT","m4raIgGreGAHu0uC6F4u","m5xpvL1ikYbAsqnQKJdj","m620Ex7f8OKyrl9unrXq","m6OnLIh8Mg2igbnn4Ara","m6axTlfv41QSnri8SxtP","m7Bv24EaCDgcoSiD17gV","m8A7OZyiNpbJohTqWLx0","m8ZUbyqw6xNtwJNPrQZ8","mAxWlUz7LMxlDniatGMJ","mBnbIDqK5sDXR1p8ufy2","mDiiKFlcvwyV0L9P6lTY","mDo9kyqOT61Y23QlzDml","mEAa3Ih4MYpAjiwj6KUT","mEOPA0WjxZGevQYiWy9B","mFX0DroTJK73GXp4luNB","mGawyIIdU9uDe5i0zo2e","mH5l63iZeM6awFQR1oyp","mIMLJG4xA3X1GecpjRk4","mJRXPS97YxAb8uYA4Qw6","mKXYYbt2pqms43qJJ5FY","mLcXA8GYZ8kTQvGnouNI","mLhX4TYtJwl5wgIfEMec","mMKZTMjYB4dVnHixdI9m","mN1pfpU4qkAfGFDIDuRL","mOJxXNQg7ZmiNLimj9UM","mPZ7gTGlSsLdy6ME1uAd","mPcSgLqu2n78ohwUWSjd","mQkL3o6bRaJZFwYyDDcI","mSeIESPOD49FbquU6ZPu","mT4IUD5D4tzgI5rAVuTg","mUHjIire5kd78o8dxGpg","mUkrT5LoGbT5HIHq7r6G","mVv3EcUp6LWMnbX3cSHM","mVvEBAiFbYqyKA8n67V9","mWykhEjzXICMo1WMMs1T","mX06VQUkyR0UZsZyd9os","mXUuh6PNC7ssiiNefErU","mYOEZtgtrSYaEny5MpNN","mYUCI5jYWfeDlq2scPKk","maLUEXRjKbvfdndJtqjp","maQ9MJjpX1XEap9YpTgP","mbfTLz7Nwm55h6INWUkL","mct9q3KVlzEDOWpZNA9a","mdR6ynKK1ZFfOrVKjAZq","mhMagCkM0Y0Xb5VyMNzt","miEVHB1ybgYCo26MMOHf","miHckYcEmn5BNwgH1H2L","mkh2h9lU49jO3Ypr6rkG","mlDE88hHKzNqABnMzinE","mmCILmsIHTzxl4NGXZ45","mmH1Buag0SHlIAbzkQgn","mmIO8SjrnVEdeSXdRoeb","mmK7h3hdwdlyDTTN9T12","mmtKKRB9Y5Sw8QFgj7Gw","mnEqb7Li6mF3GdyexCZh","mns4c9raGI0uXGstNU4Q","mr1OTzu0bJ3GPNF1I1pA","mr5U9BcxgxbLnL2ig3Ep","mr80tS9ZgU4ZEzmmtJXv","mrJrcQwH0qU4ybjidQxS","mrwl9ZhNmWhd3wha4Zs8","ms5UPzBDiOOxx0KfrTk5","ms9iJKYctCW0fwlWNyV5","mt1yRU3i6YuwoN7H0U8I","mt839RhTREYUpVNGasKC","mtPzZ9RzysnnpmQmFUxS","mujdItOh8fJ9qnz7iOGn","mv2oGAfGKPiYe7olaHhX","mvPxXqjj30Ym0RzQOVx3","mvV247kh5uMLrDrJoffb","mvX1I7uqb4GBcboC6vqz","mwGYfUsCItWpwYRu1o2N","mwnul8WsKW34b86Sty95","mx0LiVP6uBVki9KGMfHi","myCbjly5jdhDqaJDrZgM","myIwSPBJyDF168EKqE3r","myh2RZGsoesGNYdW0iUe","mzycr2X1ptdOYO2DhYcC","n0WJBu3AfSv8dl1sFUsT","n0yyk93NVIGAB6crYhfv","n16NgaHWctFxoUTQPJGi","n302uSqClAKGv7LrKWmy","n38h3TOoYtjFhu8wiACY","n3DpOpYFwM2NWKM2Y4wg","n48XV6zbySWjp2GJApB9","n5fbI6d86D5HGZUjTZtB","n6DgszalpEv0cdrxr6ji","n6MHHQLE3ZeMmFtL0rN5","n6QjBFpsxScOjUaNxHaR","n7I2ugj8OwT3vXXQO2aL","n8FMPbopERwc6Qt61nHo","n8Sa4r1qlNaJqrVfZXs6","n9d8IPYH2501Gin5ib0Y","n9stjgweLc4gSxWXVOV2","nAT5CWu7Km3m8w97XuSy","nBFUpxq5lhOXojFpqonT","nBRUlREzwyOzHiltuFYI","nC7nSQ8aM8dahAXpPXXH","nD9J3tYoLVEfT2l7VdtR","nDFVSafzrskotqeuGsDh","nDONcxQWSiXsSXRzAZ81","nDaHIbIISsijhdofKgBn","nF5RcmAmfkzU0ZTbfkcX","nGFAlehAW1hyWV2AuHDh","nHPK2bPFWbkEfqvK8WEa","nI6VVWN012Mjz7lQwwsz","nIbGokYQKprZVTxrbtnv","nIx2k5YtYp9DBS4EkzcD","nK6cFFZmnKFUw1R5ltvS","nKIdZl3y59fY3di3aoy0","nKbauUh4lXyVP1fKTqBV","nLsSKVQwXap05F3N8VaT","nMsj5kS0NGbmSUUE98VL","nNtftmssKZScbKlpM4L9","nNxiacOn4RrwVuCKbK1u","nPL5i6sI35ZOY7zQUmw2","nQ4DwQEypgYOpWusDivS","nQEKqUOM4jMeNLzIIDpB","nQnNhX1GQJHCSEU6aAHE","nSdIC8C1HQV99a3PugtW","nSyy3q3Pi0VmJEDaPjGG","nU23zBdsY84gaj5FcbWo","nUDPc5TKTRoF8qkfTPiY","nW6GjhkFpCFTh0Sr2Gle","nWIWLY5NcyNwtdADHWA3","nXBNsnUSYk7tKAnqSfMO","nXHeI2ZhV398iuBmHLhy","nYBQkQTpbnPzrhGjncFo","nYLviq9YdD37vRy3ZxtP","nZ1KWG6lBOxd1brsr33b","nZG55bZ9PulWPfiyrDEU","nZLt0lUCmt3jJp84wvWy","nZbbzw8d1gNENbpDiLKx","nZuhpEdFzwX8aztEKpLI","nZyZNYCPQXqjR5t676yk","naXYNlCxYcmHzxncmsMj","nakVH1WRVWaJT4MZRnFe","nb9clBrZfblkkLj4Exz5","nbfnw0nYI3kMXjvwpnm0","nbk0NI0B7LcsznN56FhG","nbrJzB6ZKfelwlS1wI6H","ncdDZMHS1zDM6TYRXs7M","nelbUK0fqmYNPzNjii14","netWlDxkqOu4JSi9sHE3","nfh9jU3sT0GIYGunsjZG","ngIAc9qIqjRHkcmqZcaL","ngjr5UUzwPj6IzM0babt","ngorLfH175EoyCYWcpun","nh3KftlppJ2vARAD0hSh","nhhPHOCfkJlLmhUwV9KK","ni02n4HZVz7vzr1hN1G3","niICIBbFcghCGc3QQ1zi","niSjDoY1meOcFowspiE5","niTkt29rRrHFJBfyyUrz","nj2WtoYa5G2gm8dSDYDF","njv9LHJlquoAz5fB8A7v","nlMFkiciQm9Aw5lHLUDD","nnOJ7eJ9QQVAN93OG274","nnRgI0lkWLakxlQSZZg4","noAoNBRdYU4kOh2D9iIv","npEW6YiTn3o7aOhcBOZl","npmdlILmzGPpZ8CrlAMn","npt9P8auwnEnJyUEUf3U","nqQQPV8hvsYuoaQODiyR","nrdK08UwN7P1rUTvoRQH","nsuNjEnfqgKOmSNEWmW0","nt0HpqkrjHn78tjeTtGa","ntZtCk847vqoDjIi0J5g","ntmt15ZKZd93Cfnaznpz","nv1ezQyznWYDbpeVadUN","nvRKpoO6xFtmGoCdiEnP","nxHEVj2wK3Ce2mMc5cVs","nxUom0bz3736HFHFqInI","nxtNh320UPdsaGGQZMNX","nxyv2AOS3Z67lExAB6tf","ny7ttzBNUUniUciPARWq","nyIuMWpnJfjiAfkJ9WyC","nzFd3hS9r3ml9nyRFWVq","nzI9o8pL804E2jmObtuz","nzRu6Lmr6fTKtVN4cyoi","nzZmcTqri0uwNutD5MJr","o0r2u09O13dh9XwmGxst","o1WxgMMKDYtUMn276Zz0","o1qG4cxNvgGYq7E4BK5w","o2LM3jTYoZqOejzBYzdR","o2VC6Qp7P6Cg9ggXEl4n","o2VSXRhzHUC3t3Km4TOC","o30lDHyaYTLfJ4pBfkEu","o394WEmf2Q32TX1zcV2L","o3E1JThqOpn07XMtI9us","o4TkutcO9hwVquF3VtPn","o4p2TWIiGv09MvyFHdyg","o5ObzHRr86jeZvRHqExH","o5jcHID5KYLpP7YETkAx","o5pZf2d0NGfZ7k0IrjBS","o6DFKYgKetzDVlUYlR4w","o6ybDODrlQesSJeZtaNA","o745RLpIfqhF7t5I3uMn","o7BDwyQ5dyejuCOYU6N1","o7LiaZk2YJ4ffD48D077","o8aGaHw1M807aF6A9453","o9IvcWsYVVXrRvtQgmQW","oA6xvZiYfdKvw5prargk","oAOH1WR1JYW8Zo0fkCH4","oAoH89NLQsvlrMFtMP1N","oAzu6xrNXR9rlixwF2xL","oB73sAhZFe5N5LW4KqyX","oBrZrFGYox5VC2udaJO0","oC69FNEjoVPQVOQwhVWe","oCSSzxP5fvsw3HxQM2YX","oCaEN8GPQfLaw5bDOUEq","oDoZhByrcXj50Cn5IZVb","oDub2Seac90GUXYyq5nQ","oGGQBCkGHzBQusDLjyv2","oGLiTO0EwFFkJBIyV60i","oGPQlLei5e822QI0eEH1","oGRbW2tcir6poaKL3aUh","oGsZeSfU8NPfFoQyIfI7","oJ0U1ZekH70gaYYCQPZ7","oJ6hIK3xfrWK0OEuGCoR","oK4ASbhIRlY1FPC96MPj","oKXGaFTQjMJ5wR3LvxLJ","oM50UK5Xm03HXXXm0a7X","oMnZTUu7i7EgQyauC36H","oNV3lzlQopFoSbuUtkcT","oO8VqfbPCu2z2f3JiFbS","oPISHRMiqLZNEfUuyPEk","oPNxLcc3G6hVZ0RH1qTS","oPxQj7UkE9188KhnI7YD","oQSGHR4UCa0CB3AWiRW7","oQeTn8TMpr9ghhviLvAE","oQyO58KAoX3jEzmi05Tr","oRFd1KuDFkBdW6WVz5DZ","oRKoAiTJUEIanDT4vBlY","oRkVca2xEj3MJW1BONti","oRt7W9T7tJfsYaOcVGuO","oS7eHoJXHF2k9b5jkDsV","oSBehe1cuDlO8r5jRfhc","oTCDyqflP42jnEve6l4f","oTIoMCPUQw4OC2UaHLWI","oTvdhyQMZSnVNZBWRqGj","oUPIrjpoqB3024Pb45cm","oUcnCpX3aqpyiRGQ9D5l","oVEeliT6oPhU4oo1vxaf","oVndBxBavK9p6AsnD73D","oWpVpBeICy7Rvrygbx3V","oWy54KmrVuAprX9I5AXl","oXK6kOUqcURg0wg3MAz2","oXaT0PtHABiiTzNOACoD","oZMD0LQ3JBDAMnQdJu6U","oZZ40Un26IBrTSHlcSiA","oasgJZF1bXJ0VbppCPWb","obFZgOS0hExy9gWJZse8","obSS9IrTWWhuE1WvKmmp","obT116UHUruTkDkqyHBw","obWsWlZibTdD0n5e9wPr","obkDeU51XGfKTaChGhgl","oceT6nvKpw4beB0xQvsQ","od70DRnEUmcOTRCkkk0S","odIy38vFDYa5wF6HijzH","odcHSwrQLxMCI4keBm6M","oeX4geWRrXmWTnA1KxoV","oeuK9xwoX34cfYNDnVVI","offhVw4ps23TVrtJYSs8","ogazC58RW9DLgekWBusx","ohf3VQP96v9x7TbhPJ21","ohxttdXwVv3ysHscZCsj","oiLujdYVNtH3XhlbZ9mw","oiod0ELN0svpx79GB9z1","oj6bKDSuHKbNumNmpfW1","ojxqFND4Ni7TnTLis4iI","ok1YDlcNmqOBj0eitrT8","okjA5U3wQL8ImgVlL88j","olCcLIjTee7jVGX8F6g4","on3E0dVhho36EoiQy6jn","on7vpSdRIXyATOZTiHVy","ooz96eQ4E54KMwyKb1Ze","opfYYcjEvDlOrzOYVG5G","orZWwkYSNlZA4dw8Mzph","ormXrC34yTByY8YHMxId","osGU2ZYQA5mznvasGBgd","osq2SMVuSS3x5WIFZI4b","ostT50l6A3B5sP79Bcfr","otBo9rqcS44Zw840GJMJ","otZtJo2IcKqMat2AV9Q3","ouFHEGYKQ8vxVIWVqtfH","ouV9cebhH2t5L5e7JnZ0","ovArQLX7R18vwZsycZhp","ow0vksCQE5uMUsDvSpSP","owXPgxdWdcw4sJSqZeHh","ox9VKGsjkK2eWRd4mHr1","oxX9fCtPH1pFVyBXxzr4","oxXLL2NCQokwjeYGNhsK","oy5fRloLF72Z4RdLgpIU","ozHmZtIOtY4qos4kPIQ6","ozMMFUB4Ync1vgnjJYJO","ozRYw3GNS9cZJ9Ys2bAw","p1GW7SOrftG9BsGY85Qh","p1NWo1AZJzjd9uaQATLV","p2VR0GlKzE2zoS6NQ9t3","p3aHyau0RJYMVIlA5ZPe","p40y57oO7XS30HoVfiI9","p4fyE356fmE51MI2KTGS","p4llCpctUkRpZtzrxmwT","p50YtCA6zJPuIZAQmGdt","p62U19YFVLQiyTWkMhCO","p7SIu6xazHyjjtOFzHAr","p86orjMgzX5bP1KE6NuZ","p8XF3hUTcBJzow7B7gz3","p9Xaej35PrkKH5ToxX5Q","pAXNoInEMPA1otqvkPPR","pB965oI3sVzgMVvzzgm9","pBNfIhFsESx1oGMolBRB","pBWWoRRgH68GrmJ1I3e0","pC54dZYF5xRkPooJvGZY","pCZQ90PhCfZj0SCmikNW","pDdON6ye16xC0Ie0NM4C","pEbRvrug8uH9P1w6qBnY","pEwMvFsuj8M3RMXMlmlR","pFXP2WEJ8MAcug0LSeSL","pG1gX35yYJIInAY0wdVV","pGEUBFQVq0jXTUXTIb4c","pHKEkPWfksxKN1vG6efi","pHcQm1fg8Do9NpzbKiB5","pHfY7mvaDluqNDhZ8ec4","pICyVcFQ7w1aeumcITKC","pIKOuCmmPiBjX7oNvMdG","pINZmy8sNKjS2qS4SAeK","pJjtIsYGoljuWh8nryhk","pK2IcS5ZbZgZe8E1L8pV","pKA5jUlfd7OmNs6un9LF","pKJoHTg0Kvd6WBuN6Eb0","pKzP62BKWLnvRvu7X1JC","pL9nHwGNQRgMWmB1FUjG","pLLDxORyy51Slvyj29cC","pM2m5faCqrslGKzSfLni","pMLvm40jhc56RxXbJlVP","pMO2Mr7AsQSXRvAM0MxK","pMhqzolX1UKW3iIllCu2","pMyyPmqEmKDi16fvjVws","pNHOEGko3lLhsvefOyBB","pOlA5qcVaa0LaMGXE60o","pPiVZnEEKnoLXAaMoxyo","pQ8HeMfDS4OW2PFiGqE5","pRggRPJYDRrWediXw4gv","pSCHbxxvHjbItoYFMzuN","pSLockvRb88ieEPWuBQf","pShm9aBNvg4PIQTKuFAk","pSvnbIiBaKyv8qaPn5M3","pTVupE2SAyqzSE5cWZDP","pTnfVKfMpPwpFTxwn6UZ","pU51jKijxaReNKghDfvV","pVoU8Z2UVbRqA26Ezvnf","pW5oyeosUC8BLCyx9AQP","pWSZIwSNgMsvx7CRZQee","pX4Yq4fFvg7a1T2KhPXJ","pXGRHQz9XrDBgRhSHjnJ","pXNkHt94E8Q2e6q33d9N","pXoEtQUXdh2UdhqddqmY","pYOVzsG8Svu1Z5HDxBMk","pYXLIenLy6yEbISueDJz","pZ6B1EOb9AWAHPQ7pfGV","pZBN37J46ARBrX0YtGtL","pZbcr8yvejLQRS14wcog","pZmjTDSubhCepCtK3tsV","pZqU9vak3jW4AraRMhqe","pa2IfLFsR16PDn17zWQr","pbICv6Dimh2Z4JPek0zt","pbUDwAYXBf9bi3uRjWK2","pbYpTraJD6EUbNu8ApbD","pcCQW5UfUSozSQAneajh","pctC2sqliZ86nxElIjed","pd7erih22WYHb99mNTYg","pdAmkHhGEQ3CidjS9CSG","pdfAXsMTYFtYs8bUxuYQ","pdwpoGTQOqpQpRNmziUb","peb5QSUzP47fRQ7hREkU","pfcoQUr327lX49dNgKAH","pgkKc3vRVJY5QQXGbCeE","phzeQLbbGqqJihfRRZLC","piSmwnFWkQkLdS9QfXCc","pjBJPsySeHYCUJs1uBYJ","pjHt3rPegun5Ar6liD1W","pjXcDqOyaMhMXduzjTzr","pkZX9XG4c4v2ajabuOJo","plvueBoH7wVJQ7hnDGK3","pmxq7DteZ1kMgvltVz1Z","pnQa75iQNKNwxsiX5b7F","poNmZMB1gGPVwhHpnNir","poR94XHC3hAKRJeXHLeI","poqr3VdRPGciCaZw0gTz","potlbxUQGbu1UKJVHqrV","pp5zxyYkJQa7Q58gVfS5","pp6gDEGwmObBrrsK1zf6","ppFCBlkHHF38FNkmoQEx","pqWG6a4aAbeDfLISBoH7","prnLFNsapQWnDJbIP2Po","ps7GjT7U3sVgQnIn7LHI","psEceIbkL7KTfGKjWpxh","psv9zCgElFjhaz44DTlb","ptAHR1cTESDnImGOU6cb","ptCMQnhQk4kFLfufj6oY","puRpTtXkS7qGT1CNXS8h","puVn1QOi9UCEnBeE1pJe","puXQALaY76W2qsZqIF2R","pvpEVtEgTh9laSNKQ10k","pwUwONY8fj1GibwZKWBX","pwa0lEDmLRZoZiFNLN80","pxeCtNQLzdbDJ6UDv1th","q0Zlt7rtdfGrJ6kw38so","q2oDpoPuTdnODXswQefx","q3KXz2kYJzwDMSbGUTdV","q54JuH9YzbWtJz0sPSKT","q6DKEaNmADefKqc8yojZ","q6NdGHfV65RWDprrPatV","q6TRCXgiVNOQz9uPXtmk","q6nfA2H4e8kfDCF5pRAj","q72rvKTVEzjt5Rg66m26","q73nfxtxHDKOvvHW3Twf","q7QhSM7KCdamKqVMJ2u7","q8gw31JsYA4qq5obcSKZ","q9auISoxsklEumDawiy2","qAJiAjssQ1WqxYyFfZEB","qAXkadSleDZQkp58s9qV","qAkZsTMBfenj0yVPRUjo","qBauS5ta21of2WiZRBzY","qCD1tku1GG3Rm3LrX4aF","qDYuYdgsEqPqNL5rhjyz","qDttTh0LgUSsMUnyXysQ","qFhiMYokk4novKyjjEPJ","qGInhyArtiOOULpCEagl","qH60LpX8D5TO1XTqUQ98","qHRIv5NF1SG0IM0VZoNv","qIGJRulwuOS2VE3KaJWr","qIxUImVWeRLOFEtZdHpq","qJaqiIlsJzxk76QfgGNr","qKEGFy96lixMOdNS2akA","qLPfesdP5Asueb3pUdw1","qLuyBjWidwHyr6Bk4f5h","qMIIoLYoUVsQrv9uWrIp","qMggaGxnMxhXEuU2wBzy","qMiJyvJRleaztJ1sV3By","qN7J2S4EFOI4XTx2NBwl","qONKwhKN7p8Fm27nE7bR","qOft7rJOz83d91JwxOtg","qOlR0CZEJTFLZFveGefW","qOt8t7zeby6upaDxsTcM","qQ4wKTUQC2k2acUTQUSf","qRgABT0Ehf74xwnyNLVj","qSW2VfPyZNoP5QZ4xIGY","qSaNKGqqwosIEAp0CWpK","qScR3QyctGHt1b9Gs4iF","qTRCNCcdPJcSv2EOj2wW","qTWpXcXz2yxVCciShJmU","qTnH9Gcrwd8d51qbeZh4","qVXsi2Vgdli8rt7ArUrf","qWk7QEnxOhCmQDj2gxRW","qXFz4KYRQ1MSQLFepVPt","qXPf3WgIxhfsuPuIwkCs","qXiNB297oZbVrjGRk8HV","qYd2LTUS172vKTJlFuNG","qZqxG8CgV0v5L1i1T1M9","qaZcyoA4XqX6jbOWZI2i","qatjlgzVmB39wXfPG2AT","qbLdAObc54JkXaSM0Nik","qbwyPxKJciRvrJyX9yT7","qc1LkewUiVpbTA8DVLL4","qdnKQYbhJb5Hy7DmJmyQ","qeHCdSx361vTs8zcgHxu","qegepaG24U79biwjLZDL","qetWZZadyx8bZ26XyiqA","qf7MQkmup0RhlrYxoHDz","qfRJRY5iu0nDG12DIoMd","qgRY7mOgPGZNTwJZ1g6I","qhd4mWvNy9QGBIkQBEMc","qi3VJl3iFY1ETMY2mHuE","qiDYSCzxfHCJY1vok5bZ","qjgLWt4YOImfBm3yrqlQ","qjhnjfVmEEOCNa3hE3Iu","qkYimhof3DvlTHDFtCeb","qkmgIeAqPeNNo4moTcbe","ql5VFaYNRShSSBK1MM45","qlHcsIYtHQZxtEUJ30bm","qlccbxFA9QFJZJxUlv0l","qlyohDZpwgkBaPd1Fhew","qmIUa4BKyV6i3MaLCxd5","qmZ9tZnWtgwm1ytIHjyB","qnlpYu2FRUPcggNDc9tI","qnlqC2kOsDJxoydoSCze","qoGnqV85yOPu97ORnHkN","qqSzfHwVG5FfnCaJ5VwD","qrOMFSwFdkNmYWMKwhjH","qsGbsg2m0IUJMvjBoGUw","qsKnAddZVoPYt2RDbPVF","qsVLZoPsX4x6PBO98Uxd","qtK4mGz9N2bqTAmtSBer","qtRjKlkje55gW4sZGfJx","qtYe0Sivhlye07YFWUuu","qu7L9MZ3HKD3T3NQ3EWy","quREORyjKdV4RrXG9fb2","qub8t4TcuaV1lcgy6H6U","qvbTUneRVT7jkIOGun98","qw5vC2kHmVTc68apjaaD","qw9yCBbxzOSzKLL6g6fz","qwcchuNcJKuV05wBXCtV","qxWh6Z7yeqYE6nb4ZcHq","qz35cc48wWm6P1DHd9cH","qzOV1VEj48ZtOqIWNCVK","r0b1EP0q1i2np6h5depH","r0bDTNAUfQxrD9xPD9hl","r0eIbjj2qaQkcEexADCh","r18ksTOgCX9Xmd7RC8mZ","r19GpC0kN5o6iPa8eMdy","r1moIQ2VaAsQsZo2X1fl","r1w625ZtNUEcFUc8KNeF","r29SpeTQC0GvCYbOAxam","r37yRqNTHy4T6YQAaOxa","r4HlXbdj1t3ohsI8MYoh","r4ahnhkPYXWjlx75cePD","r4rZ1AHhBHBRfZaF8oEi","r5yzhkE5Neda0OvvkvOJ","r60aPjezRx2G1iQV5SN4","r6lkYjAvym9FZdrXeN3K","r7KsDavazTJglW0P86F7","r7YBRZzhXwxjQRy9V8Gr","r8SCpGvoesjblkjPAASm","r8VncQAqdvqgzMN6PFB9","r8fiFUCkUfhD1HTkDbJw","r8ucWES9kob3IZGVWEeV","r9IFN2wzDdN4WOZhcBlx","r9SgL0JDPNYSoxthLV0L","rA0GtIX5pD9zHXwy9flo","rAam2JmE1fzvK7WR94gv","rAfcTujbVjaL0FEEKBLz","rAiBLdlqtI7DrSPbFH6j","rAoDYCwlJ7bBM4k4mLMM","rBBzyN5Wvu6V9uM56Ad4","rBG4l4JJGoC3gPBq7HFy","rBYyG1jYOoQ5co3Rxa62","rBpzUsa8BAiHwDIb0SqI","rCCWzYHqlVjzi32weccz","rCgWD6wfTLGzi7nCZAfB","rD07ihQPzxkocNc04KPW","rD4LXqNfBbsiJkYELBDZ","rEbjwuwTfUyqNiTRTkqV","rFGMcQ84yC507iV2h3g8","rFOz3sBMuSnGmIQITEft","rFteJl7BmoHXgEQa0ZVS","rGFWjHnTVqPDOGdGmOGu","rGmCRNLwyrCQC0wJrJWo","rKNiq6zj7jeOUkAkoa7Y","rKVf6mOsOXtLSPcbzje2","rKzulYzxFENQL3gRaje6","rLCxlkad3mclWeX1LTz4","rN6YKxYeKwwvzODuzEq4","rNIFgIXVdHLdX2oG2PHe","rNol8KIZldkIbIkz6azn","rONYHLRI3dH2mgRmrnGk","rOWbQ5n4cGpwrLgXw5RF","rOhVKhRPemcvucN3SIaN","rOyTQPG8TPJm9lk5Sss1","rPeQixVfvBAyNAV5fdv5","rQB4sk8XpbKFLpTG6Dho","rQW16QXPDWguJbacbG1A","rR91xCLdCbf3FJzbTjYf","rSZYsLUMeR7JX6MvmdN6","rSztxPjbHnuxJe9JDx0m","rT6SXbHwsNEOPRnPFcNs","rTUaF5rLlsyzQNzDyxEf","rTcn7613oZMCZV7cXM4S","rUYJExqKxDmvECjuVmvq","rUj1eJRZvvbyr5sOMIHu","rXmG2vKR0z8ZKqkjFxzU","rYpHeKESdxI4Mh68POWG","rYySr5oewHAsFP1EEvqG","rZSB8geyknRxX3o2xOlh","rZgkoS4af6LSeR1cDjXz","rZqGpz2SubAwt91zqc4a","raLswDSu3pLpk8Um0wBr","raNGRrIhxY7RnFAimLnT","rcHyB59qj9KSZJg82E0Q","rcRr1Z17z11VptjWsj0G","rd6WhsdJDzGDflo9NdZK","rdNLp1RXouZhNK3VJ58H","rdRuMkEbQ5KMLtd0CMDN","reSGb5Hrjkqkio7tNfoW","rfFSg5mw8Q9s5bqtIo9Q","rfM1lbyXRJ10cMJkmyOh","rfnmLqvhDBtPtp3QtcOf","rgJaMlHt6KqeX07oqyXR","rhRb3Ua9rm6ta5x4efSF","rhhQM9BEnkbuSafU5p5I","ri5uyAioLJ5me1c57Wlq","ric2tGkIWIWQhKNNsTW3","riiDQLyAErwEuWdDMXiz","rin2yVmLrzqU4xrbTyUt","rjUURXPfy6o2CpfInjRX","rkFsS4auA0c0K8pBPQCj","rmjKWdvLt8y5ZAvafclB","rnEsMfyfpPBUJ0lbAqvD","rnYsY2uBnsZvTLKY9QEE","rnfC0vdIXcKuSsKFPJyt","rogkeix7utgRXeSw91Mu","roipkKu2v9lN8y1Hl1d7","rpfKQOUnkSs9RRlCqkKt","rqBXgEr7lo0eAB4Xvluv","rqqc2Gwm7w48d9IieLv4","rrdlY0EFNr570UqnnVFk","rsJZaUHQnKuMsU8ZwF38","rt7YF8VqwGIfmQIeanWB","rtK6xMUljCIypPJblJoA","rtvXwNZASafLunn6dqX5","rvOICISYqlO430SDK8Xz","rwtYcOrHShBi7al067aK","rwz9WoAEgfqK9h9y3fWX","rx3TFzwidl3ndDPvwmmQ","rxHtlE8MCpobncPbDloJ","ry5yACFoZDzQmE5IKq57","ryK7IWnjWLCpbx4q0I6J","ryQYu2OKYBRjSg1JKpNH","ryQtv35pcHBDlSIM6TCb","rytDhIq6Dvj0B2yaDsls","rzGxTm5NwXaGyhTvprAR","s0Ao1lpjhBrvUtg5hdGr","s0sUgtCABd5w8wRUumQM","s1N5Z7SMS0z4RGwMsOKt","s1RQ0SiAYbPInYL7zdqa","s2147rKXATcm13U5HIkK","s27gDXnqRBXKHyOUL7Ax","s2wmNlBwzJ5Pcwt9FofV","s2ysTMnppBP4KLbig0Ky","s3A9YtuSA17sDfUECHBJ","s3PQp0fW8P2McVBLiNJZ","s3W0jyOoDOcYTLG0rFbi","s3WmAGGRYOcL4XhFYc9I","s3XFwzUSLKBQRngcklq3","s4IfJFSDn4szyfRJRAbG","s4vbBk84OykhDkbxjXAB","s55A4KvOGJbEDG9aykb7","s57b3pr6z8Iv7rmNciKv","s5EJ9Oc7Zoz0selXiZbJ","s5SpTNBYOq0MbERpSp9l","s5bDmIWBFd5HUzwsqdKe","s62S1TKe1YhfeCk18JC3","s62SFdYSQvzAs6UK0a2r","s6e1M2CHqmsJkMkgwWgM","s82pNJ4DXQOKGO5pQFZv","s8VSrAEPnoyKPaQO15dt","s8p5O8HgfmuGnH349GDZ","s9GzEaC1xCpmp0QXJmVH","s9YmTWyTZhavxo38QOlc","sByyt84nl45YrR0UkrYI","sDHBjX6TQhzhyu32VvaL","sDMeYGnkuvTMPKmFuzBM","sDZrpZlGErYFInBcOBkE","sDrUGA8lcGAG3BROnsRE","sDu7u1YVggEzk4LF86LZ","sFhnO5xwJy6vJzHJxM7W","sGLpbiV43rNg5IiCc4c6","sGj5H1HwfqGhkK8SHRXH","sH36aU4Ni4eQc8zAZr2X","sHk0foBxhwUhtghNz69N","sHu9wWAxLwX89MvWemK3","sI8BYAiJBl5CkEbcEQFf","sIOOG8z094NrxE5l6Vq1","sIujOfNyegTHp0BFYkXL","sJB6kabzmeas7blj6T0l","sJN7LXxkCOAtIsWnN2eq","sJverewc9cAVcAHYl63B","sKMpCqMjLu8OoMuIfdBV","sKPTyZzNcdzvMzqqjTX6","sKa2yVtVOhFri9P1td2j","sKd3OWZ1xgCPaqJwm5bc","sLTuRVhe5qyj9tUf0xlG","sMCLwPpnAFLZkvNt7mj8","sMQKCJBpgBY0Pp34daJ9","sNVIMMP5aOWh7VnwWgfu","sNtJUJzubeD99WQifiBO","sPKOwdGnYi9NAfKF70So","sPKvXwWSeiPRhxWfhiSB","sPpcNv076GK0vsVIM2a2","sQNF422zACCH0hIV1bkL","sQVydYQIAOmDbiz6AWeI","sQn799wCzjDgT0ycNRft","sROhXT5DlpmK3JHGxKIo","sRarmlyRdFsM5Cvj3f3l","sRxOOqOuqkek049FtXLH","sS5C0GYCXwfX4amImdTO","sSjmcchUjxj6Sye26tn9","sSzQWtpwH1ADsjdhpeGp","sTXiLEpFA5SSHhC5ofTD","sTnyd4klj0y9Bjq4KiKr","sVupJzFUNYuW6C0Oo557","sWyD2DUGWd63f22EN1bb","sX9AsvLfnlHMqil9vRrh","sXRb24s2GXS4vxHyK4rp","sXcisOEVljNJGWWULcsa","sXlpFPLtrffY5tSzb65j","sYB5OzWFTibRRbj5Wo6s","sYRub6C3gZktnJEZsUte","sYha1KuotaTSAnTCKr7f","sZ14DDV43trwc1WXkOGt","sZ8ROIz0op3HQe16ZNJ7","sZJaobVuBBzWk5BfBF8A","sZTnOvaezIsOn2ww7CbD","satUER1dOBxHLSoHYGA7","sbMSta8LraQty8Vnlv5w","sbNjnqMtoT612Jq33wGq","sbkklkpJBzXjFT9UcY1Q","scGCLh3OxbT137CDpPVg","scL2wXJYDwow2d2Eb1oQ","scTPZnKUCI9MKWcpdxzV","sdlIgTkq5SQ8q6sxBq6Q","sdsOclsqnkvOLnfA5igx","seIeZBIV9CWKKliOIx8H","seem6lcIxT0XMmdb05Db","sfexxsouxj4QmzRLWVIF","sgLFV2vbGAYwgFV1xSiV","sgXghI1EuZsOM7iok9B1","sgpzFBOq1Wdkr275V8Vp","shvembO2vFCu6Cr8xuxw","si7ho3Afn14hlXN0GKzP","siAsFWTmIMxjq5EyjiK2","sifiM7Gya2ZWGTomCb4L","siv2xjvEGlQng8tfrZoW","sj3IYh4UEhsAqHqR0Zug","sjVOr1XMgRceevyXdb7D","sjssartcft7ITWUClPAA","sk0O1FuMV7bPMfRM9UQE","skCglGoDAyhaOwiiT6pl","skoYhFWMt7vFGXOo1djR","sl3fwHvKnOww46lQsSGz","slLi2JeF7sj5jzwCJ1FV","sm33GCc4qYFM9BsCn245","smBkWeTCEarL1nZopcgU","smrvEfMKCDb3t8CQqbjB","snHzRMWt9y6q5wSizZT0","snJGOqYnmgrV5TjUzIqK","snn13s96uiGRskliCBs8","snxyLbusopDrPOVUfndJ","soRKrJwJpgrB3h0MH4r1","sobRlJIjNnbttzDlKzcu","sppNJMpPlu8SS4FUeu6N","sqcF6530WK4LzQaVenut","srC6IgyKPSn32MZx5c8C","srCZOZ0fog2lwZ9u17CS","srQyDhYn7lRpk9zSTPXb","suU5ZV86x6SXMVaM0Uq9","sv9EyfCzC0edZWYSbDnM","swBZxVegGHnwHJoo9VdJ","swXYuuTAGJa5XzAuUha0","swgCkno3EvZVI2byuhi3","swx0qnjaxwWFqx256ysc","sx6xItEXV9HfGA2D39L9","sxh2si8ZyHirOJev6daw","syc4KM6UBfh13WjAXUja","szWD1ZYE0TlBPu3Pfg3c","szv9RX5viPh3Rua8dR5Q","t16388zmPEujbv8UD3cJ","t2MlbGRjJeLYe2gddpNj","t49D7L4wJjUUJWryQ4BH","t4ilPfmDPCLdWjD70SrT","t5aK8v3rtf4AkNeXxKaC","t5kJZt6FpgUeKo4R6b2Q","t5skk3KO5NaealflPjX3","t61OzXGwIMoau2RiEjXx","t64tG9otSOZIgVyZ1WUc","t6Wfyv5pW6CnmMBAaRud","t6Z9PaEndgJA6nbtLgQ7","t87Z9qSVGDMYSXBio5Nv","t8pqLqis6VLstgrYoWPa","tB0Sc4uGYNnhkbsZNsgM","tB2Zk2qinJiHGJlZ36NP","tCRbjbM9qaIipGRY5Uss","tDIEXlghKIVbRTVekjBC","tDgh63R1Lc1rHY5blDfc","tED0aa3lqNhN2hW7oKmN","tEwhyeeGAhW9DcqGhkAy","tFvQDx7jPc1pRPI6Surn","tFyGhUyLbX7eW2QMmWoh","tGI9rr3rcijXRXoNuui7","tGjLJpOyyKIuEdOZlP0v","tI7O1bbRe8GqL76OOQA5","tIONjeiLF5MS9knTMFAX","tIkN5xkTDNxY6KXqTh8X","tK0Wekg2VmNQl4Di0cwO","tK0xOGhI07p6fcNxcjdP","tKDr3loqxIGh0m8QyGyH","tLB6f3duMB2zzxe3RBzM","tLICYv97Ucgm0H3GuAQq","tLsRBPWFq40bYxbS4kTQ","tM7EFZsBYxyonbg09VpU","tNVeOVy6noS0HEO2ikOU","tNhrVjKjm8CskHOqmwE3","tOdCVSB22muxNAmZV5IB","tOteMSX775eF50EkKWw6","tPOyX9v0kCxHA4013CLp","tQ5iW6beuIqHqe1J5hrQ","tQmZHikTkxHYGJqwJloV","tQmsucLcWOnYclHU4EXT","tQn3ZrhjnECD2xUgWwYb","tRhE65I0iO6ewahqBwYo","tRxE2VEyoPP8tiBk2NAF","tS8bkwgZsXonnF3ZUz3i","tSNYFiA6OgAcuZ0SPVSy","tSxR92GCv6lqL8gqV8LF","tSzm42sCXfiN4KRqIczo","tTLNOA7CKX9dlB7TFImL","tTOg1YOlXzHhjeKgojRu","tTmtAPEBjpzVMTPCf8oM","tTqu76nthOEMY1qG8VRR","tUvCoxRgLDZ8lLEyDtsb","tVV8wqgSYEH9J21quDti","tWO7ROCDEpByPkG3sxHo","tWXVyM0pYObwp7a5mC8M","tWqzHnpIWtICuFKFU76Z","tXoQf6IPN7FHa0hKhN4P","tXxmBQcXo4YUAxUuDur5","tZ9SEv8BIJ3Bmd0jNaZ3","tZx6cbYOWLcyBwG8v2xZ","tb9qhiqgdjIYLzZXPYtJ","tbTI4o2ETuXHNZzzGN0b","tcLYrzTYZwHzqfegE1iC","tcMh8RvGU4VvtY1Cpr8v","tclrk7EhVhTFsoHsHk50","tcq41GvC3GTVCaQxzAo4","tdAPVwUobmp8JESDtrnY","tdBYjU7Ot9BFR1EZiqWj","tdYV8MjXQBYyBMmAwn13","te5761TyY7Ve49qblLnD","te8NYhcXqWSLnJi6PoTM","tett4ZPSOo6ewfrDu9HP","tfBWUIvT3EPv3Jc0F1DR","tfPdQRX6crMPtRc94xr7","tflJAijSkQ5UV1EAhcUv","tgCPdg6oAxIUfGFVprHI","tgjsdl5MAqwt0TbgVVRL","thFQdKtXyGj9ejoB3pC4","thXEb8enrGXHWAH0PuNl","tj4A5TW4B8EE1nr9wiyY","tjP7syCVPDN1O6RzQqNc","tjQufiPHA9awjEbve5Ne","tkdvtFpz1R7cc0ScGAaL","tl0JfOGmrnPRmR8lhyXy","tmBjPPKcA6VGfJmC1xCB","tmfUqqcHKaI1r1EygeQV","tmplSYw73nYINDP1wsYW","tnElZ2rLTlffh58KqHTB","tnl3wkBYrR51i7OZxeZ9","to22mjSpqGePcCYYctJJ","tpAjcMPbNChtLhvw7UF5","tpFk1H7sJCXu8nbWuWFq","tpPwGlXi87frZEFWKAVT","tpyfI7iDtkHWwzJjMlc3","trXGkLWRBNjbsO0CQmNm","trfLnVcHl20InQFK72vg","truhEMbXZ16eNX7WCDwk","trzakVV8aqRihc6KvSE1","ts8GOldSiBdT3sUVwRp2","tsUdHh6g1xOD5hBHFzGd","tsfLdAAjcazH4iT5KIG0","tswo2eZF9otNEurFXt9u","tu8PDWZBh06q3z38KUgl","tuNJXrHJPy35XH6HKINw","tulM2sGYrUp78rWJhgqI","tvQQgPQfjP3WkwAgp84W","tvigglCcDio1ud9zWpC7","tvlLR66HX7963WxoPF4V","tvuJ7KBBmcS9RGQrsCDQ","tw7yclpjo9WxxmHM4dmm","txTHw66NzrGCbOoj9fnt","ty1PGK3PAuCQVv34QUUV","tyAv7YoZfRvYn9olEShp","tyo0M9W0wU23OUbVPeV9","u0R4WDIiMOBvgEJ3ReYU","u111YbwU488LTmQCRLpW","u1ycQwmt3JSlFtryYaBM","u23CH4EfsdznpRIFK7cr","u2lXXMNZ7Mg1VLHEuqnB","u36F6ujkIC6oGfVqAgPu","u3T3u4SSRH4pHgGCGG5O","u3u5OALoZqBPgyGKXDBN","u3uwqL3Pj4Fad7RZN62I","u4S84iWnuJWUdnDWYWs8","u4ZJFeSsYGIuUJlAIHcY","u54adx8zlkKtzL8ctBN6","u5PPmRjS2wgJrfwo2Vwx","u5wHRemEg5N31qTVxC6P","u6O8KgOfz16mvjlRDYoi","u7JFUzGBLsDP82VFGHaT","u7ZpClivAahjqcPNBEU2","u7ooB41MkHnXl6iQDM2X","u8R6oc5teVOdyqtCeHph","u8wY1km2vneuOh3wHJ1r","u9PoFVgcNzZuWalaWvPT","uAZHNbsroSawUsEneU9Z","uAqvXgXdltHvQygqkp5P","uB1xzKZ9xFXvIZGCeDLH","uCU3Ee9oJRA6fE6WsKzU","uCw00qwRCUrs4JXcL2yu","uEBhPUKzNhx5jX3PNMhD","uF3OxJkeku3j8y7vPj5e","uFFTPaMICQPenCaR94av","uFNadALW57gRDZEkqR7h","uFXZeK9z8rFQsb0dM4bb","uG9sIYVTzRNSzB8dM75Q","uGVgIdf6c6jZvzUiAASM","uH9SrI1RQcVwkq0Vt5e1","uHWdcwhK0yI5Nmyhoct9","uIAclFCSskNwsJADJMuw","uJpdvipxRiS7oRcmCbK1","uKEvTmRXq7vF0fCnKrs3","uKa1oxbZFFdHZehKwroc","uKroXipoSThLQh7tSldX","uLoO1VakChWaitEYF3A0","uMmd2lf4zlTeUJpJzKh1","uNkUe9qwqOBPBp7cBswH","uO4yBjfswmRwoH3gnok0","uPJTKirBcBhVuEhHYYxH","uPVWHGkkd8ZAWhRcZ1vq","uQ5SmkuS5PnnSvzBJvP4","uQBTCqqWuf9vNaDo54t1","uRpjYb2GyaqTqIV9L0oR","uSUCMWh4cYzdYPvLIKZX","uSVZLlxjxb44NRYTLDRl","uSWLzJ7hweabIdRFIDlJ","uSdgF9RuKr82uZHrthjp","uTs2dbiLc3Hbt1bjKitG","uTsoR1ipoqCYc2annvlX","uTtPJleigemHuSh8rGVt","uU2divK7YKeUe3PWxre7","uUKgoroL1njOg25zGuAz","uUM2fU0w3ZePIidjI0MJ","uUW6PHJvospqnrvh4nZX","uUh2VFRMYPaIfP8tdGY9","uUoRcX868xtYnuHV3bJu","uV0nCm6RttKjJjlQCoYv","uVZbKVzTqpT9uz9KaxuN","uVbI3gY1V8sjQCLCGyim","uVivkOt0L41RmIcilKat","uWco5IBnsvtSeYyzys2M","uX76svPBWbkDJDOhyJGG","uXHHFLff9mwsluov2YNZ","uXUjqR9dQjatGIbnXacM","uYM6BIL2lWKivmr0TeRs","uYxq6ZEVTgedZdR9h3j7","uZbnKQmJ2KUBm4omeROc","ua0UtxFIM0X1oSaUE5QD","uaMSLLW0Rpwnt61luPC9","ubbD0hDltI1sgAOQLyPC","ubiWwN9r5EbPaBW02yMu","ucO3RNWLkNlwTZ84KsTX","ucTEPs47BaznnbWH87QN","ucliQp8uqXLx7FJmBejk","uecv0l7SWZVtXPlL8Cod","ufKjw2SL51yQs88nPu68","ufLjEMdAN4yzuZzt4d44","ufbvcT6YH2Pr628trHOJ","ufu3I3i8ZB235dVPnRBc","ufybloE16xsYVEsKk177","ugFOk1ieT6BO1b7HCRBE","ugX8yDXLibPTrBJTKzgM","uhJDsc8qxCslcBzzarK5","uhoeS0lBuB0dGb7ItYSt","uhpsp8psquOl1E4qH8lN","uhtYWKMiZorofuwPzwgZ","ujSZ48wLj6s0VLzCfXSn","ujTnyMs5hc2VtjdNU6Qg","ujpVlxvLefR9DlldxqW2","ukIi1rcKc7f3xiQOnT3H","ukOFCPQAFauU9HE5XdMc","un2QTJz8bkJJ3K1eg270","unXow1KJ8wyNohNlZlhw","uoKydZS5pTdp6nb1Gs0m","uoNFhGEQi6Wz9sVeV9VW","upBSq8Cen4Hs3l0GV2Z7","uqp7QWEfkBOAKSyVhP2a","urCHbrf0Omm53LjNXcgw","urKnd24a7qWHIzlQJATx","utLetxhkgt1k1EdrGI9g","utM4VYlpqnviXfyDPBV1","uuN3NyG6AsBrexvmzNmy","uvdf0OtIy8vV9ZmpER5G","uwRpTw8NIF0YyVBpnMCO","uweMJpUcxCGGyw50QRZK","ux3RZBnDM2AjO4m6bokY","uxNpEbUFlnQFzgyQ6LFC","uyHXUjRNL5Fsee3hdPS1","uzLedHue5OiB1R9AXg2q","uzgmVdpI69c9KAZbA4XE","uzuugi2MROZ3qdLPRN2G","uzvr1UO5AlEXG5mNk2qO","v1IL2uDLzo3RpVbN880M","v1MyXd0AqW4dHjRJchDw","v28XS4vGauUcyEaMnlim","v2SX5P6m99WonSFdzpAd","v3TKM5jwTXiNDb9Xixkv","v3UFT7poz9TNTUux8Gmc","v3YB7mXKc0W4DNgTLVe3","v3ZZxSV1LMbYI4GoIsfN","v4HTyK7QWe77qKPSlMQE","v4h17QLPJaLyCiSGCLOA","v8K9R4XTG2eJuX8hAkjV","v8vGqb47KqoSTqwYnNrw","vAvdMyQrExDXl34PvXYQ","vB7HrBEG1NJVPquRYp7T","vCbsvXvDe7tCbAYfoao3","vD6IWxiyAbsd2SAJFvL9","vDWEsYN4rOGzhWUBnd22","vE4tMU5ttJLOCqPNrbMm","vE6wU1wxdtRpXpv50RP3","vEIiEOTJ9krSiJK5jofC","vEOa22UTgZPJDDRA1nWf","vGHUZSHxdZ2TFiNVil37","vGQD7Rhf3HnC0Gj3X7MY","vHf6ManimAz7Ks1SnlJf","vHkNgb31gjG6luLnohbF","vHx85WtsjRshHlgYFG6h","vI5BnrlSOROhzVcHyE7B","vITANtxvmRZ1yqCgUBem","vItnZTptQ8K3HpNf0u9X","vLAmDwfPz6e2k6xWFliW","vM8jDVwrC0eqJj894HiH","vMF8sfCqFHFc9RB0dXTb","vMGeohihbhlryfpBZ2aN","vMLFM4b37IF5uXn3NUZQ","vNJbUmxIT97oBoLVqirM","vNOL0s7eYNsJHhgH4Gpy","vQ2haR8LkTURcOkEzLzJ","vQYHt3FAQ3mQsogq5NuK","vR9GYuGXt0ToNwQqZrNf","vUEEFrk0ABn86MLCXnpb","vUrrjH78XFtWcylsdtzO","vVngkEZ1OqXIBZAC1ue4","vVoJb3QrxnKX5L9VHxun","vXjeVovUXdzPxOGWlCJ0","vYTR5SbNSWUnWE5Of7tP","vYZAJ329DZ52pR40b7ma","vYjxj761Jw2nEuBs5cJI","vZ2Fq2uJMfHJhAtPrV08","vZXHkW3DvX8meug6PWwc","vaFKINXsVex3rdJKVe9E","vazRrLhxe48A6u67uBKB","vbGUGiDHKjzMzqRGNw7N","vctNTs0UvxT49vghOOdv","veAlLdX30PpNtFMpsJoI","veYBKGBQwho3L5s9LwOC","vfqkLBepjisEQTk0J3t3","vh3vFFDJvihfyclPGUzM","vhY10J0ArC4VpNt4sDTY","vhpX68kmoS5p9oiWz90p","vimwVqQogqClUU3qsTGQ","vj1f5HGBmtygRPcp0TXH","vkOnRwzDwBqo2k7ZhHgV","vkn3mk6tkqmnnahbauFr","vkz6KFyMOWfkt3b7OaGf","vlIkNjp1MENWkKXH5G4H","vlb8xS1Udhc6deyIVpTr","vleEIBXGoU1VuPyrsMoy","vm3nLs3RLbiUfcXynVPd","vmN17gMQio3tF5dwJgrr","vmOw6IJz5I5TZF1aDzR9","vmRXD2CZM0TkoQ3TW000","vmm2jt9rnDZz4lbEg6ON","vmuc8zyyh75yWiTK9BNf","vnpI6q1WT9PeYwUx21s1","vo2wZlWFIucqHEQSkvOR","voDKnXFIDK1ulfNz3o3H","vogwC1wnVwgqZi1w9DPl","vorctzCqs4roqaqgJVko","vouFFmzjkJMbgIusIMVd","vp7XroqBF6CkkojnFjS3","vpTK59aKIiNbN68zamhM","vr2CAZh3BAa9muRxTg2q","vsXOtL0IJpjA9wUnmCOD","vsgLhcN1kGSZaoHVIlmA","vsqz22UKq2ln9gkToaZC","vsu7s0vM2T5fiaET6dhM","vtI4rWtBFc88XLCs9oeA","vtRQN7xcYscffKHTXtms","vtcqh5PfibyMvLEezz4N","vujQiPs2SnhqZmmquJO0","vuoWpRetf0i1tU2KCrEj","vv0TWyStFs4ibnLh39CB","vvNujCcPDvpboLCc2pXr","vw3yebu0di390o2BVcgU","vxIa72Cl51QUOGQZDmlz","vxfiZ5LpUQnmQUVNH6pZ","vxg8yM3LU56pkg26HdaQ","vyfiHTWCAw8wPbO002SV","vygoparGlYZKGb2VrYfs","vzNpO6Nd5HAcc7Sli1Zj","w0HiWGlC7O9RIv7cc4qj","w0RgsrRMA2YtoAplvUQi","w1WDsSrXyzmUZ3KL1cJ4","w1dsIu2e5rBtSA3YRAwl","w1wsJmvUz7qzQCOyttrP","w2que63QN1dJbNLDUnhW","w3FsOvFEdKfAHtdQjeDG","w3amdGkixj6A99sFfRP8","w3j9vaFfg1jNpJRqLNPX","w3qjbBtdIo8UGPA1ynnH","w4NrVTazyxDtlGRtktWj","w4eKEvGMjf0mHrups3Cz","w5R0KuqPLFniryjGkLNN","w5VQG7ZTrKYEGEZXInAK","w5ajWq4cwSs38VNrGJ2O","w5lpMtmQusoaZUKg1T6d","w62wO8LczR9CBpiz1JMN","w7811LAm7SHL0UFibT8f","w7NVd0MIU4Qlqkpg1TCv","w87Uq32CLnF8L4KH3b6W","w98IsHwnwPonDKgbaujb","w9cAgEAAYdbVF80t6bdq","wAWEr0XNXvXoLs7XbAST","wAZJG5CD49Qt3X8DG2U4","wAZN8ouXFBbTo6edWkxC","wBEesbNcJ41jXp1qKd7N","wBGtT4yBP2h7v550X61K","wBWapxf9UhkaZYhpEF32","wBaSI5nIoWeYcQIGofAI","wBkPopZoeRkkKOObaFUj","wCQs3rkyjCh0BAwYKwfO","wEBfPa3mcvLDYjR3mVrE","wEUA48CSTTljRckUeWuj","wEUnhTozTVZUK8KstcN4","wEW5dbJADFeziNzAHH5K","wEXiCWB0oM9qGtDdtcgA","wEc7bEXshkm807jiEJlX","wFJNpfrVXc6DOXDz4oHV","wFtL1tEDyzvkVyGpFzqG","wGOJZFR9PneTRDqxzieB","wH7NOdyU8QoDM2sTmoF3","wHz8O2nW9gKbC2ALzFNv","wIU9bRq3zmu2heCWjlcr","wIeEdjsyTYyb6iYaiJEo","wMkWO9FHMnLIFXL7EdkH","wMnI0smCa3tP454vDDcU","wMxJ6gwDH43v3eWQFepz","wQKlnotzIrR4JIRYWcVo","wQcH9MpTQDnHKf0BCy2E","wQoyD9pga4a17QonIJh5","wRVmc8rsfwWhcSx4Q5V7","wSKSHn5RkP2q4qCVDQxa","wSQOh3Lf7rxt74J8T3oC","wSZx6JNmXYyJLEg292Ek","wT6H5JmykqdZHH2PKVIg","wTQ8nsacsnA8DwGbQykz","wTge9br4AOfrvXoGJTMC","wUPZM6NWRXaGzjZ9Vx6r","wUUtc4Dk3s0ngfMnAKes","wWPDumc1iClJalO3mAbu","wWRHy7L3KzAGlBGbE3bK","wXo8N6rP1Jj2wFb3RZFG","wZS7v8LzAutyxGrbeGSD","wanz6vGyxFbVqFa9XvjP","wawpNYQT3Ww7LyHA2BOv","wbCbNRqSkTvN9MdYccUl","wbKAAeJdSODWfY4ANeYr","wcP8WdB5s5vZG4AyRQEc","we3UihgNIFjq5sThzjER","wejL5MpU6BoDvLqbXDi7","wetAy6CsClQRTr7m8mv9","wevKj3R4GTm3BH3gndSR","wf2NNnketu1QGPXzn9iH","wfEvxjKW5UCa6KIbRxmP","wfWWB5RPiBxJ7AvOGqzb","wfYvYKggHLPBFS5moXIG","wfiuHd4OEXQsHoaKrLAf","wgCmFGxcj7QOo7ex6sn1","wgNF4vvsJdcVvtufaDW9","wggKIe4UNkEKtHJcqQgp","wgxMgqu9Usc1pQnf5DVU","whGcSSXENfBmmYKPniR1","whj95iBuEHlg8D1sq64e","whvufp042bGVQsi40aTT","wiYdQZul5GEpNZs0DRgK","widFxB8eYdm0GPtdXY77","wjA5096SCasIiby0hiNI","wjRNmUs96hq0zHSRsy3w","wjl5P11Pf2CJSA1MBHqO","wjqSeGjmHhUoNe5IttSh","wk8Rbbr4R0ofjdHmit12","wlLnm0AMeKqge9tKS1IX","wmTkJqM0fTMwrWd7z8Wa","wmkyKBuKwaHNskItGapj","wmlwQ52dxsBVWKwMAZRX","wmspN4UYO7K9HQqO7ctg","wnBXqGbHVtRJU8j54vhr","wnEEl74qAirZKMG6uo2J","woLmGfVBJn6evjCqJJoW","woNBwadtVTFMrzQE1BIl","wp9xrnOSIU0JyZEOkYEa","wpI2d7zajAqrQZNAPsR6","wpdr5UyLC2HRpBIW0b2l","wpoCyK7ebQ6hgKs8pYDn","wpwCKRIFudnENtC9nX4u","wq09UqTskdX4PUNSyRR4","wrDfc3XqWKMR2tYJuzKi","wrlssAEma5PqvfHljur7","wsKLmDwIdw9tpIBL4HpA","wtuubbZmiv6yLEiOvSpB","wvLFBGtmfMltmpxkhrkE","wwpoJS5NIB1Gob9et9Ml","wwpueGhYG9TFUnoWwccV","wxM5cRfjrz61Tf48tCq5","wxlitg6pcm6p80DFfZ1Z","wxnNiyd6TZgGP60WvoMG","wzAcyXM3Lt9oZZ1wOlE6","wzY0tVwwwXySmTWK2CAL","wzpVQB2unpUEK0AvXyoF","x0L9zJ9u8EoAmtWcVMyw","x0fVYVAzrcaO6yIPUbJ9","x12NGhO2qFX8ltCMBOYR","x2hjEu31groaqS55i7uw","x3StsCqYizlbERTDshBj","x3pbYzrEce2dvOBtgNmm","x3vYMjhp4bTNV8TRjMTf","x509gaFtYFmUJyTj8uHT","x57gYKWBHKahRw3O6k8M","x5koCLJi8LlA9tBoXCPT","x63j29UJlYqeYk1OXytX","x6ER0u72eXZCLsFYXTXk","x6wS9RpgUnsjhB9xsHjq","x6znQqTE3hEU7zlCprU8","x7GuDKt5yyrE71N6CsLi","x7XBgKALf0wxOwO7hSlh","x7lSeFShozQfioBwPEh0","x9OO4961n4XLlguQjzfE","x9lY3bf67shbtm8SIbbg","xASjXwFqmCL8qDkjFswl","xBtijtow2YjBzubAXpl7","xC0wivTCBiIMugX1WrE2","xCHBOtIme56wRtWoPmZ2","xCchGbzp4wc9DyVxaN4F","xFQnTR7oB9b48KYZFx1J","xGeOqmgUTaGp80OIE0uT","xGfeHEGlMsR9cGQ8YJPl","xIVubKFrVx2dYVKIcf5G","xIXZNxbclFPsC4cOIAF1","xItaXyIm81ZqxKxaQcH0","xJ58aDbKdJcDNPWINACC","xJMSr8WR5t5zw3PVExQK","xJevBhmnFPqyAIfWIUHX","xK6Dz5LFxCILIBbDIVjR","xKTbHOhH1skmnfDbSQDG","xL60tzBow32QSswX7Vah","xLkwPG0kduThk72QVLrE","xM91Sr0lDgUjLaGqzedX","xMMVWCSc2wgSJTLOrNyJ","xMYC6gzB6tbHevHdDmj1","xN86owDmOXG56hylPape","xNoaBLIa5Wf4AO6MFKBX","xNy81o8COQLcoKuyEcWt","xO28iaH5sQbMYSzTJHqt","xOKLwgzmU5194D4ZdFCt","xP4FYRRmVGZB5R3GRkRe","xPXsUUzwgFq31PIkqCPC","xPd0dTB9DZjRtG2Xea38","xQAxxweKTPM5UxCBkVaZ","xQRiEPjFuQ11jWgNeqt5","xQcbqFRuTRujVoigxZgS","xTF4uA2Brqexw3Y7657V","xTGaNKl6Iol6fvys1Ei0","xTIuXRTAvXyASThd9E3c","xTgYakbLTuEs3aS1YBdZ","xVEcrLTFinKdFj35rFAD","xVadPIsibrn9xDO95BDZ","xWEUzoV6hBsCcQpkdphN","xYRZapksCuLFyHKJC3Bk","xYaAfrZWKVK0Cp2LepAh","xasuKdSeL5E5IPjbhaOb","xb75xBf0vJzzT9I4xf8F","xbMsnHZSLmWN8U2XRbTH","xbd3cs8fDfpmQNk0wmnk","xcH2tWK7EICWOQ8b8KDM","xca7dyAJSaTjm4l2wiYa","xcop4mCU2q7JFsKw9yxq","xdqFutK3nVmYKYucpF2I","xeLCySUqW30RutjlLfrO","xeuu6fAgP7WC1uAKICoH","xfBi3xCkbOh0NZFk9j1b","xgILF3vqfebomEQLFOwC","xiDe7MUz29SEEaBV2mio","xiaYd3aqQSn2RxKqwbMX","xj629amMBqhvgYOqwbtE","xjnJtOVjyykt5qMNGQrO","xjulwkp1YuuXA2GonYry","xkoHkZdpF4nxmTAFZwe9","xlK7oFbWRjsr6IOwacd0","xmLFcl4CDGSG5PRKKsK6","xnfkCrdYGk76Vig7SR2G","xnlGlgzjhuH0vLpWGjx3","xoZqAxU8IndCPqI4r0oN","xpMqYk3tjLAIqe9aVNdn","xpr9NA43V6BGoGo6Mdqo","xqE5KOkMV8ZDgMve2CzY","xqpblDanPJGWHaa5hqfG","xr51GmEpqXTD2Ui5sV44","xrILaPF5hKRCPnKmMXEO","xrLQuCXOi7BsNaLdLDB2","xsGiMvEOFrMKAM1CByGt","xsLFEu91dF4YpfWpTxU1","xsSQLEJF6xIGwQSW0gx7","xsWnoY3zwsJrvvA4r0Lr","xsfm4kuy1Yjy9ykzVpsi","xuBRh5dJ8SxPcSnOE5q1","xvnLvQ27XA9dKSbOyDDV","xvzNmpBSP3Ruj7wVrZqI","xx8VAnkodDV6Kv3isR67","xxDG2gxceNxXZWI8kl30","xxcvmAluyl90kHKP3qUN","xyTyf3vXeSZYDHqCLycL","xyYmo3740PVKIxgWtoUZ","xzNFn31NT3mpPQ3RQtCO","y03kweEWvDZScQfAnMvz","y0GURduaOtHzpxhzUdPD","y0jAn1g0kGKZilFFXICh","y0jQ1pgmFyfj0WcENOAg","y1KdKkU5doJ4gPu4L3YY","y1RWeVstjW2Pquhm39JI","y3I9Vv7yyObd31Oxp3t9","y3RN1wHmz26HzNt0lQkl","y3jY2AfmZRqJzmm2R3XH","y4CrZhsAnp6IZebHzKTW","y4j6bwdgi1xBqj8l1Dog","y51LlS5izP7Ij6UgZ0t9","y5IjDaTVytJUWIfwrbcM","y5iAsLAMD8edGncAckdO","y5lKh7jv3WAZ1su7FUYj","y5uQtTeXOHqxJEuUcHz7","y6IjHLZBdl7S7ZlESSUz","y720dZMj5qfS13ZFOIU5","y7NoaMKZmOpqAt4iMvn1","y8GOiBSgt5mJkBHbQnGn","y8VRai2mDVCjqA2p08P8","y8bHvbkRoDHrnlN02eJd","yAQKk7UcEWJGLOxZ5hgK","yAz3KJPYpHUcrB9Ek3Nu","yBUyv75hav0yWzf2Rmop","yCwSbw3J1QrNk3zujg32","yD1gPB0JUjtSuqF6qJRx","yDHBFsdoKNt2x5EJlawi","yE2rekkfoQ5IrVovB0Wk","yE5LW2kyXZIKJbap9HNQ","yFJsoD6YcNBdcMQ1tUtO","yFq2lcbkEyOu3j5FGaTM","yGE0lo8xtDRYaUWGgqAn","yGFrpKSbBTj9zDjgnPEu","yGHATil7kgo4vsktihvq","yGHmkaNtaPYRcr9Fg509","yHmgDa56ItXsu9xZ9YwN","yIa9V8wPB8KR6lXywtoV","yJNLu9WenfhxgAPGRiZw","yKfzNqluCzNzFJZDkSqM","yKtKFdOEJsGOxo5DtqVx","yL0gqOxxTtWHlWBCHGWD","yL4FQCvSKuImjUFPLyla","yLFljaPi4foaVDX4CfL6","yLPMIHglfpLfAxl1Xpf7","yLeu4oKuUSJKHAovh6J9","yLsPoA2kEscRuif4MiPS","yLw7yK9mVPUfrpz6sauB","yMAwd0dvegXuFWtckA24","yNERM68fDEyJQ2rBRm4e","yNYxC4imuA2vWp0rjKPf","yOSfHlcJGBUf60jsZanS","yOdcqERNgyEABO0PUs3q","yOmdtKK5L1JYgQHrkph5","yOtrlMVx2taqS6dwOuQy","yP3imnCGH37xAOMn03uU","yPO6FDz07KOGuQWNMpok","yPeI1cLXRw6dXJ70rRWH","yPuFXHzVF2FndjiDhgxJ","yPzbcPmjokZda6zhcvy7","yQneM3l8LyIXaCM1wkPG","yR11Wv6muRiPx0Xjj72v","yRXKlGQ5cyRd7bt8KV2L","yRnIGTmfAp9OQdhHGqAu","ySFm5NEd1xylnHlZzV0O","ySfaOTnfee3N1tGnMm1S","yT06l1rM2kUybYYTgm3w","yT16IfbnLIUWZdE9qgKz","yUSv8XMK6t3Am72jaJxj","yUWzFgaEiSU3JtQzf36v","yVCgpNJZq8m3y4s6Elld","yWd5pCFIMKBGB4GLN659","yXENiSvnzZz0WN6CTdCh","yYlMmVhI1vvNBHboJ0OL","yYow5fMgw8VDrjIglhEG","yZQQ9y0nGMbfaQUZWJVW","yZupZTfbz65kHoU1V7v1","yZyCy6Bdikkk6pRu9TNd","yZyIKhiBQiS5LeiDPK04","yaGFJXadmbdBSvxjwEVP","ybAAiWDbuXpOmpe7GxbM","ybvgdVLV3Athsr9OAjrD","yc1DrqbyVLCsnf6uzLss","yc4hFsmkieyci8S8jOJU","yd7PFkWj5UJ5kA0p5dQs","ydmtQfnHWKsWSc2n7OuR","yeErKuGI1I86hodAKvCy","yen558c1b7jME48bL74Z","yf58loycD61HneQZyLvb","yfZZfk0jNDK5LHCLsftb","ygPRwcIsPPcPBUBdRH6n","yi5Q92hSTbcJ6sYywQjY","yj6dburbatmrTIJZzySL","yjUZr9tgvw2Eq1TSCmQq","yjvmyg4IufTtrvYjXn4R","ykCAPlXOPex7UnP3fXR5","ykFauI76UlfSEYNiqEbL","ykOKJ1uK7ZdyIfso6wJS","ylGvL4f9VybJVSy8KBaq","ylZpsFmJ5lfrucVhSe2A","ymSO0Ls2eXkiBLTUJbSP","yoJ1dy1ow9JdZRrtxZ4z","yoZIK7DmoqM60xAAxOPg","yq2S22tIX4hXjbFOFfDA","yqxWG9PSfZD8PGqcklpL","yrFYioKy8E5Y27qgCWAY","yraaXnOJH7PY7gguDqef","ysNbJUDtCEhDy8pMInZD","ysl5HLUNqq1tRAqwITHZ","yu7os5el0I8x4jYdzpCy","yviQme8GLb9AcpfHvN5t","yvtMHwwmRJeplVYAueSv","ywVT6HpFa3WowQPCIjiw","ywkmhfgkVodcDaw8qxhe","ywsOEmlpl9ZFQCkPOUvh","yxHDMaPJAVQs2Sdclw2P","yy8rI8H56ar0sdnC8xte","yyBeOdRqEFkh5Wi8QmMK","yyCpcp5jfGgD1afjm3zI","yyfwVBOETHEr3l8UAGkP","yzci7zmLVOSj7GfhH9sJ","yzsRnGzOvaqFqOm6Ynjm","yzuQiF2IJoAbBT1pXPbr","z0Ccv186G6YqUwVaUAFQ","z16ZNQM69MSUWHpXKAVf","z1HGuiXpUYHSPPFKMjba","z1w9mAzfdt206JTxJHSI","z264fnthovjSbeFp6lD7","z28MAInT0dfL58W565Th","z2ufqptLbgEWf8D26Wfh","z3S1fSesSGzREBsEM8pI","z3rhY0DXDHg0BiDvRE69","z51HeKJEDeep5NLMnHw3","z5QNSLQueAULIy5rpd6B","z5StL9A9qlshqnjsPrDq","z6GKO3g4Lwv6F7joLAdL","z6KqHVUcq90g3JS6FD9U","z6gdzu9uQO0RLXKPLYwO","z6iTEEfeghlXNMMshLSI","z7UdPjuU8VunJpG4aQku","z8F8bxjWeGWcnR4rePhi","z8JEv17EPyK82E1fRMHK","z8KjiMapFL23LJAZNwwf","z9XSqjANWWmYxVbs77oT","zABck5F1OroNPhVPymnQ","zC7yQAxZvuFkwYMpgKLy","zD4NdgY93YGgJzf9upv8","zDIkxGldfkz7tIIFZLrC","zEgf9YoL6ymtGY0EYDbu","zGDtOZGNmdf8dlDoQG7G","zH3274hi8Z3KJVlSeBff","zHHR6zdvKYG1EL6SNvqX","zHRWpI2iz8YI4KS06kxc","zHgeQuSC5r3vuI0rmx6D","zIdUYGqZzJp6L1yvQ8WM","zJEWtv8ezHttHGqoasOf","zJOieYtTzYp2ylhixU3Y","zJehQEabg7eZGgKzJxvz","zKAVrytWxkV6OKoiqSwg","zLqFkpRygapbH9WnGixC","zMWNwWqCtXg1lRt1A8rg","zMpRKzWqXnBpVfNDfDbB","zNJggyS6QpKBB6kEHxx0","zOD6Ql6zgDZvSjL7h5kB","zOmRjUDEBYHaoIHCeFfJ","zPScio1fzq9ec7oVGpjq","zQwqa0bAQGr8AR8NzNav","zRYPsPB9NtYqFkadYv6v","zRZm8W8iGp7SPjOA64W4","zRjVXQharxccx84NNztv","zRsNYvxndOmFcu2M9fBK","zRvNs4zMVkdlxJUY0mmo","zS55dTYozuY8sHJjpaQU","zSW1Ge811CiXXctEKsVH","zUKTMPLLgQAJc5Pg51dj","zVAGpujNuhMSzcC6LAFF","zVQR1Bo4N6VsrXzztUa0","zWQaNlHbEvAXxAwBQra7","zWWuOqea2JvTyOT0NvGa","zWjhJ4Zdc4zQRGgTWNqQ","zX14T3YNpRH11B2kNaCU","zXHylhukR8HD61FzWFgy","zZ8R1cuDlbwdnV1Mmfbo","zalcjoqNlWMIzmjOu0Mq","zb19mLhZKfVbu61YaxaU","zbAM871t3mnVt9T6ncAo","zcfpIaCoyt68McS3sHn1","zd1gSUfeJzPMiuZZ16g1","zd8byYeqpk88NyRgpI8p","zdO2e6g42wT8pmvRPi9k","zdw0bSXtElU8ZSvWW34I","zebR6RebyRhlBT5QiBt1","zgB156sEJZnTAlwd8xBL","zgKvgQyd5mBNFDe4fGBU","zgdFSfGt9YoVs2rg35FL","zk1Apd6TgMKnpomV96Tn","zknR4nSgEPaSti9yvBSL","zl6NaarKAXE1is57JMUD","zmCjEJ18vyOyXbsntC5J","zmrW6gkv2FNJyYHa8UZe","znrRrLQQWFy3oXGZ08nB","zoTtbxLUekUNuSQ4MNBW","zpHVvyoQPvGGiI7Iayj7","zqRsoeJuPFbsQEUlkH1D","zqUcQzJ4WBLFDnEMJUOJ","zqWtw6IuATz0emhM7wNI","zqv9frs3QEgbz6QkNObN","zrzbaiFnHJMOoXqFRZE8","zsDnlqNJ7Zl0gVmeTruw","zt6gRu1SkbwfUkilUKoj","zthbMpuQ0OxLbxGFQ9ur","ztolDiNUUBY8ylBGQMoT","ztvT3CyGAL7Y70TlgKRY","zv4WIT5o2Wr0sNOR3bWY","zw7BEpea2B46NE9bDoqm","zwHmjnvMNxK4ZvTwMeKK","zwINYoxFeArPWkv7RWSA","zwzamMQr1fXt9ISJf8xv","zxYeliK4tETVlON7IlmR","zy12SKQ4uJBLHlj8YqxI","zyMgShHJciK8HqpROqib","zzESIbGHypzItNAmyroF","zzU4qaEshrC3VsB7PWkc","zzh1ATQr7FMNI37r2Okc"] \ No newline at end of file diff --git a/src/core/constants/formats.js b/src/core/constants/formats.js new file mode 100644 index 0000000..3c0fc82 --- /dev/null +++ b/src/core/constants/formats.js @@ -0,0 +1,6 @@ +export const formats = [ + { value: 'BP', label: 'BP' }, + { value: 'AP', label: 'AP' }, + { value: 'WSDC', label: 'WSDC' }, + { value: 'Others', label: 'Others' } +] \ No newline at end of file diff --git a/src/core/constants/index.js b/src/core/constants/index.js new file mode 100644 index 0000000..b8c3766 --- /dev/null +++ b/src/core/constants/index.js @@ -0,0 +1,19 @@ +export * as englishIDs from './englishIDs.json' +export * as vietnameseIDs from './vietnameseIDs.json' +export * from './topics' +export * from './topicsForMotions' +export * from './formats' +export * from './languages' +export * from './customTheme' +export * from './tourneys.json' +export * from './PAtourneys.json' +export * from './MOJItourneys.json' +export * as tournamentsFromDatabase from './tournamentsFromDatabase.json' +export * as tournamentOptions from './tournamentOptions.json' +export * from './tournamentData.json' +export * from './motions.json' +export * from './motionDataRaw.json' +export * as motionsFromDatabase from './motionsFromDatabase.json' +export * from './PAmotions.json' +export * from './MOJImotions.json' +export * from './tableClassNames' \ No newline at end of file diff --git a/src/core/constants/languages.js b/src/core/constants/languages.js new file mode 100644 index 0000000..7e34dad --- /dev/null +++ b/src/core/constants/languages.js @@ -0,0 +1,4 @@ +export const languages = [ + { value: 'English', label: 'English' }, + { value: 'Vietnamese', label: 'Vietnamese' } +] \ No newline at end of file diff --git a/src/core/constants/motionDataRaw.json b/src/core/constants/motionDataRaw.json new file mode 100644 index 0000000..1bf7feb --- /dev/null +++ b/src/core/constants/motionDataRaw.json @@ -0,0 +1,41404 @@ +[ + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Debate for Donation Open", + "Round": 1, + "Motion": "THW embrace the rise of private cities (i.e. Eko Atlantic,Tatu City,Hope City,Cite le Flueve)" + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Debate for Donation Open", + "Round": 2, + "Motion": "TH, as Christians, regrets the rise of popular mainstream artists co-opting Gospel themes in their works (i.e. Kanye West Jesus is King)" + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Debate for Donation Open", + "Round": 3, + "Motion": "TH, as US, would covertly begin boosting the amount of foreign election interferences done by CIA" + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Debate for Donation Open", + "Round": 4, + "Motion": "THP a world where Homo Sapiens is not the sole surviving human species" + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Debate for Donation Open", + "Round": "Novice_Final", + "Motion": "THW not grant employers access to applicants' criminal records" + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Debate for Donation Open", + "Round": "Open_Final", + "Motion": "TH, as Saudi Arabia, would advocate for Yemen to be split to three countries; South Yemen led by al-Zubaidi STC, Yemen led by Abd Rabbuh Al-Hadi and North Yemen led by Houthi" + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Helsinki Open", + "Round": 1, + "Motion": "THBT implementing bonded government scholarships are in the interest of developing states" + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Helsinki Open", + "Round": 2, + "Motion": "THBT the feminist movement in the West should heavily promote the concept of 'self-partnership'" + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Helsinki Open", + "Round": 3, + "Motion": "THBT the European Union should immediately grant full membership rights to Bosnia and Herzegovina" + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Helsinki Open", + "Round": 4, + "Motion": "THBT the Pope should excommunicate Rodrigo Duterte" + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Helsinki Open", + "Round": 5, + "Motion": "THBT environmentalist groups should fully abandon advocating for the mitigation of climate change, in favour of campaigning for adaptation efforts instead (e.g. building sea walls, genetically modified crops, exploring alternative living habitats)" + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Helsinki Open", + "Round": "Novice_Final", + "Motion": "THR the social preference for positivity and optimism" + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Helsinki Open", + "Round": "Open_Quarters", + "Motion": "You have been a moderate Republican for the last 10 years, and identify the most with the GOP establishment. THR the 2016 election of Donald Trump as president of the USA" + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Helsinki Open", + "Round": "Open_Semi", + "Motion": "THBT the choice of the economic liberalism as a dominant doctrine by major international financial institutions does more harm than good" + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Helsinki Open", + "Round": "Open_Final", + "Motion": "THP a world where humans cannot perceive aesthetic beauty" + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Imitation Cup", + "Round": 1, + "Motion": "THBT the notion of journalistic objectivity has done more harm than good." + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Imitation Cup", + "Round": 2, + "Motion": "THBT the United States should pursue aggressive containment of China (e.g. economic sanctions, diplomatic threats, remilitarization of South China Sea and Japan, countering China's influence in various regions)." + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Imitation Cup", + "Round": 3, + "Motion": "THR the dominant narrative that individuals should \"do what they love\"." + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Imitation Cup", + "Round": 4, + "Motion": "THBT developing countries should pursue investment agreements that require state-to-state arbitrations, compared to agreements which grant foreign investors standing to sue governments in investor-state arbitrations." + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Imitation Cup", + "Round": 5, + "Motion": "THW disallow religious leaders from publicly endorsing, rejecting, or commenting on any political party or candidate." + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Imitation Cup", + "Round": "Novice_Final", + "Motion": "THBT the feminist movement should focus its efforts on encouraging men to \"lean out\" rather than on encouraging women to \"lean in\"." + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Imitation Cup", + "Round": "Open_Quarters", + "Motion": "THR anthropocentrism in the environmental rights movement." + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Imitation Cup", + "Round": "Open_Semi", + "Motion": "THW place a time limit on all private land ownership in major cities." + }, + { + "Date": "2020-10-07T00:00:00", + "Tournament": "Imitation Cup", + "Round": "Open_Final", + "Motion": "THBT it is justified for an individual to prioritise their own self-interest over alleviating universal suffering." + }, + { + "Date": "2020-09-11T00:00:00", + "Tournament": "IUBDC Rational Wrangle", + "Round": 1, + "Motion": "THS the managed relocation of biodiversity in response to climate change" + }, + { + "Date": "2020-09-11T00:00:00", + "Tournament": "IUBDC Rational Wrangle", + "Round": 2, + "Motion": "Post the 2020 elections, and regardless of its outcomes, THBT the progressive faction of the Democrat Party should split to form a new major party" + }, + { + "Date": "2020-09-11T00:00:00", + "Tournament": "IUBDC Rational Wrangle", + "Round": 3, + "Motion": "THBT governments in developing countries should prioritize increasing foreign tie-ups in public universities, over allowing the entry of foreign universities" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "BDC Pre-Worlds 2020", + "Round": 1, + "Motion": "THBT the Bretton Woods Institutions (International Monetary Fund, World Bank, etc.) have done more harm than good" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "BDC Pre-Worlds 2020", + "Round": 2, + "Motion": "THBT national policies that may have significant environmental consequences should be subject to a veto by a national level appointed panel of scientific experts" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "BDC Pre-Worlds 2020", + "Round": 3, + "Motion": "TH, as the EU, would actively prevent EU countries (like Italy, Slovenia, Lithuania, etc.) from achieving closer ties with China" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "BDC Pre-Worlds 2020", + "Round": 4, + "Motion": "THR the romanticisation of art that is pursued for non material gain" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "BDC Pre-Worlds 2020", + "Round": 5, + "Motion": "THW pool donations for specific charity causes and redistribute them to charities according to evidence-based assessment of the efficacy of these charities within the sector" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "BDC Pre-Worlds 2020", + "Round": 6, + "Motion": "THBT the Black Lives Matter(BLM) movement should campaign for the inclusion of more African American police officers instead of the defunding of the police force" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "BDC Pre-Worlds 2020", + "Round": "Novice_Quarter", + "Motion": "THW ban essential service workers from striking" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "BDC Pre-Worlds 2020", + "Round": "Novice_Semi", + "Motion": "THR the glamorization of the portrayal of a \"Genius\"" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "BDC Pre-Worlds 2020", + "Round": "Novice_Final", + "Motion": "THW break up persistently dominant political parties in emerging/developing democracies (e.g. the ANC in South Africa)" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "BDC Pre-Worlds 2020", + "Round": "Open_Octa", + "Motion": "THBT human rights activists in post-conflict societies should neither advocate for political parties nor run for election in the transition to democracy" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "BDC Pre-Worlds 2020", + "Round": "Open_Quarter", + "Motion": "THR the US-Taliban peace deal" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "BDC Pre-Worlds 2020", + "Round": "Open_Semi", + "Motion": "TH prefers a world where each believer established their own connection to God,rather than establishing one through organized religion" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "BDC Pre-Worlds 2020", + "Round": "Open_Final", + "Motion": "Assuming that a technology exists that can accurately measure and transfer intelligence This House would radically redistribute intelligence among the population" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": 1, + "Motion": "That we regret the culture of fearing death" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": 1, + "Motion": "That, as a promising university graduate, we should opt to make the largest amount of money possible and donate it to charities instead of directly working in social fields." + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": 1, + "Motion": "That we would not publish this information" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": 2, + "Motion": "That liberal supreme court s should misinterpret the constitution to advance civil rights" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": 2, + "Motion": "That the LGBTQ+ movement should not allow police officers at pride events (such as the pride march)." + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": 2, + "Motion": "That, as the queer (LGBTQIA+) community, we would reject the ‘born this way’ narrative." + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": 3, + "Motion": "That curricula in post-colonial states should focus on locally-authored literature, to the absolute exclusion of 'great work' such as Shakespeare." + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": 3, + "Motion": "That we should implement a Mastery Learning framework at all levels of education" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": 3, + "Motion": "TH, as an educational institution, would prohibit all sports programs that pose a risk of CTE." + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": 4, + "Motion": "That we would ban the short selling of shares" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": 4, + "Motion": "That we prefer a world where cooperatives (employee owned businesses) were the norm." + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": 4, + "Motion": "That local communities should be able to cap the number of tourists that enter their region over a specific period of time." + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": 5, + "Motion": "That we regret Hamilton" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": 5, + "Motion": "That we would ban Microtransactions in video games" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": 5, + "Motion": "That we regret the rise of True Crime entertainment (e.g Making A Murderer, Serial, Tiger King, The Jinx etc.)." + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": "Novice_Semi", + "Motion": "That we prefer Facebook's policy of only removing content that users report as compared to a policy where Facebook itself independently determines restrictions on content." + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": "Novice_Semi", + "Motion": "That we regret the rise of influencers" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": "Novice_Semi", + "Motion": "That we prefer a world where the internet never existed" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": "Novice_Final", + "Motion": "That we regret the decline of secular Pan-Arab nationalism" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": "Novice_Final", + "Motion": "That the African Union should pivot toward the global East rather than the global West." + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": "Novice_Final", + "Motion": "That, as Imran Khan, we would issue a public apology for 1971 to Bangladesh" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": "Open_Octa", + "Motion": "That as established feminist artists, we should systematically produce art and media that actively ridicules heroic masculine archetypes" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": "Open_Octa", + "Motion": "That as the Global Feminist Movement we would support anti-capitalist movements (Occupy Wallstreet etc)" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": "Open_Octa", + "Motion": "That microfinance organizations offering loans in developing countries should offer them exclusively to women" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": "Open_Quarter", + "Motion": "That, assuming Personal Protective Equipment is sufficiently available, medical workers during a pandemic should have the right to opt out of service." + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": "Open_Quarter", + "Motion": "That we would aggressively and competitively fund CRISPR" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": "Open_Quarter", + "Motion": "That in times of a global pandemic, standard research ethics should be suspended as long as the subject consents." + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": "Open_Semi", + "Motion": "That we regret the fall of the Societ Union" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": "Open_Semi", + "Motion": "That Student Unions should not take political positions that do not directly pertain to tertiary education." + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Karachi Debate Open", + "Round": "Open_Semi", + "Motion": "That, as a lifelong Republican, we would vote for Joe Biden" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Tilbury House Online Open 2.0", + "Round": 1, + "Motion": "THBT the Mexican govenment should retroactively legalise the production and distribution of drugs, instead of keeping them illegal" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Tilbury House Online Open 2.0", + "Round": 2, + "Motion": "THR the ideological dominance of the left in the feminist movement" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Tilbury House Online Open 2.0", + "Round": 3, + "Motion": "THW heavily penalise corporations for punishing their employees for engaging in legally permitted speech" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Tilbury House Online Open 2.0", + "Round": 4, + "Motion": "THBT the IMF should adopt a policy of not bailing out countries that take out significant loans from China under One Belt One Road" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Tilbury House Online Open 2.0", + "Round": 5, + "Motion": "THBT it is in the interest of the ruling party of Kazakhstan to hold free and fair local elections of akims and maslikhats" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Tilbury House Online Open 2.0", + "Round": "Open_Quarter", + "Motion": "THS the use of the Hannibal Directive in combatting terrorist organisations" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Tilbury House Online Open 2.0", + "Round": "Open_Semi", + "Motion": "THW ban advanced simulations" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Tilbury House Online Open 2.0", + "Round": "Open_Final", + "Motion": "TH, as the researchers, would have eaten the crops during the siege" + }, + { + "Date": "2020-09-05T00:00:00", + "Tournament": "Tilbury House Online Open 2.0", + "Round": "ProAm_Final", + "Motion": "TH prefers a world in which every individual is perceived to have equal access to a deeper connection with religious deities (as opposed to e.g. religious leaders being perceived to have more such access)" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "1a", + "Motion": "That we would abolish Slytherin house" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "1a", + "Motion": "That, as a Hobbit, we would go on a grand adventure" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "1a", + "Motion": "That we would have preferred the Game of Thrones prequel series to be Bloodmoon over House of the Dragon" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "1b", + "Motion": "That, as a competitive and socially conscious young Pokémon trainer, we would not participate in Pokémon battles" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "1b", + "Motion": "That we prefer larger, more spaced apart patches to regular, smaller patches in esports games" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "1b", + "Motion": "That it is in the interest of the Gerudo to abandon their policy of isolationism and instead embrace an open borders policy" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": 2, + "Motion": "That, as Rey Skywalker after the battle of Exegol, we would re-start the Jedi Order" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": 2, + "Motion": "That the Star Wars sequels are better than the Star Wars prequels" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": 2, + "Motion": "That it is in the interest of the Sith (circa 35 BBY) to abolish the Rule of Two" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": 3, + "Motion": "That, as Billie Eilish, we would release a Christmas album" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": 3, + "Motion": "That, with hindsight, we really do regret Glee" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": 3, + "Motion": "That, as Clutch Mami, we would sign with a major record label rather than remain independent" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": 4, + "Motion": "That, as Aman, we would have professed our love and married Naina" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": 4, + "Motion": "That, as the fertility doctor, we would tell the young woman the truth." + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": 4, + "Motion": "That we believe that Andy should have stayed and worked at Runway" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": 5, + "Motion": "That we would prefer the Eric Killmonger plot to the Shuri plot" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": 5, + "Motion": "That Gotham would be safer if Batman abandoned his 'No Killing' rule" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": 5, + "Motion": "That we regret the depiction of Supergirl frequently saving the day through idealism and hope" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "ESL_Final", + "Motion": "That the Pokemon anime should soon replace Ash as the show’s main protagonist" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "ESL_Final", + "Motion": "That we believe that the ending of Bojack Horseman series should have been him dying at the end of 'The View From Halfway Down'" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "ESL_Final", + "Motion": "That, as Morty, we would sever ties with Rick" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "Open_Quarter", + "Motion": "That, as Melissa, we would reveal the truth to the world" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "Open_Quarter", + "Motion": "This house, as the engines, would unionise and protest against the Fat Controller's \"Really Useful Engine Doctrine\"" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "Open_Quarter", + "Motion": "That we believe that Donkey and Puss should have had a relationship, not Donkey and Dragon" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "Open_Semi", + "Motion": "That we regret Netflix remakes of cartoons for adult audiences (eg. Riverdale, Avatar the Last Airbender)" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "Open_Semi", + "Motion": "That Tumblr should unban pornography" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "Open_Semi", + "Motion": "That we support the Hollywood Blockbuster model" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "Open_Final", + "Motion": "That we would prefer prominent authors to write books about utopia, not dystopia" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "Open_Final", + "Motion": "Without having regard to future events of the show, That the protagonists of the 100 were wrong to seek to expose the Primes" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Pop Culture Grand Prix", + "Round": "Open_Final", + "Motion": "That Curtis should destroy the train and end humanity rather than taking control." + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Yale NUS Pro Ams 2020", + "Round": 1, + "Motion": "THBT the age of digital information (e.g. social media, online news, etc.) has done more harm than good in protecting democracy" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Yale NUS Pro Ams 2020", + "Round": 2, + "Motion": "THBT the environmental movement should abandon the narrative of personal responsibility in favor of one which emphasizes institutional accountability" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Yale NUS Pro Ams 2020", + "Round": 3, + "Motion": "THBT feminism is in opposition to capitalism" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Yale NUS Pro Ams 2020", + "Round": 4, + "Motion": "Assuming that Joe Biden wins the presidential election, THBT the US should continue to pursue antagonistic and confrontational trade strategies against China (engaging in trade wars, etc)" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Yale NUS Pro Ams 2020", + "Round": "Novice_Semi", + "Motion": "TH Prefers Western entertainment (TV Shows, Movies, Theatre) which assumes fluid sexuality (How to Get Away With Murder, Imagine Me & You, High Fidelity, Game of Thrones, Trinkets) for its characters rather than centering a narrative of non-hetero sexuality (Love Simon, Carol, One Day at a Time, The Half of It)" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Yale NUS Pro Ams 2020", + "Round": "Novice_Final", + "Motion": "THW legalize the buying and selling of one’s remaining lifetime years." + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Yale NUS Pro Ams 2020", + "Round": "Open_Octa", + "Motion": "THW weigh shareholder votes in line with the length of time their shares have been held." + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Yale NUS Pro Ams 2020", + "Round": "Open_Semi", + "Motion": "TH, as the Jammu & Kashmir Liberation Front, would ally itself with the Pakistani government to push back against abrogation of Article 370 by the Indian government" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Yale NUS Pro Ams 2020", + "Round": "Open_Final", + "Motion": "THS the rise of anti-natalism" + }, + { + "Date": "2020-09-04T00:00:00", + "Tournament": "Yale NUS Pro Ams 2020", + "Round": "ProAm_Quarter", + "Motion": "THBT religions should promise reward in the afterlife as opposed to promising material reward in this life, with both outcomes contingent on faithful practice" + }, + { + "Date": "2020-09-01T00:00:00", + "Tournament": "The Grand Spar September", + "Round": 1, + "Motion": "TH house prefers karmic-based religious systems over religious systems based on eternal reward or punishment/ divine mercy." + }, + { + "Date": "2020-09-01T00:00:00", + "Tournament": "The Grand Spar September", + "Round": 2, + "Motion": "THW not allow news media outlets to report on suicide" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "Argumentum Open 2020", + "Round": 1, + "Motion": "As an average student from lower socio-economic class who lives in a developing country, This House Would choose a generalist career path over becoming a specialist" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "Argumentum Open 2020", + "Round": 2, + "Motion": "This House Prefers a world where altruism is the only acceptable motive in doing good deeds" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "Argumentum Open 2020", + "Round": 3, + "Motion": "Assuming Israel will accept, as Palestinian Authority, This House Would let go of the Gaza Strip in exchange of Palestinian independence in the West Bank" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "Argumentum Open 2020", + "Round": 4, + "Motion": "THR the romanticization of staying productive while working from home amidst the pandemic" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "Argumentum Open 2020", + "Round": 5, + "Motion": "This House Prefers a world where China becomes the largest global oil & natural gas exporter" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "Argumentum Open 2020", + "Round": "Novice_Quarter", + "Motion": "As feminist, THO such coverage" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "Argumentum Open 2020", + "Round": "Novice_Semi", + "Motion": "THBT US presidential debates bring more harms than good" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "Argumentum Open 2020", + "Round": "Novice_Final", + "Motion": "THW ban foreign investment on Indonesia tech startups" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "Argumentum Open 2020", + "Round": "Open_Quarter", + "Motion": "In the wake of Jacob Blake shooting, As African-American athletes in the NBPA, This house would boycott the remaining of the NBA season" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "Argumentum Open 2020", + "Round": "Open_Semi", + "Motion": "As left-wing democrats, this house regrets Joe Biden's decision to choose Kamala Harris as VP Candidate" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "Argumentum Open 2020", + "Round": "Open_Final", + "Motion": "THBT Indonesia's state-owned enterprises should solely focus on distributive function (i.e. distribute services, provide job) even at the expense on revenue generation" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "MonDO 2020", + "Round": 1, + "Motion": "THW ban the use of fully autonomous weapons in warfare" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "MonDO 2020", + "Round": 2, + "Motion": "THP leaderless movements" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "MonDO 2020", + "Round": 3, + "Motion": "THP a world where people cannot lie" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "MonDO 2020", + "Round": 4, + "Motion": "THBT Joe Biden should have picked Elizabeth Warren as the Democratic Party's Vice Presidential candidate." + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "MonDO 2020", + "Round": "Novice_Semi", + "Motion": "THO the humanisation of villains in popular media" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "MonDO 2020", + "Round": "Novice_Final", + "Motion": "THS judicial activism" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "MonDO 2020", + "Round": "Open_Quarter", + "Motion": "THW significantly restrict military recruitment in impoverished areas." + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "MonDO 2020", + "Round": "Open_Semi", + "Motion": "TH, as the feminist movement, would oppose the practice of female pop artists sexualising themselves in their work." + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "MonDO 2020", + "Round": "Open_Final", + "Motion": "THBT it was in the interest of the UAE to reject the Israel-UAE peace deal" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "SEC Schools Championship 2020", + "Round": 1, + "Motion": "THBT developing states should aggressively incentivize collective farming" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "SEC Schools Championship 2020", + "Round": 2, + "Motion": "THP a world without lying" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "SEC Schools Championship 2020", + "Round": 3, + "Motion": "THR the romanticizaion of motherhood" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "SEC Schools Championship 2020", + "Round": 4, + "Motion": "THBT all acts of election campaign should be prohibited with the exception of public debates" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "SEC Schools Championship 2020", + "Round": "Open_Semi", + "Motion": "In developing states, THW highly incentivize students to pursue vocational school" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "Zagreb Random Pro Am", + "Round": 1, + "Motion": "THW make voting mandatory" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "Zagreb Random Pro Am", + "Round": 2, + "Motion": "THW not allow unvaccinated children to attend schools" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "Zagreb Random Pro Am", + "Round": 3, + "Motion": "TH, as the EU, would withhold development aid from countries with poor women's rights records, e.g. age of consent, laws around domestic violence or property laws" + }, + { + "Date": "2020-08-29T00:00:00", + "Tournament": "Zagreb Random Pro Am", + "Round": "Open_Final", + "Motion": "For crimes with low prosecution and conviction rates (e.g. sexual assault, domestic violence or membership of criminal gangs), THW lower the burden of proof from \"beyond reasonable doubt\" to \"on the balance of probabilities\"" + }, + { + "Date": "2020-08-28T00:00:00", + "Tournament": "Alternate Pre-ABP", + "Round": 1, + "Motion": "THBT video games should regularly reassign random gender and race identity to player avatars" + }, + { + "Date": "2020-08-28T00:00:00", + "Tournament": "Alternate Pre-ABP", + "Round": 2, + "Motion": "TH, as Central Asian states, would heavily focus on economic and political alignment with China under the Belt and Road Initiative" + }, + { + "Date": "2020-08-28T00:00:00", + "Tournament": "Alternate Pre-ABP", + "Round": 3, + "Motion": "THBT Blockchain does more harm than good to developing countries" + }, + { + "Date": "2020-08-28T00:00:00", + "Tournament": "Alternate Pre-ABP", + "Round": 4, + "Motion": "TH, as Hercules, would go up to the Olympus to live with the Gods" + }, + { + "Date": "2020-08-28T00:00:00", + "Tournament": "Alternate Pre-ABP", + "Round": "Novice_Final", + "Motion": "In universities where affirmative action for women exists, this house would institute affirmative action for men in departments where they are under-represented." + }, + { + "Date": "2020-08-28T00:00:00", + "Tournament": "Alternate Pre-ABP", + "Round": "Open_Quarter", + "Motion": "THBT the world would be better off if the human race would cease to exist" + }, + { + "Date": "2020-08-28T00:00:00", + "Tournament": "Alternate Pre-ABP", + "Round": "Open_Semi", + "Motion": "This house believes that regional alliances should not take a stance on the elections of their member states, assuming free and fair elections are possible in that member country" + }, + { + "Date": "2020-08-28T00:00:00", + "Tournament": "Alternate Pre-ABP", + "Round": "Open_Final", + "Motion": "THBT state x should increase taxes as opposed to cutting government spending" + }, + { + "Date": "2020-08-26T00:00:00", + "Tournament": "WSDC Practice Spars", + "Round": 1, + "Motion": "THP a tech industry characterized by multiple smaller firms rather than one dominated by a few large players (e.g. Google Amazon Facebook in status quo)" + }, + { + "Date": "2020-08-26T00:00:00", + "Tournament": "WSDC Practice Spars", + "Round": 2, + "Motion": "THR the rise of the commercialisation of surrogacy in developing countries" + }, + { + "Date": "2020-08-26T00:00:00", + "Tournament": "WSDC Practice Spars", + "Round": 3, + "Motion": "THW subsidise companies for the employment of ex-convicts" + }, + { + "Date": "2020-08-22T00:00:00", + "Tournament": "Victoria's Cup", + "Round": 1, + "Motion": "THS the use of shaming to advance social causes" + }, + { + "Date": "2020-08-22T00:00:00", + "Tournament": "Victoria's Cup", + "Round": 2, + "Motion": "TH, as an immigrant parent, would raise their child exclusively in their own (minority) language" + }, + { + "Date": "2020-08-22T00:00:00", + "Tournament": "Victoria's Cup", + "Round": 3, + "Motion": "THBT developing nations should choose to protect their own industries rather than be more open to trade" + }, + { + "Date": "2020-08-22T00:00:00", + "Tournament": "Victoria's Cup", + "Round": 4, + "Motion": "THBT Australian Indigenous groups should focus on expanding the powers and resources of Land Councils rather than seeking change through State/Federal Parliaments" + }, + { + "Date": "2020-08-22T00:00:00", + "Tournament": "Victoria's Cup", + "Round": 5, + "Motion": "THW ban corporate sponsorship of academic research" + }, + { + "Date": "2020-08-22T00:00:00", + "Tournament": "Victoria's Cup", + "Round": "Novice_Final", + "Motion": "THBT feminists should never critique mothers’ parenting except where it is obviously abusive or neglectful" + }, + { + "Date": "2020-08-22T00:00:00", + "Tournament": "Victoria's Cup", + "Round": "Open_Semi", + "Motion": "TH, as a religious leader, would deny membership to politicians who vote contrary to our religious teachings" + }, + { + "Date": "2020-08-22T00:00:00", + "Tournament": "Victoria's Cup", + "Round": "Open_Final", + "Motion": "THR the concept of undonditional love" + }, + { + "Date": "2020-08-21T00:00:00", + "Tournament": "Cross-DebSoc Pre-ABP Tournament 2020", + "Round": 1, + "Motion": "THW deprioritize the distribution of the COVID-19 vaccines to those who contravene public health protocol (eg: spreading false rumours about COVID, refusing to wear a mask)" + }, + { + "Date": "2020-08-21T00:00:00", + "Tournament": "Cross-DebSoc Pre-ABP Tournament 2020", + "Round": 2, + "Motion": "THS the \"Free School\"Philosophy" + }, + { + "Date": "2020-08-21T00:00:00", + "Tournament": "Cross-DebSoc Pre-ABP Tournament 2020", + "Round": 3, + "Motion": "THW, as Lebanon, welcome significantly greater French influence over its domestic affairs (e.g. political-constitutional arrangements, economic policies etc.)" + }, + { + "Date": "2020-08-21T00:00:00", + "Tournament": "Cross-DebSoc Pre-ABP Tournament 2020", + "Round": 4, + "Motion": "THO all media and literature that romanticizes mental illness" + }, + { + "Date": "2020-08-21T00:00:00", + "Tournament": "Cross-DebSoc Pre-ABP Tournament 2020", + "Round": 5, + "Motion": "THBT feminists should adopt \"call-in\" instead of \"call-out\" as their dominant strategy." + }, + { + "Date": "2020-08-21T00:00:00", + "Tournament": "Cross-DebSoc Pre-ABP Tournament 2020", + "Round": "Open_Quarter", + "Motion": "THS local movements in Asia adopting western terminology and strategies to push the cause forward" + }, + { + "Date": "2020-08-21T00:00:00", + "Tournament": "Cross-DebSoc Pre-ABP Tournament 2020", + "Round": "Open_Semi", + "Motion": "THW, as the Democratic National Convention, support the Make Billionaires Pay Tax." + }, + { + "Date": "2020-08-21T00:00:00", + "Tournament": "Cross-DebSoc Pre-ABP Tournament 2020", + "Round": "Open_Final", + "Motion": "Assuming the technology was available, THW allow people to erase specific memories of their choice from existence." + }, + { + "Date": "2020-08-21T00:00:00", + "Tournament": "IBA DU Nations League", + "Round": 1, + "Motion": "THBT democracies should allow people to opt into religious courts that punish them for acts that are deemed to be offences under their religion, as long as they remain members of that religion" + }, + { + "Date": "2020-08-21T00:00:00", + "Tournament": "IBA DU Nations League", + "Round": 2, + "Motion": "TH, as fans of the club, supports a takeover by the Saudi Arabian Public Investment Fund." + }, + { + "Date": "2020-08-21T00:00:00", + "Tournament": "IBA DU Nations League", + "Round": 3, + "Motion": "THW break up companies that are deemed threats to the democratic process, even when they do not harm consumer welfare" + }, + { + "Date": "2020-08-21T00:00:00", + "Tournament": "IBA DU Nations League", + "Round": 4, + "Motion": "THR the belief that forgiveness is a virtue" + }, + { + "Date": "2020-08-21T00:00:00", + "Tournament": "IBA DU Nations League", + "Round": 5, + "Motion": "THBT the US should ban the sale of vital components for the manufacturing of electronic devices (eg semiconductors), which are produced in the US or use American technology or software*, to Huawei and other major Chinese companies. (*the vast majority of currently produced components)" + }, + { + "Date": "2020-08-21T00:00:00", + "Tournament": "IBA DU Nations League", + "Round": "Open_Final", + "Motion": "THBT comedians from minority communities should not base their comedy on stereotypes and slurs about their own groups." + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": 1, + "Motion": "THW abolish the prison system" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": 1, + "Motion": "THW allow single parents to raise their children in prisons" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": 1, + "Motion": "THR the popularity of the \"cop show\"" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": 2, + "Motion": "THS the vision of the ASEAN Economic Community" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": 2, + "Motion": "THBT developing countries would ban the purchase of land by foreign individuals and companies" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": 2, + "Motion": "THBT micro-finance organizations should offer micro-finance loans in developing nations exclusively to women" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": 3, + "Motion": "THS the Animal Liberation Front" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": 3, + "Motion": "Th, as the LGBTQ+ movement, regrets the advocacy strategy of strongly encouraging people to declare their sexual orientation (e.g: national coming out day)" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": 3, + "Motion": "THR Celebrity CEOs" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": 4, + "Motion": "THBT the West should place a ban on providing military aid to authoritatian regimes" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": 4, + "Motion": "TH as the UK Supports the PM's proposal and would expand the proposal to grant unconditional citizenship to all residents of Hong Kong" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": 4, + "Motion": "THBT extreme economic need should be grounds for asylum" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": 5, + "Motion": "THBT the Netflix series \"Indian Matchmaking\" does more harm than good" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": 5, + "Motion": "As someone who is in a healthy fling with someone else, but not sexually satisfied, THW ghost instead of breaking up" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": 5, + "Motion": "THS \"gold digging\"" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": "Novice_Semi", + "Motion": "THBT the feminist movement should support polyamorous relationships" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": "Novice_Semi", + "Motion": "THR the narrative that difficulties and struggles in one's lived experience are \"empowering\" (e.g. glorified stories about Oprah's harsh experiences with racism and misogyny)" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": "Novice_Semi", + "Motion": "THBT social movements should prioritize calling-in problematic inividuals and behaviours rather than calling them out" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": "Novice_Final", + "Motion": "THP a world where all humans are born as adults" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": "Novice_Final", + "Motion": "Instead of leaving the decision up to the producing company, THW legally require that Self-Driving Cars produced by companies always choose to maximise the number of lives saved, even if it leads to the death of the passengers" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": "Novice_Final", + "Motion": "THS movements that advocate for the provision of negative rights to sentient AI" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": "Open_Quarter", + "Motion": "THBT poverty should receive suspect classification in the US legal system" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": "Open_Quarter", + "Motion": "THW legalize betting on electoral processes" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": "Open_Quarter", + "Motion": "In multi party states with a significant ethnic minority population, TH supports the creation of political parties with the primary purpose of pursuing the interests of that ethnic minority group" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": "Open_Final", + "Motion": "THP a world in which most people are determinists to a world in which most people believe in free will" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": "Open_Final", + "Motion": "THW prefer to live in a world where one was mortal but could precisely schedule and plan out one`s death" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "East Coast Asians", + "Round": "Open_Final", + "Motion": "Assuming the technology exists, THS the use of non-sentient artifical intelligence that imitates deceased loved ones in appearance, personality, and mannerism" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "Feminism Open 2020", + "Round": 1, + "Motion": "TH, as the feminist movement, would advocate for the ban of violent/ unrealistic porn." + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "Feminism Open 2020", + "Round": 2, + "Motion": "THBT spouses of political figures should not be recognized as public figures." + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "Feminism Open 2020", + "Round": 3, + "Motion": "THBT the LGBTQ community should actively boycott the Harry Potter series." + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "Feminism Open 2020", + "Round": 4, + "Motion": "Assuming there exists the technology to divide the 40 weeks of pregnancy between two partners in any possible way, THW mandate that each partner carries for half the term." + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "Feminism Open 2020", + "Round": "EFL_Final", + "Motion": "THR the narrative that the man box is a form of oppression" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "Feminism Open 2020", + "Round": "Open_Semi", + "Motion": "THP the hypersexualisation of men rather than the desexualisation of women" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "Feminism Open 2020", + "Round": "Open_Final", + "Motion": "Assuming feasibility, THW create a matriarchal state within each nation and allow anyone to move there" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "MIDP Round Robin 2020", + "Round": 1, + "Motion": "THW hold religious leaders liable when identifiable adult believers are harmed by adhering to doctrinal teachings" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "MIDP Round Robin 2020", + "Round": 2, + "Motion": "THR the continuation of NATO after the dissolution of the USSR" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "MIDP Round Robin 2020", + "Round": 3, + "Motion": "THW allow ex-felons to become police officers" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "MIDP Round Robin 2020", + "Round": 4, + "Motion": "THBT indebted countries should prioritize social spending over paying back loans" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "MIDP Round Robin 2020", + "Round": 5, + "Motion": "THBT post conflict states should not instil nationalism through the education system" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "MIDP Round Robin 2020", + "Round": "Open_Final", + "Motion": "someone pls provide this, it isn't available online" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "The Novice Debate", + "Round": 1, + "Motion": "THW allow illegally obtained evidence to be admissable in court" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "The Novice Debate", + "Round": 2, + "Motion": "THBT members of a minority group should oppose popular media that innacurately portrays the culture, struggles or history of traditionally marginalised groups (i.e. Hamilton, Mulan)" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "The Novice Debate", + "Round": 3, + "Motion": "THS Governments Significantly Increasing Their Use of Big Data Based Predictive Models in Decision Making to Replace Human Judgements" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "The Novice Debate", + "Round": 4, + "Motion": "THR the romanticisation of Dark Tourism" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "The Novice Debate", + "Round": "Open_Quarter", + "Motion": "THP a world without the concept of fate and destiny" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "The Novice Debate", + "Round": "Open_Semi", + "Motion": "THBT in the event of an all out war between India and China the US should not intervene" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "Wilderness Open", + "Round": 1, + "Motion": "This House Prefers a world where curriculum emphasize on globally integrated history over regional history." + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "Wilderness Open", + "Round": 2, + "Motion": "THP trials where victims and defendants are anonymous" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "Wilderness Open", + "Round": 3, + "Motion": "THR the rise of T-10 cricket" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "Wilderness Open", + "Round": 4, + "Motion": "This house believes that developing nations with ethnically diverse populations should prohibit vernacular schools" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "Wilderness Open", + "Round": "Open_Quarter", + "Motion": "THBT the provision of emergency loans by the International Monetary Fund (IMF) and European Central Bank (ECB) should never be accompanied by fiscal or monetary policy conditions." + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "Wilderness Open", + "Round": "Open_Semi", + "Motion": "THW bar Hassan Diab and his cabinet from standing for parliamentary seats in Lebanon" + }, + { + "Date": "2020-08-15T00:00:00", + "Tournament": "Wilderness Open", + "Round": "Open_Final", + "Motion": "THS Fisher's Protocol" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Link Bate Championship III", + "Round": 1, + "Motion": "THW legalise euthanasia" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Link Bate Championship III", + "Round": 2, + "Motion": "THW abolish all private schools at the primary and secondary level" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Link Bate Championship III", + "Round": 3, + "Motion": "THW abolish all patents" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Link Bate Championship III", + "Round": 4, + "Motion": "Assuming the technology exists, THS genetic engineering to make humans more resistant to the effects of climate change" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Link Bate Championship III", + "Round": 5, + "Motion": "THW transfer the majority ownership of professional sporting clubs to non-profit organizations managed by elected members within their local communities" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Link Bate Championship III", + "Round": 6, + "Motion": "THBT the feminist movement should actively work with liberal religious leaders to change the religions' perception about women." + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Link Bate Championship III", + "Round": 7, + "Motion": "This House, as developing nations, would prioritize local industries over foreign MNCs (e.g. subsidize local car brands and tax foreign imported cars)" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Link Bate Championship III", + "Round": "Junior_Semi", + "Motion": "TH, as a parent from a middle income family, would adopt free range parenting" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Link Bate Championship III", + "Round": "Junior_Final", + "Motion": "THBT individuals convicted for crimes that were later legalised should be retrospectively cleared of those charges and released from prison if applicable." + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Link Bate Championship III", + "Round": "Open_Octa", + "Motion": "In sanctuary cities, THW grant undocumented immigrants the right to vote" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Link Bate Championship III", + "Round": "Open_Quarter", + "Motion": "THR the humanisation of villains in film and media (eg Joker, Maleficient, Gru, Megamind, etc)" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Link Bate Championship III", + "Round": "Open_Semi", + "Motion": "Assuming feasibility exists and with benefit of hindsight, TH as USA would go back in time and choose not to invade Afghanistan." + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Link Bate Championship III", + "Round": "Open_Final", + "Motion": "THS the creation of an international court to prosecute 'crimes against the earth'" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Princeton Round Robin 2020", + "Round": 1, + "Motion": "TH supports a ban on Chinese-owned social media apps (e.g. TikTok, WeChat)" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Princeton Round Robin 2020", + "Round": 2, + "Motion": "THBT all universities should permanently move from letter grades to pass/fail systems" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Princeton Round Robin 2020", + "Round": 3, + "Motion": "THB the International Community should allow breakaway republics in former Soviet states to join the Russian Federation, conditional on holding free and fair referenda" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Princeton Round Robin 2020", + "Round": 4, + "Motion": "THBT the government should offer cash compensation for the creation of pharmaceuticals to replace the patent system for pharmaceuticals" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Princeton Round Robin 2020", + "Round": 5, + "Motion": "THBT courts in emerging democracies should break up constantly dominant political parties" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Princeton Round Robin 2020", + "Round": "Open_Final", + "Motion": "THW rename Yale" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Westminster Debating Championships 2020", + "Round": 1, + "Motion": "THR the prominent usage of self deprecating humour by female poltiicians" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Westminster Debating Championships 2020", + "Round": 2, + "Motion": "In the event of First Contact occurring between humans and extra terrestrial life (aliens) on Earth, THBT humans should react immediately with pre emptive force." + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Westminster Debating Championships 2020", + "Round": 3, + "Motion": "THW ban TikTok" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Westminster Debating Championships 2020", + "Round": 4, + "Motion": "TH, as Joe Biden, would embrace a Green New Deal" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Westminster Debating Championships 2020", + "Round": "Open_Octa", + "Motion": "TH as the OIC would cease business with China (e.g freezing assets, boycotting firms, imposing tariffs, imposing sanctions) until the Uighurs are given safety and religious liberty." + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Westminster Debating Championships 2020", + "Round": "Open_Quarter", + "Motion": "THP a world where homo sapiens are not the sole surviving human species" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Westminster Debating Championships 2020", + "Round": "Open_Semi", + "Motion": "THW include regret as a factor in sentencing" + }, + { + "Date": "2020-08-08T00:00:00", + "Tournament": "Westminster Debating Championships 2020", + "Round": "Open_Final", + "Motion": "THBT WSDC adjudication should switch to a consensus methodology of adjudication." + }, + { + "Date": "2020-08-07T00:00:00", + "Tournament": "DSDC Coherence 2020", + "Round": 1, + "Motion": "THBT that national boards should have the right to disallow a player from participating in international domestic sporting leagues" + }, + { + "Date": "2020-08-07T00:00:00", + "Tournament": "DSDC Coherence 2020", + "Round": 2, + "Motion": "TH, as an activist residing in Hong Kong who holds a BNO passport, would take up the deal being offered by UK" + }, + { + "Date": "2020-08-07T00:00:00", + "Tournament": "DSDC Coherence 2020", + "Round": 3, + "Motion": "THBT philanthropists should donate to environmental protection as opposed to poverty alleviation" + }, + { + "Date": "2020-08-07T00:00:00", + "Tournament": "DSDC Coherence 2020", + "Round": 4, + "Motion": "THP a world where radical revolutionaries (Malcolm X, Bhagat Singh) are celebrated over peaceful revolutionaries (Mahatma Gandhi, MLK Jr)" + }, + { + "Date": "2020-08-07T00:00:00", + "Tournament": "DSDC Coherence 2020", + "Round": "HighSchool_Final", + "Motion": "THR the narrative that one must \"do what they love\"" + }, + { + "Date": "2020-08-07T00:00:00", + "Tournament": "DSDC Coherence 2020", + "Round": "Novice_Final", + "Motion": "THP to live in a world where personal success and failure are seen as a consequence of random factors rather than personal choice" + }, + { + "Date": "2020-08-07T00:00:00", + "Tournament": "DSDC Coherence 2020", + "Round": "Open_Quarter", + "Motion": "TH, as an average resident of Gaza, would support Hamas and their agendas" + }, + { + "Date": "2020-08-07T00:00:00", + "Tournament": "DSDC Coherence 2020", + "Round": "Open_Semi", + "Motion": "THBT the IMF should require collateral for bailouts" + }, + { + "Date": "2020-08-07T00:00:00", + "Tournament": "DSDC Coherence 2020", + "Round": "Open_Final", + "Motion": "THBT feminists should reclaim and celebrate traits (such as empathy, nurturing) and activities (gardening, cooking) associated with femininity as empowering" + }, + { + "Date": "2020-08-07T00:00:00", + "Tournament": "The Grand Spar August", + "Round": 1, + "Motion": "THW strip the voting rights of individuals that did not vote in more than 2 consecutive election cycles" + }, + { + "Date": "2020-08-07T00:00:00", + "Tournament": "The Grand Spar August", + "Round": 2, + "Motion": "THBT in countries where National Service is mandatory, feminists should push for the inclusion of women to be conscripted as well" + }, + { + "Date": "2020-08-07T00:00:00", + "Tournament": "The Grand Spar August", + "Round": 3, + "Motion": "THW remove the privilege of self incrimination" + }, + { + "Date": "2020-08-07T00:00:00", + "Tournament": "The Grand Spar August", + "Round": 4, + "Motion": "This house supports health insurance companies offering optional lump sum payments to terminally ill patients who choose to forgo expensive life extending medical treatments." + }, + { + "Date": "2020-08-07T00:00:00", + "Tournament": "The Grand Spar August", + "Round": "Open_Final", + "Motion": "Assuming feasibility, THW allow individuals to sell their units of Intelligence Quotient (IQ)" + }, + { + "Date": "2020-08-02T00:00:00", + "Tournament": "Astana EUDC 2020", + "Round": 1, + "Motion": "This House Would only allow university admission on the basis of standardized testing, as opposed to non-quantitative methods (e.g. essays, alumni interviews)" + }, + { + "Date": "2020-08-02T00:00:00", + "Tournament": "Astana EUDC 2020", + "Round": 2, + "Motion": "This House Would ban Amazon's internal arbitration courts." + }, + { + "Date": "2020-08-02T00:00:00", + "Tournament": "Astana EUDC 2020", + "Round": 3, + "Motion": "This House Opposes the commercialization of Mindfulness" + }, + { + "Date": "2020-08-02T00:00:00", + "Tournament": "Astana EUDC 2020", + "Round": 4, + "Motion": "This House Believes That pro-democratic activists should use fake news and synthetic media (e.g. \"deepfake\", fake video or audio recordings) to advance their cause." + }, + { + "Date": "2020-08-02T00:00:00", + "Tournament": "Astana EUDC 2020", + "Round": 5, + "Motion": "THR the trend of central banks setting extremely low interest rates after the 2008 financial crisis" + }, + { + "Date": "2020-08-02T00:00:00", + "Tournament": "Astana EUDC 2020", + "Round": 6, + "Motion": "This House Believes That 10 Minute School should remove the videos" + }, + { + "Date": "2020-08-02T00:00:00", + "Tournament": "Astana EUDC 2020", + "Round": 7, + "Motion": "Given the technology, THW erase society's memory and evidence of the criminal past of former convicts after their release from prison." + }, + { + "Date": "2020-08-02T00:00:00", + "Tournament": "Astana EUDC 2020", + "Round": 8, + "Motion": "This House Believes That leaders of an occupied nation should not assist the occupying powers in maintaining stability." + }, + { + "Date": "2020-08-02T00:00:00", + "Tournament": "Astana EUDC 2020", + "Round": 9, + "Motion": "This House Would ban ownership consolidation of newspapers by a single entity e.g. private equity firms, single media company" + }, + { + "Date": "2020-08-02T00:00:00", + "Tournament": "Astana EUDC 2020", + "Round": "ESL_Quarter", + "Motion": "This House Would force individuals suspected of being a \"stolen child\" under the junta to undergo DNA testing to establish whether they are indeed stolen children." + }, + { + "Date": "2020-08-02T00:00:00", + "Tournament": "Astana EUDC 2020", + "Round": "ESL_Semi", + "Motion": "THBT countries should suspend all elections in times of severe health crises" + }, + { + "Date": "2020-08-02T00:00:00", + "Tournament": "Astana EUDC 2020", + "Round": "ESL_Final", + "Motion": "THW only recruit atheists to be part of the group, and would not allow any religious books or items of worship on board" + }, + { + "Date": "2020-08-02T00:00:00", + "Tournament": "Astana EUDC 2020", + "Round": "Open_Octa", + "Motion": "This House Would ban insurance coverage for sexual misconduct claims." + }, + { + "Date": "2020-08-02T00:00:00", + "Tournament": "Astana EUDC 2020", + "Round": "Open_Quarter", + "Motion": "This House Would transfer management of all water resources to an international body." + }, + { + "Date": "2020-08-02T00:00:00", + "Tournament": "Astana EUDC 2020", + "Round": "Open_Semi", + "Motion": "TH, as Israel, would form a strategic military alliance with the Kurds in Syria." + }, + { + "Date": "2020-08-02T00:00:00", + "Tournament": "Astana EUDC 2020", + "Round": "Open_Final", + "Motion": "THW allow police officers to refuse orders on grounds of conscience" + }, + { + "Date": "2020-08-01T00:00:00", + "Tournament": "Taylor's Debate Open", + "Round": 1, + "Motion": "THBT feminists in India should attempt to infiltrate and reform the arranged marriage industry as opposed to fight for its abolishment" + }, + { + "Date": "2020-08-01T00:00:00", + "Tournament": "Taylor's Debate Open", + "Round": 2, + "Motion": "THR the glorification of immediate postcolonial leaders in Africa" + }, + { + "Date": "2020-08-01T00:00:00", + "Tournament": "Taylor's Debate Open", + "Round": 3, + "Motion": "THBT charities and non-profit organizations should be given votes in elections proportional to the amount of donations they receive." + }, + { + "Date": "2020-08-01T00:00:00", + "Tournament": "Taylor's Debate Open", + "Round": 4, + "Motion": "TH, as Likud, W support and adopt the Jewish People’s Intelligence Services Doctrine." + }, + { + "Date": "2020-08-01T00:00:00", + "Tournament": "Taylor's Debate Open", + "Round": "Open_Octa", + "Motion": "TH, as the Catholic Church, would prioritize impact investing over direct charity to communities" + }, + { + "Date": "2020-08-01T00:00:00", + "Tournament": "Taylor's Debate Open", + "Round": "Ope_Quarter", + "Motion": "THBT South Indian film industries should integrate with Bollywood" + }, + { + "Date": "2020-08-01T00:00:00", + "Tournament": "Taylor's Debate Open", + "Round": "Open_Semi", + "Motion": "TH, as a prominent pro-independence activist in Hong Kong, would align as pro-China in an effort to run for upcoming elections." + }, + { + "Date": "2020-08-01T00:00:00", + "Tournament": "Taylor's Debate Open", + "Round": "Open_Final", + "Motion": "In Western Liberal democracies, THR the queer movement's primary form of collectivization transitioning from riots/protests into pride celebrations/parades" + }, + { + "Date": "2020-07-31T00:00:00", + "Tournament": "Indian Womxn's Debating Championship 2020", + "Round": 1, + "Motion": "THW ban the buying and selling of emotional services" + }, + { + "Date": "2020-07-31T00:00:00", + "Tournament": "Indian Womxn's Debating Championship 2020", + "Round": 2, + "Motion": "THW grant Indigenous communities exclusive legal rights to control distribution of traditional folklore, music, dance" + }, + { + "Date": "2020-07-31T00:00:00", + "Tournament": "Indian Womxn's Debating Championship 2020", + "Round": 3, + "Motion": "THBT international development institutions should not finance natural resource extraction projects in corrupt states" + }, + { + "Date": "2020-07-31T00:00:00", + "Tournament": "Indian Womxn's Debating Championship 2020", + "Round": 4, + "Motion": "THS the narrative that the decision to have a biological child is a selfish one" + }, + { + "Date": "2020-07-31T00:00:00", + "Tournament": "Indian Womxn's Debating Championship 2020", + "Round": 5, + "Motion": "THBT states should not prosecute members of terrorist organisations (e.g. ISIS, Al-Qaeda) who surrender to those states" + }, + { + "Date": "2020-07-31T00:00:00", + "Tournament": "Indian Womxn's Debating Championship 2020", + "Round": "Novice_Semi", + "Motion": "TH, as X, would not accept the offer" + }, + { + "Date": "2020-07-31T00:00:00", + "Tournament": "Indian Womxn's Debating Championship 2020", + "Round": "Novice_Final", + "Motion": "THBT India should lease Protected Areas to local residents" + }, + { + "Date": "2020-07-31T00:00:00", + "Tournament": "Indian Womxn's Debating Championship 2020", + "Round": "Open_Quarter", + "Motion": "THBT feminists should challenge militarism instead of advocating for the \"right to fight\" (ex. pushing for the inclusion of women in national draft registration and combat duty_" + }, + { + "Date": "2020-07-31T00:00:00", + "Tournament": "Indian Womxn's Debating Championship 2020", + "Round": "Open_Semi", + "Motion": "THBT the general economic policy of countries should aim to increase Gross National Happiness rather than standard economic measures (eg, Gross Domestic Product)" + }, + { + "Date": "2020-07-31T00:00:00", + "Tournament": "Indian Womxn's Debating Championship 2020", + "Round": "Open_Final", + "Motion": "THBT individuals should vote based on their principles rather than on the electability of the candidates (eg by vote-spoiling in the #undirosak movement, or by voting for fringe candidates)" + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "KCL Online Open 2020", + "Round": 1, + "Motion": "THP a parliamentary electoral system which includes a constituency link" + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "KCL Online Open 2020", + "Round": 2, + "Motion": "TH opposes the derogatory usage of the inherent identity characteristics of dominant groups - e.g. \"You're so white.\", \"Man Tears\", \"ugh such a Karen\"." + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "KCL Online Open 2020", + "Round": 3, + "Motion": "THBT Central Asian states should significantly disassociate from Russian cultural influence (e.g. language, the arts, media, history etc.)." + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "KCL Online Open 2020", + "Round": 4, + "Motion": "Assuming there is a safe procedure, THW allow adults to permanently \"lock in\" their chosen personality traits (e.g. stubbornness, openness, honesty) as unchangeable." + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "KCL Online Open 2020", + "Round": 5, + "Motion": "In times of economic crises, THBT the government should withhold information that is likely to damage market confidence." + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "KCL Online Open 2020", + "Round": "ESL_Semi", + "Motion": "Given the opportunity, TH, as a talented young individual living in a Western Balkan country, would emigrate to pursue a career in the EU" + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "KCL Online Open 2020", + "Round": "ESL_Final", + "Motion": "THO the \"Toxic Positivity\" culture" + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "KCL Online Open 2020", + "Round": "Open_Quarters", + "Motion": "Given the opportunity, TH, as a talented young individual living in a Western Balkan country, would emigrate to pursue a career in the EU" + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "KCL Online Open 2020", + "Round": "Open_Semi", + "Motion": "THO the \"Toxic Positivity\" culture" + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "KCL Online Open 2020", + "Round": "Open_Final", + "Motion": "THP to be alone in the universe" + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "Womxn and Gender Minorities Online Debate Open", + "Round": 1, + "Motion": "THR the prominence of creator-driven content" + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "Womxn and Gender Minorities Online Debate Open", + "Round": 2, + "Motion": "THP the removal of sex and gender markers (e.g., on government forms, IDs, and other areas of legal recognition) as opposed to the inclusion of nonbinary, \"X\", and other gender or sex markers" + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "Womxn and Gender Minorities Online Debate Open", + "Round": 3, + "Motion": "THS facilitating massive emigration as a response to oppressive regimes." + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "Womxn and Gender Minorities Online Debate Open", + "Round": 4, + "Motion": "THBT developing countries should prohibit using the principal of petroleum funds to finance social and welfare programs." + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "Womxn and Gender Minorities Online Debate Open", + "Round": 5, + "Motion": "THO the use of \"desperation science\" during the coronavirus pandemic" + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "Womxn and Gender Minorities Online Debate Open", + "Round": "Novice_Final", + "Motion": "THR the popular belief in free will" + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "Womxn and Gender Minorities Online Debate Open", + "Round": "Open_Quarters", + "Motion": "THBT feminists should primarily combat pseudo-scientific claims of sex and gender based differences (e.g. claims that men are more intelligent/brave/strong) on the basis of their scientific inaccuracy as opposed to focusing on deconstructing the social value placed on those differences" + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "Womxn and Gender Minorities Online Debate Open", + "Round": "Open_Semi", + "Motion": "THBT parliamentary ridings and congressional districts should be drawn to maximize electoral competitiveness." + }, + { + "Date": "2020-07-25T00:00:00", + "Tournament": "Womxn and Gender Minorities Online Debate Open", + "Round": "Open_Final", + "Motion": "THP a world where epistemic humility is widely believed in, as opposed to a world where skepticism is widely believed in." + }, + { + "Date": "2020-07-24T00:00:00", + "Tournament": "Access Debate Tournament", + "Round": 1, + "Motion": "This House Would significantly decrease income tax rates for women" + }, + { + "Date": "2020-07-24T00:00:00", + "Tournament": "Access Debate Tournament", + "Round": 2, + "Motion": "This House Would give victims of crimes significant power over sentencing" + }, + { + "Date": "2020-07-24T00:00:00", + "Tournament": "Access Debate Tournament", + "Round": 3, + "Motion": "This House believes that contemporary social movements should focus on class differences rather than on identity-based discrimination (e.g. gender, race)" + }, + { + "Date": "2020-07-24T00:00:00", + "Tournament": "Access Debate Tournament", + "Round": 4, + "Motion": "This House, as a Pacific island state, would reject Chinese developmental assistance" + }, + { + "Date": "2020-07-24T00:00:00", + "Tournament": "Access Debate Tournament", + "Round": 5, + "Motion": "In post-conflict societies, This House prefers power-sharing agreements to unrestricted democracy." + }, + { + "Date": "2020-07-24T00:00:00", + "Tournament": "Access Debate Tournament", + "Round": "Open_Quarters", + "Motion": "Given the dichotomy, This House believes that animal rights activists should focus on the environmental impacts that meat consumption has on humans, rather than empathy for animals" + }, + { + "Date": "2020-07-24T00:00:00", + "Tournament": "Access Debate Tournament", + "Round": "Open_Semi", + "Motion": "This House believes that developing countries should prioritise the massive construction of infrastructure over the direct provision of high subsidies and social welfare" + }, + { + "Date": "2020-07-24T00:00:00", + "Tournament": "Access Debate Tournament", + "Round": "Open_Final", + "Motion": "This House believes that middle-class families should adopt a model of extended adolescence for their children, rather than one of early independence." + }, + { + "Date": "2020-07-19T00:00:00", + "Tournament": "An Najah Arabic Novice Online Debates", + "Round": 1, + "Motion": "THBT Palestinians should prefer their wellbeing over fighting injustices in Palestine" + }, + { + "Date": "2020-07-19T00:00:00", + "Tournament": "An Najah Arabic Novice Online Debates", + "Round": 2, + "Motion": "THP western individualism over local collectivism" + }, + { + "Date": "2020-07-19T00:00:00", + "Tournament": "An Najah Arabic Novice Online Debates", + "Round": 3, + "Motion": "THW direct the Palestinian economy toward information technology" + }, + { + "Date": "2020-07-19T00:00:00", + "Tournament": "An Najah Arabic Novice Online Debates", + "Round": "Open_Final", + "Motion": "THO Arab nationalism" + }, + { + "Date": "2020-07-18T00:00:00", + "Tournament": "The Debate Open", + "Round": 1, + "Motion": "THS the narrative that traditionally feminine qualities (e.g. compassion, kindness) enable female leaders to better deal with times of crisis" + }, + { + "Date": "2020-07-18T00:00:00", + "Tournament": "The Debate Open", + "Round": 2, + "Motion": "THW give people additional votes in proportion to their economic disadvantage" + }, + { + "Date": "2020-07-18T00:00:00", + "Tournament": "The Debate Open", + "Round": 3, + "Motion": "THO the societal narrative that forgiveness is a virtue" + }, + { + "Date": "2020-07-18T00:00:00", + "Tournament": "The Debate Open", + "Round": 4, + "Motion": "THBT governments of developing countries should aggressively disincentivize students from pursuing further education overseas" + }, + { + "Date": "2020-07-18T00:00:00", + "Tournament": "The Debate Open", + "Round": "Open_Quarter", + "Motion": "THBT the heads of central banks (eg: the Federal Reserve, the European Central Bank) should be democratically elected" + }, + { + "Date": "2020-07-18T00:00:00", + "Tournament": "The Debate Open", + "Round": "Open_Semi", + "Motion": "THR the rise of Nihilism in popular culture" + }, + { + "Date": "2020-07-18T00:00:00", + "Tournament": "The Debate Open", + "Round": "Open_Final", + "Motion": "THP a world where entry into Heaven is decided on peer-based evaulation as opposed to religious doctrine" + }, + { + "Date": "2020-07-17T00:00:00", + "Tournament": "Doxbridge 2: Euros Bungaloo", + "Round": 1, + "Motion": "THW abolish awards in creative fields (e.g., the Oscars for film, the Booker Prize or the Nobel for literature, the Future Generation Art Prize for art)." + }, + { + "Date": "2020-07-17T00:00:00", + "Tournament": "Doxbridge 2: Euros Bungaloo", + "Round": 2, + "Motion": "THBT governments should provide significant financial incentives for urban citizens to move to rural areas" + }, + { + "Date": "2020-07-17T00:00:00", + "Tournament": "Doxbridge 2: Euros Bungaloo", + "Round": 3, + "Motion": "THBT the education system should teach children to believe that they are personally culpable for the death and suffering in the developing world" + }, + { + "Date": "2020-07-17T00:00:00", + "Tournament": "Doxbridge 2: Euros Bungaloo", + "Round": 4, + "Motion": "TH, as the US, would prioritize economic engagement with North Korea instead of demanding nuclear disarmament" + }, + { + "Date": "2020-07-17T00:00:00", + "Tournament": "Doxbridge 2: Euros Bungaloo", + "Round": 5, + "Motion": "THS the shaming of individuals as a tactic for social movements to catalyse change (e.g. shaming individuals for not taking environmentally sustainable actions, shaming individuals for violating lockdown/quarantine policies)" + }, + { + "Date": "2020-07-17T00:00:00", + "Tournament": "Doxbridge 2: Euros Bungaloo", + "Round": "ESL_Semi", + "Motion": "THP a society that heavily emphasises collectivism rather than individualism" + }, + { + "Date": "2020-07-17T00:00:00", + "Tournament": "Doxbridge 2: Euros Bungaloo", + "Round": "ESL_Final", + "Motion": "THBT policies regarding the teaching and use of language should be descriptive rather than prescriptive" + }, + { + "Date": "2020-07-17T00:00:00", + "Tournament": "Doxbridge 2: Euros Bungaloo", + "Round": "Open_Quarter", + "Motion": "THR the glorification of the concept of genius" + }, + { + "Date": "2020-07-17T00:00:00", + "Tournament": "Doxbridge 2: Euros Bungaloo", + "Round": "Open_Semi", + "Motion": "THBT developing states are better off with elite-led technocratic governments as opposed to democratic ones" + }, + { + "Date": "2020-07-17T00:00:00", + "Tournament": "Doxbridge 2: Euros Bungaloo", + "Round": "Open_Final", + "Motion": "THP a world where Karmic reincarnation exists" + }, + { + "Date": "2020-07-17T00:00:00", + "Tournament": "Doxbridge 2: Euros Bungaloo", + "Round": "Schools_Semi", + "Motion": "THW introduce significant \"cost caps\" in sports" + }, + { + "Date": "2020-07-17T00:00:00", + "Tournament": "Doxbridge 2: Euros Bungaloo", + "Round": "Schools_Final", + "Motion": "TH, as a parent belonging to a minority religion, would discourage their children from expressing their faith publicly (e.g. crossing yourself, wearing hijabs, kippahs or other articles of faith, posting on social media, publicly attending mass, synagogues etc.)" + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 1, + "Motion": "That we regret the norm that doctors should defer to their patients' wishes, even where doing so is not in those patients' best interests." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 1, + "Motion": "That we oppose the medicalisation of learning disabilities." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 1, + "Motion": "That, as Joe Biden, we would choose to run on a ‘Medicare-for-All’ platform." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 2, + "Motion": "That the #MeToo movement has failed working class women." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 2, + "Motion": "That the government should provide incentives for the urban poor to migrate to rural areas." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 2, + "Motion": "That we support gamification in the workplace." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 3, + "Motion": "That we regret the ongoing prominence of cricket in postcolonial countries." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 3, + "Motion": "That we prefer a world where sports are not commercialised" + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 3, + "Motion": "That we would abolish the ‘one-year-out’ rule in the NBA." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 4, + "Motion": "That Palestinians should abandon their claim for statehood and opt for a civil rights struggle instead." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 4, + "Motion": "That we regret the Trump-Taliban peace deal agreement." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 4, + "Motion": "That we, as Benny Gantz, regret signing the coalition agreement between Likud and the Blue and White alliance." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 5, + "Motion": "That we regret the expectation that children should be shielded from all forms of danger." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 5, + "Motion": "That we would proportionately subsidise (e.g. scholarship and funding) university courses according to the employability of their graduates." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 5, + "Motion": "That we support a permanent move to online tertiary education." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 6, + "Motion": "That young people should reject traditionally empowered political parties." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 6, + "Motion": "That legislative bodies (e.g. parliament, congress, senate, councils) should be formed by sortition democracy." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 6, + "Motion": "That the Democratic Party should not embrace 'Never Trump' Republicans." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 7, + "Motion": "That we should ban high frequency trading" + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 7, + "Motion": "That we should limit the trading of individual shares and derivative products to licensed professionals." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 7, + "Motion": "That we should ban mortgage-based financial derivatives." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 8, + "Motion": "That we should ban mergers and acquisitions of mass media companies." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 8, + "Motion": "That social media companies should aggressively censor offensive and discriminatory content." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": 8, + "Motion": "That we prefer a world where social media networking sites are only available on a paid subscription basis." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "EFL_Quarter", + "Motion": "That the state's failure to address a pandemic should be considered as a crime against humanity." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "EFL_Quarter", + "Motion": "That criminal trials should continue even when the accused is deceased" + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "EFL_Quarter", + "Motion": "That the state should pay reparations to individuals convicted in the past for actions that are no longer recognised as a crime." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "EFL_Semi", + "Motion": "That developing countries should prioritise the massive construction of infrastructure over the direct provision of high subsidies and social welfare." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "EFL_Semi", + "Motion": "That we regret the rise of nation-states built around exclusive notions of language, race, and religion." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "EFL_Semi", + "Motion": "That it is illegitimate for states to limit immigration unless there is a clear threat to national security." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "EFL_Final", + "Motion": "That it is morally wrong to use subconscious manipulation to nudge citizens towards socially desirable choices." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "EFL_Final", + "Motion": "That activist movements should embrace cancel culture as a tool to promote social change." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "EFL_Final", + "Motion": "That France should abandon the principle of laïcité." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "ESL_Octa", + "Motion": "That we should abolish literary awards (e.g. the Man Booker Prize, the Nobel Prize for Literature)." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "ESL_Octa", + "Motion": "That we regret the stigmatisation of hedonistic lifestyles" + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "ESL_Octa", + "Motion": "That we support the creation of children's literature which teaches that people are neither good nor evil." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "ESL_Quarter", + "Motion": "That Non-Western LGBTQ activists should reject sex positivity" + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "ESL_Quarter", + "Motion": "That we regret the belief that individuals possess defined personality traits." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "ESL_Quarter", + "Motion": "That portrayals of religious deities and prophets in media should receive prior approval from relevant religious authorities." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "ESL_Semi", + "Motion": "That Western companies with a significant number of employees from the Indian diaspora should actively campaign against the caste system." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "ESL_Semi", + "Motion": "That ASEAN should transform itself into a political union" + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "ESL_Semi", + "Motion": "That, as developing nations, we would prefer to align with China than the United States." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "ESL_Final", + "Motion": "That, as a woman of colour living in a majority-white country, we would embrace, compete in and establish national beauty pageants for women of our ethnic heritage." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "ESL_Final", + "Motion": "That capitalism is incompatible with racial equality" + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "ESL_Final", + "Motion": "That we, as a Catholic priest, would actively endorse liberal values that do not align with the Catholic Church." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "Open_Double", + "Motion": "That we, as original producers of non-Western films, would deny Hollywood the right to produce remakes, unless a quota for non-Western actors/actresses is guaranteed." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "Open_Double", + "Motion": "That we prefer transformative to curatorial fandom" + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "Open_Double", + "Motion": "That Disney should remove from circulation cartoons from its history that contain racist caricatures." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "Open_Octa", + "Motion": "That we should stop the practice of requiring community's approval to build houses of worship." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "Open_Octa", + "Motion": "That, as minorities, we would engage in respectability politics" + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "Open_Octa", + "Motion": "That we would require companies to use absolute blind recruitment" + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "Open_Quarter", + "Motion": "That we should allow parents to sell shares in their children’s future income streams." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "Open_Quarter", + "Motion": "That we should reallocate public investment funds from start-ups to traditional small and medium-sized enterprises." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "Open_Quarter", + "Motion": "That the European Central Bank should monetise the government deficits of Eurozone countries experiencing financial crises." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "Open_Semi", + "Motion": "That, in countries where military service is mandatory only for men, as self-proclaimed feminist women, we would actively volunteer in the military." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "Open_Semi", + "Motion": "That we regret narratives that portray human progress as inevitable" + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "Open_Semi", + "Motion": "That we regret the emphasis placed on individual rights by social justice movements." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "Open_Final", + "Motion": "That we should grant legal personhood to culturally significant features of the natural environment." + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "Open_Final", + "Motion": "That we support compassionate conservation" + }, + { + "Date": "2020-07-11T00:00:00", + "Tournament": "Monash Australs 2020", + "Round": "Open_Final", + "Motion": "That, as environmentalists, we would choose a strategy of working closely with corporations." + }, + { + "Date": "2020-07-10T00:00:00", + "Tournament": "Borneo Online Debate Championship", + "Round": 1, + "Motion": "THBT Queer movements in the developing world Should attempt to dissociate themselves from modern Queer movements in the west" + }, + { + "Date": "2020-07-10T00:00:00", + "Tournament": "Borneo Online Debate Championship", + "Round": 2, + "Motion": "As the resistance group, THW accept the offer" + }, + { + "Date": "2020-07-10T00:00:00", + "Tournament": "Borneo Online Debate Championship", + "Round": 3, + "Motion": "THR the use of nostalgia in political campaigning" + }, + { + "Date": "2020-07-10T00:00:00", + "Tournament": "Borneo Online Debate Championship", + "Round": 4, + "Motion": "THO the demonization of dark humour / comedy" + }, + { + "Date": "2020-07-10T00:00:00", + "Tournament": "Borneo Online Debate Championship", + "Round": "Novice2_Final", + "Motion": "THR the Heroisation of Covid-19 Frontliners." + }, + { + "Date": "2020-07-10T00:00:00", + "Tournament": "Borneo Online Debate Championship", + "Round": "Novice_Final", + "Motion": "As an Asian parent, THW teach their child to actively reject the 'humble culture\"" + }, + { + "Date": "2020-07-10T00:00:00", + "Tournament": "Borneo Online Debate Championship", + "Round": "Open_Semi", + "Motion": "THBT the GNA and its allies should abandon any attempts at peace negotiations and continue its current push against the LNA" + }, + { + "Date": "2020-07-10T00:00:00", + "Tournament": "Borneo Online Debate Championship", + "Round": "Open_Final", + "Motion": "THS Black rights movements in the West's strategy of actively campaigning to defund the police instead of pushing for institutional reforms" + }, + { + "Date": "2020-07-06T00:00:00", + "Tournament": "CP Nationals 2020", + "Round": 1, + "Motion": "THO participation awards" + }, + { + "Date": "2020-07-06T00:00:00", + "Tournament": "CP Nationals 2020", + "Round": 2, + "Motion": "THBT the USMCA should pursue long term economic integration through a common currency" + }, + { + "Date": "2020-07-06T00:00:00", + "Tournament": "CP Nationals 2020", + "Round": 3, + "Motion": "THS the complete and total liberation of all animals" + }, + { + "Date": "2020-07-06T00:00:00", + "Tournament": "CP Nationals 2020", + "Round": 4, + "Motion": "THR the narrative that family love should be unconditional" + }, + { + "Date": "2020-07-06T00:00:00", + "Tournament": "CP Nationals 2020", + "Round": 5, + "Motion": "THW attend the Queer Liberation March rather than the Stonewall 50 March" + }, + { + "Date": "2020-07-06T00:00:00", + "Tournament": "CP Nationals 2020", + "Round": 6, + "Motion": "THS the withdrawal of companies from Hong Kong" + }, + { + "Date": "2020-07-06T00:00:00", + "Tournament": "CP Nationals 2020", + "Round": "Novice_Final", + "Motion": "THBT, given feasibility, companies should move to work from home" + }, + { + "Date": "2020-07-06T00:00:00", + "Tournament": "CP Nationals 2020", + "Round": "Open_Semi", + "Motion": "THW remove all restrictions on allowable areas of scientific research" + }, + { + "Date": "2020-07-06T00:00:00", + "Tournament": "CP Nationals 2020", + "Round": "Open_Final", + "Motion": "THBT when financial institutions are in need of financial assistance during recessions, the burden should fall upon creditors (e.g. via diluting shareholder value by turning debt into equity) rather than the government stepping in" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "ASDO 2020", + "Round": 1, + "Motion": "TH regrets virtue signalling on social media" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "ASDO 2020", + "Round": 2, + "Motion": "THBT X should take the job of CEO" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "ASDO 2020", + "Round": 3, + "Motion": "THBT Batman should abolish his no kill rule" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "ASDO 2020", + "Round": 4, + "Motion": "THW programme self-driving cars to prioritise the number of lives saved when faced with unavoidable collisions as opposed to prioritising the safety of the driver/passenger" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "ASDO 2020", + "Round": "Open_Semi", + "Motion": "THW require all historically major polluters to open their borders to environmental refugees" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "ASDO 2020", + "Round": "Open_Final", + "Motion": "THR effective altruism" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "DGBDS Mace 2020", + "Round": 1, + "Motion": "TH supports the rapid global elimination of both tariff and non-tariff barriers to free trade" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "DGBDS Mace 2020", + "Round": 2, + "Motion": "In countries with a lack of medical professionals, TH, rather than regulate who can be a healthcare professional, would provide optional certifications of competence" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "DGBDS Mace 2020", + "Round": 3, + "Motion": "THR The increasing trend of left wing censorship in university campuses and the overall academic and literary sphere" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "DGBDS Mace 2020", + "Round": 4, + "Motion": "This House Believes That the state should strongly incentivise highly educated individuals to have children" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "DGBDS Mace 2020", + "Round": "Open_Quarter", + "Motion": "This House believes that the protections of international law conventions and treaties should not apply to combatants from terrorist organisations (e.g. prohibition on torture, prisoner of war status, guarantee of post-conflict release)" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "DGBDS Mace 2020", + "Round": "Open_Semi", + "Motion": "THP a world in which African nations persued aggressive trade deals with China at the expense of all western aid" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "DGBDS Mace 2020", + "Round": "Open_Final", + "Motion": "THW make all punishments imposed by the criminal justice system proportional to the wealth of the accused" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "St Petersburg Online Open", + "Round": 1, + "Motion": "THR the narrative that in times of crisis (for example: major natural disasters, war, pandemics) frontline workers are national heroes" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "St Petersburg Online Open", + "Round": 2, + "Motion": "THP a world where significantly more women are cast in lead villain roles by film and TV studios" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "St Petersburg Online Open", + "Round": 3, + "Motion": "THW require policing budgets and policy to be decided by local referenda" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "St Petersburg Online Open", + "Round": 4, + "Motion": "THR the glorification of youth" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "St Petersburg Online Open", + "Round": 5, + "Motion": "THBT it would be in the interest of the Russian state to pivot away from China and towards the West" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "St Petersburg Online Open", + "Round": "Open_Quarter", + "Motion": "THR the focus on the personal identity and private actions of politicians" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "St Petersburg Online Open", + "Round": "Open_Semi", + "Motion": "TH prefers, as a means of enrolling people in the army, conscription by lottery rather than aggressive recruitment of volunteers" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "St Petersburg Online Open", + "Round": "Open_Final", + "Motion": "THBT the scientific community should reject the notion of \"non-overlapping magisteria\"" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "Suzhou Debate Open", + "Round": 1, + "Motion": "THW put an absolute cap on non-essential expenditure by parents on each of their children" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "Suzhou Debate Open", + "Round": 2, + "Motion": "THBT prominent social media platforms (e.g Twitter, Facebook, Weibo) should not allow politicians or political parties to make public accounts" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "Suzhou Debate Open", + "Round": 3, + "Motion": "THS the pirating and mass availability of academic resources" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "Suzhou Debate Open", + "Round": 4, + "Motion": "THW cancel all debts to international organisations (e.g. the IMF) or other countries held by the governments of the poorest 20% of countries" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "Suzhou Debate Open", + "Round": 5, + "Motion": "THBT in areas of socio-economic deprivation, schools should train students in vocational skills to the exclusion of the liberal arts" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "Suzhou Debate Open", + "Round": "Open_Quarter", + "Motion": "THS the illegal removal of statues of popular historical figures by social justice movements who consider them to be offensive (e.g statues of Winston Churchill in the UK, of Sukarno in Indonesia, etc)" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "Suzhou Debate Open", + "Round": "Open_Semi", + "Motion": "THBT international media organisations should only use local reporters to cover foreign stories and events" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "Suzhou Debate Open", + "Round": "Open_Final", + "Motion": "Assuming feasibility, THW allow individuals to sell their units of Intelligence Quotient (IQ)" + }, + { + "Date": "2020-07-04T00:00:00", + "Tournament": "Suzhou Debate Open", + "Round": "ProAm_Final", + "Motion": "THBT identity groups within the feminist movement (e.g. the trans community, black feminists, etc) should lobby and campaign as independent movements rather than together as a single movement" + }, + { + "Date": "2020-07-01T00:00:00", + "Tournament": "The Grand Spar July", + "Round": 1, + "Motion": "THW consider \"public interest\" as a mitigating factor for investigative journalists prosecuted for committing crimes (e.g. breaking and entering, breaching privacy etc) in the course of an investigation" + }, + { + "Date": "2020-07-01T00:00:00", + "Tournament": "The Grand Spar July", + "Round": 2, + "Motion": "Where resources are significantly limited, THBT states should actively promote religion in areas of high poverty." + }, + { + "Date": "2020-07-01T00:00:00", + "Tournament": "The Grand Spar July", + "Round": 3, + "Motion": "THBT it is legitimate for oppressed communities (e.g. poor African American communities in the US) to not pay taxes towards the government" + }, + { + "Date": "2020-07-01T00:00:00", + "Tournament": "The Grand Spar July", + "Round": 4, + "Motion": "THW break up big tech companies" + }, + { + "Date": "2020-07-01T00:00:00", + "Tournament": "The Grand Spar July", + "Round": "ProAm_Final", + "Motion": "THW compel all social media companies to offer multi-tiered paid subscription services instead of free for all access." + }, + { + "Date": "2020-06-30T00:00:00", + "Tournament": "Lockdown.Exe Debate League", + "Round": 1, + "Motion": "THBT the feminist movement should actively recruit conservative women" + }, + { + "Date": "2020-06-30T00:00:00", + "Tournament": "Lockdown.Exe Debate League", + "Round": 2, + "Motion": "THBT developed states should freeze all debt repayments from developing states until the COVID-19 crisis is effectively contained" + }, + { + "Date": "2020-06-30T00:00:00", + "Tournament": "Lockdown.Exe Debate League", + "Round": 3, + "Motion": "THBT the educational system should portray drug use in an objective way (with all pros and cons), rather than in an solely negative light" + }, + { + "Date": "2020-06-30T00:00:00", + "Tournament": "Lockdown.Exe Debate League", + "Round": 4, + "Motion": "THR the glamourization of start-up culture that encourages people to start their own businesses rather than pursuing traditional career paths" + }, + { + "Date": "2020-06-30T00:00:00", + "Tournament": "Lockdown.Exe Debate League", + "Round": 5, + "Motion": "THBT environmental advocacy groups should prioritize lobbying governments to change environmental policies (e.g. Cap and trade, banning environmentally harmful chemicals) rather than convincing individuals to take responsibility for their own contribution to environmental damage (e.g. reducing / recycling waste, taking public transit)" + }, + { + "Date": "2020-06-30T00:00:00", + "Tournament": "Lockdown.Exe Debate League", + "Round": 6, + "Motion": "THO the rise of billionaire philanthropy" + }, + { + "Date": "2020-06-30T00:00:00", + "Tournament": "Lockdown.Exe Debate League", + "Round": 7, + "Motion": "THS filial responsibility laws" + }, + { + "Date": "2020-06-30T00:00:00", + "Tournament": "Lockdown.Exe Debate League", + "Round": 8, + "Motion": "THBT developing nations should distribute, as a dividend to citizens, income derived from natural resource extraction" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Imperial IV", + "Round": 1, + "Motion": "THBT sex education classes in schools should teach techniques for sexual gratification (including, but not limited to, anal sex, oral sex, mutual gratification and masturbation)" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Imperial IV", + "Round": 2, + "Motion": "THBT Israel should adopt the Corpus Seperatum plan" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Imperial IV", + "Round": 3, + "Motion": "THBT Carrie Lam should resign" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Imperial IV", + "Round": 4, + "Motion": "THBT the US should require the NRA to pay reparations to victims of gun violence" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Imperial IV", + "Round": 5, + "Motion": "THW ban the creation of saviour siblings" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Imperial IV", + "Round": "Open_Quarters", + "Motion": "THW take the Blue Pill over the Red Pill" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Imperial IV", + "Round": "Open_Semi", + "Motion": "THBT India should join ASEAN" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Imperial IV", + "Round": "Open_Final", + "Motion": "THBT universities should establish \"dangerous spaces\"" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Imperial IV", + "Round": "ProAm_Final", + "Motion": "THR the rise of silicon valley culture" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Restricted Mara Open", + "Round": 1, + "Motion": "THBT South Korea should develop its own nucler weapons" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Restricted Mara Open", + "Round": 2, + "Motion": "THW grant only non-male individuals the right to bear arms" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Restricted Mara Open", + "Round": 3, + "Motion": "THBT Muslim majority states should not perform the hajj until Saudi Arabia and its allies withdraw from Yemen" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Restricted Mara Open", + "Round": 4, + "Motion": "THS the establishment of LGBTQIA+-only schools in conservative areas" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Restricted Mara Open", + "Round": "Novice_Semi", + "Motion": "THW allow children who have reached the age of majority to sue their parents for religious indoctrination" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Restricted Mara Open", + "Round": "Novice_Final", + "Motion": "THO the glorification of courage in popular culture" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Restricted Mara Open", + "Round": "Open_Quarters", + "Motion": "THBT India should seek prompt de-escalation, even at the expense of territorial concessions, in relation to China in the Sino-Indian conflict" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Restricted Mara Open", + "Round": "Open_Semi", + "Motion": "THW prefer not to be born than to live a deeply immoral yet pleasurable life" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Restricted Mara Open", + "Round": "Open_Final", + "Motion": "THBT it is in Mahathir's interest to cede leadership of the Opposition to Anwar Ibrahim" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Saskatoon WSDC 2020", + "Round": 1, + "Motion": "THW cancel all debts held by poor countries" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Saskatoon WSDC 2020", + "Round": 2, + "Motion": "THW put an absolute cap on non-essential expenditure by parents on each of their children" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Saskatoon WSDC 2020", + "Round": 3, + "Motion": "THW grant amnesty to members of drgu gangs operating in violent areas if gang leaders end all turf wars" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Saskatoon WSDC 2020", + "Round": 4, + "Motion": "THBT it is in the interests of the EU to offer Turkey accession into the union in exchange for a permanent commitment to housing refugees from the Syrian and Iraqi conflicts" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Saskatoon WSDC 2020", + "Round": 5, + "Motion": "THBT historically oppressed communities should heavily prioritize teaching values of individualism to their children" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Saskatoon WSDC 2020", + "Round": "Open_Semi", + "Motion": "THBT tourists should boycott Indigenous tourist destinations" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "Saskatoon WSDC 2020", + "Round": "Open_Final", + "Motion": "THBT all control of disputed religious sites should be ceded to the UN" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "UBC Fundraiser Open 2020", + "Round": 1, + "Motion": "TH, as a prominent director from a marginalized background, would prioritize developing TV shows and films with a multicultural, diverse cast over one focused specifically on their marginalized group." + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "UBC Fundraiser Open 2020", + "Round": 2, + "Motion": "Assuming this medicine exists and is widely accessible, This House Believes That universities should ban and actively test for this drug" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "UBC Fundraiser Open 2020", + "Round": 3, + "Motion": "TH as Japan Would nationalize their electronics industry" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "UBC Fundraiser Open 2020", + "Round": 4, + "Motion": "THBT people should never \"go above and beyond\" in the workplace" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "UBC Fundraiser Open 2020", + "Round": 5, + "Motion": "THBT feminist movements should adopt feminist icons that are adversarial and embody violence as opposed to icons that promote traditional norms, monetary prosperity and working within the system through cooperation." + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "UBC Fundraiser Open 2020", + "Round": "Novice_Final", + "Motion": "THR Breadtubers' prioritisation of trying to de-radicalise alt-righters" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "UBC Fundraiser Open 2020", + "Round": "Open_Semi", + "Motion": "THR the commercialization of genetic testing (eg: AncestryDNA, 23 & Me)" + }, + { + "Date": "2020-06-27T00:00:00", + "Tournament": "UBC Fundraiser Open 2020", + "Round": "Open_Final", + "Motion": "This House Prefers a world with city-states governed by an elected global leadership to the current predominance of nation-states." + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Astana Debate Union Online 2020", + "Round": 1, + "Motion": "THW implement the Teacher Independence Model in schools for children aged over 12." + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Astana Debate Union Online 2020", + "Round": 2, + "Motion": "THR twitter adding a fact-check function" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Astana Debate Union Online 2020", + "Round": 3, + "Motion": "THW incentivize work from home (*not only for the duration of the pandemic)" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Astana Debate Union Online 2020", + "Round": 4, + "Motion": "THW grant all nation states the right to veto any transfer, out of their country, of art which is deemed to be cultural heritage" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Astana Debate Union Online 2020", + "Round": 5, + "Motion": "THW forbid universities in the US from accepting research funding from China" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Astana Debate Union Online 2020", + "Round": "Open_Quarters", + "Motion": "THW spend the significant majority of foreign development aid on interventions proven to be effective by RCT." + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Astana Debate Union Online 2020", + "Round": "Open_Semi", + "Motion": "TH, as a feminist hacker, would seek to disrupt tradwife spaces (for example, by methods such as DDos, phishing, defacement)" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Astana Debate Union Online 2020", + "Round": "Open_Final", + "Motion": "THP the rule of the governing AI, with elections on priorities over, traditional representative democracy" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Evodio Online Open", + "Round": 1, + "Motion": "TH supports giving legal personhood to internationally recognized important environmental spaces (e.g., Mount Everest, the Amazon) as a form of conservation" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Evodio Online Open", + "Round": 2, + "Motion": "TH prefers a world with a widespread belief in radical freedom" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Evodio Online Open", + "Round": 3, + "Motion": "TH supports the creation of charter cities in the developing world" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Evodio Online Open", + "Round": 4, + "Motion": "THBT social movements should focus on publicly shaming corporations to change business practices rather than trying to achieve these outcomes through legislative action" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Evodio Online Open", + "Round": 5, + "Motion": "THBT the 'cultural defence' is a legitimate defence in criminal proceedings" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Evodio Online Open", + "Round": "Open_Quarters", + "Motion": "THBT the U.S. Federal Reserve should purchase equities (i.e., buy stocks)" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Evodio Online Open", + "Round": "Open_Semi", + "Motion": "TH supports the narrative that All Cops Are Bad" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Evodio Online Open", + "Round": "Open_Final", + "Motion": "TH prefers a world where romantic love is not the primary consideration in a marriage" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Hong Kong Pro Ams", + "Round": 1, + "Motion": "THW ban all forms of pornography" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Hong Kong Pro Ams", + "Round": 2, + "Motion": "THW ban standardized testing" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Hong Kong Pro Ams", + "Round": 3, + "Motion": "THW require parents to obtain the State's approval before having children" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Hong Kong Pro Ams", + "Round": 4, + "Motion": "THW hold city and local governments civilly responsible for deaths that can be ascribed to homelessness" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Hong Kong Pro Ams", + "Round": 5, + "Motion": "This house believes that feminists should criticise decisions made by women that seem to entrench patriarchal norms even where women claim it is their choice (e.g. foregoing careers to raise children, having cosmetic surgery)." + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Hong Kong Pro Ams", + "Round": "Open_Quarters", + "Motion": "THBT oppressed minority groups should pursue violent resistance (i.e. rioting) as opposed to peaceful protest when seeking reform." + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Hong Kong Pro Ams", + "Round": "Open_Semi", + "Motion": "TH, as Russia, would pursue an oil war against Saudi Arabia" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Hong Kong Pro Ams", + "Round": "Open_Final", + "Motion": "THP a world where people are unable to forget their life experiences" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Sarawak Schools Online Debating Championship 2020", + "Round": 1, + "Motion": "THR the idolization of individuals who achieved success without going through traditional education (Bill Gates, Mark Zuckerberg, etc)" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Sarawak Schools Online Debating Championship 2020", + "Round": 2, + "Motion": "THR the narrative that humans are innately bad" + }, + { + "Date": "2020-06-20T00:00:00", + "Tournament": "Sarawak Schools Online Debating Championship 2020", + "Round": 3, + "Motion": "In places with strong Islamophobia, THBT Muslim parents should homeschool their children" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 1, + "Motion": "THS the destruction of monuments of controversial historical figures." + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 1, + "Motion": "THS the rise of teenagers at the forefront of social movements (e.g. Gretta Thunberg, Malala Yousafzai, the Parkland students)." + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 1, + "Motion": "THBT hacking is an acceptable form of protest against large corporations." + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 2, + "Motion": "Assuming full social distancing isn't possible: This house, upon finding an opportunity, would escape to another city which is not yet infected." + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 2, + "Motion": "THBT governments should not fund reconstruction in areas prone to natural disasters." + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 2, + "Motion": "In times of crisis, where tradeoff is inevitable, THBT states should prioritise safety over freedom." + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 3, + "Motion": "TH, as Mowgli W stay in the jungle" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 3, + "Motion": "THBT Ezra Miller should drop out of the role for future movies in the series" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 3, + "Motion": "TH, as the Ministry of Magic W expose itself to the Muggle World" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 4, + "Motion": "THW make income tax for all women directly proportional to the national wage gap (e.g. if women earn on average 70% of what men earn, they would pay 70% of the income tax men pay for the same salary)" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 4, + "Motion": "THO the rise of entrepreneurs selling off their businesses to large corporations." + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 4, + "Motion": "THS the rise of disaster capitalism" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 5, + "Motion": "THBT Michael should not be convicted for his crimes" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 5, + "Motion": "Assuming there exists technology that can access and project memories, THW allow using it for evidence in court." + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 5, + "Motion": "THW allow the use of evidence obtained illegally in court" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 6, + "Motion": "THO the portrayal of female retributive violence" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 6, + "Motion": "THO the depiction of women in mythology as feminists (eg: Athena, Draupadi)" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": 6, + "Motion": "TH, as the LGBTQ+ community, supports Queer baiting" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": "Open_Octa", + "Motion": "THBT the working class should reject Bernie Sanders as the face of the working class movement for being a part of the 1%." + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": "Open_Octa", + "Motion": "THW require all research institutions to use at least 50% of their resources (time, staff, money, etc.) to do replication studies" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": "Open_Octa", + "Motion": "THS two party political systems over multiparty political systems" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": "Open_Quarter", + "Motion": "THW allow doctors to disclose incurable and terminal hereditary conditions to their patient's life partner against the patient's wishes" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": "Open_Quarter", + "Motion": "THP a world in which the dominant societal world-view is a realistic one rather than an optimistic one" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": "Open_Quarter", + "Motion": "THP a world in which people don't engage in virtue signalling" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": "Open_Semi", + "Motion": "THR the US pursuit of global energy dominance" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": "Open_Semi", + "Motion": "With the benefit of hindsight, TH, as the USA would not order the killing of the Iranian major general Qasem Soleimani at the beginning of this year" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": "Open_Semi", + "Motion": "TH, as Wakanda, would reveal itself to the world and adopt globalism, rather than remain in isolation" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": "Open_Final", + "Motion": "Assuming the technology to alter one's memories irreversibly exists, THW ban the use of the technology" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": "Open_Final", + "Motion": "THW use Soul 100" + }, + { + "Date": "2020-06-19T00:00:00", + "Tournament": "India Debate Open AP 2020", + "Round": "Open_Final", + "Motion": "THW allow convicted criminals whose crimes caused their victims suffering to choose to undergo the exact same experience as their victims did, by using the technology, as a substitute for a prison sentence." + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Cyberpunk IV", + "Round": 1, + "Motion": "This house, without knowledge of who they will be, would prefer to be born into the 2nd Moon" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Cyberpunk IV", + "Round": 2, + "Motion": "THS the existence of teleportation" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Cyberpunk IV", + "Round": 3, + "Motion": "THP a world where, starting tomorrow, women can shoot lightning from their fingertips" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Cyberpunk IV", + "Round": 4, + "Motion": "THW ban privately contracting the services of superheroes by individuals or companies" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Cyberpunk IV", + "Round": "Gold_Final", + "Motion": "Assuming the technology exists, this house would allow people to buy and sell years of their life." + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Cyberpunk IV", + "Round": "ProAm_Final", + "Motion": "Assuming the technology exists, this house would allow people to buy and sell years of their life." + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Cyberpunk IV", + "Round": "Silver_Final", + "Motion": "TH, as someone with hyperempathy, would not take the pill." + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Gwalia Open", + "Round": 1, + "Motion": "THBT parents should have the right to withdraw their children from all teaching about sex and relationships" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Gwalia Open", + "Round": 2, + "Motion": "THBT twitter should require individuals to use accounts uner their own name" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Gwalia Open", + "Round": 3, + "Motion": "TH regrets the narrative that hard work will lead to financial success" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Gwalia Open", + "Round": "Open_Final", + "Motion": "THW never hold referenda on measures of social lpolicy" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": 1, + "Motion": "THO the use of deferred prosecution agreements for large companies" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": 1, + "Motion": "This house supports, where possible, the loved ones (eg family, close friends) of victims of serious criminal offences being involved in the sentencing of the perpetrator (eg in consultation with the judge)." + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": 1, + "Motion": "THW abolish all legislatively set sentencing guidelines" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": 2, + "Motion": "This house, as the progressive movement, supports progressive candidates running on centrist platforms solely in order to get elected" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": 2, + "Motion": "TH, as the Biden campaign, would pick Elizabeth Warren as our Vice President" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": 2, + "Motion": "his house, as the progressive movement, supports progressive candidates running on centrist platforms solely in order to get elected" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": 3, + "Motion": "This house regrets the rise of low-fee, easy-to-access financial market trading services (e.g. Robinhood)" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": 3, + "Motion": "his house would impose an exit tax on citizens who choose to take up long term employment outside their country of origin." + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": 3, + "Motion": "THS closed shop arrangements" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": 4, + "Motion": "This house would implement a strict deadline for the length of time that children can be in foster care before being placed in a permanent home (eg returned to birth parents, in guardianship or adopted)" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": 4, + "Motion": "This house would prefer their child, in preschool and early primary school, to have one close friend rather than being 'popular' with several less-close 'friends'" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": 4, + "Motion": "This house believes that the feminist movement should aggressively praise mothers and motherhood" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": 5, + "Motion": "THR the commercialisation of spirituality" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": 5, + "Motion": "THP a world in which individuals did not feel strong emotions" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": 5, + "Motion": "This house believes that it is immoral to consume the art of creators who have been proven to be guilty of heinous offences" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": "Open_Quarters", + "Motion": "THBT the United States should leave Iraq" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": "Open_Quarters", + "Motion": "This house, as the EU, impose sanctions on countries with active prisoners of conscience." + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": "Open_Quarters", + "Motion": "This house, as a SEA nation involved in the South China Sea conflict, would opt to actively seek closer ties with China" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": "Open_Semi", + "Motion": "This house would require test-status cricketing nations to play each other at equivalent rates (e.g. South Africa would be required to play Afghanistan and Ireland approximately as often as they play India)" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": "Open_Semi", + "Motion": "THS efforts to colonize Mars" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": "Open_Semi", + "Motion": "This house regrets the narrative that one should respect authority figures even if you disagree with them" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": "Open_Final", + "Motion": "This house prefers process-based to outcomes-based environmental regulation" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": "Open_Final", + "Motion": "THBT humans owe a debt to Future Generations" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "Macquarie Open 2020", + "Round": "Open_Final", + "Motion": "THBT the environmentalist movement should prioritise the anthropocentrist value of nature in its rhetoric" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "NTU Debate Online Open", + "Round": 1, + "Motion": "TH, as the CCP, would publicly acknowledge their errors in their managing of COVID-19 & the creation of a pandemic, and agree to reasonable measures of assistance & compensation to the global community." + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "NTU Debate Online Open", + "Round": 2, + "Motion": "TH, in times of economic crisis, would ease bank capital adequacy requirements" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "NTU Debate Online Open", + "Round": 3, + "Motion": "THBT Indian feminist movement movements should adopt Lakshmi as a symbol of the movement rather than Kali" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "NTU Debate Online Open", + "Round": 4, + "Motion": "THW allow \"religious duty\" as a mitigating defense for crimes" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "NTU Debate Online Open", + "Round": "Open_Quarters", + "Motion": "THR the rise of ideological purity policing" + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "NTU Debate Online Open", + "Round": "Open_Semi", + "Motion": "THBT it is in the interest of the Aam Aadmi Party to join in a coalition with the Indian National Congress before contesting in the next general election." + }, + { + "Date": "2020-06-13T00:00:00", + "Tournament": "NTU Debate Online Open", + "Round": "Open_Final", + "Motion": "THBT ASEAN should abandon the China-ASEAN South China Sea Code of Conduct negotiations" + }, + { + "Date": "2020-06-12T00:00:00", + "Tournament": "BRAC Genders Online", + "Round": 1, + "Motion": "THW prohibit the dismissal of employees for their use of free speech or expression." + }, + { + "Date": "2020-06-12T00:00:00", + "Tournament": "BRAC Genders Online", + "Round": 2, + "Motion": "TH, as a POC witnessing a non-violent crime (theft, trespassing, drug possession) by another POC, would choose to not call the cops." + }, + { + "Date": "2020-06-12T00:00:00", + "Tournament": "BRAC Genders Online", + "Round": 3, + "Motion": "THBT gender and sexual minority groups (feminist and LGBTQIA+) should ensure that decision making and representation for their cause is done by members of the minority group and limit the advocacy of allies to support and mass action (such as protests and petitions)" + }, + { + "Date": "2020-06-12T00:00:00", + "Tournament": "BRAC Genders Online", + "Round": 4, + "Motion": "THW facilitate religious proselytization in areas of high socio-economic deprivation" + }, + { + "Date": "2020-06-12T00:00:00", + "Tournament": "BRAC Genders Online", + "Round": "Open_Quarters", + "Motion": "TH, as Bangladesh, would recognize Israel" + }, + { + "Date": "2020-06-12T00:00:00", + "Tournament": "BRAC Genders Online", + "Round": "Open_Semi", + "Motion": "THBT Lebanon should abolish the system of Confessionalism" + }, + { + "Date": "2020-06-12T00:00:00", + "Tournament": "BRAC Genders Online", + "Round": "Open_Final", + "Motion": "TH supports the creation of feminist political parties" + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Sumatra Online Debate Open 2020", + "Round": 1, + "Motion": "THBT GOVERNMENTS SHOULD HAVE AUTONOMY TO DIVERT A PORTION OF CHARITY DONATIONS TO CHARITIES THEY DEEM TO BE MORE USEFUL/RELEVANT" + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Sumatra Online Debate Open 2020", + "Round": 2, + "Motion": "As Black Lives Matter Movement, THW reject any form of participation from the police force within their protest activities" + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Sumatra Online Debate Open 2020", + "Round": 3, + "Motion": "As Annisa, THW take the job" + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Sumatra Online Debate Open 2020", + "Round": 4, + "Motion": "In asymmetric warfare, THBT it is a legitimate tactic for the significantly weaker side to target enemy civilian" + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Sumatra Online Debate Open 2020", + "Round": "Novice_Final", + "Motion": "THP a world where there is no belief in the afterlife" + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Sumatra Online Debate Open 2020", + "Round": "Open_Quarters", + "Motion": "THW implement TCDS on all criminals convicted of violent crimes" + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Sumatra Online Debate Open 2020", + "Round": "Open_Semi", + "Motion": "THW legalize \"hacking back\" in the private sector" + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Sumatra Online Debate Open 2020", + "Round": "Open_Final", + "Motion": "THP a wolrd in which every aspect of one's physical experience is indistinguishable from that of other people" + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Trinity Online Open 2020", + "Round": 1, + "Motion": "This House Would allow the use of performance enhancing drugs in professional sport" + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Trinity Online Open 2020", + "Round": 2, + "Motion": "This House Believes That minorities should not attempt to reclaim slurs that have been directed against them" + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Trinity Online Open 2020", + "Round": 3, + "Motion": "This House Believes That Ireland should significantly raise its corporate tax" + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Trinity Online Open 2020", + "Round": 4, + "Motion": "This House Opposes the Rise of Non-Career Politicians" + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Trinity Online Open 2020", + "Round": 5, + "Motion": "This House Believes That universities should continue with primarily online education post COVID-19" + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Trinity Online Open 2020", + "Round": "Open_Quarters", + "Motion": "This House Believes That Joe Biden should pick Elizabeth Warren as his Vice President running mate." + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Trinity Online Open 2020", + "Round": "Open_Semi", + "Motion": "This House Opposes Twitch's decision to ban sexually suggestive content on their platform" + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Trinity Online Open 2020", + "Round": "Open_Final", + "Motion": "This House Supports rioting as a means of fighting for social justice in the U.S." + }, + { + "Date": "2020-06-06T00:00:00", + "Tournament": "Trinity Online Open 2020", + "Round": "ProAm_Final", + "Motion": "This House Would violate the ceasefire and kill the leaders" + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 1, + "Motion": "THR World Athletics' decision to put an indefinite moratorium on future advances in shoe technology." + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 1, + "Motion": "THS granting IP protection for sports moves" + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 1, + "Motion": "Post the Covid-19 outbreak is contained, TH(the Bundesliga)W scrap the 50+1 rule." + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 2, + "Motion": "THBT major polluter nations should open their borders to climate refugees" + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 2, + "Motion": "THR the characterization of large scale policy reforms against social vices as wars For example --‘combating’" + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 2, + "Motion": "THBT regulation of overconsumption of common shared resources is justified" + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 3, + "Motion": "TH (the journalist) will reveal this information to the public" + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 3, + "Motion": "TH, as climate activists, would use interpretation of religious texts as a tool for climate action ( Eg invoking stories from the Ramayana’s Aranya Kaand to create narratives around forests, etc." + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 3, + "Motion": "THR the vilification of \"money mindedness\" in individuals" + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 4, + "Motion": "THBT women in politics actively moving away from \"the pantsuit\" does more harm than good" + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 4, + "Motion": "THR the rise of rainbow capitalism" + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 4, + "Motion": "TH, as a feminist, R the narrative that God is a Woman." + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 5, + "Motion": "THS privatisation of prisons" + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 5, + "Motion": "THP the Collegium System for the appointment of Federal Judges and Justices instead of Executive Nomination System in USA." + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 5, + "Motion": "THBT criminal law should not distinguish an attempt to commit a crime from successfully committing a crime." + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 6, + "Motion": "In times of economic crisis, THW abolish the minimum wage" + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 6, + "Motion": "(Assuming equal cost feasibility) THP UBI instead of traditional Welfare Programs(Medicare, Food stamps, PMJDY, etc) to tackle poverty." + }, + { + "Date": "2020-06-04T00:00:00", + "Tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "Round": 6, + "Motion": "THS the use of Negative Interest Rate Policies to tackle the economic downturn due to the Covid 19." + }, + { + "Date": "2020-06-01T00:00:00", + "Tournament": "The Grand Spar June", + "Round": 1, + "Motion": "THR violent protests" + }, + { + "Date": "2020-06-01T00:00:00", + "Tournament": "The Grand Spar June", + "Round": 2, + "Motion": "In a world where realistic android relationships are possible, THS the rise of relationships with realistic androids" + }, + { + "Date": "2020-06-01T00:00:00", + "Tournament": "The Grand Spar June", + "Round": 3, + "Motion": "THR cancel culture" + }, + { + "Date": "2020-06-01T00:00:00", + "Tournament": "The Grand Spar June", + "Round": 4, + "Motion": "THW remove veto powers from permanent security council members and redistribute it to historically neutral countries (e.g. Ireland, Switzerland, Panama, etc)" + }, + { + "Date": "2020-06-01T00:00:00", + "Tournament": "The Grand Spar June", + "Round": "ProAm_Final", + "Motion": "This house believes that progressive social movements in developing countries should prioritise campaigning for changes to official laws and governmental policies over changes in mass attitudes and beliefs." + }, + { + "Date": "2020-05-31T00:00:00", + "Tournament": "Circuit Breaker Debate Open", + "Round": 1, + "Motion": "As an 18 year old female from a lower income family receiving a scholarship to attend a highly prestigious yet highly competitive university, THW invest all their time and resources in the most lucrative field to work in, as opposed to seeking knowledge and experiences from multiple fields" + }, + { + "Date": "2020-05-31T00:00:00", + "Tournament": "Circuit Breaker Debate Open", + "Round": 2, + "Motion": "THS the rise of escapist media and art" + }, + { + "Date": "2020-05-31T00:00:00", + "Tournament": "Circuit Breaker Debate Open", + "Round": 3, + "Motion": "THW focus economic stimulus packages on businesses instead of individuals" + }, + { + "Date": "2020-05-31T00:00:00", + "Tournament": "Circuit Breaker Debate Open", + "Round": 4, + "Motion": "THR the rise of celebrity preachers" + }, + { + "Date": "2020-05-31T00:00:00", + "Tournament": "Circuit Breaker Debate Open", + "Round": "Novice_Final", + "Motion": "As environmental movements, THW focus on campaigning against having children as opposed to campaigning to reduce all forms of consumption" + }, + { + "Date": "2020-05-31T00:00:00", + "Tournament": "Circuit Breaker Debate Open", + "Round": "Open_Quarters", + "Motion": "THBT militaries should prioritize spending on cyber security over physical security" + }, + { + "Date": "2020-05-31T00:00:00", + "Tournament": "Circuit Breaker Debate Open", + "Round": "Open_Semi", + "Motion": "TH prefers a world where humans are assumed to be inherently good as opposed to a world where humans are assumed to be inherently evil" + }, + { + "Date": "2020-05-31T00:00:00", + "Tournament": "Circuit Breaker Debate Open", + "Round": "Open_Final", + "Motion": "THP a world where competitive debating tournaments are always and exclusively hosted online as opposed to always and exclusively in person" + }, + { + "Date": "2020-05-31T00:00:00", + "Tournament": "Tilbury House Online Open 2020", + "Round": 1, + "Motion": "THW break up large pharmaceutical firms" + }, + { + "Date": "2020-05-31T00:00:00", + "Tournament": "Tilbury House Online Open 2020", + "Round": 2, + "Motion": "THBT feminists should not use rhetoric about women being more empathetic or more caring than men as part of their advocacy (e.g. “Women are good leaders because they are more gentle and nurturing.”)" + }, + { + "Date": "2020-05-31T00:00:00", + "Tournament": "Tilbury House Online Open 2020", + "Round": 3, + "Motion": "THBT attacks on non-combatants involved in war activities are a legitimate strategy in war" + }, + { + "Date": "2020-05-31T00:00:00", + "Tournament": "Tilbury House Online Open 2020", + "Round": 4, + "Motion": "TH regrets the rise of philanthrocapitalism" + }, + { + "Date": "2020-05-31T00:00:00", + "Tournament": "Tilbury House Online Open 2020", + "Round": "Open_Quarters", + "Motion": "THR the societal belief that one should strongly identify with the culture of one's ancestry (e.g. if you are ethnically Chinese, identifying strongly with Chinese culture)" + }, + { + "Date": "2020-05-31T00:00:00", + "Tournament": "Tilbury House Online Open 2020", + "Round": "Open_Semi", + "Motion": "THR the US-Taliban peace deal" + }, + { + "Date": "2020-05-31T00:00:00", + "Tournament": "Tilbury House Online Open 2020", + "Round": "Open_Final", + "Motion": "THP a world without a belief in free will" + }, + { + "Date": "2020-05-31T00:00:00", + "Tournament": "Tilbury House Online Open 2020", + "Round": "ProAm_Final", + "Motion": "THBT teachers and parents belonging to oppressed minority groups should teach children within their group to contribute to the welfare of the group even at personal cost" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": 1, + "Motion": "That we prefer the establishment of truth and reconciliation commissions to attempts at pursuing retributive justice (e.g. prosecuting perpetrators) in post-conflict states" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": 1, + "Motion": "That we should make it an offense to witness a crime and not report it" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": 1, + "Motion": "That we should make search engines liable for defamation when their algorithms promote defamatory content" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": 2, + "Motion": "That we should ban derivative markets" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": 2, + "Motion": "That we should ban hedge funds" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": 2, + "Motion": "That we regret central bank independence" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": 3, + "Motion": "That the US should escalate its ‘maximum pressure’ campaign against Iran" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": 3, + "Motion": "That we, as India, would rejoin the RCEP" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": 3, + "Motion": "That the UK should offer citizenship to all residents of Hong Kong" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": 4, + "Motion": "That developing countries should ban the sale of GMO products" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": 4, + "Motion": "That we shuold genetically design \"Philosopher Kings\"" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": 4, + "Motion": "Assuming that the technology existed, that we would allow individuals to sell their Intelligence Quotient (IQ) as a commodity" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": 5, + "Motion": "You are a publicly successful chef, whose real cooking skill is secretly attributable to a rat which directs your movements underneath your chef's hat. That we should reveal the existence of the rat." + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": 5, + "Motion": "That we should ban the consumption of animals" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": 5, + "Motion": "That we should ban religious practices that cause cruelty to animals." + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": "Open_Quarters", + "Motion": "That we regret cancel culture within progressive movements" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": "Open_Quarters", + "Motion": "That, as Joe Biden, we would prioritize solving economic inequality over racial issues in the campaign" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": "Open_Quarters", + "Motion": "That, as the minority resistance group, we would submit to the state" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": "Open_Semi", + "Motion": "That no media platform should receive public funding" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": "Open_Semi", + "Motion": "That we would abolish the Goldwater Rule" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": "Open_Semi", + "Motion": "That we should regulate social media entities as publishers/news organisations" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": "Open_Final", + "Motion": "That, as Bibi Netanyahu, we should abandon efforts to annex Jewish settlements in the West Bank" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": "Open_Final", + "Motion": "That we regret the rise of decentralisation agendas in developing countries" + }, + { + "Date": "2020-05-30T00:00:00", + "Tournament": "Whippersnappa Pre-Australs", + "Round": "Open_Final", + "Motion": "That, as a liberal democracy, we should heavily restrict our Multinational Corporations from investing in/expanding into illiberal states (e.g. Russia, Turkey, China, Poland)" + }, + { + "Date": "2020-05-24T00:00:00", + "Tournament": "Eastern Online IV", + "Round": 1, + "Motion": "THW mandate that in any legal case both sides must have access to an equally priced counsel (for example a rich person can hire as expensive a defense attorney as they would like, but money must be provided to the plaintiff if they cannot afford a lawyer of a similar caliber)" + }, + { + "Date": "2020-05-24T00:00:00", + "Tournament": "Eastern Online IV", + "Round": 2, + "Motion": "THR tv shows and movies that humanize violent, antisocial protagonists (ex: Barry, You, Killing Eve, The Assassination of Gianni Versace, My Friend Dahmer)" + }, + { + "Date": "2020-05-24T00:00:00", + "Tournament": "Eastern Online IV", + "Round": 3, + "Motion": "THBT Muslim states should sever political and economic ties with India until the repeal of the Citizenship Amendment Act" + }, + { + "Date": "2020-05-24T00:00:00", + "Tournament": "Eastern Online IV", + "Round": 4, + "Motion": "Assuming you lived a middle class life, THW choose to upload their consciousness to this technology." + }, + { + "Date": "2020-05-24T00:00:00", + "Tournament": "Eastern Online IV", + "Round": 5, + "Motion": "THR the existence of high fashion" + }, + { + "Date": "2020-05-24T00:00:00", + "Tournament": "Eastern Online IV", + "Round": "Open_Quarters", + "Motion": "THBT governments should not condition COVID-related bailouts of the private sector on major corporate reforms (e.g., limiting executive compensation, banning corporate stock buybacks, restrictions on lobbying, increased environmental regulation, etc.)" + }, + { + "Date": "2020-05-24T00:00:00", + "Tournament": "Eastern Online IV", + "Round": "Open_Semi", + "Motion": "THBT western liberal democracies should criminalize and permanently disavow private military contractors" + }, + { + "Date": "2020-05-24T00:00:00", + "Tournament": "Eastern Online IV", + "Round": "Open_Final", + "Motion": "THW spend all of Jeff Bezos's money" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": 1, + "Motion": "THR the increasing trend of producing reboots within franchises (e.g. Marvel Cinematic Universe, Star Wars, Harry Potter, X-men)" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": 1, + "Motion": "THBT artists should refrain from actively and openly interpreting their own art" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": 2, + "Motion": "THBT Asian immigrants to Western countries should assimilate in the culture of their host country even at the expense of losing their original culture" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": 2, + "Motion": "THS excess profit taxes on corporations that derive a significant profit from a pandemic" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": 2, + "Motion": "THBT philanthropic figures focussed on COVID-19 should focus on prevention (eg distributing PPE) to possible cures/vaccines" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": 3, + "Motion": "In the aftermath of the COVID-19 Outbreak, THBT Western liberal democracies/governments should actively promote the narrative that individuals ought to sacrifice/make sacrifices for the collective community" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": 3, + "Motion": "THP a world where the legacies of radical revolutionaries are glorified over the legacies of peaceful revolutionaries" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": 3, + "Motion": "THR the use of nostalgia (e.g. reminiscing over past/historical leaders, periods, or events) in politics" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": 4, + "Motion": "THBT technocrats (highly educated and skilled experts) within authoritarian states should collectively refuse to work with/for the government" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": 4, + "Motion": "THP a world where sexual compatibility is prioritized over emotional compatibility in relationships" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": 4, + "Motion": "THBT parents have a duty to push their children to succeed even if it comes at the expense of their happiness" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": 5, + "Motion": "THS parents actively confiding in their children about financial problems and personal insecurities" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": 5, + "Motion": "THW require both parties to use state lawyers, instead of private lawyers, in defamation trials" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": 5, + "Motion": "THW not give employers access to criminal records of potential employees" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": 5, + "Motion": "THBT all sentencing should be decided according to an algorithm that considers purely the probability of recidivism of the convict" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "HS_Semi", + "Motion": "THR the usage of religious appeals as a rallying call for humanitarian causes" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "HS_Semi", + "Motion": "THBT movements should not use civil disobedience as a strategy to achieve their goals" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "HS_Semi", + "Motion": "This house regrets the dominant narrative that mainstream social movements should refrain from being antagonistic and aggressive, in pushing for changes/fighting against injustice" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "HS_Final", + "Motion": "THBT post-conflict societies should construct a national identity around a shared ethnicity, as opposed to a common culture" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "HS_Final", + "Motion": "TH opposes the narrative that refugees' entitlement to help should be conditional upon their potential utility to the economy" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "HS_Final", + "Motion": "In post-conflict societies, THW actively suppress information and interpretation, that paints any past dictator in a sympathetic light" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "Open_Octa", + "Motion": "THBT US Senators who approved (in confidential briefings) the CIA's use of enhanced interrogation (waterboarding, sleep deprivation, exposure to low temperatures for extended periods etc.) should be tried for war crimes" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "Open_Octa", + "Motion": "THBT Iran should end its nuclear weapons program" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "Open_Octa", + "Motion": "TH, as Bernie Sanders, Would have stayed in the race as opposed to dropping out" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "Open_Quarter", + "Motion": "TH, as a prominent religious leader of a major organised religion, would promote any scripture/interpretation/doctrine that says that the determinant factor of entering heaven is good deeds and not the level of faith/piety" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "Open_Quarter", + "Motion": "THP a world where the belief or disbelief in God or Gods is seen as an involuntary decision" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "Open_Quarter", + "Motion": "THBT LGBTQIA+ activists in religiously conservative countries should seek to actively solicit support, funding, and endorsement from religious entities" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "Open_Semi", + "Motion": "THBT developing nations should distribute, as a dividend to citizens, income derived from nature resource extraction" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "Open_Semi", + "Motion": "THBT the World Bank should have the full responsibility for the share of loss due to corruption." + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "Open_Semi", + "Motion": "THBT the \"Tax Mix\" should be set by reserve banks" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "Open_Final", + "Motion": "THR \"self-crit\" culture.* * ”Self-crit culture” refers to a culture where individuals are encouraged to publicly and openly criticise themselves for their shortcomings." + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "Open_Final", + "Motion": "THO the use of scientific discoveries obtained through unethical means" + }, + { + "Date": "2020-05-23T00:00:00", + "Tournament": "Taiwan Online Debate Open", + "Round": "Open_Final", + "Motion": "THR the narrative that ideal deliberation should exclude display or involvement of emotions" + }, + { + "Date": "2020-05-20T00:00:00", + "Tournament": "Astana Debate Union Open 2020", + "Round": 1, + "Motion": "In liberal democracies, THW ban the media from reporting on ongoing sex offence trials" + }, + { + "Date": "2020-05-20T00:00:00", + "Tournament": "Astana Debate Union Open 2020", + "Round": 2, + "Motion": "THBT western museums should return historical artifacts to the nations where they originated." + }, + { + "Date": "2020-05-20T00:00:00", + "Tournament": "Astana Debate Union Open 2020", + "Round": 3, + "Motion": "THBT governments should financially incentivize people to move away from areas with few viable economic activities" + }, + { + "Date": "2020-05-20T00:00:00", + "Tournament": "Astana Debate Union Open 2020", + "Round": 4, + "Motion": "THBT the attacks by Palestinians on civilians actively supporting the Israeli government (politicians, businessmen, etc.) are justified ways of fighting for independence." + }, + { + "Date": "2020-05-20T00:00:00", + "Tournament": "Astana Debate Union Open 2020", + "Round": 5, + "Motion": "THR the narrative that 'women can have it all' (career, family, children, etc.)" + }, + { + "Date": "2020-05-20T00:00:00", + "Tournament": "Astana Debate Union Open 2020", + "Round": 6, + "Motion": "THBT it is in the interest of Russia to have Putin continue in power after 2024 elections" + }, + { + "Date": "2020-05-20T00:00:00", + "Tournament": "Astana Debate Union Open 2020", + "Round": 7, + "Motion": "Regardless of whether or not sexual identity is a choice, TH regrets the born this way narrative" + }, + { + "Date": "2020-05-20T00:00:00", + "Tournament": "Astana Debate Union Open 2020", + "Round": 8, + "Motion": "TH would nationalize all nationally systemically important financial institutions" + }, + { + "Date": "2020-05-20T00:00:00", + "Tournament": "Astana Debate Union Open 2020", + "Round": 9, + "Motion": "THW not allow revolutionary leaders and their families in post-conflict societies to run for political office" + }, + { + "Date": "2020-05-17T00:00:00", + "Tournament": "VITDT Round Robin 2020", + "Round": 1, + "Motion": "This House Would ban the breeding of wild animals for petting programs at zoos" + }, + { + "Date": "2020-05-17T00:00:00", + "Tournament": "VITDT Round Robin 2020", + "Round": 2, + "Motion": "This House, as the WWE, would recognize Chris Benoit's achievements and induct him into the Hall of Fame." + }, + { + "Date": "2020-05-17T00:00:00", + "Tournament": "VITDT Round Robin 2020", + "Round": 3, + "Motion": "This House Supports the US Federal/State governments' re-opening of their economies" + }, + { + "Date": "2020-05-17T00:00:00", + "Tournament": "VITDT Round Robin 2020", + "Round": 4, + "Motion": "In countries with conscription, This House Believes That it is morally legitimate to evade draft" + }, + { + "Date": "2020-05-17T00:00:00", + "Tournament": "VITDT Round Robin 2020", + "Round": 5, + "Motion": "This House Believes That the IMF should significantly relax conditions on loans to African countries" + }, + { + "Date": "2020-05-17T00:00:00", + "Tournament": "VITDT Round Robin 2020", + "Round": "Open_Final", + "Motion": "This House Believes That Imran Khan should pivot away from China and towards India." + }, + { + "Date": "2020-05-15T00:00:00", + "Tournament": "Deree Invitational LIX", + "Round": 1, + "Motion": "THW ban 24 Hour News Media" + }, + { + "Date": "2020-05-15T00:00:00", + "Tournament": "Deree Invitational LIX", + "Round": 2, + "Motion": "THR the narrative that being a nurse is a calling rather than a job" + }, + { + "Date": "2020-05-15T00:00:00", + "Tournament": "Deree Invitational LIX", + "Round": 3, + "Motion": "THW ban Zero Hour Contracts" + }, + { + "Date": "2020-05-15T00:00:00", + "Tournament": "Deree Invitational LIX", + "Round": 4, + "Motion": "THW ban religious institutions from opening addiction rehab centers" + }, + { + "Date": "2020-05-15T00:00:00", + "Tournament": "Deree Invitational LIX", + "Round": 5, + "Motion": "THW implement a weighted voting system, where your vote counts less and less the older you get" + }, + { + "Date": "2020-05-15T00:00:00", + "Tournament": "Deree Invitational LIX", + "Round": "Open_Semi", + "Motion": "THS first-generation immigrants to Western Europe encouraging their children to fully assimilate and identify with the local culture" + }, + { + "Date": "2020-05-15T00:00:00", + "Tournament": "Deree Invitational LIX", + "Round": "Open_Final", + "Motion": "THBT Putin has been good for Russia" + }, + { + "Date": "2020-05-10T00:00:00", + "Tournament": "Parassat Open", + "Round": 1, + "Motion": "THW not subsidize national flag carrier airlines" + }, + { + "Date": "2020-05-10T00:00:00", + "Tournament": "Parassat Open", + "Round": 2, + "Motion": "THW stop writing the novel" + }, + { + "Date": "2020-05-10T00:00:00", + "Tournament": "Parassat Open", + "Round": 3, + "Motion": "THBT the feminist movements in Central Asian states should also focus on gender issues that affect men (toxic masculinity etc.) rather than exclusively focus on the issues that affect only women" + }, + { + "Date": "2020-05-10T00:00:00", + "Tournament": "Parassat Open", + "Round": 4, + "Motion": "TH as Nicolas Maduro would seek to voluntarily step down from power" + }, + { + "Date": "2020-05-10T00:00:00", + "Tournament": "Parassat Open", + "Round": 5, + "Motion": "THBT it is in the interests of organized religions to adopt the \"rigorous mission scheme\"" + }, + { + "Date": "2020-05-10T00:00:00", + "Tournament": "Parassat Open", + "Round": "Novice_Final", + "Motion": "TH as a young individual in an authoritarian country who wants to improve their society would seek to do so by joining the ruling party as opposed to operating outside the establishment." + }, + { + "Date": "2020-05-10T00:00:00", + "Tournament": "Parassat Open", + "Round": "Open_Quarter", + "Motion": "THBT it is in the interests of organized religions to adopt the \"rigorous mission scheme\"" + }, + { + "Date": "2020-05-10T00:00:00", + "Tournament": "Parassat Open", + "Round": "Open_Semi", + "Motion": "THBT members of the Eurasian Economic Union should introduce a new common currency." + }, + { + "Date": "2020-05-10T00:00:00", + "Tournament": "Parassat Open", + "Round": "Open_Final", + "Motion": "THO the commercialization of competitive debating (such as for profit debate training, paid workshops, paying IAs a salary, paying pros to speak with wealthy beginners, etc)" + }, + { + "Date": "2020-05-03T00:00:00", + "Tournament": "Ullens Online", + "Round": 1, + "Motion": "Assuming adequate child support services exist, This house would allow opponents of abortion to sign legally-binding contracts with pregnant women, in which they pay the pregnant women not to have an abortion" + }, + { + "Date": "2020-05-03T00:00:00", + "Tournament": "Ullens Online", + "Round": 2, + "Motion": "THW nationalise the Space industry" + }, + { + "Date": "2020-05-03T00:00:00", + "Tournament": "Ullens Online", + "Round": 3, + "Motion": "THS the rise of disclosure culture" + }, + { + "Date": "2020-05-03T00:00:00", + "Tournament": "Ullens Online", + "Round": 4, + "Motion": "THS authoritarian reformers in newly formed states. (Eg: Lee Kuan Yew, Castro, etc)" + }, + { + "Date": "2020-05-03T00:00:00", + "Tournament": "Ullens Online", + "Round": "Open_Semi", + "Motion": "In a post COVID-19 world, THBT developing countries should prioritize the growth of their domestic markets/industries over foreign trade." + }, + { + "Date": "2020-05-03T00:00:00", + "Tournament": "Ullens Online", + "Round": "Open_Final", + "Motion": "Assuming it was possible, THW allow individuals to permanently alter their memories to forget the dead" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Asia Queer Open", + "Round": 1, + "Motion": "This House supports the outing of anti-LGBT+ conservative public figures (e.g.: politicians, celebrities)" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Asia Queer Open", + "Round": 2, + "Motion": "Assuming Personal Protective Equipment is sufficiently available, THBT medical workers during a pandemic should have the right to opt out of service." + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Asia Queer Open", + "Round": 3, + "Motion": "THBT local queer activist groups should aggressively push for the redefinition of Hijras as ordinary individuals with no unique supernatural powers" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Asia Queer Open", + "Round": 4, + "Motion": "This House Believes That Bernie Sanders would have been better than Joe Biden as the Democratic Presidential nominee." + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Asia Queer Open", + "Round": 5, + "Motion": "This House Rejects the desexualisation of queer activism." + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Asia Queer Open", + "Round": "Open_Quarters", + "Motion": "This House Regrets cancel culture within progressive movements" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Asia Queer Open", + "Round": "Open_Semi", + "Motion": "This House Supports the rise of atheist movements in Southeast Asia" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Asia Queer Open", + "Round": "Open_Final", + "Motion": "TH prefers representation of queer characters in media whose stories do not centre around their queerness." + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Asia Queer Open", + "Round": "ProAm_Final", + "Motion": "This House Supports the rise of atheist movements in Southeast Asia" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Doxbridge Online Open 2020", + "Round": 1, + "Motion": "THS online piracy in developing countries" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Doxbridge Online Open 2020", + "Round": 2, + "Motion": "THBT environmental movements should be pro-capitalism in their policies and advocacy (e.g., appealing to corporations for green policies, advocating for individual responsibility and sustainable consumption; rather than lobbying governments for extreme regulation, protesting for divestment)" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Doxbridge Online Open 2020", + "Round": 3, + "Motion": "THBT it is in the interest of Germany to support EU bonds" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Doxbridge Online Open 2020", + "Round": 4, + "Motion": "THP a world with radical honesty" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Doxbridge Online Open 2020", + "Round": "Open_Final1", + "Motion": "THBT it is preferable to be single, than pursuing a successful long-term monogamous relationship" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Doxbridge Online Open 2020", + "Round": "Open_Final2", + "Motion": "THW allow companies to buy the rights to govern economically failing cities." + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Doxbridge Online Open 2020", + "Round": "Open_Final3", + "Motion": "THBT parents should teach morality to their children through religious context (e.g. “it is a sin to lie”; \"help thy neighbour\" etc.)" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Doxbridge Online Open 2020", + "Round": "Schools_Final", + "Motion": "THBT, when allocating resources to their children, working class families should allocate most of their resources to support the most talented child in the family." + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": 1, + "Motion": "Assuming the technology were available, and you were the only one who could use it, that you should choose to become immortal" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": 1, + "Motion": "You have suffered from severe amnesia and cannot remember any of your past. You suspect that it may be \"dark\". That you should not go searching for answers" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": 1, + "Motion": "That we should prohibit research into the de-extinction of human-like species such as the Neanderthal." + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": 2, + "Motion": "That the state should more harshly punish people who commit crimes against members of social groups who experience disproportionately high rates of violence regardless of that offender’s motivation" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": 2, + "Motion": "That the victim of crimes should be able to choose whether the offender is dealt with under civil law or criminal law" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": 2, + "Motion": "That individuals who breach COVID-19 lockdown requirements while unknowingly infectious should be liable for manslaughter for any resulting deaths" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": 3, + "Motion": "You are a state whose diplomatic and economic power is increasing rapidly. There are maintained attempts to curb the rise of your economic and diplomatic influence by the established regional power. That you should seek active confrontation with the established power." + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": 3, + "Motion": "You are the ruler of a militaristic Greek city state. The Archameid empire has invaded mainland Hellas, if they are successful, your state will be subjugated. The other city states are in disarray and cannot decide on how to respond. You know that there is no chance of victory alone. That you should march against the Persian threat." + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": 3, + "Motion": "Congratulations, you command the armies of Greece and now have the means to embark on your life goal to sail to and conquer Troy. Alas, you have offended the goddess Artemis who has stymied your plans by sending unfavourable winds. The only way to achieve your goal is to sacrifice your only child and you will win the war. That you should sacrifice your child." + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": 4, + "Motion": "That the United States should immediately abolish private health insurance and establish Medicare for all" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": 4, + "Motion": "That the European Union should abandon the Euro" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": 4, + "Motion": "That in times of extraordinary economic or social crisis, we should temporarily close financial markets." + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": "Open_Quarters", + "Motion": "As a curator of a prominent museum or gallery, you should only display works created by women" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": "Open_Quarters", + "Motion": "A ‘sham marriage’ (also known as xinghun or co-operative marriage) is a marriage between a gay man and a lesbian woman for the purposes of creating the appearance of being straight and evading the social stigmas of being gay or being ‘left on the shelf’. They are particularly common in China. That, as a homosexual person in China, would enter into a sham marriage." + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": "Open_Quarters", + "Motion": "That feminists should celebrate domestic activities which are traditionally carried out by women (e.g. baking, gardening and knitting) as empowering and feminist activities" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": "Open_Semi", + "Motion": "That the Ukraine should seek an internationally brokered agreement to formally acknowledge the cession of Crimea to Russia" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": "Open_Semi", + "Motion": "In a world in which humans have obtained the ability of interstellar travel, humans should never make contact with, or interfere with, the development of alien civilisations that are not also capable of interstellar travel." + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": "Open_Semi", + "Motion": "That we should abolish the International Criminal Court" + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": "Open_Final", + "Motion": "That the Catholic Church should de-emphasise the concepts of Satan and Hell." + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": "Open_Final", + "Motion": "You are a cardinal with evidence of corruption in the Vatican. That you should destroy the evidence." + }, + { + "Date": "2020-05-02T00:00:00", + "Tournament": "Jurassic IV 2020", + "Round": "Open_Final", + "Motion": "You are a 16th century english Catholic bishop. Henry VIII has established the Anglican Church in opposition to the Catholic Church. You have been invited by the King to join his church as Bishop. That you should join the Anglican Church." + }, + { + "Date": "2020-05-01T00:00:00", + "Tournament": "The Grand Spar May", + "Round": 1, + "Motion": "This house prefers a world in which people predominantly believe that all decisions, thoughts, and actions of all in the universe are pre-determined." + }, + { + "Date": "2020-05-01T00:00:00", + "Tournament": "The Grand Spar May", + "Round": 2, + "Motion": "THW institute a health credit system (inexact wording)" + }, + { + "Date": "2020-05-01T00:00:00", + "Tournament": "The Grand Spar May", + "Round": 3, + "Motion": "THBT states should be legally liable for recidivist crimes (inexact wording)" + }, + { + "Date": "2020-05-01T00:00:00", + "Tournament": "The Grand Spar May", + "Round": "ProAm_Final", + "Motion": "This house, as person X, would choose to upload yourself onto the digital afterlife instead of going through with the surgery" + }, + { + "Date": "2020-04-27T00:00:00", + "Tournament": "Axiom Debate Open 2020", + "Round": 1, + "Motion": "THP a world in which social media platforms use paid subscriptions rather than collect and monetize users' data" + }, + { + "Date": "2020-04-27T00:00:00", + "Tournament": "Axiom Debate Open 2020", + "Round": 2, + "Motion": "THBT progressives are justified in refusing to endorse Joe Biden until he adopts significantly more progressive policies in his campaign platform" + }, + { + "Date": "2020-04-27T00:00:00", + "Tournament": "Axiom Debate Open 2020", + "Round": 3, + "Motion": "THBT states should not bail out large corporations with high rates of unemployment caused by the COVID-19 pandemic." + }, + { + "Date": "2020-04-27T00:00:00", + "Tournament": "Axiom Debate Open 2020", + "Round": 4, + "Motion": "THBT China should pay reparations to developing nations severely affected by COVID-19" + }, + { + "Date": "2020-04-27T00:00:00", + "Tournament": "Axiom Debate Open 2020", + "Round": "Novice_Final", + "Motion": "TH, as Dr. Anthony Fauci, would publicly and actively call out Trump whenever he gives false medical advice to the general public." + }, + { + "Date": "2020-04-27T00:00:00", + "Tournament": "Axiom Debate Open 2020", + "Round": "Open_Quarters", + "Motion": "Assuming feasibility, THW have all states temporarily cede their sovereignty to international organizations in times of protracted global crisis (e.g. global recessions, pandemics)." + }, + { + "Date": "2020-04-27T00:00:00", + "Tournament": "Axiom Debate Open 2020", + "Round": "Open_Semi", + "Motion": "TH, as Dr. Anthony Fauci, would publicly and actively call out Trump whenever he gives false medical advice to the general public." + }, + { + "Date": "2020-04-27T00:00:00", + "Tournament": "Axiom Debate Open 2020", + "Round": "Open_Final", + "Motion": "THR the widespread use of war-like terminology by world leaders in combating the COVID-19 pandemic" + }, + { + "Date": "2020-04-26T00:00:00", + "Tournament": "Central European Cyberspace Open", + "Round": 1, + "Motion": "This House Opposes educational approaches centered on making children believe they are special" + }, + { + "Date": "2020-04-26T00:00:00", + "Tournament": "Central European Cyberspace Open", + "Round": 2, + "Motion": "This House Believes That the West should discourage and disincentivize economic collaboration and exchange with China" + }, + { + "Date": "2020-04-26T00:00:00", + "Tournament": "Central European Cyberspace Open", + "Round": 3, + "Motion": "This House Would break up Amazon" + }, + { + "Date": "2020-04-26T00:00:00", + "Tournament": "Central European Cyberspace Open", + "Round": 4, + "Motion": "This House Believes That feminists should advocate for the destruction of the traditional family unit" + }, + { + "Date": "2020-04-26T00:00:00", + "Tournament": "Central European Cyberspace Open", + "Round": 5, + "Motion": "This House Believes That scientific literature should be free" + }, + { + "Date": "2020-04-26T00:00:00", + "Tournament": "Central European Cyberspace Open", + "Round": "EFL F", + "Motion": "This House Believes That leaders of police forces should be elected by thelocal communities they serve" + }, + { + "Date": "2020-04-26T00:00:00", + "Tournament": "Central European Cyberspace Open", + "Round": "Open_Quarters", + "Motion": "This House Opposes cancel culture" + }, + { + "Date": "2020-04-26T00:00:00", + "Tournament": "Central European Cyberspace Open", + "Round": "Open_Semi", + "Motion": "This House Believes That states formerly under the rule of the Soviet Union should NOT emphasize their history of struggle against Russian imperialism in constructing their national identity" + }, + { + "Date": "2020-04-26T00:00:00", + "Tournament": "Central European Cyberspace Open", + "Round": "Open_Final", + "Motion": "This House Believes That all countries should implement legislation similar to the US Defense Production Act to combat the Covid-19 pandemic" + }, + { + "Date": "2020-04-16T00:00:00", + "Tournament": "Asia E-Debate Challenge", + "Round": 1, + "Motion": "THBT parents of children from lower socio economic backgrounds should discourage their children from pursuing majors with low employability (sociology, history, fine arts, etc)" + }, + { + "Date": "2020-04-16T00:00:00", + "Tournament": "Asia E-Debate Challenge", + "Round": 2, + "Motion": "THW make the State liable for recidivist crimes" + }, + { + "Date": "2020-04-16T00:00:00", + "Tournament": "Asia E-Debate Challenge", + "Round": 3, + "Motion": "TH prefers the US modernizing its military at the cost of reducing its military size" + }, + { + "Date": "2020-04-16T00:00:00", + "Tournament": "Asia E-Debate Challenge", + "Round": 4, + "Motion": "THBT feminist organizations should prioritize progressive, well off communities as opposed to communities that are more financially needy, but choose to adhere to strong traditional gender roles" + }, + { + "Date": "2020-04-16T00:00:00", + "Tournament": "Asia E-Debate Challenge", + "Round": "Novice_Final", + "Motion": "Assuming feasibility, THW create sovereign states for each major religion, and offer citizenship to anyone who professes to be a part of that religion" + }, + { + "Date": "2020-04-16T00:00:00", + "Tournament": "Asia E-Debate Challenge", + "Round": "Open_Quarters", + "Motion": "TH Opposes the Informal Economy" + }, + { + "Date": "2020-04-16T00:00:00", + "Tournament": "Asia E-Debate Challenge", + "Round": "Open_Semi", + "Motion": "Assuming feasibility, THW create sovereign states for each major religion, and offer citizenship to anyone who professes to be a part of that religion" + }, + { + "Date": "2020-04-16T00:00:00", + "Tournament": "Asia E-Debate Challenge", + "Round": "Open_Final", + "Motion": "TH, as the Putin administration, would choose to artificially decrease Russia's oil price" + }, + { + "Date": "2020-04-10T00:00:00", + "Tournament": "Cinnamon Scroll 2020", + "Round": 1, + "Motion": "That, assuming it were practicable, sports teams or people that develop novel strategies or techniques should be able to “copyright” them for two seasons after they are first used successfully." + }, + { + "Date": "2020-04-10T00:00:00", + "Tournament": "Cinnamon Scroll 2020", + "Round": 1, + "Motion": "That we regret Drag Culture going mainstream" + }, + { + "Date": "2020-04-10T00:00:00", + "Tournament": "Cinnamon Scroll 2020", + "Round": 1, + "Motion": "That one should not offer to ‘give exposure’ to gain discounted goods or services from creatives." + }, + { + "Date": "2020-04-10T00:00:00", + "Tournament": "Cinnamon Scroll 2020", + "Round": 2, + "Motion": "That we would abolish corporate tax" + }, + { + "Date": "2020-04-10T00:00:00", + "Tournament": "Cinnamon Scroll 2020", + "Round": 2, + "Motion": "That we would create financial incentives for companies to expose the law breaking of their competitors." + }, + { + "Date": "2020-04-10T00:00:00", + "Tournament": "Cinnamon Scroll 2020", + "Round": 2, + "Motion": "That we prefer broad tax cuts in financial stimulus packages to targeted government spending." + }, + { + "Date": "2020-04-10T00:00:00", + "Tournament": "Cinnamon Scroll 2020", + "Round": 3, + "Motion": "That evidence that is reliable but illegally obtained by the police should be excluded as evidence in all criminal trials." + }, + { + "Date": "2020-04-10T00:00:00", + "Tournament": "Cinnamon Scroll 2020", + "Round": 3, + "Motion": "That we should abolish all statutes of limitations in criminal cases." + }, + { + "Date": "2020-04-10T00:00:00", + "Tournament": "Cinnamon Scroll 2020", + "Round": 3, + "Motion": "That we should abolish the \"right to silence\"" + }, + { + "Date": "2020-04-10T00:00:00", + "Tournament": "Cinnamon Scroll 2020", + "Round": 4, + "Motion": "That, as the West, we would lift economic sanctions on Iran during its COVID-19 crisis." + }, + { + "Date": "2020-04-10T00:00:00", + "Tournament": "Cinnamon Scroll 2020", + "Round": 4, + "Motion": "That we would bail out airlines failing due to COVID-19" + }, + { + "Date": "2020-04-10T00:00:00", + "Tournament": "Cinnamon Scroll 2020", + "Round": 4, + "Motion": "That we would disestablish the World Health Organisation (WHO)." + }, + { + "Date": "2020-04-10T00:00:00", + "Tournament": "Cinnamon Scroll 2020", + "Round": "Open_Semi", + "Motion": "That sanctions should be placed on countries that provide tax-havens to multinational companies." + }, + { + "Date": "2020-04-10T00:00:00", + "Tournament": "Cinnamon Scroll 2020", + "Round": "Open_Semi", + "Motion": "That war criminals should be tried in their home country instead of the International Criminal Court (ICC)." + }, + { + "Date": "2020-04-10T00:00:00", + "Tournament": "Cinnamon Scroll 2020", + "Round": "Open_Semi", + "Motion": "That states should be allowed to buy and sell votes in international organizations" + }, + { + "Date": "2020-04-07T00:00:00", + "Tournament": "EUDC Challenge IV", + "Round": 1, + "Motion": "THBT social media platforms should aggressively remove unverified information" + }, + { + "Date": "2020-04-07T00:00:00", + "Tournament": "EUDC Challenge IV", + "Round": 2, + "Motion": "THW require companies valued at $1B or above to trade publicly*" + }, + { + "Date": "2020-04-07T00:00:00", + "Tournament": "EUDC Challenge IV", + "Round": 3, + "Motion": "THW NOT publish this information" + }, + { + "Date": "2020-04-07T00:00:00", + "Tournament": "EUDC Challenge IV", + "Round": "Open_Semi", + "Motion": "TH, as the EU, would pass a binding resolution to impose significant economic sanctions on Israel in the event that Israel unilaterally annexes any part of the West Bank" + }, + { + "Date": "2020-04-07T00:00:00", + "Tournament": "EUDC Challenge IV", + "Round": "Open_Final", + "Motion": "TH prefers to live in a world where personal success and failure are predominantly seen as a consequence of random factors rather than personal choices" + }, + { + "Date": "2020-04-04T00:00:00", + "Tournament": "Berlin Online IV", + "Round": 1, + "Motion": "This House would give financial incentives to people who live a healthy lifestyle (eg. no smoking, exercising regularly, healthy diet)" + }, + { + "Date": "2020-04-04T00:00:00", + "Tournament": "Berlin Online IV", + "Round": 2, + "Motion": "THP a world where the pill exists" + }, + { + "Date": "2020-04-04T00:00:00", + "Tournament": "Berlin Online IV", + "Round": 3, + "Motion": "This House would implement UBI in times of crisis" + }, + { + "Date": "2020-04-04T00:00:00", + "Tournament": "Berlin Online IV", + "Round": 4, + "Motion": "This House prefers a world where the Assassins Brotherhood exists" + }, + { + "Date": "2020-04-04T00:00:00", + "Tournament": "Berlin Online IV", + "Round": 5, + "Motion": "THBT Supreme Court justices should adopt Originalist stances in applying constitutional law" + }, + { + "Date": "2020-04-04T00:00:00", + "Tournament": "Berlin Online IV", + "Round": "Open_Quarters", + "Motion": "This House prefers to follow a religion where one's fate in the material world is predetermined, rather than one where one's choices and actions influence their fate" + }, + { + "Date": "2020-04-04T00:00:00", + "Tournament": "Berlin Online IV", + "Round": "Open_Semi", + "Motion": "This House supports the decline of oil prices" + }, + { + "Date": "2020-04-04T00:00:00", + "Tournament": "Berlin Online IV", + "Round": "Open_Final", + "Motion": "This House believes that in times of severe crisis, individuals have a moral obligation to dedicate themselves towards combating the crisis" + }, + { + "Date": "2020-03-28T00:00:00", + "Tournament": "Lord Discup's Cup 2020", + "Round": 1, + "Motion": "TH, as a star Latin American soccer/football player, would stay in their national league over playing in Europe" + }, + { + "Date": "2020-03-28T00:00:00", + "Tournament": "Lord Discup's Cup 2020", + "Round": 2, + "Motion": "THBT stock markets should freeze the sale of publicly-exchanged stocks on the secondary market during pandemics" + }, + { + "Date": "2020-03-28T00:00:00", + "Tournament": "Lord Discup's Cup 2020", + "Round": 3, + "Motion": "THBT trans legal advocates should seek to establish precedent that protects trans people under existing sex discrimination law, rather than pursuing anti-discrimination laws for trans communities" + }, + { + "Date": "2020-03-28T00:00:00", + "Tournament": "Lord Discup's Cup 2020", + "Round": 4, + "Motion": "TH, as the EU, would replace the independent national healthcare systems with a collectively funded regional system" + }, + { + "Date": "2020-03-28T00:00:00", + "Tournament": "Lord Discup's Cup 2020", + "Round": 5, + "Motion": "THR the concept of \"The one that got away\"" + }, + { + "Date": "2020-03-28T00:00:00", + "Tournament": "Lord Discup's Cup 2020", + "Round": "Novice_Final", + "Motion": "THBT Facebook has done more harm than good" + }, + { + "Date": "2020-03-28T00:00:00", + "Tournament": "Lord Discup's Cup 2020", + "Round": "Open_Quarters", + "Motion": "THS the \"Kingpin\" strategy in combatting drug cartels" + }, + { + "Date": "2020-03-28T00:00:00", + "Tournament": "Lord Discup's Cup 2020", + "Round": "Open_Semi", + "Motion": "THA the Vatican regrets the China-Vatican deal on the appointment of Chinese Bishops" + }, + { + "Date": "2020-03-28T00:00:00", + "Tournament": "Lord Discup's Cup 2020", + "Round": "Open_Final", + "Motion": "THW allow victims of miscarriages of justice to sue expert witnesses for incompetence" + }, + { + "Date": "2020-03-20T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2020", + "Round": 1, + "Motion": "THW forcibly take owernership of privately-owned homes which are not lived in by their owners during periods of national housing shortages." + }, + { + "Date": "2020-03-20T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2020", + "Round": 2, + "Motion": "THBT, instead of attempting to mitigate the effect of climate change, states should re-divert all existing environmental funding to geoengineering projects." + }, + { + "Date": "2020-03-20T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2020", + "Round": 3, + "Motion": "THR the decision to let the FARC run as a political party." + }, + { + "Date": "2020-03-20T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2020", + "Round": 4, + "Motion": "When tech companies own platform utilities and platform products, THW break them up." + }, + { + "Date": "2020-03-20T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2020", + "Round": 5, + "Motion": "THS protectionism in developing countries." + }, + { + "Date": "2020-03-20T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2020", + "Round": "Novice_Final", + "Motion": "THR the Goldwater Rule" + }, + { + "Date": "2020-03-20T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2020", + "Round": "Open_Semi", + "Motion": "THBT social justice movements should not actively try to appeal to allies (e.g. the feminist movement deliberately trying to appeal to men, or the LGBT+ movement to straight cis individuals)." + }, + { + "Date": "2020-03-20T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2020", + "Round": "Open_Final", + "Motion": "Assuming the technology exists, TH supports the use of augmented eternity for people in highly influential positions (e.g: top academics, researchers, CEOs or politicians)" + }, + { + "Date": "2020-02-29T00:00:00", + "Tournament": "Downpour Open '20", + "Round": 1, + "Motion": "R1 - THW allow medical professionals to give medicine to underage children irrespective of the children's and their parent's consent" + }, + { + "Date": "2020-02-29T00:00:00", + "Tournament": "Downpour Open '20", + "Round": 3, + "Motion": "THW require priests to disclose confessions where it is relevant to ongoing criminal cases" + }, + { + "Date": "2020-02-29T00:00:00", + "Tournament": "Downpour Open '20", + "Round": "Open_Semi", + "Motion": "In countries with large immigrant populations, THW reserve seats for foreign individuals in parliament" + }, + { + "Date": "2020-02-29T00:00:00", + "Tournament": "Downpour Open '20", + "Round": "Open_Final", + "Motion": "THBT political assassination is a legitimate tool in foreign policy" + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": 1, + "Motion": "That as the superdelegates, we would give the nomination to Biden" + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": 1, + "Motion": "That we would allow political parties to make binding electoral promises that, once broken, will immediately trigger re-election." + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": 1, + "Motion": "That we should hold all state presidential primary elections simultaneously" + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": 2, + "Motion": "This House, as Likud, regrets not removing Netanyahu as leader before the upcoming election." + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": 2, + "Motion": "That Lebanon should abolish the confessional system" + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": 2, + "Motion": "That we regret the assassination of Iranian general Qasem Soleimani." + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": 3, + "Motion": "That as an Indian feminist we would identify more with Lakshmi than with Kali" + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": 3, + "Motion": "That feminists in Islamic majority countries should attempt to work to reform Sharia courts from within rather than advocating their abolition." + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": 3, + "Motion": "This House, as the feminist movement, would push for the sexualisation of religious attires (eg. hijab/saree/cheongsum)." + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": 4, + "Motion": "That ASEAN should allow the free movement of labour" + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": 4, + "Motion": "That ASEAN should negotiate all investment deals with Chinese government entities as a bloc (with decisions made by majority vote of its members), so that no member state can enter into investment deals without the consent of the majority of ASEAN." + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": 4, + "Motion": "That we support the abolition of the CFA franc" + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": 5, + "Motion": "That western countries should abandon attempts to remove Maduro from power in Venezuela (e.g. ending sanctions, ceasing funding of Guaido and opposition movements)." + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": 5, + "Motion": "That we regret the removal of Evo Morales as president of Bolivia" + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": 5, + "Motion": "That we regret the 2019 election of Alberto Fernandez and Cristina Fernandez de Kirschner in Argentina." + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": "Open_Semi", + "Motion": "That we support Moon Jae-In's attempts to reform The Supreme Prosecutors' Office of the Republic of Korea." + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": "Open_Semi", + "Motion": "That it is in the interest of the Indian state for AAP to form a coalition with the INC to contest in upcoming general elections." + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": "Open_Semi", + "Motion": "That King Abdullah al-Haj should have called a snap election in Malaysia , rather than appointing Muhyuddin Yasin as Prime Minister and allowing the current members of the Dewan Rakyat (lower house) to form a new governing coalition." + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": "Open_Final", + "Motion": "That states should opt to implement the Hannibal Directive in dealing with their soldiers captured by terrorists." + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": "Open_Final", + "Motion": "That we should adopt the Fisher Suggestion" + }, + { + "Date": "2020-02-28T00:00:00", + "Tournament": "2020 Commonwealth Debating Championship", + "Round": "Open_Final", + "Motion": "That, as a religious organization, we would perform final duas for known terrorists." + }, + { + "Date": "2020-02-22T00:00:00", + "Tournament": "Zagreb Open 2020", + "Round": 1, + "Motion": "This House would prohibit the use of statistical risk assessments when criminal courts are making sentencing decisions." + }, + { + "Date": "2020-02-22T00:00:00", + "Tournament": "Zagreb Open 2020", + "Round": 2, + "Motion": "This House prefers the antihero as the dominant female archetype in literature and movies." + }, + { + "Date": "2020-02-22T00:00:00", + "Tournament": "Zagreb Open 2020", + "Round": 3, + "Motion": "This House believes that companies should adopt the practice of Radical Transparency." + }, + { + "Date": "2020-02-22T00:00:00", + "Tournament": "Zagreb Open 2020", + "Round": 4, + "Motion": "This House would immediately abolish Two Schools under One Roof." + }, + { + "Date": "2020-02-22T00:00:00", + "Tournament": "Zagreb Open 2020", + "Round": 5, + "Motion": "This House would ban payday loans." + }, + { + "Date": "2020-02-22T00:00:00", + "Tournament": "Zagreb Open 2020", + "Round": "Open_Semi", + "Motion": "This House prefers a world where people do not enter romantic relationships before they turn 18." + }, + { + "Date": "2020-02-22T00:00:00", + "Tournament": "Zagreb Open 2020", + "Round": "Open_Final", + "Motion": "This House prefers a 2nd term of Donald Trump presidency over a Bernie Sanders presidency." + }, + { + "Date": "2020-02-15T00:00:00", + "Tournament": "Manchester IV 2020", + "Round": 1, + "Motion": "THW mandate labor union membership in large companies" + }, + { + "Date": "2020-02-15T00:00:00", + "Tournament": "Manchester IV 2020", + "Round": 2, + "Motion": "THBT the UK should adopt a federal statehood structure which establishes regions and large counties as states" + }, + { + "Date": "2020-02-15T00:00:00", + "Tournament": "Manchester IV 2020", + "Round": 3, + "Motion": "TH, as Narendra Modi, would reverse the 'Make in India' policy" + }, + { + "Date": "2020-02-15T00:00:00", + "Tournament": "Manchester IV 2020", + "Round": 4, + "Motion": "THW allow indigenous groups to veto the development of environmentally disruptive projects on their territory" + }, + { + "Date": "2020-02-15T00:00:00", + "Tournament": "Manchester IV 2020", + "Round": 5, + "Motion": "THW only allow the media and campagning organisations to depict or publish information about the deceased in a tragedy with the explicit permission of the family" + }, + { + "Date": "2020-02-15T00:00:00", + "Tournament": "Manchester IV 2020", + "Round": "ESL_Final", + "Motion": "THW allow the pardoning of whistleblowers by referendum" + }, + { + "Date": "2020-02-15T00:00:00", + "Tournament": "Manchester IV 2020", + "Round": "Open_Semi", + "Motion": "THBT it is in the interests of the Chinese Communist Party to allow state-owned firms to default on domestic bond repayments" + }, + { + "Date": "2020-02-15T00:00:00", + "Tournament": "Manchester IV 2020", + "Round": "Open_Final", + "Motion": "THP a world in which people exclusively idolise people they know" + }, + { + "Date": "2020-02-15T00:00:00", + "Tournament": "Manchester IV 2020", + "Round": "ProAm_Final", + "Motion": "THR the westernization of the elite in post-colonial countries (e.g. speaking predominantly in English, going to schools/universities in the West, consuming predominantly Western media)" + }, + { + "Date": "2020-02-07T00:00:00", + "Tournament": "LUMS IV 2020", + "Round": 1, + "Motion": "THW create and enforce filial responsibility laws (mandating that people take care of their parents" + }, + { + "Date": "2020-02-07T00:00:00", + "Tournament": "LUMS IV 2020", + "Round": 2, + "Motion": "THBT sporting teams should be owned by their fans" + }, + { + "Date": "2020-02-07T00:00:00", + "Tournament": "LUMS IV 2020", + "Round": 3, + "Motion": "THW prefer a religion which preaches that one's fate in the material world is predetermined rather than one that preaches that one's choices influence it" + }, + { + "Date": "2020-02-07T00:00:00", + "Tournament": "LUMS IV 2020", + "Round": 4, + "Motion": "TH, as a female climate change activist, would choose not to have children" + }, + { + "Date": "2020-02-07T00:00:00", + "Tournament": "LUMS IV 2020", + "Round": 5, + "Motion": "THBT in authoritarian countries, individuals who wish to improve their societies should actively seek to join the establishment, as opposed to operating outside the establishment." + }, + { + "Date": "2020-02-07T00:00:00", + "Tournament": "LUMS IV 2020", + "Round": 6, + "Motion": "The year is 2018. This house, as Imran Khan, would rather lose the election than side with the Establishment" + }, + { + "Date": "2020-02-07T00:00:00", + "Tournament": "LUMS IV 2020", + "Round": "Novice_Semi", + "Motion": "TH supports first generation immigrants to Western Europe encouraging their children to assimilate and identify with local culture" + }, + { + "Date": "2020-02-07T00:00:00", + "Tournament": "LUMS IV 2020", + "Round": "Novice_Final", + "Motion": "THW prosecute communities for complicity in honour killings" + }, + { + "Date": "2020-02-07T00:00:00", + "Tournament": "LUMS IV 2020", + "Round": "Open_Quarters", + "Motion": "THBT all national economic policy (taxation, monetary policy, tariffs, etc) should be set by an appointed panel of economists rather than by elected officials" + }, + { + "Date": "2020-02-07T00:00:00", + "Tournament": "LUMS IV 2020", + "Round": "Open_Semi", + "Motion": "TH, as progressive student movements in Pakistan, would publicly ally themselves with progressive student movements in India" + }, + { + "Date": "2020-02-07T00:00:00", + "Tournament": "LUMS IV 2020", + "Round": "Open_Final", + "Motion": "TH, as the Pakistan Army, would support the Musharraf verdict" + }, + { + "Date": "2020-01-24T00:00:00", + "Tournament": "Northams 2020", + "Round": 1, + "Motion": "THP a system where campaign donations are banned and all candidates for an election are equally publicly funded to a world that allows donations to candidates and parties" + }, + { + "Date": "2020-01-24T00:00:00", + "Tournament": "Northams 2020", + "Round": 2, + "Motion": "THBT a North American sports league, in seeking to expand beyond North America, should prioritize access and development to the Latin American market over the Chinese market" + }, + { + "Date": "2020-01-24T00:00:00", + "Tournament": "Northams 2020", + "Round": 3, + "Motion": "TH, as Benny Gantz, Would form a government with the Likud and Netanyahu to avoid a March 2020 election" + }, + { + "Date": "2020-01-24T00:00:00", + "Tournament": "Northams 2020", + "Round": 4, + "Motion": "You are a woman in a healthy non-abusive long-term relationship with a man. You make a stable salary with which you can support yourself. Your partner has/makes significantly(ridiculously) more money than you. THW Let him pay for the vast majority of expenses incurred during your relationship" + }, + { + "Date": "2020-01-24T00:00:00", + "Tournament": "Northams 2020", + "Round": 5, + "Motion": "THBT major film companies should use AI to choose which films to greenlight" + }, + { + "Date": "2020-01-24T00:00:00", + "Tournament": "Northams 2020", + "Round": 6, + "Motion": "THBT the United States should adopt more pro-plaintiff policies, such as abandoning the need to prove material harm and intent to defame." + }, + { + "Date": "2020-01-24T00:00:00", + "Tournament": "Northams 2020", + "Round": "Novice_Semi", + "Motion": "THR the rise of business schools" + }, + { + "Date": "2020-01-24T00:00:00", + "Tournament": "Northams 2020", + "Round": "Novice_Final", + "Motion": "Assuming support from international activists, THBT indigenous groups should advocate for a boycott, divestment, and sanctions movement against Canada to fight its ongoing discrimination against Indigenous peoples" + }, + { + "Date": "2020-01-24T00:00:00", + "Tournament": "Northams 2020", + "Round": "Open_Octos", + "Motion": "TH as a socially conscious prominent management consultant firm would accept cases for foreign governments with ongoing human rights violations" + }, + { + "Date": "2020-01-24T00:00:00", + "Tournament": "Northams 2020", + "Round": "Open_Quarters", + "Motion": "THR the narrative that immortality is desirable" + }, + { + "Date": "2020-01-24T00:00:00", + "Tournament": "Northams 2020", + "Round": "Open_Semi", + "Motion": "THBT the US should pursue Modern Monetary Theory" + }, + { + "Date": "2020-01-24T00:00:00", + "Tournament": "Northams 2020", + "Round": "Open_Final", + "Motion": "In response to climate change THS an immediate, indefinite, international workers strike" + }, + { + "Date": "2020-01-17T00:00:00", + "Tournament": "Bishop Anthony Lobo Championship 2020", + "Round": 2, + "Motion": "This House Regrets the prominent use of self deprecating humor by female comedians" + }, + { + "Date": "2020-01-17T00:00:00", + "Tournament": "Bishop Anthony Lobo Championship 2020", + "Round": 3, + "Motion": "This House Regrets the trend of self destructive/anti social characters as protagonists in media (e.g Bojack Horseman, Rick and Morty, Crazy Ex-Girlfriend, Sherlock, Mad Men etc)" + }, + { + "Date": "2020-01-17T00:00:00", + "Tournament": "Bishop Anthony Lobo Championship 2020", + "Round": 4, + "Motion": "THBT it was against the interest of Syrian Kurds to align themselves with the West in the Syrian Civil War" + }, + { + "Date": "2020-01-17T00:00:00", + "Tournament": "Bishop Anthony Lobo Championship 2020", + "Round": "Open_Semi", + "Motion": "This House Believes That schools should emphasize the moral failures and wrongdoings of people considered to be national and social heroes (e.g Churchill, Gandhi, Mother Teresa)" + }, + { + "Date": "2020-01-17T00:00:00", + "Tournament": "Bishop Anthony Lobo Championship 2020", + "Round": "Open_Final", + "Motion": "Assuming it could be done without placing the burden of secrecy on adults, This House Prefers a world where individuals are unaware of the existence of organized religions for the duration of their childhoods" + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": 1, + "Motion": "This House would impose a BBC-style impartiality requirement on all news platforms." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": 2, + "Motion": "This House supports the rapid global elimination of both tariff and non-tariff barriers to free trade." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": 3, + "Motion": "This House would allow children to sue their parents for religious indoctrination." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": 4, + "Motion": "This House would abolish the Olympic Games." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": 5, + "Motion": "This House believes that the Mexican government should adopt measures that enable one cartel to monopolise the drug market. (These measures can include but are not limited to: targeting enemy cartels; selective arrests; stopping military deployments to areas controlled by this cartel; and renouncing the headhunt on its current leaders.)" + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": 6, + "Motion": "In liberal democracies, This House would implement a Social Credit System." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": 7, + "Motion": "This House believes that ASEAN should abandon \"the ASEAN Way\"." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": 8, + "Motion": "This House believes that the feminist movement should support the narrative that \"beauty does not matter\" over the narrative that \"all bodies are beautiful\"." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": 9, + "Motion": "This House would abolish primary and secondary school grades/years that group children based on age, and instead group them by competency and intelligence." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": "EFL_Semis", + "Motion": "This House prefers a world where, starting today, all humans have identical intellectual abilities (equivalent to the current global average)." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": "EFL_Final", + "Motion": "This House would abolish the private ownership of (housing) property in major metropolitan areas." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": "ESL_Quarters", + "Motion": "In a relatively equal society where the \"protected sphere model\" is the norm, This House, as a parent, would raise their children according to the \"deferred happiness model\"." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": "ESL_Semis", + "Motion": "This House prefers a world without the Neuralink." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": "ESL_Final", + "Motion": "This House believes that the United States government should cede the authority to prosecute criminal trials involving African Americans (as either victims or alleged perpetrators) to African American interest groups, and allocate funding for this." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": "Open_Partial_Double_Octos", + "Motion": "This House prefers religions in which all individuals have roughly equal religious obligations and are encouraged to develop a personal connection with the divine, over religions in which religious obligation and access to the divine are concentrated in religious authority figures." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": "Open_Octos", + "Motion": "This House prefers a cynical and pessimistic perception of democratic politics to an idealistic and optimistic one." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": "Open_Quarters", + "Motion": "This House believes that developing countries should acquire, on the open market, large stakes in major publicly-traded global corporations (eg. Google, JP Morgan, Shell, and Pfizer)." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": "Open_Semis", + "Motion": "This House prefers a \"Brave New World\" to the status quo in Western Liberal Democracies." + }, + { + "Date": "2020-01-01T00:00:00", + "Tournament": "Thailand WUDC 2020", + "Round": "Open_Final", + "Motion": "This House, as China, would grant universal suffrage to Hong Kong." + }, + { + "Date": "2019-12-20T00:00:00", + "Tournament": "UFMG IV", + "Round": 3, + "Motion": "This House would allow private corporations to donate to political campaigns in Brazil" + }, + { + "Date": "2019-12-20T00:00:00", + "Tournament": "UFMG IV", + "Round": "Open_Semi", + "Motion": "THW break up big tech" + }, + { + "Date": "2019-12-20T00:00:00", + "Tournament": "UFMG IV", + "Round": "Open_Final", + "Motion": "This House, as Michel Temer, regrets nothing" + }, + { + "Date": "2019-12-09T00:00:00", + "Tournament": "PAUDC Akofena 2019", + "Round": 1, + "Motion": "This House regrets the Humanization of Villains in Film and Media [i.e Joker]." + }, + { + "Date": "2019-12-09T00:00:00", + "Tournament": "PAUDC Akofena 2019", + "Round": 2, + "Motion": "The House believes that charitable organizations [e.g Omaze] should not be allowed to obtain donations in exchange for the offer of potential prizes." + }, + { + "Date": "2019-12-09T00:00:00", + "Tournament": "PAUDC Akofena 2019", + "Round": 4, + "Motion": "This house believes that governments in developing nations should prioritize funding for early childhood development to the exclusion of funding for tertiary education." + }, + { + "Date": "2019-12-09T00:00:00", + "Tournament": "PAUDC Akofena 2019", + "Round": 6, + "Motion": "In instances where the collapse of financial institutions is imminent, The House supports a bail-in." + }, + { + "Date": "2019-12-09T00:00:00", + "Tournament": "PAUDC Akofena 2019", + "Round": 7, + "Motion": "This House Supports the public offering of Saudi Aramco" + }, + { + "Date": "2019-12-09T00:00:00", + "Tournament": "PAUDC Akofena 2019", + "Round": 8, + "Motion": "‪This House, as the trans community, would prioritize psychosocial rather than physical makeup as a metric for gender dispositions." + }, + { + "Date": "2019-12-09T00:00:00", + "Tournament": "PAUDC Akofena 2019", + "Round": 9, + "Motion": "This House believes that religious institutions should use radically leftist interpretations of their teachings in areas of high rates of poverty (e.g Liberation Theology, Islamic Socialism)" + }, + { + "Date": "2019-12-09T00:00:00", + "Tournament": "PAUDC Akofena 2019", + "Round": "Open_Octos", + "Motion": "THS the use of deep fake technology as a legitimate political tool" + }, + { + "Date": "2019-12-09T00:00:00", + "Tournament": "PAUDC Akofena 2019", + "Round": "Open_Quarters", + "Motion": "THR human ability to adapt to social adversity" + }, + { + "Date": "2019-12-07T00:00:00", + "Tournament": "Seattle IV 2019", + "Round": 1, + "Motion": "THBT military conscription (aka involuntary draft) should be considered a war crime" + }, + { + "Date": "2019-12-07T00:00:00", + "Tournament": "Seattle IV 2019", + "Round": 2, + "Motion": "THBT political centrism does more harm than good" + }, + { + "Date": "2019-12-07T00:00:00", + "Tournament": "Seattle IV 2019", + "Round": 3, + "Motion": "THW break up Disney" + }, + { + "Date": "2019-12-07T00:00:00", + "Tournament": "Seattle IV 2019", + "Round": 4, + "Motion": "THW geoengineer the climate" + }, + { + "Date": "2019-12-07T00:00:00", + "Tournament": "Seattle IV 2019", + "Round": 5, + "Motion": "TH as an artist would prefer to be self-taught rather than classically trained" + }, + { + "Date": "2019-12-07T00:00:00", + "Tournament": "Seattle IV 2019", + "Round": 6, + "Motion": "THBT the United States should not take a stance on the conflicts in South America." + }, + { + "Date": "2019-12-07T00:00:00", + "Tournament": "Seattle IV 2019", + "Round": "Open_Quarters", + "Motion": "THW require social media companies to pay for metadata." + }, + { + "Date": "2019-12-07T00:00:00", + "Tournament": "Seattle IV 2019", + "Round": "Open_Semi", + "Motion": "THBT the African Union should condemn the One Belt One Road Initiative" + }, + { + "Date": "2019-12-07T00:00:00", + "Tournament": "Seattle IV 2019", + "Round": "Open_Final", + "Motion": "THR intercollegiate debate" + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2018", + "Round": 1, + "Motion": "This house believes that the criminal justice system should not consider retribution as a factor in sentencing." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2018", + "Round": 2, + "Motion": "This house prefers a world in which universities charged tuition based on student earnings after graduation." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2018", + "Round": 3, + "Motion": "This house believes that governments should prioritize the economic improvement of minority communities over the preservation of their culture." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2018", + "Round": 4, + "Motion": "This house prefers a world in which, upon childhood, all people intuitively come to know their natural expiration date." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2018", + "Round": 5, + "Motion": "When responding to civilian casualties, this house believes that the military action taken does not have to meet the principle of proportionality." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2018", + "Round": "Open_Final", + "Motion": "This house believes that the interests of the Chinese people would be better served by a peaceful transition into a democracy, rather than a continuation of one party rule." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2019", + "Round": 1, + "Motion": "This House regrets the decline of the humanities in higher education." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2019", + "Round": 1, + "Motion": "This house regrets the decline of the humanities in higher education.", + "InfoSlide": "In academic settings, “the humanities” is contrasted with the study of natural sciences, social sciences, and professional training. Core fields in the humanities include: literature, philosophy, history, religion, art, etc." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2019", + "Round": 2, + "Motion": "This House supports laws that protect the health of fetuses (whose mothers intend to carry them to term)." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2019", + "Round": 2, + "Motion": "This house supports laws that protect the health of fetuses (whose mothers intend to carry them to term)." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2019", + "Round": 3, + "Motion": "In the event that current talks produce a compromise Brexit deal, This House Would put it to a referendum with “remain” as an alternative." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2019", + "Round": 3, + "Motion": "In the event that current talks produce a compromise Brexit deal, this house would put it to a referendum, with “remain” as the alternative" + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2019", + "Round": 4, + "Motion": "This House would take a pill that permanently made one contented with one’s current life situation." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2019", + "Round": 4, + "Motion": "This house would take a pill that permanently made one entirely contented with one’s current life situation." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2019", + "Round": 5, + "Motion": "This House Opposes the centrality of sport to national identity" + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2019", + "Round": 5, + "Motion": "This house opposes the centrality of sport to national identity." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2019", + "Round": "Open_Final", + "Motion": "This House believes that the Black Lives Matter movement should embrace open carry gun laws and engage in armed community patrols." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "HWS Round Robin 2019", + "Round": "Open_Final", + "Motion": "This house believes that the Black Lives Matter movement should embrace open carry gun laws and engage in armed community patrols.", + "InfoSlide": "The Black Panthers began as a group of black citizens in Oakland, California who engaged in armed patrols of the city streets, specifically focusing on observing police behavior and arrests. In response, California enacted much stricter gun control legislation." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "Prague Open 2019", + "Round": 1, + "Motion": "THW cut government and parliament members wages and pension funds, if they run fiscal deficits." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "Prague Open 2019", + "Round": 2, + "Motion": "TH regrets the dominant narrative that moral progress is inevitable (e.g.”The moral arc of history bends towards justice”)." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "Prague Open 2019", + "Round": 3, + "Motion": "THBT EU should not offer the UK another extension on Brexit after October 31." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "Prague Open 2019", + "Round": 4, + "Motion": "TH opposes the stigmatisation of romantic relationships built upon materialistic needs or exchanges (e.g. suggar-daddys, cougars, etc.)." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "Prague Open 2019", + "Round": 5, + "Motion": "THBT secular states should not allow minority groups to implement their own family law systems." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "Prague Open 2019", + "Round": "Open_Semi", + "Motion": "TH, as the Democratic party, regrets starting the impeachment process of President Trump." + }, + { + "Date": "2019-12-01T00:00:00", + "Tournament": "Prague Open 2019", + "Round": "Open_Final", + "Motion": "THBT the fight against Climate Change should include taking international action against sovereign countries (such as exclusion from international institutions, sanctions, military intervention, etc.), which allow environmental abuses through direct action or negligence" + }, + { + "Date": "2019-11-24T00:00:00", + "Tournament": "All-Nigeria Universities Debate Championship 2019", + "Round": 1, + "Motion": "THS THE GLORIFICATION OF START-UP CULTURE THAT ENCOURAGES PEOPLE TO CREATE THEIR OWN BUSINESSES RATHER THAN PURSUE TRADITIONAL CAREER PATHS" + }, + { + "Date": "2019-11-24T00:00:00", + "Tournament": "All-Nigeria Universities Debate Championship 2019", + "Round": 2, + "Motion": "THR THE PHENOMENON OF SENSITIVITY SCREENING" + }, + { + "Date": "2019-11-24T00:00:00", + "Tournament": "All-Nigeria Universities Debate Championship 2019", + "Round": 3, + "Motion": "THBT CONSERVATIVE STATES SHOULD AGGRESSIVELY EMBRACE LIBERAL IDEOLOGIES IN THE PURSUIT OF PROMOTING ECONOMIC DEVELOPMENT" + }, + { + "Date": "2019-11-24T00:00:00", + "Tournament": "All-Nigeria Universities Debate Championship 2019", + "Round": 4, + "Motion": "THS THE PRACTICE OF CULTURAL CHRISTIANITY" + }, + { + "Date": "2019-11-24T00:00:00", + "Tournament": "All-Nigeria Universities Debate Championship 2019", + "Round": 5, + "Motion": "TH CELEBRATES NO NUT NOVEMBER (NNN)" + }, + { + "Date": "2019-11-24T00:00:00", + "Tournament": "All-Nigeria Universities Debate Championship 2019", + "Round": 6, + "Motion": "ASSUMING IT WOULD BE ILLEGAL FOR ANYONE TO BECOME STATELESS, THW CREATE A MARKETPLACE FOR THE BUYING AND SELLING OF CITIZENSHIP BETWEEN PRIVATE INDIVIDUALS" + }, + { + "Date": "2019-11-24T00:00:00", + "Tournament": "All-Nigeria Universities Debate Championship 2019", + "Round": 7, + "Motion": "THW PROSECUTE LEADERS WHO REFUSE TO IMPLEMENT UNIVERSAL HEALTH COVERAGE (UHC) POLICIES FOR MENTAL HEALTH CASES AND OTHER PRIMARY HEALTH CARE EMERGENCIES" + }, + { + "Date": "2019-11-24T00:00:00", + "Tournament": "All-Nigeria Universities Debate Championship 2019", + "Round": 8, + "Motion": "THS THE BANNING OF POLITICAL PARTIES ADVERTISEMENTS ON SOCIAL MEDIA PLATFORMS" + }, + { + "Date": "2019-11-24T00:00:00", + "Tournament": "All-Nigeria Universities Debate Championship 2019", + "Round": 9, + "Motion": "TH AS GOOGLE WILL ADOPT THE HIPPOCRATIC LICENSE" + }, + { + "Date": "2019-11-24T00:00:00", + "Tournament": "All-Nigeria Universities Debate Championship 2019", + "Round": "Open_Quarters", + "Motion": "THR THE WOKE CALL-OUT CULTURE" + }, + { + "Date": "2019-11-24T00:00:00", + "Tournament": "All-Nigeria Universities Debate Championship 2019", + "Round": "Open_Semi", + "Motion": "THW choose China" + }, + { + "Date": "2019-11-24T00:00:00", + "Tournament": "All-Nigeria Universities Debate Championship 2019", + "Round": "Open_Final", + "Motion": "THR THE BORDER CLOSURE" + }, + { + "Date": "2019-11-17T00:00:00", + "Tournament": "UBC IV 2019", + "Round": 1, + "Motion": "TH, as a leftist politician, would adopt political disinformation campaign tactics." + }, + { + "Date": "2019-11-17T00:00:00", + "Tournament": "UBC IV 2019", + "Round": 2, + "Motion": "THR the use of identity-based self deprecating humour by minority entertainers in popular culture" + }, + { + "Date": "2019-11-17T00:00:00", + "Tournament": "UBC IV 2019", + "Round": 3, + "Motion": "THBT the EU should expel member states who join the Belt & Road initiative" + }, + { + "Date": "2019-11-17T00:00:00", + "Tournament": "UBC IV 2019", + "Round": 4, + "Motion": "THP a world in which religious leaders (Priests, Imams, Rabbis etc.) are not seen as having a deeper connection with religious deities (ex: God or Allah) than regular members of the faithful." + }, + { + "Date": "2019-11-17T00:00:00", + "Tournament": "UBC IV 2019", + "Round": 5, + "Motion": "In cases where individuals are convicted of leaking state secrets, THW allow their convictions to be nullified by a national referendum." + }, + { + "Date": "2019-11-17T00:00:00", + "Tournament": "UBC IV 2019", + "Round": "Novice_Final", + "Motion": "THBT it is unethical to have children." + }, + { + "Date": "2019-11-17T00:00:00", + "Tournament": "UBC IV 2019", + "Round": "Open_Semi", + "Motion": "THP a geniocracy over rule by democratic representation." + }, + { + "Date": "2019-11-17T00:00:00", + "Tournament": "UBC IV 2019", + "Round": "Open_Final", + "Motion": "THR the narrative that money can't buy happiness." + }, + { + "Date": "2019-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2019", + "Round": 1, + "Motion": "This house believes that hacking is a legitimate form of protest against large corporations." + }, + { + "Date": "2019-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2019", + "Round": 2, + "Motion": "This house regrets films and television shows that glorify gang culture." + }, + { + "Date": "2019-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2019", + "Round": 3, + "Motion": "This house believes that states should not attempt to regulate digital currencies like bitcoin." + }, + { + "Date": "2019-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2019", + "Round": 4, + "Motion": "This house supports the right of fiction authors to use a pseudonym and/or remain anonymous." + }, + { + "Date": "2019-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2019", + "Round": 5, + "Motion": "This house believes that environmental movements should support climate engineering that fundamentally alters the environment in an attempt to combat global warming." + }, + { + "Date": "2019-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2019", + "Round": "Open_Semi", + "Motion": "In emerging democracies, this house would break up persistently dominant political parties." + }, + { + "Date": "2019-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2019", + "Round": "Open_Final", + "Motion": "This house believes that feminist organisations should not criticize female politicians for their views on women's issues." + }, + { + "Date": "2019-10-19T00:00:00", + "Tournament": "Rocky Mountain Championships", + "Round": 1, + "Motion": "Given the state of the world, THBT it is immoral for humans to willfully reproduce" + }, + { + "Date": "2019-10-19T00:00:00", + "Tournament": "Rocky Mountain Championships", + "Round": 2, + "Motion": "THW replace all social safety net policies with a comparable universal basic income." + }, + { + "Date": "2019-10-19T00:00:00", + "Tournament": "Rocky Mountain Championships", + "Round": 3, + "Motion": "THW assimilate." + }, + { + "Date": "2019-10-19T00:00:00", + "Tournament": "Rocky Mountain Championships", + "Round": 4, + "Motion": "TH rejects all sports mascots which depict humans" + }, + { + "Date": "2019-10-19T00:00:00", + "Tournament": "Rocky Mountain Championships", + "Round": 5, + "Motion": "THW encourage feminists to troll, meme, and shame the patriarchy." + }, + { + "Date": "2019-10-19T00:00:00", + "Tournament": "Rocky Mountain Championships", + "Round": 6, + "Motion": "TH, as foreign militaries, would condition material support to the United States Armed Forces on the removal of the Trump Administration." + }, + { + "Date": "2019-10-19T00:00:00", + "Tournament": "Rocky Mountain Championships", + "Round": "Open_Semi", + "Motion": "TH, as the United States Federal Government, would take all necessary steps to eliminate Mexican drug cartels." + }, + { + "Date": "2019-10-19T00:00:00", + "Tournament": "Rocky Mountain Championships", + "Round": "Open_Final", + "Motion": "TH rejects the idea of ethical consumption." + }, + { + "Date": "2019-10-11T00:00:00", + "Tournament": "Ljubljana IV 2019", + "Round": 1, + "Motion": "THO the demonisation of nationalism." + }, + { + "Date": "2019-10-11T00:00:00", + "Tournament": "Ljubljana IV 2019", + "Round": 2, + "Motion": "THBT climate change movements should prioritise constructive policy proposals over criticism and obstruction of current policies." + }, + { + "Date": "2019-10-11T00:00:00", + "Tournament": "Ljubljana IV 2019", + "Round": 3, + "Motion": "THBT sports assocciation’s ultimate goal should be the integration of women into mixed teams rather than achieving parity between male and female teams." + }, + { + "Date": "2019-10-11T00:00:00", + "Tournament": "Ljubljana IV 2019", + "Round": 4, + "Motion": "THBT it was against the interest of Syrian Kurds to align themselves with the West in the Syrian Civil War." + }, + { + "Date": "2019-10-11T00:00:00", + "Tournament": "Ljubljana IV 2019", + "Round": 5, + "Motion": "THW never allow parents to make medical decisions for their children that contradict the medical consensus." + }, + { + "Date": "2019-10-11T00:00:00", + "Tournament": "Ljubljana IV 2019", + "Round": "Open_Semi", + "Motion": "THR the integration of PR China into the global economy." + }, + { + "Date": "2019-10-11T00:00:00", + "Tournament": "Ljubljana IV 2019", + "Round": "Open_Final", + "Motion": "THW release the evidence" + }, + { + "Date": "2019-10-04T00:00:00", + "Tournament": "Hart House IV 2019", + "Round": 1, + "Motion": "THR the increasing professionalization of youth athletics" + }, + { + "Date": "2019-10-04T00:00:00", + "Tournament": "Hart House IV 2019", + "Round": 2, + "Motion": "In cities with scarce housing availability THW reallocate funds intended for building or subsidizing affordable housing to providing the means for those in need to relocate to different cities with lower costs of living." + }, + { + "Date": "2019-10-04T00:00:00", + "Tournament": "Hart House IV 2019", + "Round": 3, + "Motion": "THBT that Western Nations should impose heavy penalties on domestic corporations that punish their employees for engaging in legally permitted speech." + }, + { + "Date": "2019-10-04T00:00:00", + "Tournament": "Hart House IV 2019", + "Round": 4, + "Motion": "Assuming feasibility, THW distribute development aid to individual citizens rather than governments." + }, + { + "Date": "2019-10-04T00:00:00", + "Tournament": "Hart House IV 2019", + "Round": 5, + "Motion": "THW have all settler colonial states (Canada, U.S., Australia, Mexico, Brazil, etc.) pay rent to their indigenous populations for all government-owned property." + }, + { + "Date": "2019-10-04T00:00:00", + "Tournament": "Hart House IV 2019", + "Round": "Novice_Final", + "Motion": "THP a world without a belief in life after death (heaven, reincarnation, past lives, hell, etc)." + }, + { + "Date": "2019-10-04T00:00:00", + "Tournament": "Hart House IV 2019", + "Round": "Open_Quarter", + "Motion": "Assuming neither standard is upheld in the status quo, THBT society should aim towards becoming a meritocracy as opposed to a society where people are treated equally regardless of merit." + }, + { + "Date": "2019-10-04T00:00:00", + "Tournament": "Hart House IV 2019", + "Round": "Open_Semi", + "Motion": "In the aftermath of genocides, ethnic violence or crimes against humanity THO efforts to ban or suppress discussion of ethnicity and/or religion" + }, + { + "Date": "2019-10-04T00:00:00", + "Tournament": "Hart House IV 2019", + "Round": "Open_Final", + "Motion": "THBT all nations should take active steps to eliminate all borders." + }, + { + "Date": "2019-09-21T00:00:00", + "Tournament": "Bard IV", + "Round": 1, + "Motion": "THBT a universal basic income is preferable to conditional welfare programs (e.g., SNAP, housing assistance, Medicaid)" + }, + { + "Date": "2019-09-21T00:00:00", + "Tournament": "Bard IV", + "Round": 2, + "Motion": "THS \"Cancel Culture\"" + }, + { + "Date": "2019-09-21T00:00:00", + "Tournament": "Bard IV", + "Round": 3, + "Motion": "THBT Puerto Ricans should advocate for independence over statehood." + }, + { + "Date": "2019-09-21T00:00:00", + "Tournament": "Bard IV", + "Round": 4, + "Motion": "THW limit copyright terms for works of art (including fine art, music, film, literature, etc.) to the original artist’s lifespan" + }, + { + "Date": "2019-09-21T00:00:00", + "Tournament": "Bard IV", + "Round": 5, + "Motion": "THW prohibit hospitals from being owned by or affiliated with religious organizations (eg, Catholic hospitals)" + }, + { + "Date": "2019-09-21T00:00:00", + "Tournament": "Bard IV", + "Round": "Novice_Semi", + "Motion": "THR the portrayal of parental figures as incompetent and/or out-of-touch in children's media." + }, + { + "Date": "2019-09-21T00:00:00", + "Tournament": "Bard IV", + "Round": "Novice_Final", + "Motion": "THBT small island nations should declare a state of emergency due to climate change" + }, + { + "Date": "2019-09-21T00:00:00", + "Tournament": "Bard IV", + "Round": "Open_Quarter", + "Motion": "THBT the United States, when confronting organizations designated as terrorist groups, should pursue a strategy of engaging with perceived moderates within the group’s leadership in an attempt to exact concessions (e.g., prisoner exchanges, cease-fires, or political freedoms for minorities under their control) rather than pursuing a policy of explicit non-engagement." + }, + { + "Date": "2019-09-21T00:00:00", + "Tournament": "Bard IV", + "Round": "Open_Semi", + "Motion": "THBT supporters of Medicare For All should advocate for the abolition of private insurance." + }, + { + "Date": "2019-09-21T00:00:00", + "Tournament": "Bard IV", + "Round": "Open_Final", + "Motion": "THBT that individuals who have committed mass atrocities deserve to suffer in the afterlife" + }, + { + "Date": "2019-09-20T00:00:00", + "Tournament": "The Karachi Cup 2019", + "Round": 1, + "Motion": "This house would allow the selection of all-female juries in sexual assault cases" + }, + { + "Date": "2019-09-20T00:00:00", + "Tournament": "The Karachi Cup 2019", + "Round": 2, + "Motion": "This house supports countries withdrawing from the International Criminal Court in order to create their own regional replacements (e.g. an African Criminal Court, an InterAmerican Criminal Court)." + }, + { + "Date": "2019-09-20T00:00:00", + "Tournament": "The Karachi Cup 2019", + "Round": 3, + "Motion": "This house would move Pakistan’s capital to Karachi." + }, + { + "Date": "2019-09-20T00:00:00", + "Tournament": "The Karachi Cup 2019", + "Round": 4, + "Motion": "After a speaker has been invited, this house would allow university to vote to reject the speaker from coming to campus." + }, + { + "Date": "2019-09-20T00:00:00", + "Tournament": "The Karachi Cup 2019", + "Round": "Open_Quarters", + "Motion": "This house believes that all laws regarding climate change should be subject to a referendum only open to those aged 30 and below." + }, + { + "Date": "2019-09-20T00:00:00", + "Tournament": "The Karachi Cup 2019", + "Round": "Open_Semi", + "Motion": "This house supports the 'Right to be Forgotten' on the internet." + }, + { + "Date": "2019-09-20T00:00:00", + "Tournament": "The Karachi Cup 2019", + "Round": "Open_Final", + "Motion": "As the author of a non-colonial language (e.g. Marathi, Inuktitut, IsiXhosa, Gikuyu, Tibetan, among others), this house would only write in its native language" + }, + { + "Date": "2019-09-20T00:00:00", + "Tournament": "WW III", + "Round": 1, + "Motion": "TH REGRETS THE COMMERCIALISATION OF ANTI-RAPE PRODUCTS" + }, + { + "Date": "2019-09-20T00:00:00", + "Tournament": "WW III", + "Round": 2, + "Motion": "THIS HOUSE AS THE US CIA WILL DISCLOSE IT" + }, + { + "Date": "2019-09-20T00:00:00", + "Tournament": "WW III", + "Round": 3, + "Motion": "THBT GLOBAL SPORTS GOVERNING BODIES (EG. FIFA) SHOULD PRIORITISE GEO POLITICAL CONSIDERATIONS IN SITUATING CHAMPIONSHIPS" + }, + { + "Date": "2019-09-20T00:00:00", + "Tournament": "WW III", + "Round": 4, + "Motion": "TH AS THIRD WORLD COUNTRIES WOULD OFFER ITS ELECTED OFFICIALS THE GRAFT LEEWAY" + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 1, + "Motion": "In a world in which the technology has recently been created to impregnate men, TH, as a male partner of a young career-focused woman, would choose to carry their baby." + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 1, + "Motion": "THB LGB people should emphasize their same-sex attraction" + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 1, + "Motion": "THBT sporting teams should change their names where they are considered insensitive (e.g. Crusaders)." + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 2, + "Motion": "THBT countries should develop and deploy autonomous robot soldiers in conflict zones that are capable of killing people." + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 2, + "Motion": "THW militarily intervene in Venezuela" + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 2, + "Motion": "THBT African Countries should pivot towards the Global East rather than the Global West." + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 3, + "Motion": "THBT social movements should not adopt works of art as symbols where the artist does not identify with that movement (e.g. the feminist movement adopting the close-up of flowers painted by Georgia O’Keeffee believing the paintings to be sexual depictions of female anatomy; the adoption of the horror fim the Babadook by the queer rights movement)." + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 3, + "Motion": "THR docu-dramas that \"put people on trial\" after their exoneration or death (e.g. Leaving Neverland about Michael Jackson, The People v. O. J. Simpson, The Disappearance of Madeleine McCann)." + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 3, + "Motion": "THR pop-culture portrayals of people with chronic or life-threatening illnesses (e.g. Five Feet Apart, Me Before You, The Big Sick, Fault in Our Stars, My Sister’s Keeper)." + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 4, + "Motion": "THR the Reformation" + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 4, + "Motion": "THBT as the Christian church would teach that the Bible is a historically-based account containing human error, rather than teaching that the Bible is the flawless work of God." + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 4, + "Motion": "TH prefers religions that teach salvation is achieved through certain behaviours (e.g. good works, five pillars of Islam), over religions that teach salvation is achieved through faith alone." + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 5, + "Motion": "THBT members of socially progressive movements should not support harsh punishment of criminals, even when the crimes committed are the opposite of what that movement supports. (e.g. hate crimes; domestic violence; pedophilia)" + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 5, + "Motion": "Instead of sentencing offenders to fixed terms of imprisonment, THW sentence offenders to indeterminate sentences of imprisonment and release them when they have been rehabilitated." + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 5, + "Motion": "THW revoke ISIS fighters' citizenship, even in instances where that would leave them stateless." + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 6, + "Motion": "THR the decline of trade unions" + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 6, + "Motion": "THW break-up large social media companies" + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": 6, + "Motion": "THS wage subsidies in regions with persistent economic malaise (e.g. The Rust Belt, Kawerau)." + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": "Open_Semi", + "Motion": "THW create special intellectual property rights of indefinite duration for the traditional knowledge and culture of indigenous peoples (e.g. gurana berry processing for the Gurani people of South America; ka mate haka for Ngati Toa; dot paintings for the Papunya Tula people in Australia)." + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": "Open_Semi", + "Motion": "THBT Labour MPs elected in Maori seats should publicly criticise any Labour Party policy that hurts Maori." + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": "Open_Semi", + "Motion": "TH, as a parent, would send their children to a kohanga reo school (Māori immersion schools)." + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": "Open_Final", + "Motion": "THBT the UK Parliament should cancel Brexit" + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": "Open_Final", + "Motion": "THBT NZ should return to First Past the Post (FPP)" + }, + { + "Date": "2019-09-06T00:00:00", + "Tournament": "Joynt Scroll 2019", + "Round": "Open_Final", + "Motion": "THR the narrative that people who are members of marginalised groups (e.g. queer people, people of colour, indigenous people) should only vote for left-wing parties and politicians." + }, + { + "Date": "2019-08-30T00:00:00", + "Tournament": "The Lyceum Debating Championship 2019", + "Round": 1, + "Motion": "This House Regrets the societal expectation of going to university." + }, + { + "Date": "2019-08-30T00:00:00", + "Tournament": "The Lyceum Debating Championship 2019", + "Round": 2, + "Motion": "This House, as a parent, would allow Vought America to inject their child with Compound V" + }, + { + "Date": "2019-08-30T00:00:00", + "Tournament": "The Lyceum Debating Championship 2019", + "Round": 3, + "Motion": "THW ban zoos" + }, + { + "Date": "2019-08-30T00:00:00", + "Tournament": "The Lyceum Debating Championship 2019", + "Round": 4, + "Motion": "This house, as the US government, would break up Facebook, inc." + }, + { + "Date": "2019-08-30T00:00:00", + "Tournament": "The Lyceum Debating Championship 2019", + "Round": "Open_Quarters", + "Motion": "In areas with high crime, this house would impose a curfew on men." + }, + { + "Date": "2019-08-30T00:00:00", + "Tournament": "The Lyceum Debating Championship 2019", + "Round": "Open_Semi", + "Motion": "THS Antifa" + }, + { + "Date": "2019-08-30T00:00:00", + "Tournament": "The Lyceum Debating Championship 2019", + "Round": "Open_Final", + "Motion": "If brought back to the 2018 ballot in the Pakistani General Elections, this house would still vote for the Pakistan Tehreek-e-Insaaf (PTI)." + }, + { + "Date": "2019-08-15T00:00:00", + "Tournament": "Feminism Open 2019", + "Round": 1, + "Motion": "As feminists, this house supports all forms of self-commodification of one's sex appeal, escorting, sugardaddying / mommying, and starring in porn videos." + }, + { + "Date": "2019-08-15T00:00:00", + "Tournament": "Feminism Open 2019", + "Round": 2, + "Motion": "This house believes that Japanese feminists should advocate for the abolition of the Imperial system (天皇制) as opposed to advocating for the inclusion of female imperial members in the line of succession for the Imperial throne." + }, + { + "Date": "2019-08-15T00:00:00", + "Tournament": "Feminism Open 2019", + "Round": 3, + "Motion": "This house believes that women who have experienced gender based discrimination are justified in committing misandry." + }, + { + "Date": "2019-08-15T00:00:00", + "Tournament": "Feminism Open 2019", + "Round": "Open_Final", + "Motion": "This house, as the feminist movement, would advocate for the introduction of a socialized care system in which all people needing care (the elderly, people with disabilities, etc) are cared for by workers selected by a national draft system." + }, + { + "Date": "2019-08-05T00:00:00", + "Tournament": "Athens EUDC 2019", + "Round": 1, + "Motion": "THBT Greece should introduce significant financial incentives for companies and individuals currently based in Athens* to relocate to other Greek cities *Over a third of the Greek population lives in Athens." + }, + { + "Date": "2019-08-05T00:00:00", + "Tournament": "Athens EUDC 2019", + "Round": 2, + "Motion": "THBT it is in the interest of the Chinese Communist Party to cease attempts to infringe on \"One Country, Two Systems\" in Hong Kong, rather than continuing its current approach." + }, + { + "Date": "2019-08-05T00:00:00", + "Tournament": "Athens EUDC 2019", + "Round": 3, + "Motion": "THW encourage women to be selfish" + }, + { + "Date": "2019-08-05T00:00:00", + "Tournament": "Athens EUDC 2019", + "Round": 4, + "Motion": "THBT it is in the interest of dominant organised religions for their leaders to declare more progressive interpretations of traditional dogma* *e.g. on dietary and pilgrimage requirements, the acceptability of contraception, same-sex relationships" + }, + { + "Date": "2019-08-05T00:00:00", + "Tournament": "Athens EUDC 2019", + "Round": 5, + "Motion": "THBT consumers should predominantly aim to buy locally produced goods and services" + }, + { + "Date": "2019-08-05T00:00:00", + "Tournament": "Athens EUDC 2019", + "Round": 6, + "Motion": "THW break up Disney" + }, + { + "Date": "2019-08-05T00:00:00", + "Tournament": "Athens EUDC 2019", + "Round": 7, + "Motion": "THBT schools should teach children to be skeptical of parental authority" + }, + { + "Date": "2019-08-05T00:00:00", + "Tournament": "Athens EUDC 2019", + "Round": 8, + "Motion": "In circumstances where a unanimous decision is currently required, THP majority voting as the European Council's decision-making approach" + }, + { + "Date": "2019-08-05T00:00:00", + "Tournament": "Athens EUDC 2019", + "Round": 9, + "Motion": "THW make police commanders personally criminally liable for instances of police brutality committed by their subordinates" + }, + { + "Date": "2019-08-05T00:00:00", + "Tournament": "Athens EUDC 2019", + "Round": "ESL_Quarters", + "Motion": "In situations where deliberate economic policies by another state have caused substantial economic harms, THBT international law should recognise that military retaliation can be justified" + }, + { + "Date": "2019-08-05T00:00:00", + "Tournament": "Athens EUDC 2019", + "Round": "ESL_Semis", + "Motion": "THBT the US Democratic Party should prioritise employment issues, even at the expense of significant harms to the environment." + }, + { + "Date": "2019-08-05T00:00:00", + "Tournament": "Athens EUDC 2019", + "Round": "ESL_Finals", + "Motion": "TH Opposes the Defining Decade norm" + }, + { + "Date": "2019-08-05T00:00:00", + "Tournament": "Athens EUDC 2019", + "Round": "Open_Octos", + "Motion": "THBT local governments in developing countries should allocate significant portions of their budget via Participatory Budgeting" + }, + { + "Date": "2019-08-05T00:00:00", + "Tournament": "Athens EUDC 2019", + "Round": "Open_Quarters", + "Motion": "THBT it is in the interest of the Kremlin to take measures to reduce Russian dependency of China (e.g. limit the selling of raw materials to China, reduce the share of Yuan in Russia's currency reserves, not allowing Chinese companies to develop strategic infrastructure such as 5G in Russia)" + }, + { + "Date": "2019-08-05T00:00:00", + "Tournament": "Athens EUDC 2019", + "Round": "Open_Semis", + "Motion": "THBT communities that have been victims of atrocities should emphasise the narrative of the 'banality of evil' when interpreting those atrocities" + }, + { + "Date": "2019-08-05T00:00:00", + "Tournament": "Athens EUDC 2019", + "Round": "Open_Final", + "Motion": "THBT the Greek government should have rejected the 2015 bailout deal and sought to negotiate further concessions, even at the risk of not receiving a bailout." + }, + { + "Date": "2019-07-05T00:00:00", + "Tournament": "European Round Robin 2019", + "Round": 1, + "Motion": "TH would attend the Queer Liberation March rather than the Stonewall50 March." + }, + { + "Date": "2019-07-05T00:00:00", + "Tournament": "European Round Robin 2019", + "Round": 2, + "Motion": "This House, as religious individual would prefer to be a part of a religious community that proselytizes over the one that does not." + }, + { + "Date": "2019-07-05T00:00:00", + "Tournament": "European Round Robin 2019", + "Round": 3, + "Motion": "This House Believes That China should seek to curb debt at the expense of economic growth." + }, + { + "Date": "2019-07-05T00:00:00", + "Tournament": "European Round Robin 2019", + "Round": 4, + "Motion": "This House Believes That all wealth beyond the necessary to meet one’s basic needs is immoral." + }, + { + "Date": "2019-07-05T00:00:00", + "Tournament": "European Round Robin 2019", + "Round": 5, + "Motion": "This House, as the Iranian government, would fulfill its obligations under the JCPOA" + }, + { + "Date": "2019-07-05T00:00:00", + "Tournament": "European Round Robin 2019", + "Round": "Open_Final", + "Motion": "This House prefers a world where family love was seen as unconditional as opposed to conditional." + }, + { + "Date": "2019-07-01T00:00:00", + "Tournament": "DU IV 2019", + "Round": 1, + "Motion": "This house as woke liberal parents living in a conservative red state would choose to home school their children" + }, + { + "Date": "2019-07-01T00:00:00", + "Tournament": "DU IV 2019", + "Round": 2, + "Motion": "THW not allow media to report on crime reported by refugees" + }, + { + "Date": "2019-07-01T00:00:00", + "Tournament": "DU IV 2019", + "Round": 3, + "Motion": "THBT the remaining members of ICC should breakaway from ICC & form their own unified cricketing body" + }, + { + "Date": "2019-07-01T00:00:00", + "Tournament": "DU IV 2019", + "Round": 4, + "Motion": "THW never support or finance rebel groups on foreign soil as a tactic of war" + }, + { + "Date": "2019-07-01T00:00:00", + "Tournament": "DU IV 2019", + "Round": "Open_Semi", + "Motion": "THBT the LGBTQ+ Community should include Side B Christians" + }, + { + "Date": "2019-07-01T00:00:00", + "Tournament": "DU IV 2019", + "Round": "Open_Final", + "Motion": "TH prefer a world where human life naturally ends at 50" + }, + { + "Date": "2019-06-08T00:00:00", + "Tournament": "Poznan Open 2019", + "Round": 1, + "Motion": "In areas where minorities face significant barriers to traditional representation of their culture, THS ethnic majority artists who focus their work around minority culture’s appreciation." + }, + { + "Date": "2019-06-08T00:00:00", + "Tournament": "Poznan Open 2019", + "Round": 2, + "Motion": "THBT companies should pay corporate tax in all countries that they operate in (proportional to the amount of revenue made in that country), as opposed to only the country that their headquarters are registered in." + }, + { + "Date": "2019-06-08T00:00:00", + "Tournament": "Poznan Open 2019", + "Round": 3, + "Motion": "THR the demonization of Russia in Eastern European countries." + }, + { + "Date": "2019-06-08T00:00:00", + "Tournament": "Poznan Open 2019", + "Round": 4, + "Motion": "The year is 2020 and in the UK a second referendum on Brexit has reversed the original decision. TH, as the EU, W not allow the UK to cancel Brexit." + }, + { + "Date": "2019-06-08T00:00:00", + "Tournament": "Poznan Open 2019", + "Round": 5, + "Motion": "THBT all military strategies are justified if they save more lives than they cost." + }, + { + "Date": "2019-06-08T00:00:00", + "Tournament": "Poznan Open 2019", + "Round": "Open_Final", + "Motion": "THW destroy the evidence" + }, + { + "Date": "2019-06-07T00:00:00", + "Tournament": "Tilbury House Cologne Open 2019", + "Round": 1, + "Motion": "THS the use of extra-legal and illegal methods to provide wider access to knowledge (e.g. sci-hub, hacking Jstor, unauthorised distribution of files and copies)" + }, + { + "Date": "2019-06-07T00:00:00", + "Tournament": "Tilbury House Cologne Open 2019", + "Round": 2, + "Motion": "In places where conscription of men already exists, THBT the feminist movement should advocate for conscription of women" + }, + { + "Date": "2019-06-07T00:00:00", + "Tournament": "Tilbury House Cologne Open 2019", + "Round": 3, + "Motion": "THW ban private ownership of 3D printers" + }, + { + "Date": "2019-06-07T00:00:00", + "Tournament": "Tilbury House Cologne Open 2019", + "Round": 4, + "Motion": "THS such organizations" + }, + { + "Date": "2019-06-07T00:00:00", + "Tournament": "Tilbury House Cologne Open 2019", + "Round": 5, + "Motion": "THW elect 51% of parliament by lottery" + }, + { + "Date": "2019-06-07T00:00:00", + "Tournament": "Tilbury House Cologne Open 2019", + "Round": "Open_Final", + "Motion": "THO artwork that humanizes pro-regime germans during the Second World War" + }, + { + "Date": "2019-06-07T00:00:00", + "Tournament": "Tilbury House Cologne Open 2019", + "Round": "ProAm_Final", + "Motion": "THR the modern high priorisation of sexual compatibility in romantic relationships." + }, + { + "Date": "2019-05-17T00:00:00", + "Tournament": "Vienna IV 2019", + "Round": 1, + "Motion": "THBT women should decline chivalrous gestures" + }, + { + "Date": "2019-05-17T00:00:00", + "Tournament": "Vienna IV 2019", + "Round": 2, + "Motion": "THS using social media platforms to depict stories from the Holocaust" + }, + { + "Date": "2019-05-17T00:00:00", + "Tournament": "Vienna IV 2019", + "Round": 3, + "Motion": "THW ban religious arbitration courts" + }, + { + "Date": "2019-05-17T00:00:00", + "Tournament": "Vienna IV 2019", + "Round": 4, + "Motion": "THS the strategy of “decapitation” in fighting transnational criminal organizations" + }, + { + "Date": "2019-05-17T00:00:00", + "Tournament": "Vienna IV 2019", + "Round": 5, + "Motion": "THW NOT enforce pharmaceutical patent infringements within developing nations" + }, + { + "Date": "2019-05-17T00:00:00", + "Tournament": "Vienna IV 2019", + "Round": "Novice_Final", + "Motion": "THO social media banning of alt-right figures" + }, + { + "Date": "2019-05-17T00:00:00", + "Tournament": "Vienna IV 2019", + "Round": "Open_Semi", + "Motion": "THW create and teach a unified history curriculum in the European Union" + }, + { + "Date": "2019-05-17T00:00:00", + "Tournament": "Vienna IV 2019", + "Round": "Open_Final", + "Motion": "THBT Gavrilo Princip was justified in killing Archduke Franz Ferdinand" + }, + { + "Date": "2019-05-11T00:00:00", + "Tournament": "Cambridge IV 2019", + "Round": 1, + "Motion": "This House Would expel states which fail to spend a minimum of 2% of GDP on defence from NATO." + }, + { + "Date": "2019-05-11T00:00:00", + "Tournament": "Cambridge IV 2019", + "Round": 2, + "Motion": "This House Believes that feminist movements in the developing world should integrate religious messages and institutions into their advocacy, rather than distancing themselves from them." + }, + { + "Date": "2019-05-11T00:00:00", + "Tournament": "Cambridge IV 2019", + "Round": 3, + "Motion": "This House Believes That the West should massively discourage and disincentivise economic collaboration and exchange with China." + }, + { + "Date": "2019-05-11T00:00:00", + "Tournament": "Cambridge IV 2019", + "Round": 4, + "Motion": "This House Would raise their child to prefer to be single." + }, + { + "Date": "2019-05-11T00:00:00", + "Tournament": "Cambridge IV 2019", + "Round": 5, + "Motion": "THBT the democratic nominee should commit to abolishing ICE" + }, + { + "Date": "2019-05-11T00:00:00", + "Tournament": "Cambridge IV 2019", + "Round": "ESL_Semi", + "Motion": "This House Believes That it is in the interest of the Russian Federation for Vladimir Putin to run for a fifth term as President in 2024." + }, + { + "Date": "2019-05-11T00:00:00", + "Tournament": "Cambridge IV 2019", + "Round": "ESL_Final", + "Motion": "This House prefers technocracy to democracy." + }, + { + "Date": "2019-05-11T00:00:00", + "Tournament": "Cambridge IV 2019", + "Round": "Open_Quarters", + "Motion": "This House Believes That it is in the interest of the Russian Federation for Vladimir Putin to run for a fifth term as President in 2024." + }, + { + "Date": "2019-05-11T00:00:00", + "Tournament": "Cambridge IV 2019", + "Round": "Open_Semi", + "Motion": "This House prefers technocracy to democracy." + }, + { + "Date": "2019-05-11T00:00:00", + "Tournament": "Cambridge IV 2019", + "Round": "Open_Final", + "Motion": "THBT Palestinians should prioritise striving to consolidate a Palestinian state in the Westbank and the Gaza Strip as opposed to seeking the right to return to Israel." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 1, + "Motion": "That, as a feminist parent, we would send our daughter to an all-girls school as opposed to a comparable co-ed school." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 1, + "Motion": "That feminists should actively campaign for quotas and increased female involvement in the military." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 1, + "Motion": "That we should ban pregnant women from working during the last month of their pregnancy." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 2, + "Motion": "That we should allow scientific journals to publish anonymous papers." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 2, + "Motion": "That schools should be allowed to expel students who are violent or consistent bullies, even if there is not a school immediately willing to take them." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 2, + "Motion": "That, assuming feasibility, governments should cap parents' expenditure on their children to an amount equivalent to the current median expenditure per year." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 3, + "Motion": "That we should hold pharmaceutical companies liable for harms caused by widespread misuse of their drugs." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 3, + "Motion": "That we should allow doctors to override Advance Care Directives." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 3, + "Motion": "That judges should prescribe Naltrexone instead of mandating Alcoholics Anonymous for offenders of minor alcohol related crimes." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 4, + "Motion": "That African American rap artists have a moral obligation to donate their disposable income to African American low socioeconomic-status areas" + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 4, + "Motion": "That the queer community should abandon the trend of making queer events/celebrations open to cis/straight allies (eg. bars, parties, events, mardi gras, etc)." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 4, + "Motion": "That schools should encourage children from minority backgrounds to 'code switch'." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 5, + "Motion": "That prominent social activists (e.g. the leaders of Black Lives Matter, Aung San Suu Kyi) should not choose to run for office. (" + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 5, + "Motion": "That it would be in the interests of the Democratic Party if Kamala Harris were to win the Presidential nomination instead of Bernie Sanders." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 5, + "Motion": "That we would, as the Coalition, dedicate substantial resources into challenging the legal status of minor parties and their candidates (eg. Section 44, the number of signatures, etc.)" + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 6, + "Motion": "That the state should offer criminals a new identity upon serving their sentence (e.g. new name, new background, optional plastic surgery)." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 6, + "Motion": "That judges should not consider whether evidence was collected legally when deciding to admit it." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": 6, + "Motion": "That we should ban prison guards from striking." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": "Open_Octo", + "Motion": "That the public, via referendum, should be given the power to pardon/give amnesty to whistleblowers." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": "Open_Quarters", + "Motion": "That, as a Rohingya Muslim fleeing the Myanmar military, we would join ARSA. (Octo-finals) That we regret the custom of giving gifts." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": "Open_Quarters", + "Motion": "That we regret narratives of deference to the elderly (e.g. \"older people are more experienced\")." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": "Open_Semi", + "Motion": "That the Bretton Woods institutions (i.e. the International Monetary Fund and the World Bank) have done more harm than good." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": "Open_Semi", + "Motion": "That, assuming feasibility, we should charge corporations a tax equal to their Social Cost instead of company tax." + }, + { + "Date": "2019-04-18T00:00:00", + "Tournament": "Easters 2019", + "Round": "Open_Final", + "Motion": "That the queer community should actively embrace religious organisations and queer religious individuals in its leadership positions and advocacy." + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "Cracow Open 2019", + "Round": 1, + "Motion": "This House welcomes complete video surveillance systems of public spaces in cities." + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "Cracow Open 2019", + "Round": 2, + "Motion": "This House believes that the EU should pursue further relations with China, at the expense of relations with the US." + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "Cracow Open 2019", + "Round": 3, + "Motion": "This House would criminalize defamation." + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "Cracow Open 2019", + "Round": 4, + "Motion": "This House, as an individual, prefers believing that they can singlehandedly change the world over believing that they are just one pawn in the grand scheme of things." + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "Cracow Open 2019", + "Round": 5, + "Motion": "This House believes that pro-refugee advocacy groups should portray refugees as valuable contributors to society, rather than victims of their circumstances." + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "Cracow Open 2019", + "Round": "Open_Semi", + "Motion": "This House believes that wages should be predominantly determined by the public utility of a job." + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "Cracow Open 2019", + "Round": "Open_Final", + "Motion": "This House regrets rising commodification of close and intimate relationships (including but not limited to hiring actors to play your family members; commercial hugging; premium accounts on dating apps)." + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "USUDC 2019", + "Round": 1, + "Motion": "THR the decline in influence of ‘gatekeeping’ media institutions (major newspapers, network news, etc.)" + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "USUDC 2019", + "Round": 2, + "Motion": "THW no longer require parental consent for administering invasive procedures on adolescents (e.g. piercing and tattoos, cosmetic surgery, sex reassignment surgery, etc.)" + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "USUDC 2019", + "Round": 3, + "Motion": "After popular uprisings resulting in the overthrow of long-time dictators, THBT Western nations should make support (e.g. diplomatic recognition, foreign aid, investments) to the new government explicitly contingent on holding internationally observed elections within 6 months of the dictator’s end." + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "USUDC 2019", + "Round": 4, + "Motion": "THW embrace transhumanist philosophy." + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "USUDC 2019", + "Round": 5, + "Motion": "THBT secondary education (ages 10-18) should focus on preparing students for local workforce needs rather than focusing on well-rounded basic education (i.e. mathematics, literature, physical and biological sciences, art, history)" + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "USUDC 2019", + "Round": 6, + "Motion": "THW pay known gang members to not commit violent crimes" + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "USUDC 2019", + "Round": 7, + "Motion": "THO employer-provided benefits (e.g. health insurance, childcare, retirement investment accounts)" + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "USUDC 2019", + "Round": 8, + "Motion": "THW create matriarchal semi-autonomous regions within countries, and provide legal, political, and economic support to them" + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "USUDC 2019", + "Round": "Novice_Quarters", + "Motion": "TH, as Japan, would support closing all U.S. military bases on Japanese territory." + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "USUDC 2019", + "Round": "Novice_Semis", + "Motion": "This house regrets the corporatization of higher education." + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "USUDC 2019", + "Round": "Novice_Final", + "Motion": "This supports prison abolition as opposed to prison reform." + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "USUDC 2019", + "Round": "Open_Quarters", + "Motion": "THR the stance of U.S. foreign policy in favor of Sunni forces in the Shia-Sunni conflict in the Middle East." + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "USUDC 2019", + "Round": "Open_Semis", + "Motion": "This house regrets the modern idealization of Civil Rights leaders as moderate, pacifist, and respectable." + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "USUDC 2019", + "Round": "Open_Final", + "Motion": "THW divide the United States of America into multiple countries" + }, + { + "Date": "2019-04-13T00:00:00", + "Tournament": "USUDC 2019", + "Round": "Open_Final", + "Motion": "THBT LGBTQ+ activists in non-Western countries should use and advocate for LGBTQ+ rights and individuals using their local historical terms (mahjie, hijra, etc.) instead of Western terminology (lesbian, gay, bisexual, transgender etc.)." + }, + { + "Date": "2019-04-12T00:00:00", + "Tournament": "America's Cup 2019", + "Round": 1, + "Motion": "THR the decline of Black militant groups" + }, + { + "Date": "2019-04-12T00:00:00", + "Tournament": "America's Cup 2019", + "Round": "Open_Semis", + "Motion": "THW ban the colonization of space" + }, + { + "Date": "2019-04-12T00:00:00", + "Tournament": "America's Cup 2019", + "Round": "Open_Final", + "Motion": "THO democracy" + }, + { + "Date": "2019-04-12T00:00:00", + "Tournament": "Deree Invitational LVII", + "Round": 1, + "Motion": "THBT women should pay less income tax than men" + }, + { + "Date": "2019-04-12T00:00:00", + "Tournament": "Deree Invitational LVII", + "Round": 2, + "Motion": "THW give up" + }, + { + "Date": "2019-04-12T00:00:00", + "Tournament": "Deree Invitational LVII", + "Round": 3, + "Motion": "THW never support or finance rebel groups on foreign soil as a tactic of war." + }, + { + "Date": "2019-04-12T00:00:00", + "Tournament": "Deree Invitational LVII", + "Round": 4, + "Motion": "TH, as the parent of a child prodigy, would push that child to maximize its potential." + }, + { + "Date": "2019-04-12T00:00:00", + "Tournament": "Deree Invitational LVII", + "Round": 5, + "Motion": "THBT environmentalists and animal rights activists should launch violent campaigns against companies that pollute the environment or violate animals' rights." + }, + { + "Date": "2019-04-12T00:00:00", + "Tournament": "Deree Invitational LVII", + "Round": "Novice_Final", + "Motion": "THW introduce a maximum wage." + }, + { + "Date": "2019-04-12T00:00:00", + "Tournament": "Deree Invitational LVII", + "Round": "Open_Semi", + "Motion": "THBT the WTO should allow developing countries to impose tariffs on imports from developed countries." + }, + { + "Date": "2019-04-12T00:00:00", + "Tournament": "Deree Invitational LVII", + "Round": "Open_Final", + "Motion": "THBT mainstream political parties in Europe should impose a \"cordon sanitaire\" on radical populist parties (e.g. VOX, AFD, PPV)." + }, + { + "Date": "2019-04-10T00:00:00", + "Tournament": "LUMS Asians' Debate Open", + "Round": 1, + "Motion": "TH supports job security legislation" + }, + { + "Date": "2019-04-10T00:00:00", + "Tournament": "LUMS Asians' Debate Open", + "Round": 1, + "Motion": "THW implement substantial measures to impose long-termism in corporate investment culture (eg. minimum holding periods for shares, yearly rather than quarterly financial reporting, long term executive compensation plans)" + }, + { + "Date": "2019-04-10T00:00:00", + "Tournament": "LUMS Asians' Debate Open", + "Round": 1, + "Motion": "THW prohibit hedge funds from purchasing sovereign debt issued by countries nearing insolvency" + }, + { + "Date": "2019-04-10T00:00:00", + "Tournament": "LUMS Asians' Debate Open", + "Round": 2, + "Motion": "TH, as the BJP, would reinstate Articles 370 and 35(A) of the Indian Constitution." + }, + { + "Date": "2019-04-10T00:00:00", + "Tournament": "LUMS Asians' Debate Open", + "Round": 2, + "Motion": "TH, as Xi Jinping, would remove Hong Kong’s Special Administrative Status" + }, + { + "Date": "2019-04-10T00:00:00", + "Tournament": "LUMS Asians' Debate Open", + "Round": 2, + "Motion": "THR the erosion of national sovereignty by large supranational bodies (eg the EU and the UN)" + }, + { + "Date": "2019-04-10T00:00:00", + "Tournament": "LUMS Asians' Debate Open", + "Round": 3, + "Motion": "THR the rise of movements based on ethical consumption" + }, + { + "Date": "2019-04-10T00:00:00", + "Tournament": "LUMS Asians' Debate Open", + "Round": 3, + "Motion": "THBT anyone living above the national median wage has an obligation to donate all excess wealth to charity" + }, + { + "Date": "2019-04-10T00:00:00", + "Tournament": "LUMS Asians' Debate Open", + "Round": 4, + "Motion": "THW implement universal jurisdiction for environmental crimes" + }, + { + "Date": "2019-04-10T00:00:00", + "Tournament": "LUMS Asians' Debate Open", + "Round": 4, + "Motion": "TH, as Greta Thunberg, would openly denounce capitalism as the root of climate change" + }, + { + "Date": "2019-04-10T00:00:00", + "Tournament": "LUMS Asians' Debate Open", + "Round": 4, + "Motion": "THW prevent climate change deniers from seeking political office" + }, + { + "Date": "2019-04-10T00:00:00", + "Tournament": "LUMS Asians' Debate Open", + "Round": "Open_Final", + "Motion": "TH, as Iran, would cease all support for military groups in the Middle East (e.g. Hezbollah, Hamas, Houthis etc)" + }, + { + "Date": "2019-04-10T00:00:00", + "Tournament": "LUMS Asians' Debate Open", + "Round": "Open_Final", + "Motion": "THBT governments should abandon the strategy of \"decapitation\" in fighting terrorism.", + "InfoSlide": "In the context of anti-terrorism, decapitation refers to the strategy of targeting terrorist leaders for assassination." + }, + { + "Date": "2019-04-10T00:00:00", + "Tournament": "LUMS Asians' Debate Open", + "Round": "Open_Final", + "Motion": "TH, as the Chinese state, would send in the People's Liberation Army to take back control of Hong Kong" + }, + { + "Date": "2019-04-06T00:00:00", + "Tournament": "Estonia Debate Open 2019", + "Round": 1, + "Motion": "THS the use of local lay judges in minor legal cases" + }, + { + "Date": "2019-04-06T00:00:00", + "Tournament": "Estonia Debate Open 2019", + "Round": 2, + "Motion": "This House supports the US’s use of economic warfare (eg. tariffs, targeted sanctions, etc.) against China in order to force compliance with the rules of the global economic order (eg. opening up its economy, protecting intellectual property, not engaging in currency manipulation, etc.)" + }, + { + "Date": "2019-04-06T00:00:00", + "Tournament": "Estonia Debate Open 2019", + "Round": 3, + "Motion": "THW ban the research, production and use of lethal autonomous weapons" + }, + { + "Date": "2019-04-06T00:00:00", + "Tournament": "Estonia Debate Open 2019", + "Round": 4, + "Motion": "TH regrets the Westernisation of the elites in post-colonial societies. (e.g. speaking predominantly in English, wearing western clothing, going to schools and/or universities in the West, consuming predominantly Western media)" + }, + { + "Date": "2019-04-06T00:00:00", + "Tournament": "Estonia Debate Open 2019", + "Round": 5, + "Motion": "THBT shrinking cities should be allowed to impose an “exit tax” on leaving businesses" + }, + { + "Date": "2019-04-06T00:00:00", + "Tournament": "Estonia Debate Open 2019", + "Round": "Novice_Final", + "Motion": "THBT liberal states should sponsor the hacking of infrastructure designed to limit freedom of speech in authoritarian states" + }, + { + "Date": "2019-04-06T00:00:00", + "Tournament": "Estonia Debate Open 2019", + "Round": "Open_Semi", + "Motion": "TH, as the UK conservative party, would hold a second Brexit referendum" + }, + { + "Date": "2019-04-06T00:00:00", + "Tournament": "Estonia Debate Open 2019", + "Round": "Open_Final", + "Motion": "TH prefers a world in which the prevailing norm is one of serial monogamy rather than monogamy" + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Barcelona Debating Open 2019", + "Round": 1, + "Motion": "THW make the number of votes an individual has inversely proportional to their wealth (i.e. the more wealth an individual has the fewer votes in an election)." + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Barcelona Debating Open 2019", + "Round": 2, + "Motion": "THW grant senior military officers a veto over military decisions made by politicians (e.g. troop deployments, specific missions)." + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Barcelona Debating Open 2019", + "Round": 3, + "Motion": "TH supports social movements having strict standards for what members should believe e.g feminists excluding pro-life feminists from the Women’s March." + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Barcelona Debating Open 2019", + "Round": 4, + "Motion": "THBT developing countries with substantial natural resources should nationalise natural resource production." + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Barcelona Debating Open 2019", + "Round": 5, + "Motion": "TH prefers secular governments that exclude all religion from public spaces to those that allow unlimited religious expression." + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Barcelona Debating Open 2019", + "Round": "EFL_Final", + "Motion": "THBT mainstream Spanish political parties should operate cordon sanitaire policies towards radical populists (e.g. VOX)." + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Barcelona Debating Open 2019", + "Round": "Open_Semi", + "Motion": "THBT that feminists should not use rhetoric about women being more empathetic or caring than men as part of their advocacy (e.g. “Women are good leaders because they are more compassionate”)." + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Barcelona Debating Open 2019", + "Round": "Open_Final", + "Motion": "TH prefers a world where the majority believed in determinism over one where the majority believed in free will." + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Muslim Interscholastic Tournament", + "Round": 1, + "Motion": "THBT States/Provinces/Territories should be able to decide whether to implement federal laws and regulations." + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Muslim Interscholastic Tournament", + "Round": 2, + "Motion": "THBT Indigenous/Metis peoples should be guaranteed a middle-class income as reparations for past injustices." + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Muslim Interscholastic Tournament", + "Round": 3, + "Motion": "THBT the public’s right to know ought to be valued above the right to privacy of candidates for public office." + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Muslim Interscholastic Tournament", + "Round": 4, + "Motion": "THS Prohibit the advertisement of prescription medicine to the general public" + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Muslim Interscholastic Tournament", + "Round": 5, + "Motion": "THBT all undocumented minors should be granted permanent residency." + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Muslim Interscholastic Tournament", + "Round": 6, + "Motion": "THS allow the populace to petition for revotes of elected officials during their term" + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Muslim Interscholastic Tournament", + "Round": 7, + "Motion": "THS ban providing military aid to authoritative regimes" + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Muslim Interscholastic Tournament", + "Round": 8, + "Motion": "THS substantially increase its development and/or engagement to the Republic of India." + }, + { + "Date": "2019-04-05T00:00:00", + "Tournament": "Muslim Interscholastic Tournament", + "Round": 9, + "Motion": "THS Considerably decrease its regulation of genetically modified foods." + }, + { + "Date": "2019-04-01T00:00:00", + "Tournament": "Pan American Debating Championships 2019", + "Round": 1, + "Motion": "THBT Brazil should fully privatize Petrobras / ECCQ Brasil debería privatizar por completo Petrobras" + }, + { + "Date": "2019-04-01T00:00:00", + "Tournament": "Pan American Debating Championships 2019", + "Round": 2, + "Motion": "THBT that Western countries should revoke the citizenship of individuals that traveled to the Middle East to join Jihadi groups, even if they were minors at the time of their departure / ECCQ los países occidentales deberían revocar la ciudadanía a los individuos que se trasladaron a Medio Oriente para integrarse a grupos Jihadistas , incluso si eran menores de edad al momento de su translado" + }, + { + "Date": "2019-04-01T00:00:00", + "Tournament": "Pan American Debating Championships 2019", + "Round": 3, + "Motion": "THS state attempts to help their citizens find and sustain love (e.g. subsidizing subscriptions to matching agencies such as match.com, significant funding for research on what makes a relationship last, creating courses on how to woo and keep a spouse) / EC apoya que el estado busque ayudar a sus ciudadanos a encontrar y mantener el amor (ej. Subsidiando suscripciones a sitios de citas como match.com, financiando significativamente investigaciones sobre cómo hacer que una relación perdure, creando cursos sobre cómo sorprender y conservar a tu pareja)" + }, + { + "Date": "2019-04-01T00:00:00", + "Tournament": "Pan American Debating Championships 2019", + "Round": 4, + "Motion": "THBT major awards of meritocratic distinction (e.g. the Nobel Prize, the Pulitzer Prize, Oscars, etc) should include a moral clause* *a provision that allows the honoree to receive, or hold, the award only in the case they meet a behavioral standard set by the awarding panel. / ECCQ los principales premios de reconocimiento al mérito (Ej. Premio Nobel, Premio Pulitzer, Oscar’s, etc.) deberían incluir una cláusula moral* *una condición que permite al homenajeado recibirlo y conservarlo únicamente cuando cumplan con un estándar de comportamiento establecido por el jurado calificador." + }, + { + "Date": "2019-04-01T00:00:00", + "Tournament": "Pan American Debating Championships 2019", + "Round": 5, + "Motion": "THBT developing countries should pursue the establishment of charter cities / ECCQ los países en vía de desarrollo deberían establecer ciudades chárter" + }, + { + "Date": "2019-04-01T00:00:00", + "Tournament": "Pan American Debating Championships 2019", + "Round": 6, + "Motion": "THBT the general educational approach in schools should be to discourage children from assessing their achievements in comparison to their peers. / ECCQ el enfoque general de la educación en los colegios debe ser desincentivar que los niños midan sus logros comparándolos con los de sus pares." + }, + { + "Date": "2019-04-01T00:00:00", + "Tournament": "Pan American Debating Championships 2019", + "Round": 7, + "Motion": "In countries with proportional representation, THS founding political parties that exclusively represents women’s interests / En países con representación proporcional, EC apoya la creación de partidos políticos que representan exclusivamente los intereses de las mujeres." + }, + { + "Date": "2019-04-01T00:00:00", + "Tournament": "Pan American Debating Championships 2019", + "Round": "Open_Semi", + "Motion": "THW prohibit businesses from adopting a public position on social justice issues (e.g. LGBTQIA+, racial relations, abortion, etc)" + }, + { + "Date": "2019-04-01T00:00:00", + "Tournament": "Pan American Debating Championships 2019", + "Round": "Open_Final", + "Motion": "THS countries granting rights to nature" + }, + { + "Date": "2019-04-01T00:00:00", + "Tournament": "Pan American Debating Championships 2019", + "Round": "Spanish_Quarters", + "Motion": "EC preferiría unirse al Club de los 27 que vivir una vida anónima promedio." + }, + { + "Date": "2019-04-01T00:00:00", + "Tournament": "Pan American Debating Championships 2019", + "Round": "Spanish_Semi", + "Motion": "En casos en que un funcionario público sea acusado de corrupción, EC reduciría el estándar probatorio al del “balance de probabilidades”* en vez del de la “duda razonable”." + }, + { + "Date": "2019-04-01T00:00:00", + "Tournament": "Pan American Debating Championships 2019", + "Round": "Spanish_Final", + "Motion": "ECCQ el involucramientode Estados Unidos en Panama (presencia militar, influencia cultural, relaciones economicas estrechas, etc) beneficia a los panamenos." + }, + { + "Date": "2019-03-30T00:00:00", + "Tournament": "Colgate Open", + "Round": 1, + "Motion": "THBT DINOs do more harm than good to the Democratic Party" + }, + { + "Date": "2019-03-30T00:00:00", + "Tournament": "Colgate Open", + "Round": 2, + "Motion": "In minority communities, THW prioritize free access to university over higher standards of schools education" + }, + { + "Date": "2019-03-30T00:00:00", + "Tournament": "Colgate Open", + "Round": 3, + "Motion": "THW, as a parent, teach their daughters to devalue romantic relationships" + }, + { + "Date": "2019-03-30T00:00:00", + "Tournament": "Colgate Open", + "Round": 4, + "Motion": "As part of the post-conflict government transition, TH, as the US would have partitioned Iraq into 3 separate states." + }, + { + "Date": "2019-03-30T00:00:00", + "Tournament": "Colgate Open", + "Round": 5, + "Motion": "THW break up big tech companies (Amazon, Facebook, Google)." + }, + { + "Date": "2019-03-30T00:00:00", + "Tournament": "Colgate Open", + "Round": "Novice_Final", + "Motion": "THBT liberal supreme courts should misinterpret the constitution to advance progressive rights" + }, + { + "Date": "2019-03-30T00:00:00", + "Tournament": "Colgate Open", + "Round": "Open_Quarters", + "Motion": "The westminster model is a form of government in which the executive is drawn from the elected parliament (ie. Canada, UK, Australia ect.) The prime minister is the head of the largest party or coalition, and all the cabinet ministers are Members of Parliament. In a Presidential Executive only the President (and Vice President) are elected by the population and all cabinet positions (executive) are appointed by the President (ie. the United States, France). The President also normally does not have direct control over the legislature. Motion: THS the presidential executive over the westminster model" + }, + { + "Date": "2019-03-30T00:00:00", + "Tournament": "Colgate Open", + "Round": "Open_Semis", + "Motion": "THBT there is no moral obligation to follow the law" + }, + { + "Date": "2019-03-30T00:00:00", + "Tournament": "Colgate Open", + "Round": "Open_Final", + "Motion": "Assuming that it would be illegal for anyone to become stateless, THW create a marketplace for the buying and selling of citizenship between private individuals." + }, + { + "Date": "2019-03-22T00:00:00", + "Tournament": "NAW*DC", + "Round": 1, + "Motion": "THW make college admissions a randomized lottery" + }, + { + "Date": "2019-03-22T00:00:00", + "Tournament": "NAW*DC", + "Round": 2, + "Motion": "THW record and publicize all criminal trial proceedings (eg, indictment hearings, testimonies, jury deliberations)" + }, + { + "Date": "2019-03-22T00:00:00", + "Tournament": "NAW*DC", + "Round": 3, + "Motion": "THS international intervention in Venezuela" + }, + { + "Date": "2019-03-22T00:00:00", + "Tournament": "NAW*DC", + "Round": 4, + "Motion": "Assuming it could be done without placing the burden of secrecy on adults, THP a world in which individuals are unaware of the existence of organized religions for the duration of their childhood." + }, + { + "Date": "2019-03-22T00:00:00", + "Tournament": "NAW*DC", + "Round": 5, + "Motion": "THR the narrative of the American Dream." + }, + { + "Date": "2019-03-22T00:00:00", + "Tournament": "NAW*DC", + "Round": "Novice_Final", + "Motion": "THR society's focus on the perspectives of mass murderers" + }, + { + "Date": "2019-03-22T00:00:00", + "Tournament": "NAW*DC", + "Round": "Open_Quarters", + "Motion": "THBT western tech companies should actively pursue contracts with the Chinese government and Chinese firms" + }, + { + "Date": "2019-03-22T00:00:00", + "Tournament": "NAW*DC", + "Round": "Open_Semis", + "Motion": "TH, as the LGBTQ+ community, would boycott RuPaul's Drag Race." + }, + { + "Date": "2019-03-22T00:00:00", + "Tournament": "NAW*DC", + "Round": "Open_Final", + "Motion": "Assuming the public would never find out, THP historical narratives that prioritize equal representation throughout history, even if people and events need to be fabricated." + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": 1, + "Motion": "THBT the US should abandon complete denuclearization as a prerequisite to easing sanctions on NK" + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": 1, + "Motion": "THBT the US should abandon complete denuclearization as a prerequisite to easing sanctions on NK" + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": 2, + "Motion": "THR the rise in political consumerism" + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": 2, + "Motion": "THR the rise in political consumerism" + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": 3, + "Motion": "Given a way to accurately measure an individual's empathy, THW only allow individuals with high levels of empathy for people beyond their immediate circle to vote in elections." + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": 3, + "Motion": "Given a way to accurately measure an individual's empathy, THW only allow individuals with high levels of empathy for people beyond their immediate circle to vote in elections." + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": 4, + "Motion": "THBT the IMF should require collateral in exchange for loans" + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": 4, + "Motion": "THBT the IMF should require collateral in exchange for loans" + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": 5, + "Motion": "TH, as the Pope, would abolish the concept of Hell" + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": 5, + "Motion": "TH, as the Pope, would abolish the concept of Hell" + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": "Novice_Final", + "Motion": "THS the creation of a global citizenship market" + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": "Novice_Final", + "Motion": "THS the creation of a global citizenship market" + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": "Open_Quarters", + "Motion": "TH, as the EPP, Would Expel Fidesz" + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": "Open_Quarters", + "Motion": "TH, as the EPP, Would Expel Fidesz" + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": "Open_Semi", + "Motion": "In cities and areas with rapidly increasing housing costs, THW tax new residents and use the revenue to subsidize housing costs for citizens already residing in the area" + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": "Open_Semis", + "Motion": "In cities and areas with rapidly increasing housing costs, THW tax new residents and use the revenue to subsidize housing costs for citizens already residing in the area" + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": "Open_Final", + "Motion": "THR the narrative that forgiveness is a virtue" + }, + { + "Date": "2019-03-16T00:00:00", + "Tournament": "Budapest Open 2019", + "Round": "Open_Final", + "Motion": "THR the narrative that forgiveness is a virtue" + }, + { + "Date": "2019-03-03T00:00:00", + "Tournament": "Empire Debates 2019", + "Round": 2, + "Motion": "THW establish a content rating system (e.g. the MPAA rating system for movies) for children’s and Young Adult literature - Round 2" + }, + { + "Date": "2019-03-02T00:00:00", + "Tournament": "Empire Debates 2019", + "Round": 1, + "Motion": "TH, as a hopeful for the Democratic presidential nomination, would not endorse Alexandria Ocasio-Cortez’s Green New Deal" + }, + { + "Date": "2019-03-02T00:00:00", + "Tournament": "Empire Debates 2019", + "Round": 3, + "Motion": "THBT Muslim states in Asia (including but not limited to Malaysia, Indonesia, Afghanistan, etc) should participate in currency, finance, and resource unions with Arab states rather than regional powerhouses (e.g. China, India, Russia)." + }, + { + "Date": "2019-03-02T00:00:00", + "Tournament": "Empire Debates 2019", + "Round": 4, + "Motion": "Assuming a world where superheroes exist, TH, as the United Nations, would regulate their engagement in conflicts" + }, + { + "Date": "2019-03-02T00:00:00", + "Tournament": "Empire Debates 2019", + "Round": 5, + "Motion": "THBT in times of crisis that threaten the existence of a community (e.g., famine, war, plague, natural disaster, etc), capable individuals from the community have a moral obligation to dedicate their time directly towards ending the crisis instead of pursuing nonessential activities (e.g., playing sports, making non-propagandist/apolitical art, going on vacation to the beach, pursuing education irrelevant to the crisis, etc." + }, + { + "Date": "2019-03-02T00:00:00", + "Tournament": "Empire Debates 2019", + "Round": "Novice_Final", + "Motion": "THW reallocate public school funding to create a voucher program for the poorest 10% of American households" + }, + { + "Date": "2019-03-02T00:00:00", + "Tournament": "Empire Debates 2019", + "Round": "Open_Semis", + "Motion": "THBT the United States and its allies should abandon the use of gay rights diplomacy in developing nations." + }, + { + "Date": "2019-03-02T00:00:00", + "Tournament": "Empire Debates 2019", + "Round": "Open_Final", + "Motion": "THR the concept of martyrdom" + }, + { + "Date": "2019-03-02T00:00:00", + "Tournament": "Munich Research Open 2019", + "Round": 1, + "Motion": "THBT governments should stop funding scientific programmes that have no immediate benefit for humankind (such as space travel and exploration, human cloning)" + }, + { + "Date": "2019-03-02T00:00:00", + "Tournament": "Munich Research Open 2019", + "Round": 2, + "Motion": "THBT Western states should permanently revoke the citizenship of citizens who join terrorist organisations" + }, + { + "Date": "2019-03-02T00:00:00", + "Tournament": "Munich Research Open 2019", + "Round": 3, + "Motion": "TH regrets the EU’s introduction of freedom of movement" + }, + { + "Date": "2019-03-02T00:00:00", + "Tournament": "Munich Research Open 2019", + "Round": 4, + "Motion": "THW suspend trade union powers and significantly relax labour protection laws in times of economic crisis" + }, + { + "Date": "2019-03-02T00:00:00", + "Tournament": "Munich Research Open 2019", + "Round": 5, + "Motion": "THBT causing deliberate harms to enemy civilians, by the weaker side, is a justified tactic in asymmetrical warfare" + }, + { + "Date": "2019-03-02T00:00:00", + "Tournament": "Munich Research Open 2019", + "Round": "Novice_Final", + "Motion": "TH regrets the idealisation of motherhood" + }, + { + "Date": "2019-03-02T00:00:00", + "Tournament": "Munich Research Open 2019", + "Round": "Open_Final", + "Motion": "THBT female political candidates in liberal democracies should not appeal to traditional female roles in their campaigns" + }, + { + "Date": "2019-03-01T00:00:00", + "Tournament": "Leiden Open 2019", + "Round": 1, + "Motion": "THBT the European Union should expel Hungary" + }, + { + "Date": "2019-03-01T00:00:00", + "Tournament": "Leiden Open 2019", + "Round": 2, + "Motion": "This House Supports the rise of websites that provide free access to open source and pay-wall protected academic resources" + }, + { + "Date": "2019-03-01T00:00:00", + "Tournament": "Leiden Open 2019", + "Round": 3, + "Motion": "issues that are classically seen as part of the political domain are increasingly decided on by courts through legislation. Examples include, but are not limited to: the Dutch state successfully being sued to take stronger measures against climate change (Urgenda) and forcing political parties to allow women as candidates (SGP), the British Supreme Court deciding whether the Lower House should have a vote on Brexit and Trumps measures being increasingly challenged in courts. Motion: THR the judicialisation of politics" + }, + { + "Date": "2019-03-01T00:00:00", + "Tournament": "Leiden Open 2019", + "Round": 4, + "Motion": "THW allow natural persons to pay people not to vote" + }, + { + "Date": "2019-03-01T00:00:00", + "Tournament": "Leiden Open 2019", + "Round": 5, + "Motion": "THW choose the job they are passionate about" + }, + { + "Date": "2019-03-01T00:00:00", + "Tournament": "Leiden Open 2019", + "Round": "Novice_Final", + "Motion": "This House prefers a world with a dominant norm of not expressing strong emotions" + }, + { + "Date": "2019-03-01T00:00:00", + "Tournament": "Leiden Open 2019", + "Round": "Open_Semis", + "Motion": "India, Malaysia, Singapore, Indonesia, Thailand, Japan, and South Korea. The structure of the alliance treaty replicates all the clauses of the NATO treaty. Motion: This House supports Asian NATO" + }, + { + "Date": "2019-03-01T00:00:00", + "Tournament": "Leiden Open 2019", + "Round": "Open_Final", + "Motion": "Dulce et decorum est Pro patria mori. Motion: This house believes that ”Dulce et Decorum Est pro Patria Mori” (i.e. the belief that it is sweet and right to die for your country)" + }, + { + "Date": "2019-02-23T00:00:00", + "Tournament": "Manchester IV 2019", + "Round": 1, + "Motion": "THS civil rights activists using disruptive or violent civil disobedience as a tool of protest (e.g. the Stansted 15, Gilets Jaunes/Antifa movements)" + }, + { + "Date": "2019-02-23T00:00:00", + "Tournament": "Manchester IV 2019", + "Round": 2, + "Motion": "THBT major film studios should substantially increase the number of lead roles for female villains in their blockbuster films" + }, + { + "Date": "2019-02-23T00:00:00", + "Tournament": "Manchester IV 2019", + "Round": 3, + "Motion": "THS a Unity Ticket by prominent members of the Republican and Democratic parties in the 2020 US presidential elections" + }, + { + "Date": "2019-02-23T00:00:00", + "Tournament": "Manchester IV 2019", + "Round": 4, + "Motion": "THW implement filial responsibility laws" + }, + { + "Date": "2019-02-23T00:00:00", + "Tournament": "Manchester IV 2019", + "Round": 5, + "Motion": "THBT states should actively attempt to make contact with Uncontacted Peoples and provide them with modern medicine and technology" + }, + { + "Date": "2019-02-23T00:00:00", + "Tournament": "Manchester IV 2019", + "Round": "ProAm_Final", + "Motion": "THR the trend of centring self-destructive/antisocial characters as protagonists in media (e.g. Bojack Horseman, Rick and Morty, Crazy Ex-Girlfriend, Sherlock, Mad Men…)" + }, + { + "Date": "2019-02-23T00:00:00", + "Tournament": "Manchester IV 2019", + "Round": "Open_Quarters", + "Motion": "THBT developing countries should actively discourage the creation of primate cities" + }, + { + "Date": "2019-02-23T00:00:00", + "Tournament": "Manchester IV 2019", + "Round": "Open_Semis", + "Motion": "TH prefers a world with a widespread belief in Radical Freedom" + }, + { + "Date": "2019-02-23T00:00:00", + "Tournament": "Manchester IV 2019", + "Round": "Open_Final", + "Motion": "THBT the scientific community should reject the view that science and religion are non-overlapping magisteria" + }, + { + "Date": "2019-02-22T00:00:00", + "Tournament": "GWU IV / US Universities Debate Eastern Championship 2019", + "Round": 1, + "Motion": "THW ban embedded journalism" + }, + { + "Date": "2019-02-22T00:00:00", + "Tournament": "GWU IV / US Universities Debate Eastern Championship 2019", + "Round": 2, + "Motion": "THW publicly televise the execution of death row inmates" + }, + { + "Date": "2019-02-22T00:00:00", + "Tournament": "GWU IV / US Universities Debate Eastern Championship 2019", + "Round": 3, + "Motion": "THW actively relocate unemployed people living in areas of high and structural unemployment" + }, + { + "Date": "2019-02-22T00:00:00", + "Tournament": "GWU IV / US Universities Debate Eastern Championship 2019", + "Round": 4, + "Motion": "THW provide amnesty to violent political dissidents in exchange for removing their ability to vote or run for public office, e.g. the integration of FARC rebels into Colombia" + }, + { + "Date": "2019-02-22T00:00:00", + "Tournament": "GWU IV / US Universities Debate Eastern Championship 2019", + "Round": "Novice_Final", + "Motion": "THBT professionals should have the right to refuse to provide their services based on religous grounds." + }, + { + "Date": "2019-02-22T00:00:00", + "Tournament": "GWU IV / US Universities Debate Eastern Championship 2019", + "Round": "Open_Quarters", + "Motion": "THW give land grants to women in developing nations" + }, + { + "Date": "2019-02-22T00:00:00", + "Tournament": "GWU IV / US Universities Debate Eastern Championship 2019", + "Round": "Open_Semis", + "Motion": "This house, as an upper-middle-class African American, would resettle in Africa." + }, + { + "Date": "2019-02-22T00:00:00", + "Tournament": "GWU IV / US Universities Debate Eastern Championship 2019", + "Round": "Open_Final", + "Motion": "Assuming feasibility, THW sacrifice the rich." + }, + { + "Date": "2019-02-22T00:00:00", + "Tournament": "PEP IV", + "Round": 1, + "Motion": "THW give two votes to members of disenfranchised ethnic minorities." + }, + { + "Date": "2019-02-22T00:00:00", + "Tournament": "PEP IV", + "Round": 2, + "Motion": "THW ban TalkToys" + }, + { + "Date": "2019-02-22T00:00:00", + "Tournament": "PEP IV", + "Round": 3, + "Motion": "THBT liberal democrats should provide financial and legal aid to their citizens who wish to permanently migrate abroad." + }, + { + "Date": "2019-02-22T00:00:00", + "Tournament": "PEP IV", + "Round": 4, + "Motion": "THBT Asian countries should pivot away from US and seeker closer ties with China." + }, + { + "Date": "2019-02-22T00:00:00", + "Tournament": "PEP IV", + "Round": 5, + "Motion": "THBT Pope Francis should take radical action to convince Catholics to vote only for political parties who promote redistributive policies." + }, + { + "Date": "2019-02-22T00:00:00", + "Tournament": "PEP IV", + "Round": "Open_Semis", + "Motion": "THBT states should prioritise the lives of their own soldiers over those of enemy non-combatants." + }, + { + "Date": "2019-02-22T00:00:00", + "Tournament": "PEP IV", + "Round": "Open_Final", + "Motion": "THR the decline of Marxism in Western Europe." + }, + { + "Date": "2019-02-20T00:00:00", + "Tournament": "FLTRP Training Beijing Debate Open", + "Round": 1, + "Motion": "thw ban personal accolades in team sports" + }, + { + "Date": "2019-02-20T00:00:00", + "Tournament": "FLTRP Training Beijing Debate Open", + "Round": 2, + "Motion": "thw make it a war crime to kill child soldiers in any circumstance" + }, + { + "Date": "2019-02-20T00:00:00", + "Tournament": "FLTRP Training Beijing Debate Open", + "Round": 3, + "Motion": "in developing nations, thbt workers should be allowed to trade off their employment benefits (eg pensions, health insurance, protections from labor laws) in exchange for higher wages" + }, + { + "Date": "2019-02-20T00:00:00", + "Tournament": "FLTRP Training Beijing Debate Open", + "Round": 4, + "Motion": "th, as the actress would accept the role" + }, + { + "Date": "2019-02-20T00:00:00", + "Tournament": "FLTRP Training Beijing Debate Open", + "Round": 5, + "Motion": "thw subsidize youths that opt into entrepreneurship instead of pursuing university degrees (designing, launching, and running a new business eg start ups)" + }, + { + "Date": "2019-02-20T00:00:00", + "Tournament": "FLTRP Training Beijing Debate Open", + "Round": "Novice_Semi", + "Motion": "thw relocate refugees to countries based solely on the receiving countries' level of economic wealth" + }, + { + "Date": "2019-02-20T00:00:00", + "Tournament": "FLTRP Training Beijing Debate Open", + "Round": "Novice_Final", + "Motion": "thr the recreational ownership of pets" + }, + { + "Date": "2019-02-20T00:00:00", + "Tournament": "FLTRP Training Beijing Debate Open", + "Round": "Open_Semi", + "Motion": "th, as the us Democrats, would agree to fund trump's border wall in exchange for increased gun control measures" + }, + { + "Date": "2019-02-20T00:00:00", + "Tournament": "FLTRP Training Beijing Debate Open", + "Round": "Open_Final", + "Motion": "thr the glorification of altruism" + }, + { + "Date": "2019-02-20T00:00:00", + "Tournament": "FLTRP Training Beijing Debate Open", + "Round": "Open_Quarters", + "Motion": "thw set a cap on the personal wealth an individual is allowed to own (including the value of shares that individuals own in companies" + }, + { + "Date": "2019-02-09T00:00:00", + "Tournament": "Cornell Novice Nationals 2019 & Cornell IV 2019", + "Round": 1, + "Motion": "THW actively instill a value of disobeying authority in children." + }, + { + "Date": "2019-02-09T00:00:00", + "Tournament": "Cornell Novice Nationals 2019 & Cornell IV 2019", + "Round": 2, + "Motion": "TH as the US would never militarily intervene in other countries." + }, + { + "Date": "2019-02-09T00:00:00", + "Tournament": "Cornell Novice Nationals 2019 & Cornell IV 2019", + "Round": 3, + "Motion": "THR the westernization of the elites in post-colonial countries." + }, + { + "Date": "2019-02-09T00:00:00", + "Tournament": "Cornell Novice Nationals 2019 & Cornell IV 2019", + "Round": 4, + "Motion": "THBT being single is preferable to being in a relationship." + }, + { + "Date": "2019-02-09T00:00:00", + "Tournament": "Cornell Novice Nationals 2019 & Cornell IV 2019", + "Round": 5, + "Motion": "THBT liberal media organisations should actively glorify democratic candidates of color." + }, + { + "Date": "2019-02-09T00:00:00", + "Tournament": "Cornell Novice Nationals 2019 & Cornell IV 2019", + "Round": "Novice_Quarters", + "Motion": "THBT it is always unjustifiable to maintain friendship with somebody who use hate speech." + }, + { + "Date": "2019-02-09T00:00:00", + "Tournament": "Cornell Novice Nationals 2019 & Cornell IV 2019", + "Round": "Novice_Semis", + "Motion": "THR the celebration of soldiers as heroes." + }, + { + "Date": "2019-02-09T00:00:00", + "Tournament": "Cornell Novice Nationals 2019 & Cornell IV 2019", + "Round": "Novice_Final", + "Motion": "Assuming that technology to do so existed, THW would progressively tax happiness and redistribute it." + }, + { + "Date": "2019-02-09T00:00:00", + "Tournament": "Cornell Novice Nationals 2019 & Cornell IV 2019", + "Round": "Open_Semis", + "Motion": "TH, as an Asian American, would not support the suit against Harvard University." + }, + { + "Date": "2019-02-09T00:00:00", + "Tournament": "Cornell Novice Nationals 2019 & Cornell IV 2019", + "Round": "Open_Final", + "Motion": "THS the idea of authoritarian reformers in developing countries." + }, + { + "Date": "2019-02-03T00:00:00", + "Tournament": "Munich Research Open 2019", + "Round": 1, + "Motion": "THBT governments should stop funding scientific programmes that have no immediate benefit for humankind (such as space travel and exploration, human cloning)" + }, + { + "Date": "2019-02-03T00:00:00", + "Tournament": "Munich Research Open 2019", + "Round": 2, + "Motion": "THBT Western states should permanently revoke the citizenship of citizens who join terrorist organisations" + }, + { + "Date": "2019-02-03T00:00:00", + "Tournament": "Munich Research Open 2019", + "Round": 3, + "Motion": "TH regrets the EU’s introduction of freedom of movement" + }, + { + "Date": "2019-02-03T00:00:00", + "Tournament": "Munich Research Open 2019", + "Round": 4, + "Motion": "THW suspend trade union powers and significantly relax labour protection laws in times of economic crisis" + }, + { + "Date": "2019-02-03T00:00:00", + "Tournament": "Munich Research Open 2019", + "Round": 5, + "Motion": "THBT causing deliberate harms to enemy civilians, by the weaker side, is a justified tactic in asymmetrical warfare" + }, + { + "Date": "2019-02-03T00:00:00", + "Tournament": "Munich Research Open 2019", + "Round": "Novice_Final", + "Motion": "TH regrets the idealisation of motherhood" + }, + { + "Date": "2019-02-03T00:00:00", + "Tournament": "Munich Research Open 2019", + "Round": "Open_Semi", + "Motion": "THW never enter into a relationship with a closeted individual" + }, + { + "Date": "2019-02-03T00:00:00", + "Tournament": "Munich Research Open 2019", + "Round": "Open_Final", + "Motion": "THBT female political candidates in liberal democracies should not appeal to traditional female roles in their campaigns" + }, + { + "Date": "2019-02-02T00:00:00", + "Tournament": "UDP Open 2019", + "Round": 1, + "Motion": "THBT European countries should change school syllabuses to disproportionally emphasis Arab and Islamic contributions to European culture." + }, + { + "Date": "2019-02-02T00:00:00", + "Tournament": "UDP Open 2019", + "Round": 2, + "Motion": "THW hold the Catholic Church legally responsible for sexual abuse, harrasment and grooming committed by clergy members." + }, + { + "Date": "2019-02-02T00:00:00", + "Tournament": "UDP Open 2019", + "Round": 3, + "Motion": "THBT the BDS movement reduces the likelihood of a two state solution to the Israeli-Palestinian conflict." + }, + { + "Date": "2019-02-02T00:00:00", + "Tournament": "UDP Open 2019", + "Round": 4, + "Motion": "Given the technology was available, THW allow the sale of personality traits and characteristics (such as IQ, musicality and determination)." + }, + { + "Date": "2019-02-02T00:00:00", + "Tournament": "UDP Open 2019", + "Round": 5, + "Motion": "THW grant Maduro and main officials of the Venezuelan regime amnesty in exchange for handing power over to Juan Guadio." + }, + { + "Date": "2019-02-02T00:00:00", + "Tournament": "UDP Open 2019", + "Round": "Open_Final", + "Motion": "TH as a Yellow Vest, supports attempts by Les Emergents to run for elections in European and French elections." + }, + { + "Date": "2019-01-26T00:00:00", + "Tournament": "Berkeley IV 2019", + "Round": 1, + "Motion": "THBT housing activists in San Francisco should advocate for the abolition of zoning regulations rather than increased rent control.." + }, + { + "Date": "2019-01-26T00:00:00", + "Tournament": "Berkeley IV 2019", + "Round": 2, + "Motion": "For nonviolent infractions (e.g. failure to pay tax or debts, possession of illict substances), THP an individual social credit system over incarceration." + }, + { + "Date": "2019-01-26T00:00:00", + "Tournament": "Berkeley IV 2019", + "Round": 3, + "Motion": "THBT liberal media outlets should prioritize sensational reporting (e.g., Daily Kos, Young Turks) over neutral journalism (e.g., CNN, New York Times)." + }, + { + "Date": "2019-01-26T00:00:00", + "Tournament": "Berkeley IV 2019", + "Round": 4, + "Motion": "THBT environmental activists should reject eco-friendly public-private partnerships and insist on stricter environmental regulations" + }, + { + "Date": "2019-01-26T00:00:00", + "Tournament": "Berkeley IV 2019", + "Round": 5, + "Motion": "THBT search engine algorithms and results should not be protected by the First Amendment as editorial speech." + }, + { + "Date": "2019-01-26T00:00:00", + "Tournament": "Berkeley IV 2019", + "Round": "Open_Semi", + "Motion": "THBT it is in the interest of Britain to have a second referendum on Brexit." + }, + { + "Date": "2019-01-26T00:00:00", + "Tournament": "Berkeley IV 2019", + "Round": "Open_Final", + "Motion": "THBT capitalism and feminism are fundamentally incompatible." + }, + { + "Date": "2019-01-26T00:00:00", + "Tournament": "The PES Debate Open", + "Round": 1, + "Motion": "This House would allow people raised in isolated communities (e.g. the Amish, Hasidic Jews) to sue their communities for harms caused by their lifestyle" + }, + { + "Date": "2019-01-26T00:00:00", + "Tournament": "The PES Debate Open", + "Round": 2, + "Motion": "TH, as the US Democrats, would give funding for the border wall in order to definitively end the government shutdown" + }, + { + "Date": "2019-01-26T00:00:00", + "Tournament": "The PES Debate Open", + "Round": 3, + "Motion": "This House regrets mainstream media's popularization of Western drag culture" + }, + { + "Date": "2019-01-26T00:00:00", + "Tournament": "The PES Debate Open", + "Round": 4, + "Motion": "THBT liberal states should fund the hacking of infrastructure designed to limit freedom of speech in authoritarian states" + }, + { + "Date": "2019-01-26T00:00:00", + "Tournament": "The PES Debate Open", + "Round": 5, + "Motion": "This House regrets the increasing presence of nihilism in popular culture (eg. BoJack Horseman, Rick and Morty, Nihilist Memes etc.)" + }, + { + "Date": "2019-01-26T00:00:00", + "Tournament": "The PES Debate Open", + "Round": "Novice_Final", + "Motion": "This House prefers a world where everybody believes in the concept of a sleeping God rather than an active God." + }, + { + "Date": "2019-01-26T00:00:00", + "Tournament": "The PES Debate Open", + "Round": "Open_Semis", + "Motion": "This House would rather be a part of the \"Club 27\" than live an average anonymous life" + }, + { + "Date": "2019-01-26T00:00:00", + "Tournament": "The PES Debate Open", + "Round": "Open_Final", + "Motion": "This House believes that Tech Giants (e.g. Google, Amazon, Facebook) should NOT be permitted to sue for patent infringement" + }, + { + "Date": "2019-01-26T00:00:00", + "Tournament": "The PES Debate Open", + "Round": "Open_Final", + "Motion": "This House believes that the world was better 10 years ago #tenyearchallenge" + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Northams 2019", + "Round": 1, + "Motion": "THS universal basic income rather than conditional welfare programs (such as unemployment and food stamps)." + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Northams 2019", + "Round": 2, + "Motion": "THBT Scotland should immediately announce a second referendum on independence from the UK." + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Northams 2019", + "Round": 3, + "Motion": "Given political feasibility, TH prefers a carbon tax to cap-and-trade." + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Northams 2019", + "Round": 4, + "Motion": "THBT the LGBTQ+ movement should not have focused on military inclusion as a major policy initiative." + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Northams 2019", + "Round": 5, + "Motion": "THBT states should not publicly subsidize the production or display of art." + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Northams 2019", + "Round": 6, + "Motion": "THBT the United States should offer significant military aid, lifting of sanctions, and economic aid to the Venezuelan military if they oust Maduro and support Guaido." + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Northams 2019", + "Round": "Novice_Semi", + "Motion": "TH, as Canada, would not extradite Meng Wanzhou to the United States." + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Northams 2019", + "Round": "Novice_Final", + "Motion": "THBT the threater and musical community should abandon the \"no-change\" norm." + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Northams 2019", + "Round": "Open_Octos", + "Motion": "THBT popular referenda should be banned in Western liberal democracies." + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Northams 2019", + "Round": "Open_Quarters", + "Motion": "TH, as Canada, would not extradite Meng Wanzhou to the United States." + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Northams 2019", + "Round": "Open_Semi", + "Motion": "THBT the threater and musical community should abandon the \"no-change\" norm." + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Northams 2019", + "Round": "Open_Final", + "Motion": "THBT every billionaire is a policy failure." + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Western Washington University 2019", + "Round": 1, + "Motion": "The GOP should seek to run an alternate candidate to compete with Trump during the presidential primaries" + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Western Washington University 2019", + "Round": 2, + "Motion": "This House Would hold a second binding referendum on whether the UK should leave the EU" + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Western Washington University 2019", + "Round": 3, + "Motion": "This House Regrets the feminist movement's devaluation of traditionally feminine roles" + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Western Washington University 2019", + "Round": 4, + "Motion": "This House Regrets the increased prevalence of hostile architecture" + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Western Washington University 2019", + "Round": 5, + "Motion": "This House Would not intervene in the internal affairs of Venezuela" + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Western Washington University 2019", + "Round": "Novice_Final", + "Motion": "This House Believes That acts of political protest that intentionally result in the death of an individual protester should not be stopped by others (for example: self immolation, in protest of Tibet)" + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Western Washington University 2019", + "Round": "Open_Semi", + "Motion": "This House Believes That acts of political protest that intentionally result in the death of an individual protester should not be stopped by others (for example: self immolation, in protest of Tibet)" + }, + { + "Date": "2019-01-25T00:00:00", + "Tournament": "Western Washington University 2019", + "Round": "Open_Final", + "Motion": "This House, the US Congress, Should enforce the war powers act by limiting the ability of the executive branch to independently use military force against or within the boundaries of sovereign nations, except when authorized by Congress" + }, + { + "Date": "2019-01-18T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": 1, + "Motion": "THP a world without state-funded news organizations (e.g. BBC, AlJazeera, China Xinuan News, Russia Today (RT), etc.)" + }, + { + "Date": "2019-01-18T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": 2, + "Motion": "THW expand the legal definition of a \"false police report\" to include reports made with minimal information, or reports that could reasonably be considered unnecessary." + }, + { + "Date": "2019-01-18T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": 3, + "Motion": "THBT the development of highly realistic virtual reality technology for recreational use does more harm than good." + }, + { + "Date": "2019-01-18T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": 4, + "Motion": "THP state capitalism over liberal capitalism." + }, + { + "Date": "2019-01-18T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": 5, + "Motion": "THS governments donating the organs of an individual after death, even against the wishes of that person or their family" + }, + { + "Date": "2019-01-18T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": 6, + "Motion": "THW require participants of institutions from former colonial powers to pay higher registration fees when attending large-scale international events (such as academic conferences, sporting events, debate tournaments, etc.)" + }, + { + "Date": "2019-01-18T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": "Open_Quarters", + "Motion": "TH as the OIC would cease business with China (eg freezing assets, boycotting firms, imposing tarrifs, imposing sanctions) until the Uighurs are given safety and religious liberty" + }, + { + "Date": "2019-01-18T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": "Open_Semis", + "Motion": "THBT disruptions of the government (eg fillibusters, civil servant strikes, and government shutdowns) are a legitimate political tool" + }, + { + "Date": "2019-01-18T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": "Open_Final", + "Motion": "THBT extreme economic need should be grounds for asylum" + }, + { + "Date": "2019-01-18T00:00:00", + "Tournament": "York IV 2019", + "Round": 1, + "Motion": "Given a trade-off, THW direct environmental policy towards mitigation of climate change, rather than prevention." + }, + { + "Date": "2019-01-18T00:00:00", + "Tournament": "York IV 2019", + "Round": 2, + "Motion": "THW make Ulysses contracts legally enforceable" + }, + { + "Date": "2019-01-18T00:00:00", + "Tournament": "York IV 2019", + "Round": 3, + "Motion": "THW require all professional football teams to be majority-owned by their fans" + }, + { + "Date": "2019-01-18T00:00:00", + "Tournament": "York IV 2019", + "Round": 4, + "Motion": "TH, as Turkey, would heavily align its foreign policy agenda towards Russia" + }, + { + "Date": "2019-01-18T00:00:00", + "Tournament": "York IV 2019", + "Round": "Open_Final", + "Motion": "THW prohibit the media from reporting on the mental illness of those accused of crimes" + }, + { + "Date": "2019-01-02T00:00:00", + "Tournament": "Campus-Debatte Wien 2019", + "Round": 1, + "Motion": "This House would abolish prisons." + }, + { + "Date": "2019-01-02T00:00:00", + "Tournament": "Campus-Debatte Wien 2019", + "Round": 2, + "Motion": "This House regrets the thought of the \"Zero Hour" + }, + { + "Date": "2019-01-02T00:00:00", + "Tournament": "Campus-Debatte Wien 2019", + "Round": 3, + "Motion": "This House believes that all states should create and publish a list of those financial institutions that would be saved by Bail-Out in a crisis." + }, + { + "Date": "2019-01-02T00:00:00", + "Tournament": "Campus-Debatte Wien 2019", + "Round": 4, + "Motion": "This house would abolish the Womens’ League in chess" + }, + { + "Date": "2019-01-02T00:00:00", + "Tournament": "Campus-Debatte Wien 2019", + "Round": "Open_Semi", + "Motion": "This house prefers the transhumanist world to the current state of humanity in the western world" + }, + { + "Date": "2019-01-02T00:00:00", + "Tournament": "Campus-Debatte Wien 2019", + "Round": "Open_Final", + "Motion": "This house prefers a post-growth society to a society geared towards growth." + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": 1, + "Motion": "This House, as South Africa, would forcibly break up exclusive Afrikaaner enclaves" + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": 2, + "Motion": "This House believes that the protections of international law conventions and treaties should not apply to combatants from terrorist organisations (e.g. prohibition on torture, prisoner of war status, guarantee of post-conflict release)" + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": 3, + "Motion": "This House opposes the norm that romantic love should be the primary source of fulfilment in a person's life" + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": 4, + "Motion": "This House believes that the ongoing process of decolonisation should include actively disempowering religions that were imposed on the country during colonialism" + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": 5, + "Motion": "This House would implement substantial measures to impose long-termism in corporate investment culture (e.g. minimum holding periods for shares, yearly rather than quarterly financial reporting, long-term executive compensation plans)" + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": 6, + "Motion": "This House supports granting megacities autonomous control over their economic and social policy (e.g. immigration, health, criminal justice) with national taxation policy remaining under the control of the federal government" + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": 7, + "Motion": "This House would actively encourage women not to have children" + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": 8, + "Motion": "This House believes that the United States should disengage from Syria" + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": 9, + "Motion": "This House believes that developing countries should privatise their State-Owned Enterprises (such as airlines, railway utility companies)" + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": "EFL_Semis", + "Motion": "This House would grant individuals and organisations open standing to challenge the constitutionality of laws enacted by their government" + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": "EFL_Final", + "Motion": "This House believes that it is unjustified to assist evil regimes in systematically persecuting members of their identity group in order to mitigate and moderate the regime's abuses (e.g. Israel Kasztner in Nazi-controlled Hungary, Wang Jingwei in Japan-occupied China)." + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": "ESL_Quarters", + "Motion": "This House would subsidise art that glorifies the working class" + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": "ESL_Semis", + "Motion": "This House supports governments significantly increasing their use of big data-based predictive models in decision-making to replace human judgements (e.g. criminal justice policy, allocation of healthcare resources, housing development)" + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": "ESL_Final", + "Motion": "In the lead up to the 1994 negotiated settlement in South Africa, this house believes that the ANC should have demanded further concessions (e.g. removing the amnesty provision in the TRC, greater land and economic rights) even at the expense of prolonging the conflict." + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": "Open_Partial_Double_Octos", + "Motion": "This House believes that the WHO should adopt a convention which bans the sell of drugs with high resistance tendencies (e.g. antibiotics) to countries which do not comply with WHO guidelines regarding their medical and agricultural use" + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": "Open_Octos", + "Motion": "This House believes that an approach of Political Expansionism on the part of the Chinese state is in the interests of the Chinese people" + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": "Open_Quarters", + "Motion": "This House supports a norm of embracing anger in public discourse rather than one of aspiring to dispassionate objectivity" + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": "Open_Semis", + "Motion": "This House would impose a narrow banking regulation" + }, + { + "Date": "2019-01-01T00:00:00", + "Tournament": "Cape Town WUDC 2019", + "Round": "Open_Final", + "Motion": "This House believes that the present condition of humanity is preferable to its condition in 100 years time." + }, + { + "Date": "2018-12-14T00:00:00", + "Tournament": "Birmingham IV 2018", + "Round": 1, + "Motion": "TH opposes the ownership of pets" + }, + { + "Date": "2018-12-14T00:00:00", + "Tournament": "Birmingham IV 2018", + "Round": 2, + "Motion": "TH regrets the romanticisation of art that is pursued for non-material gain (e.g. glorifying the ‘Starving Artist’)" + }, + { + "Date": "2018-12-14T00:00:00", + "Tournament": "Birmingham IV 2018", + "Round": 3, + "Motion": "THW abandon African Union plans for a single currency" + }, + { + "Date": "2018-12-14T00:00:00", + "Tournament": "Birmingham IV 2018", + "Round": 4, + "Motion": "In states with a significant ethnic minority population, TH supports the creation of political parties solely pursuing the interests of an ethnic minority group" + }, + { + "Date": "2018-12-14T00:00:00", + "Tournament": "Birmingham IV 2018", + "Round": 5, + "Motion": "TH supports the use of mirroring in popular culture (eg. music videos, movies, art, literature, etc.) (Mirroring is the performance or reversal of stereotypically misogynist actions by women, often for feminist purposes: eg. reverse cat-calling.)" + }, + { + "Date": "2018-12-14T00:00:00", + "Tournament": "Birmingham IV 2018", + "Round": "Novice_Final", + "Motion": "TH believes that governments should oppose the formation of education hierarchies" + }, + { + "Date": "2018-12-14T00:00:00", + "Tournament": "Birmingham IV 2018", + "Round": "Open_Semis", + "Motion": "TH supports the full separation of religious and political activities in Muslim-majority States" + }, + { + "Date": "2018-12-14T00:00:00", + "Tournament": "Birmingham IV 2018", + "Round": "Open_Final", + "Motion": "TH prefers a world where co-parenting is primarily non-romantic (conducted by consenting partners who have no romantic or sexual relationship, eg. friends)" + }, + { + "Date": "2018-12-08T00:00:00", + "Tournament": "Riga IV 2018", + "Round": 1, + "Motion": "This house would require companies to hire a significant percentage of employees without university degrees across all levels of their organisation" + }, + { + "Date": "2018-12-08T00:00:00", + "Tournament": "Riga IV 2018", + "Round": 2, + "Motion": "THBT the EU should cut structural funds to member states that undermine civil and political rights (e.g. restrict court independence, reduce media and academic freedom, etc.)" + }, + { + "Date": "2018-12-08T00:00:00", + "Tournament": "Riga IV 2018", + "Round": 3, + "Motion": "Assuming the existence of empathy enhancement drugs, THW ban such drugs*" + }, + { + "Date": "2018-12-08T00:00:00", + "Tournament": "Riga IV 2018", + "Round": 4, + "Motion": "THW make the weight of votes proportional to a person’s expected remaining lifespan*" + }, + { + "Date": "2018-12-08T00:00:00", + "Tournament": "Riga IV 2018", + "Round": "Novice_Final", + "Motion": "TH prefers a world in which people can’t lie" + }, + { + "Date": "2018-12-08T00:00:00", + "Tournament": "Riga IV 2018", + "Round": "Open_Semi", + "Motion": "THBT feminist movements should integrate religious messages and institutions into their advocacy" + }, + { + "Date": "2018-12-08T00:00:00", + "Tournament": "Riga IV 2018", + "Round": "Open_Semi", + "Motion": "THW ban private military contractors" + }, + { + "Date": "2018-12-08T00:00:00", + "Tournament": "Riga IV 2018", + "Round": "Open_Final", + "Motion": "THW prefer a world where wealth is seen as shameful" + }, + { + "Date": "2018-12-07T00:00:00", + "Tournament": "PAUDC Tanzania 2018", + "Round": 4, + "Motion": "THS the Comprehensive Sexuality Education programme in elementary schools in Africa." + }, + { + "Date": "2018-12-07T00:00:00", + "Tournament": "PAUDC Tanzania 2018", + "Round": 5, + "Motion": "THW reallocate revenues from such industries (e.g mining) to exclusively fund Universal basic healthcare for the poor." + }, + { + "Date": "2018-12-07T00:00:00", + "Tournament": "PAUDC Tanzania 2018", + "Round": 6, + "Motion": "THBT Liberal Democracies have an Obligation to declare all Major Cities in their Countries as Sanctuary Cities. #PAUDC2018 #Akofena19" + }, + { + "Date": "2018-12-07T00:00:00", + "Tournament": "PAUDC Tanzania 2018", + "Round": "Open_Semis", + "Motion": "This House Believes that the AU should exclusively regulate the implementation of the Belt and Road Initiative in Africa" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": 1, + "Motion": "THW require all isolated religious communities (eg. Hasidic Jews, Jehovah's Witnesses, etc.) to give all 18-year-olds a 'Rumspringa'." + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": 2, + "Motion": "THW significantly tax vacant homes" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": 3, + "Motion": "THW ban media sources from taking institutional stances on the innocence or guilt of people who have been charged with a crime, but not yet convicted or acquitted" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": 4, + "Motion": "THBT environmental organizations should start a campaign of sabotage and destruction against major pollution companies" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": 5, + "Motion": "This house regrets South Africa's rainbow nation narrative" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": 6, + "Motion": "THW pay politicians the median wage in their country" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": "Novice_Final", + "Motion": "TH prefers a world in which children are raised to aspire to be single rather than married" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": "Open_Quarters", + "Motion": "This house believes that the southern african development community (SADC) should pursue political union" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": "Open_Semis", + "Motion": "TH regrets art that glorifies gaining material wealth" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": "Open_Final", + "Motion": "THBT the ACLU should work to maximize civil liberties regardless of ideology." + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": 1, + "Motion": "After a speaker has been invited, THW allow university students to vote to reject the speaker from coming to campus." + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": 1, + "Motion": "This house regrets the rise of the gig economy." + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": 2, + "Motion": "THBT LGBT+ Pride campaigns should focus on direct protest rather than celebration" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": 2, + "Motion": "THBT it is in the interests of the four central Asian states to establish the CAU.", + "InfoSlide": "The Central Asian Union (CAU) was a tentative agreement to establish greater regional cooperation among Kazakhstan, Kyrgyzstan, Tajikistan, and Uzbekistan following the dissolution of the USSR. This included a collective peacekeeping force, closer economic integration (e.g. negotiating as a bloc in international trade agreements, a proposed common currency), and coordinating on foreign policy. The CAU was never fully realized." + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": 3, + "Motion": "TH, as a western democracy, would prefer relations with a stable autocracy as opposed to an unstable democracy" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": 3, + "Motion": "THW require sporting teams that recruit internationally to pay recruits to compete in domestic leagues for a period of time before leaving to play abroad." + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": 4, + "Motion": "Assuming the technology to significantly alters the body exists (eg, changing memory capacity, limb reinforcements...) thw recognize a right to morphological freedom" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": 4, + "Motion": "THW release the Federal Reserve from the dual mandate.", + "InfoSlide": "Since 1977, the US Federal Reserve has operated under a \"dual mandate\" from Congress to pursue full employment and low inflation. Under traditional macroeconomic theory, there is a tradeoff between these states exemplified in the Phillips Curve. Other central banks have different mandates; e.g., the European Central Bank has a singular focus on price stability." + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": 5, + "Motion": "TH, as an indvidual, W not consume works produced by immoral artists" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": 5, + "Motion": "This house would become a scientist.", + "InfoSlide": "You are a citizen in a state that issues a mandatory aptitude test. You are not required to pursue a career based on the results of the test. You scored the highest in your country on math and science, you are predicted to be one of the best scientists of your generation. You are also a very talented artist. Your true passion lies in art." + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": 6, + "Motion": "Many food ethics movements (local foods, slow foods, farm to table) condemn corporate production. Such as Farm to Table (add examples)\tTHBT food ethics movements should disavow sustainable consumption marketed by large corporations (eg, Starbucks, Chipotle)" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": 6, + "Motion": "This house would publicly fund all elections." + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": "Novice_Final", + "Motion": "Assuming that no other life existed in the galaxy, THW prefer a humanity that collectively expands and colonizes other planets to one that preserves and adapts to the Earth." + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": "Open_Quarters", + "Motion": "THBT cities should not use investment incentives to attract businesses" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": "Open_Quarters", + "Motion": "This house would pardon all deserters at the end of major war campaigns." + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": "Open_Semis", + "Motion": "TH, as the UN, would facilitate independence referendums when requested by semi-autonomous regions" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": "Open_Semis", + "Motion": "In post-conflict societies, TH prefers the creation of art with an inspirational and unifying message over art that depicts the prior or current suffering." + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": "Open_Final", + "Motion": "You are presented with a choice before you are born. You can be born into this world, or you can be born into a world without any religion or spirituality. Regardless of your choice, once born, you will not remember having made such a choice.\tTHW choose to be born in a world without religion" + }, + { + "Date": "2018-12-01T00:00:00", + "Tournament": "Seattle IV 2018", + "Round": "Open_Final", + "Motion": "This house supports the creation of charter cities in developing nations.", + "InfoSlide": " \"Charter Cities\" are tracts of uninhabited land set aside by host nations that would be semi-autonomous and administered by a developing third-party government. Citizens of the host nation could move in and out as they so desire. In recent years, Honduras has explored the option of establishing a charter city administered by the Canadian government." + }, + { + "Date": "2018-11-16T00:00:00", + "Tournament": "Cambridge IV 2018", + "Round": 1, + "Motion": "TH opposes the attempts by the feminist movement to redefine roles and behaviours traditionally associated with women (e.g. wanting to be a housewife, wearing make-up and heels) as empowering." + }, + { + "Date": "2018-11-16T00:00:00", + "Tournament": "Cambridge IV 2018", + "Round": 2, + "Motion": "THS countries withdrawing from the International Criminal Court in order to create their own regional replacements (e.g. an African Criminal Court, an InterAmerican Criminal Court)." + }, + { + "Date": "2018-11-16T00:00:00", + "Tournament": "Cambridge IV 2018", + "Round": 3, + "Motion": "In areas of chronically low academic attainment, THBT the general approach of educational charities should be to focus resources on maximising the potential of exceptional students, over helping the lowest achieving." + }, + { + "Date": "2018-11-16T00:00:00", + "Tournament": "Cambridge IV 2018", + "Round": 4, + "Motion": "THS the rise of computational creativity.", + "InfoSlide": "Computational Creativity is a scientific field researching AI models that simulate or replicate human creativity. Projects in the field include but are not limited to using AI to script films, compose music, write poetry, and paint." + + }, + { + "Date": "2018-11-16T00:00:00", + "Tournament": "Cambridge IV 2018", + "Round": 5, + "Motion": "THW give legislative veto power to a Future Generations Commission.", + "InfoSlide": "For the purposes of this debate, a 'Future Generations Commission' is an independent body mandated with mapping the long-term impacts of governmental policy on the young, or unborn generations." + }, + { + "Date": "2018-11-16T00:00:00", + "Tournament": "Cambridge IV 2018", + "Round": "ESL_Semis", + "Motion": "Where resources are significantly limited, THBT states should actively promote religion in areas of high poverty." + }, + { + "Date": "2018-11-16T00:00:00", + "Tournament": "Cambridge IV 2018", + "Round": "ESL_Final", + "Motion": "TH prefers a world in which all children are conceived with DNA from a global genetic database." + }, + { + "Date": "2018-11-16T00:00:00", + "Tournament": "Cambridge IV 2018", + "Round": "Novice_Final", + "Motion": "THBT it is immoral for individuals who have met their basic needs to not donate any excess wealth to utility maximising causes." + }, + { + "Date": "2018-11-16T00:00:00", + "Tournament": "Cambridge IV 2018", + "Round": "Open_Quarters", + "Motion": "Actually, THW rather see one innocent man go to jail than see 100 guilty men walk free." + }, + { + "Date": "2018-11-16T00:00:00", + "Tournament": "Cambridge IV 2018", + "Round": "Open_Semis", + "Motion": "THR 'Operation Car Wash'.", + "InfoSlide": "'Operation Car Wash' is a broad investigation conducted in Brazil that revealed extensive corruption. As a result of the operation, the left-leaning Workers' Party have lost power, and far-right candidate Jair Bolsonaro has been elected president." + }, + { + "Date": "2018-11-16T00:00:00", + "Tournament": "Cambridge IV 2018", + "Round": "Open_Final", + "Motion": "From behind a veil of ignorance, TH would choose to not be born." + }, + { + "Date": "2018-11-10T00:00:00", + "Tournament": "UCLA IV 2018", + "Round": 1, + "Motion": "Ban football for minors" + }, + { + "Date": "2018-11-10T00:00:00", + "Tournament": "UCLA IV 2018", + "Round": 2, + "Motion": "Democrats should abandon identity politics as a central tenant of their campaigning strategy" + }, + { + "Date": "2018-11-10T00:00:00", + "Tournament": "UCLA IV 2018", + "Round": 3, + "Motion": "Ban the use of persistent surveillance systems by police forces" + }, + { + "Date": "2018-11-10T00:00:00", + "Tournament": "UCLA IV 2018", + "Round": 4, + "Motion": "Given the technology to grant immortality exists, it would be treated as a positive right" + }, + { + "Date": "2018-11-10T00:00:00", + "Tournament": "UCLA IV 2018", + "Round": 5, + "Motion": "The dangers of fat acceptance outweigh the harms of fat shaming" + }, + { + "Date": "2018-11-10T00:00:00", + "Tournament": "UCLA IV 2018", + "Round": 6, + "Motion": "The Trump administration should abandon its widespread use of tariffs as a tool to boost the US economy" + }, + { + "Date": "2018-11-10T00:00:00", + "Tournament": "UCLA IV 2018", + "Round": "Open_Semis", + "Motion": "The United States should cease all diplomatic and military operations in the Middle East" + }, + { + "Date": "2018-11-10T00:00:00", + "Tournament": "UCLA IV 2018", + "Round": "Open_Final", + "Motion": "State governments should refuse to uphold mandates from the Supreme Court of the United States" + }, + { + "Date": "2018-11-09T00:00:00", + "Tournament": "Oxford IV 2018", + "Round": 1, + "Motion": "Assuming feasibility, THW ban all research into the possible genetic origins of sex, race and sexuality." + }, + { + "Date": "2018-11-09T00:00:00", + "Tournament": "Oxford IV 2018", + "Round": 2, + "Motion": "THBT environmental advocacy groups should prioritise lobbying governments to change environmental policy (e.g. cap and trade policies, banning environmentally harmful chemicals) rather than convincing individuals to take responsibility for their contribution to environmental damage (e.g. reducing/recycling waste, taking public transport)." + }, + { + "Date": "2018-11-09T00:00:00", + "Tournament": "Oxford IV 2018", + "Round": 3, + "Motion": "TH, as Israel, would end compulsory military service." + }, + { + "Date": "2018-11-09T00:00:00", + "Tournament": "Oxford IV 2018", + "Round": 4, + "Motion": "THR the depiction of the everyday life of people with disabilities as inspirational." + }, + { + "Date": "2018-11-09T00:00:00", + "Tournament": "Oxford IV 2018", + "Round": 5, + "Motion": "THBT the South African government should incentivize the movement of people out of townships, rather than focus on policies that try to economically develop townships." + }, + { + "Date": "2018-11-09T00:00:00", + "Tournament": "Oxford IV 2018", + "Round": "ESL_Semis", + "Motion": "THBT the US should cut all political, economic and military ties with Saudi Arabia." + }, + { + "Date": "2018-11-09T00:00:00", + "Tournament": "Oxford IV 2018", + "Round": "ESL_Final", + "Motion": "THBT social movements should reject the glorification of political violence." + }, + { + "Date": "2018-11-09T00:00:00", + "Tournament": "Oxford IV 2018", + "Round": "Novice_Final", + "Motion": "THBT post-conflict states should actively promote a unifying national narrative in the history curriculum." + }, + { + "Date": "2018-11-09T00:00:00", + "Tournament": "Oxford IV 2018", + "Round": "Open_Quarters", + "Motion": "THW allow city and local governments to be held civilly responsible for deaths that can be ascribed to homelessness." + }, + { + "Date": "2018-11-09T00:00:00", + "Tournament": "Oxford IV 2018", + "Round": "Open_Semis", + "Motion": "THBT the use of erotic capital by women does more harm than good." + }, + { + "Date": "2018-11-09T00:00:00", + "Tournament": "Oxford IV 2018", + "Round": "Open_Final", + "Motion": "THP a world where people believe you should maximize productivity to a world where people believe you should maximize leisure." + }, + { + "Date": "2018-11-03T00:00:00", + "Tournament": "Huber Debates 2018", + "Round": 1, + "Motion": "THW eliminate trial by jury and replace it with trial by judge" + }, + { + "Date": "2018-11-03T00:00:00", + "Tournament": "Huber Debates 2018", + "Round": 2, + "Motion": "As an author of a non-colonial language (Inuktitut, isiXhosa, Gikuyu, etc) THW only write in one's native language." + }, + { + "Date": "2018-11-03T00:00:00", + "Tournament": "Huber Debates 2018", + "Round": 3, + "Motion": "Assuming the two are mutually exclusive, THW prefer wage subsidies over a raised minimum wage." + }, + { + "Date": "2018-11-03T00:00:00", + "Tournament": "Huber Debates 2018", + "Round": 4, + "Motion": "THW allow for free and open use of CRISPR technology in all medical research." + }, + { + "Date": "2018-11-03T00:00:00", + "Tournament": "Huber Debates 2018", + "Round": 5, + "Motion": "Other than a prospective student's net family income, THW remove all social factors (ie, race, gender, disability status) from university admissions' decision processes." + }, + { + "Date": "2018-11-03T00:00:00", + "Tournament": "Huber Debates 2018", + "Round": "Novice_Final", + "Motion": "thbt the search for new, habitable planets should be prioritized in space exploration" + }, + { + "Date": "2018-11-03T00:00:00", + "Tournament": "Huber Debates 2018", + "Round": "Open_Quarters", + "Motion": "THBT Canada should take the lead in seeking the diplomatic isolation Saudi Arabia" + }, + { + "Date": "2018-11-03T00:00:00", + "Tournament": "Huber Debates 2018", + "Round": "Open_Semis", + "Motion": "THW hold social media companies legally liable for content on their platform" + }, + { + "Date": "2018-11-03T00:00:00", + "Tournament": "Huber Debates 2018", + "Round": "Open_Final", + "Motion": "TH prefers a world where romantic relationships are initiated by an algorithm that matches prospective partners to a near-perfect degree." + }, + { + "Date": "2018-11-02T00:00:00", + "Tournament": "Penguin Invitational 2018", + "Round": 1, + "Motion": "This House would create a military space force." + }, + { + "Date": "2018-11-02T00:00:00", + "Tournament": "Penguin Invitational 2018", + "Round": 2, + "Motion": "This House would require all voters to attend civic education classes." + }, + { + "Date": "2018-11-02T00:00:00", + "Tournament": "Penguin Invitational 2018", + "Round": 3, + "Motion": "THBT science is the key to human flourishing." + }, + { + "Date": "2018-11-02T00:00:00", + "Tournament": "Penguin Invitational 2018", + "Round": 4, + "Motion": "As the US Federal Government, THW significantly increase spending on foreign aid." + }, + { + "Date": "2018-11-02T00:00:00", + "Tournament": "Penguin Invitational 2018", + "Round": 5, + "Motion": "THBT social media is ruining democracy." + }, + { + "Date": "2018-11-02T00:00:00", + "Tournament": "Penguin Invitational 2018", + "Round": 6, + "Motion": "THBT affirmative action should be scrapped." + }, + { + "Date": "2018-11-02T00:00:00", + "Tournament": "Penguin Invitational 2018", + "Round": "Open_Semis", + "Motion": "TH encourages fluidity in expressions of identity." + }, + { + "Date": "2018-11-02T00:00:00", + "Tournament": "Penguin Invitational 2018", + "Round": "Open_Final", + "Motion": "THW have elected representatives take an oath to pursue policies only if those policies are supported by a significant majority of their constituents." + }, + { + "Date": "2018-11-01T00:00:00", + "Tournament": "IUT Professionals 2018", + "Round": 1, + "Motion": "THW abandon the use of Hierarchical Diversity Targets" + }, + { + "Date": "2018-11-01T00:00:00", + "Tournament": "IUT Professionals 2018", + "Round": 2, + "Motion": "TH as Israel would no longer label itself a Jewish nation state" + }, + { + "Date": "2018-11-01T00:00:00", + "Tournament": "IUT Professionals 2018", + "Round": 3, + "Motion": "TH regrets the glorification of the pursuit of meaning of life" + }, + { + "Date": "2018-11-01T00:00:00", + "Tournament": "IUT Professionals 2018", + "Round": 4, + "Motion": "TH, as European nations, would grant citizenship to refugees who would sign up for the military" + }, + { + "Date": "2018-11-01T00:00:00", + "Tournament": "IUT Professionals 2018", + "Round": 5, + "Motion": "TH prefers a world in which individuals actively use their sexual equity for personal and professional gain" + }, + { + "Date": "2018-11-01T00:00:00", + "Tournament": "IUT Professionals 2018", + "Round": "Open_Quarter", + "Motion": "THBT governments should require the portfolios of all multinational e-commerce companies (Amazon, Alibaba, Rakuten etc) to constitute of a minimum 50% of local products in value" + }, + { + "Date": "2018-11-01T00:00:00", + "Tournament": "IUT Professionals 2018", + "Round": "Open_Semi", + "Motion": "TH supports rainbow capitalism" + }, + { + "Date": "2018-11-01T00:00:00", + "Tournament": "IUT Professionals 2018", + "Round": "Open_Final", + "Motion": "THW ONLY SELECT INDIVIDUALS WITH THE BEST CREDENTIALS IN SCIENCE AND TECHNOLOGY" + }, + { + "Date": "2018-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2018", + "Round": 1, + "Motion": "THR the presence of “career politicians”." + }, + { + "Date": "2018-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2018", + "Round": 2, + "Motion": "THBT writers and owners of popular canons* have a moral obligation to follow the general and clear wishes of fans (e.g. JK Rowling (Harry Potter UNiverse), Disney (Star Wars), George RR Martin (Game of Thrones Universe))." + }, + { + "Date": "2018-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2018", + "Round": 3, + "Motion": "TH prefers sports leagues that are financially unregulated" + }, + { + "Date": "2018-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2018", + "Round": 4, + "Motion": "TH embraces the collection by governments and corporate entities of a significant amount of data about individuals" + }, + { + "Date": "2018-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2018", + "Round": 5, + "Motion": "THW disestablish all local councils and authorities in developed nations" + }, + { + "Date": "2018-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2018", + "Round": "Open_Semi", + "Motion": "THBT galleries and media outlets should not show content that is “of the time” but now considered offensive (e.g. racist stereotypes in the Simpsons, homophobic works of art)." + }, + { + "Date": "2018-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2018", + "Round": "Open_Final", + "Motion": "As the democrat party, THW nominate Hillary Clinton (assuming she makes herself available) as the democrat candidate for the 2020 presidential elections." + }, + { + "Date": "2018-10-27T00:00:00", + "Tournament": "Tilbury House Cologne Open 2018", + "Round": 1, + "Motion": "This House regrets the societal expectation of going to the University" + }, + { + "Date": "2018-10-27T00:00:00", + "Tournament": "Tilbury House Cologne Open 2018", + "Round": 2, + "Motion": "This House would introduce quotas for women in League of Legends Esports teams" + }, + { + "Date": "2018-10-27T00:00:00", + "Tournament": "Tilbury House Cologne Open 2018", + "Round": 3, + "Motion": "This House believes that the West should impose an arms embargo on Saudi Arabia" + }, + { + "Date": "2018-10-27T00:00:00", + "Tournament": "Tilbury House Cologne Open 2018", + "Round": 4, + "Motion": "Assuming the technology existed, This House would allow the use of technology X." + }, + { + "Date": "2018-10-27T00:00:00", + "Tournament": "Tilbury House Cologne Open 2018", + "Round": 5, + "Motion": "In states with high rates of violent crime This House supports assassination of individuals credibly accused of participating in organized crime" + }, + { + "Date": "2018-10-27T00:00:00", + "Tournament": "Tilbury House Cologne Open 2018", + "Round": "Open_Quarters", + "Motion": "This House regrets the demonization of Donald Trump" + }, + { + "Date": "2018-10-27T00:00:00", + "Tournament": "Tilbury House Cologne Open 2018", + "Round": "Open_Semis", + "Motion": "This House believes that the open immigration policy is not good for Germany" + }, + { + "Date": "2018-10-27T00:00:00", + "Tournament": "Tilbury House Cologne Open 2018", + "Round": "Open_Final", + "Motion": "Assuming that a technology exists that can accurately measure and transfer intelligence This House would radically redistribute intelligence among the population" + }, + { + "Date": "2018-10-26T00:00:00", + "Tournament": "Yale IV 2018", + "Round": 1, + "Motion": "This House would remove quarterly reporting requirements for publicly traded companies" + }, + { + "Date": "2018-10-26T00:00:00", + "Tournament": "Yale IV 2018", + "Round": 2, + "Motion": "This House believes that prominent institutions in marginalized communities (churches, schools, community centres, etc.) should practice the politics of respectability" + }, + { + "Date": "2018-10-26T00:00:00", + "Tournament": "Yale IV 2018", + "Round": 3, + "Motion": "This House supports the US's use of economic warfare (tariffs, targeted sanctions, etc.) against China in order to force compliance with the rules of the global neoliberal economic order (opening up its economy, protecting intellectual property, not engaging in currency manipulation, etc.)" + }, + { + "Date": "2018-10-26T00:00:00", + "Tournament": "Yale IV 2018", + "Round": 4, + "Motion": "This House would remove all health restrictions for prospective adoptive parents" + }, + { + "Date": "2018-10-26T00:00:00", + "Tournament": "Yale IV 2018", + "Round": 5, + "Motion": "This House believes that developing countries should never commit to having their sovereign debt disputes settled by courts in foreign countries" + }, + { + "Date": "2018-10-26T00:00:00", + "Tournament": "Yale IV 2018", + "Round": 6, + "Motion": "In countries with vigorously contested campaign contribution regulations, this House believes that the political left should not contest the premise that money is speech and should, instead, contest how that speech is regulated" + }, + { + "Date": "2018-10-26T00:00:00", + "Tournament": "Yale IV 2018", + "Round": "Novice_Final", + "Motion": "This House believes that the horrors of history are incompatible with a belief in a Judeo-Christian God" + }, + { + "Date": "2018-10-26T00:00:00", + "Tournament": "Yale IV 2018", + "Round": "Open_Quarters", + "Motion": "In a plurality of cases, this House believes that the \"me too\" movement should, on balance, prioritize a path towards redemption over retribution" + }, + { + "Date": "2018-10-26T00:00:00", + "Tournament": "Yale IV 2018", + "Round": "Open_Semis", + "Motion": "In legal systems where constitutional courts practice judicial review, this House would apply the \"no precedential effect rule\" to judgments by single judge margins" + }, + { + "Date": "2018-10-26T00:00:00", + "Tournament": "Yale IV 2018", + "Round": "Open_Final", + "Motion": "This House would legalize and train sex workers specifically to work with disabled people" + }, + { + "Date": "2018-10-20T00:00:00", + "Tournament": "Sofia Open 2018", + "Round": 1, + "Motion": "THW allow people to sue partners who cheated on them" + }, + { + "Date": "2018-10-20T00:00:00", + "Tournament": "Sofia Open 2018", + "Round": 2, + "Motion": "THBT Putin is good for Russian power on the international stage" + }, + { + "Date": "2018-10-20T00:00:00", + "Tournament": "Sofia Open 2018", + "Round": 3, + "Motion": "THBT the Bulgarian government should pay reparations to all those who were subjected to the Revival process" + }, + { + "Date": "2018-10-20T00:00:00", + "Tournament": "Sofia Open 2018", + "Round": 4, + "Motion": "THBT the western companies and investors should pull out of the Saudi Arabia's Neom project" + }, + { + "Date": "2018-10-20T00:00:00", + "Tournament": "Sofia Open 2018", + "Round": 5, + "Motion": "THR the increasing presence of nihilism in popular culture (eg. BoJack Horseman, Rick and Morty etc.)" + }, + { + "Date": "2018-10-20T00:00:00", + "Tournament": "Sofia Open 2018", + "Round": "Open_Semis", + "Motion": "TH prefers to be an averagely intelligent person to a genius" + }, + { + "Date": "2018-10-20T00:00:00", + "Tournament": "Sofia Open 2018", + "Round": "Open_Final", + "Motion": "THBT it is NOT legitimate to shame public figures for non:criminal actions they did when they were young (eg. partying, alcohol consumption, soft drugs use, political views etc.)" + }, + { + "Date": "2018-10-19T00:00:00", + "Tournament": "Rocky Mountain IV 2018", + "Round": 1, + "Motion": "THW mandate retirement from Congress at age 65." + }, + { + "Date": "2018-10-19T00:00:00", + "Tournament": "Rocky Mountain IV 2018", + "Round": 2, + "Motion": "This house, as a Palestinian, would advocate for a 1-state solution." + }, + { + "Date": "2018-10-19T00:00:00", + "Tournament": "Rocky Mountain IV 2018", + "Round": 3, + "Motion": "THBT universities that invite controversial speakers should be required, within a reasonable time frame, to invite a speaker that supports the other side of the controversy." + }, + { + "Date": "2018-10-19T00:00:00", + "Tournament": "Rocky Mountain IV 2018", + "Round": 4, + "Motion": "THBT the feminist movement should actively recruit conservative women." + }, + { + "Date": "2018-10-19T00:00:00", + "Tournament": "Rocky Mountain IV 2018", + "Round": 5, + "Motion": "Assuming Democratic control of the House, THBT the Democrats should prioritize the impeachment of President Trump." + }, + { + "Date": "2018-10-19T00:00:00", + "Tournament": "Rocky Mountain IV 2018", + "Round": "Novice_Semis", + "Motion": "TH supports ANTIFA. Good luck everyone." + }, + { + "Date": "2018-10-19T00:00:00", + "Tournament": "Rocky Mountain IV 2018", + "Round": "Open_Quarters", + "Motion": "“The premises of this mission should be inviolable. The agents of the receiving state may not enter them, except with the consent of the head of the mission.” Motion: THW repeal Article 22 Subsection 1 of the 1961 Vienna Convention on Diplomatic Relations." + }, + { + "Date": "2018-10-19T00:00:00", + "Tournament": "Rocky Mountain IV 2018", + "Round": "Open_Final", + "Motion": "THW create specific zones where community members can legally participate in nonviolent, illicit behavior (e.g. sex work, drug use)." + }, + { + "Date": "2018-10-13T00:00:00", + "Tournament": "Joensuu Mini 2018", + "Round": 1, + "Motion": "THR the decline of tightly integrated families" + }, + { + "Date": "2018-10-13T00:00:00", + "Tournament": "Joensuu Mini 2018", + "Round": 2, + "Motion": "THBT governments should actively incentivice people to move away from areas with few viable economic activities" + }, + { + "Date": "2018-10-13T00:00:00", + "Tournament": "Joensuu Mini 2018", + "Round": 3, + "Motion": "THW take the blue pill" + }, + { + "Date": "2018-10-13T00:00:00", + "Tournament": "Joensuu Mini 2018", + "Round": 4, + "Motion": "THBT the United States should return to the policy of pressuring and sanctioning North Korea" + }, + { + "Date": "2018-10-13T00:00:00", + "Tournament": "Joensuu Mini 2018", + "Round": 5, + "Motion": "THW ban the media from reporting on ongoing sex offence trials" + }, + { + "Date": "2018-10-13T00:00:00", + "Tournament": "Joensuu Mini 2018", + "Round": "Open_Final", + "Motion": "THW welcome the downfall of global capitalism" + }, + { + "Date": "2018-10-13T00:00:00", + "Tournament": "Roosevelt Open 2018", + "Round": 1, + "Motion": "THS an Opinio System of Education" + }, + { + "Date": "2018-10-13T00:00:00", + "Tournament": "Roosevelt Open 2018", + "Round": 2, + "Motion": "THS recall elections for national leaders (i.e. presidents, prime:ministers, ministers)" + }, + { + "Date": "2018-10-13T00:00:00", + "Tournament": "Roosevelt Open 2018", + "Round": 3, + "Motion": "TH as the EU would significantly increase sanctions on Russia as opposed to lifting them" + }, + { + "Date": "2018-10-13T00:00:00", + "Tournament": "Roosevelt Open 2018", + "Round": 4, + "Motion": "THBT parents should teach morality to their underage children through religious context (e.g. “it is a sin to lie”; \"help thy neighbor\" etc.)" + }, + { + "Date": "2018-10-13T00:00:00", + "Tournament": "Roosevelt Open 2018", + "Round": 5, + "Motion": "THW allow workers to sell their rights in exchange for higher pay (e.g. health and safety protections, right to maternity/paternity leave etc.)" + }, + { + "Date": "2018-10-13T00:00:00", + "Tournament": "Roosevelt Open 2018", + "Round": "Open_Quarters", + "Motion": "THO rise of social media influencers" + }, + { + "Date": "2018-10-13T00:00:00", + "Tournament": "Roosevelt Open 2018", + "Round": "Open_Semis", + "Motion": "THBT music streaming services (e.g. Spotify, Apple etc.) do more harm than good" + }, + { + "Date": "2018-10-13T00:00:00", + "Tournament": "Roosevelt Open 2018", + "Round": "Open_Final", + "Motion": "Given the choice, THBT US Supreme Court Justices should be elected by a vote among federal judges rather than a popular vote" + }, + { + "Date": "2018-10-12T00:00:00", + "Tournament": "GV Debate", + "Round": 1, + "Motion": "\"In the context of the Brazilian civil-military dictatorship begun in 1964, This House would directly engage in armed struggle.\"" + }, + { + "Date": "2018-10-12T00:00:00", + "Tournament": "GV Debate", + "Round": 2, + "Motion": "\"This House condemns the rise of the use of social networks as a vehicle for public debate.\"" + }, + { + "Date": "2018-10-12T00:00:00", + "Tournament": "GV Debate", + "Round": 3, + "Motion": "\"This House would rather live in a world where globalization had not occurred so intensely.\"" + }, + { + "Date": "2018-10-12T00:00:00", + "Tournament": "GV Debate", + "Round": "Open_Semis", + "Motion": "\"Thanks to the hierarchy, this House believes that combating \"class oppression\" is more important than combating \"oppression of identities\".\"" + }, + { + "Date": "2018-10-12T00:00:00", + "Tournament": "GV Debate", + "Round": "Open_Final", + "Motion": "\"Forced to vote between Haddad and Bolsonaro, This House would vote for Haddad.\"" + }, + { + "Date": "2018-10-12T00:00:00", + "Tournament": "Hart House Inter-Varsity 2018", + "Round": 1, + "Motion": "This House Would Not Consume The Art of People Who Have Engaged in Gravely Unethical Behavior" + }, + { + "Date": "2018-10-12T00:00:00", + "Tournament": "Hart House Inter-Varsity 2018", + "Round": 2, + "Motion": "This House Regrets The Belief That Technology Firms Will Solve The Climate Crisis" + }, + { + "Date": "2018-10-12T00:00:00", + "Tournament": "Hart House Inter-Varsity 2018", + "Round": 3, + "Motion": "This House, as the US, would stop all arms sales, military support, and other aid to Saudi Arabia" + }, + { + "Date": "2018-10-12T00:00:00", + "Tournament": "Hart House Inter-Varsity 2018", + "Round": 4, + "Motion": "This House would prefer a world where memory is permanent and infallible." + }, + { + "Date": "2018-10-12T00:00:00", + "Tournament": "Hart House Inter-Varsity 2018", + "Round": 5, + "Motion": "This House opposes the continued progress towards deep global economic integration (e.g. very low tariffs and free movement of capital and labour across borders)." + }, + { + "Date": "2018-10-12T00:00:00", + "Tournament": "Hart House Inter-Varsity 2018", + "Round": "Novice_Final", + "Motion": "With the goal of improving representation in media, this House would create original characters who belong to underrepresented groups, rather than re-imagine existing characters" + }, + { + "Date": "2018-10-12T00:00:00", + "Tournament": "Hart House Inter-Varsity 2018", + "Round": "Open_Quarters", + "Motion": "Provided that it wins control of Congress and the White House, this House believes that the Democratic Party should increase the number of justices on the Supreme Court." + }, + { + "Date": "2018-10-12T00:00:00", + "Tournament": "Hart House Inter-Varsity 2018", + "Round": "Open_Semis", + "Motion": "This House believes that the liberalization of sexual behaviour prompted by the sexual revolution fails women today" + }, + { + "Date": "2018-10-12T00:00:00", + "Tournament": "Hart House Inter-Varsity 2018", + "Round": "Open_Final", + "Motion": "This House opposes the propagation of Canadian exceptionalism" + }, + { + "Date": "2018-10-03T00:00:00", + "Tournament": "China BP", + "Round": 1, + "Motion": "This House Regrets narratives that glorify the elderly (e.g. \"The old know better\"; \"The old deserve more\" etc.)" + }, + { + "Date": "2018-10-03T00:00:00", + "Tournament": "China BP", + "Round": 2, + "Motion": "This House Believes That Supreme Courts should refrain from making decisions on controversial social issues (e.g. gay rights, abortion)" + }, + { + "Date": "2018-10-03T00:00:00", + "Tournament": "China BP", + "Round": 3, + "Motion": "During economic crises, This House Believes That states should prioritise fiscal stability (i.e. balancing budget) over increasing public spending" + }, + { + "Date": "2018-10-03T00:00:00", + "Tournament": "China BP", + "Round": 4, + "Motion": "This House Believes That international criminal tribunals should introduce the death penalty for individuals convicted of crimes against humanity" + }, + { + "Date": "2018-10-03T00:00:00", + "Tournament": "China BP", + "Round": 5, + "Motion": "This House Believes That academic journals should not publish articles that characterize colonialism as positive" + }, + { + "Date": "2018-10-03T00:00:00", + "Tournament": "China BP", + "Round": 6, + "Motion": "Assuming feasibility, in countries with conscription, This House Would forcibly delete all soldiers' memories of combat situations upon their discharge" + }, + { + "Date": "2018-10-03T00:00:00", + "Tournament": "China BP", + "Round": 7, + "Motion": "This House Believes That the deaf rights movement should disproportionately emphasize the positive experiences associated with being deaf" + }, + { + "Date": "2018-10-03T00:00:00", + "Tournament": "China BP", + "Round": 8, + "Motion": "This House, as Iran, Would resume its nuclear weapons program" + }, + { + "Date": "2018-10-03T00:00:00", + "Tournament": "China BP", + "Round": 9, + "Motion": "This House Would allow political parties to make binding electoral promises that, once broken, will immediately trigger reelection" + }, + { + "Date": "2018-10-03T00:00:00", + "Tournament": "China BP", + "Round": "Novice_Semis", + "Motion": "This House prefers a world with a dominant norm of not expressing strong emotions" + }, + { + "Date": "2018-10-03T00:00:00", + "Tournament": "China BP", + "Round": "Novice_Final", + "Motion": "This House Would abolish constitutional monarchies" + }, + { + "Date": "2018-10-03T00:00:00", + "Tournament": "China BP", + "Round": "Open_Octos", + "Motion": "This House opposes the dominant social norm in favor of monogamy" + }, + { + "Date": "2018-10-03T00:00:00", + "Tournament": "China BP", + "Round": "Open_Quarters", + "Motion": "This House Believes That President Vladimir Putin is good for Russia" + }, + { + "Date": "2018-10-03T00:00:00", + "Tournament": "China BP", + "Round": "Open_Semis", + "Motion": "This House Believes That the Pope should be elected by Catholics around the world" + }, + { + "Date": "2018-10-03T00:00:00", + "Tournament": "China BP", + "Round": "Open_Final", + "Motion": "This House Believes That Asian education systems should actively promote the view that Asian culture is superior to Western Culture" + }, + { + "Date": "2018-10-01T00:00:00", + "Tournament": "Denver IV 2018", + "Round": 1, + "Motion": "THW mandate retirement from Congress at age 65" + }, + { + "Date": "2018-10-01T00:00:00", + "Tournament": "Denver IV 2018", + "Round": 2, + "Motion": "TH, as a Palestinian, would advocate for a 1-state solution" + }, + { + "Date": "2018-10-01T00:00:00", + "Tournament": "Denver IV 2018", + "Round": 3, + "Motion": "TBHT universities that invite congroversial speakers should be required, within a reasonable time frame, to invite a speaker that supports the other side of the controversy." + }, + { + "Date": "2018-10-01T00:00:00", + "Tournament": "Denver IV 2018", + "Round": 4, + "Motion": "TBHT the feminist movement should actively recruit conservative women" + }, + { + "Date": "2018-10-01T00:00:00", + "Tournament": "Denver IV 2018", + "Round": 5, + "Motion": "Assuming Democratic control of the House, THBT the Democrats should prioritize the impeachment of President Trump" + }, + { + "Date": "2018-10-01T00:00:00", + "Tournament": "Denver IV 2018", + "Round": "Open_Quarters", + "Motion": "THW repeal Article 22 Subsection 1 of the 1961 Vienna Convention on Diplomatic Relations" + }, + { + "Date": "2018-10-01T00:00:00", + "Tournament": "Denver IV 2018", + "Round": "Open_Semis", + "Motion": "TH supports ANTIFA" + }, + { + "Date": "2018-10-01T00:00:00", + "Tournament": "Denver IV 2018", + "Round": "Open_Final", + "Motion": "THW create specific zones where community members can legally participate in nonviolent, illicit behavior (e.g sex work, drug use)" + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "HWS IV 2018", + "Round": 1, + "Motion": "This House would consider politicians under oath when making public statements on political issues* (* thus making them criminally liable for perjury if they lie about facts)" + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "HWS IV 2018", + "Round": 2, + "Motion": "In countries where compulsory military service for men exists, this House believes that feminists should advocate for the conscription of women" + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "HWS IV 2018", + "Round": 3, + "Motion": "This House believes that the LGBT movement should embrace the message that sexuality is a choice" + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "HWS IV 2018", + "Round": 4, + "Motion": "This House believes that United States foreign policy should seek to significantly restrict Iran's influence over Syria" + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "HWS IV 2018", + "Round": 5, + "Motion": "This House opposes Consumerist Culture* (*Consumerist Culture is a culture where consistently purchasing goods is expected and considered a marker of social status)" + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "HWS IV 2018", + "Round": 6, + "Motion": "This House believes that in Western states with high rates of unemployment the state should act as an employer of last resort (i.e. the state should directly employ people who are unable to find a job elsewhere)" + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "HWS IV 2018", + "Round": "Novice_Semis", + "Motion": "This House would allow communities to reduce the amount of policing employed within their neighborhoods" + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "HWS IV 2018", + "Round": "Novice_Final", + "Motion": "This House would allow the creation of Savior Siblings* (*a child who is born for the purpose of providing an organ or cell transplant to a sibling who is affected with a fatal disease)" + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "HWS IV 2018", + "Round": "Open_Quarters", + "Motion": "This House would allow individuals to sue religious institutions in their community for propagating beliefs that cause them significant harm" + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "HWS IV 2018", + "Round": "Open_Semis", + "Motion": "This House believes that the Obama administration should have prioritized affordable tertiary education over affordable healthcare" + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "HWS IV 2018", + "Round": "Open_Final", + "Motion": "This House believes that the state should curb assortative mating* (*the phenomenon of people primarily entering relationships and building families with those of similar social and economic characteristics)" + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "Mehran Debating Championship 2018", + "Round": 1, + "Motion": "TH regrets the USA's decision to leave the UNHRC." + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "Mehran Debating Championship 2018", + "Round": 2, + "Motion": "TH as Pakistan in 1979 would remain neutral in the Afghan War" + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "Mehran Debating Championship 2018", + "Round": 3, + "Motion": "THW ban violent video games." + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "Mehran Debating Championship 2018", + "Round": 4, + "Motion": "THS quotas for women in parliament" + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "Mehran Debating Championship 2018", + "Round": "Open_Quarters", + "Motion": "THW outlaw plea bargaining" + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "Mehran Debating Championship 2018", + "Round": "Open_Semi", + "Motion": "THW abolish private property" + }, + { + "Date": "2018-09-28T00:00:00", + "Tournament": "Mehran Debating Championship 2018", + "Round": "Open_Final", + "Motion": "THW elect the Chief of Army Staff of the Pakistani Military." + }, + { + "Date": "2018-09-23T00:00:00", + "Tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin 2018", + "Round": 1, + "Motion": "TH supports the symbolized popularization of painful historical events in modern pop culture." + }, + { + "Date": "2018-09-23T00:00:00", + "Tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin 2018", + "Round": 2, + "Motion": "THW REPEAL ALL NON-COMPETE LEGISLATION" + }, + { + "Date": "2018-09-23T00:00:00", + "Tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin 2018", + "Round": 3, + "Motion": "THW NOT ALLOW MEMBERS OF FAMILIES WITH OVERWHELMING SOCIAL INFLUENCE (e.g, The Adeleke Family in Osun State - Davido's family) TO CONTEST ELECTIONS" + }, + { + "Date": "2018-09-23T00:00:00", + "Tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin 2018", + "Round": 4, + "Motion": "TH AS HOODIE WILL OPT FOR THE PIG’S VALVE" + }, + { + "Date": "2018-09-23T00:00:00", + "Tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin 2018", + "Round": 5, + "Motion": "THW TOTALLY RESTRICT FUTURE COPYRIGHTING OF OPEN SOURCE SOFTWARE" + }, + { + "Date": "2018-09-23T00:00:00", + "Tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin 2018", + "Round": 6, + "Motion": "TH AS NIGERIA WILL PURSUE ISOLATIONIST ECONOMIC POLICIES" + }, + { + "Date": "2018-09-23T00:00:00", + "Tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin 2018", + "Round": 7, + "Motion": "The 2018 FIFA World Cup champions, France, won the tournament with an ethnically diverse team who could trace their origins to Guadeloupe, Algeria, Guinea, Mali, French Guiana, Dr Congo, Martinique, Morocco, and Senegal. Motion:THBT colonial states that directly benefit in sports from the integration of athletes with roots to former colonies, should actively pay dividends to these former colonies, separate from existing financial obligations." + }, + { + "Date": "2018-09-23T00:00:00", + "Tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin 2018", + "Round": "Open_Octos", + "Motion": "THW ABOLISH COMPULSORY REPRESENTATION" + }, + { + "Date": "2018-09-23T00:00:00", + "Tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin 2018", + "Round": "Open_Quarters", + "Motion": "THBT ethnic minorities and movements that seek to break their ceilings(e.g glass, bamboo, black) and eliminate their underrepresentation should prioritize notions of intersectionality over their actual objectives." + }, + { + "Date": "2018-09-23T00:00:00", + "Tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin 2018", + "Round": "Open_Semis", + "Motion": "THR the practice of banking secrecy" + }, + { + "Date": "2018-09-23T00:00:00", + "Tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin 2018", + "Round": "Open_Final", + "Motion": "TH as a person appointed as a medical proxy will be held culpable by the patient upon recovery for decisions opposed to their preferred life choices (ideologies, medical choices etc) but crucial to their recovery" + }, + { + "Date": "2018-09-21T00:00:00", + "Tournament": "McGill Central Novice Championship", + "Round": 2, + "Motion": "THR the glorification of self-made success" + }, + { + "Date": "2018-09-21T00:00:00", + "Tournament": "McGill Central Novice Championship", + "Round": 3, + "Motion": "THBT state subsidization of art should be distributed through a random lottery" + }, + { + "Date": "2018-09-21T00:00:00", + "Tournament": "McGill Central Novice Championship", + "Round": 4, + "Motion": "THW eliminate the government's ability to enact back to work legislation for all education workers." + }, + { + "Date": "2018-09-21T00:00:00", + "Tournament": "McGill Central Novice Championship", + "Round": 5, + "Motion": "THBT democratic governments should never be allowed to exercise prior restraint, even in cases of national security." + }, + { + "Date": "2018-09-21T00:00:00", + "Tournament": "McGill Central Novice Championship", + "Round": "Novice_Final", + "Motion": "In Canada, criminal court judges are appointed. In other countries, such as the US, Japan, and Switzerland, judges are elected. The methods and voting systems used to elect these judges varies based on country and municipality. In the US for example, judges run for local office in the same way as other politicians (eg, mayors, council people, etc.), and sometimes have a party affiliation for campaigning. Motion: THP elected over appointed judges in criminal courts" + }, + { + "Date": "2018-09-14T00:00:00", + "Tournament": "Cedar College Debating Championship 2018", + "Round": 1, + "Motion": "THBT political representatives should deliberately seek to achieve the best political outcomes for their own local community or constituency, even at the expense of the national interest." + }, + { + "Date": "2018-09-14T00:00:00", + "Tournament": "Cedar College Debating Championship 2018", + "Round": 2, + "Motion": "TH prefers bail-ins to bail-outs" + }, + { + "Date": "2018-09-14T00:00:00", + "Tournament": "Cedar College Debating Championship 2018", + "Round": 3, + "Motion": "THBT feminist movements should mobilise masculinity in service of feminist goals (e.g. \"real men respect women\") rather than deconstruct it (e.g. raising awareness to the issue of toxic masculinity)" + }, + { + "Date": "2018-09-14T00:00:00", + "Tournament": "Cedar College Debating Championship 2018", + "Round": 4, + "Motion": "THBT India should actively oppose Chinese aggression in Asia" + }, + { + "Date": "2018-09-14T00:00:00", + "Tournament": "Cedar College Debating Championship 2018", + "Round": "Open_Quarters", + "Motion": "TH does not regret internet piracy" + }, + { + "Date": "2018-09-14T00:00:00", + "Tournament": "Cedar College Debating Championship 2018", + "Round": "Open_Semis", + "Motion": "THW make rehabilitation the sole criteria for releasing criminals from prison" + }, + { + "Date": "2018-09-14T00:00:00", + "Tournament": "Cedar College Debating Championship 2018", + "Round": "Open_Final", + "Motion": "TH, as a member of Pakistan's Economic Advisory Council, would resign." + }, + { + "Date": "2018-09-14T00:00:00", + "Tournament": "Jewell Debate Tournament", + "Round": 1, + "Motion": "This house regrets the commercialization of social movements." + }, + { + "Date": "2018-09-14T00:00:00", + "Tournament": "Jewell Debate Tournament", + "Round": 2, + "Motion": "This house would require companies to provide economic compensation & job retraining to those unemployed by the automation of their work." + }, + { + "Date": "2018-09-14T00:00:00", + "Tournament": "Jewell Debate Tournament", + "Round": 3, + "Motion": "This house believes that the Democratic Party should move toward socialism in candidate selection and policy platform." + }, + { + "Date": "2018-09-14T00:00:00", + "Tournament": "Jewell Debate Tournament", + "Round": 4, + "Motion": "Developing countries should ban the entry of charitable organizations that tie aid or services to religious conversion." + }, + { + "Date": "2018-09-14T00:00:00", + "Tournament": "Jewell Debate Tournament", + "Round": 5, + "Motion": "This house believes that anonymous resistance from inside the Trump administration is a heroic act." + }, + { + "Date": "2018-09-14T00:00:00", + "Tournament": "Jewell Debate Tournament", + "Round": "Open_Final", + "Motion": "In areas of high crime, this house would impose a curfew on men." + }, + { + "Date": "2018-09-12T00:00:00", + "Tournament": "Israel's English Cup 2018", + "Round": 1, + "Motion": "THW exclusively fund African NGOs instead of Western NGOs working in African countries." + }, + { + "Date": "2018-09-12T00:00:00", + "Tournament": "Israel's English Cup 2018", + "Round": 2, + "Motion": "THW strongly subsidize and promote feminist pornography." + }, + { + "Date": "2018-09-12T00:00:00", + "Tournament": "Israel's English Cup 2018", + "Round": 3, + "Motion": "TH would forbid western tech companies from accepting chinese standards in order to access the chinese market (e.g. Google accepting censorship, Apple moving servers to china etc)." + }, + { + "Date": "2018-09-12T00:00:00", + "Tournament": "Israel's English Cup 2018", + "Round": "Open_Semis", + "Motion": "THW ban ownership of 3D printers for personal use." + }, + { + "Date": "2018-09-12T00:00:00", + "Tournament": "Israel's English Cup 2018", + "Round": "Open_Final", + "Motion": "This House Opposes cultural and academic boycott." + }, + { + "Date": "2018-09-06T00:00:00", + "Tournament": "Joynt Scroll 2018", + "Round": 1, + "Motion": "This house would require all schools in New Zealand to become co-educational" + }, + { + "Date": "2018-09-06T00:00:00", + "Tournament": "Joynt Scroll 2018", + "Round": 2, + "Motion": "THW replace the Māori seats in Parliament with a Māori upper house" + }, + { + "Date": "2018-09-06T00:00:00", + "Tournament": "Joynt Scroll 2018", + "Round": 3, + "Motion": "This house regrets that President Obama did not enforce the 'red line' in Syria" + }, + { + "Date": "2018-09-06T00:00:00", + "Tournament": "Joynt Scroll 2018", + "Round": 4, + "Motion": "TH, as a US Democratic presidential contender, would make repeal of the second amendment part of their core policy platform for 2020" + }, + { + "Date": "2018-09-06T00:00:00", + "Tournament": "Joynt Scroll 2018", + "Round": 5, + "Motion": "This house, as Inda, would embrace China's One Belt One Road Initiative" + }, + { + "Date": "2018-09-06T00:00:00", + "Tournament": "Joynt Scroll 2018", + "Round": 6, + "Motion": "You are a relatively successful indie film-maker who has been approached by a major movie studio to direct a major film franchise. THW turn down the offer." + }, + { + "Date": "2018-09-06T00:00:00", + "Tournament": "Joynt Scroll 2018", + "Round": "Open_Semi", + "Motion": "This house regrets the Obergefell decision" + }, + { + "Date": "2018-09-06T00:00:00", + "Tournament": "Joynt Scroll 2018", + "Round": "Open_Final", + "Motion": "TH prefers a world where everyone believes in free will" + }, + { + "Date": "2018-08-31T00:00:00", + "Tournament": "The Nixor College Debating Championship 2018", + "Round": 1, + "Motion": "THW tear down gated communities in the developing world." + }, + { + "Date": "2018-08-31T00:00:00", + "Tournament": "The Nixor College Debating Championship 2018", + "Round": 2, + "Motion": "THBT education systems should actively teach sticking it to the man." + }, + { + "Date": "2018-08-31T00:00:00", + "Tournament": "The Nixor College Debating Championship 2018", + "Round": 3, + "Motion": "TH, as the international community, would support the BDS Movement in light of the Jewish Nation State Bill." + }, + { + "Date": "2018-08-31T00:00:00", + "Tournament": "The Nixor College Debating Championship 2018", + "Round": 4, + "Motion": "THW fabricate evidence in order to prove that historic icons had been gay." + }, + { + "Date": "2018-08-31T00:00:00", + "Tournament": "The Nixor College Debating Championship 2018", + "Round": "Open_Quarters", + "Motion": "THW give the Rohingya Arms." + }, + { + "Date": "2018-08-31T00:00:00", + "Tournament": "The Nixor College Debating Championship 2018", + "Round": "Open_Semi", + "Motion": "THW require religious establishments to have female clergy in order to qualify for tax breaks" + }, + { + "Date": "2018-08-31T00:00:00", + "Tournament": "The Nixor College Debating Championship 2018", + "Round": "Open_Final", + "Motion": "THBT the discovery of a means to stop the human aging process would be a curse to humanity." + }, + { + "Date": "2018-08-25T00:00:00", + "Tournament": "Joynt Scroll (NZ Prepared Debating Tournament)", + "Round": 1, + "Motion": "THW require all schools in New Zealand to become co-educational" + }, + { + "Date": "2018-08-25T00:00:00", + "Tournament": "Joynt Scroll (NZ Prepared Debating Tournament)", + "Round": 2, + "Motion": "THW replace the Māori seats in Parliament with a Māori upper house" + }, + { + "Date": "2018-08-25T00:00:00", + "Tournament": "Joynt Scroll (NZ Prepared Debating Tournament)", + "Round": 3, + "Motion": "TH regrets that President Obama did not enforce the ‘red line’ in Syria" + }, + { + "Date": "2018-08-25T00:00:00", + "Tournament": "Joynt Scroll (NZ Prepared Debating Tournament)", + "Round": 4, + "Motion": "TH, as a US Democratic presidential contender, would make repeal of the second amendment part of their core policy platform for 2020" + }, + { + "Date": "2018-08-25T00:00:00", + "Tournament": "Joynt Scroll (NZ Prepared Debating Tournament)", + "Round": 5, + "Motion": "TH, as India, would embrace China’s One Belt One Road initiative" + }, + { + "Date": "2018-08-25T00:00:00", + "Tournament": "Joynt Scroll (NZ Prepared Debating Tournament)", + "Round": 6, + "Motion": "You are a relatively successful indie film-maker who has been approached by a major movie studio to direct a major film franchise. THW turn down the offer" + }, + { + "Date": "2018-08-25T00:00:00", + "Tournament": "Joynt Scroll (NZ Prepared Debating Tournament)", + "Round": "Open_Semis", + "Motion": "TH regrets the Obergefell decision" + }, + { + "Date": "2018-08-25T00:00:00", + "Tournament": "Joynt Scroll (NZ Prepared Debating Tournament)", + "Round": "Open_Final", + "Motion": "TH prefers a world where everyone believes in free will" + }, + { + "Date": "2018-08-01T00:00:00", + "Tournament": "Macau Tournament of Champions BP IV", + "Round": 1, + "Motion": "This House Would end all state financial support to religion" + }, + { + "Date": "2018-08-01T00:00:00", + "Tournament": "Macau Tournament of Champions BP IV", + "Round": 2, + "Motion": "This House Would create an international court to prosecute leaders adopting disastrous economic policies" + }, + { + "Date": "2018-08-01T00:00:00", + "Tournament": "Macau Tournament of Champions BP IV", + "Round": 3, + "Motion": "Given a way to measure an individual's empathy, This House Would only allow individuals with high levels of empathy for people beyond their immediate circles, to vote in the election." + }, + { + "Date": "2018-08-01T00:00:00", + "Tournament": "Macau Tournament of Champions BP IV", + "Round": 4, + "Motion": "This House Supports the increased presence of the \"intellectual dark web\" on mainstream media" + }, + { + "Date": "2018-08-01T00:00:00", + "Tournament": "Macau Tournament of Champions BP IV", + "Round": 5, + "Motion": "This House Believes That states formerly under the rule of the Soviet Union should NOT emphasize their history of struggle against Russian imperialism in constructing their national identity" + }, + { + "Date": "2018-08-01T00:00:00", + "Tournament": "Macau Tournament of Champions BP IV", + "Round": 6, + "Motion": "This House Believes That Supreme Court justices should adopt 'original meaning' theories when interpreting constitutions" + }, + { + "Date": "2018-08-01T00:00:00", + "Tournament": "Macau Tournament of Champions BP IV", + "Round": 7, + "Motion": "THW allow only women to be the heads of political parties" + }, + { + "Date": "2018-08-01T00:00:00", + "Tournament": "Macau Tournament of Champions BP IV", + "Round": "Open_Quarters", + "Motion": "This House Believes That the state should strongly incentivise highly educated individuals to have children" + }, + { + "Date": "2018-08-01T00:00:00", + "Tournament": "Macau Tournament of Champions BP IV", + "Round": "Open_Semi", + "Motion": "This House Believes That the EU should employ similar tactics to those Russia used in the 2016 US election in order to undermine the Trump administration" + }, + { + "Date": "2018-08-01T00:00:00", + "Tournament": "Macau Tournament of Champions BP IV", + "Round": "Open_Final", + "Motion": "This House regrets the westernisation of the elites in post-colonial countries (e.g. speaking predominantly in English, going to schools/universities in the West, consuming predominantly Western Media)." + }, + { + "Date": "2018-07-30T00:00:00", + "Tournament": "Novi Sad EUDC 2018", + "Round": 1, + "Motion": "This House Believes that the US Democratic Party should move to the left in candidate selection and policy platform" + }, + { + "Date": "2018-07-30T00:00:00", + "Tournament": "Novi Sad EUDC 2018", + "Round": 2, + "Motion": "This House believes that State Health Services should allow private companies to run hospitals for profit" + }, + { + "Date": "2018-07-30T00:00:00", + "Tournament": "Novi Sad EUDC 2018", + "Round": 3, + "Motion": "This House believes that the State should fund the creation of, and access to, realistic androids that simulate romantic relationships." + }, + { + "Date": "2018-07-30T00:00:00", + "Tournament": "Novi Sad EUDC 2018", + "Round": 4, + "Motion": "This House Regrets the glorification of the immediate postcolonial leaders in Sub-Saharan Africa." + }, + { + "Date": "2018-07-30T00:00:00", + "Tournament": "Novi Sad EUDC 2018", + "Round": 5, + "Motion": "This House Believes That South Korea should abandon the goal of, and all policies which aim at, Korean reunification" + }, + { + "Date": "2018-07-30T00:00:00", + "Tournament": "Novi Sad EUDC 2018", + "Round": 6, + "Motion": "This House regrets the increasing trend of popular shows featuring neurodivergence* as the central theme. *Neurodivergence refers to those whose psychology is non standard, e.g. for reasons of mental health, mental disability, etc." + }, + { + "Date": "2018-07-30T00:00:00", + "Tournament": "Novi Sad EUDC 2018", + "Round": 7, + "Motion": "This House, as Colombia, would cease cooperation with the USA in the War Against Drugs" + }, + { + "Date": "2018-07-30T00:00:00", + "Tournament": "Novi Sad EUDC 2018", + "Round": 8, + "Motion": "This House Believes That Artists should not participate in the ongoing interpretation of their art." + }, + { + "Date": "2018-07-30T00:00:00", + "Tournament": "Novi Sad EUDC 2018", + "Round": 9, + "Motion": "This house supports first generation immigrants to Western Europe encouraging their children to fully assimilate and identify with the local culture" + }, + { + "Date": "2018-07-30T00:00:00", + "Tournament": "Novi Sad EUDC 2018", + "Round": "ESL_Quarters", + "Motion": "THBT the EU should decriminalise human smuggling*. * Human smuggling is the aiding of a willing person to illegally cross a border. It is distinct from human trafficking, in which the person does not consent." + }, + { + "Date": "2018-07-30T00:00:00", + "Tournament": "Novi Sad EUDC 2018", + "Round": "ESL_Semis", + "Motion": "THR the decline of labour union power in the West" + }, + { + "Date": "2018-07-30T00:00:00", + "Tournament": "Novi Sad EUDC 2018", + "Round": "ESL_Final", + "Motion": "This House supports the promotion of collective guilt after large scale crimes against humanity" + }, + { + "Date": "2018-07-30T00:00:00", + "Tournament": "Novi Sad EUDC 2018", + "Round": "Open_Octos", + "Motion": "THW prefer a religion which preaches that one's fate in the material world is predetermined rather than one which preaches that choices influence it" + }, + { + "Date": "2018-07-30T00:00:00", + "Tournament": "Novi Sad EUDC 2018", + "Round": "Open_Quarters", + "Motion": "THBT the IMF should require direct control over a country's monetary policy as a condition of national bailouts." + }, + { + "Date": "2018-07-30T00:00:00", + "Tournament": "Novi Sad EUDC 2018", + "Round": "Open_Semis", + "Motion": "THBT liberal democracies should constitutionally enshrine the right of regions to unilaterally secede" + }, + { + "Date": "2018-07-30T00:00:00", + "Tournament": "Novi Sad EUDC 2018", + "Round": "Open_Final", + "Motion": "THR the shift in the #MeToo movement from victims sharing their experiences to holding public figures to account" + }, + { + "Date": "2018-07-14T00:00:00", + "Tournament": "Split Open 2018", + "Round": 1, + "Motion": "This House would mandate by law that all couples must equally share domestic work" + }, + { + "Date": "2018-07-14T00:00:00", + "Tournament": "Split Open 2018", + "Round": 2, + "Motion": "TH opposes left wing media using mockery to cover the far right e.g. The Daily Show, Last Week Tonight" + }, + { + "Date": "2018-07-14T00:00:00", + "Tournament": "Split Open 2018", + "Round": 3, + "Motion": "This House would prefer that US Supreme Court Justices were elected by popular vote" + }, + { + "Date": "2018-07-14T00:00:00", + "Tournament": "Split Open 2018", + "Round": 4, + "Motion": "THBT Croatian Democratic Party (HDZ) should disassociate from Thompson including but not limited to not playing his songs on their rallies, not making public appearance at their rallies etc." + }, + { + "Date": "2018-07-14T00:00:00", + "Tournament": "Split Open 2018", + "Round": 5, + "Motion": "TH as the UK Conservative Party would hold a second Brexit referendum" + }, + { + "Date": "2018-07-14T00:00:00", + "Tournament": "Split Open 2018", + "Round": "Open_Final", + "Motion": "THBT athletes should not be permitted to express political views during major sporting events" + }, + { + "Date": "2018-06-30T00:00:00", + "Tournament": "KCL Open 2018", + "Round": 1, + "Motion": "THW censor any music which promotes derogatory attitudes towards women." + }, + { + "Date": "2018-06-30T00:00:00", + "Tournament": "KCL Open 2018", + "Round": 2, + "Motion": "THB the EU should offer automatic membership to any constituent member that leaves the United Kingdom." + }, + { + "Date": "2018-06-30T00:00:00", + "Tournament": "KCL Open 2018", + "Round": 3, + "Motion": "THR the self-commercialisation of indigenous culture. (For example, Maori “village tours”, Aboriginal art fairs, and Native American casinos)." + }, + { + "Date": "2018-06-30T00:00:00", + "Tournament": "KCL Open 2018", + "Round": 4, + "Motion": "THW ban all forms of self-incrimination" + }, + { + "Date": "2018-06-30T00:00:00", + "Tournament": "KCL Open 2018", + "Round": 5, + "Motion": "THB that the countries of former Yugoslavia should create a common history curriculum and textbook." + }, + { + "Date": "2018-06-30T00:00:00", + "Tournament": "KCL Open 2018", + "Round": "Open_Semi", + "Motion": "THR the existence of caste-based political parties in India." + }, + { + "Date": "2018-06-30T00:00:00", + "Tournament": "KCL Open 2018", + "Round": "Open_Final", + "Motion": "THW welcome an isolationist America" + }, + { + "Date": "2018-06-30T00:00:00", + "Tournament": "KCL Open 2018", + "Round": "ProAm_Final", + "Motion": "TH, as the survivor community, would choose not to." + }, + { + "Date": "2018-05-12T00:00:00", + "Tournament": "Novi Sad Open 2018", + "Round": 1, + "Motion": "This House supports individuals publicizing the identity of people who attend far right protests and gatherings in the USA to their community (coworkers, employers, family etc.)" + }, + { + "Date": "2018-05-12T00:00:00", + "Tournament": "Novi Sad Open 2018", + "Round": 1, + "Motion": "This House supports individuals publicizing the identity of people who attend far right protests and gatherings in the USA to their community (coworkers, employers, family etc.)" + }, + { + "Date": "2018-05-12T00:00:00", + "Tournament": "Novi Sad Open 2018", + "Round": 2, + "Motion": "This House would privatize NASA" + }, + { + "Date": "2018-05-12T00:00:00", + "Tournament": "Novi Sad Open 2018", + "Round": 2, + "Motion": "This House would privatize NASA" + }, + { + "Date": "2018-05-12T00:00:00", + "Tournament": "Novi Sad Open 2018", + "Round": 3, + "Motion": "This House opposes Twitch's decision to ban sexually suggestive content on their platform" + }, + { + "Date": "2018-05-12T00:00:00", + "Tournament": "Novi Sad Open 2018", + "Round": 3, + "Motion": "This House opposes Twitch's decision to ban sexually suggestive content on their platform" + }, + { + "Date": "2018-05-12T00:00:00", + "Tournament": "Novi Sad Open 2018", + "Round": 4, + "Motion": "This House would allow victims (and families of deceased) of gun violence to sue the sellers of the gun used in the act for compensation" + }, + { + "Date": "2018-05-12T00:00:00", + "Tournament": "Novi Sad Open 2018", + "Round": 4, + "Motion": "This House would allow victims (and families of deceased) of gun violence to sue the sellers of the gun used in the act for compensation" + }, + { + "Date": "2018-05-12T00:00:00", + "Tournament": "Novi Sad Open 2018", + "Round": "Open_Final", + "Motion": "This House believes that prominent individuals outside politics (e.g. business leaders, celebrities) from developing countries should emphasize the positive aspects of their country, rather than the negative aspects when speaking on an international platform" + }, + { + "Date": "2018-05-12T00:00:00", + "Tournament": "Novi Sad Open 2018", + "Round": "Open_Final", + "Motion": "This House believes that prominent individuals outside politics (e.g. business leaders, celebrities) from developing countries should emphasize the positive aspects of their country, rather than the negative aspects when speaking on an international platform" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": 1, + "Motion": "THBT religious institutions should to take custody of children in street situations, even without the consent of their parents" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": 1, + "Motion": "THBT religious institutions should to take custody of children in street situations, even without the consent of their parents" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": 2, + "Motion": "If it were discovered during an armed conflict that a population hides terrorists, THW not consider a war crime to attack civilians" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": 2, + "Motion": "If it were discovered during an armed conflict that a population hides terrorists, THW not consider a war crime to attack civilians" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": 3, + "Motion": "THBT government must grant economic compensation to those unemployed by the automation of their work" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": 3, + "Motion": "THBT government must grant economic compensation to those unemployed by the automation of their work" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": 4, + "Motion": "THBT sovereign debt must be insured with the assets of that country, including, among others, land, natural resources and state enterprises, in case of non-compliance" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": 4, + "Motion": "THBT sovereign debt must be insured with the assets of that country, including, among others, land, natural resources and state enterprises, in case of non-compliance" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": 5, + "Motion": "TH, as a public educational institution, would prohibit all school football programs due to the risks of CTE" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": 5, + "Motion": "TH, as a public educational institution, would prohibit all school football programs due to the risks of CTE" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": 6, + "Motion": "THW punish natural or legal persons who are accused of cultural appropriation" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": 6, + "Motion": "THW punish natural or legal persons who are accused of cultural appropriation" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": 7, + "Motion": "THBT human beings must sow terrestrial life forms on other planets even if that destroys endemic life forms of those planets" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": 7, + "Motion": "THBT human beings must sow terrestrial life forms on other planets even if that destroys endemic life forms of those planets" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": 8, + "Motion": "THS the creation of similar groups to the Gulabi Gang in Latin America" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": 8, + "Motion": "THS the creation of similar groups to the Gulabi Gang in Latin America" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": "Novice_Final", + "Motion": "THBT it should be prohibited all acts of election campaign with the exception of public debates" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": "Novice_Final", + "Motion": "THBT it should be prohibited all acts of election campaign with the exception of public debates" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": "Open_Semis", + "Motion": "THW choose China" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": "Open_Semis", + "Motion": "THW choose China" + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": "Open_Final", + "Motion": "Assuming it is legal, THW justify that federal states with high rates of violence, hire mercenaries (private armies) to fight organized crime." + }, + { + "Date": "2018-05-10T00:00:00", + "Tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "Round": "Open_Final", + "Motion": "Assuming it is legal, THW justify that federal states with high rates of violence, hire mercenaries (private armies) to fight organized crime." + }, + { + "Date": "2018-04-30T00:00:00", + "Tournament": "MDX Open", + "Round": 1, + "Motion": "This House would make voting power depreciate with age." + }, + { + "Date": "2018-04-30T00:00:00", + "Tournament": "MDX Open", + "Round": 2, + "Motion": "This House would prevent the development of geoengineering techniques." + }, + { + "Date": "2018-04-30T00:00:00", + "Tournament": "MDX Open", + "Round": 3, + "Motion": "THW abolish juries in all criminal trials" + }, + { + "Date": "2018-04-30T00:00:00", + "Tournament": "MDX Open", + "Round": 4, + "Motion": "Given the opportunity THW reject immortality" + }, + { + "Date": "2018-04-30T00:00:00", + "Tournament": "MDX Open", + "Round": "Open_Semi", + "Motion": "This House believes that the Israeli government should grant citizenship to permanent Palestinian residents in Israeli-controlled areas." + }, + { + "Date": "2018-04-30T00:00:00", + "Tournament": "MDX Open", + "Round": "Open_Final", + "Motion": "This House believes that the pursuit of social mobility is doing more harm than good." + }, + { + "Date": "2018-04-28T00:00:00", + "Tournament": "Nottingham Trent Open 2018", + "Round": 1, + "Motion": "THW take the Blue Pill (to forget)" + }, + { + "Date": "2018-04-28T00:00:00", + "Tournament": "Nottingham Trent Open 2018", + "Round": 2, + "Motion": "This House believes that the rise in illegal downloading and streaming services has been beneficial to the world of music." + }, + { + "Date": "2018-04-28T00:00:00", + "Tournament": "Nottingham Trent Open 2018", + "Round": 3, + "Motion": "This House believes that the Poor of the Developed World are entitled to vote for policies which protect their own economic interests at the expense of those of the Global Poor." + }, + { + "Date": "2018-04-28T00:00:00", + "Tournament": "Nottingham Trent Open 2018", + "Round": 4, + "Motion": "This House would make having a women‘s football team a requirement for playing in the English premier league (EPL)." + }, + { + "Date": "2018-04-28T00:00:00", + "Tournament": "Nottingham Trent Open 2018", + "Round": "Open_Final", + "Motion": "Supposing feasibility, This House Supports the establishment of a Queer Republic" + }, + { + "Date": "2018-04-27T00:00:00", + "Tournament": "Athens Open 2018", + "Round": 1, + "Motion": "TH opposes the portrayal of criminal lifestyles as “cool” in popular entertainment (e.g. Narcos, Breaking Bad, Scarface)" + }, + { + "Date": "2018-04-27T00:00:00", + "Tournament": "Athens Open 2018", + "Round": 2, + "Motion": "THBT Greece should ban Sharia law in Western Thrace." + }, + { + "Date": "2018-04-27T00:00:00", + "Tournament": "Athens Open 2018", + "Round": 3, + "Motion": "THB that it is in China’s interest to not retaliate to the imposition of tariffs by the Trump Administration" + }, + { + "Date": "2018-04-27T00:00:00", + "Tournament": "Athens Open 2018", + "Round": 4, + "Motion": "THO the buying and selling of emotional services" + }, + { + "Date": "2018-04-27T00:00:00", + "Tournament": "Athens Open 2018", + "Round": 5, + "Motion": "THBT social media platforms should aggressively prioritise content from the mainstream media over less established media outlets" + }, + { + "Date": "2018-04-27T00:00:00", + "Tournament": "Athens Open 2018", + "Round": "Open_Quarters", + "Motion": "THP a world in which this machine exists" + }, + { + "Date": "2018-04-27T00:00:00", + "Tournament": "Athens Open 2018", + "Round": "Open_Semi", + "Motion": "THW ban individuals credibly accused of corruption from running for public office." + }, + { + "Date": "2018-04-27T00:00:00", + "Tournament": "Athens Open 2018", + "Round": "Open_Final", + "Motion": "THBT the general approach of states should be to repatriate refugees once they no longer have a well-founded fear of persecution or violence." + }, + { + "Date": "2018-04-14T00:00:00", + "Tournament": "Maynooth Open 2018", + "Round": 1, + "Motion": "THR The Rise of Far Left Politics in Western Countries" + }, + { + "Date": "2018-04-14T00:00:00", + "Tournament": "Maynooth Open 2018", + "Round": 1, + "Motion": "THR The Rise of Far Left Politics in Western Countries" + }, + { + "Date": "2018-04-14T00:00:00", + "Tournament": "Maynooth Open 2018", + "Round": 3, + "Motion": "THB Women Are Legitimate in Using Erotic Capital" + }, + { + "Date": "2018-04-14T00:00:00", + "Tournament": "Maynooth Open 2018", + "Round": 3, + "Motion": "THB Women Are Legitimate in Using Erotic Capital" + }, + { + "Date": "2018-04-14T00:00:00", + "Tournament": "Maynooth Open 2018", + "Round": 5, + "Motion": "THBT African states should extend dual citizenship status to members of their diaspora, including the right to vote in elections, and right of return, as part of the AU's diaspora initiative." + }, + { + "Date": "2018-04-14T00:00:00", + "Tournament": "Maynooth Open 2018", + "Round": 5, + "Motion": "THBT African states should extend dual citizenship status to members of their diaspora, including the right to vote in elections, and right of return, as part of the AU's diaspora initiative." + }, + { + "Date": "2018-04-14T00:00:00", + "Tournament": "Maynooth Open 2018", + "Round": "Novice_Final", + "Motion": "THW Pull the Switch" + }, + { + "Date": "2018-04-14T00:00:00", + "Tournament": "Maynooth Open 2018", + "Round": "Novice_Final", + "Motion": "THW Pull the Switch" + }, + { + "Date": "2018-04-14T00:00:00", + "Tournament": "Maynooth Open 2018", + "Round": "Open_Semis", + "Motion": "TH, As the EU, would trigger Article 7 if Hungary failed to commit to democratic reform" + }, + { + "Date": "2018-04-14T00:00:00", + "Tournament": "Maynooth Open 2018", + "Round": "Open_Semis", + "Motion": "TH, As the EU, would trigger Article 7 if Hungary failed to commit to democratic reform" + }, + { + "Date": "2018-04-01T00:00:00", + "Tournament": "NLUO BPD 2018", + "Round": 1, + "Motion": "This house prefers leaderless movements." + }, + { + "Date": "2018-04-01T00:00:00", + "Tournament": "NLUO BPD 2018", + "Round": 2, + "Motion": "This house would allow plaintiffs to sell their right to sue to third parties." + }, + { + "Date": "2018-04-01T00:00:00", + "Tournament": "NLUO BPD 2018", + "Round": 3, + "Motion": "This house regrets Oxford University's decision to provide more time in their exams." + }, + { + "Date": "2018-04-01T00:00:00", + "Tournament": "NLUO BPD 2018", + "Round": 4, + "Motion": "This house would disallow the practice of Instantaneously Naturalizing foreign athletes to serve on national sports teams." + }, + { + "Date": "2018-04-01T00:00:00", + "Tournament": "NLUO BPD 2018", + "Round": "Open_Semi", + "Motion": "This house prefers bail-in over bail-out." + }, + { + "Date": "2018-04-01T00:00:00", + "Tournament": "NLUO BPD 2018", + "Round": "Open_Final", + "Motion": "Assuming the switch will never be discovered, this house will tell the poor couple their baby died and hand the surviving baby over to the wealthy couple." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": 1, + "Motion": "This house believes that we should exclusively fund political parties through public funding." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": 1, + "Motion": "This house regrets written constitutions." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": 2, + "Motion": "This house believes that, in highly populated urban areas, the government should set a maximum rent that may be charged for residential tenancies." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": 2, + "Motion": "This house would abolish income tax in favour of consumption taxes." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": 3, + "Motion": "This house would prefer a world where it is commonly believed that free will does not exist." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": 3, + "Motion": "This house supports a movement towards granting human rights to AI." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": 4, + "Motion": "A Western democratic nation has recently been the target of a relatively large terrorist attack. That nation has elections scheduled in a week. This house would cancel those elections." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": 4, + "Motion": "This house believes that social media companies should aggressively exclude extremist political content from their platforms." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": 5, + "Motion": "You are one of New Zealand's top historians and have been asked by the Waitangi Tribunal to provide a record of harm borne by an iwi. You are confident your report will be accepted as true. This house would alter the historical documents to increase the iwi's likely Treaty settlement." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": 5, + "Motion": "You are an innkeeper. It is approximately 0BC. The King has issued an edict requiring all newborns to be handed to his soldiers in pain of death. You know of such a newborn, he is in your inn’s stable. You suspect the child may be sacred to your God. This house would hand over the child." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": 6, + "Motion": "This house believes that feminists should criticise decisions made by women that seem to entrench patriarchal norms even where women claim it is their choice (e.g. foregoing careers to raise children, having cosmetic surgery)." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": 6, + "Motion": "This house would enforce surrogacy contracts, even if the surrogate mother refuses after giving birth." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": 7, + "Motion": "This house regrets the Truth and Reconciliation amnesty process." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": 7, + "Motion": "This house believes that in post colonial countries, land confiscated by colonial powers should be seized by the state without compensation." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": 8, + "Motion": "This house believes that the criminal law should not distinguish an attempt to commit a crime from successfully committing a crime." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": 8, + "Motion": "This house believes that juries, not judges, should be entirely responsible for sentencing decisions." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": "Open_Semis", + "Motion": "You are a humanitarian charity operating in a conflict-zone and have been instructed that to remain working in the country you must provide 50% of your donations to the government or else all access to the country will be forcibly cut off. This house would remain in the conflict-zone." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": "Open_Semis", + "Motion": "This house believes that charities should not accept money from donors they consider immoral." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": "Open_Semis", + "Motion": "This house supports student unions who disaffiliate controversial student groups." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": "Open_Semis", + "Motion": "This house believes that we should recognise a right to be free from intentionally offensive speech." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": "Open_Final", + "Motion": "This house believes that Western democratic countries should unilaterally evacuate relics of historical or cultural importance located in unstable countries and take possession of them." + }, + { + "Date": "2018-03-31T00:00:00", + "Tournament": "NZ Easters 2018", + "Round": "Open_Final", + "Motion": "This house believes that the International Criminal Court should use private military contractors to arrest people wanted by the Court." + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "KUET IV 2018", + "Round": 1, + "Motion": "THBT Indigenous Communities should form their own professional sports teams" + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "KUET IV 2018", + "Round": 2, + "Motion": "THW abolish out of court settlements for crimes related to sexual harassment of any kind" + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "KUET IV 2018", + "Round": 3, + "Motion": "THS the rise of Roseanne in mainstream media" + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "KUET IV 2018", + "Round": 4, + "Motion": "TH regrets universalization of western liberal values" + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "Shanghai International Debate Open", + "Round": 1, + "Motion": "THBT states should not prosecute members of terrorist organisations (e.g. ISIS, Al-Qaeda) who surrender to those states." + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "Shanghai International Debate Open", + "Round": 2, + "Motion": "THW anonymize the funding, display, and sale of art" + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "Shanghai International Debate Open", + "Round": 3, + "Motion": "THW, as a billionaire who opposes Artificial Intelligence, fund violent and destructive action against companies that aim to create strong Artificial Intelligence" + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "Shanghai International Debate Open", + "Round": 4, + "Motion": "THBT NATO should end all political, economic, and military support for the Russian Commonwealth." + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "Shanghai International Debate Open", + "Round": 5, + "Motion": "THW ban religious institutions from asking for donations from their followers." + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "Shanghai International Debate Open", + "Round": 6, + "Motion": "THBT former colonial powers should drastically increase the number of immigrants from their ex-colonies." + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "Shanghai International Debate Open", + "Round": "Novice_Quarter", + "Motion": "Countries with declining populations should abandon policies that aim to increase the birth rate (ex. incentivising citizens to marry and have children)" + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "Shanghai International Debate Open", + "Round": "Novice_Semi", + "Motion": "THBT environmental advocacy groups should prioritise individual-centric actions (e.g. recycling, not eating meat etc.) at the expense of policy-level changes" + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "Shanghai International Debate Open", + "Round": "Novice_Final", + "Motion": "THBT WLDs should introduce 'youthocratic' voting." + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "Shanghai International Debate Open", + "Round": "Open_Octos", + "Motion": "THBT states without the death penalty should never extradite individuals to countries where they may face the death penalty." + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "Shanghai International Debate Open", + "Round": "Open_Quarters", + "Motion": "THBT the IMF should not make financial support conditional on recipient states adopting austerity measures" + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "Shanghai International Debate Open", + "Round": "Open_Semi", + "Motion": "TH, as a parent, would teach their female children to adopt traditionally masculine personality traits (e.g. self-promotion, assertiveness)" + }, + { + "Date": "2018-03-30T00:00:00", + "Tournament": "Shanghai International Debate Open", + "Round": "Open_Final", + "Motion": "THR the glorification of hard work" + }, + { + "Date": "2018-03-11T00:00:00", + "Tournament": "The Beacon Debating Club 2018", + "Round": 1, + "Motion": "THW privatise the water supply." + }, + { + "Date": "2018-03-11T00:00:00", + "Tournament": "The Beacon Debating Club 2018", + "Round": 2, + "Motion": "THW compensate workers for the loss of jobs resulting out of automation." + }, + { + "Date": "2018-03-11T00:00:00", + "Tournament": "The Beacon Debating Club 2018", + "Round": 3, + "Motion": "THW ban religious political parties in secular states." + }, + { + "Date": "2018-03-11T00:00:00", + "Tournament": "The Beacon Debating Club 2018", + "Round": "Open_Semi", + "Motion": "TH regrets the rise of call out culture." + }, + { + "Date": "2018-03-11T00:00:00", + "Tournament": "The Beacon Debating Club 2018", + "Round": "Open_Final", + "Motion": "THBT states should construct data based profiles of their citizens (China social credit for example)" + }, + { + "Date": "2018-03-10T00:00:00", + "Tournament": "2018 Empire Debates", + "Round": 1, + "Motion": "THR the choice by gun control activists to focus on mass shootings as the primary consequence of gun violence" + }, + { + "Date": "2018-03-10T00:00:00", + "Tournament": "2018 Empire Debates", + "Round": 2, + "Motion": "THP the English Rule to the American Rule.", + "InfoSlide": "The English Rule requires that the loser in a lawsuit pays the winner's legal fees, and is observed by nearly every Western democracy. In the United States, however, the both sides pay their own attorney fees unless otherwise specified by the judge (this is rare)." + }, + { + "Date": "2018-03-10T00:00:00", + "Tournament": "2018 Empire Debates", + "Round": 3, + "Motion": "THBT political parties should actively prohibit candidates with radically different beliefs from running under the party name" + }, + { + "Date": "2018-03-10T00:00:00", + "Tournament": "2018 Empire Debates", + "Round": 4, + "Motion": "TH, as a major news agency, would only publish positive reviews of minority-focused media (Queer Eye, Moonlight, Call Me By Your Name)" + }, + { + "Date": "2018-03-10T00:00:00", + "Tournament": "2018 Empire Debates", + "Round": 5, + "Motion": "THR the prominence of religious rehabilitation programs in prisons" + }, + { + "Date": "2018-03-10T00:00:00", + "Tournament": "2018 Empire Debates", + "Round": "Novice_Final", + "Motion": "THBT all national economic policy (taxation, monetary policy, tariffs, etc) should be set by an appointed panel of economists rather than by elected officials" + }, + { + "Date": "2018-03-10T00:00:00", + "Tournament": "2018 Empire Debates", + "Round": "Open_Semis", + "Motion": "TH, as an emerging economy, prefers supporting domestically-based banks to the exclusion of multinational financial institutions (for example, providing support to Banco de Mexico and the businesses and individuals who use BdeM in Mexico, but not those who bank at HSBC Mexico)." + }, + { + "Date": "2018-03-10T00:00:00", + "Tournament": "2018 Empire Debates", + "Round": "Open_Final", + "Motion": "THP a conception of human rights which derives its authority from a divine being rather than a secular source." + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "North America Womxn's and Gender Minorities' Debate Championship 2018", + "Round": 1, + "Motion": "THP antiheroes as the dominant female archetype in literature and film" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "North America Womxn's and Gender Minorities' Debate Championship 2018", + "Round": 2, + "Motion": "THBT the left should publicly support the violent suppression of alt-right speech" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "North America Womxn's and Gender Minorities' Debate Championship 2018", + "Round": 3, + "Motion": "THS the seizure and redistribution of land owned by the descendants of former colonizers in post colonial states" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "North America Womxn's and Gender Minorities' Debate Championship 2018", + "Round": 4, + "Motion": "THP a world where nobody can lie" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "North America Womxn's and Gender Minorities' Debate Championship 2018", + "Round": 5, + "Motion": "THW nationalize pharmaceutical research" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "North America Womxn's and Gender Minorities' Debate Championship 2018", + "Round": "Novice_Semis", + "Motion": "THBT having children is immoral" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "North America Womxn's and Gender Minorities' Debate Championship 2018", + "Round": "Novice_Final", + "Motion": "THBT successful minority activists have a duty to donate their effects to schools that represent their community (eg: women's universities, HBCUs, Tribal Colleges, etc)" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "North America Womxn's and Gender Minorities' Debate Championship 2018", + "Round": "Open_Quarters", + "Motion": "THW ban non-disclosure agreements in the private sector" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "North America Womxn's and Gender Minorities' Debate Championship 2018", + "Round": "Open_Semis", + "Motion": "a 2014 study reported that 19% of trans* people were denied health care by their provider due to their gender identity; 28% experienced harassment in a medical setting; 28% postponed care due to discrimination. Currently,there are approximately 6 doctors in the US and 2 in Canada that perform genital reconstruction surgery. Trans* people may have transition-related needs that create dependency on the healthcare system. Motion: THW establish and fund separate health clinics to provide accessible and comprehensive care to trans*gender people" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "North America Womxn's and Gender Minorities' Debate Championship 2018", + "Round": "Open_Final", + "Motion": "THBT the media should portray mass shootings as exclusively the result of social narratives of masculinity and systemic misogyny" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Pan Pacific Debate Championship 2018", + "Round": 1, + "Motion": "This house believes that companies should publish compensation information for all employees" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Pan Pacific Debate Championship 2018", + "Round": 2, + "Motion": "This house supports the brave new world" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Pan Pacific Debate Championship 2018", + "Round": 3, + "Motion": "This house believes that Hollywood should blacklist anyone credibly accused of sexual misconduct" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Pan Pacific Debate Championship 2018", + "Round": 4, + "Motion": "This house would require all debaters to pass a course in geography before debating foreign policy motions" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Pan Pacific Debate Championship 2018", + "Round": 5, + "Motion": "TH, as the European Union, would create a joint military force" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Pan Pacific Debate Championship 2018", + "Round": 6, + "Motion": "This house would criminally prosecute payers and recipients of sports bounties" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Pan Pacific Debate Championship 2018", + "Round": "Open_Semi", + "Motion": "This house would regulate Google as if it were a public utility" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Pan Pacific Debate Championship 2018", + "Round": "Open_Final", + "Motion": "THW not inform the public" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "US Western Regional Championship 2018", + "Round": 1, + "Motion": "This house prefers a world in which social media costs money to use, but users do not give up the rights to their data, to the current world" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "US Western Regional Championship 2018", + "Round": 2, + "Motion": "This house welcomes the production of art by artificial intelligence" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "US Western Regional Championship 2018", + "Round": 3, + "Motion": "This house would place a tax on meat" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "US Western Regional Championship 2018", + "Round": 4, + "Motion": "This house believes that the West should engage in covert efforts to overthrow Vladimir Putin" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "US Western Regional Championship 2018", + "Round": 5, + "Motion": "This house believes that Cabinet appointees should be protected from firing once they are approved by Congress" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "US Western Regional Championship 2018", + "Round": 6, + "Motion": "This house believes that comedians should not be held to modern standards of political correctness" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "US Western Regional Championship 2018", + "Round": 7, + "Motion": "This house would classify catcalling as a felony" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "US Western Regional Championship 2018", + "Round": 8, + "Motion": "This house believes that Black Lives Matter should push for black separatism rather than inclusion" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "US Western Regional Championship 2018", + "Round": "Novice_Final", + "Motion": "This house would abolish the Second Amendment" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "US Western Regional Championship 2018", + "Round": "Open_Quarters", + "Motion": "This house regrets the rise of Saudi Arabian Crown Prince Mohammed bin Salman" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "US Western Regional Championship 2018", + "Round": "Open_Semi", + "Motion": "This house would abolish the Second Amendment" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "US Western Regional Championship 2018", + "Round": "Open_Final", + "Motion": "Assuming we had the technology to be able to perfectly simulate physical and psychological pain (without killing someone), this house would allow convicted criminals to choose to feel the pain of their victims rather than serve their prison sentence" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Western Regionals 2018", + "Round": 1, + "Motion": "This house prefers a world in which social media costs money to use, but users do not give up the rights to their data, to the current world" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Western Regionals 2018", + "Round": 2, + "Motion": "This house welcomes the production of art by artificial intelligence" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Western Regionals 2018", + "Round": 3, + "Motion": "This house would place a tax on meat" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Western Regionals 2018", + "Round": 4, + "Motion": "This house believes that the West should engage in covert efforts to overthrow Vladimir Putin" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Western Regionals 2018", + "Round": 5, + "Motion": "This house believes that Cabinet appointees should be protected from firing once they are approved by Congress" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Western Regionals 2018", + "Round": 6, + "Motion": "This house believes that comedians should not be held to modern standards of political correctness" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Western Regionals 2018", + "Round": 7, + "Motion": "This house would classify catcalling as a felony" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Western Regionals 2018", + "Round": 8, + "Motion": "This house believes that Black Lives Matter should push for black separatism rather than inclusion" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Western Regionals 2018", + "Round": "Open_Quarters", + "Motion": "This house regrets the rise of Saudi Arabian Crown Prince Mohammed bin Salman" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Western Regionals 2018", + "Round": "Open_Semis", + "Motion": "This house would abolish the Second Amendment" + }, + { + "Date": "2018-03-01T00:00:00", + "Tournament": "Western Regionals 2018", + "Round": "Open_Final", + "Motion": "Assuming we had the technology to be able to perfectly simulate physical and psychological pain (without killing someone), this house would allow convicted criminals to choose to feel the pain of their victims rather than serve their prison sentence" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "Manchester IV 2018", + "Round": 1, + "Motion": "THS charter schools" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "Manchester IV 2018", + "Round": 2, + "Motion": "In addition to maternity pay and leave, THW make companies finance their female employees freezing of eggs and in vitro fertilization, if they so wish to" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "Manchester IV 2018", + "Round": 3, + "Motion": "THR the abandonment of the Sunshine Policy" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "Manchester IV 2018", + "Round": 4, + "Motion": "THW not give religious identity the same level of anti discrimination protection as other protected attributes (race, gender, sexuality)" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "Manchester IV 2018", + "Round": 5, + "Motion": "THW ban political opinion polls" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "Manchester IV 2018", + "Round": "Open_Quarter", + "Motion": "THR the decision to let the FARC run as a political party" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "Manchester IV 2018", + "Round": "Open_Semi", + "Motion": "THS states prioritizing the alleviation of poverty within their own borders at the expense of support of international aid programmes" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "Manchester IV 2018", + "Round": "Open_Final", + "Motion": "THBT there is no significant moral difference between the life of a human and the life of a pig" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "USC IV 2018", + "Round": 1, + "Motion": "THW make athletes widely believed to have used performance enhancing drugs eligible for their sport's Hall of Fame" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "USC IV 2018", + "Round": 2, + "Motion": "THR the rise of choice feminism" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "USC IV 2018", + "Round": 3, + "Motion": "THS the creation of a governing body for the English language" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "USC IV 2018", + "Round": 4, + "Motion": "THBT former colonial powers have an obligation to promote economic development in their former colonies" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "USC IV 2018", + "Round": 5, + "Motion": "THBT federal and state governments should prioritize funding for early childhood care to the exclusion of funding for post-secondary education" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "USC IV 2018", + "Round": 6, + "Motion": "THP a world in which identity based movements are not compartmentalized" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "USC IV 2018", + "Round": "Novice_Final", + "Motion": "TH regrets commercialization of counter-cultural or oppositional sub-genres of music" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "USC IV 2018", + "Round": "Open_Semi", + "Motion": "THR the Arab Spring" + }, + { + "Date": "2018-02-17T00:00:00", + "Tournament": "USC IV 2018", + "Round": "Open_Final", + "Motion": "THW grant legal personhood to strong AI" + }, + { + "Date": "2018-01-20T00:00:00", + "Tournament": "UBC IV", + "Round": 1, + "Motion": "This House Would subsidize large scale geoengineering such as massive carbon sequestration (capture of atmospheric co2 out of the atmosphere and into storage) rather than environmental adaptation (eg: cleaner fossil fuels, ethanol, recycling technology, etc)" + }, + { + "Date": "2018-01-20T00:00:00", + "Tournament": "UBC IV", + "Round": 2, + "Motion": "This House believes that states should seek to participate in multinational currency unions" + }, + { + "Date": "2018-01-20T00:00:00", + "Tournament": "UBC IV", + "Round": 3, + "Motion": "This House regrets the glorification of entertainers by the LGBTQ+ community" + }, + { + "Date": "2018-01-20T00:00:00", + "Tournament": "UBC IV", + "Round": 4, + "Motion": "In the event of the development of a technology that makes the recipient unable to knowingly commit any crimes, This House Would ban the research, production, and use of this technology." + }, + { + "Date": "2018-01-20T00:00:00", + "Tournament": "UBC IV", + "Round": 5, + "Motion": "This House would ban people whose net worth is in more than the 90th percentile from running for office" + }, + { + "Date": "2018-01-20T00:00:00", + "Tournament": "UBC IV", + "Round": "Open_Semis", + "Motion": "This House believes that the US should make aid to Israel conditional on the establishment of peace talks with Palestine" + }, + { + "Date": "2018-01-20T00:00:00", + "Tournament": "UBC IV", + "Round": "Open_Final", + "Motion": "This House believes that regions with extremely high rates of gendered violence should grant amnesty to women for violent crimes they commit" + }, + { + "Date": "2018-01-20T00:00:00", + "Tournament": "York IV", + "Round": 1, + "Motion": "In school districts in France where Arabic is the majority language, THW make Arabic the language of primary instruction in schools." + }, + { + "Date": "2018-01-20T00:00:00", + "Tournament": "York IV", + "Round": 2, + "Motion": "TH supports filial responsibility laws." + }, + { + "Date": "2018-01-20T00:00:00", + "Tournament": "York IV", + "Round": 3, + "Motion": "If sometime in the future the opportunity arose, she'd be the one to run for president. The first woman president, Ivanka entertained, would not be Hillary Clinton; it would be Ivanka Trump.\" Motion: TH, as Ivanka Trump, would publicly distance herself from her father." + }, + { + "Date": "2018-01-20T00:00:00", + "Tournament": "York IV", + "Round": 4, + "Motion": "TH believes that provocation should not be a consideration in legal sentencing" + }, + { + "Date": "2018-01-20T00:00:00", + "Tournament": "York IV", + "Round": "Open_Final", + "Motion": "TH, as an agnostic, would take the pill." + }, + { + "Date": "2018-01-19T00:00:00", + "Tournament": "Inner Temple IV 2018", + "Round": 1, + "Motion": "THS the increasing use of technology in the sex industry. (e.g. sex robots, virtual reality porn)" + }, + { + "Date": "2018-01-19T00:00:00", + "Tournament": "Inner Temple IV 2018", + "Round": 2, + "Motion": "THW work for Don-Roberts Holgerrson." + }, + { + "Date": "2018-01-19T00:00:00", + "Tournament": "Inner Temple IV 2018", + "Round": 3, + "Motion": "THBT South Korea should re-open the Kaesong Industrial Region." + }, + { + "Date": "2018-01-19T00:00:00", + "Tournament": "Inner Temple IV 2018", + "Round": 4, + "Motion": "THW impose legal obligations on major online media companies (YouTube, Twitter, Reddit, etc.) to censor the Manosphere. (e.g. blocking accounts, taking down content)" + }, + { + "Date": "2018-01-19T00:00:00", + "Tournament": "Inner Temple IV 2018", + "Round": "ProAm_Final", + "Motion": "THW Prefer a world without lying" + }, + { + "Date": "2018-01-19T00:00:00", + "Tournament": "Inner Temple IV 2018", + "Round": "Open_Semis", + "Motion": "TH prefers common law legal systems" + }, + { + "Date": "2018-01-19T00:00:00", + "Tournament": "Inner Temple IV 2018", + "Round": "Open_Final", + "Motion": "THB in the right to bear arms." + }, + { + "Date": "2018-01-06T00:00:00", + "Tournament": "Northams 2018", + "Round": 1, + "Motion": "This House would not allow serving politicians or their immediate families to use private services where public ones are available (i.e. education, healthcare)" + }, + { + "Date": "2018-01-06T00:00:00", + "Tournament": "Northams 2018", + "Round": 2, + "Motion": "This House prefers a world where individuals believe salvation stems from faith alone, rather than a world where individuals believe salvation stems from a combination of faith and good works" + }, + { + "Date": "2018-01-06T00:00:00", + "Tournament": "Northams 2018", + "Round": 3, + "Motion": "This House believes that feminists should not engage in sex strikes" + }, + { + "Date": "2018-01-06T00:00:00", + "Tournament": "Northams 2018", + "Round": 4, + "Motion": "This House would lift bans on payday lending" + }, + { + "Date": "2018-01-06T00:00:00", + "Tournament": "Northams 2018", + "Round": 5, + "Motion": "When restoring works of art, this House would restore to appear as close as possible to how they appeared when they were originally produced, rather than appeal to contemporary aesthetic tastes" + }, + { + "Date": "2018-01-06T00:00:00", + "Tournament": "Northams 2018", + "Round": 6, + "Motion": "This House believes that prominent individuals outside politics (e.g. business leaders, philanthropists) from emerging market countries with mixed international reputations (e.g. China, India, Iran) should focus on emphasizing the positive aspects of their country, rather than the negative aspects, when speaking on an international platform" + }, + { + "Date": "2018-01-06T00:00:00", + "Tournament": "Northams 2018", + "Round": "Novice_Semi", + "Motion": "This House believes that marginalized groups seeking equal treatment should convey their struggle to the public by emphasizing its similarity to the struggles of more prominent oppressed groups, rather than by emphasizing the unique conditions of their own oppression" + }, + { + "Date": "2018-01-06T00:00:00", + "Tournament": "Northams 2018", + "Round": "Novice_Final", + "Motion": "This House believes that in wartime, there is no material moral difference between civilian and non-civilian casualties" + }, + { + "Date": "2018-01-06T00:00:00", + "Tournament": "Northams 2018", + "Round": "Open_Octos", + "Motion": "In aging societies, this House would provide extensive financial incentives to couples to have multiple children" + }, + { + "Date": "2018-01-06T00:00:00", + "Tournament": "Northams 2018", + "Round": "Open_Quarters", + "Motion": "The House would add a \"notwithstanding\" clause to the Constitution of the United States and allow Congress to override decisions of the U.S. Supreme Court by normal legislative processes." + }, + { + "Date": "2018-01-06T00:00:00", + "Tournament": "Northams 2018", + "Round": "Open_Semi", + "Motion": "Assuming it would be possible to do so, this House would ban the creation of strong artificial intelligence" + }, + { + "Date": "2018-01-06T00:00:00", + "Tournament": "Northams 2018", + "Round": "Open_Final", + "Motion": "This House, as Mexico, would end all security cooperation with the United States aimed at limiting illegal immigration into the US" + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": 1, + "Motion": "This house would ban all communication tech companies (such as Google, Apple, Facebook, Whatsapp, etc.) from encrypting their users data, including the content of their communications, in such a way that the company cannot retrieve that data even under a court order." + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": 2, + "Motion": "This house supports job security legislation." + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": 3, + "Motion": "This house would redefine the criterion for excessive force in the US to be any use of beyond what is reasonable given all the facts of the case, including the benefit of hindsight (e.g. whether the individual had a gun, not whether it was reasonable to believe he had a gun)." + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": 4, + "Motion": "This house would limit the amount of time that a museum can display a given piece of art to 3 months out of every 10 year period, rather than allow museums to display their works as long as they choose." + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": 5, + "Motion": "This house would allow citizens to vote on individual bills in place of their representative, with the representative retaining the voting power of those of their constituents who did not directly vote on that specific bill." + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": 6, + "Motion": "This house believes that all states should mandate that research on and use of CRISPR technology be exclusively carried out by institutions funded entirely by the state." + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": 7, + "Motion": "This house, as Iran, would cease all support for military groups in the Middle East (e.g. Hezbollah, Hamas, Houthis, etc.)." + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": 8, + "Motion": "This house prefers a world in which all individuals who have achieved a middle class standard of living choose to pursue the highest level of achievement in their chosen career, rather than a wold in which those individuals priorities day-to-day enjoyment over work." + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": 9, + "Motion": "This house would not allow out of court settlements for workplace discrimination and harrasment." + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": "EFL_Semis", + "Motion": "This house believes that Catholic religious officials in Mexico should not make statements in support of governmental policies, political parties, or candidates." + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": "EFL_Final", + "Motion": "This house believes that it is better for the general population to be more optimistic about the current and future state of the nation (including societal cohesion, peace processes, the state of the economy) than an objectively accurate judgement." + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": "ESL_Quarters", + "Motion": "This house, as the Chinese Communist Party, would lift all restrictions on foreign investments in China, except restrictions critical to national security." + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": "ESL_Semis", + "Motion": "This house prefers a non-adversarial legal system" + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": "ESL_Final", + "Motion": "In democratic post-colonial states, This house believes that opposition parties to the party of independence should claim and use the legacy of anti-colonial resistance." + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": "Open_Partial_Double_Octos", + "Motion": "This house believes that ASEAN should negotiate all investment deals with Chinese government entities as a bloc (with decisions made by majority vote of its members), so that no member state can enter into investment deals without the rest of the world." + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": "Open_Octos", + "Motion": "This house supports the court's decision to acquit Tehlirian" + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": "Open_Quarters", + "Motion": "This house, as a parent of a child with ASPD, would enable and support that child given that child’s aims based on their current psychological makeup, instead of trying to make them more empathic." + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": "Open_Semis", + "Motion": "This house would create an international court with the ability to classify national debt as “Odious Debt” at the debtor nation’s request and remove the obligation of that nation to pay." + }, + { + "Date": "2018-01-01T00:00:00", + "Tournament": "Mexico WUDC 2018", + "Round": "Open_Final", + "Motion": "This House would rather save the live of a single child over extending the life of 5 adults by 10 years" + }, + { + "Date": "2017-12-23T00:00:00", + "Tournament": "Mexican Open", + "Round": 1, + "Motion": "THBT regions with extremely high rates of gendered violence should grant amnesty to women for violent crimes they commit" + }, + { + "Date": "2017-12-23T00:00:00", + "Tournament": "Mexican Open", + "Round": 2, + "Motion": "THBT when systemically important financial institutions are in need of financial assistance during recessions, creditors, rather than the government, should be liable" + }, + { + "Date": "2017-12-23T00:00:00", + "Tournament": "Mexican Open", + "Round": 3, + "Motion": "TH, as the US, would make aid to Saudi Arabia contingent on its full withdrawal from Yemen" + }, + { + "Date": "2017-12-22T00:00:00", + "Tournament": "UNESCO Hong Kong SDG Debating Tournament", + "Round": 1, + "Motion": "THBT developed countries should pay developing countries to preserve the rainforests" + }, + { + "Date": "2017-12-22T00:00:00", + "Tournament": "UNESCO Hong Kong SDG Debating Tournament", + "Round": 2, + "Motion": "THW condition development aid on the progress of human rights" + }, + { + "Date": "2017-12-22T00:00:00", + "Tournament": "UNESCO Hong Kong SDG Debating Tournament", + "Round": 3, + "Motion": "THBT women should pay less income tax than men" + }, + { + "Date": "2017-12-22T00:00:00", + "Tournament": "UNESCO Hong Kong SDG Debating Tournament", + "Round": "Open_Semis", + "Motion": "THBT English should be the only language of education in developing countries" + }, + { + "Date": "2017-12-22T00:00:00", + "Tournament": "UNESCO Hong Kong SDG Debating Tournament", + "Round": "Open_Final", + "Motion": "THW melt the polar ice caps if it gave drought-stricken countries drinking water" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Leiden Novices' Tournament 2017", + "Round": 1, + "Motion": "THW ban the publication of electoral polls during the run-up to an election" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Leiden Novices' Tournament 2017", + "Round": 2, + "Motion": "THBT the feminist movement should encourage women to not wear make-up" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Leiden Novices' Tournament 2017", + "Round": 3, + "Motion": "THBT all states should allow single parents to raise their children in prison" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Leiden Novices' Tournament 2017", + "Round": "Open_Final", + "Motion": "This house believes that secular democracies with substantial religious communities should create special courts where issues can be settled on the basis of religious law" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Seattle IV 2017", + "Round": 1, + "Motion": "After a speaker has been invited, THW allow university students to vote to reject the speaker from coming to campus." + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Seattle IV 2017", + "Round": 2, + "Motion": "THBT LGBT+ Pride campaigns should focus on direct protest rather than celebration" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Seattle IV 2017", + "Round": 3, + "Motion": "TH, as a western democracy, would prefer relations with a stable autocracy as opposed to an unstable democracy" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Seattle IV 2017", + "Round": 4, + "Motion": "Assuming the technology to significantly alters the body exists (eg, changing memory capacity, limb reinforcements) THW recognize a right to morphological freedom" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Seattle IV 2017", + "Round": 5, + "Motion": "TH, as an indvidual, W not consume works produced by immoral artists" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Seattle IV 2017", + "Round": 6, + "Motion": "THBT food ethics movements should disavow sustainable consumption marketed by large corporations (eg, Starbucks, Chipotle)" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Seattle IV 2017", + "Round": "Open_Quarters", + "Motion": "THBT cities should not use investment incentives to attract businesses" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Seattle IV 2017", + "Round": "Open_Semis", + "Motion": "TH, as the UN, would facilitate independence referendums when requested by semi-autonomous regions" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Seattle IV 2017", + "Round": "Open_Final", + "Motion": "THW choose to be born in a world without religion" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Sheffield IV", + "Round": 1, + "Motion": "THW require universities to use minimum entry requirements which are at least a grade higher for pupils from selective schools (e.g. private or grammar schools)" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Sheffield IV", + "Round": 2, + "Motion": "THBT singing-based reality TV shows (e.g. X Factor, American Idol, The Voice) have done more harm than good" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Sheffield IV", + "Round": 3, + "Motion": "THW make at least 10 years of non-political work experience a prerequisite for standing for national elected office" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Sheffield IV", + "Round": 4, + "Motion": "THBT non-LGBT+ people should not play LGBT+ roles in TV/film (e.g. that a lesbian role should only be played by a lesbian)" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Sheffield IV", + "Round": "Open_Semis", + "Motion": "This house regrets the rise of international adoption" + }, + { + "Date": "2017-12-02T00:00:00", + "Tournament": "Sheffield IV", + "Round": "Open_Final", + "Motion": "This house believes that the UK government should remain silent when Donald Trump makes statements that are contrary to UK values" + }, + { + "Date": "2017-12-01T00:00:00", + "Tournament": "Lund IV", + "Round": 1, + "Motion": "THW create and enforce filial responsibility laws" + }, + { + "Date": "2017-12-01T00:00:00", + "Tournament": "Lund IV", + "Round": 2, + "Motion": "THW require all large companies to reserve 51% of shares for employees as equal voting shares" + }, + { + "Date": "2017-12-01T00:00:00", + "Tournament": "Lund IV", + "Round": 3, + "Motion": "THBT revenue from tourism sites associated with indigenous cultures (e.g. Chichen Itza and related Mayan sites in Mexico) should be distributed directly to those communities" + }, + { + "Date": "2017-12-01T00:00:00", + "Tournament": "Lund IV", + "Round": 4, + "Motion": "THBT the West should lift all sanctions on Zimbabwe and directly engage with the new government on liberal reforms, as opposed to keeping sanctions and working to bolster the opposition" + }, + { + "Date": "2017-12-01T00:00:00", + "Tournament": "Lund IV", + "Round": 5, + "Motion": "THW ban ownership of land and property by foreigners and foreign-owned corporations" + }, + { + "Date": "2017-11-25T00:00:00", + "Tournament": "Newcastle IV 2017", + "Round": 1, + "Motion": "TH welcomes the increasing automation of labour." + }, + { + "Date": "2017-11-25T00:00:00", + "Tournament": "Newcastle IV 2017", + "Round": 2, + "Motion": "THS the use of extra-legal and illegal methods to provide wider access to knowledge (e.g. sci-hub, hacking Jstor, unauthorised distribution of files and copies)." + }, + { + "Date": "2017-11-25T00:00:00", + "Tournament": "Newcastle IV 2017", + "Round": 3, + "Motion": "TH, as a progressive individual, would not consume the works of artists who have committed or been accused of serious crimes." + }, + { + "Date": "2017-11-25T00:00:00", + "Tournament": "Newcastle IV 2017", + "Round": 4, + "Motion": "TH prefers a higher education system with a large variation in education quality over one in which there is a low variation in education quality." + }, + { + "Date": "2017-11-25T00:00:00", + "Tournament": "Newcastle IV 2017", + "Round": "Novice_Final", + "Motion": "This house prefers a world without alcohol." + }, + { + "Date": "2017-11-25T00:00:00", + "Tournament": "Newcastle IV 2017", + "Round": "Open_Semis", + "Motion": "THB the state should lace water supply with a chemical that homogenises people's intelligence to the intelligence level of an average uni graduate." + }, + { + "Date": "2017-11-25T00:00:00", + "Tournament": "Newcastle IV 2017", + "Round": "Open_Final", + "Motion": "TH supports the increasing secularisation of the world." + }, + { + "Date": "2017-11-24T00:00:00", + "Tournament": "Munich Open 2017", + "Round": 5, + "Motion": "TH prefers a world without a concept of an afterlife." + }, + { + "Date": "2017-11-24T00:00:00", + "Tournament": "Munich Open 2017", + "Round": "Open_Semis", + "Motion": "TH supports the inclusion of FARC as a political party in Colombian elections" + }, + { + "Date": "2017-11-24T00:00:00", + "Tournament": "Munich Open 2017", + "Round": "Open_Final", + "Motion": "TH supports the creation of an artificial island for those who do not want to live under the jurisdiction of any state." + }, + { + "Date": "2017-11-18T00:00:00", + "Tournament": "NEAO 2017", + "Round": 1, + "Motion": "This House Would abolish the statute of limitations for heinous crimes (e.g. murder, sexual assault, grievous bodily harm)" + }, + { + "Date": "2017-11-18T00:00:00", + "Tournament": "NEAO 2017", + "Round": 2, + "Motion": "This House Believes That progressive movements should not doxx" + }, + { + "Date": "2017-11-18T00:00:00", + "Tournament": "NEAO 2017", + "Round": 3, + "Motion": "This House Regrets the narrative that motherhood is an intrinsically fulfilling experience" + }, + { + "Date": "2017-11-18T00:00:00", + "Tournament": "NEAO 2017", + "Round": 4, + "Motion": "TH supports South Korea's rejection of the potential trilateral military USA-Korea-Japan alliance." + }, + { + "Date": "2017-11-18T00:00:00", + "Tournament": "NEAO 2017", + "Round": 5, + "Motion": "“Utility factor” refers to the total, foreseeable impact on society produced by academic research. The utility factor is determined by the universities themselves. Motion:This House Supports the allocation of research funding in universities based purely on the utility factor of the research" + }, + { + "Date": "2017-11-18T00:00:00", + "Tournament": "NEAO 2017", + "Round": 6, + "Motion": "This House Would remove all criminal penalties for knowingly exposing partners to HIV" + }, + { + "Date": "2017-11-18T00:00:00", + "Tournament": "NEAO 2017", + "Round": 7, + "Motion": "This House Believes That development of infrastructure in developing countries should be led by the state, as opposed to the private sector" + }, + { + "Date": "2017-11-18T00:00:00", + "Tournament": "NEAO 2017", + "Round": "ESL_Final", + "Motion": "- very severe dementia; - vegetative state etc. Advanced directives are irreversible - they remain binding. NON-voluntary euthanasia is NOT INvoluntary euthanasia. It merely means that no EXPLICIT CONSENT is granted at the time. \" Motion: This House Would legalize advanced directives requesting non-voluntary euthanasia for oneself" + }, + { + "Date": "2017-11-18T00:00:00", + "Tournament": "NEAO 2017", + "Round": "Open_Quarters", + "Motion": "This House Would impose heavy penalties on planned obsolescence" + }, + { + "Date": "2017-11-18T00:00:00", + "Tournament": "NEAO 2017", + "Round": "Open_Semis", + "Motion": "This House Would all movies and TV shows to introduce racial-blind casting for all characters" + }, + { + "Date": "2017-11-18T00:00:00", + "Tournament": "NEAO 2017", + "Round": "Open_Final", + "Motion": "This House Believes That 'armies of opinion shapers' should never be a legitimate political tool for states" + }, + { + "Date": "2017-11-17T00:00:00", + "Tournament": "Cambridge IV 2017", + "Round": 1, + "Motion": "This house would give companies tax breaks on all revenues paid as renumeration (salaries and bonus) to all female employees" + }, + { + "Date": "2017-11-17T00:00:00", + "Tournament": "Cambridge IV 2017", + "Round": 2, + "Motion": "THR the substitution of digital entertainment (e.g. tv, movies, video games) for written materials (e.g. novels, Kindle, comic books) in the lives of children" + }, + { + "Date": "2017-11-17T00:00:00", + "Tournament": "Cambridge IV 2017", + "Round": 3, + "Motion": "THBT former human rights activists under dictatorial regimes should not seek elected office (e.g. MP) after the transition to democracy" + }, + { + "Date": "2017-11-17T00:00:00", + "Tournament": "Cambridge IV 2017", + "Round": 4, + "Motion": "This house prefers a world in which all religions believe in Universal Salvation" + }, + { + "Date": "2017-11-17T00:00:00", + "Tournament": "Cambridge IV 2017", + "Round": 5, + "Motion": "This House regrets the rise of Xi Jinping" + }, + { + "Date": "2017-11-17T00:00:00", + "Tournament": "Cambridge IV 2017", + "Round": "ESL_Semis", + "Motion": "This house believes that criminal justice systems should never incorporate retribution as an aim in determining criminal punishments" + }, + { + "Date": "2017-11-17T00:00:00", + "Tournament": "Cambridge IV 2017", + "Round": "ESL_Final", + "Motion": "This House regrets the use of the term \"moderate muslim\" by Muslims to identify themselves" + }, + { + "Date": "2017-11-17T00:00:00", + "Tournament": "Cambridge IV 2017", + "Round": "Open_Quarters", + "Motion": "This house would force all companies worth over $1 billion to list publicly" + }, + { + "Date": "2017-11-17T00:00:00", + "Tournament": "Cambridge IV 2017", + "Round": "Open_Semis", + "Motion": "In cases where a supreme court would currently rule on the compliance of a given law with a constitutional provision, THW hold a public referendum on whether to abandon that constitutional provision" + }, + { + "Date": "2017-11-17T00:00:00", + "Tournament": "Cambridge IV 2017", + "Round": "Open_Final", + "Motion": "THBT it is always immoral to fight for one's country" + }, + { + "Date": "2017-11-12T00:00:00", + "Tournament": "BDC Pro Ams 2017", + "Round": 1, + "Motion": "TH regrets the culture of treating death as an extraordinary event" + }, + { + "Date": "2017-11-12T00:00:00", + "Tournament": "BDC Pro Ams 2017", + "Round": 2, + "Motion": "TH, as a rohingya Muslim fleeing the Myanmar military, would join the Arakan Rohingya Salvation Army" + }, + { + "Date": "2017-11-12T00:00:00", + "Tournament": "BDC Pro Ams 2017", + "Round": 3, + "Motion": "THW prioritize sending oppressed minorities first" + }, + { + "Date": "2017-11-12T00:00:00", + "Tournament": "BDC Pro Ams 2017", + "Round": 4, + "Motion": "THW stop romanticizing the 1971 liberation war of Bangladesh" + }, + { + "Date": "2017-11-12T00:00:00", + "Tournament": "BDC Pro Ams 2017", + "Round": 5, + "Motion": "THW require the majority of companies' equity to be owned by sub-management level employees" + }, + { + "Date": "2017-11-12T00:00:00", + "Tournament": "BDC Pro Ams 2017", + "Round": "Open_Semi", + "Motion": "THBT the LGBT movement should de-emphasize sexualization (e.g. gay pride parades, etc.) in order to prioritize traditional familial values in pursuing their goals" + }, + { + "Date": "2017-11-12T00:00:00", + "Tournament": "BDC Pro Ams 2017", + "Round": "Open_Final", + "Motion": "TH, as God, would end the human population now" + }, + { + "Date": "2017-11-11T00:00:00", + "Tournament": "FinEst 100 Open", + "Round": 1, + "Motion": "THBT NFL team owners should be allowed to sanction players for political expressions on and off the field" + }, + { + "Date": "2017-11-11T00:00:00", + "Tournament": "FinEst 100 Open", + "Round": 2, + "Motion": "THBT Countries whose native language is not English should adopt English as the main language of governance" + }, + { + "Date": "2017-11-11T00:00:00", + "Tournament": "FinEst 100 Open", + "Round": 3, + "Motion": "THR the glorification of soldiers and veterans as heros" + }, + { + "Date": "2017-11-11T00:00:00", + "Tournament": "FinEst 100 Open", + "Round": 4, + "Motion": "THBT true womens liberation is incompatable with the existence of organized religion" + }, + { + "Date": "2017-11-11T00:00:00", + "Tournament": "FinEst 100 Open", + "Round": 5, + "Motion": "THBT developing countries should heavily disincentivise rural to urban migration" + }, + { + "Date": "2017-11-11T00:00:00", + "Tournament": "FinEst 100 Open", + "Round": "Open_Semis", + "Motion": "THBT Finland should join NATO" + }, + { + "Date": "2017-11-11T00:00:00", + "Tournament": "FinEst 100 Open", + "Round": "Open_Final", + "Motion": "THBT it is immoral for a country to be a tax haven" + }, + { + "Date": "2017-11-10T00:00:00", + "Tournament": "Oxford IV 2017", + "Round": 1, + "Motion": "THW provide means-tested welfare in the form of basic goods and services (including vouchers), rather than cash payments." + }, + { + "Date": "2017-11-10T00:00:00", + "Tournament": "Oxford IV 2017", + "Round": 2, + "Motion": "THBT twitter has done more harm than good" + }, + { + "Date": "2017-11-10T00:00:00", + "Tournament": "Oxford IV 2017", + "Round": 3, + "Motion": "TH Prefers Asian Values to Western liberalism" + }, + { + "Date": "2017-11-10T00:00:00", + "Tournament": "Oxford IV 2017", + "Round": 4, + "Motion": "THBT investors should cease purchasing bonds issued by the Venezuelan government." + }, + { + "Date": "2017-11-10T00:00:00", + "Tournament": "Oxford IV 2017", + "Round": 5, + "Motion": "THBT minority parents should shelter their children from the existence of racism for as long as possible" + }, + { + "Date": "2017-11-10T00:00:00", + "Tournament": "Oxford IV 2017", + "Round": "ESL_Semis", + "Motion": "THBT that the EU should suspend the voting rights of Poland." + }, + { + "Date": "2017-11-10T00:00:00", + "Tournament": "Oxford IV 2017", + "Round": "ESL_Final", + "Motion": "THW ban the creation of all artificial conscious beings." + }, + { + "Date": "2017-11-10T00:00:00", + "Tournament": "Oxford IV 2017", + "Round": "Novice_Finals", + "Motion": "THW require all sold products to clearly display their price in Dead Children Currency." + }, + { + "Date": "2017-11-10T00:00:00", + "Tournament": "Oxford IV 2017", + "Round": "Open_Quarters", + "Motion": "THR the creation and adoption of cryptocurrencies." + }, + { + "Date": "2017-11-10T00:00:00", + "Tournament": "Oxford IV 2017", + "Round": "Open_Semis", + "Motion": "THBT Mohammed bin Salman's policies are in the interests of the ruling House of Saud." + }, + { + "Date": "2017-11-10T00:00:00", + "Tournament": "Oxford IV 2017", + "Round": "Open_Final", + "Motion": "Assuming it could be done peacefully, THW replace all existing governments with a single global democratic government." + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Durham IV", + "Round": 1, + "Motion": "THW ban zoos" + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Durham IV", + "Round": 2, + "Motion": "THBT when a company conducts any business in a developed nation, that nation should enforce its domestic environmental regulations at all stages of that company's supply chain (including suppliers and sub-contractors)" + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Durham IV", + "Round": 3, + "Motion": "Assuming it was logistically feasible, THW randomly swap all newborn babies at birth." + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Durham IV", + "Round": 4, + "Motion": "THS the continued remilitarisation of Japan." + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Durham IV", + "Round": 5, + "Motion": "THW rank all charities by their Effective Altruism score and remove charitable status from all but the most effective." + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Durham IV", + "Round": "Novice_Finals", + "Motion": "THBT states should not pursue policies to reduce inequality once all citizens have an acceptable standard living" + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Durham IV", + "Round": "Open_Semis", + "Motion": "THR the existence of NATO after the dissolution of the USSR" + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Durham IV", + "Round": "Open_Final", + "Motion": "TH, as the Church of England, would withdraw from the Anglican Communion" + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Huber Debates", + "Round": 1, + "Motion": "THBT universities should not be allowed to patent technology they develop" + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Huber Debates", + "Round": 2, + "Motion": "THBT states should incentivize wealthy people to move to economically insolvent cities" + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Huber Debates", + "Round": 3, + "Motion": "THBT pro-Palestinian organisations should abandon their support for the BDS movement against Israeli academic institutions and scholars" + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Huber Debates", + "Round": 4, + "Motion": "THW Legalize Graffiti" + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Huber Debates", + "Round": 5, + "Motion": "THBT states that are responsible for heavy pollution are morally obligated to sell portions of their land to states under severe threat by climate change" + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Huber Debates", + "Round": "Novice_Semis", + "Motion": "Motion: THBT universities should never restrict freedom of expression beyond what is already considered illegal by the state" + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Huber Debates", + "Round": "Open_Quarters", + "Motion": "THBT the African Union should pivot toward the global East rather than the global West" + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Huber Debates", + "Round": "Open_Semis", + "Motion": "THR the decline of Marxist political parties" + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Huber Debates", + "Round": "Open_Final", + "Motion": "THW charge prosecutors who withhold or deliberately lie about evidence in cases where the defendant faces the death penalty or life in prison, with attempted murder." + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Penguin Invitational at Dominican University", + "Round": 1, + "Motion": "This House believes that language should, to the greatest extent possible, be stripped of gender references." + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Penguin Invitational at Dominican University", + "Round": 2, + "Motion": "Assuming adequate security vetting, this House would allow individual states to set their own immigration policies." + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Penguin Invitational at Dominican University", + "Round": 3, + "Motion": "This House believes that the costs of autonomous technologies outweigh the benefits." + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Penguin Invitational at Dominican University", + "Round": 4, + "Motion": "THW prohibit non-disclosure agreements tied to the settlement of civil lawsuits." + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Penguin Invitational at Dominican University", + "Round": 5, + "Motion": "The U.S. should declare a cyber war against Russia." + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Penguin Invitational at Dominican University", + "Round": 6, + "Motion": "THBT cultural appropriation is a good thing" + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Penguin Invitational at Dominican University", + "Round": "Open_Semis", + "Motion": "THW require post-high school public service." + }, + { + "Date": "2017-11-04T00:00:00", + "Tournament": "Penguin Invitational at Dominican University", + "Round": "Open_Final", + "Motion": "THW call a Constitutional Convention to address the problem of gun violence in America." + }, + { + "Date": "2017-10-28T00:00:00", + "Tournament": "KCL IV 2017", + "Round": 1, + "Motion": "THB that women are justified in lying about their past experiences, abilities and future family plans on job applications or at job interviews." + }, + { + "Date": "2017-10-28T00:00:00", + "Tournament": "KCL IV 2017", + "Round": 2, + "Motion": "TH, as the Premier League, would require all clubs to field a minimum of 4 English players every match" + }, + { + "Date": "2017-10-28T00:00:00", + "Tournament": "KCL IV 2017", + "Round": 3, + "Motion": "THBT the EU should ban non-stun religious slaughter of animals" + }, + { + "Date": "2017-10-28T00:00:00", + "Tournament": "KCL IV 2017", + "Round": 4, + "Motion": "THW allow central banks to use quantitative easing for the purpose of government investment as opposed to the support of the financial services." + }, + { + "Date": "2017-10-28T00:00:00", + "Tournament": "KCL IV 2017", + "Round": 5, + "Motion": "THW assasinate Kim Jong-Un" + }, + { + "Date": "2017-10-28T00:00:00", + "Tournament": "KCL IV 2017", + "Round": "ProAm_Final", + "Motion": "Assuming there is a drug that increases individuals tendency to pacifism, TH, as the state, would lace the country's water supply with the drug." + }, + { + "Date": "2017-10-28T00:00:00", + "Tournament": "KCL IV 2017", + "Round": "Open_Semis", + "Motion": "THS the monetisation of reproduction (e.g. sale of oocysts, commercial surrogacy)" + }, + { + "Date": "2017-10-28T00:00:00", + "Tournament": "KCL IV 2017", + "Round": "Open_Final", + "Motion": "either we are alone in the Universe or we are not. Both are equally terrifying.” - Arthur C Clarke Motion: THW rather be alone in the Universe" + }, + { + "Date": "2017-10-28T00:00:00", + "Tournament": "KCL IV 2017", + "Round": "ProAm_Semis", + "Motion": "THBT humanitarian organisations should, and should be allowed to, give funding, resources or services to illegal armed groups when this is made a condition for access to vulnerable civilians" + }, + { + "Date": "2017-10-28T00:00:00", + "Tournament": "Strathclyde President's Cup 2017", + "Round": 1, + "Motion": "THBT that Universities should exclusively award scholarships and grants on the basis of financial need." + }, + { + "Date": "2017-10-28T00:00:00", + "Tournament": "Strathclyde President's Cup 2017", + "Round": 2, + "Motion": "THB the state should not recognise marriage (e.g. through special tax breaks, visitation rights, adoption privileges or other forms of differential treatment)." + }, + { + "Date": "2017-10-28T00:00:00", + "Tournament": "Strathclyde President's Cup 2017", + "Round": 3, + "Motion": "Cryptocurrencies are digital currencies which operate without central banks or other regulating bodies, the most notable being Bitcoin. Trades can be made anonymously online and have so far proven un-hackable. While Bitcoin has become used for criminal transactions, some institutions have actively invested in it, including certain Swiss banks and the state of Japan. China amounts others, has banned use of Bitcoin. THBT States should criminalise the use and possession of cryptocurrencies." + }, + { + "Date": "2017-10-28T00:00:00", + "Tournament": "Strathclyde President's Cup 2017", + "Round": 4, + "Motion": "TH opposes the practice in former colonies of privileging themes of anti colonial resistance over pre colonial-history and notions of indignity when fabricating national identity. Eg. anthems, street names, holidays etc." + }, + { + "Date": "2017-10-28T00:00:00", + "Tournament": "Strathclyde President's Cup 2017", + "Round": "Open_Final", + "Motion": "THR the narrative that soldiers are heroes." + }, + { + "Date": "2017-10-21T00:00:00", + "Tournament": "Denver IV 2017", + "Round": 1, + "Motion": "THW require social media companies to monitor and remove falsehoods." + }, + { + "Date": "2017-10-21T00:00:00", + "Tournament": "Denver IV 2017", + "Round": 2, + "Motion": "In states where marijuana is legal, this house would provide reparations to individuals convicted of marijuana-related crimes prior to its legalization." + }, + { + "Date": "2017-10-21T00:00:00", + "Tournament": "Denver IV 2017", + "Round": 3, + "Motion": "THW formally recognize an independent Kurdistan." + }, + { + "Date": "2017-10-21T00:00:00", + "Tournament": "Denver IV 2017", + "Round": 4, + "Motion": "Imagine that you and you alone discover irrefutable proof that there is no afterlife (including reincarnation). Unless you share the proof, the secret dies with you. THW not share the proof." + }, + { + "Date": "2017-10-21T00:00:00", + "Tournament": "Denver IV 2017", + "Round": 5, + "Motion": "THW lift sanctions on Venezuela on the condition that they hold new elections overseen by the international community." + }, + { + "Date": "2017-10-21T00:00:00", + "Tournament": "Denver IV 2017", + "Round": "Open_Quarters", + "Motion": "THW give judicial leniency to marginalized groups that have committed crimes against privileged groups." + }, + { + "Date": "2017-10-21T00:00:00", + "Tournament": "Denver IV 2017", + "Round": "Open_Semis", + "Motion": "TH prefers a world without sexual attraction" + }, + { + "Date": "2017-10-21T00:00:00", + "Tournament": "Denver IV 2017", + "Round": "Open_Final", + "Motion": "THW repeal the Goldwater Rule." + }, + { + "Date": "2017-10-15T00:00:00", + "Tournament": "Olimpia di Debate", + "Round": 1, + "Motion": "This House believes that the European Union should adopt the basic income" + }, + { + "Date": "2017-10-15T00:00:00", + "Tournament": "Olimpia di Debate", + "Round": 2, + "Motion": "This House believes that every European school system should abolish homework to combat school drop-out" + }, + { + "Date": "2017-10-15T00:00:00", + "Tournament": "Olimpia di Debate", + "Round": 3, + "Motion": "This House believes that caloric and fat-rich foods, commonly called junk food, should be taxed more than \"healthy foods\"" + }, + { + "Date": "2017-10-15T00:00:00", + "Tournament": "Olimpia di Debate", + "Round": 4, + "Motion": "This House believes that Italian high school students should be allowed to choose their own study subjects from those offered by the school" + }, + { + "Date": "2017-10-15T00:00:00", + "Tournament": "Olimpia di Debate", + "Round": 5, + "Motion": "This house believes that social networks have improved our lifestyle" + }, + { + "Date": "2017-10-15T00:00:00", + "Tournament": "Olimpia di Debate", + "Round": "Open_Final", + "Motion": "This house believes that the G20 countries, in order to save the planet from global warming, must adopt more ambitious global CO2 emission reduction targets than those of the Paris Accords" + }, + { + "Date": "2017-10-13T00:00:00", + "Tournament": "Hart House IV 2017", + "Round": 1, + "Motion": "THW ban police unions." + }, + { + "Date": "2017-10-13T00:00:00", + "Tournament": "Hart House IV 2017", + "Round": 2, + "Motion": "THBT Pharmaceutical companies should be held civilly liable for the opiate crisis" + }, + { + "Date": "2017-10-13T00:00:00", + "Tournament": "Hart House IV 2017", + "Round": 3, + "Motion": "THB the Democratic Party should prioritize/welcome the nomination of candidates at all levels of government who favor more radical changes to existing policies and structures over those who are seen as more \"electable\"" + }, + { + "Date": "2017-10-13T00:00:00", + "Tournament": "Hart House IV 2017", + "Round": 4, + "Motion": "This house regrets the development of mass tourism at world heritage sites" + }, + { + "Date": "2017-10-13T00:00:00", + "Tournament": "Hart House IV 2017", + "Round": 5, + "Motion": "TH, as a prominent African-American group, would seek to create autonomous spaces of politics, economics etc. rather than integrating with American society" + }, + { + "Date": "2017-10-13T00:00:00", + "Tournament": "Hart House IV 2017", + "Round": "Novice_Final", + "Motion": "THW, as President Trump, fire Robert Mueller" + }, + { + "Date": "2017-10-13T00:00:00", + "Tournament": "Hart House IV 2017", + "Round": "Open_Quarters", + "Motion": "THW, as the US government, recognize the DPRK as a nuclear state and no longer oppose their nuclear program on the condition they discontinue long-range missile development." + }, + { + "Date": "2017-10-13T00:00:00", + "Tournament": "Hart House IV 2017", + "Round": "Open_Semis", + "Motion": "The United States of Africa is a proposed concept for a federation of some or all of the 55 sovereign states on the African continent. The concept takes its origin from the writing of Marcus Garvey, an influential pan-Africanist leader in the early 20th century." + }, + { + "Date": "2017-10-13T00:00:00", + "Tournament": "Hart House IV 2017", + "Round": "Open_Semis", + "Motion": "THS the political unification of Africa" + }, + { + "Date": "2017-10-13T00:00:00", + "Tournament": "Hart House IV 2017", + "Round": "Open_Final", + "Motion": "THBT Truth and Reconciliation Commissions should destroy all collected testimony upon publication of the commissions' reports." + }, + { + "Date": "2017-10-06T00:00:00", + "Tournament": "SDSU 2017", + "Round": 1, + "Motion": "THBT the Right to Rest should be upheld in all public spaces." + }, + { + "Date": "2017-10-06T00:00:00", + "Tournament": "SDSU 2017", + "Round": 2, + "Motion": "THW require multi-national corporations to adhere to labor and wage standards exceeding those set by ANY individual nation." + }, + { + "Date": "2017-10-06T00:00:00", + "Tournament": "SDSU 2017", + "Round": 3, + "Motion": "THW stop playing “The Star-Spangled Banner”" + }, + { + "Date": "2017-10-06T00:00:00", + "Tournament": "SDSU 2017", + "Round": 4, + "Motion": "THW make the provision or sale of junk food and soda to children under the age of consent illegal." + }, + { + "Date": "2017-10-06T00:00:00", + "Tournament": "SDSU 2017", + "Round": 5, + "Motion": "THBT Canada should allow foreigners to access their right to die policy." + }, + { + "Date": "2017-10-06T00:00:00", + "Tournament": "SDSU 2017", + "Round": 6, + "Motion": "College and professional teams should be held accountable when their competitors or coaches commit sexual assault." + }, + { + "Date": "2017-10-06T00:00:00", + "Tournament": "SDSU 2017", + "Round": "Open_Semis", + "Motion": "THBT China should fix North Korea" + }, + { + "Date": "2017-10-06T00:00:00", + "Tournament": "SDSU 2017", + "Round": "Open_Final", + "Motion": "THR the Generation War (Millennials vs. Baby Boomers)" + }, + { + "Date": "2017-09-29T00:00:00", + "Tournament": "HWS North American Universities Debating Championsip", + "Round": 1, + "Motion": "THBT civil rights legal organizations (e.g. ACLU) should refuse to provide legal resources to white supremacists and other hate groups." + }, + { + "Date": "2017-09-29T00:00:00", + "Tournament": "HWS North American Universities Debating Championsip", + "Round": 2, + "Motion": "THW replace existing welfare systems with a universal basic income." + }, + { + "Date": "2017-09-29T00:00:00", + "Tournament": "HWS North American Universities Debating Championsip", + "Round": 3, + "Motion": "Of religions that promise reward for faithful practice, THW prefer religions that promise reward will come in the afterlife as opposed to those that promise material reward in this life." + }, + { + "Date": "2017-09-29T00:00:00", + "Tournament": "HWS North American Universities Debating Championsip", + "Round": 4, + "Motion": "THBT the U.S. should eliminate all protective measures on the trading and use of green technologies." + }, + { + "Date": "2017-09-29T00:00:00", + "Tournament": "HWS North American Universities Debating Championsip", + "Round": 5, + "Motion": "THBT social movements should emphasize an individual’s capacity to change their circumstances in the face of oppression, as opposed to emphasizing the structures that restrict and determine an individual’s fate." + }, + { + "Date": "2017-09-29T00:00:00", + "Tournament": "HWS North American Universities Debating Championsip", + "Round": "Novice_Semis", + "Motion": "THR the modern high prioritization of sexual compatibility in romantic relationships." + }, + { + "Date": "2017-09-29T00:00:00", + "Tournament": "HWS North American Universities Debating Championsip", + "Round": "Open_Quarters", + "Motion": "THBT, in large metropolitan areas, the government should use eminent domain to create high density housing development." + }, + { + "Date": "2017-09-29T00:00:00", + "Tournament": "HWS North American Universities Debating Championsip", + "Round": "Open_Final", + "Motion": "THBT scholars who study under-represented groups in history should emphasize their contribution to events that are commonly considered historically significant, rather than studying the history of those groups’ contributions to their own societies." + }, + { + "Date": "2017-09-23T00:00:00", + "Tournament": "Helsinki Freshers' ProAm 2017", + "Round": 1, + "Motion": "THW build social housing in high-wealth areas" + }, + { + "Date": "2017-09-23T00:00:00", + "Tournament": "Helsinki Freshers' ProAm 2017", + "Round": 2, + "Motion": "THR the narrative that a university education is the primary path to success" + }, + { + "Date": "2017-09-23T00:00:00", + "Tournament": "Helsinki Freshers' ProAm 2017", + "Round": 3, + "Motion": "THS the development of Artificial General Intelligence" + }, + { + "Date": "2017-09-23T00:00:00", + "Tournament": "Helsinki Freshers' ProAm 2017", + "Round": "Open_Final", + "Motion": "THBT majority liberal supreme courts should actively misapply constitutions in order to advance progressive rights" + }, + { + "Date": "2017-09-22T00:00:00", + "Tournament": "IIT Bombay IV", + "Round": 1, + "Motion": "When casting minority characters, THBT films should only cast actors from that same minority" + }, + { + "Date": "2017-09-22T00:00:00", + "Tournament": "IIT Bombay IV", + "Round": 2, + "Motion": "THBT India should abandon the Make in India policy" + }, + { + "Date": "2017-09-22T00:00:00", + "Tournament": "IIT Bombay IV", + "Round": 3, + "Motion": "THS the existence of dual-legal systems for minority religious communities" + }, + { + "Date": "2017-09-22T00:00:00", + "Tournament": "IIT Bombay IV", + "Round": 4, + "Motion": "THBT the Rohingya should prioritize advocating for an independent state over citizenship and acceptance within Myanmar" + }, + { + "Date": "2017-09-22T00:00:00", + "Tournament": "IIT Bombay IV", + "Round": 5, + "Motion": "THR the commercialization of feminism" + }, + { + "Date": "2017-09-22T00:00:00", + "Tournament": "IIT Bombay IV", + "Round": "Open_Quarters", + "Motion": "THR the rise of Antifa" + }, + { + "Date": "2017-09-22T00:00:00", + "Tournament": "IIT Bombay IV", + "Round": "Open_Semis", + "Motion": "THR the Euro" + }, + { + "Date": "2017-09-22T00:00:00", + "Tournament": "IIT Bombay IV", + "Round": "Open_Final", + "Motion": "THW dissolve global human rights institutions in favor of regional human rights institutions" + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": 1, + "Motion": "THW tax religious institutions" + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": 2, + "Motion": "THW normalize relations with North Korea (including the removal of sanctions)" + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": 3, + "Motion": "TH, as a theatre, would refuse to run the film \"Dragonfly Eyes.\"" + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": 4, + "Motion": "THR the decline in marriage rates." + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": 5, + "Motion": "THR the rise of \"global\" languages like English" + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": 6, + "Motion": "THBT comedic political commentators (e.g. John Oliver, Stephen Colbert, Samantha Bee, etc.) do more harm than good." + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": "Open_Quarters", + "Motion": "THW ban commercial research and development of CRISPR-Cas9 technology" + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": "Open_Semis", + "Motion": "THBT children have a right to know who their biological parents are (e.g. adoptees, children of reproductive donors, children of estranged parents)" + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "Brad Smith Debate Tournament", + "Round": "Open_Final", + "Motion": "THBT Democrats and Republicans should accept a border wall in exchange for full legalization of immigrants currently residing in the United States." + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "La Salle IV", + "Round": 1, + "Motion": "THBT the administration of professional licensure examinations should be in the hands of the private sector instead of the government" + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "La Salle IV", + "Round": 2, + "Motion": "TH, as the UN, would give Venezuela humanitarian aid with no strings attached" + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "La Salle IV", + "Round": 3, + "Motion": "THBT the environmental movement should abandon the narrative of personal responsibility in favor of one which emphasizes institutional accountability" + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "La Salle IV", + "Round": 4, + "Motion": "THS Singapore's hiatus-triggered model for the presidential elections" + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "La Salle IV", + "Round": "Open_Quarters", + "Motion": "THBT it is in China's interest to take the lead in subduing North Korea." + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "La Salle IV", + "Round": "Open_Semis", + "Motion": "THW remove the power of impeachment from the legislature." + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "La Salle IV", + "Round": "Open_Final", + "Motion": "In conservative countries, THBT the LGBT movement should actively court religious institutions" + }, + { + "Date": "2017-09-16T00:00:00", + "Tournament": "La Salle IV", + "Round": "Open_Final", + "Motion": "TH celebrates the decline of American liberalism." + }, + { + "Date": "2017-09-11T00:00:00", + "Tournament": "Hollatz Debates 2017", + "Round": 1, + "Motion": "THBT the US should abolish the jury system" + }, + { + "Date": "2017-09-11T00:00:00", + "Tournament": "Hollatz Debates 2017", + "Round": 2, + "Motion": "THBT marginalized communities are better off construction their own economic and social systems than they are assimilating and/or fighting for equality in the traditional systems" + }, + { + "Date": "2017-09-11T00:00:00", + "Tournament": "Hollatz Debates 2017", + "Round": 3, + "Motion": "THW preemptively strike North Korea" + }, + { + "Date": "2017-09-11T00:00:00", + "Tournament": "Hollatz Debates 2017", + "Round": 4, + "Motion": "THBT consumer imaging (eg: TV, commercials, magazines, billboards) is harmful toward women" + }, + { + "Date": "2017-09-11T00:00:00", + "Tournament": "Hollatz Debates 2017", + "Round": "Open_Final", + "Motion": "THW impose a substantially large annual tax on all medical companies who own patents" + }, + { + "Date": "2017-09-09T00:00:00", + "Tournament": "Guangdong Debate Challenge 2017", + "Round": 1, + "Motion": "THW ban all essential service workers from striking (e.g. firemen, policemen, doctors)" + }, + { + "Date": "2017-09-09T00:00:00", + "Tournament": "Guangdong Debate Challenge 2017", + "Round": 2, + "Motion": "THW implement blind voting for general elections (For the purposes of this debate, \"blind voting\" refers to a system where voters cast their votes for various policies, and a candidate is matched to them based on their preference)" + }, + { + "Date": "2017-09-09T00:00:00", + "Tournament": "Guangdong Debate Challenge 2017", + "Round": 3, + "Motion": "THBT activists should abandon the use of doxxing in order to advance their movement" + }, + { + "Date": "2017-09-09T00:00:00", + "Tournament": "Guangdong Debate Challenge 2017", + "Round": 4, + "Motion": "THBT the US should impose sanctions on Myanmar until a safe zone is created in the Rakhine state for Rohingya civilians" + }, + { + "Date": "2017-09-09T00:00:00", + "Tournament": "Guangdong Debate Challenge 2017", + "Round": 5, + "Motion": "THBT the state should only fund artworks that promote socially desirable values (e.g. multiculturalism, equality)" + }, + { + "Date": "2017-09-09T00:00:00", + "Tournament": "Guangdong Debate Challenge 2017", + "Round": "Open_Quarters", + "Motion": "THW allocate every adult a single tradable permit to have one child." + }, + { + "Date": "2017-09-09T00:00:00", + "Tournament": "Guangdong Debate Challenge 2017", + "Round": "Open_Semis", + "Motion": "THW impose high property and land taxes on foreign buyers and owners of property" + }, + { + "Date": "2017-09-09T00:00:00", + "Tournament": "Guangdong Debate Challenge 2017", + "Round": "Open_Final", + "Motion": "THS the existence of a \"social credit system\" (For the purposes of the debate, a \"social credit system\" refers to a system which assigns a rating to every citizen based on government data regarding their economic history (e.g. paying taxes, paying debts) and social behavior. Ratings impact one's ability to carry out economic transactions, such as seeking employment, renting or buying property.)" + }, + { + "Date": "2017-08-13T00:00:00", + "Tournament": "Tallin EUDC 2017", + "Round": 1, + "Motion": "This house believes that the US should ban extremist groups (e.g. the KKK and neo-Nazi groups)" + }, + { + "Date": "2017-08-13T00:00:00", + "Tournament": "Tallin EUDC 2017", + "Round": 2, + "Motion": "This house believes that the WTO should allow developing countries to impose policies aimed at protecting domestic industries, even at the expense of harming international trade." + }, + { + "Date": "2017-08-13T00:00:00", + "Tournament": "Tallin EUDC 2017", + "Round": 3, + "Motion": "THR the rise of “Sharing Culture”" + }, + { + "Date": "2017-08-13T00:00:00", + "Tournament": "Tallin EUDC 2017", + "Round": 4, + "Motion": "This house believes that states should significantly fund female-only tech companies" + }, + { + "Date": "2017-08-13T00:00:00", + "Tournament": "Tallin EUDC 2017", + "Round": 5, + "Motion": "This house, as Israel, supports the Jewish People’s Intelligence Services Doctrine." + }, + { + "Date": "2017-08-13T00:00:00", + "Tournament": "Tallin EUDC 2017", + "Round": 6, + "Motion": "This house supports universities treating students as customers (eg by allocating significant resources to improving students lifestyles, and granting students influence over university decisions and the content and delivery of course curricula)" + }, + { + "Date": "2017-08-13T00:00:00", + "Tournament": "Tallin EUDC 2017", + "Round": 7, + "Motion": "This house believes that Western institutions should neither cooperate with, nor use the data produced by, non-Western medical institutions that do not meet Western standards on human clinical trials" + }, + { + "Date": "2017-08-13T00:00:00", + "Tournament": "Tallin EUDC 2017", + "Round": 8, + "Motion": "This house believes that LGBT groups should actively seek to include Side B Christians." + }, + { + "Date": "2017-08-13T00:00:00", + "Tournament": "Tallin EUDC 2017", + "Round": 9, + "Motion": "This house supports the creation and use of Lethal Autonomous Robots (Lethal Autonomous Robots are fully autonomous military weapons that can select and engage targets without human intervention)." + }, + { + "Date": "2017-08-13T00:00:00", + "Tournament": "Tallin EUDC 2017", + "Round": "ESL_Final", + "Motion": "THB that Western European states at high risk for terror attacks should implement 'state of emergency' laws." + }, + { + "Date": "2017-08-13T00:00:00", + "Tournament": "Tallin EUDC 2017", + "Round": "Open_Semis", + "Motion": "THR the mass deregulation of the financial sector" + }, + { + "Date": "2017-08-13T00:00:00", + "Tournament": "Tallin EUDC 2017", + "Round": "Open_Final", + "Motion": "TH as the Kremlin would commemorate the 1917 Russian Revolution as a tradegy rather than a triumph for the nation." + }, + { + "Date": "2017-08-03T00:00:00", + "Tournament": "World Schools Debating Championship, 2017", + "Round": 1, + "Motion": "This House would ban for-profit universities and colleges." + }, + { + "Date": "2017-08-03T00:00:00", + "Tournament": "World Schools Debating Championship, 2017", + "Round": 2, + "Motion": "This House would impose restrictions on the opening of stores operated by large multinational retail chains (e.g. Tesco, Walmart) in order to protect local businesses." + }, + { + "Date": "2017-08-03T00:00:00", + "Tournament": "World Schools Debating Championship, 2017", + "Round": 3, + "Motion": "This House would deny tax-exempt status to religious institutions that refuse to appoint female leaders." + }, + { + "Date": "2017-08-03T00:00:00", + "Tournament": "World Schools Debating Championship, 2017", + "Round": 4, + "Motion": "This House believes that states should not erect statues or memorials which commemorate or glorify military campaigns and/or the service of soldiers in war" + }, + { + "Date": "2017-08-03T00:00:00", + "Tournament": "World Schools Debating Championship, 2017", + "Round": 5, + "Motion": "This House would make labour union membership compulsory in large industries" + }, + { + "Date": "2017-08-03T00:00:00", + "Tournament": "World Schools Debating Championship, 2017", + "Round": 6, + "Motion": "This House believes that, when working to preserve rare and endangered species, private entities are more effective than the state." + }, + { + "Date": "2017-08-03T00:00:00", + "Tournament": "World Schools Debating Championship, 2017", + "Round": 7, + "Motion": "This House believes that the NATO Enhanced Forward Presence in Eastern Europe is doing more harm than good." + }, + { + "Date": "2017-08-03T00:00:00", + "Tournament": "World Schools Debating Championship, 2017", + "Round": 8, + "Motion": "This House believes that states should be able to prioritize asylum seekers on the basis of cultural similarity with existing populations." + }, + { + "Date": "2017-08-03T00:00:00", + "Tournament": "World Schools Debating Championship, 2017", + "Round": "Open_Partial_Double_Octos", + "Motion": "This House would legalize commercial surrogacy for profit." + }, + { + "Date": "2017-08-03T00:00:00", + "Tournament": "World Schools Debating Championship, 2017", + "Round": "Open_Quarters", + "Motion": "This House would impose additional taxes on employers who use automation to replace human workers." + }, + { + "Date": "2017-08-03T00:00:00", + "Tournament": "World Schools Debating Championship, 2017", + "Round": "Open_Semis", + "Motion": "This House prefers benevolent dictatorship to weak democracy." + }, + { + "Date": "2017-08-03T00:00:00", + "Tournament": "World Schools Debating Championship, 2017", + "Round": "Open_Final", + "Motion": "This House supports military retaliation against cyberattacks." + }, + { + "Date": "2017-08-03T00:00:00", + "Tournament": "World Schools Debating Championship, 2017", + "Round": "Open_Final", + "Motion": "This House supports restrictions on free speech to combat the rise of right-wing populism." + }, + { + "Date": "2017-06-20T00:00:00", + "Tournament": "Newcastle Mixed Doubles", + "Round": 4, + "Motion": "THW subsidise banks to disproportionately direct loans to historically disadvantaged communities and individuals" + }, + { + "Date": "2017-06-19T00:00:00", + "Tournament": "Newcastle Mixed Doubles", + "Round": 3, + "Motion": "THBT Brazil should fully privatise Petrobras" + }, + { + "Date": "2017-06-18T00:00:00", + "Tournament": "Newcastle Mixed Doubles", + "Round": 2, + "Motion": "THW punish attempted and committed crimes equally" + }, + { + "Date": "2017-06-17T00:00:00", + "Tournament": "Newcastle Mixed Doubles", + "Round": 1, + "Motion": "THBT individual feminist women should reject acts of chivalry (e.g. buying drinks for them, holding the door open, \"ladies first\" etc.)" + }, + { + "Date": "2017-06-16T00:00:00", + "Tournament": "Trinity Open", + "Round": 1, + "Motion": "THW televise criminal trials" + }, + { + "Date": "2017-06-16T00:00:00", + "Tournament": "Trinity Open", + "Round": 2, + "Motion": "THBT the UK Labour Party should stand candidates in general elections in Northern Ireland" + }, + { + "Date": "2017-06-16T00:00:00", + "Tournament": "Trinity Open", + "Round": 3, + "Motion": "TH, as China, would abandon all claims on the Senkaku Islands" + }, + { + "Date": "2017-06-16T00:00:00", + "Tournament": "Trinity Open", + "Round": 4, + "Motion": "TH, as Arturo di Modica, would discontinue the loan of the Charging Bull to New York City" + }, + { + "Date": "2017-06-16T00:00:00", + "Tournament": "Trinity Open", + "Round": 5, + "Motion": "THBT school systems should build curricula in a way that emphasizes national pride" + }, + { + "Date": "2017-04-29T00:00:00", + "Tournament": "International Competition for Young Debaters, Finals Day, 2017", + "Round": 1, + "Motion": "This House would ban any treatment, service or ritual from claiming a physical healing effect until it is tested and proven more effective than a placebo by a national regulator." + }, + { + "Date": "2017-04-29T00:00:00", + "Tournament": "International Competition for Young Debaters, Finals Day, 2017", + "Round": 2, + "Motion": "This House supports hacking as a form of social protest." + }, + { + "Date": "2017-04-29T00:00:00", + "Tournament": "International Competition for Young Debaters, Finals Day, 2017", + "Round": 3, + "Motion": "This House would prefer a world without religious belief." + }, + { + "Date": "2017-04-29T00:00:00", + "Tournament": "International Competition for Young Debaters, Finals Day, 2017", + "Round": 4, + "Motion": "This House would not give development aid to corrupt regimes." + }, + { + "Date": "2017-04-29T00:00:00", + "Tournament": "International Competition for Young Debaters, Finals Day, 2017", + "Round": "Open_Final", + "Motion": "This house would require companies to place images of animal suffering on all products or food whose production harmed or killed animals." + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": 1, + "Motion": "THW not allow public schools to expel students - Round 1" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": 1, + "Motion": "THBT education in the developing world should be conducted primarily in English - Round 1" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": 2, + "Motion": "THW institute a negative basic income - Round 2" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": 2, + "Motion": "THS immigration criteria based around culture - Round 2" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": 3, + "Motion": "THBT the government should have no role in protecting endangered species - Round 3" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": 3, + "Motion": "THBT future generations should be able to sue the government for damages from the effects of climate change - Round 3" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": 4, + "Motion": "You have a machine that allows you to know when you will die. THW use the machine. - Round 4" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": 4, + "Motion": "Assuming you have the technology, THW financially reward citizens for good deeds - Round 4" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": 5, + "Motion": "THW ban tithing - Round 5" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": 5, + "Motion": "THW require religious organisations to elect their leaders - Round 5" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": 6, + "Motion": "THBT the European Union should refuse to offer the United Kingdom preferential trade terms - Round 6" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": 6, + "Motion": "THW place a tax on the labour of robots - Round 6" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": 7, + "Motion": "THS the publication of the DNC (Democratic National Committee) leaks - Round 7" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": 7, + "Motion": "TH regrets the commercialisation of social justice - Round 7" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": 8, + "Motion": "THW reject women-only spaces - Round 8" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": 8, + "Motion": "THBT the transgender movement should distance itself from the feminist movement - Round 8" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": "Open_Semis", + "Motion": "TH regrets Treaty settlements - Semi Final 1" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": "Open_Semis", + "Motion": "THS granting legal personality to rivers and lakes - Semi Final 1" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": "Open_Semis", + "Motion": "THBT inquiries into the misconduct of soldiers should only be conducted by people who have at some point been in active service - Semi Final 2" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": "Open_Semis", + "Motion": "THBT the USA should take aggressive military action against the Syrian regime - Semi Final 2" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": "Open_Final", + "Motion": "THBT the media should not ‘out’ authors who publish under a pseudonym - Grand Final" + }, + { + "Date": "2017-04-14T00:00:00", + "Tournament": "NZ Easters 2017", + "Round": "Open_Final", + "Motion": "THW not allow authors to copyright characters or worlds that they have created - Grand Final" + }, + { + "Date": "2017-04-07T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 1, + "Motion": "This house supports the use of “eye in the sky” policing in urban areas with high crime rates." + }, + { + "Date": "2017-04-07T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 2, + "Motion": "This house supports democratic governments using social disgust as a grounds for restricting public speech or display." + }, + { + "Date": "2017-04-07T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 3, + "Motion": "This house regrets the shift in focus within the academic study of history from studying great figures and institutions to studying cultural forces and the experiences of ordinary people." + }, + { + "Date": "2017-04-07T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 4, + "Motion": "Given the choice as an individual who is a typical, healthy 30-year-old, THW elect to never again feel the emotion of sorrow." + }, + { + "Date": "2017-04-07T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 5, + "Motion": "This house believes that the US should issue guest worker visas, under which minimum wage laws would not apply." + }, + { + "Date": "2017-04-07T00:00:00", + "Tournament": "HWS Round Robin", + "Round": "Open_Final", + "Motion": "THBT governments should abandon the strategy of \"decapitation\" in fighting terrorism." + }, + { + "Date": "2017-04-07T00:00:00", + "Tournament": "PEP IV 2017", + "Round": 1, + "Motion": "This House Would Fully Subsidize Gender Reassigment Surgery For Pubescent Teenagers Regardless of Parental Consent." + }, + { + "Date": "2017-04-07T00:00:00", + "Tournament": "PEP IV 2017", + "Round": 2, + "Motion": "This House Believes That Israel Should Fine Actors Who Refuse To Perform In Settlements" + }, + { + "Date": "2017-04-07T00:00:00", + "Tournament": "PEP IV 2017", + "Round": 3, + "Motion": "This House Believes That the U.S. Should Hack China's \"Credit Social System\" In Order To Disrupt It" + }, + { + "Date": "2017-04-07T00:00:00", + "Tournament": "PEP IV 2017", + "Round": 4, + "Motion": "This House Believes That Republika Srpska Should Be an Independent State" + }, + { + "Date": "2017-04-07T00:00:00", + "Tournament": "PEP IV 2017", + "Round": 5, + "Motion": "This House Believes That Mexico Should Allow Neighbourhoods And Cities In North Mexico To Form Armed Militias In Order To Combat Drug Cartels." + }, + { + "Date": "2017-04-07T00:00:00", + "Tournament": "PEP IV 2017", + "Round": "Open_Semis", + "Motion": "This House Would Impose Criminal Laws To Crimes Comitted By Users Of Avatars In Virtual Worlds (Such As ’Second Life’)" + }, + { + "Date": "2017-04-07T00:00:00", + "Tournament": "PEP IV 2017", + "Round": "Open_Final", + "Motion": "This House Supports the EU Backed Western Balkans Customs Union, Even at the Price of Terminating the Free Trade Agreement With Russia And of Joining the EU Sanctions on Russia" + }, + { + "Date": "2017-04-01T00:00:00", + "Tournament": "Colgate Open 2017", + "Round": 1, + "Motion": "THW ban college entrance exams - for example: ACT, SAT" + }, + { + "Date": "2017-04-01T00:00:00", + "Tournament": "Colgate Open 2017", + "Round": 2, + "Motion": "THW require meat packaging to display images that vividly and accurately reflect the experiences of the animals throughout the manufacturing process" + }, + { + "Date": "2017-04-01T00:00:00", + "Tournament": "Colgate Open 2017", + "Round": 3, + "Motion": "THBT social media companies should factcheck posts by world leaders" + }, + { + "Date": "2017-04-01T00:00:00", + "Tournament": "Colgate Open 2017", + "Round": 4, + "Motion": "THBT protesters should sabotage the Dakota Access Pipeline" + }, + { + "Date": "2017-04-01T00:00:00", + "Tournament": "Colgate Open 2017", + "Round": 5, + "Motion": "THBT the international community should regard the USA as a rogue state if it leaves or does not abide by the Paris Climate Agreement" + }, + { + "Date": "2017-04-01T00:00:00", + "Tournament": "Colgate Open 2017", + "Round": "Open_Quarters", + "Motion": "THBT the state should pay reparations to women" + }, + { + "Date": "2017-04-01T00:00:00", + "Tournament": "Colgate Open 2017", + "Round": "Open_Semis", + "Motion": "THW abolish all locked facilities - for example: jail, detention centers, correctional facilities - for youth" + }, + { + "Date": "2017-04-01T00:00:00", + "Tournament": "Colgate Open 2017", + "Round": "Open_Final", + "Motion": "TH, as a Republican member of Congress, would destroy the evidence" + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Empire Debates", + "Round": 1, + "Motion": "THW abolish K-12 private schools" + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Empire Debates", + "Round": 2, + "Motion": "THBT the feminist movement should oppose the rise of commercial products and services aimed at helping women protect themselves from sexual assault and harassment (e.g. nail polish that changes colour around date rape drugs, anti-rape underwear, \"killer tampon\", Pink Cabs)" + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Empire Debates", + "Round": 3, + "Motion": "THBT Mexico should pull out of NAFTA" + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Empire Debates", + "Round": 4, + "Motion": "TH, as a parent belonging to a minority religion, would discourage their children from expressing their faith publicly (e.g. wearing yarmulkes, hijabs or other articles of faith, etc.)" + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Empire Debates", + "Round": 5, + "Motion": "In places with significantly high waiting times for finding appropriate donors, THW legalize the private sale of organs" + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Empire Debates", + "Round": "Novice_Final", + "Motion": "THW withdraw all military aid to Israel" + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Empire Debates", + "Round": "Open_Semis", + "Motion": "THBT Western countries should cease all direct military intervention in Yemen" + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Empire Debates", + "Round": "Open_Final", + "Motion": "THP a world in which all people actively believed in determinism as opposed to a world in which they believed in free will" + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Western Regionals 2017", + "Round": 1, + "Motion": "THW not criticize Melania Trump as a way of protesting the Donald" + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Western Regionals 2017", + "Round": 2, + "Motion": "THW stop teaching children that all opinions are valid" + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Western Regionals 2017", + "Round": 3, + "Motion": "THBT African nations should not allow extraction of their national resources by companies from developed nations." + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Western Regionals 2017", + "Round": 4, + "Motion": "THW save the Pandas." + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Western Regionals 2017", + "Round": 5, + "Motion": "THBT if NPR and/or PBS cannot survive without government funding, they should be allowed to fail." + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Western Regionals 2017", + "Round": 6, + "Motion": "THW reinstate the Wet Foot, Dry Foot policy." + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Western Regionals 2017", + "Round": 7, + "Motion": "THBT it can be legitimate for a person to claim to identify as a race other than the one they were born into." + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Western Regionals 2017", + "Round": 8, + "Motion": "THBT South Korea should shifts its focus away from its alliance with the United States to strengthen its ties with China." + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Western Regionals 2017", + "Round": "Open_Quarters", + "Motion": "THBT the EU should implement protectionist economic policies targeted towards the UK upon the triggering of 'Brexit\"" + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Western Regionals 2017", + "Round": "Open_Semis", + "Motion": "THBT Vladimir Putin is a greater threat to the world than Donald Trump." + }, + { + "Date": "2017-03-25T00:00:00", + "Tournament": "Western Regionals 2017", + "Round": "Open_Final", + "Motion": "THW punch a Nazi" + }, + { + "Date": "2017-03-24T00:00:00", + "Tournament": "Tricity Mini", + "Round": 1, + "Motion": "THBT universities should not interfere with the choices of topics and guests at events organized by their students" + }, + { + "Date": "2017-03-24T00:00:00", + "Tournament": "Tricity Mini", + "Round": 2, + "Motion": "TH, as the EU, would impose sanctions on Poland for breaching democratic principles" + }, + { + "Date": "2017-03-24T00:00:00", + "Tournament": "Tricity Mini", + "Round": 3, + "Motion": "THW introduce educational system with the selection process based only on geographical location (and not e.g. test results)" + }, + { + "Date": "2017-03-24T00:00:00", + "Tournament": "Tricity Mini", + "Round": "Open_Final", + "Motion": "THR the rise of sharing economy" + }, + { + "Date": "2017-03-17T00:00:00", + "Tournament": "North American Women & Gender Minorities Debating Championship", + "Round": 1, + "Motion": "This house supports deaf parents' choice to deafen their children in utero." + }, + { + "Date": "2017-03-17T00:00:00", + "Tournament": "North American Women & Gender Minorities Debating Championship", + "Round": 2, + "Motion": "This house supports the government suing meat producers/distributors to recover health care and environmental costs incurred by meat consumption." + }, + { + "Date": "2017-03-17T00:00:00", + "Tournament": "North American Women & Gender Minorities Debating Championship", + "Round": 3, + "Motion": "This house, as the European Union, would reject Turkey's membership application to the European Union." + }, + { + "Date": "2017-03-17T00:00:00", + "Tournament": "North American Women & Gender Minorities Debating Championship", + "Round": 4, + "Motion": "This house opposes the presence of external sex characteristics (uterus, vagina, breasts) at pro-women protests (eg, the Women's March on Washington)." + }, + { + "Date": "2017-03-17T00:00:00", + "Tournament": "North American Women & Gender Minorities Debating Championship", + "Round": 5, + "Motion": "This house opposes the societal idea that forgiveness is a virtue." + }, + { + "Date": "2017-03-17T00:00:00", + "Tournament": "North American Women & Gender Minorities Debating Championship", + "Round": "Novice_Final", + "Motion": "This house opposes democracy." + }, + { + "Date": "2017-03-17T00:00:00", + "Tournament": "North American Women & Gender Minorities Debating Championship", + "Round": "Open_Semis", + "Motion": "This house would prefer a world in which we never found out that Joseph Boyden has no Indigenous heritage." + }, + { + "Date": "2017-03-17T00:00:00", + "Tournament": "North American Women & Gender Minorities Debating Championship", + "Round": "Open_Final", + "Motion": "This house believes that feminism is incompatible with capitalism." + }, + { + "Date": "2017-03-12T00:00:00", + "Tournament": "KL Open Challenge", + "Round": 1, + "Motion": "In cases when economic projects encroach on their land, THBT indigenous communities should strive for compensation over opposing the project altogether." + }, + { + "Date": "2017-03-12T00:00:00", + "Tournament": "KL Open Challenge", + "Round": 2, + "Motion": "THBT newly democratized states should prosecute their fallen dictators" + }, + { + "Date": "2017-03-12T00:00:00", + "Tournament": "KL Open Challenge", + "Round": 3, + "Motion": "THBT feminist groups should reject legal presumptions that are favourable to women (e.g. presumptive custody for women, “women and children first”)" + }, + { + "Date": "2017-03-12T00:00:00", + "Tournament": "KL Open Challenge", + "Round": 4, + "Motion": "Given that the technology exists and is enforceable, THS a universally applied birth lottery system." + }, + { + "Date": "2017-03-12T00:00:00", + "Tournament": "KL Open Challenge", + "Round": 5, + "Motion": "THBT ASEAN should abandon its principle of non-interference in its member states’ political affairs" + }, + { + "Date": "2017-03-12T00:00:00", + "Tournament": "KL Open Challenge", + "Round": "Open_Quarters", + "Motion": "THW prevent wealthy individuals from being able to write off charity as tax-deductible." + }, + { + "Date": "2017-03-12T00:00:00", + "Tournament": "KL Open Challenge", + "Round": "Open_Semi", + "Motion": "TH, as a liberal-leaning news outlet, would take steps to portray terrorists in a sympathetic light." + }, + { + "Date": "2017-03-12T00:00:00", + "Tournament": "KL Open Challenge", + "Round": "Open_Final", + "Motion": "THR the firing of employees who have been found guilty by the court of public opinion." + }, + { + "Date": "2017-03-10T00:00:00", + "Tournament": "2017 Pan-American Universities Debating Championship", + "Round": 1, + "Motion": "THW make the directors of major governmental science and technology organizations elected positions (e.g. Director of Environmental Protection Agency, head of National Science Foundation, Minister of Science and Technology)" + }, + { + "Date": "2017-03-10T00:00:00", + "Tournament": "2017 Pan-American Universities Debating Championship", + "Round": 2, + "Motion": "THBT governments should depopulate areas with few viable economic activities." + }, + { + "Date": "2017-03-10T00:00:00", + "Tournament": "2017 Pan-American Universities Debating Championship", + "Round": 3, + "Motion": "THBT the feminist movement should oppose presumptive custody in favor of women in cases of divorce." + }, + { + "Date": "2017-03-10T00:00:00", + "Tournament": "2017 Pan-American Universities Debating Championship", + "Round": 4, + "Motion": "THBT it is legitimate for states to deny residency to immigrants who openly contradict their predominant values." + }, + { + "Date": "2017-03-10T00:00:00", + "Tournament": "2017 Pan-American Universities Debating Championship", + "Round": 5, + "Motion": "THW institute a \"robot tax\"" + }, + { + "Date": "2017-03-10T00:00:00", + "Tournament": "2017 Pan-American Universities Debating Championship", + "Round": 6, + "Motion": "THBT minority groups should not reclaim slurs that have been directed against them." + }, + { + "Date": "2017-03-10T00:00:00", + "Tournament": "2017 Pan-American Universities Debating Championship", + "Round": "Open_Quarters", + "Motion": "You are a citizen living in today’s world. You have the ability to create a perfect world by picking a random child by global lottery and condemning them to a condition of abject misery. The lottery is unbiased. The child will endure all the world’s extreme suffering in perpetuity (i.e. lack of human contact, torture, starvation, disease). The child’s suffering creates a world without war, famine, disease, or poverty: there is perfect prosperity and happiness. THW do it." + }, + { + "Date": "2017-03-10T00:00:00", + "Tournament": "2017 Pan-American Universities Debating Championship", + "Round": "Open_Semis", + "Motion": "This house believes that the USA should fund military action by private intermediaries (e.g. paramilitary groups, private military contractors, vigilante groups) against drug cartels in other countries in the Americas." + }, + { + "Date": "2017-03-10T00:00:00", + "Tournament": "2017 Pan-American Universities Debating Championship", + "Round": "Open_Final", + "Motion": "This house prefers a world where American and Canadian Multi-National Corporations in South America adhere to the environmental and labour standards of their home countries." + }, + { + "Date": "2017-03-04T00:00:00", + "Tournament": "Budapest Open 2017", + "Round": 1, + "Motion": "THW allow local communities to vote to reduce the amount of policing present within their districts" + }, + { + "Date": "2017-03-04T00:00:00", + "Tournament": "Budapest Open 2017", + "Round": 2, + "Motion": "THBT China should remove its restrictions on rural to urban migrants." + }, + { + "Date": "2017-03-04T00:00:00", + "Tournament": "Budapest Open 2017", + "Round": 3, + "Motion": "THP a world where everyone has Highly Superior Autobiographical." + }, + { + "Date": "2017-03-04T00:00:00", + "Tournament": "Budapest Open 2017", + "Round": 4, + "Motion": "Given that private gun ownership is legal, THS the existence of women's gun rights organizations." + }, + { + "Date": "2017-03-04T00:00:00", + "Tournament": "Budapest Open 2017", + "Round": 5, + "Motion": "THBT African countries should adopt English as the principal language of instruction in schools" + }, + { + "Date": "2017-03-04T00:00:00", + "Tournament": "Budapest Open 2017", + "Round": "Novice_Final", + "Motion": "THO the dominant narrative in popular culture that there exists a soulmate for everyone" + }, + { + "Date": "2017-03-04T00:00:00", + "Tournament": "Budapest Open 2017", + "Round": "Open_Quarters", + "Motion": "In countries that have the death penalty, THW implement execution duty." + }, + { + "Date": "2017-03-04T00:00:00", + "Tournament": "Budapest Open 2017", + "Round": "Open_Semis", + "Motion": "THW allow individuals to sue religious organizations for compensation for the harmful effects of choices made as a result of adherence to religious doctrine" + }, + { + "Date": "2017-03-04T00:00:00", + "Tournament": "Budapest Open 2017", + "Round": "Open_Final", + "Motion": "THBT it is the Moral Imperative of Liberals within Eastern European countries to stay within their Home Country rather than Emigrate to More Progressive Countries" + }, + { + "Date": "2017-03-01T00:00:00", + "Tournament": "Riga Mini, 2nd edition", + "Round": 1, + "Motion": "TH Welcomes the live-streaming of war" + }, + { + "Date": "2017-03-01T00:00:00", + "Tournament": "Riga Mini, 2nd edition", + "Round": 2, + "Motion": "After the collapse of USSR, Latvia and Estonia, in contrast with many other states, decided not to automatically grant citizenship to its permanent residents who had moved to the countries after the end of World War II, instead offering them an option to naturalize. Citiezenship was one of the promises made the pro-independence movement to encouradge Russian-speaker support. By 2016, 11.75% of Latvian and 6.1% of Estonian population are still non-citizens. Motion: THBT Estonia and Latvia should grant citizenship to non-citizen residents" + }, + { + "Date": "2017-03-01T00:00:00", + "Tournament": "Riga Mini, 2nd edition", + "Round": 3, + "Motion": "In the near future, scientist Thomas Harbor has discovered conclusive scientific evidence that afterlife exists. It has also been determined that it is impossible to to find out the specific nature of afterlife. Motion: TH, as Thomas Harbor, would destroy the research" + }, + { + "Date": "2017-03-01T00:00:00", + "Tournament": "Riga Mini, 2nd edition", + "Round": 4, + "Motion": "TH supports the establishment of a gayborhood in Riga" + }, + { + "Date": "2017-03-01T00:00:00", + "Tournament": "Riga Mini, 2nd edition", + "Round": "Open_Final", + "Motion": "Assuming Belarus agrees, THBT NATO should grant full membership to Belarus contingent on its pivot towards the West in foreign policy and trade" + }, + { + "Date": "2017-02-25T00:00:00", + "Tournament": "Leiden Open", + "Round": 1, + "Motion": "THBT American news media should cease to invite major Trump surrogates (e.g. Kellyane Conway, Sean Spicer) to comment on news events." + }, + { + "Date": "2017-02-25T00:00:00", + "Tournament": "Leiden Open", + "Round": 2, + "Motion": "This house supports the creation of all-Jewish universities in Europe" + }, + { + "Date": "2017-02-25T00:00:00", + "Tournament": "Leiden Open", + "Round": 3, + "Motion": "This house regrets the social perception that ADHD is an illness, as opposed to a personality trait" + }, + { + "Date": "2017-02-25T00:00:00", + "Tournament": "Leiden Open", + "Round": 4, + "Motion": "THBT the BDS movement does more harm than good." + }, + { + "Date": "2017-02-25T00:00:00", + "Tournament": "Leiden Open", + "Round": 5, + "Motion": "THBT the West should support the Russian-backed Syrian peace talks." + }, + { + "Date": "2017-02-25T00:00:00", + "Tournament": "Leiden Open", + "Round": "Novice_Final", + "Motion": "THW sell the script." + }, + { + "Date": "2017-02-25T00:00:00", + "Tournament": "Leiden Open", + "Round": "Open_Semis", + "Motion": "THBT the rise in oil prizes does more harm than good" + }, + { + "Date": "2017-02-25T00:00:00", + "Tournament": "Leiden Open", + "Round": "Open_Final", + "Motion": "In countries with frequent coalition governments, THBT mainstream parties should refuse to include far left parties in coalitions, e.g. Socialist Party ('SP') in the Netherlands, Die Linke ('The Left') in Germany." + }, + { + "Date": "2017-02-24T00:00:00", + "Tournament": "GWU Eastern Championships 2017", + "Round": 2, + "Motion": "THBT every European state should significantly increase military spending" + }, + { + "Date": "2017-02-24T00:00:00", + "Tournament": "GWU Eastern Championships 2017", + "Round": 3, + "Motion": "THR the commodification of indigenous art" + }, + { + "Date": "2017-02-24T00:00:00", + "Tournament": "GWU Eastern Championships 2017", + "Round": 4, + "Motion": "Assuming a cap on refugees, THW prioritize admitting refugees who have engaged in armed resistance against oppressive regimes" + }, + { + "Date": "2017-02-24T00:00:00", + "Tournament": "GWU Eastern Championships 2017", + "Round": "Open_Quarters", + "Motion": "TH opposes common currency" + }, + { + "Date": "2017-02-11T00:00:00", + "Tournament": "cornell novice nationals and tournament of love", + "Round": 1, + "Motion": "THW prosecute the production and distribution of fake news" + }, + { + "Date": "2017-02-11T00:00:00", + "Tournament": "cornell novice nationals and tournament of love", + "Round": 2, + "Motion": "Thw not allow revolutionary leaders and their families in post conflict societies to run for political office" + }, + { + "Date": "2017-02-11T00:00:00", + "Tournament": "cornell novice nationals and tournament of love", + "Round": 3, + "Motion": "THW allow the selection of all-female juries in sexual assault cases" + }, + { + "Date": "2017-02-11T00:00:00", + "Tournament": "cornell novice nationals and tournament of love", + "Round": 4, + "Motion": "thbt public health authorities such as the Centers for Disease Control, should be given the power to quarantine individuals involuntary who they suspect are ill with highly contagious diseases" + }, + { + "Date": "2017-02-11T00:00:00", + "Tournament": "cornell novice nationals and tournament of love", + "Round": 5, + "Motion": "THBT human shields are legitimate targets in war" + }, + { + "Date": "2017-02-11T00:00:00", + "Tournament": "cornell novice nationals and tournament of love", + "Round": "Novice_Final", + "Motion": "TH regrets the narrative of college as the primary path to success (not sure if exact wording)" + }, + { + "Date": "2017-02-11T00:00:00", + "Tournament": "cornell novice nationals and tournament of love", + "Round": "Open_Semis", + "Motion": "TH, as the Catholic church, would sell its cultural artifacts in order to fund poverty alleviation" + }, + { + "Date": "2017-02-11T00:00:00", + "Tournament": "cornell novice nationals and tournament of love", + "Round": "Open_Final", + "Motion": "THB trade unions should stop all campaigning and policy work against offshoring" + }, + { + "Date": "2017-02-10T00:00:00", + "Tournament": "Galway Open 2017", + "Round": 1, + "Motion": "Assuming that it was possible, THW abolish internet anonymity." + }, + { + "Date": "2017-02-10T00:00:00", + "Tournament": "Galway Open 2017", + "Round": 2, + "Motion": "THW allow major medical charities and providers (e.g. Cancer Research, Alzheimer Society of Ireland, Irish Heart Foundation) to sue media outlets and organisations who share incomplete, incorrect or misleading medical information." + }, + { + "Date": "2017-02-10T00:00:00", + "Tournament": "Galway Open 2017", + "Round": 3, + "Motion": "THBT the USA should militarily intervene in the Philippines" + }, + { + "Date": "2017-02-10T00:00:00", + "Tournament": "Galway Open 2017", + "Round": 4, + "Motion": "THR the rise of the sharing economy." + }, + { + "Date": "2017-02-10T00:00:00", + "Tournament": "Galway Open 2017", + "Round": 5, + "Motion": "TH supports the existence of sex and relationship sections in popular media." + }, + { + "Date": "2017-02-10T00:00:00", + "Tournament": "Galway Open 2017", + "Round": "ProAm_Final", + "Motion": "THR the Neolithic Revolution" + }, + { + "Date": "2017-02-10T00:00:00", + "Tournament": "Galway Open 2017", + "Round": "Open_Semis", + "Motion": "THW teach children to question and undermine authority" + }, + { + "Date": "2017-02-10T00:00:00", + "Tournament": "Galway Open 2017", + "Round": "Open_Final", + "Motion": "THR the idea that life must have meaning" + }, + { + "Date": "2017-02-04T00:00:00", + "Tournament": "Riga mini", + "Round": 1, + "Motion": "THBT ecoterrorism is legitimate" + }, + { + "Date": "2017-02-04T00:00:00", + "Tournament": "Riga mini", + "Round": 2, + "Motion": "TH, as atheists, W stop ridiculing religion" + }, + { + "Date": "2017-02-04T00:00:00", + "Tournament": "Riga mini", + "Round": 3, + "Motion": "THW take down the Victory Monument" + }, + { + "Date": "2017-01-27T00:00:00", + "Tournament": "Shahjiwana International Debating IV 2017", + "Round": 1, + "Motion": "This house believes that Pakistani Feminists should campaign for the end of gender segregation in mosques, and the right of female imams to preach in mosques." + }, + { + "Date": "2017-01-27T00:00:00", + "Tournament": "Shahjiwana International Debating IV 2017", + "Round": 2, + "Motion": "This house regrets Wikileaks decision to release the DNC emails" + }, + { + "Date": "2017-01-27T00:00:00", + "Tournament": "Shahjiwana International Debating IV 2017", + "Round": 3, + "Motion": "This house, as the state of Pakistan, would officially recognise the state of Israel" + }, + { + "Date": "2017-01-27T00:00:00", + "Tournament": "Shahjiwana International Debating IV 2017", + "Round": 4, + "Motion": "This house believes members of SAARC should collectively agree to increase labour standards, and environmental standards, rather than engage in a 'race to the bottom'." + }, + { + "Date": "2017-01-27T00:00:00", + "Tournament": "Shahjiwana International Debating IV 2017", + "Round": 5, + "Motion": "This house regrets the use of the death penalty for crimes against humanity." + }, + { + "Date": "2017-01-27T00:00:00", + "Tournament": "Shahjiwana International Debating IV 2017", + "Round": "Open_Quarters", + "Motion": "This house believes female chess players should refuse to participate in this years women's world chess championships" + }, + { + "Date": "2017-01-27T00:00:00", + "Tournament": "Shahjiwana International Debating IV 2017", + "Round": "Open_Semis", + "Motion": "This house would adopt the Indian Supreme Court decision in Pakistan" + }, + { + "Date": "2017-01-27T00:00:00", + "Tournament": "Shahjiwana International Debating IV 2017", + "Round": "Open_Final", + "Motion": "This house believes news media in Pakistan, should not invite imans to comment on political issues." + }, + { + "Date": "2017-01-27T00:00:00", + "Tournament": "Trinity IV", + "Round": 1, + "Motion": "This House Would Force All Companies to be 100% Owned by their Workers" + }, + { + "Date": "2017-01-27T00:00:00", + "Tournament": "Trinity IV", + "Round": 2, + "Motion": "This House believes that the British Government Should Pay Reparations to Northern Irish Catholics" + }, + { + "Date": "2017-01-27T00:00:00", + "Tournament": "Trinity IV", + "Round": 3, + "Motion": "THBT the use of erotic capital by women does more harm than good" + }, + { + "Date": "2017-01-27T00:00:00", + "Tournament": "Trinity IV", + "Round": 4, + "Motion": "THBT China should join the TPP" + }, + { + "Date": "2017-01-27T00:00:00", + "Tournament": "Trinity IV", + "Round": 5, + "Motion": "THBT post-colonial states should commemorate their war dead who died fighting for their former coloniser" + }, + { + "Date": "2017-01-27T00:00:00", + "Tournament": "Trinity IV", + "Round": "Novice_Final", + "Motion": "TH believes in God" + }, + { + "Date": "2017-01-27T00:00:00", + "Tournament": "Trinity IV", + "Round": "Open_Final", + "Motion": "THBT the European left should promote a hard left agenda, including the nationalisation of major industry, very high tax rates on wealthy, and expansion of the welfare states." + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": 1, + "Motion": "This House believes that post-genocidal regimes should destroy all places of extermination (for example, death camps)" + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": 2, + "Motion": "This House would allow members of the armed forces to form labour unions" + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": 3, + "Motion": "This House believes that sports leagues should significantly tax and redistribute from wealthier teams to poorer teams" + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": 4, + "Motion": "In areas with rapidly rising property prices, This House would suspend all restrictions on property development that are not health and safety requirements (for example, environmental zoning regulations, building height restrictions, and regulations on the appearance of buildings)" + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": 5, + "Motion": "This House believes that the Netherlands should allow citizens to purchase additional votes from the government at a cost proportional to their wealth (for example, one additional vote for 1% of wealth)" + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": 6, + "Motion": "This House believes that the world would be a better place if women from privileged backgrounds turned down any benefits arising from affirmative action programs." + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": 7, + "Motion": "This House believes that South Korea should produce nuclear weapons" + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": 8, + "Motion": "This House regrets the glamorization of start-up culture that encourages people to start their own companies rather than pursue traditional career paths" + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": 9, + "Motion": "This House would temporarily and significantly relax minimum labour standards in times of unusually high unemployment, including workplace health and safety standards, minimum wage, working hours restrictions etc." + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": "EFL_Final", + "Motion": "THBT the European left should promote a hard left agenda, including the nationalisation of major industry, very high tax rates on wealthy, and expansion of the welfare states." + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": "ESL_Quarters", + "Motion": "This House believes that the US government should provide significant campaign funding for US congressmen and senators who score highly on bi-partisan metrics." + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": "ESL_Semis", + "Motion": "This house, as the pope, would abolish the requirement for clerical celibacy." + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": "ESL_Final", + "Motion": "THW force all news organisations to operate as non-profits" + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": "Open_Partial_Double_Octos", + "Motion": "This house believes that countries close to conflict zones should only grant long-term asylum to refugees who agree to one year of military service." + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": "Open_Octos", + "Motion": "This house would ban advocacy for religious belief in public places" + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": "Open_Semis", + "Motion": "TH, as the Chinese Communist Party, will allow fair and competitive elections for local elections" + }, + { + "Date": "2017-01-01T00:00:00", + "Tournament": "Dutch WUDC 2017", + "Round": "Open_Final", + "Motion": "This House would apply universal jurisdiction to crimes against the environment" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Birmingham IV", + "Round": 1, + "Motion": "This house regrets Disney's use of indigenous characters and settings in their films" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Birmingham IV", + "Round": 2, + "Motion": "This house believes that pro-remain political parties and campaign groups should launch a class action suit against prominent members of the Leave campaign for Fraud" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Birmingham IV", + "Round": 3, + "Motion": "This house believes that the Trump administration should abandon the One-China policy" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Birmingham IV", + "Round": 4, + "Motion": "In post conflict societies, This house would grant amnesty to perpetrators of crimes rather than seeking prosecutions" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Birmingham IV", + "Round": 5, + "Motion": "This house would make membership of Trade Unions compulsory" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Birmingham IV", + "Round": "Open_Quarters", + "Motion": "This house would ban organisations from promoting abstinence" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Birmingham IV", + "Round": "Open_Semis", + "Motion": "This house regrets the inclusion of the People's Mobilization Forces in the war against the Islamic State" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Birmingham IV", + "Round": "Open_Final", + "Motion": "This house believes that Eastern European states should destroy monuments from their Soviet Union period" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Riga IV", + "Round": 1, + "Motion": "THBT publicly funded universities should be required to reduce enrolment in degree programs within their university that have statistically poor employment outcomes" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Riga IV", + "Round": 2, + "Motion": "THBT search engines should deprioritise search or autocomplete results with sexist, racist or otherwise offensive content" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Riga IV", + "Round": 3, + "Motion": "TH regrets the promotion of religion in countries formerly ruled by communist regimes in Eastern Europe" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Riga IV", + "Round": 4, + "Motion": "THBT the US should abandon all military support for and impose economic sanctions on the Philippines" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Riga IV", + "Round": 5, + "Motion": "THBT the governments of Brazil and Peru should contact uncontacted Amazonian tribes" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Riga IV", + "Round": "Novice_Final", + "Motion": "TH supports the use of referendums when deciding whether to permit same sex marriage" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Riga IV", + "Round": "Open_Partial_Quarters", + "Motion": "THBT governments in the developing world should limit migration to megacities" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Riga IV", + "Round": "Open_Semis", + "Motion": "THBT Italy should have voted ‘si’ in last week’s referendum on constitutional reform" + }, + { + "Date": "2016-12-10T00:00:00", + "Tournament": "Riga IV", + "Round": "Open_Final", + "Motion": "TH supports the demolition of makeshift refugee camps on the borders between European countries e.g. The Calais Jungle in France, The Idomeni Camp in Greece" + }, + { + "Date": "2016-12-03T00:00:00", + "Tournament": "Sheffield IV 2016", + "Round": 1, + "Motion": "THR the existence of religious political parties" + }, + { + "Date": "2016-12-03T00:00:00", + "Tournament": "Sheffield IV 2016", + "Round": 2, + "Motion": "THBT the state should not fund blueskies research" + }, + { + "Date": "2016-12-03T00:00:00", + "Tournament": "Sheffield IV 2016", + "Round": 3, + "Motion": "TH opposes the popularisation of BDSM" + }, + { + "Date": "2016-12-03T00:00:00", + "Tournament": "Sheffield IV 2016", + "Round": 4, + "Motion": "THBT using Human Shield tactics, by the weaker side, is legitimate in asymmetrical wars" + }, + { + "Date": "2016-12-03T00:00:00", + "Tournament": "Sheffield IV 2016", + "Round": "Open_Semis", + "Motion": "THBT individuals should only fund charities that follow effective altruism" + }, + { + "Date": "2016-12-03T00:00:00", + "Tournament": "Sheffield IV 2016", + "Round": "Open_Final", + "Motion": "THW prohibit the media from reporting on the mental illness of those accused of crimes" + }, + { + "Date": "2016-12-02T00:00:00", + "Tournament": "Seattle IV 2016", + "Round": 1, + "Motion": "THS ecoterrorism" + }, + { + "Date": "2016-12-02T00:00:00", + "Tournament": "Seattle IV 2016", + "Round": 2, + "Motion": "THBT congressional Democrats should support a policy of total obstruction during Trump's term" + }, + { + "Date": "2016-12-02T00:00:00", + "Tournament": "Seattle IV 2016", + "Round": 3, + "Motion": "THP ad hoc tribunals over the ICC" + }, + { + "Date": "2016-12-02T00:00:00", + "Tournament": "Seattle IV 2016", + "Round": 4, + "Motion": "THW subsidize companies who have a 50% share or more owned by a woman or minority" + }, + { + "Date": "2016-12-02T00:00:00", + "Tournament": "Seattle IV 2016", + "Round": 5, + "Motion": "TH, as an university, would take down statues of controversial figures" + }, + { + "Date": "2016-12-02T00:00:00", + "Tournament": "Seattle IV 2016", + "Round": 6, + "Motion": "THR the narrative that Americans must \"support\" the troops" + }, + { + "Date": "2016-12-02T00:00:00", + "Tournament": "Seattle IV 2016", + "Round": "Open_Semis", + "Motion": "THBT the EU has failed" + }, + { + "Date": "2016-12-02T00:00:00", + "Tournament": "Seattle IV 2016", + "Round": "Open_Final", + "Motion": "THW leave Omelas" + }, + { + "Date": "2016-11-26T00:00:00", + "Tournament": "Moscow Open 2016", + "Round": 1, + "Motion": "THW Give Extra Votes to Individuals who Live in Areas with Consistently Low Voter Turnout" + }, + { + "Date": "2016-11-26T00:00:00", + "Tournament": "Moscow Open 2016", + "Round": 2, + "Motion": "This House Believes That the state should pay a salary to stay-at-home parents" + }, + { + "Date": "2016-11-26T00:00:00", + "Tournament": "Moscow Open 2016", + "Round": 3, + "Motion": "Given the existence of \"SASP Glasses\" technology, This House Would ban them." + }, + { + "Date": "2016-11-26T00:00:00", + "Tournament": "Moscow Open 2016", + "Round": 4, + "Motion": "This House Believes That western tech companies should collectively refuse to comply with the Russian personal information law" + }, + { + "Date": "2016-11-26T00:00:00", + "Tournament": "Moscow Open 2016", + "Round": 5, + "Motion": "This House Believes That developed nations should not recruit high-skilled workers (Such as doctors, engineers, etc.) from developing countries" + }, + { + "Date": "2016-11-26T00:00:00", + "Tournament": "Moscow Open 2016", + "Round": "Open_Semis", + "Motion": "Given the ability to accurately measure the moral track record of a person, This House Would criminalize having a consistently negative moral track record" + }, + { + "Date": "2016-11-26T00:00:00", + "Tournament": "Moscow Open 2016", + "Round": "Open_Final", + "Motion": "This House Believes that the Election of Donald Trump Serves the Interests of Russian Citizens" + }, + { + "Date": "2016-11-25T00:00:00", + "Tournament": "Cork IV", + "Round": 1, + "Motion": "This House Believes That teachers should contradict curriculum that they believe will be harmful to society" + }, + { + "Date": "2016-11-25T00:00:00", + "Tournament": "Cork IV", + "Round": 2, + "Motion": "This House Believes That feminists should actively adopt stereotypically \"male\" traits (such as being assertive, emotionally distant, \"man-spreading\" etc.)" + }, + { + "Date": "2016-11-25T00:00:00", + "Tournament": "Cork IV", + "Round": 3, + "Motion": "This House Would never offer a reduced sentence in return for information relating to other crimes" + }, + { + "Date": "2016-11-25T00:00:00", + "Tournament": "Cork IV", + "Round": 4, + "Motion": "This House, as the Catholic Church, would sell all wealth (including, but not limited to, art, property, and religious artefacts) to the highest bidder and donate the profit to the alleviation of poverty" + }, + { + "Date": "2016-11-25T00:00:00", + "Tournament": "Cork IV", + "Round": 5, + "Motion": "This House Would give the African Union passport to all citizens of African Union member states" + }, + { + "Date": "2016-11-25T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 1, + "Motion": "THW allow plaintiffs to sell to third parties their right to sue." + }, + { + "Date": "2016-11-25T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 2, + "Motion": "THR the prominence given to celebrity endorsements of politicians and political parties" + }, + { + "Date": "2016-11-25T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 3, + "Motion": "THW apply an environmental tax to cheap mass-produced clothing" + }, + { + "Date": "2016-11-25T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 4, + "Motion": "TH, as a female visitor to WestWorld, would choose to wear a black hat." + }, + { + "Date": "2016-11-25T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 5, + "Motion": "THBT developing nations with ethnically diverse populations should prohibit vernacular schools\"" + }, + { + "Date": "2016-11-25T00:00:00", + "Tournament": "Tilbury House IV", + "Round": "Open_Semis", + "Motion": "THBT NATO should create a 'safe zone' in rebel-held territory within Syria" + }, + { + "Date": "2016-11-25T00:00:00", + "Tournament": "Tilbury House IV", + "Round": "Open_Final", + "Motion": "THR the decision of Clinton supporters in the immediate aftermath of the 2016 US election to frame the Trump victory as the result of misogyny and racism and not opposition to the political establishment and/or neoliberalism" + }, + { + "Date": "2016-11-20T00:00:00", + "Tournament": "CMS Cambridge Women's Open 2016", + "Round": 1, + "Motion": "This house prefers secular governments that exclude all religion from public spaces to those that allow all religions in public." + }, + { + "Date": "2016-11-20T00:00:00", + "Tournament": "CMS Cambridge Women's Open 2016", + "Round": 2, + "Motion": "This house believes that nations should invest in regional human rights institutions at the expense of global institutions (such as the ICC)." + }, + { + "Date": "2016-11-20T00:00:00", + "Tournament": "CMS Cambridge Women's Open 2016", + "Round": 3, + "Motion": "This house regrets the rise of choice feminism" + }, + { + "Date": "2016-11-20T00:00:00", + "Tournament": "CMS Cambridge Women's Open 2016", + "Round": 4, + "Motion": "This house believes that opposition parties in Latin America should seek incremental transitions of power rather than the recall or overthrow of ruling parties." + }, + { + "Date": "2016-11-19T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2016", + "Round": 1, + "Motion": "THBT liberals should refrain from using terms such as bigot, racist, sexist etc to describe people or positions they disagree with" + }, + { + "Date": "2016-11-19T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2016", + "Round": 1, + "Motion": "THBT liberals should not use pejorative labels such as racist, bigot, sexist etc to describe people whose beliefs they disagree with." + }, + { + "Date": "2016-11-19T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2016", + "Round": 2, + "Motion": "THW transition to a cashless society" + }, + { + "Date": "2016-11-19T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2016", + "Round": 2, + "Motion": "THW transition to a cash-less society." + }, + { + "Date": "2016-11-19T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2016", + "Round": 3, + "Motion": "THW greatly reduce economic prosperity, progress and growth in favour of increasing individual’s leisure time" + }, + { + "Date": "2016-11-19T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2016", + "Round": 3, + "Motion": "THW significantly increase people’s leisure time at the expense of greater prosperity, progress and growth." + }, + { + "Date": "2016-11-19T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2016", + "Round": 4, + "Motion": "THW not allow “intersex” female athletes (such as Caster Semenya) to compete in female sporting competitions unless they take hormone suppressants." + }, + { + "Date": "2016-11-19T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2016", + "Round": 5, + "Motion": "THW not prosecute former child soldiers for offences committed as adults" + }, + { + "Date": "2016-11-19T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2016", + "Round": 5, + "Motion": "THW not prosecute former child soldiers for crimes committed as adults." + }, + { + "Date": "2016-11-19T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2016", + "Round": "Open_Semis", + "Motion": "THW require all companies over a certain size to be fully publicly listed" + }, + { + "Date": "2016-11-19T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2016", + "Round": "Open_Semi", + "Motion": "THW force large companies above a certain size to be fully publicly listed." + }, + { + "Date": "2016-11-19T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2016", + "Round": "Open_Final", + "Motion": "This house believes that environmental NGOs should promote genetic engineering" + }, + { + "Date": "2016-11-19T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2016", + "Round": "Open_Final", + "Motion": "THBT environmental NGOs should promote genetic engineering." + }, + { + "Date": "2016-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": 1, + "Motion": "This House would abolish all government schemes that provide grants, tax-breaks or loans at preferential terms to home buyers" + }, + { + "Date": "2016-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": 2, + "Motion": "THBT indigenous groups in parliamentary democracies should form independent political parties instead of encouraging their members to vote for, and run on behalf of, existing parties" + }, + { + "Date": "2016-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": 3, + "Motion": "This House believes that governments should make available a publicly searchable database containing the income, wealth and taxes paid by all citizens" + }, + { + "Date": "2016-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": 4, + "Motion": "This House would prohibit the use of predictive algorithms in criminal trials" + }, + { + "Date": "2016-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": 5, + "Motion": "This House, as Israel, opposes a Iran nuclear deal" + }, + { + "Date": "2016-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": "ESL_Semi", + "Motion": "This House believes that membership of the EAEU is in the interests of Central Asian states." + }, + { + "Date": "2016-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Novice_Final", + "Motion": "This House would allow individuals to sue the government when the government has failed to provide a basic standard of living." + }, + { + "Date": "2016-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Quarter", + "Motion": "This House believes that states should focus on negotiating bilateral trade agreements over large, regional agreements such as the TPP and RCEP." + }, + { + "Date": "2016-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Final", + "Motion": "This House prefers a world in which Islam is structured around a strong, central governing authority (e.g. The Pope in Catholicism)" + }, + { + "Date": "2016-11-11T00:00:00", + "Tournament": "Oxford IV", + "Round": 1, + "Motion": "When police are put on trial for alleged instances of a violent wrongdoing, this House would decrease the burden of proof to the balance of probabilities." + }, + { + "Date": "2016-11-11T00:00:00", + "Tournament": "Oxford IV", + "Round": 2, + "Motion": "This House would allow negative voting." + }, + { + "Date": "2016-11-11T00:00:00", + "Tournament": "Oxford IV", + "Round": 3, + "Motion": "This House believes that armies should indoctrinate soldiers to take their own lives in the event that they fall captive to the enemy." + }, + { + "Date": "2016-11-11T00:00:00", + "Tournament": "Oxford IV", + "Round": 4, + "Motion": "This House believes that the state should promote the norm of the 'single life'." + }, + { + "Date": "2016-11-11T00:00:00", + "Tournament": "Oxford IV", + "Round": 5, + "Motion": "This House believes that NATO should expel members that do not meet the organisation's defence spending targets." + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Chittagong University IV 2016", + "Round": 1, + "Motion": "THW ban works of art that glorify criminality" + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Chittagong University IV 2016", + "Round": 2, + "Motion": "TH as Bernie Sanders would run as an independent candidate" + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Chittagong University IV 2016", + "Round": 3, + "Motion": "THBT westen liberal democracies should withdraw funding from Bangladesh until blogger killers are arrested and tried" + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Chittagong University IV 2016", + "Round": 4, + "Motion": "THBT Dalai Lama should urge Tibetans to end their resistance and integrate with China" + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Chittagong University IV 2016", + "Round": "Open_Final", + "Motion": "THW require all visitors to gain entry permission from the tribal community before visiting the region" + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Indian Schools Debating Society Chennai Leagues, 2016", + "Round": 1, + "Motion": "THW permit the use of performance enhancing drugs in sport" + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Indian Schools Debating Society Chennai Leagues, 2016", + "Round": 2, + "Motion": "THBT university students should be required to work in their countries of origin for a temporary period after graduation" + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Indian Schools Debating Society Chennai Leagues, 2016", + "Round": 3, + "Motion": "THBT the media should show the full horrors of war" + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Indian Schools Debating Society Chennai Leagues, 2016", + "Round": 4, + "Motion": "THBT democracy is on the streets and not on the ballot box" + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Indian Schools Debating Society Chennai Leagues, 2016", + "Round": 5, + "Motion": "THR the rise of slum tourism" + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Indian Schools Debating Society Chennai Leagues, 2016", + "Round": 6, + "Motion": "THW ban blood sport" + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Indian Schools Debating Society Chennai Leagues, 2016", + "Round": 7, + "Motion": "TH supports academic tracking in primary and secondary education" + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Indian Schools Debating Society Chennai Leagues, 2016", + "Round": 8, + "Motion": "THW abandon nuclear energy" + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Indian Schools Debating Society Chennai Leagues, 2016", + "Round": "Open_Quarters", + "Motion": "THW suspend labor laws in times of economic crisis" + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Indian Schools Debating Society Chennai Leagues, 2016", + "Round": "Open_Semis", + "Motion": "THBT the media should not comment on the electability of politicians" + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Indian Schools Debating Society Chennai Leagues, 2016", + "Round": "Open_Final", + "Motion": "THW create and enforce filial responsibility laws" + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Yale IV", + "Round": 1, + "Motion": "THW abolish all occupational licensing." + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Yale IV", + "Round": 2, + "Motion": "THBT western nations fighting the Islamic state should commit to the creation of an independent Kurdish state." + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Yale IV", + "Round": 3, + "Motion": "This house believes that religious officials (e.g. priests, imams, rabbis) should not make statements in support of political policies, parties, or candidates." + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Yale IV", + "Round": 4, + "Motion": "TH supports the continued remilitarization of Japan." + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Yale IV", + "Round": 5, + "Motion": "THB that all museums, galleries, and cultural institutions should offer to return exhibits to their countries/communities of origin." + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Yale IV", + "Round": 6, + "Motion": "THW nationalize credit rating agencies." + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Yale IV", + "Round": "Novice_Semis", + "Motion": "THBT identity-based social movements should prioritize the majority population's acceptance of that identity over preservation of a distinct culture." + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Yale IV", + "Round": "Novice_Finals", + "Motion": "TH fears the development of independent artificial intelligence." + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Yale IV", + "Round": "Open_Quarters", + "Motion": "THBT a rise in global oil prices is in the interest of the West." + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Yale IV", + "Round": "Open_Semis", + "Motion": "THS supreme court rulings based on natural rights not enumerated in constitutions." + }, + { + "Date": "2016-11-06T00:00:00", + "Tournament": "Yale IV", + "Round": "Open_Final", + "Motion": "TH believes in God." + }, + { + "Date": "2016-10-29T00:00:00", + "Tournament": "Huber Debates 2016", + "Round": 1, + "Motion": "thw implement mandatory paternity leave for new fathers" + }, + { + "Date": "2016-10-29T00:00:00", + "Tournament": "Huber Debates 2016", + "Round": 2, + "Motion": "thbt countries should implement strong worker protection laws even at the cost of economic growth (ie, collective bargaining, overtime hours, worker compensation, etc)" + }, + { + "Date": "2016-10-29T00:00:00", + "Tournament": "Huber Debates 2016", + "Round": 3, + "Motion": "thw deny tax-exempt status to religious institutions that restrict women from accessing leadership or teaching roles" + }, + { + "Date": "2016-10-29T00:00:00", + "Tournament": "Huber Debates 2016", + "Round": 4, + "Motion": "THBT jewish-americans have a moral obligation to suspend their participation in organizations (hillel, birthright, aipac, etc) that endorses israel’s current settlement program" + }, + { + "Date": "2016-10-29T00:00:00", + "Tournament": "Huber Debates 2016", + "Round": 5, + "Motion": "Thw create an international organization to facilitate private individuals suing foreign governments for causing serious harms to their communities" + }, + { + "Date": "2016-10-29T00:00:00", + "Tournament": "Huber Debates 2016", + "Round": "Novice_Final", + "Motion": "Thw allow voters to repeal legislation using citizen referenda initiated referenda passed by a ⅔ popular vote majority" + }, + { + "Date": "2016-10-29T00:00:00", + "Tournament": "Huber Debates 2016", + "Round": "Open_Quarters", + "Motion": "In regions with severe, widespread violence against women, ths acts of vigilante justice in response to gendered assaults (israel egypt)" + }, + { + "Date": "2016-10-29T00:00:00", + "Tournament": "Huber Debates 2016", + "Round": "Open_Semis", + "Motion": "thbt the kurdish people should abandon attempts to establish an independent state, in favour of seeking greater poliitical inclusion in iraq and in turkey" + }, + { + "Date": "2016-10-29T00:00:00", + "Tournament": "Huber Debates 2016", + "Round": "Open_Final", + "Motion": "THR the decline of Black Militant Groups (i.e. the Black Panther Party, the Black Liberation Army" + }, + { + "Date": "2016-10-29T00:00:00", + "Tournament": "JADE College Cup 2016", + "Round": 1, + "Motion": "TH, as the Ministry of Education, Youth and Information, would significantly reduce summer holidays" + }, + { + "Date": "2016-10-29T00:00:00", + "Tournament": "JADE College Cup 2016", + "Round": 2, + "Motion": "This House Supports the celebration of Halloween in Jamaica" + }, + { + "Date": "2016-10-29T00:00:00", + "Tournament": "JADE College Cup 2016", + "Round": "Open_Final", + "Motion": "THBT religious institutions should not receive tax exemptions or other legal privileges - Grand Finals" + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "Belgrade Open 2016", + "Round": 1, + "Motion": "THW prosecute violent fouls in sports as criminal assault" + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "Belgrade Open 2016", + "Round": 2, + "Motion": "THBT ICC should forcefeed detainees going on hunger strike." + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "Belgrade Open 2016", + "Round": 3, + "Motion": "TH, as China, would allow women, and only women, to marry multiple male partners" + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "Belgrade Open 2016", + "Round": 4, + "Motion": "THBT Israel should Privatize the West Bank Checkpoints" + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "Belgrade Open 2016", + "Round": 5, + "Motion": "THR the overwhelming narrative of good triumphing over evil in childrens" + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "Belgrade Open 2016", + "Round": "Open_Semis", + "Motion": "THW rather be a part of “Club 27” thank live an average anonymous" + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "Belgrade Open 2016", + "Round": "Open_Final", + "Motion": "In retrospect, THW have preferred Truth and Reconciliation Comissions over the ICTY to deal with the aftermath of the Yugoslav Wars" + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "Munich Open", + "Round": 1, + "Motion": "THW limit the time in office for heads of state to two terms" + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "Munich Open", + "Round": 2, + "Motion": "THB that the EU should actively support \"Women on Waves\"." + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "Munich Open", + "Round": 3, + "Motion": "THW allow third parties (i.e. individuals or companies) who have been harmed by a workers strike to sue the union(s) for damages." + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "Munich Open", + "Round": 4, + "Motion": "TH opposes the Black Lives Matters' endorsement of BDS.\"" + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "Munich Open", + "Round": 5, + "Motion": "In countries with public healthcare, THW not cover life prolonging treatments for the elderly." + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "Munich Open", + "Round": "Open_Semis", + "Motion": "THBT European countries should compel migrants and refugees to attend lessons about the sexual norms prevalent in the country." + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "Munich Open", + "Round": "Open_Final", + "Motion": "THW ban cash in the developed world" + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "The QUB Open", + "Round": 1, + "Motion": "THW ban essential service workers from striking." + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "The QUB Open", + "Round": 2, + "Motion": "THS the creation of Personal Artificially Intelligent Robotic Romantic Partners." + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "The QUB Open", + "Round": 3, + "Motion": "THB Violent Protest is Legitimate." + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "The QUB Open", + "Round": 4, + "Motion": "THBT the South Korean Government should ban propaganda balloons." + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "The QUB Open", + "Round": 5, + "Motion": "THBT televised debates between the leaders of major parties before general elections do more harm than good." + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "The QUB Open", + "Round": "Novice_Final", + "Motion": "THS the destruction of historical artifacts seen to glorify atrocities." + }, + { + "Date": "2016-10-28T00:00:00", + "Tournament": "The QUB Open", + "Round": "Open_Semis", + "Motion": "THBT the Northern Irish government should aggressively promote a distinct 'Northern Irish' Identity." + }, + { + "Date": "2016-10-22T00:00:00", + "Tournament": "Helsinki Mini", + "Round": 1, + "Motion": "TH regrets the rise of TV talent shows" + }, + { + "Date": "2016-10-22T00:00:00", + "Tournament": "Helsinki Mini", + "Round": 2, + "Motion": "THW ban zero-hour contracts" + }, + { + "Date": "2016-10-22T00:00:00", + "Tournament": "Helsinki Mini", + "Round": 3, + "Motion": "THW prohibit people with criminal records from running for political office" + }, + { + "Date": "2016-10-22T00:00:00", + "Tournament": "Helsinki Mini", + "Round": 4, + "Motion": "TH regrets the rise of pop feminism" + }, + { + "Date": "2016-10-22T00:00:00", + "Tournament": "Helsinki Mini", + "Round": "Open_Final", + "Motion": "TH believes that it would be in Russia's interest to abandon the goal of becoming a global superpower rivaling the US" + }, + { + "Date": "2016-10-22T00:00:00", + "Tournament": "SOAS IV", + "Round": 1, + "Motion": "TH would ban private healthcare" + }, + { + "Date": "2016-10-22T00:00:00", + "Tournament": "SOAS IV", + "Round": 2, + "Motion": "TH would require children, to the extent they are able, to financially support their parents in old age" + }, + { + "Date": "2016-10-22T00:00:00", + "Tournament": "SOAS IV", + "Round": 3, + "Motion": "TH regrets the remilitarisation of Japan" + }, + { + "Date": "2016-10-22T00:00:00", + "Tournament": "SOAS IV", + "Round": 4, + "Motion": "TH would ban foreign states from funding religious organisations" + }, + { + "Date": "2016-10-22T00:00:00", + "Tournament": "SOAS IV", + "Round": 5, + "Motion": "TH believes that companies have a moral obligation to significantly invest in helping the communities in which they operate, even when it has no benefit to that organisation" + }, + { + "Date": "2016-10-22T00:00:00", + "Tournament": "Trivium Tournament", + "Round": 2, + "Motion": "TH believes that feminist female students should boycott students’ corps" + }, + { + "Date": "2016-10-22T00:00:00", + "Tournament": "Trivium Tournament", + "Round": 3, + "Motion": "TH would prosecute the editor-in-chief when the magazine they are in charge of publishes falsehoods" + }, + { + "Date": "2016-10-22T00:00:00", + "Tournament": "Trivium Tournament", + "Round": 4, + "Motion": "TH would disqualify the entire amateur football club for one competition season when there are acts of violence on or around the playing field" + }, + { + "Date": "2016-10-22T00:00:00", + "Tournament": "Trivium Tournament", + "Round": 5, + "Motion": "TH would legalise a market for organs" + }, + { + "Date": "2016-10-22T00:00:00", + "Tournament": "Trivium Tournament", + "Round": "Open_Final", + "Motion": "TH would prefer a monocultural society over a multicultural society" + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "North American Universities Debating Championships 2016", + "Round": 1, + "Motion": "THP a unified state-dominated public policy research landscape to one dominated by ideologically defined think tanks" + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "North American Universities Debating Championships 2016", + "Round": 2, + "Motion": "THBT Kashmir should strive for independence rather than political unification with Pakistan" + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "North American Universities Debating Championships 2016", + "Round": 3, + "Motion": "THP a world where the notion of the afterlife is based on karmic balance and not divine mercy" + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "North American Universities Debating Championships 2016", + "Round": 4, + "Motion": "THBT when systemically important financial institutions are in need of financial assistance during recessions, the burden should fall upon creditors (eg, via diluting shareholder value by turning debt into equity) rather than the government stepping in" + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "North American Universities Debating Championships 2016", + "Round": 5, + "Motion": "THBT Islamic Authorities in South East Asia should issue a fatwa declaring Wahhabism to be un-Islamic" + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "North American Universities Debating Championships 2016", + "Round": 6, + "Motion": "THBT western social justice groups (feminist advocacy groups, LGBT advocacy groups) should have a local agenda, as opposed to a global agenda" + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "North American Universities Debating Championships 2016", + "Round": "Open_Quarters", + "Motion": "THR regrets the market’s erosion of the nation state" + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "North American Universities Debating Championships 2016", + "Round": "Open_Semis", + "Motion": "THR the rise of New Atheism." + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "North American Universities Debating Championships 2016", + "Round": "Open_Final", + "Motion": "THBT indigenous peoples would be justified in sabotaging (violently or otherwise) economic projects in the event that they are built across or on their land without their democratic consent." + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "Roosevelt Open", + "Round": 1, + "Motion": "As Adopting Parents, TH would tell its child it is adopted only after its teenage years" + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "Roosevelt Open", + "Round": 2, + "Motion": "TH would ban all non-medical research into the genetics of race (For example, the effect of race on intelligence, morality, etc.)" + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "Roosevelt Open", + "Round": 3, + "Motion": "TH would allow the police to use entrapment" + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "Roosevelt Open", + "Round": 4, + "Motion": "TH regrets the rise of the hookup culture (* The hookup culture is one which accepts and encourages casual sexual encounters focused on physical pleasure, without necessarily including emotional bonding)" + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "Roosevelt Open", + "Round": 5, + "Motion": "TH believes that developing nations should ban political parties from handing out food and basic necessities." + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "Roosevelt Open", + "Round": "Open_Semis", + "Motion": "TH regrets the Colombian government's decision to hold a referendum on the FARC peace deal." + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "Roosevelt Open", + "Round": "Open_Final", + "Motion": "THW prefer a world where people cannot lie" + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "Roosevelt Open 2016", + "Round": 1, + "Motion": "As adoptive parents, THW only tell their children they're adopted after their teenage years." + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "Roosevelt Open 2016", + "Round": 2, + "Motion": "THW ban non-medical research into genetics of race." + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "Roosevelt Open 2016", + "Round": 3, + "Motion": "THW allow the police to use entrapment." + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "Roosevelt Open 2016", + "Round": 4, + "Motion": "THR the hook-up culture." + }, + { + "Date": "2016-10-21T00:00:00", + "Tournament": "Roosevelt Open 2016", + "Round": "Open_Final", + "Motion": "THBT developing countries should ban political parties from spreading food and other necessities.", + "InfoSlide": "In countries like India and South Africa, particularly around election time, political parties are banned from spreading food and other necessities." + }, + { + "Date": "2016-10-16T00:00:00", + "Tournament": "Imperial Novices", + "Round": 1, + "Motion": "TH supports Tiger Parenting." + }, + { + "Date": "2016-10-16T00:00:00", + "Tournament": "Imperial Novices", + "Round": 2, + "Motion": "TH regrets the rise of the On-Demand Economy." + }, + { + "Date": "2016-10-16T00:00:00", + "Tournament": "Imperial Novices", + "Round": 3, + "Motion": "TH would allow teacher unions to veto education policy that is not linked to pay and benefits." + }, + { + "Date": "2016-10-16T00:00:00", + "Tournament": "Imperial Novices", + "Round": 4, + "Motion": "TH believes that the United States should militarily intervene (put boots on the ground) in Syria and Iraq." + }, + { + "Date": "2016-10-16T00:00:00", + "Tournament": "Imperial Novices", + "Round": "Open_Semis", + "Motion": "TH would not allow tech companies/social media to target advertising in order to change people's political ideology." + }, + { + "Date": "2016-10-16T00:00:00", + "Tournament": "Imperial Novices", + "Round": "Open_Final", + "Motion": "TH would let the captured wives and children of former or current Boko Haram soldiers choose to live in open society." + }, + { + "Date": "2016-10-15T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 1, + "Motion": "TH would introduce academic streaming." + }, + { + "Date": "2016-10-15T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 2, + "Motion": "TH supports voluntourism." + }, + { + "Date": "2016-10-15T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 3, + "Motion": "TH, as the state, would aggressively fund GMO research." + }, + { + "Date": "2016-10-15T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 4, + "Motion": "TH believes that Japan should acquire nuclear weapons." + }, + { + "Date": "2016-10-15T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 5, + "Motion": "TH regrets the culture of casual sex." + }, + { + "Date": "2016-10-15T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": "Open_Semis", + "Motion": "TH, as an astronaut, would take part in Mars One (one way trip to Mars)." + }, + { + "Date": "2016-10-15T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": "Open_Final", + "Motion": "TH believes that the USA should never use the language of American exceptionalism." + }, + { + "Date": "2016-10-15T00:00:00", + "Tournament": "Imperial Open", + "Round": 1, + "Motion": "TH would allow communities to pay for increased police presence in their area" + }, + { + "Date": "2016-10-15T00:00:00", + "Tournament": "Imperial Open", + "Round": 2, + "Motion": "TH would implement a negative income tax." + }, + { + "Date": "2016-10-15T00:00:00", + "Tournament": "Imperial Open", + "Round": 3, + "Motion": "TH would nationalise SpaceX’s mission to colonise Mars." + }, + { + "Date": "2016-10-15T00:00:00", + "Tournament": "Imperial Open", + "Round": 4, + "Motion": "TH supports the privatisation of Saudi Aramco." + }, + { + "Date": "2016-10-15T00:00:00", + "Tournament": "Imperial Open", + "Round": "Open_Semis", + "Motion": "TH believes that secular states should force the Catholic church to accept the ordination of female bishops." + }, + { + "Date": "2016-10-15T00:00:00", + "Tournament": "Imperial Open", + "Round": "Open_Final", + "Motion": "TH believes that the EU should end its commitment to the free movement of people as a core principle of the single market." + }, + { + "Date": "2016-10-14T00:00:00", + "Tournament": "Hart House IV 2016", + "Round": 1, + "Motion": "THW allow the prosecution of news organizations for knowingly publishing false information, even when that information is not defamatory" + }, + { + "Date": "2016-10-14T00:00:00", + "Tournament": "Hart House IV 2016", + "Round": 2, + "Motion": "Assuming they exist, THW prefer not to know the identity of one'a soulmate" + }, + { + "Date": "2016-10-14T00:00:00", + "Tournament": "Hart House IV 2016", + "Round": 3, + "Motion": "THBT the government of Colombia should ignore the result of the October 2nd referendum and implement the Peace Deal" + }, + { + "Date": "2016-10-14T00:00:00", + "Tournament": "Hart House IV 2016", + "Round": 4, + "Motion": "THW not reveal the identity of authors who choose pseudonymity" + }, + { + "Date": "2016-10-14T00:00:00", + "Tournament": "Hart House IV 2016", + "Round": 5, + "Motion": "TH prefers a world without Wikileaks" + }, + { + "Date": "2016-10-08T00:00:00", + "Tournament": "Riga Pro-Am", + "Round": 1, + "Motion": "THW abolish the International Statute of Wizarding Secrecy" + }, + { + "Date": "2016-10-08T00:00:00", + "Tournament": "Riga Pro-Am", + "Round": 2, + "Motion": "THW require all media organizations hosting major pre-election debates to provide live fact-checking of speakers' claims" + }, + { + "Date": "2016-10-08T00:00:00", + "Tournament": "Riga Pro-Am", + "Round": 3, + "Motion": "THR the negative attitude towards Golddiggers" + }, + { + "Date": "2016-10-08T00:00:00", + "Tournament": "Riga Pro-Am", + "Round": 4, + "Motion": "TH, as the Baltic states, would incentivize brain drain from Belarus to the Baltics." + }, + { + "Date": "2016-10-08T00:00:00", + "Tournament": "Riga Pro-Am", + "Round": "Open_Final", + "Motion": "THBT liberal parties in Europe should abandon their focus on being pro-immigration" + }, + { + "Date": "2016-10-08T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": 1, + "Motion": "TH supports the creation of wethouses." + }, + { + "Date": "2016-10-08T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": 2, + "Motion": "TH believes that major political decisions should be made by parliament rather than a public referendum." + }, + { + "Date": "2016-10-08T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": 3, + "Motion": "TH believes that states should make developmental aid contingent on the human rights record of the recipient country." + }, + { + "Date": "2016-10-08T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": 4, + "Motion": "TH would impose fines on public acts of climate change denial." + }, + { + "Date": "2016-10-08T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": "Non_Schools_Final", + "Motion": "TH supports the creation of grammar schools." + }, + { + "Date": "2016-10-08T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": "Open_Semis", + "Motion": "TH supports Wikileaks continuing to publish the documents it acquires, even if they reveal private information about civilians." + }, + { + "Date": "2016-10-08T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": "Open_Final", + "Motion": "TH would allow soldiers to opt-out from military missions on the basis of conscience." + }, + { + "Date": "2016-10-07T00:00:00", + "Tournament": "UCD IV", + "Round": 1, + "Motion": "Except where there is a clear threat to national security TH believes that it is illegitimate for Western states to limit immigration from the the developing world." + }, + { + "Date": "2016-10-07T00:00:00", + "Tournament": "UCD IV", + "Round": 2, + "Motion": "TH would impose a cap on the amount of money parents are allowed to spend on their children (excluding essential healthcare and disability needs)." + }, + { + "Date": "2016-10-07T00:00:00", + "Tournament": "UCD IV", + "Round": 3, + "Motion": "TH believes that Hillary Clinton should put her experience overcoming sexism to the forefront of her campaign." + }, + { + "Date": "2016-10-07T00:00:00", + "Tournament": "UCD IV", + "Round": 4, + "Motion": "TH regrets this trend." + }, + { + "Date": "2016-10-07T00:00:00", + "Tournament": "UCD IV", + "Round": 5, + "Motion": "TH believes that progressive parties should advocate and campaign for the introduction of UBI." + }, + { + "Date": "2016-10-07T00:00:00", + "Tournament": "UCD IV", + "Round": "Open_Semis", + "Motion": "TH believes that Putin has been good for Russia." + }, + { + "Date": "2016-10-07T00:00:00", + "Tournament": "UCD IV", + "Round": "Open_Final", + "Motion": "TH believes that feminists should oppose capitalism." + }, + { + "Date": "2016-10-06T00:00:00", + "Tournament": "UCD Novice", + "Round": 1, + "Motion": "TH believes that the Feminist Movement should rebrand as Egalitarianism." + }, + { + "Date": "2016-10-06T00:00:00", + "Tournament": "UCD Novice", + "Round": 2, + "Motion": "TH supports essential services workers rights to strike." + }, + { + "Date": "2016-10-06T00:00:00", + "Tournament": "UCD Novice", + "Round": 3, + "Motion": "TH would prosecute the perpetrators of Bloody Sunday." + }, + { + "Date": "2016-10-06T00:00:00", + "Tournament": "UCD Novice", + "Round": "Open_Final", + "Motion": "TH supports the end of the Hannibal Directive." + }, + { + "Date": "2016-10-01T00:00:00", + "Tournament": "ISIC", + "Round": 1, + "Motion": "TH believes that the governments of developing nations should actively encourage slum tourism" + }, + { + "Date": "2016-10-01T00:00:00", + "Tournament": "ISIC", + "Round": 2, + "Motion": "TH believes that states should stop identifying citizens by their race or religion" + }, + { + "Date": "2016-10-01T00:00:00", + "Tournament": "ISIC", + "Round": 3, + "Motion": "TH believes that ASEAN should give up all efforts toward greater political and economic integration" + }, + { + "Date": "2016-10-01T00:00:00", + "Tournament": "ISIC", + "Round": "Open_Final", + "Motion": "TH believes that it is in Indonesia’s interests to join the TPP" + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "Aztec Invitational 2016", + "Round": 1, + "Motion": "THBT the Right to Rest should be upheld in all public spaces." + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "Aztec Invitational 2016", + "Round": 2, + "Motion": "THW require multi-national corporations to adhere to labor and wage standards exceeding those set by ANY individual nation." + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "Aztec Invitational 2016", + "Round": 3, + "Motion": "THW stop playing “The Star-Spangled Banner”" + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "Aztec Invitational 2016", + "Round": 4, + "Motion": "THW make the provision or sale of junk food and soda to children under the age of consent illegal." + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "Aztec Invitational 2016", + "Round": 5, + "Motion": "THBT Canada should allow foreigners to access their right to die policy." + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "Aztec Invitational 2016", + "Round": 6, + "Motion": "THBT College and professional teams should be held accountable when their competitors or coaches commit sexual assault." + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "Aztec Invitational 2016", + "Round": "Open_Semis", + "Motion": "THBT China “should fix” North Korea." + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "Aztec Invitational 2016", + "Round": "Open_Final", + "Motion": "THR the Generation War (Millennials vs. Baby Boomers)" + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "HWS IV 2016", + "Round": 1, + "Motion": "THW allocate scholarships and financial aid exclusively on the basis of financial need" + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "HWS IV 2016", + "Round": 2, + "Motion": "THS the continued consumption of old novels and films that endorse- even tacitly- the beliefs that today would be considered bigoted" + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "HWS IV 2016", + "Round": 3, + "Motion": "THW ban funding by third parties of tortious lltigiation" + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "HWS IV 2016", + "Round": 4, + "Motion": "THW sanction the intelligence, military, and political leaders of Pakistan." + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "HWS IV 2016", + "Round": 5, + "Motion": "THBT the feminist movement should campaign for the equal sexualization of men in the media as opposed to campaigning against the sexualization of women" + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "HWS IV 2016", + "Round": 6, + "Motion": "THR the automation of jobs previously performed by humans (eg self driving cars, self checkouts)" + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "HWS IV 2016", + "Round": "Novice_Final", + "Motion": "THW factor public horror into the punishment of a crime" + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "HWS IV 2016", + "Round": "Open_Quarters", + "Motion": "THBT the European Union should impose punitive measures on the UK in the Brexit negotiations." + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "HWS IV 2016", + "Round": "Open_Semis", + "Motion": "THR the inculcation of national identity through shared rituals (eg national ceremonies, anthems, pledges of allegiance, etc)" + }, + { + "Date": "2016-09-30T00:00:00", + "Tournament": "HWS IV 2016", + "Round": "Open_Final", + "Motion": "THR the new politics of the campus left" + }, + { + "Date": "2016-09-17T00:00:00", + "Tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "Round": 1, + "Motion": "THW require all public and private schools to teach Darwin’s theory of evolution as a scientific consensus. [Round 1]" + }, + { + "Date": "2016-09-17T00:00:00", + "Tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "Round": 2, + "Motion": "THW cede control of all national parks to indigenous tribes. [Round 2]" + }, + { + "Date": "2016-09-17T00:00:00", + "Tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "Round": 3, + "Motion": "THW impose prohibition on alcohol consumption for all college students. [Round 3]" + }, + { + "Date": "2016-09-17T00:00:00", + "Tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "Round": 4, + "Motion": "Sit back in your seats for a second, close your eyes. Imagine, if you will, that we have developed a virus with the capacity to infect 100% of society, rendering a random 30% of people infertile. This virus passes on inter-generationally, continuing this cycle of randomized 30% infertility for the foreseeable future. For the sake of simplicity, let’s name it the inferno virus. Assuming we have reached a point where the human population on Earth is unsustainable, this house would release the virus. [Round 4]" + }, + { + "Date": "2016-09-17T00:00:00", + "Tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "Round": 5, + "Motion": "THW require all Olympic sponsors to donate equal amounts of money to the Paralympics. [Round 5]" + }, + { + "Date": "2016-09-17T00:00:00", + "Tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "Round": 6, + "Motion": "THS a military coalition between the US and the Syrian government in the fight against ISIS. [Round 6]" + }, + { + "Date": "2016-09-17T00:00:00", + "Tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "Round": "Open_Quarters", + "Motion": "THBT niantic should provide user location from Pokemon Go to the police [Quarters]" + }, + { + "Date": "2016-09-17T00:00:00", + "Tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "Round": "Open_Semis", + "Motion": "THB the place for athletes’ protests is off the field not on it [Semi’s/Novice Finals]" + }, + { + "Date": "2016-09-17T00:00:00", + "Tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "Round": "Open_Final", + "Motion": "THBT the UK should not leave the EU regardless of the referendum [Finals]" + }, + { + "Date": "2016-09-07T00:00:00", + "Tournament": "Red Sea Open", + "Round": 1, + "Motion": "TH, as Catholics, would oppose the canonisation of Mother Theresa." + }, + { + "Date": "2016-09-07T00:00:00", + "Tournament": "Red Sea Open", + "Round": 2, + "Motion": "TH believes that the US Government should provide significant campaign funding for congressmen and senators who score highly on bi-partisan metrics*. *Scores derived from instances of voting with the other party, co-sponsoring bills, etc., calculated by independent bodies." + }, + { + "Date": "2016-09-07T00:00:00", + "Tournament": "Red Sea Open", + "Round": 3, + "Motion": "TH believes that the life in the cartel is a better life for Tony Montana than a life of following the law." + }, + { + "Date": "2016-09-07T00:00:00", + "Tournament": "Red Sea Open", + "Round": 4, + "Motion": "TH believes that the state’s general economic approach should be to promote policies which seek to maximise net economic gain*, even when it comes at the expense of structural unemployment. * For example free trade agreements and the automation of labour." + }, + { + "Date": "2016-09-07T00:00:00", + "Tournament": "Red Sea Open", + "Round": 5, + "Motion": "TH believes that Japan should depict the act of Inseki-Jisatsu as cowardly." + }, + { + "Date": "2016-09-07T00:00:00", + "Tournament": "Red Sea Open", + "Round": 6, + "Motion": "TH believes that liberal states should provide legal and financial aid to citizens who wish to permanently emigrate from them." + }, + { + "Date": "2016-09-07T00:00:00", + "Tournament": "Red Sea Open", + "Round": "Open_Semis", + "Motion": "TH believes that it is within the interest of Tibetans to assimilate with China." + }, + { + "Date": "2016-09-07T00:00:00", + "Tournament": "Red Sea Open", + "Round": "Open_Final", + "Motion": "TH would allow the “Cultural Defence” in all criminal proceedings." + }, + { + "Date": "2016-09-03T00:00:00", + "Tournament": "Istanbul Meridyen Debating Academy", + "Round": 1, + "Motion": "THBT governments should strictly regulate construction and renovation in order to preserve historical architecture (buildings, parks, public spaces etc)." + }, + { + "Date": "2016-09-03T00:00:00", + "Tournament": "Istanbul Meridyen Debating Academy", + "Round": 2, + "Motion": "THW ban self-learning sex robots that aim to be highly gratifying and realistic" + }, + { + "Date": "2016-09-03T00:00:00", + "Tournament": "Istanbul Meridyen Debating Academy", + "Round": 3, + "Motion": "THW permanently remove from service Imams who are stationed in places where an honour killing has occured" + }, + { + "Date": "2016-09-03T00:00:00", + "Tournament": "Istanbul Meridyen Debating Academy", + "Round": 4, + "Motion": "THW not use scientific data acquired through non-ethical experiments" + }, + { + "Date": "2016-09-03T00:00:00", + "Tournament": "Istanbul Meridyen Debating Academy", + "Round": "Open_Final", + "Motion": "THW rebuild the Husartsan memorial" + }, + { + "Date": "2016-08-14T00:00:00", + "Tournament": "Warsaw EUDC 2016", + "Round": 1, + "Motion": "TH regrets the rise of social media as a primary source of news distribution" + }, + { + "Date": "2016-08-14T00:00:00", + "Tournament": "Warsaw EUDC 2016", + "Round": 2, + "Motion": "TH supports Barack Obama's statements that emphasise African- Americans taking individual responsibility for improving their own position in life" + }, + { + "Date": "2016-08-14T00:00:00", + "Tournament": "Warsaw EUDC 2016", + "Round": 3, + "Motion": "THW create state-run centres where individuals can purchase and consume psychedelic* drugs *drugs whose primary effect is to alter cognition and perception e.g. LSD and Magic Mushrooms" + }, + { + "Date": "2016-08-14T00:00:00", + "Tournament": "Warsaw EUDC 2016", + "Round": 4, + "Motion": "TH supports strong government intervention to prevent gentrification* *process when significant numbers of wealthier people move to a poor area" + }, + { + "Date": "2016-08-14T00:00:00", + "Tournament": "Warsaw EUDC 2016", + "Round": 5, + "Motion": "THBT the Israel Philharmonic Orchestra should regularly play the works of Richard Wagner" + }, + { + "Date": "2016-08-14T00:00:00", + "Tournament": "Warsaw EUDC 2016", + "Round": 6, + "Motion": "TH regrets the mass commercialisation of football" + }, + { + "Date": "2016-08-14T00:00:00", + "Tournament": "Warsaw EUDC 2016", + "Round": 7, + "Motion": "TH supports Sanctuary Cities in the United States" + }, + { + "Date": "2016-08-14T00:00:00", + "Tournament": "Warsaw EUDC 2016", + "Round": 8, + "Motion": "THBT Latin American states should provide extensive material support for a military coup against the Venezualan government" + }, + { + "Date": "2016-08-14T00:00:00", + "Tournament": "Warsaw EUDC 2016", + "Round": 9, + "Motion": "THBT the European Union should fund satirical* publications in its member states that target far-right political parties * the use of humour and exaggeration to criticize" + }, + { + "Date": "2016-08-14T00:00:00", + "Tournament": "Warsaw EUDC 2016", + "Round": "ESL_Quarters", + "Motion": "THBT Western States should fund the spread of atheism in Iraq through provision of education, health care and welfare" + }, + { + "Date": "2016-08-14T00:00:00", + "Tournament": "Warsaw EUDC 2016", + "Round": "ESL_Semis", + "Motion": "TH regrets the safe space movement’s attempts to significantly limit speech on university campuses" + }, + { + "Date": "2016-08-14T00:00:00", + "Tournament": "Warsaw EUDC 2016", + "Round": "ESL_Final", + "Motion": "THBT western nations should support breakaway states in former Soviet Union (e.g. East Ukraine or South Ossetia) after free and fair referendum." + }, + { + "Date": "2016-08-14T00:00:00", + "Tournament": "Warsaw EUDC 2016", + "Round": "Open_Partial_Octos", + "Motion": "TH supports BRICS* countries creating alternatives to the current international economic institutions (i.e. the IMF, the World Bank, and the World Trade Organisation) * Brazil, Russia, India, China, South Africa" + }, + { + "Date": "2016-08-14T00:00:00", + "Tournament": "Warsaw EUDC 2016", + "Round": "Open_Quarters", + "Motion": "THW require the economic policies of political parties to be approved by an independent panel of experts before being used in campaigns" + }, + { + "Date": "2016-08-14T00:00:00", + "Tournament": "Warsaw EUDC 2016", + "Round": "Open_Semis", + "Motion": "TH supports Iran’s extension of the Sharia principle of “an eye for an eye” to the victims of acid attacks" + }, + { + "Date": "2016-08-14T00:00:00", + "Tournament": "Warsaw EUDC 2016", + "Round": "Open_Final", + "Motion": "THW nationalize and provide public access to the Metadata being gathered by online multinational companies." + }, + { + "Date": "2016-07-10T00:00:00", + "Tournament": "SSE Riga Debate Academy", + "Round": 1, + "Motion": "THW remove all sin taxes" + }, + { + "Date": "2016-07-10T00:00:00", + "Tournament": "SSE Riga Debate Academy", + "Round": 2, + "Motion": "THW ban the use of armed unmanned aerial vehicles (armed drones) during warfare" + }, + { + "Date": "2016-07-10T00:00:00", + "Tournament": "SSE Riga Debate Academy", + "Round": 3, + "Motion": "THW give parents full access to their children's social media accounts" + }, + { + "Date": "2016-07-10T00:00:00", + "Tournament": "SSE Riga Debate Academy", + "Round": 4, + "Motion": "THS vigilantism in areas of severe socio-economic deprivation" + }, + { + "Date": "2016-07-10T00:00:00", + "Tournament": "SSE Riga Debate Academy", + "Round": "Open_Final", + "Motion": "THW create a standing army for the European Union" + }, + { + "Date": "2016-06-18T00:00:00", + "Tournament": "Newcastle Mixed Doubles 2016", + "Round": 1, + "Motion": "TH, as a feminist, believes that Kim Kardashian is a force for good." + }, + { + "Date": "2016-06-18T00:00:00", + "Tournament": "Newcastle Mixed Doubles 2016", + "Round": 2, + "Motion": "THW not give development aid to authoritarian countries." + }, + { + "Date": "2016-06-18T00:00:00", + "Tournament": "Newcastle Mixed Doubles 2016", + "Round": 3, + "Motion": "TH, as the UK government, would remove charitable status from religious institutions that teach socially regressive ideas (e.g. that women belong in the home, etc.)" + }, + { + "Date": "2016-06-18T00:00:00", + "Tournament": "Newcastle Mixed Doubles 2016", + "Round": 4, + "Motion": "THW remove the executive's ability to grant pardons (i.e. to cancel the legal consequences of a conviction)." + }, + { + "Date": "2016-06-18T00:00:00", + "Tournament": "Newcastle Mixed Doubles 2016", + "Round": "ProAm_Final", + "Motion": "THR The rise of \"clean living\" gurus" + }, + { + "Date": "2016-06-18T00:00:00", + "Tournament": "Newcastle Mixed Doubles 2016", + "Round": "Open_Final", + "Motion": "THW Partition Syria into 3 countries; Kurds, Sunnis and Alawites" + }, + { + "Date": "2016-06-04T00:00:00", + "Tournament": "Bristol Open 2016", + "Round": 1, + "Motion": "THW financially incentivise businesses to diversify their boards" + }, + { + "Date": "2016-06-04T00:00:00", + "Tournament": "Bristol Open 2016", + "Round": 2, + "Motion": "THS the objectification of men by women in popular media" + }, + { + "Date": "2016-06-04T00:00:00", + "Tournament": "Bristol Open 2016", + "Round": 3, + "Motion": "THBT individuals should have the right to remove photos of themselves published without their permission, and sue for damages" + }, + { + "Date": "2016-06-04T00:00:00", + "Tournament": "Bristol Open 2016", + "Round": 4, + "Motion": "THW ban footballers who commit racist actions for life" + }, + { + "Date": "2016-05-28T00:00:00", + "Tournament": "Dutch Mace 2016 (The Netherlands)", + "Round": 1, + "Motion": "TH supports ‘direct action’" + }, + { + "Date": "2016-05-28T00:00:00", + "Tournament": "Dutch Mace 2016 (The Netherlands)", + "Round": 2, + "Motion": "TH supports a system of blind voting" + }, + { + "Date": "2016-05-28T00:00:00", + "Tournament": "Dutch Mace 2016 (The Netherlands)", + "Round": 3, + "Motion": "THW support indigenous people to be trialed, convicted and punished in accordance with the customs of their community as opposed to through the system of the national court." + }, + { + "Date": "2016-05-28T00:00:00", + "Tournament": "Dutch Mace 2016 (The Netherlands)", + "Round": "Open_Final", + "Motion": "THBT Jitse Akse should not be punished for his fight in Syria" + }, + { + "Date": "2016-05-13T00:00:00", + "Tournament": "Helsinki Open 2016", + "Round": 1, + "Motion": "THW allow the police and intelligence agencies unrestricted access to the internet history and online communications of all citizens." + }, + { + "Date": "2016-05-13T00:00:00", + "Tournament": "Helsinki Open 2016", + "Round": 2, + "Motion": "THB that artists from dominant cultural groups should not seek to portray minority cultures." + }, + { + "Date": "2016-05-13T00:00:00", + "Tournament": "Helsinki Open 2016", + "Round": 3, + "Motion": "THW remove exemptions from anti-discrimination law for religious organisations." + }, + { + "Date": "2016-05-13T00:00:00", + "Tournament": "Helsinki Open 2016", + "Round": 4, + "Motion": "THW require all teams participating in international football competitions to have an equal representation of both sexes." + }, + { + "Date": "2016-05-13T00:00:00", + "Tournament": "Helsinki Open 2016", + "Round": 5, + "Motion": "TH supports minority ethnic parties." + }, + { + "Date": "2016-05-13T00:00:00", + "Tournament": "Helsinki Open 2016", + "Round": "Novice_Final", + "Motion": "TH, as a wealthy individual, would use that wealth to become a vigilante (e.g. Batman) in areas of high crime and a corrupt police force (e.g. Mexico City)." + }, + { + "Date": "2016-05-07T00:00:00", + "Tournament": "The Baillie Gifford Oxford Women's Open 2016", + "Round": 1, + "Motion": "THR the presence of heterosexual cisgender politicians at Pride parades" + }, + { + "Date": "2016-05-07T00:00:00", + "Tournament": "The Baillie Gifford Oxford Women's Open 2016", + "Round": 2, + "Motion": "THW allow companies to include a clause in their employment contracts for women where that woman legally agrees not to get pregnant" + }, + { + "Date": "2016-05-07T00:00:00", + "Tournament": "The Baillie Gifford Oxford Women's Open 2016", + "Round": 3, + "Motion": "THW remove the UK's exemption from the refugee quota penalty" + }, + { + "Date": "2016-05-07T00:00:00", + "Tournament": "The Baillie Gifford Oxford Women's Open 2016", + "Round": 4, + "Motion": "TH as a school teacher would not refer children to child protection services in the case of concerns about their radicalisation" + }, + { + "Date": "2016-05-07T00:00:00", + "Tournament": "The Baillie Gifford Oxford Women's Open 2016", + "Round": 5, + "Motion": "THW allow individuals to nominate a charity of their choosing to receive all inheritance tax that would be otherwise paid to the state upon their death" + }, + { + "Date": "2016-05-07T00:00:00", + "Tournament": "The Baillie Gifford Oxford Women's Open 2016", + "Round": "Open_Final", + "Motion": "THBT white authors should not publish their reviews on Beyonce's album" + }, + { + "Date": "2016-04-23T00:00:00", + "Tournament": "Maastricht Open 2016", + "Round": 1, + "Motion": "THBT the Mexican govenment should retroactively legalise the production and distribution of drugs" + }, + { + "Date": "2016-04-23T00:00:00", + "Tournament": "Maastricht Open 2016", + "Round": 2, + "Motion": "TH prefers governments to make cash transfers to individuals in recipient countries over government-to-government development aid" + }, + { + "Date": "2016-04-23T00:00:00", + "Tournament": "Maastricht Open 2016", + "Round": 3, + "Motion": "TH supports the recasting of male action heroes and superheroes as female" + }, + { + "Date": "2016-04-23T00:00:00", + "Tournament": "Maastricht Open 2016", + "Round": 4, + "Motion": "THW terminate the special relationship between the US and Saudi Arabia" + }, + { + "Date": "2016-04-23T00:00:00", + "Tournament": "Maastricht Open 2016", + "Round": 5, + "Motion": "THR the rise of anti-establishment candidates within mainstream parties (e.g. Donald Trump, Bernie Sanders, Jeremy Corbyn)" + }, + { + "Date": "2016-04-23T00:00:00", + "Tournament": "Maastricht Open 2016", + "Round": "Novice_Final", + "Motion": "TH regrets the idolization of soldiers and veterans" + }, + { + "Date": "2016-04-23T00:00:00", + "Tournament": "Maastricht Open 2016", + "Round": "Open_Semis", + "Motion": "THBT the UN should hire private military corporations to carry out its peacekeeping operations" + }, + { + "Date": "2016-04-23T00:00:00", + "Tournament": "Maastricht Open 2016", + "Round": "Open_Final", + "Motion": "THW require all 18-year-olds (in Western Liberal Democracies) to go on a Rumspringa" + }, + { + "Date": "2016-04-16T00:00:00", + "Tournament": "Cardiff Open 2016", + "Round": 1, + "Motion": "THW require all news media organisations to select and publicly state a political affiliation" + }, + { + "Date": "2016-04-16T00:00:00", + "Tournament": "Cardiff Open 2016", + "Round": 2, + "Motion": "THBT Western Liberal Democracies should drastically reallocate funds from development aid budgets to research into Neglected Tropical Diseases" + }, + { + "Date": "2016-04-16T00:00:00", + "Tournament": "Cardiff Open 2016", + "Round": 3, + "Motion": "THBT the International Monetary Fund should require states in need of Bailouts to provide collateral (e.g. Mining rights, land, shares in privatised assets)" + }, + { + "Date": "2016-04-16T00:00:00", + "Tournament": "Cardiff Open 2016", + "Round": 4, + "Motion": "THBT Norway should back off from oil drilling in the Arctic" + }, + { + "Date": "2016-04-16T00:00:00", + "Tournament": "Cardiff Open 2016", + "Round": "Novice_Final", + "Motion": "THW prohibit all research aiming to create sentient artificial intelligences" + }, + { + "Date": "2016-04-16T00:00:00", + "Tournament": "Cardiff Open 2016", + "Round": "Open_Final", + "Motion": "THW prefer Afterlife A over Afterlife B" + }, + { + "Date": "2016-04-10T00:00:00", + "Tournament": "GUU Womens 2016", + "Round": 1, + "Motion": "THBT governments should not fund reconstruction in areas prone to natural disasters." + }, + { + "Date": "2016-04-10T00:00:00", + "Tournament": "GUU Womens 2016", + "Round": 2, + "Motion": "THW reinstate bussing in the US." + }, + { + "Date": "2016-04-10T00:00:00", + "Tournament": "GUU Womens 2016", + "Round": 3, + "Motion": "THW pay stay at home parents." + }, + { + "Date": "2016-04-10T00:00:00", + "Tournament": "GUU Womens 2016", + "Round": 4, + "Motion": "THBT both elected and unelected party leaders should not play a role in the nomination process (through super delegates or brokered conventions)" + }, + { + "Date": "2016-04-08T00:00:00", + "Tournament": "GUU Ancients 2016", + "Round": 1, + "Motion": "THBT all European Football Associations should aggressively redistribute income from successful to less successful clubs within their own country." + }, + { + "Date": "2016-04-08T00:00:00", + "Tournament": "GUU Ancients 2016", + "Round": 2, + "Motion": "THW abolish the distinction between an attempted and a completed crime." + }, + { + "Date": "2016-04-08T00:00:00", + "Tournament": "GUU Ancients 2016", + "Round": 3, + "Motion": "THW introduce a binding direct democracy app." + }, + { + "Date": "2016-04-08T00:00:00", + "Tournament": "GUU Ancients 2016", + "Round": 4, + "Motion": "THW break up banks deemed \"too big to fail\"." + }, + { + "Date": "2016-04-08T00:00:00", + "Tournament": "GUU Ancients 2016", + "Round": 5, + "Motion": "TH, as the SNP, would never vote on UK legislation which does not extend territorially to Scotland." + }, + { + "Date": "2016-04-08T00:00:00", + "Tournament": "GUU Ancients 2016", + "Round": "Open_Semis", + "Motion": "THBT people of colour activist groups, such as the NAACP, should pursue a race-blind society." + }, + { + "Date": "2016-04-08T00:00:00", + "Tournament": "GUU Ancients 2016", + "Round": "Open_Final", + "Motion": "THBT civilians are a legitimate target in conflict." + }, + { + "Date": "2016-04-08T00:00:00", + "Tournament": "HWS Round Robin 2016", + "Round": 1, + "Motion": "THW require the use of a draft by lottery when engaged in extended military intervention." + }, + { + "Date": "2016-04-08T00:00:00", + "Tournament": "HWS Round Robin 2016", + "Round": 2, + "Motion": "THS filial responsibility laws." + }, + { + "Date": "2016-04-08T00:00:00", + "Tournament": "HWS Round Robin 2016", + "Round": 3, + "Motion": "THBT criminal defendants who hire private counsel should not be afforded the right against self-incrimination at trial." + }, + { + "Date": "2016-04-08T00:00:00", + "Tournament": "HWS Round Robin 2016", + "Round": 4, + "Motion": "THP a world with memory writing technology" + }, + { + "Date": "2016-04-08T00:00:00", + "Tournament": "HWS Round Robin 2016", + "Round": 5, + "Motion": "THBT Israel should set aside a certain percentage of seats in the Knesset to be elected by diaspora Jews." + }, + { + "Date": "2016-04-08T00:00:00", + "Tournament": "HWS Round Robin 2016", + "Round": "Open_Final", + "Motion": "THS health insurance companies offering terminally ill patients the option of a lump sum payment to forgo expensive life-extending treatments." + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 1, + "Motion": "This house believes that European media outlets should refrain from reporting on crimes committed by refugees - Round 1" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 1, + "Motion": "This house would compel media to declare a political bias - Round 1" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 2, + "Motion": "THS former colonial states involvement in propping up autocratic, but stable, regimes in Africa - Round 2" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 2, + "Motion": "Sam Childers, the “Machine Gun Preacher” is an American citizen who travelled to Sudan in order to take up arms against the Lords Resistance Army (a terrorist organsation). Childers has set up a local resistance network that does not co-ordinate with the Sudanese state and employs violent methods to resist the LRA. THS Sam Childers - Round 2" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 3, + "Motion": "THS protesters who protest at political gatherings with the aim of causing them to be cancelled - Round 3" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 3, + "Motion": "This house would set term limits for MPs in Parliament. - Round 3" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 4, + "Motion": "You are a research scientist working for a large pharmaceutical corporation. You accidentally discover a drug which indefinitely delays the aging process for as long as it is taken (and produces gold). No-one else is aware of what you have done. THW destroy all evidence of your discovery - Round 4" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 4, + "Motion": "TH, as an embattled ruler (in Westeros), would arm religious fanatics in order to bolster your rule - Round 4" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 4, + "Motion": "TH, as an embattled ruler (in Westeros), would arm religious fanatics in order to bolster your rule - Round 4" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 5, + "Motion": "In 49BC, the general Julius Caesar attempted to return from a successful campaign in Gaul to Rome. The Roman Senate, fearing Caesar’s popularity with his army and the people, issued an ultimatum that Caesar was to not cross the border marked by the River Rubicon, else he would be named a traitor and spark a civil war. TH, as Caesar, would cross the Rubicon - Round 5" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 5, + "Motion": "Following the total defeat of the French army in 1940, the British Government received an offer of peace from Nazi Germany. Any terms would have left Hitler in control of continental Europe, but would have prevented (at least in the short-term) an attack on Britain. The Cabinet of new Prime Minister Winston Churchill was divided over whether to enter into negotiations. TH, as Winston Churchill, would argue against peace - Round 5" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 5, + "Motion": "In 49BC, the general Julius Caesar attempted to return from a successful campaign in Gaul to Rome. The Roman Senate, fearing Caesar’s popularity with his army and the people, issued an ultimatum that Caesar was to not cross the border marked by the River Rubicon, else he would be named a traitor and spark a civil war. TH, as Caesar, would cross the Rubicon - Round 5" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 5, + "Motion": "Following the total defeat of the French army in 1940, the British Government received an offer of peace from Nazi Germany. Any terms would have left Hitler in control of continental Europe, but would have prevented (at least in the short-term) an attack on Britain. The Cabinet of new Prime Minister Winston Churchill was divided over whether to enter into negotiations. TH, as Winston Churchill, would argue against peace - Round 5" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 6, + "Motion": "THB that South Korea should develop nuclear weapons - Round 6" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 6, + "Motion": "The South China Sea is the cause of several territorial and resource-based disputes between several surrounding nations. China has been a particularly aggressive claimant of rights to resources and territory within the area. The United States publicly disagrees with China’s claims and has deployed military vessels into the area to “by monitor the situation”. THB the United States should end all involvement in the dispute - Round 6" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 6, + "Motion": "THB that South Korea should develop nuclear weapons - Round 6" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 6, + "Motion": "The South China Sea is the cause of several territorial and resource-based disputes between several surrounding nations. China has been a particularly aggressive claimant of rights to resources and territory within the area. The United States publicly disagrees with China’s claims and has deployed military vessels into the area to “by monitor the situation”. THB the United States should end all involvement in the dispute - Round 6" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 7, + "Motion": "THW give conscientious objectors equal status to veterans in government memorialisation of war - Round 7" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 7, + "Motion": "THS white progressives criticising illiberal practices in non-Western and/or minority cultures - Round 7" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 7, + "Motion": "THW give conscientious objectors equal status to veterans in government memorialisation of war - Round 7" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 7, + "Motion": "THS white progressives criticising illiberal practices in non-Western and/or minority cultures - Round 7" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 8, + "Motion": "This house, as the GOP establishment, would prevent Donald Trump from receiving the nomination in a contested convention even if he receives the largest share of delegates - Round 8" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 8, + "Motion": "This house, as the GOP senate leadership, would support Merrick Garland’s nomination for the Supreme Court - Round 8" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 8, + "Motion": "This house, as the GOP establishment, would prevent Donald Trump from receiving the nomination in a contested convention even if he receives the largest share of delegates - Round 8" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": 8, + "Motion": "This house, as the GOP senate leadership, would support Merrick Garland’s nomination for the Supreme Court - Round 8" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": "Open_Semis", + "Motion": "THB progressives should refrain from criticising Caitlyn Jenner’s endorsement of Ted Cruz - Semi Final 1" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": "Open_Semis", + "Motion": "THR the reliance on land settlements as reparation for colonial injustices - Semi Final 2" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": "Open_Semis", + "Motion": "THR that cultural identities and practices are primarily bound to racial heritage- Semi Final 2" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": "Open_Semis", + "Motion": "THB progressives should refrain from criticising Caitlyn Jenner’s endorsement of Ted Cruz - Semi Final 1" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": "Open_Semis", + "Motion": "THR the reliance on land settlements as reparation for colonial injustices - Semi Final 2" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": "Open_Semis", + "Motion": "THR that cultural identities and practices are primarily bound to racial heritage- Semi Final 2" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": "Open_Final", + "Motion": "Cecil Rhodes was the creator of the Rhodes scholarship for Oxford. He was also a British imperialist known for beginning enforced racial segregation in South Africa and for his belief in the superiority of the Anglo-Saxon race. He is commemorated in a number of ways at Oxford University, including through a prominent statute. A student movement called “Rhodes must fall” is campaigning for the university to remove all references to him from the campus. THBT Rhodes must fall - Grand Final" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": "Open_Final", + "Motion": "TH, as a police officer in the United States who witnesses a minor non-violent crime being committed by an African American individual, would refrain from arresting that individual - Grand Final" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": "Open_Final", + "Motion": "Cecil Rhodes was the creator of the Rhodes scholarship for Oxford. He was also a British imperialist known for beginning enforced racial segregation in South Africa and for his belief in the superiority of the Anglo-Saxon race. He is commemorated in a number of ways at Oxford University, including through a prominent statute. A student movement called “Rhodes must fall” is campaigning for the university to remove all references to him from the campus. THBT Rhodes must fall - Grand Final" + }, + { + "Date": "2016-03-26T00:00:00", + "Tournament": "NZ Easters 2016", + "Round": "Open_Final", + "Motion": "TH, as a police officer in the United States who witnesses a minor non-violent crime being committed by an African American individual, would refrain from arresting that individual - Grand Final" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": 1.1, + "Motion": "That we should tax and redistribute wealth contained in university endowment funds" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": 1.2, + "Motion": "That universities should make use of quotas for ideological groups (e.g. conservatives) for teaching and research staff" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": 1.3, + "Motion": "That the state should employ more non university graduates and use tax penalties to encourage other employers to do the same" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": 2.1, + "Motion": "That the EU should require member states to set common rules and rates for corporate taxation" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": 2.2, + "Motion": "That investors should divest from fossil fuel companies" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": 2.3, + "Motion": "That the US should have aggressively pushed for the inclusion of China in the TPP" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": 3.1, + "Motion": "That as the Catholic church we should deny communion to politicians who vote contrary to its teachings" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": 3.2, + "Motion": "That we should have a truth and reconciliation commission for Catholic church abuse" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": 3.3, + "Motion": "That the West should seek to fund moderate Islamic religious groups in the Middle East" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": 4.1, + "Motion": "That Pacific Rim countries should make Australian participation in future trade agreements contingent on the abandonment of their asylum seeker detention policy" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": 4.2, + "Motion": "That Australia should automatically trigger an election when the governing party replaces the prime minister" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": 4.3, + "Motion": "That despite the opposition of the Myanmar government the international community should set up a safe haven for the Rohingyas in Myanmar" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": 5.1, + "Motion": "That we should apply the same criminal sanctions to late term abortions and infanticide" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": 5.2, + "Motion": "That we should replace the institution of the family with well run state child raising facilities" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": 5.3, + "Motion": "That we should allow individuals to enter contracts specifying conditions on their relationship e.g. salary level, weight limits, frequency of sex" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": "Open_Semis_1", + "Motion": "That we regret the possibility of jury nullification" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": "Open_Semis_2", + "Motion": "That we should implement Good Samaritan laws (legally obliging bystanders to assist those in danger, unless doing so would place them at serious risk)" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": "Open_Semis_3", + "Motion": "That illegally gathered evidence should be admissible in court" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": "Open_Finals_1", + "Motion": "That state level affiliates of the Democratic Party in conservative states should disaffiliate and establish a new party" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": "Open_Finals_2", + "Motion": "That US presidential primaries in all states should be run on the same date" + }, + { + "Date": "2016-03-19T00:00:00", + "Tournament": "Durham Australs", + "Round": "Open_Finals_3", + "Motion": "That the West should select and train local activists to oppose 'third termist' leaders (those trying to subvert or remove term limits) in Sub-Saharan Africa" + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Canadian BP Nationals 2016", + "Round": 1, + "Motion": "This House would provide free, safe drugs to individuals with addictions." + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Canadian BP Nationals 2016", + "Round": 2, + "Motion": "This House prefers collective parenting." + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Canadian BP Nationals 2016", + "Round": 3, + "Motion": "This House believes that major social media platforms (e.g. Facebook, Twitter) should censor bigotry" + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Canadian BP Nationals 2016", + "Round": 4, + "Motion": "This House, as the United States, would engage in cyber-attacks against Russia." + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Canadian BP Nationals 2016", + "Round": 5, + "Motion": "This House would grant legal personhood to land." + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Canadian BP Nationals 2016", + "Round": "Open_Semis", + "Motion": "This House believes that it is unethical to bring a new child into this world." + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Canadian BP Nationals 2016", + "Round": "Open_Final", + "Motion": "This House would program the robots to hide the existence of past human life on Earth" + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2016", + "Round": 1, + "Motion": "THW make the number of votes an individual has inversely proportional to their wealth (i.e. the more wealth an individual has the fewer votes in an election)." + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2016", + "Round": 2, + "Motion": "TalkToys are dolls with Artificial Intelligence (AI) and speech recognition software that enable them to engage in an actual conversation with children (they have a lexicon of thousands of prescript responses). TalkToys are meant to serve as a companion to the child, and they are in the late stages of development. Prominent examples of toys that will be able to talk include Barbie, G.I Joe and Star Wars and Action Figures. THW Ban TalkToys." + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2016", + "Round": 3, + "Motion": "The NRA, National Rifle Association of America, is a lobbying group in Washington. Its notable actions include influencing legislation aimed to deregulate gun ownership laws, initiating lawsuits against municipalities that have banned or have placed strict regulations on firearm laws, and endorsing candidates mainly of the Republican Party. THBT the US should require the NRA to pay reparations to victims of gun violence." + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2016", + "Round": 4, + "Motion": "THW suspend trade unions and labour protection laws in times of economic crisis." + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2016", + "Round": 5, + "Motion": "Conscription is mandatory in Egypt for males of ages between 18 to 30. The service obligation is between 12 to 36 months and is followed by a 9-year reserve duty. THBT Egypt Should Conscript Women to Female-Only Units." + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2016", + "Round": 6, + "Motion": "THBT Sex Education Classes in Schools Should Teach Techniques For Pure Sexual Gratification (including, but not limited to, anal sex, oral sex, mutual gratification and masturbation)." + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2016", + "Round": 7, + "Motion": "THW release inmates from jail solely on the basis of their rehabilitation and not upon the completion of a predetermined period of time." + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2016", + "Round": "ProAm_Final", + "Motion": "During the first centuries AD there was no religious law demanding clerical celibacy in the Catholic sect of Christianity, and there is no direct mentioning of such a requirement in the New Testament. Celibacy is being thought to have been universally adopted by Catholiscm after a decision made by a council in 12th century. TH, as Pope Francis, would remove the requirement of catholic priests to take a vow of celibacy." + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2016", + "Round": "Open_Semis", + "Motion": "THBT jobs that are deemed to be of moral value or societal importance should have their wages set by the state." + }, + { + "Date": "2016-03-18T00:00:00", + "Tournament": "Erasmus Rotterdam Open 2016", + "Round": "Open_Final", + "Motion": "THBT using Human Shield tactics, by the weaker side, can be justified in a-symmetrical wars." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "Liverpool IV 2016", + "Round": 1, + "Motion": "THBT schools should aggressively stream students, according to their ability, from a young age." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "Liverpool IV 2016", + "Round": 2, + "Motion": "TH prefers a criminal justice system that pursues criminal and civil charges against individuals within companies, rather than fines against the entire company." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "Liverpool IV 2016", + "Round": 3, + "Motion": "THBT Western States should support and engineer coups in militarily weak states they identify as having authoritarian leaders." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "Liverpool IV 2016", + "Round": 4, + "Motion": "THW compel news media to give coverage to all demonstrations proportionate to the size of that demonstration." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "Liverpool IV 2016", + "Round": "ProAm_Final", + "Motion": "THW remove all legal restrictions on categories of weapons which can be used in war." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "Liverpool IV 2016", + "Round": "Open_Final", + "Motion": "THBT the Gotham City Police Force should seek to offer Wayne employment as an officer within their force." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV", + "Round": 1, + "Motion": "This House believes that Western States should irrevocably remove citizenship of citizens who join the so-called Islamic State" + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV", + "Round": 2, + "Motion": "This House would weight shareholder votes in line with the length of time their shares have been held." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV", + "Round": 3, + "Motion": "This House believes that voters should always vote on policy and principles regardless of electability in all elections (general, local, or party leadership)." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV", + "Round": 4, + "Motion": "This House believes that film studios should seek to select racially diverse casts when converting books into films even if it differs from the author's original character description." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV", + "Round": 5, + "Motion": "This House believes that welfare and pensions policy should be determined by a panel of experts selected by their peers, not accountable to government." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV", + "Round": "ESL_Final", + "Motion": "This House, as a feminist, would adopt traditionally masculine traits and behaviours" + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV", + "Round": "Open_Quarters", + "Motion": "This House believes that the US-led coalition should no longer insist on Assad stepping down as part of their negotiations with Russia over Syria." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV", + "Round": "Open_Semis", + "Motion": "This House would prefer a world without sexual attraction" + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV", + "Round": "Open_Finals", + "Motion": "In a minimal state, a government's role is exclusively to protect property rights and people's physical security. Beyond this, such a state would not intervene in people's lives, or provide any public services. THBT a minimal state is justified." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV 2016", + "Round": 1, + "Motion": "THBT Western States should irrevocably remove citizenship of citizens who join the so-called Islamic State." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV 2016", + "Round": 2, + "Motion": "Shareholders have the right to vote on various important issues pertaining to a company (e.g. hiring and firing executives, mergers and acquisitions, budgets, and major changes in corporate strategy). THW weight shareholder votes in line with the length of time their shares have been held." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV 2016", + "Round": 3, + "Motion": "THBT voters should always vote on policy and principles regardless of electability in all elections (general, local, or party leadership)." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV 2016", + "Round": 4, + "Motion": "THBT film studios should seek to select racially diverse casts when converting books into films even if it differs from the original character descriptions." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV 2016", + "Round": 5, + "Motion": "THBT welfare and pensions policy should be determined by a panel of experts selected by their peers, not accountable to government." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV 2016", + "Round": "ESL_Final", + "Motion": "TH, as a feminist, would adopt traditionally masculine traits and behaviours." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV 2016", + "Round": "Open_Quarters", + "Motion": "THBT the US-led coalition should no longer insist on Assad stepping down as part of their negotiations with Russia over Syria." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV 2016", + "Round": "Open_Semis", + "Motion": "THW prefer a world without sexual attraction." + }, + { + "Date": "2016-03-12T00:00:00", + "Tournament": "UCL Clifford Chance IV 2016", + "Round": "Open_Final", + "Motion": "THBT a minimal state is justified." + }, + { + "Date": "2016-03-11T00:00:00", + "Tournament": "Budapest Open 2016", + "Round": 1, + "Motion": "THW ban private political donations, and fund all political parties and campaigns from general taxation." + }, + { + "Date": "2016-03-11T00:00:00", + "Tournament": "Budapest Open 2016", + "Round": 1, + "Motion": "THW ban private political donations, and fund all political parties and campaigns from general taxation." + }, + { + "Date": "2016-03-11T00:00:00", + "Tournament": "Budapest Open 2016", + "Round": 2, + "Motion": "THW not allow workers to renounce their employment rights (e.g. holiday pay, defined working hours, sick pay, minimum wage) in return for work experience or financial benefit." + }, + { + "Date": "2016-03-11T00:00:00", + "Tournament": "Budapest Open 2016", + "Round": 2, + "Motion": "THW not allow workers to renounce their employment rights (e.g. holiday pay, defined working hours, sick pay, minimum wage) in return for work experience or financial benefit." + }, + { + "Date": "2016-03-11T00:00:00", + "Tournament": "Budapest Open 2016", + "Round": 3, + "Motion": "THBT Oskar Gröning should not have been prosecuted." + }, + { + "Date": "2016-03-11T00:00:00", + "Tournament": "Budapest Open 2016", + "Round": 3, + "Motion": "Oskar Gröning chose to join the SS during the 1940s, and was positioned at Auschwitz concentration camp as a financial clerk. After the end of the war, he remained silent about his experiences for forty years. In response to Holocaust denial by a number of authoritative and well-known individuals, he spoke about his experiences and actions, highlighting the horrors that occurred. This contributed to a decision of the German government to prosecute him as an accessory to murder in 300,000 cases. THBT Oskar Gröning should not have been prosecuted." + }, + { + "Date": "2016-03-11T00:00:00", + "Tournament": "Budapest Open 2016", + "Round": 4, + "Motion": "THBT European Leaders should not have agreed to renegotiate the terms of Britain's EU membership." + }, + { + "Date": "2016-03-11T00:00:00", + "Tournament": "Budapest Open 2016", + "Round": 4, + "Motion": "THBT European Leaders should not have agreed to renegotiate the terms of Britain's EU membership." + }, + { + "Date": "2016-03-11T00:00:00", + "Tournament": "Budapest Open 2016", + "Round": 5, + "Motion": "THBT it is legitimate to release the unpublished personal memoirs of deceased public figures, even when this is against the express wishes of the individual or their family." + }, + { + "Date": "2016-03-11T00:00:00", + "Tournament": "Budapest Open 2016", + "Round": 5, + "Motion": "THBT it is legitimate to release the unpublished personal memoirs of deceased public figures, even when this is against the express wishes of the individual or their family." + }, + { + "Date": "2016-03-11T00:00:00", + "Tournament": "Budapest Open 2016", + "Round": "Open_Quarters", + "Motion": "This House supports the French government's decision to dismantle the \"Calais jungle.\"" + }, + { + "Date": "2016-03-11T00:00:00", + "Tournament": "Budapest Open 2016", + "Round": "Open_Semis", + "Motion": "THBT Barack Obama should nominate an individual considered to be a moderate conservative by US citizens to the Supreme Court." + }, + { + "Date": "2016-03-11T00:00:00", + "Tournament": "Budapest Open 2016", + "Round": "Open_Semis", + "Motion": "THBT Barack Obama should nominate an individual considered to be a moderate conservative by US citizens to the Supreme Court." + }, + { + "Date": "2016-03-11T00:00:00", + "Tournament": "Budapest Open 2016", + "Round": "Open_Finals", + "Motion": "THW ban all further research into artificial intelligence that can independently learn and develop." + }, + { + "Date": "2016-03-11T00:00:00", + "Tournament": "Budapest Open 2016", + "Round": "Open_Final", + "Motion": "THW ban all further research into artificial intelligence that can independently learn and develop." + }, + { + "Date": "2016-03-06T00:00:00", + "Tournament": "Surrey IV 2016", + "Round": 1, + "Motion": "THBT Britain should leave the EU." + }, + { + "Date": "2016-03-06T00:00:00", + "Tournament": "Surrey IV 2016", + "Round": 2, + "Motion": "THW abolish private home ownership." + }, + { + "Date": "2016-03-06T00:00:00", + "Tournament": "Surrey IV 2016", + "Round": 3, + "Motion": "Tiger parenting is a strict or demanding style of parenting focused on pushing children to high levels of achievement. It is characterised by a strong routine (e.g. compulsory homework time), high expectations and physiological control through both positive (e.g. praise/encouragement) and negative (e.g. threats, criticism) means. TH supports Tiger Parenting." + }, + { + "Date": "2016-03-06T00:00:00", + "Tournament": "Surrey IV 2016", + "Round": 4, + "Motion": "THBT the United States should abolish political parties." + }, + { + "Date": "2016-03-06T00:00:00", + "Tournament": "Surrey IV 2016", + "Round": "Open_Final", + "Motion": "THBT Saudi Arabia should privatise Saudi Aramco and list it on the NY Stock Exchange." + }, + { + "Date": "2016-03-05T00:00:00", + "Tournament": "Lancaster IV 2016", + "Round": 1, + "Motion": "TH welcomes the proliferation of porn online." + }, + { + "Date": "2016-03-05T00:00:00", + "Tournament": "Lancaster IV 2016", + "Round": 2, + "Motion": "THW remove 'Gone with The Wind' from the National Film Registry" + }, + { + "Date": "2016-03-05T00:00:00", + "Tournament": "Lancaster IV 2016", + "Round": 3, + "Motion": "THBT the UN Should unilterally recognise Catalan independence." + }, + { + "Date": "2016-03-05T00:00:00", + "Tournament": "Lancaster IV 2016", + "Round": 4, + "Motion": "THW Ban research on genome editing." + }, + { + "Date": "2016-03-05T00:00:00", + "Tournament": "Lancaster IV 2016", + "Round": 5, + "Motion": "As a democratic state that has come under unprovoked nuclear attack from another democratic state THW launch a nuclear counter-attack." + }, + { + "Date": "2016-03-05T00:00:00", + "Tournament": "Lancaster IV 2016", + "Round": "ProAm_Final", + "Motion": "THS the extra-judicial killing of a state's citizens, by that state, where there is reason to suspect they are involved in the planning or carrying out of terrorist activities, and arrest is not possible." + }, + { + "Date": "2016-03-05T00:00:00", + "Tournament": "Lancaster IV 2016", + "Round": "Open_Semis", + "Motion": "THS People's Quantitative Easing." + }, + { + "Date": "2016-03-05T00:00:00", + "Tournament": "Lancaster IV 2016", + "Round": "Open_Final", + "Motion": "Superior Orders is a plea in a court of law that a person not be held guilty for actions that were ordered by a superior officer, but are criminal. It cannot be applied to actions that are manifestly unlawful (e.g. genocide or crimes against humanity). TH Accepts the defense of Superior Orders." + }, + { + "Date": "2016-03-04T00:00:00", + "Tournament": "UL Open 2016", + "Round": 1, + "Motion": "THW replace means tested welfare with a regular, unconditional and Universal Basic Income paid by the State to all residents." + }, + { + "Date": "2016-03-04T00:00:00", + "Tournament": "UL Open 2016", + "Round": 2, + "Motion": "THW Allow convicts who are parents to raise their children in prison." + }, + { + "Date": "2016-03-04T00:00:00", + "Tournament": "UL Open 2016", + "Round": 3, + "Motion": "THB School History curricula should teach a unanimously and graphically negative account of the impacts of Western colonialism." + }, + { + "Date": "2016-03-04T00:00:00", + "Tournament": "UL Open 2016", + "Round": 4, + "Motion": "The Pirate bay is a website where users illegally download copyrighted material such as music, films and video games. Attempts have been made by numerous governments to shut it down. TH Supports the Pirate Bay." + }, + { + "Date": "2016-03-04T00:00:00", + "Tournament": "UL Open 2016", + "Round": 5, + "Motion": "THW Ban all advertising." + }, + { + "Date": "2016-03-04T00:00:00", + "Tournament": "UL Open 2016", + "Round": "Open_Semis", + "Motion": "THW Celebrate Furiosa from Mad Max: Fury Road as a feminist Icon." + }, + { + "Date": "2016-03-04T00:00:00", + "Tournament": "UL Open 2016", + "Round": "Open_Final", + "Motion": "TH rejects the right to privacy." + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "Leiden Open", + "Round": 1, + "Motion": "THW ban fortune telling" + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "Leiden Open", + "Round": 2, + "Motion": "THW directly elect the members of the US Supreme Court" + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "Leiden Open", + "Round": 3, + "Motion": "THBT schools should motivate children to believe that anyone can succeed through hard work regardless of their background" + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "Leiden Open", + "Round": 4, + "Motion": "THW grant those diagnosed with terminal illnesses the right to access treatments that have not completed clinical testing" + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "Leiden Open", + "Round": 5, + "Motion": "THBT post conflict governments should recruit rebel soldiers into state armies" + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "Leiden Open", + "Round": "Novice_Final", + "Motion": "THW would allow the armed forces to unionise, strike, and collectively bargain" + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "Leiden Open", + "Round": "Open_Semi", + "Motion": "THW allow individuals to sell their right to sue to a third party" + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "Leiden Open", + "Round": "Open_Final", + "Motion": "THW enact an immediate democracy" + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "North American Women's (@ Hart House)", + "Round": 1, + "Motion": "THR the rise of dating apps (e.g. Tinder, Grindr, Hitch, Hinge,etc.)" + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "North American Women's (@ Hart House)", + "Round": 2, + "Motion": "THBT continued membership in the UN should be contingent on countries opting into universal jurisdiction." + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "North American Women's (@ Hart House)", + "Round": 3, + "Motion": "TH, as a minority parent in North America, would teach their kids not to trust the justice system, or figures of legal authority (e.g. police, judges, state prosecutors, etc.)" + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "North American Women's (@ Hart House)", + "Round": 4, + "Motion": "TH would prefer the reclamation of disputed monuments (e.g. the Rhodes Status at Oxford, Voertrekker Monuments in South Africa, Yakusuni Shrine in Japan, etc.) to their destruction." + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "North American Women's (@ Hart House)", + "Round": 5, + "Motion": "THS legal abortions for men." + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "North American Women's (@ Hart House)", + "Round": "Novice_Finals", + "Motion": "THW preference a strong social media over a physical presence in protest culture." + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "North American Women's (@ Hart House)", + "Round": "Open_Semis", + "Motion": "TH, as the Nicaraguan people, opposes the construction of the Nicaraguan Canal." + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "North American Women's (@ Hart House)", + "Round": "Open_Finals", + "Motion": "THW prefer a world in which people are sedated to experience only mild emotions." + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "Nottingham Open", + "Round": 1, + "Motion": "This House would ban essential service providers from striking" + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "Nottingham Open", + "Round": 2, + "Motion": "This House believes that the music press should publish unrepresentatively negative reviews of the music of artists whose conduct they view as reprehensible" + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "Nottingham Open", + "Round": 3, + "Motion": "This House believes that supreme/constitutional courts should not have the power to strike down legislation" + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "Nottingham Open", + "Round": 4, + "Motion": "To proselytise means to attempt to convert others to your beliefs. This House believes that atheists should proselytise" + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "Nottingham Open", + "Round": 5, + "Motion": "This House, as the West, would immediately end all sanctions against Russia" + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "Nottingham Open", + "Round": "Open_Semi", + "Motion": "This House believes that the British Museum should give all artifacts to the nations where they originated" + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "Nottingham Open", + "Round": "Open_Final", + "Motion": "For the purposes of this debate, the American Dream refers to the socially widespread belief that individuals can improve their circumstances through hard work, and that one can become successful regardless of their background. This House regrets the American Dream." + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "The Queen’s Annual TRUST IV", + "Round": 1, + "Motion": "THBT websites such as Sci-Hub cause more harm than good." + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "The Queen’s Annual TRUST IV", + "Round": 2, + "Motion": "THW allow companies to buy the rights to govern economically failing cities." + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "The Queen’s Annual TRUST IV", + "Round": 3, + "Motion": "The U.S. Kill list is a highly classified list of primarily terrorist target. Targets, include both US and non-US citizens, that the US Government seeks to assassinate using covert operations, drone strikes and other means. TH supports the aims of the U.S. “Kill list”." + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "The Queen’s Annual TRUST IV", + "Round": 4, + "Motion": "In Northern Ireland same sex marriage is illegal. Northern Ireland only permits abortions if the continuance of the pregnancy is proven to threaten the life of the mother. THW automatically extend Westminster Policies on Human Rights and anti-discrimination issues to Northern Ireland. This includes, but is not limited to, same sex marriage and abortion." + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "The Queen’s Annual TRUST IV", + "Round": 5, + "Motion": "You are a working class voter in a swing seat constituency between high-welfare, high-taxation party and a low-welfare, low-taxation party. THW vote for low-wlfare, low-taxation party." + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "The Queen’s Annual TRUST IV", + "Round": "Open_Semis", + "Motion": "THW abolish state primaries in US presidential elections." + }, + { + "Date": "2016-02-27T00:00:00", + "Tournament": "The Queen’s Annual TRUST IV", + "Round": "Open_Final", + "Motion": "TH supports western feminists wearing the headscarf in solidarity with Muslim women who wear the hijab who have faced islamophobia." + }, + { + "Date": "2016-02-21T00:00:00", + "Tournament": "Kyiv Open", + "Round": 1, + "Motion": "THBT Ukraine should introduce mandatory military service" + }, + { + "Date": "2016-02-21T00:00:00", + "Tournament": "Kyiv Open", + "Round": 2, + "Motion": "THW democratically elect members of constitutional courts (sometimes called \"Supreme Courts\")" + }, + { + "Date": "2016-02-21T00:00:00", + "Tournament": "Kyiv Open", + "Round": 3, + "Motion": "THBT mainstream media should stop reporting on information from wikileaks" + }, + { + "Date": "2016-02-21T00:00:00", + "Tournament": "Kyiv Open", + "Round": 4, + "Motion": "THW ban alchocol in all former soviet states" + }, + { + "Date": "2016-02-21T00:00:00", + "Tournament": "Kyiv Open", + "Round": 5, + "Motion": "THBT the Nobel prize in literature should be decided by members of the public rather than a panel of experts" + }, + { + "Date": "2016-02-21T00:00:00", + "Tournament": "Kyiv Open", + "Round": "Open_Semis", + "Motion": "THBT the EU should grant Ukraine membership and the necessary funding in exchange for hosting all refugees seeking asylum in the EU" + }, + { + "Date": "2016-02-21T00:00:00", + "Tournament": "Kyiv Open", + "Round": "Open_Final", + "Motion": "THBT the state should criminalize the seeking of mail-order brides" + }, + { + "Date": "2016-02-20T00:00:00", + "Tournament": "Manchester IV", + "Round": 1, + "Motion": "THBT the governments of Europe should censor media from publishing articles, videos or cartoons which promote racist views or stereotypes." + }, + { + "Date": "2016-02-20T00:00:00", + "Tournament": "Manchester IV", + "Round": 2, + "Motion": "This house believes that parliamentary electoral systems should include constituency links." + }, + { + "Date": "2016-02-20T00:00:00", + "Tournament": "Manchester IV", + "Round": 3, + "Motion": "THB that MGM Studios should cast a male as the sexual interest of the next Bond film." + }, + { + "Date": "2016-02-20T00:00:00", + "Tournament": "Manchester IV", + "Round": 4, + "Motion": "TH would begin writing only in your first language." + }, + { + "Date": "2016-02-20T00:00:00", + "Tournament": "Manchester IV", + "Round": 5, + "Motion": "THB that Western states should engage in covert cyber-attacks against infrastructure designed to limit freedom of speech* in authoritarian states. *e.g., the Great Firewall of China" + }, + { + "Date": "2016-02-20T00:00:00", + "Tournament": "Manchester IV", + "Round": "ProAm_Final", + "Motion": "TH supports climate change activists engaging in acts, regardless of legality, which cause mass disruption to carbon-intensive infrastructure networks." + }, + { + "Date": "2016-02-20T00:00:00", + "Tournament": "Manchester IV", + "Round": "Open_Quarters", + "Motion": "THW only allow the media to publish or broadcast government produced releases on suspected terrorist attacks." + }, + { + "Date": "2016-02-20T00:00:00", + "Tournament": "Manchester IV", + "Round": "Open_Semis", + "Motion": "THBT the Brazillian government should encourage and facilitate the integration of uncontacted peoples into wider society." + }, + { + "Date": "2016-02-20T00:00:00", + "Tournament": "Manchester IV", + "Round": "Open_Final", + "Motion": "THW create and fund schools that exclusively admit children from ethnic minorities." + }, + { + "Date": "2016-02-13T00:00:00", + "Tournament": "LSE Open", + "Round": 1, + "Motion": "TH Supports the proliferation of free schools" + }, + { + "Date": "2016-02-13T00:00:00", + "Tournament": "LSE Open", + "Round": 2, + "Motion": "THIS HOUSE WOULD require all government ministers to have majority approval from the professional bodies their department has legislative responsibility for. (For example, the UK Minister for Health would need majority approval from the British Medical Association)" + }, + { + "Date": "2016-02-13T00:00:00", + "Tournament": "LSE Open", + "Round": 3, + "Motion": "Assuming there are actors who fit the criteria: THIS HOUSE BELIEVES That film directors have a moral obligation to cast actors who share key lived experiences with the characters they play." + }, + { + "Date": "2016-02-13T00:00:00", + "Tournament": "LSE Open", + "Round": 4, + "Motion": "THIS HOUSE BELIEVES That western liberal democracies should cease all direct military action in Iraq, Syria, Libya and Yemen." + }, + { + "Date": "2016-02-13T00:00:00", + "Tournament": "LSE Open", + "Round": 5, + "Motion": "THIS HOUSE WOULD Make corporation tax proportional to company wage ratios" + }, + { + "Date": "2016-02-13T00:00:00", + "Tournament": "LSE Open", + "Round": "ESL Semifinal", + "Motion": "THW Introduce a system of tradable quotas for asylum seekers in the European Union" + }, + { + "Date": "2016-02-13T00:00:00", + "Tournament": "LSE Open", + "Round": "ESL Final", + "Motion": "THW Prefer to live in A Brave New World" + }, + { + "Date": "2016-02-13T00:00:00", + "Tournament": "LSE Open", + "Round": "Open Quarterfinal", + "Motion": "THW Introduce a system of tradable quotas for asylum seekers in the European Union" + }, + { + "Date": "2016-02-13T00:00:00", + "Tournament": "LSE Open", + "Round": "Open Semifinal", + "Motion": "THBT The USA should adopt a parliamentary democracy rather than a presidential one." + }, + { + "Date": "2016-02-13T00:00:00", + "Tournament": "LSE Open", + "Round": "Final", + "Motion": "THW Allow individuals to sign contracts which cede future rights of theirs to other individuals (for example, to sell themselves into slavery)" + }, + { + "Date": "2016-02-13T00:00:00", + "Tournament": "Swansea Open", + "Round": 1, + "Motion": "THW ban religious or faith-based rehabilitation programmes in prison" + }, + { + "Date": "2016-02-13T00:00:00", + "Tournament": "Swansea Open", + "Round": 2, + "Motion": "THW provide financial incentives (e.g. tax breaks) to companies that require skilled labour who hire non-graduates." + }, + { + "Date": "2016-02-13T00:00:00", + "Tournament": "Swansea Open", + "Round": 3, + "Motion": "THBT characters with disabilities in film and television should always be played by individuals with disabilities." + }, + { + "Date": "2016-02-13T00:00:00", + "Tournament": "Swansea Open", + "Round": 4, + "Motion": "THR the criminalization of the reckless transmission of sexual infections (e.g. HIV, herpes and gonorrhoea) in England and Wales" + }, + { + "Date": "2016-02-13T00:00:00", + "Tournament": "Swansea Open", + "Round": "Final", + "Motion": "Your 'one true soulmate' exists. There is a test that allows you to determine whether someone is your one true soulmate. You are in love with the person you have been dating for a while.\r\nTHW take the test to determine whether the person you are in love with is your 'soulmate'" + }, + { + "Date": "2016-02-06T00:00:00", + "Tournament": "ICYD- Oxford Round", + "Round": 5, + "Motion": "This House Would introduce Proportional Representation in UK general elections.\"" + }, + { + "Date": "2016-02-06T00:00:00", + "Tournament": "John Smith Memorial Mace - English Leg", + "Round": 1, + "Motion": "This House would allow offenders serving a prison term of ten or more years to opt to remain in prison indefinitely beyond their court appointed release date." + }, + { + "Date": "2016-02-06T00:00:00", + "Tournament": "John Smith Memorial Mace - English Leg", + "Round": 2, + "Motion": "This House believes that the US and UK should cease selling arms to Saudi Arabia until they withdraw from Yemen." + }, + { + "Date": "2016-02-06T00:00:00", + "Tournament": "John Smith Memorial Mace - English Leg", + "Round": 3, + "Motion": "This House believes that LGBT+ advocacy groups and lobbyists should publicly fight for reparations for the victims, and the families of victims, of the AIDS epidemic." + }, + { + "Date": "2016-02-06T00:00:00", + "Tournament": "John Smith Memorial Mace - English Leg", + "Round": 4, + "Motion": "This House regrets Aung San Suu Kyi's declaration of intention to control the National League of Democracy (NLD) despite being constitutionally barred from running for president." + }, + { + "Date": "2016-02-06T00:00:00", + "Tournament": "John Smith Memorial Mace - English Leg", + "Round": 5, + "Motion": "This House prefers a world where the conception of the afterlife is based on karmic balance, rather than divine mercy" + }, + { + "Date": "2016-02-06T00:00:00", + "Tournament": "John Smith Memorial Mace - Scottish Finals", + "Round": 1, + "Motion": "This house would not wear a poppy." + }, + { + "Date": "2016-02-06T00:00:00", + "Tournament": "John Smith Memorial Mace - Scottish Finals", + "Round": 2, + "Motion": "This house supports the Boycott, Divestment, Sanctions movement." + }, + { + "Date": "2016-02-06T00:00:00", + "Tournament": "John Smith Memorial Mace - Scottish Finals", + "Round": 3, + "Motion": "This house regrets South Africa's Rainbow Nation narrative (long prep)." + }, + { + "Date": "2016-02-06T00:00:00", + "Tournament": "John Smith Memorial Mace - Scottish Finals", + "Round": 4, + "Motion": "This House Believes the Eurozone should adopt a policy of fiscal union." + }, + { + "Date": "2016-02-06T00:00:00", + "Tournament": "John Smith Memorial Mace - Scottish Finals", + "Round": 5, + "Motion": "This House supports the Lean In movement." + }, + { + "Date": "2016-02-06T00:00:00", + "Tournament": "John Smith Memorial Mace - Scottish Finals", + "Round": "Open_Semis", + "Motion": "This House believes that the Britain Stronger in Europe campaign should pursue a 'Project Fear' strategy of negative campaigning similar to Better Together* in the upcoming referendum." + }, + { + "Date": "2016-02-06T00:00:00", + "Tournament": "John Smith Memorial Mace - Scottish Finals", + "Round": "Open_Final", + "Motion": "This House would welcome a resurgence of Pink Tide Values in Latin American Politics." + }, + { + "Date": "2016-01-30T00:00:00", + "Tournament": "Warwick IV", + "Round": 1, + "Motion": "THBT government authorities, being the police, should preserve illegal art as evidence for prosecution of the artists responsible." + }, + { + "Date": "2016-01-30T00:00:00", + "Tournament": "Warwick IV", + "Round": 2, + "Motion": "THBT, in developing nations with an ineffectual state school system, the government should financially incentivise (e.g through tax breaks) the creation of private schools" + }, + { + "Date": "2016-01-30T00:00:00", + "Tournament": "Warwick IV", + "Round": 3, + "Motion": "THBT it is never a legitimate economic strategy for a state to become a tax haven." + }, + { + "Date": "2016-01-29T00:00:00", + "Tournament": "Trinity IV", + "Round": 1, + "Motion": "This House Would Ban All Lobbying Activity" + }, + { + "Date": "2016-01-29T00:00:00", + "Tournament": "Trinity IV", + "Round": 2, + "Motion": "THW Allow Deaf Parents to Refuse Treatment for Deafness On Behalf of their Children" + }, + { + "Date": "2016-01-29T00:00:00", + "Tournament": "Trinity IV", + "Round": 3, + "Motion": "THBT strong dictatorships in the Middle East are better than weak democracies" + }, + { + "Date": "2016-01-29T00:00:00", + "Tournament": "Trinity IV", + "Round": 4, + "Motion": "This House as the LGBTQIA Community Would Oppose Pornography" + }, + { + "Date": "2016-01-29T00:00:00", + "Tournament": "Trinity IV", + "Round": 5, + "Motion": "This House Opposes Laicité" + }, + { + "Date": "2016-01-29T00:00:00", + "Tournament": "Trinity IV", + "Round": "Novice_Final", + "Motion": "THB in the use of fear to instill values in children" + }, + { + "Date": "2016-01-29T00:00:00", + "Tournament": "Trinity IV", + "Round": "Open_Quarters", + "Motion": "TH Supports Hacking as a Form of Protest" + }, + { + "Date": "2016-01-29T00:00:00", + "Tournament": "Trinity IV", + "Round": "Open_Semis", + "Motion": "There exists a drug that increases empathy in individuals. TH, as the state, would lace their country's water supply with that drug." + }, + { + "Date": "2016-01-29T00:00:00", + "Tournament": "Trinity IV", + "Round": "Open_Final", + "Motion": "THW Welcome the End of American Intervention" + }, + { + "Date": "2016-01-28T00:00:00", + "Tournament": "Trinity Women's Open", + "Round": 1, + "Motion": "THW actively reward the use of Hiberno-English in schoolwork and examinations." + }, + { + "Date": "2016-01-28T00:00:00", + "Tournament": "Trinity Women's Open", + "Round": 2, + "Motion": "THW make Ulysses contracts enforceable by the courts." + }, + { + "Date": "2016-01-28T00:00:00", + "Tournament": "Trinity Women's Open", + "Round": 3, + "Motion": "THW genetically engineer major meat animals not to feel pain." + }, + { + "Date": "2016-01-28T00:00:00", + "Tournament": "Trinity Women's Open", + "Round": "Open_Semis", + "Motion": "THS the concept of orgasm intervention." + }, + { + "Date": "2016-01-28T00:00:00", + "Tournament": "Trinity Women's Open", + "Round": "Open_Final", + "Motion": "TH, as an individual with strong and deeply held convictions, would die for their cause." + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "Queen Mary IV", + "Round": 1, + "Motion": "TH Supports Voluntourism" + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "Queen Mary IV", + "Round": 2, + "Motion": "THBT it is in the UK's interest to leave the EU" + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "Queen Mary IV", + "Round": 3, + "Motion": "THW ban boarding schools" + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "Queen Mary IV", + "Round": 4, + "Motion": "THW introduce mixed-gender low security prisons" + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "Queen Mary IV", + "Round": "Open_Final", + "Motion": "THBT student unions should not take political positions that do not directly pertain to tertiary education" + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "University of Latvia Open", + "Round": 1, + "Motion": "THBT the Cultural Trend Of \"Selfies\" Has Been Good For Women" + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "University of Latvia Open", + "Round": 2, + "Motion": "THS The Depiction Of The USSR as Absolutely Evil" + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "University of Latvia Open", + "Round": 3, + "Motion": "THW Only Direct European Investment Fund Money to States That Agree to Take a Share of Refugees Proportional to Their Share of EU GDP" + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "University of Latvia Open", + "Round": 4, + "Motion": "THBT Governments Ought To Use The Technology To Detect The “Criminal Gene”." + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "University of Latvia Open", + "Round": 5, + "Motion": "THW Permit The Cloning Of Genius And Extraordinary Individuals For The Good Of The Society" + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "University of Latvia Open", + "Round": "Open_Semis", + "Motion": "TH Prefers a Multipolar World To US Hegemony" + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "University of Latvia Open", + "Round": "Open_Final", + "Motion": "THBT All Countries Should Forcibly Redistribute Land Ownership So That at Least 50% Of It Is Owned By Women" + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "York IV", + "Round": "Open_Semis", + "Motion": "This house would allow people to opt into religious structures with the power to punish them in this life (e.g., Beth Din courts, or Sharia courts) for infractions." + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "York IV", + "Round": "Open_Final", + "Motion": "THW pay reparations to women" + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "York IV", + "Round": 1, + "Motion": "This house believes that young, educated people in Western countries should focus their charitable efforts (e.g., volunteering, donations, etc.) towards benefiting the disadvantaged in their own country, as opposed to in the developing world." + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "York IV", + "Round": 2, + "Motion": "This house believes that the Labour Party should have worked to rehabilitate Tony Blair’s image in its campaigning, prior to the 2015 General Election." + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "York IV", + "Round": 3, + "Motion": "This house believes that governments should promote, support, and incentivise students to attend MOOCs instead of Universities." + }, + { + "Date": "2016-01-23T00:00:00", + "Tournament": "York IV", + "Round": 4, + "Motion": "This house believes that the global Anglican church should split into two churches, rather than maintain a single communion." + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "Inner Temple IV", + "Round": 1, + "Motion": "THW ban TV programmes and entertainment media from portraying convicted criminals as innocent" + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "Inner Temple IV", + "Round": 2, + "Motion": "THW trigger a general election when a country goes into recession" + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "Inner Temple IV", + "Round": 3, + "Motion": "THW exclusively fund domestic NGOs in developing countries as opposed to western NGOs working in developing countries" + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "Inner Temple IV", + "Round": 4, + "Motion": "TH, as a progressive female candidate, would not use conventional gender roles (e.g. marketing oneself as a mother or a wife) as a tactic in political campaign" + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "Inner Temple IV", + "Round": "Novice_Final", + "Motion": "TH supports the introduction of bystander laws" + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "Inner Temple IV", + "Round": "Open_Semis", + "Motion": "Semi-Final: THBT the USA should make Taiwanese independence a major foreign-policy aim" + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "Inner Temple IV", + "Round": "Open_Final", + "Motion": "Open Final: THW conscientiously object in situations of war" + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "NorthAms", + "Round": 1, + "Motion": "THW require that companies with >15 employees give 50% of their voting rights to employees" + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "NorthAms", + "Round": 2, + "Motion": "THS Chris Rock’s continued commitment to host the Oscars" + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "NorthAms", + "Round": 3, + "Motion": "THR the Arab Spring" + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "NorthAms", + "Round": 4, + "Motion": "THW ban eminent domain rights" + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "NorthAms", + "Round": 5, + "Motion": "THW prefer a world without pornography" + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "NorthAms", + "Round": 6, + "Motion": "THBT developing nations should enshrine legally actionable socioeconomic rights" + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "NorthAms", + "Round": "Novice_Semis", + "Motion": "THBT unconditional cash transfer charities are preferable to project based charities" + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "NorthAms", + "Round": "Novice_Final", + "Motion": "Given the technological capability to disable their nuclear weapons, THW invade North Korea." + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "NorthAms", + "Round": "Open_Octos", + "Motion": "THW break up the eurozone" + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "NorthAms", + "Round": "Open_Quarters", + "Motion": "THW ban savior siblings" + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "NorthAms", + "Round": "Open_Semis", + "Motion": "TH regrets campaigns by feminists to shut down female empowerment events exclusively for cis women, like Michfest." + }, + { + "Date": "2016-01-22T00:00:00", + "Tournament": "NorthAms", + "Round": "Open_Final", + "Motion": "You have invented a pill that would compel the user to tell the truth. THW destroy it." + }, + { + "Date": "2016-01-16T00:00:00", + "Tournament": "London Pro-Am", + "Round": 1, + "Motion": "This House Would Not Provide State Funding for Art Based Higher Education, eg. art, music, drama." + }, + { + "Date": "2016-01-16T00:00:00", + "Tournament": "London Pro-Am", + "Round": 2, + "Motion": "This House Supports Politicians Passing Progressive Legislation, Even When it is Contrary to the Wishes of the Democratic Electorate" + }, + { + "Date": "2016-01-16T00:00:00", + "Tournament": "London Pro-Am", + "Round": 3, + "Motion": "THBT it is in the interest of the Conservative Government to impose a travel ban on Donald Trump" + }, + { + "Date": "2016-01-16T00:00:00", + "Tournament": "London Pro-Am", + "Round": 4, + "Motion": "THW make the use of armed drones a war crime" + }, + { + "Date": "2016-01-12T00:00:00", + "Tournament": "Brandeis IV 2016", + "Round": 1, + "Motion": "THW significantly reduce funding for schools that perpetuate inaccuracies in their teachings of indigenous history" + }, + { + "Date": "2016-01-12T00:00:00", + "Tournament": "Brandeis IV 2016", + "Round": 2, + "Motion": "THBT social movements should abandon the tactic of publicly shaming individuals in order to accomplish change" + }, + { + "Date": "2016-01-12T00:00:00", + "Tournament": "Brandeis IV 2016", + "Round": 3, + "Motion": "THP a tech industry characterized by multiple smaller firms rather than one dominated by a few large players (e.g. Google Amazon Facebook in status quo)" + }, + { + "Date": "2016-01-12T00:00:00", + "Tournament": "Brandeis IV 2016", + "Round": 4, + "Motion": "TH, as the US, would re-impose sanctions on Myanmar until the Rohingyas receive political representation" + }, + { + "Date": "2016-01-12T00:00:00", + "Tournament": "Brandeis IV 2016", + "Round": 5, + "Motion": "THW require news websites and publications to provide opposing points of view on all politically contested issues" + }, + { + "Date": "2016-01-12T00:00:00", + "Tournament": "Brandeis IV 2016", + "Round": 6, + "Motion": "THBT governments should provide significant financial incentives for urban citizens to move to rural areas" + }, + { + "Date": "2016-01-12T00:00:00", + "Tournament": "Brandeis IV 2016", + "Round": "Novice_Final", + "Motion": "THS unfettered free trade" + }, + { + "Date": "2016-01-12T00:00:00", + "Tournament": "Brandeis IV 2016", + "Round": "Open_Quarters", + "Motion": "THR South Africa's withdrawal from the ICC" + }, + { + "Date": "2016-01-12T00:00:00", + "Tournament": "Brandeis IV 2016", + "Round": "Open_Semis", + "Motion": "THBT minority comedians should not play up stereotypes based upon their own identity within performances" + }, + { + "Date": "2016-01-12T00:00:00", + "Tournament": "Brandeis IV 2016", + "Round": "Open_Final", + "Motion": "THW delicense corporations that do not engage in social responsibility proportional to their profit margins (e.g. campaigns to end hunger in a community, giving away portion of profit to charity, implementing more environmentally friendly business operations etc.)" + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": 1, + "Motion": "THW allow states to use mercenary forces in combat roles in active military operations" + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": 2, + "Motion": "THW prohibit private ownership of art deemed to be culturally or historically significant" + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": 3, + "Motion": "THBT all states should collectively aggregate and evenly distribute all revenue from mineral wealth globally on a per capita basis" + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": 4, + "Motion": "THBT governments with racially diverse populations should never record the ethnic or racial background of their residents" + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": 5, + "Motion": "THBT the US should withdraw from East Asia and cede regional hegemony to China." + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": 6, + "Motion": "THBT states should adopt sunset clauses that legally force them to review and either re-authorize or revise their constitutions every generation" + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": 7, + "Motion": "TH supports stronger collective bargaining rights and protections rather than legislated labor market regulations (e.g., wage levels and working conditions)" + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": 8, + "Motion": "THBT the creation of feminist icons and their cults of personality are good for the feminist movement" + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": 9, + "Motion": "THBT criminal punishments should be based only on the offenders' culpability rather than the damages caused by the criminal act or other outcomes derived from the punishment" + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": "EFL_Semis", + "Motion": "TH would retrospectively criminalise excessively risky management practises for economically significant corporations and prosecute the executives responsible for them." + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": "EFL_Final", + "Motion": "THBT campaigners for refugee protection should not use pictures displaying the graphic suffering of refugees as part of their advocacy." + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": "ESL_Quarters", + "Motion": "THW prefer a world in which extremely wealthy people in Western liberal states donate excess money to their governments rather than to charities" + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": "ESL_Semis", + "Motion": "THB the West should prioritize stability over exporting democracy in foreign policy" + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": "ESL_Finals", + "Motion": "TH supports the decline of the nations-state's power in an increasingly globalized world." + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": "Masters_1", + "Motion": "Assuming the technology to do so easily and safely exists, THW force everyone in society to undergo periodic sex changes." + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": "Masters_2", + "Motion": "THW kill baby Hitler" + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": "Open_Partials", + "Motion": "TH regrets mainstream, commercial films that depict historical subjugation and/or crimes against humanity." + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": "Open_Octos", + "Motion": "TH would nationalize all systemically important financial institutions, such as banks and insurance companies." + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": "Open_Quarters", + "Motion": "TH supports the establishment of a Black secessionary state within the territory of the United States, the founding of which is supported by the American government." + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": "Open_Semis", + "Motion": "THBT non-western countries who were once colonized, when fabricating the material culture of national identity (anthems, street names, holidays, flag, etc.) should privilege pre colonial history and notions of indigeneity over themes of anti colonial resistance." + }, + { + "Date": "2016-01-01T00:00:00", + "Tournament": "Thessaloniki WUDC 2016", + "Round": "Open_Final", + "Motion": "THBT the world's poor would be justified in pursuing complete Marxist revolution." + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "Birmingham IV", + "Round": 1, + "Motion": "THW allow the trophy hunting of endangered animals" + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "Birmingham IV", + "Round": 2, + "Motion": "THW programme self-driving cars to prioritise the number of lives saved when faced with unavoidable collisions as opposed to prioritising the safety of the driver." + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "Birmingham IV", + "Round": 3, + "Motion": "THW ban the Orange Walk" + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "Birmingham IV", + "Round": 4, + "Motion": "THBT LGBTQ+ campaigns should criticise the nuclear family" + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "Birmingham IV", + "Round": 5, + "Motion": "THBT African Union states should withdraw from the International Criminal Court and set up an African alternative" + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "Birmingham IV", + "Round": "Novice_Final", + "Motion": "THBT when faced with the choice between spending discretionary income on non-essentials or giving to charity, individuals should always choose to give to charity" + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "Birmingham IV", + "Round": "Open_Quarters", + "Motion": "THW allow mental health charities to sue media outlets for the defamation of the mentally ill" + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "Birmingham IV", + "Round": "Open_Semis", + "Motion": "THBT the Parliamentary Labour Party should immediately depose Jeremy Corbyn by a vote of no confidence" + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "Birmingham IV", + "Round": "Open_Final", + "Motion": "THBT the USA should publicly apologise for the bombing of Hiroshima and Nagasaki" + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 1, + "Motion": "THR the Narrative of the American Dream." + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 2, + "Motion": "THB The State Should Not Attach any Legal or Fiscal Privileges to the Family Unit (e.g tax breaks, spousal exemptions etc)" + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 3, + "Motion": "THR The Fall of the Galactic Empire." + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 4, + "Motion": "THW Introduce an Excise Tax on Tabloids to Finance a Subsidy of Broadsheet." + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 5, + "Motion": "THW exclude Turkey from NATO if it Continues Bombing Kurdish Troops in Syria and Iraq." + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Novice_Final", + "Motion": "THR the Narrative of Having one Great Calling or Purpose in Life." + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Partial_Quarters", + "Motion": "THR the Negative Connotations Surrounding Creating Art for the Primary Purpose of Profit." + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Semis", + "Motion": "THW Ban Mens’ Rights Activist Groups." + }, + { + "Date": "2015-12-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Final", + "Motion": "TH as the Republican National Committee Would Literally Kick Donald Trump out of the Republican Party." + }, + { + "Date": "2015-12-05T00:00:00", + "Tournament": "Brandeis IV", + "Round": 1, + "Motion": "THW ban plea bargaining" + }, + { + "Date": "2015-12-05T00:00:00", + "Tournament": "Brandeis IV", + "Round": 2, + "Motion": "THS the use of coercive economic and diplomatic measures against states in which serious environmental damange to natural resources of share global importance is occurring" + }, + { + "Date": "2015-12-05T00:00:00", + "Tournament": "Brandeis IV", + "Round": 3, + "Motion": "THW ban surgical genital alteration procedures for minors that are not strictly medically necessary for bodily or sexual function" + }, + { + "Date": "2015-12-05T00:00:00", + "Tournament": "Brandeis IV", + "Round": 4, + "Motion": "TH welcomes the rise of for-profit education in developing countries" + }, + { + "Date": "2015-12-05T00:00:00", + "Tournament": "Brandeis IV", + "Round": 5, + "Motion": "THW ban the use of religious rhetoric and symbols in political campaigns" + }, + { + "Date": "2015-12-05T00:00:00", + "Tournament": "Brandeis IV", + "Round": 6, + "Motion": "TH supports a three-state solution to the Israeli-Palestinian conflcit" + }, + { + "Date": "2015-12-05T00:00:00", + "Tournament": "Brandeis IV", + "Round": "Open_Quarters", + "Motion": "THBT retribution should not be a part of the criminal justice system." + }, + { + "Date": "2015-12-05T00:00:00", + "Tournament": "Brandeis IV", + "Round": "Open_Semis", + "Motion": "THB abortions that are based on the fetus showing signs of non-fatal physical and developmental disabilities" + }, + { + "Date": "2015-12-05T00:00:00", + "Tournament": "Brandeis IV", + "Round": "Open_Finals", + "Motion": "THS universal jurisdiction for crimes against humanity." + }, + { + "Date": "2015-11-27T00:00:00", + "Tournament": "Canadian British Parliamentary Championships (@ York University)", + "Round": 1, + "Motion": "THS the rise of homeschooling among minority communities" + }, + { + "Date": "2015-11-27T00:00:00", + "Tournament": "Canadian British Parliamentary Championships (@ York University)", + "Round": 2, + "Motion": "THBT environmental refugees should be granted citizenship in countries that have contributed most heavily to global pollution" + }, + { + "Date": "2015-11-27T00:00:00", + "Tournament": "Canadian British Parliamentary Championships (@ York University)", + "Round": 3, + "Motion": "THBT minority groups seeking public support for equal rights should emphasize distinct cultures over similarity to the mainstream." + }, + { + "Date": "2015-11-27T00:00:00", + "Tournament": "Canadian British Parliamentary Championships (@ York University)", + "Round": 4, + "Motion": "THW financially assist inner-city neighbourhoods in order to prevent gentrification, for instance by subsidizing mixed-income housing over public housing projects." + }, + { + "Date": "2015-11-27T00:00:00", + "Tournament": "Canadian British Parliamentary Championships (@ York University)", + "Round": 5, + "Motion": "THBT all democracies should ban relatives of past office holders from running for election" + }, + { + "Date": "2015-11-27T00:00:00", + "Tournament": "Canadian British Parliamentary Championships (@ York University)", + "Round": "Novice_Finals", + "Motion": "THS genderless parenting" + }, + { + "Date": "2015-11-27T00:00:00", + "Tournament": "Canadian British Parliamentary Championships (@ York University)", + "Round": "Open_Semis", + "Motion": "THBT the Association of Southeast Asian Nations (ASEAN) should have its own regional peacekeeping force." + }, + { + "Date": "2015-11-27T00:00:00", + "Tournament": "Canadian British Parliamentary Championships (@ York University)", + "Round": "Open_Finals", + "Motion": "THBT private education institutions should facilitate student demands for spaces of protest to be kept free of media" + }, + { + "Date": "2015-11-22T00:00:00", + "Tournament": "Cambridge Women's Open", + "Round": 1, + "Motion": "THBT governments should place no restrictions on how welfare payments, excluding child benefit, are spent." + }, + { + "Date": "2015-11-22T00:00:00", + "Tournament": "Cambridge Women's Open", + "Round": 2, + "Motion": "THBT social disgust is sufficient justification for censoring art." + }, + { + "Date": "2015-11-22T00:00:00", + "Tournament": "Cambridge Women's Open", + "Round": 3, + "Motion": "THW legally permit soldiers to refuse to participate in military actions or missions on the basis of conscience." + }, + { + "Date": "2015-11-22T00:00:00", + "Tournament": "Cambridge Women's Open", + "Round": 4, + "Motion": "THBT states should take high numbers of refugees, even when faced with strong democratic opposition." + }, + { + "Date": "2015-11-22T00:00:00", + "Tournament": "Cambridge Women's Open", + "Round": "ESL_Final", + "Motion": "THBT Britain should pay reparations to its former colonies." + }, + { + "Date": "2015-11-22T00:00:00", + "Tournament": "Cambridge Women's Open", + "Round": "Open_Final", + "Motion": "THR the Rise of the Rom-Com Genre." + }, + { + "Date": "2015-11-21T00:00:00", + "Tournament": "Brad Smith Debate Tournament 2015", + "Round": 1, + "Motion": "THW abolish all rent control laws." + }, + { + "Date": "2015-11-21T00:00:00", + "Tournament": "Brad Smith Debate Tournament 2015", + "Round": 2, + "Motion": "THBT no media should ever be allowed to endorse any candidates in democratic elections." + }, + { + "Date": "2015-11-21T00:00:00", + "Tournament": "Brad Smith Debate Tournament 2015", + "Round": 3, + "Motion": "THW ban religious proselytization in prisons." + }, + { + "Date": "2015-11-21T00:00:00", + "Tournament": "Brad Smith Debate Tournament 2015", + "Round": 4, + "Motion": "THBT all self-driven cars must use the same government-mandated algorithm to solve the \"trolley problem.\"" + }, + { + "Date": "2015-11-21T00:00:00", + "Tournament": "Brad Smith Debate Tournament 2015", + "Round": 5, + "Motion": "THW prefer the creation of class-based affirmative action programs over race-based affirmative action programs at higher education institutions." + }, + { + "Date": "2015-11-21T00:00:00", + "Tournament": "Brad Smith Debate Tournament 2015", + "Round": 6, + "Motion": "This house prefers direct intervention of Western nations over backing of non-state actors in armed conflicts." + }, + { + "Date": "2015-11-21T00:00:00", + "Tournament": "Brad Smith Debate Tournament 2015", + "Round": "Novice_Final", + "Motion": "THW abolish all publicly accessible sex offender registries" + }, + { + "Date": "2015-11-21T00:00:00", + "Tournament": "Brad Smith Debate Tournament 2015", + "Round": "Open_Final", + "Motion": "THS a single-payer healthcare system." + }, + { + "Date": "2015-11-21T00:00:00", + "Tournament": "JADE College Cup 2015", + "Round": 1, + "Motion": "This house believes that standardized testing, as a requirement for admission to universities, does more harm than good" + }, + { + "Date": "2015-11-21T00:00:00", + "Tournament": "JADE College Cup 2015", + "Round": 2, + "Motion": "This house would institute a mandatory retirement age for politicians" + }, + { + "Date": "2015-11-21T00:00:00", + "Tournament": "JADE College Cup 2015", + "Round": "Open_Final", + "Motion": "This house believes that Britain should pay reparations to Jamaica" + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "Cambridge IV", + "Round": 1, + "Motion": "This house believes that medical staff should be able to opt out of providing treatments on religious or ethical grounds" + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "Cambridge IV", + "Round": 2, + "Motion": "This house regrets the eastward expansion of the European Union during and since 2004" + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "Cambridge IV", + "Round": 3, + "Motion": "This house would prefer a world without religious beliefs" + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "Cambridge IV", + "Round": 4, + "Motion": "This house believes that Israel should have continued the occupation of Gaza" + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "Cambridge IV", + "Round": 5, + "Motion": "This house believes that educational institutions should never attempt to restrict the freedom of expression of students or staff (except when mandated by law)" + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "Cambridge IV", + "Round": "ESL_Semi", + "Motion": "This House Regrets the perception that soldiers are heroes" + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "Cambridge IV", + "Round": "ESL_Final", + "Motion": "THBT Saudi Arabia should limit participation in the Hajj to the citizens of countries that are committed to taking direct action against IS" + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Quarters", + "Motion": "THR the partition of India" + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Semi", + "Motion": "TH Opposes the Sharing Economy" + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Final", + "Motion": "THBT the international community should pay countries near to conflict zones to process, settle and restrict the further movement of refugees" + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": 1, + "Motion": "TH, as an individual feminist, would boycott tinder" + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": 2, + "Motion": "THW publish all salaries" + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": 3, + "Motion": "THW pay direct reparations to the descendants of slaves in the United States" + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": 4, + "Motion": "TH, with the exception of news reporting, would not allow anyone to publish or profit off accounts of violent criminals' crimes." + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": 5, + "Motion": "TH opposes the search for a cure to autism" + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": "Open_Semis", + "Motion": "You are a female Democratic candidates running in the general election for President of the U.S. The results are extremely close going into the vote. One of your staffers tells you, with certainty, that they can right the election of your favour with little chance of detection. THW do it." + }, + { + "Date": "2015-11-20T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": "Open_Finals", + "Motion": "TH prefers a world where memories and accurately recorded and available for external playback." + }, + { + "Date": "2015-11-15T00:00:00", + "Tournament": "Birmingham ESL Novice Mini 2015", + "Round": 1, + "Motion": "THW impose gender and racial quotas in government cabinets" + }, + { + "Date": "2015-11-15T00:00:00", + "Tournament": "Birmingham ESL Novice Mini 2015", + "Round": 2, + "Motion": "Assuming we live in a world where superheroes exist, THW require superheroes to publicly reveal their identities" + }, + { + "Date": "2015-11-15T00:00:00", + "Tournament": "Birmingham ESL Novice Mini 2015", + "Round": 3, + "Motion": "THW pay a living wage to stay-at-home parents" + }, + { + "Date": "2015-11-15T00:00:00", + "Tournament": "Birmingham ESL Novice Mini 2015", + "Round": 4, + "Motion": "THBT environmentalists should launch violent campaigns against major polluting companies" + }, + { + "Date": "2015-11-15T00:00:00", + "Tournament": "Birmingham ESL Novice Mini 2015", + "Round": "Open_Final", + "Motion": "THW dramatically reduce the patent life on life saving drugs" + }, + { + "Date": "2015-11-14T00:00:00", + "Tournament": "SSE Practice Tournament", + "Round": 1, + "Motion": "THBT India should discourage arranged marriages" + }, + { + "Date": "2015-11-14T00:00:00", + "Tournament": "SSE Practice Tournament", + "Round": 2, + "Motion": "THW only invest in those African countries that put adequate effort into the protection of biological diversity" + }, + { + "Date": "2015-11-14T00:00:00", + "Tournament": "SSE Practice Tournament", + "Round": 3, + "Motion": "(Open motion) THW sacrifice anything for safety" + }, + { + "Date": "2015-11-14T00:00:00", + "Tournament": "SSE Practice Tournament", + "Round": 4, + "Motion": "THW offer temporary tax relief to Baltic emigrants coming back home" + }, + { + "Date": "2015-11-14T00:00:00", + "Tournament": "SSE Practice Tournament", + "Round": "Open_Final", + "Motion": "TH, as NATO, W not offer assistance in case of the armed forces of Russia entering any of the Baltic states" + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": 1, + "Motion": "THW aggressively prioritize women for military leadership positions" + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": 2, + "Motion": "THW provide a universal basic income" + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": 3, + "Motion": "THS the Animal Liberation Front" + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": 4, + "Motion": "THW regularly publish the proposed content of international trade deals throughout the entire negotiation process" + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": 5, + "Motion": "THW remove tax-exempt status from religious institutions." + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": "Novice_Finals", + "Motion": "Assuming a low probability of detection, THS scientists who falsify data in order to exagerrate the harms of climate change." + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": "Open_Semis", + "Motion": "TH, as Taiwan, would cease efforts to develop deeper economic, cultural, and diplomatic ties with mainland China." + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": "Open_Finals", + "Motion": "THW enforce Ulysses contracts" + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Oxford IV", + "Round": 1, + "Motion": "This House Would Ban Religious Primary and Secondary Schools" + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Oxford IV", + "Round": 2, + "Motion": "This house believes US immigration policy should only prioritise merit-based standards of acceptance over the reunification of families." + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Oxford IV", + "Round": 3, + "Motion": "This house would end penalty enhancements for hate crimes." + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Oxford IV", + "Round": 4, + "Motion": "This House believes that Western Liberal Democracies should boycott the 2018 FIFA World Cup in Russia." + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Oxford IV", + "Round": 5, + "Motion": "This house would allow opponents of abortion to sign legally-binding contracts with pregnant women, in which they pay those pregnant women not to have an abortion." + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Oxford IV", + "Round": "ESL_Semi", + "Motion": "THW accept 'I was only following orders' as a defence in war crimes trials" + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Oxford IV", + "Round": "ESL_Final", + "Motion": "THR the institutions of marriage and civil partnership" + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Oxford IV", + "Round": "Novice_Final", + "Motion": "THW create and enforce filial responsibility laws (mandating that people take care of their parents)\" - or words to that effect" + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Oxford IV", + "Round": "Open_Quarters", + "Motion": "THR the rise of mega-cities" + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Oxford IV", + "Round": "Open_Semis", + "Motion": "THBT after 50 years of ownership the state should have the right to repossess all works of painting or sculpture for the purpose of public display" + }, + { + "Date": "2015-11-13T00:00:00", + "Tournament": "Oxford IV", + "Round": "Open_Final", + "Motion": "A new planet has been discovered identical to Earth. 1 of 2 systems can be implemented on this planet (or words to that effect). THW implement communism over capitalism." + }, + { + "Date": "2015-11-07T00:00:00", + "Tournament": "Westminster Open 2015", + "Round": 1, + "Motion": "THW ban cosmetic surgery" + }, + { + "Date": "2015-11-07T00:00:00", + "Tournament": "Westminster Open 2015", + "Round": 2, + "Motion": "THBT African countries should adopt English as the principal language of instruction in schools" + }, + { + "Date": "2015-11-07T00:00:00", + "Tournament": "Westminster Open 2015", + "Round": 3, + "Motion": "THW only fund medicine based on its impact on Quality Adjusted Life Years." + }, + { + "Date": "2015-11-07T00:00:00", + "Tournament": "Westminster Open 2015", + "Round": 4, + "Motion": "TH, as the West, would cooperate with Russia in its military intervention in Syria." + }, + { + "Date": "2015-11-07T00:00:00", + "Tournament": "Westminster Open 2015", + "Round": "Novice_Final", + "Motion": "THBT the media should not report on the private lives of politicians" + }, + { + "Date": "2015-11-07T00:00:00", + "Tournament": "Westminster Open 2015", + "Round": "Open_Semis", + "Motion": "THBT female game designers should prioritise over everything else the creation of female characters" + }, + { + "Date": "2015-11-07T00:00:00", + "Tournament": "Westminster Open 2015", + "Round": "Open_Finals", + "Motion": "THW ban scientific research into the genetics of race" + }, + { + "Date": "2015-11-06T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 1, + "Motion": "THW fine news organisations who consistently fail to meet a standard of fair and balanced reporting." + }, + { + "Date": "2015-11-06T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 2, + "Motion": "THW require gaming companies to offer their products free of charge to women, in cases where there is a significant gender disparity in consumption." + }, + { + "Date": "2015-11-06T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 3, + "Motion": "THW abolish and ban all agricultural subsidies in the European Union." + }, + { + "Date": "2015-11-06T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 4, + "Motion": "Assuming you would not be found out, in the event of a terrorist attack on EU soil committed by Islamist extremists, THW fabricate evidence that the attack was committed by the dominant ethnic and socio-economic group, e.g. white Anglo-Saxons." + }, + { + "Date": "2015-11-06T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 5, + "Motion": "" + }, + { + "Date": "2015-11-06T00:00:00", + "Tournament": "Tilbury House IV", + "Round": "Open_Semis", + "Motion": "THW impose sanctions on Erdogan's AKP government." + }, + { + "Date": "2015-11-06T00:00:00", + "Tournament": "Tilbury House IV", + "Round": "Open_Final", + "Motion": "THBT the concept of \"safe spaces\" has no place in any academic activity or environment." + }, + { + "Date": "2015-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2015", + "Round": 1, + "Motion": "That academic social science departments should make active efforts to hire faculty that do not have progressive beliefs." + }, + { + "Date": "2015-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2015", + "Round": 2, + "Motion": "This house would restrict the benefits of the schengen agreement to citizens of the EU only." + }, + { + "Date": "2015-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2015", + "Round": 3, + "Motion": "That the government should regulate automated driving systems (e.g. google driverless cars), so that in the event of a potential accident, the programme makes decisions that prioritise the safety of those outside of the vehicle over that of the passengers within." + }, + { + "Date": "2015-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2015", + "Round": 4, + "Motion": "That non-white actors shouldn’t pursue roles where characters they would portray are based on ethnic stereotypes." + }, + { + "Date": "2015-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2015", + "Round": 5, + "Motion": "That governments in democracies should not control the school history curriculum." + }, + { + "Date": "2015-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2015", + "Round": "Open_Semi", + "Motion": "That people who currently choose to be vegetarian on the grounds of animal welfare should instead consume products where the production process treats animals well." + }, + { + "Date": "2015-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2015", + "Round": "Open_Final", + "Motion": "That technology companies should refuse to provide governments information about their customers, even if that would mean breaking the law." + }, + { + "Date": "2015-10-31T00:00:00", + "Tournament": "Imperial Open 2016", + "Round": 1, + "Motion": "THW compel colleges to pay athletes as professionals." + }, + { + "Date": "2015-10-31T00:00:00", + "Tournament": "Imperial Open 2016", + "Round": 2, + "Motion": "THBT the EU should enforce freedom of movement within current Schengen countries." + }, + { + "Date": "2015-10-31T00:00:00", + "Tournament": "Imperial Open 2016", + "Round": 3, + "Motion": "TH supports Lean In feminism." + }, + { + "Date": "2015-10-31T00:00:00", + "Tournament": "Imperial Open 2016", + "Round": 4, + "Motion": "THW ban adoption agencies which select families on religious grounds" + }, + { + "Date": "2015-10-31T00:00:00", + "Tournament": "Imperial Open 2016", + "Round": "Open_Semis", + "Motion": "THBT states should strive to reduce inequality even after everyone has enough for an acceptable quality of life" + }, + { + "Date": "2015-10-31T00:00:00", + "Tournament": "Imperial Open 2016", + "Round": "Open_Finals", + "Motion": "THW allow students to vote on the curriculum they are taught in schools" + }, + { + "Date": "2015-10-30T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": 1, + "Motion": "THW require a turnout quota be met to legitimize elections." + }, + { + "Date": "2015-10-30T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": 2, + "Motion": "THBT prominent female athletes should reject offers to play in professional male leagues." + }, + { + "Date": "2015-10-30T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": 3, + "Motion": "THW suspend the domestic operations of companies that actively conceal violations of major environmental regulations." + }, + { + "Date": "2015-10-30T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": 4, + "Motion": "TH regrets the decline of formal participation in religious institutions." + }, + { + "Date": "2015-10-30T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": 5, + "Motion": "TH, as Japan, would remove Article 9 from its constitution." + }, + { + "Date": "2015-10-30T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": "Open_Semis", + "Motion": "THW privatize Petrobras." + }, + { + "Date": "2015-10-30T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": "Open_Finals", + "Motion": "Given the existence of a drug that eliminates fear with minimal to no side effects, THW let soldiers opt into using it." + }, + { + "Date": "2015-10-24T00:00:00", + "Tournament": "HWS Fall Classic", + "Round": 1, + "Motion": "THBT developed nations should abolish all protectionist trade policies" + }, + { + "Date": "2015-10-24T00:00:00", + "Tournament": "HWS Fall Classic", + "Round": 2, + "Motion": "THBT sports leagues with systems of promotion and relegation are good for fans." + }, + { + "Date": "2015-10-24T00:00:00", + "Tournament": "HWS Fall Classic", + "Round": 3, + "Motion": "THBT the transgender movement should leave the LGBTQ movement" + }, + { + "Date": "2015-10-24T00:00:00", + "Tournament": "HWS Fall Classic", + "Round": 4, + "Motion": "Deaf culture is the set of social beliefs, behaviours, art, literary traditions, history, values and shared institutions of communities that are influenced by deafness and which use sign languages as the main means of communication. As a hearing parent of a deaf child, THW choose to mainstream your child to the exclusion of participation in deaf culture." + }, + { + "Date": "2015-10-24T00:00:00", + "Tournament": "HWS Fall Classic", + "Round": 5, + "Motion": "" + }, + { + "Date": "2015-10-24T00:00:00", + "Tournament": "HWS Fall Classic", + "Round": "Open_Semis", + "Motion": "" + }, + { + "Date": "2015-10-24T00:00:00", + "Tournament": "HWS Fall Classic", + "Round": "Open_Finals", + "Motion": "THW abolish all US military aid to Saudi Arabia." + }, + { + "Date": "2015-10-24T00:00:00", + "Tournament": "SOAS IV", + "Round": 1, + "Motion": "THW give women two votes in political elections" + }, + { + "Date": "2015-10-24T00:00:00", + "Tournament": "SOAS IV", + "Round": 2, + "Motion": "THBT law enforcement organisations should never provide incentives to gang members to inform on their superiors (e.g. plea bargains or monetary rewards)" + }, + { + "Date": "2015-10-24T00:00:00", + "Tournament": "SOAS IV", + "Round": 3, + "Motion": "TH regrets the decline in oil prices over the last 18 months" + }, + { + "Date": "2015-10-24T00:00:00", + "Tournament": "SOAS IV", + "Round": 4, + "Motion": "THBT Donald Trump’s presidential campaign is good for America" + }, + { + "Date": "2015-10-24T00:00:00", + "Tournament": "SOAS IV", + "Round": 5, + "Motion": "THW allow countries to pay other countries to settle refugees who reach their borders" + }, + { + "Date": "2015-10-24T00:00:00", + "Tournament": "SOAS IV", + "Round": "ESL_Final", + "Motion": "THBT countries, like Switzerland, that were neutral in WW II should pay financial reparations to states occupied by the Nazis" + }, + { + "Date": "2015-10-24T00:00:00", + "Tournament": "SOAS IV", + "Round": "Open_Quarters", + "Motion": "THBT the state should reclaim a fixed proportion of all charitable giving and redistribute it to other charities on the basis of their effectiveness" + }, + { + "Date": "2015-10-24T00:00:00", + "Tournament": "SOAS IV", + "Round": "Open_Semis", + "Motion": "THBT the trans movement should actively seek to separate themselves, their issues and their collective identity from the LGBTQ movement in their campaigns and in the public consciousness" + }, + { + "Date": "2015-10-24T00:00:00", + "Tournament": "SOAS IV", + "Round": "Open_Final", + "Motion": "THW prefer a world in which there are no extreme emotions such as boiling rage, falling madly in love, extreme grief etc" + }, + { + "Date": "2015-10-17T00:00:00", + "Tournament": "KCL IV", + "Round": 1, + "Motion": "THW cap every company's highest salary at 10x the lowest salary within that company." + }, + { + "Date": "2015-10-17T00:00:00", + "Tournament": "KCL IV", + "Round": 2, + "Motion": "In countries with few female politicians, THBT it is good to have a politically active First Lady." + }, + { + "Date": "2015-10-17T00:00:00", + "Tournament": "KCL IV", + "Round": 3, + "Motion": "THW introduce a tax on \"low brow\" entertainment in order to subsidise \"high brow\" art." + }, + { + "Date": "2015-10-17T00:00:00", + "Tournament": "KCL IV", + "Round": 4, + "Motion": "THBT criminal justice policy should be outsourced to technocrats instead of elected representatives." + }, + { + "Date": "2015-10-17T00:00:00", + "Tournament": "KCL IV", + "Round": "Novice_Final", + "Motion": "TH as Western Countries ( EU, US, Canada, Australia) would stop selling arms to Saudi Arabia." + }, + { + "Date": "2015-10-17T00:00:00", + "Tournament": "KCL IV", + "Round": "Open_Semis", + "Motion": "THBT militaries should aggressively engage in the genetic and bionic enhancement of consenting soldiers." + }, + { + "Date": "2015-10-17T00:00:00", + "Tournament": "KCL IV", + "Round": "Open_Final", + "Motion": "THBT the US and it's allies should announce Intentions to capture and try, as opposed to assassinate the leaders of Da'esh (IS)" + }, + { + "Date": "2015-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": 1, + "Motion": "THW ban companies from using fear as a tactic in advertising." + }, + { + "Date": "2015-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": 2, + "Motion": "THBT the police should work with hacktivists" + }, + { + "Date": "2015-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": 3, + "Motion": "THO the notion that marriage is meant to be long-lasting" + }, + { + "Date": "2015-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": 4, + "Motion": "Assuming Russia agrees to help fight ISIS, TH, as the US, would cease funding to Syrian rebel groups" + }, + { + "Date": "2015-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": 5, + "Motion": "THO films/TV shows that depict a minority narrative through a white heteronormative lense" + }, + { + "Date": "2015-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": "Open_Quarters", + "Motion": "THR the rise of the sharing economy" + }, + { + "Date": "2015-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": "Open_Semis", + "Motion": "THBT treasure hunters should have possession of any artefacts they find" + }, + { + "Date": "2015-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": "Open_Finals", + "Motion": "THBT individuals should not share their political views on social media platforms" + }, + { + "Date": "2015-10-11T00:00:00", + "Tournament": "Claremont 2015", + "Round": 1, + "Motion": "Disinviting college and university speakers does more good than harm." + }, + { + "Date": "2015-10-11T00:00:00", + "Tournament": "Claremont 2015", + "Round": 2, + "Motion": "Low-level offenders shopuld have their fates determined by neighbors rather than traditional courts." + }, + { + "Date": "2015-10-11T00:00:00", + "Tournament": "Claremont 2015", + "Round": 3, + "Motion": "There should be no space missions without United Nations scientific approval." + }, + { + "Date": "2015-10-11T00:00:00", + "Tournament": "Claremont 2015", + "Round": 4, + "Motion": "The sharing economy does more harm than good." + }, + { + "Date": "2015-10-11T00:00:00", + "Tournament": "Claremont 2015", + "Round": 5, + "Motion": "Government should create public space on the Internet for social protest and political free speech." + }, + { + "Date": "2015-10-11T00:00:00", + "Tournament": "Claremont 2015", + "Round": 6, + "Motion": "This House would establish a universal passport." + }, + { + "Date": "2015-10-11T00:00:00", + "Tournament": "Claremont 2015", + "Round": 7, + "Motion": "The US federal government should bail out states and cities." + }, + { + "Date": "2015-10-11T00:00:00", + "Tournament": "Claremont 2015", + "Round": 8, + "Motion": "This House supports a permanent seat with veto power on the UN Security Council for Africa." + }, + { + "Date": "2015-10-11T00:00:00", + "Tournament": "Claremont 2015", + "Round": "Open_Semis", + "Motion": "Colonial powers should pay reparations for the Atlantic slave trade" + }, + { + "Date": "2015-10-11T00:00:00", + "Tournament": "Claremont 2015", + "Round": "Open_Final", + "Motion": "The US federal government should rewrite its constitution every 25 years" + }, + { + "Date": "2015-10-10T00:00:00", + "Tournament": "UCD IV", + "Round": 1, + "Motion": "THW require approval from local referenda for all major land development decisions (e.g stadiums, airport extensions, railways etc.)" + }, + { + "Date": "2015-10-10T00:00:00", + "Tournament": "UCD IV", + "Round": 2, + "Motion": "THS the July 2015 decision of the UK government to deny a visa to Tyler the Creator" + }, + { + "Date": "2015-10-10T00:00:00", + "Tournament": "UCD IV", + "Round": 3, + "Motion": "THBT the West should abandon its foreign policy aim of removing Assad from power" + }, + { + "Date": "2015-10-10T00:00:00", + "Tournament": "UCD IV", + "Round": 4, + "Motion": "THW allow asylum seekers to work" + }, + { + "Date": "2015-10-10T00:00:00", + "Tournament": "UCD IV", + "Round": 5, + "Motion": "THBT the government should only fund further education courses that have high graduate employment rates" + }, + { + "Date": "2015-10-10T00:00:00", + "Tournament": "UCD IV", + "Round": "Open_Semis", + "Motion": "THBT political parties’ Cabinets and Shadow Cabinets should be elected by the members of that party" + }, + { + "Date": "2015-10-10T00:00:00", + "Tournament": "UCD IV", + "Round": "Open_Final", + "Motion": "THR the overwhelming narrative of good triumphing over evil in children’s entertainment" + }, + { + "Date": "2015-10-02T00:00:00", + "Tournament": "Yale IV", + "Round": 1, + "Motion": "THW ban religious K-12 schools" + }, + { + "Date": "2015-10-02T00:00:00", + "Tournament": "Yale IV", + "Round": 2, + "Motion": "THBT voters should be able to override the votes of their elected representatives on individual bills by two-thirds or greater referendum." + }, + { + "Date": "2015-10-02T00:00:00", + "Tournament": "Yale IV", + "Round": 3, + "Motion": "THBT developed nations should pay reparations to developing nations that have experienced significant adverse consequences from climate change" + }, + { + "Date": "2015-10-02T00:00:00", + "Tournament": "Yale IV", + "Round": 4, + "Motion": "TH rejects the media's intentional humanization of those responsible for heinous acts or crimes." + }, + { + "Date": "2015-10-02T00:00:00", + "Tournament": "Yale IV", + "Round": 5, + "Motion": "THBT the US should join the Asian Infrastructure Investment Bank" + }, + { + "Date": "2015-10-02T00:00:00", + "Tournament": "Yale IV", + "Round": 6, + "Motion": "Given the existence of a drug that dramatically increases mental capacity, THBT universities should ban and test for student use of the drug." + }, + { + "Date": "2015-10-02T00:00:00", + "Tournament": "Yale IV", + "Round": "Novice_Finals", + "Motion": "THBT American feminists have an obligation to vote for a female presidential candidate." + }, + { + "Date": "2015-10-02T00:00:00", + "Tournament": "Yale IV", + "Round": "Open_Quarters", + "Motion": "THW not vote for protest candidates in primary elections." + }, + { + "Date": "2015-10-02T00:00:00", + "Tournament": "Yale IV", + "Round": "Open_Semis", + "Motion": "THW legalize graffiti in public spaces" + }, + { + "Date": "2015-10-02T00:00:00", + "Tournament": "Yale IV", + "Round": "Open_Finals", + "Motion": "THBT the EU should offer Greece full debt relief in exchange for its housing at least 200,000 Syrian refugees." + }, + { + "Date": "2015-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 1, + "Motion": "THW prioritize support of domestic reporters in areas of conflict over the use of Western reporting" + }, + { + "Date": "2015-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 2, + "Motion": "THW ban private schools" + }, + { + "Date": "2015-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 3, + "Motion": "THS government collection of private information as a security measure" + }, + { + "Date": "2015-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 4, + "Motion": "THW abolish industry awards (i.e. the Oscars, the Emmys, etc.)" + }, + { + "Date": "2015-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 5, + "Motion": "THW only give aid to devleoping countries that have good environmental policy." + }, + { + "Date": "2015-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 6, + "Motion": "THW enforce a Cap and Trade system for refugee quotas." + }, + { + "Date": "2015-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": "Open_Semis", + "Motion": "THS the use of feminist narratives in advertising for beauty products" + }, + { + "Date": "2015-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": "Open_Finals", + "Motion": "THR the prominence of professional sports in American pop culture." + }, + { + "Date": "2015-09-06T00:00:00", + "Tournament": "Joynt Scroll 2015", + "Round": 1, + "Motion": "This house believes that President Obama should pardon those convicted of low level drug possession charges en masse" + }, + { + "Date": "2015-09-06T00:00:00", + "Tournament": "Joynt Scroll 2015", + "Round": 2, + "Motion": "This house supports the establishment of zero rating platforms in the developing world" + }, + { + "Date": "2015-09-06T00:00:00", + "Tournament": "Joynt Scroll 2015", + "Round": 3, + "Motion": "This house believes that socially progressive organisations and institutions should aggressively pursue policies to accommodate underprivileged groups, such as mandatory preferred gender pronoun introductions, trigger warnings prior to discussion on sensitive topics and the creation of autonomous spaces" + }, + { + "Date": "2015-09-06T00:00:00", + "Tournament": "Joynt Scroll 2015", + "Round": 4, + "Motion": "This house believes that Greece is better outside the Euro" + }, + { + "Date": "2015-09-06T00:00:00", + "Tournament": "Joynt Scroll 2015", + "Round": 5, + "Motion": "You are an incredibly respected art critic. You own a private art gallery which the rich, famous, and influential fly from around the world to visit. Recently a photograph has come to prominence among elite art circles, and as a consequence has become incredibly sought after - hailed for its gritty realism. It is a graphic photograph of a woman killed and raped by her husband, taken by police as evidence. You have been offered the original photograph for your collection. This house would refuse" + }, + { + "Date": "2015-09-06T00:00:00", + "Tournament": "Joynt Scroll 2015", + "Round": 6, + "Motion": "This house believes that presidential primaries in the United States should be placed on the same day" + }, + { + "Date": "2015-09-06T00:00:00", + "Tournament": "Joynt Scroll 2015", + "Round": "Open_Semi", + "Motion": "This house believes that developing countries should employ western professionals to run their courts and police forces." + }, + { + "Date": "2015-08-28T00:00:00", + "Tournament": "Athens Open 2015", + "Round": 1, + "Motion": "THW tax religious institutions at the same levels as for-profit businesses." + }, + { + "Date": "2015-08-28T00:00:00", + "Tournament": "Athens Open 2015", + "Round": 2, + "Motion": "TH welcomes the rise of Anti-Establishment Candidates, such as Bernie Sanders, Donald Trump, and Jeremy Corbyn." + }, + { + "Date": "2015-08-28T00:00:00", + "Tournament": "Athens Open 2015", + "Round": 3, + "Motion": "THS the leaking of Ashley Madison data" + }, + { + "Date": "2015-08-28T00:00:00", + "Tournament": "Athens Open 2015", + "Round": 4, + "Motion": "THW prohibit the transfer of football players outside their home leagues until the age of 26." + }, + { + "Date": "2015-08-28T00:00:00", + "Tournament": "Athens Open 2015", + "Round": 5, + "Motion": "TH, as Iran, would covertly continue developing its nuclear weapons program." + }, + { + "Date": "2015-08-28T00:00:00", + "Tournament": "Athens Open 2015", + "Round": "Open_Semis", + "Motion": "THBT Serbia and FYR Macedonia should immediately close their borders to asylum seekers and undocumented migrants." + }, + { + "Date": "2015-08-28T00:00:00", + "Tournament": "Athens Open 2015", + "Round": "Open_Final", + "Motion": "THBT Greece should return to the Drachma" + }, + { + "Date": "2015-08-03T00:00:00", + "Tournament": "Vienna EUDC 2015", + "Round": 1, + "Motion": "This House would pay all elected politicians the median wage in their country." + }, + { + "Date": "2015-08-03T00:00:00", + "Tournament": "Vienna EUDC 2015", + "Round": 2, + "Motion": "This House believes that when multi-national corporations conduct any business in Western states, these nations should enforce their environmental standards at all stages of production." + }, + { + "Date": "2015-08-03T00:00:00", + "Tournament": "Vienna EUDC 2015", + "Round": 3, + "Motion": "This House believes that Western states should not use private military contractors in combat." + }, + { + "Date": "2015-08-03T00:00:00", + "Tournament": "Vienna EUDC 2015", + "Round": 4, + "Motion": "This House would ban any treatment, service or ritual from claiming a physical healing effect until it is tested and proven more effective than a placebo by a national regulator." + }, + { + "Date": "2015-08-03T00:00:00", + "Tournament": "Vienna EUDC 2015", + "Round": 5, + "Motion": "This House believes that the European Union should lift its arms embargo on China." + }, + { + "Date": "2015-08-03T00:00:00", + "Tournament": "Vienna EUDC 2015", + "Round": 6, + "Motion": "This House would only allow the media and campagning organisations to depict or publish information about the deceased in a tragedy with the explicit permission of the family." + }, + { + "Date": "2015-08-03T00:00:00", + "Tournament": "Vienna EUDC 2015", + "Round": 7, + "Motion": "TH believes that the West should stop all attempts to gather information or intelligence by deception and/or coercion of foreign citizens" + }, + { + "Date": "2015-08-03T00:00:00", + "Tournament": "Vienna EUDC 2015", + "Round": 8, + "Motion": "TH believes that it is legitimate for individuals to punish people they deem to have committed online harassment by revealing their identity online." + }, + { + "Date": "2015-08-03T00:00:00", + "Tournament": "Vienna EUDC 2015", + "Round": 9, + "Motion": "THW introduce a 100% inheritance tax" + }, + { + "Date": "2015-08-03T00:00:00", + "Tournament": "Vienna EUDC 2015", + "Round": "ESL_Quarters", + "Motion": "TH would legalise surrogacy for profit in Western Liberal Democracies" + }, + { + "Date": "2015-08-03T00:00:00", + "Tournament": "Vienna EUDC 2015", + "Round": "ESL_Semis", + "Motion": "TH would introduce a mandatory term of at least 1 year of non-military national service for 18year olds" + }, + { + "Date": "2015-08-03T00:00:00", + "Tournament": "Vienna EUDC 2015", + "Round": "ESL_Semis_Aborted", + "Motion": "TH would allow EU citizens to donate to political parties in any EU state" + }, + { + "Date": "2015-08-03T00:00:00", + "Tournament": "Vienna EUDC 2015", + "Round": "ESL_Final", + "Motion": "TH believes that parents of a musical child genius have a moral obligation to push that child to maximise their musical potential." + }, + { + "Date": "2015-08-03T00:00:00", + "Tournament": "Vienna EUDC 2015", + "Round": "Open_Quarters", + "Motion": "TH would prohibit businesses from taking a public position on social issues" + }, + { + "Date": "2015-08-03T00:00:00", + "Tournament": "Vienna EUDC 2015", + "Round": "Open_Semis", + "Motion": "TH would require all defendants in criminal cases to be represented only by state-employed lawyers." + }, + { + "Date": "2015-08-03T00:00:00", + "Tournament": "Vienna EUDC 2015", + "Round": "Open_Final", + "Motion": "TH would treat the deaths of soldiers as regrettable losses of lives rather than examples of heroism." + }, + { + "Date": "2015-07-30T00:00:00", + "Tournament": "Ljubljana IV", + "Round": 1, + "Motion": "THBT the media should not report on the personal lives of politicians" + }, + { + "Date": "2015-07-30T00:00:00", + "Tournament": "Ljubljana IV", + "Round": 2, + "Motion": "THS the use of Sanctuary City Policies by US cities" + }, + { + "Date": "2015-07-30T00:00:00", + "Tournament": "Ljubljana IV", + "Round": 3, + "Motion": "THW Require all school history curricular to focus 50% of their time and resources on women" + }, + { + "Date": "2015-07-30T00:00:00", + "Tournament": "Ljubljana IV", + "Round": 4, + "Motion": "THBT the South Korean Government should break up Chaebol conglomerates" + }, + { + "Date": "2015-07-30T00:00:00", + "Tournament": "Ljubljana IV", + "Round": 5, + "Motion": "THBT, in new democracies, military leaders should not be allowed to run for public office" + }, + { + "Date": "2015-07-30T00:00:00", + "Tournament": "Ljubljana IV", + "Round": "Open_Semis", + "Motion": "TH, as Dr Bob Hare, would not make the pyschopathy checklist publicly available" + }, + { + "Date": "2015-07-30T00:00:00", + "Tournament": "Ljubljana IV", + "Round": "Open_Final", + "Motion": "THW use NATO forces to defend sites of significant cultural and historical importance from permanent destruction" + }, + { + "Date": "2015-07-28T00:00:00", + "Tournament": "Rijeka Open", + "Round": 1, + "Motion": "THW criminalize the buyer and not the seller of sexual services." + }, + { + "Date": "2015-07-28T00:00:00", + "Tournament": "Rijeka Open", + "Round": 2, + "Motion": "THBT western liberal democracies should replace their aid programs with an \"effective altruism\" tax, and give revenue to the most effective available non-governmental organisations or charities." + }, + { + "Date": "2015-07-28T00:00:00", + "Tournament": "Rijeka Open", + "Round": 3, + "Motion": "THW allow victims to significantly reduce the sentence of their wrongdoers." + }, + { + "Date": "2015-07-28T00:00:00", + "Tournament": "Rijeka Open", + "Round": 4, + "Motion": "THW prefer a world in which all art were anonymous over a world where it were always attributed to the artist." + }, + { + "Date": "2015-07-28T00:00:00", + "Tournament": "Rijeka Open", + "Round": 5, + "Motion": "The European Council comprises the heads of state of the member states of the EU, along with the council’s own president and the president of the commission M" + }, + { + "Date": "2015-07-28T00:00:00", + "Tournament": "Rijeka Open", + "Round": "Open_Semis", + "Motion": "THBT states should provide citizens with an unconditional income that ensures a lower-middle class standard of living, regardless of their employment status" + }, + { + "Date": "2015-07-28T00:00:00", + "Tournament": "Rijeka Open", + "Round": "Open_Final", + "Motion": "Assuming that the technology existed, THW erase history from our collective memory." + }, + { + "Date": "2015-07-25T00:00:00", + "Tournament": "SOAS Open 2015", + "Round": 1, + "Motion": "This House would heavily financially incentivise companies to take current prisoners as interns or apprentices" + }, + { + "Date": "2015-07-25T00:00:00", + "Tournament": "SOAS Open 2015", + "Round": 2, + "Motion": "This House, as a vegan, would actively and persistently seek to convert those around you to veganism or vegetarianism" + }, + { + "Date": "2015-07-25T00:00:00", + "Tournament": "SOAS Open 2015", + "Round": 3, + "Motion": "This House regrets the large number of UN resolutions issued against Israel." + }, + { + "Date": "2015-07-25T00:00:00", + "Tournament": "SOAS Open 2015", + "Round": 4, + "Motion": "This House would disproportionately hire African Americans in the US police force" + }, + { + "Date": "2015-07-25T00:00:00", + "Tournament": "SOAS Open 2015", + "Round": "Open_Finals", + "Motion": "This House opposes the commodification of feminism." + }, + { + "Date": "2015-07-24T00:00:00", + "Tournament": "UCT 150th Year Open", + "Round": 0, + "Motion": "Assuming the owners of Ashley Madison refuse to shut down the website, TH as the Impact Team would release the user data" + }, + { + "Date": "2015-07-24T00:00:00", + "Tournament": "UCT 150th Year Open", + "Round": 1, + "Motion": "THW Create Special School for LGBT+ Youths" + }, + { + "Date": "2015-07-24T00:00:00", + "Tournament": "UCT 150th Year Open", + "Round": 2, + "Motion": "THBT democracies should give migrant workers a vote in national elections" + }, + { + "Date": "2015-07-24T00:00:00", + "Tournament": "UCT 150th Year Open", + "Round": 3, + "Motion": "THBT leaders of minority religions within Europe should strongly encourage their congregations to refrain from overt public displays of their faith (assuming theologically possible" + }, + { + "Date": "2015-07-24T00:00:00", + "Tournament": "UCT 150th Year Open", + "Round": 4, + "Motion": "THW grant artists a percentage of the resale value of their artwork (the amount the art is sold on for if and when the initial inquirer decides to sell it on" + }, + { + "Date": "2015-07-24T00:00:00", + "Tournament": "UCT 150th Year Open", + "Round": 5, + "Motion": "THBT the NAACP should have encouraged Rachel Dolezal to stay on as the Spokane chapter President" + }, + { + "Date": "2015-07-24T00:00:00", + "Tournament": "UCT 150th Year Open", + "Round": 6, + "Motion": "TH Regrets that South Africa did not turn Omar Al-Bashir over to the International Criminal Court" + }, + { + "Date": "2015-07-24T00:00:00", + "Tournament": "UCT 150th Year Open", + "Round": "Open_Semis", + "Motion": "THBT the International Monetary Fund should require collateral for national bailouts." + }, + { + "Date": "2015-07-24T00:00:00", + "Tournament": "UCT 150th Year Open", + "Round": "Open_Final", + "Motion": "THBT South Africa should ban apartheid symbols and flags, along with those of other oppressive regimes." + }, + { + "Date": "2015-07-16T00:00:00", + "Tournament": "EuroDebate 2015", + "Round": 1, + "Motion": "THW heavily subsidize art that glorifies the working class." + }, + { + "Date": "2015-07-16T00:00:00", + "Tournament": "EuroDebate 2015", + "Round": 2, + "Motion": "THW assess pupils on individual academic development instead of standardized examination results." + }, + { + "Date": "2015-07-16T00:00:00", + "Tournament": "EuroDebate 2015", + "Round": 3, + "Motion": "THBT social media should remove content it deems to be offensive to religions." + }, + { + "Date": "2015-07-16T00:00:00", + "Tournament": "EuroDebate 2015", + "Round": "Open_Final", + "Motion": "THR SCOTUS’s decision to legalize same sex marriage." + }, + { + "Date": "2015-07-10T00:00:00", + "Tournament": "BBU Open 2015", + "Round": 1, + "Motion": "THS the use of signature strikes as part of American military policy." + }, + { + "Date": "2015-07-10T00:00:00", + "Tournament": "BBU Open 2015", + "Round": 2, + "Motion": "THW require that all international debt bailout agreements are approved by a referendum of the country receiving that bailout" + }, + { + "Date": "2015-07-10T00:00:00", + "Tournament": "BBU Open 2015", + "Round": 3, + "Motion": "THW tax low-brow entertainment (e.g WWE wrestling, Keeping Up with The Kardashians, mainstream popular music) in order to subsidise high-brow art (e.g. Shakespeare, Bach, some arthouse film)" + }, + { + "Date": "2015-07-10T00:00:00", + "Tournament": "BBU Open 2015", + "Round": 4, + "Motion": "THBT a simple majority of the legislature of an established democracy should be able to change or overturn any piece of legislation (including constitutions)" + }, + { + "Date": "2015-07-10T00:00:00", + "Tournament": "BBU Open 2015", + "Round": 5, + "Motion": "THW ban working more than 35 hours a week (with no exceptions)." + }, + { + "Date": "2015-07-10T00:00:00", + "Tournament": "BBU Open 2015", + "Round": "Open_Semis", + "Motion": "THW give control over all aspects education policy to local authorities" + }, + { + "Date": "2015-07-10T00:00:00", + "Tournament": "BBU Open 2015", + "Round": "Open_Final", + "Motion": "THR the perception of soldiers as heroes." + }, + { + "Date": "2015-06-27T00:00:00", + "Tournament": "Tallinn Tech Open", + "Round": 1, + "Motion": "THW only give unemployment benefits to individuals if they agreed to relocate to areas where employment is significantly more likely" + }, + { + "Date": "2015-06-27T00:00:00", + "Tournament": "Tallinn Tech Open", + "Round": 2, + "Motion": "THW require superheroes to publicly reveal their identities" + }, + { + "Date": "2015-06-27T00:00:00", + "Tournament": "Tallinn Tech Open", + "Round": 3, + "Motion": "TH, as a Jeff Gordon, would publicly come out" + }, + { + "Date": "2015-06-27T00:00:00", + "Tournament": "Tallinn Tech Open", + "Round": 4, + "Motion": "TH, as Harry Potter, would have used The Imperius Curse on Voldemort and control him to do good for the society" + }, + { + "Date": "2015-06-27T00:00:00", + "Tournament": "Tallinn Tech Open", + "Round": 5, + "Motion": "THW criminalize the use of deep web regardless of the content it is used for" + }, + { + "Date": "2015-06-27T00:00:00", + "Tournament": "Tallinn Tech Open", + "Round": "Open_Semis", + "Motion": "THR the glorification of startup culture" + }, + { + "Date": "2015-06-27T00:00:00", + "Tournament": "Tallinn Tech Open", + "Round": "Open_Final", + "Motion": "This House as the President of the United States would opt to destroy the alien ship." + }, + { + "Date": "2015-06-14T00:00:00", + "Tournament": "English Open 2015", + "Round": 1, + "Motion": "TH, as police forces, would accept applicants with a criminal record." + }, + { + "Date": "2015-06-14T00:00:00", + "Tournament": "English Open 2015", + "Round": 2, + "Motion": "THBT a referendum on Scotland’s independence should include all UK citizens." + }, + { + "Date": "2015-06-14T00:00:00", + "Tournament": "English Open 2015", + "Round": 3, + "Motion": "TH, as the WW2 Allies, would emphasize the contribution of the Red Army to defeat the Nazis" + }, + { + "Date": "2015-06-14T00:00:00", + "Tournament": "English Open 2015", + "Round": "Open_Semis", + "Motion": "This house would rather declaration of inconsistency than judicial supremacy." + }, + { + "Date": "2015-06-14T00:00:00", + "Tournament": "English Open 2015", + "Round": "Open_Final", + "Motion": "This house believes that every vote in parliament (EU, State…) should be behind the veil of ignorance." + }, + { + "Date": "2015-06-12T00:00:00", + "Tournament": "SSE Riga Debate Academy", + "Round": 1, + "Motion": "THW require men to take paternity leave" + }, + { + "Date": "2015-06-12T00:00:00", + "Tournament": "SSE Riga Debate Academy", + "Round": 2, + "Motion": "THW ban strikes in times of economic instability" + }, + { + "Date": "2015-06-12T00:00:00", + "Tournament": "SSE Riga Debate Academy", + "Round": 3, + "Motion": "THBT states should ban their citizens from travelling as tourists to countries with poor human rights record" + }, + { + "Date": "2015-06-12T00:00:00", + "Tournament": "SSE Riga Debate Academy", + "Round": 4, + "Motion": "THW ban convicted criminals from holding elected office" + }, + { + "Date": "2015-06-12T00:00:00", + "Tournament": "SSE Riga Debate Academy", + "Round": "Open_Final", + "Motion": "THW introduce mandatory military service" + }, + { + "Date": "2015-06-05T00:00:00", + "Tournament": "Tech Open 2015", + "Round": 1, + "Motion": "THW compel all students returning from educational tours in the Nazi extermination camps to participate in an educational tour with the organization “Breaking Silence” (An organization which criticizes IDF actions)" + }, + { + "Date": "2015-06-05T00:00:00", + "Tournament": "Tech Open 2016", + "Round": 2, + "Motion": "THW compel large companies with paid internship programs (Such as McKinsey and Google) to accept a quota of אוכלוסיות מוחלשות as interns." + }, + { + "Date": "2015-06-05T00:00:00", + "Tournament": "Tech Open 2017", + "Round": 3, + "Motion": "THW give higher primates protections similar to those given to refugees." + }, + { + "Date": "2015-06-05T00:00:00", + "Tournament": "Tech Open 2018", + "Round": 4, + "Motion": "THW accept Intel’s proposal." + }, + { + "Date": "2015-06-05T00:00:00", + "Tournament": "Tech Open 2019", + "Round": "Open_Final", + "Motion": "THW, as Japan, ban geishas." + }, + { + "Date": "2015-05-28T00:00:00", + "Tournament": "BRAC Bank Great Gender Debates 2015", + "Round": 1, + "Motion": "TH supports the decision of female athletes to use their sexuality to market themselves." + }, + { + "Date": "2015-05-28T00:00:00", + "Tournament": "BRAC Bank Great Gender Debates 2015", + "Round": 2, + "Motion": "THW publicly flog the perpetrators of minor sexual misconduct such as harassment and eve teasing." + }, + { + "Date": "2015-05-28T00:00:00", + "Tournament": "BRAC Bank Great Gender Debates 2015", + "Round": 3, + "Motion": "THS international commercial surrogacy" + }, + { + "Date": "2015-05-28T00:00:00", + "Tournament": "BRAC Bank Great Gender Debates 2015", + "Round": 4, + "Motion": "THBT the T should leave the LGB" + }, + { + "Date": "2015-05-28T00:00:00", + "Tournament": "BRAC Bank Great Gender Debates 2015", + "Round": 5, + "Motion": "THW ban rape pornography" + }, + { + "Date": "2015-05-28T00:00:00", + "Tournament": "BRAC Bank Great Gender Debates 2015", + "Round": "Open_Semi", + "Motion": "THBT states should prosecute sexist or misogynistic comments" + }, + { + "Date": "2015-05-28T00:00:00", + "Tournament": "BRAC Bank Great Gender Debates 2015", + "Round": "Open_Final", + "Motion": "THBT true women's liberation can never coexist with organized religion" + }, + { + "Date": "2015-05-20T00:00:00", + "Tournament": "Drishty English Debate Championships 2015", + "Round": 1, + "Motion": "THW deny all government subsidized health benefits for individuals who choose to lead an unhealthy lifestyle" + }, + { + "Date": "2015-05-20T00:00:00", + "Tournament": "Drishty English Debate Championships 2015", + "Round": 2, + "Motion": "THW ban all youth wings of political parties in developing countries" + }, + { + "Date": "2015-05-20T00:00:00", + "Tournament": "Drishty English Debate Championships 2015", + "Round": 3, + "Motion": "THW give less punishment to the poor for petty crimes" + }, + { + "Date": "2015-05-20T00:00:00", + "Tournament": "Drishty English Debate Championships 2015", + "Round": 4, + "Motion": "THW not allow countries undertaking military intervention abroad to harvest natural resources while they are there" + }, + { + "Date": "2015-05-20T00:00:00", + "Tournament": "Drishty English Debate Championships 2015", + "Round": "Open_Semi", + "Motion": "Assuming the technology exists, THW remove aggression from human behaviour" + }, + { + "Date": "2015-05-20T00:00:00", + "Tournament": "Drishty English Debate Championships 2015", + "Round": "Open_Final", + "Motion": "THW grant protesters the right to use non-lethal weapons to violently, but proportionately retaliate" + }, + { + "Date": "2015-05-17T00:00:00", + "Tournament": "Israeli Open Championship 2015", + "Round": 1, + "Motion": "THBT monogamy is outdated (Long term exclusive relationships)." + }, + { + "Date": "2015-05-17T00:00:00", + "Tournament": "Israeli Open Championship 2015", + "Round": 2, + "Motion": "TH prefers that European Jews immigrate to Israel." + }, + { + "Date": "2015-05-17T00:00:00", + "Tournament": "Israeli Open Championship 2015", + "Round": 3, + "Motion": "THW give the Commission of Future Generations a veto over legislation." + }, + { + "Date": "2015-05-17T00:00:00", + "Tournament": "Israeli Open Championship 2015", + "Round": "Open_Semis", + "Motion": "THW found a state for African Americans, as the 51st American state." + }, + { + "Date": "2015-05-17T00:00:00", + "Tournament": "Israeli Open Championship 2015", + "Round": "Open_Final", + "Motion": "TH regrets the classification of human behaviors (Such as depression, eating disorders, etc.) as diseases." + }, + { + "Date": "2015-05-15T00:00:00", + "Tournament": "Sabanci University International Debate Open", + "Round": 1, + "Motion": "THW legalise squatting" + }, + { + "Date": "2015-05-15T00:00:00", + "Tournament": "Sabanci University International Debate Open", + "Round": 2, + "Motion": "THBT FIFA should comply with the demand that they suspend Israel’s membership of FIFA until Israel allows Palestine to freely compete in international football" + }, + { + "Date": "2015-05-15T00:00:00", + "Tournament": "Sabanci University International Debate Open", + "Round": 3, + "Motion": "THBT the Turkish government should actively encourage Turkish migrants living in Europe to return to Turkey" + }, + { + "Date": "2015-05-15T00:00:00", + "Tournament": "Sabanci University International Debate Open", + "Round": 4, + "Motion": "THBT the State should pay for the education of all students at all levels" + }, + { + "Date": "2015-05-15T00:00:00", + "Tournament": "Sabanci University International Debate Open", + "Round": 5, + "Motion": "THW remove all legal barriers on the selection of embryo’s (including but not limited to selecting on gender, physical or mental disability, etc.)" + }, + { + "Date": "2015-05-15T00:00:00", + "Tournament": "Sabanci University International Debate Open", + "Round": 6, + "Motion": "THBT newlyweds should take a Rumspringa after one year of marriage" + }, + { + "Date": "2015-05-15T00:00:00", + "Tournament": "Sabanci University International Debate Open", + "Round": "Open_Semis", + "Motion": "THW renationalise essential services that were previously privatised (such as water, electricity and gas)" + }, + { + "Date": "2015-05-15T00:00:00", + "Tournament": "Sabanci University International Debate Open", + "Round": "Open_Final", + "Motion": "THW produce a telenovella about Ataturk’s life that seeks to glorify Kemalism" + }, + { + "Date": "2015-05-08T00:00:00", + "Tournament": "Helsinki Open", + "Round": 1, + "Motion": "THW give development aid only to countries which commit to and demonstrate the implementation of humanitarian values consistent with that of the donor country (for example LGBT rights, women´s rights)" + }, + { + "Date": "2015-05-08T00:00:00", + "Tournament": "Helsinki Open", + "Round": 2, + "Motion": "THW ban the display of art created with the intented purpose or reasonably likely outcome of creating offence" + }, + { + "Date": "2015-05-08T00:00:00", + "Tournament": "Helsinki Open", + "Round": 3, + "Motion": "Assuming that a minimum standard of welfare has been achieved, THBT states should make no further attempt to reduce inequality." + }, + { + "Date": "2015-05-08T00:00:00", + "Tournament": "Helsinki Open", + "Round": 4, + "Motion": "THBT it is in the interest of the European Union that the United Kingdom leaves" + }, + { + "Date": "2015-05-08T00:00:00", + "Tournament": "Helsinki Open", + "Round": 5, + "Motion": "TH regrets the approach taken by prominent business women of giving advice on succeeding in the business world as it is rather than highlighting the need to drastically change that world" + }, + { + "Date": "2015-05-08T00:00:00", + "Tournament": "Helsinki Open", + "Round": "Open_Semis", + "Motion": "THW weight the votes of people within demographic groupings to represent the relative size of each grouping within the general population, not just those who vote (Demographic groupings are characteristics such as race, gender, wealth, age)" + }, + { + "Date": "2015-05-08T00:00:00", + "Tournament": "Helsinki Open", + "Round": "Open_Final", + "Motion": "Assuming a technology exists which causes people contemplating committing violent crimes to feel nausea and pain, rendering them unable to think about or commit a crime" + }, + { + "Date": "2015-05-01T00:00:00", + "Tournament": "Cape Town Open", + "Round": 1, + "Motion": "In an ideal feminist world, this house prefers a societal norm of having stay at home dads to a societal norm of having both parents working" + }, + { + "Date": "2015-05-01T00:00:00", + "Tournament": "Cape Town Open", + "Round": 2, + "Motion": "This house supports a heavy-handed military response to xenophobic violence" + }, + { + "Date": "2015-05-01T00:00:00", + "Tournament": "Cape Town Open", + "Round": 3, + "Motion": "TH regrets the rise of the certified artist (as certified through official art schools, degrees, or programmes" + }, + { + "Date": "2015-05-01T00:00:00", + "Tournament": "Cape Town Open", + "Round": 4, + "Motion": "As a black middle-class South African, this house would vote ANC" + }, + { + "Date": "2015-05-01T00:00:00", + "Tournament": "Cape Town Open", + "Round": 5, + "Motion": "Assuming that technology existed that would allow one to transfer years of their natural life (the time one would live, if not cut down unnaturally by disease or accident" + }, + { + "Date": "2015-05-01T00:00:00", + "Tournament": "Cape Town Open", + "Round": 6, + "Motion": "This house would not use images of gratuitous violence as means for political mobilisation" + }, + { + "Date": "2015-05-01T00:00:00", + "Tournament": "Cape Town Open", + "Round": 7, + "Motion": "This house believes that foreign mercenaries, employed by the West, should unionise" + }, + { + "Date": "2015-05-01T00:00:00", + "Tournament": "Cape Town Open", + "Round": 8, + "Motion": "THBT nearby mens and womens prisons should set up regularly scheduled inter-prison activities, including the provision of private rooms for sexual intercourse." + }, + { + "Date": "2015-05-01T00:00:00", + "Tournament": "Cape Town Open", + "Round": 9, + "Motion": "THW grant independence to [OG picks]" + }, + { + "Date": "2015-04-25T00:00:00", + "Tournament": "Vidzeme Open", + "Round": 1, + "Motion": "THW abolish the use of referenda" + }, + { + "Date": "2015-04-25T00:00:00", + "Tournament": "Vidzeme Open", + "Round": 2, + "Motion": "THBT the former Eastern bloc countries should not emphasize their history of struggle against Russian imperialism in constructing their national identity" + }, + { + "Date": "2015-04-25T00:00:00", + "Tournament": "Vidzeme Open", + "Round": 3, + "Motion": "THW ban private & public initiatives to search for extra-terrestial intelligence" + }, + { + "Date": "2015-04-25T00:00:00", + "Tournament": "Vidzeme Open", + "Round": 4, + "Motion": "THBT the introduction of the Euro was not in Germany’s interest" + }, + { + "Date": "2015-04-25T00:00:00", + "Tournament": "Vidzeme Open", + "Round": 5, + "Motion": "THW force all universities to make their lectures free for all and available online" + }, + { + "Date": "2015-04-25T00:00:00", + "Tournament": "Vidzeme Open", + "Round": "Open_Semis", + "Motion": "THR the creation of the Western canon" + }, + { + "Date": "2015-04-25T00:00:00", + "Tournament": "Vidzeme Open", + "Round": "Open_Final", + "Motion": "THW allow countries to pay other countries to settle asylum-seekers who reach their borders" + }, + { + "Date": "2015-04-19T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 1, + "Motion": "THS establishing an independent state of Kurdistan." + }, + { + "Date": "2015-04-19T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 2, + "Motion": "THW measure gross national happiness and base policy decisions on those measurements." + }, + { + "Date": "2015-04-19T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 3, + "Motion": "THW disallow exclusive private arbitration for contracts between corporations and individuals." + }, + { + "Date": "2015-04-19T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 4, + "Motion": "Setting aside infectious diseases, THW work to prevent interaction with tribes who have not had contact with the modern world." + }, + { + "Date": "2015-04-19T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 5, + "Motion": "THW prohibit religious institutions from considering applicants’ religious affiliation for any position whose primary function is not the performance of religious rites (e.g., administrators, teachers, fundraisers, etc.)." + }, + { + "Date": "2015-04-19T00:00:00", + "Tournament": "HWS Round Robin", + "Round": "Open_Final", + "Motion": "THBT prominent civil society activists should choose not to run for public office." + }, + { + "Date": "2015-04-10T00:00:00", + "Tournament": "Estonian Open", + "Round": 1, + "Motion": "THBT social media companies (like Google, Facebook or Twitter) should self-censor their content in order to be permitted by authoritarian countries" + }, + { + "Date": "2015-04-10T00:00:00", + "Tournament": "Estonian Open", + "Round": 2, + "Motion": "THBT national sporting associations should give a lifetime ban to any player convicted of a serious violent crime" + }, + { + "Date": "2015-04-10T00:00:00", + "Tournament": "Estonian Open", + "Round": 3, + "Motion": "THBT The LGBT movement should abandon the born this way rhetoric" + }, + { + "Date": "2015-04-10T00:00:00", + "Tournament": "Estonian Open", + "Round": 4, + "Motion": "THBT videos of graphic terrorist atrocities should not be broadcast" + }, + { + "Date": "2015-04-10T00:00:00", + "Tournament": "Estonian Open", + "Round": 5, + "Motion": "THBT developing countries should refuse to sign any trade treaty which contains ISDS" + }, + { + "Date": "2015-04-10T00:00:00", + "Tournament": "Estonian Open", + "Round": "Open_Semis", + "Motion": "THR The Use of Medical Data From Nazi Experiments" + }, + { + "Date": "2015-04-10T00:00:00", + "Tournament": "Estonian Open", + "Round": "Open_Final", + "Motion": "TH as US goverment prefers low oil prices (paraphrased)" + }, + { + "Date": "2015-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 1, + "Motion": "THS establishing an independent state of Kurdistan." + }, + { + "Date": "2015-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 2, + "Motion": "THW measure gross national happiness and base policy decisions on those measurements." + }, + { + "Date": "2015-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 3, + "Motion": "THW disallow exclusive private arbitration for contracts between corporations and individuals." + }, + { + "Date": "2015-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 4, + "Motion": "Setting aside infectious diseases, THW work to prevent interaction with tribes who have not had contact with the modern world." + }, + { + "Date": "2015-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 5, + "Motion": "THW prohibit religious institutions from considering applicants' religious affiliation for any position whose primary function is not the performance of religious rites (e.g. administrators, teachers, fundraisers, etc.)" + }, + { + "Date": "2015-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": "Open_Finals", + "Motion": "THB prominent civil society activists should choose not to run for public office" + }, + { + "Date": "2015-03-27T00:00:00", + "Tournament": "Cardiff Open 2015", + "Round": 1, + "Motion": "THBT the EU should guarantee membership to seceding regions of member states" + }, + { + "Date": "2015-03-27T00:00:00", + "Tournament": "Cardiff Open 2015", + "Round": 2, + "Motion": "THW grant prison wardens the right to extend prison sentences as a punishment." + }, + { + "Date": "2015-03-27T00:00:00", + "Tournament": "Cardiff Open 2015", + "Round": 3, + "Motion": "THBT the USA should publicly cease its efforts to prevent Iran from developing Nuclear Weapons" + }, + { + "Date": "2015-03-27T00:00:00", + "Tournament": "Cardiff Open 2015", + "Round": 4, + "Motion": "THW force fathers to take paternity leave" + }, + { + "Date": "2015-03-27T00:00:00", + "Tournament": "Cardiff Open 2015", + "Round": "Open_Finals", + "Motion": "THW aggressively stream children from an early age, according to academic ability" + }, + { + "Date": "2015-03-27T00:00:00", + "Tournament": "Copenhagen Open", + "Round": 1, + "Motion": "THBT political parties' electoral campaigns should only be funded by the state." + }, + { + "Date": "2015-03-27T00:00:00", + "Tournament": "Copenhagen Open", + "Round": 2, + "Motion": "THW introduce correct porn viewing lessons in schools." + }, + { + "Date": "2015-03-27T00:00:00", + "Tournament": "Copenhagen Open", + "Round": 3, + "Motion": "THW create a Pan Scandinavian-Baltic military alliance." + }, + { + "Date": "2015-03-27T00:00:00", + "Tournament": "Copenhagen Open", + "Round": 4, + "Motion": "TH, as a Jew, would leave Europe for Israel." + }, + { + "Date": "2015-03-27T00:00:00", + "Tournament": "Copenhagen Open", + "Round": 5, + "Motion": "THW allow long-time cheated spouses to sue the third party for damages." + }, + { + "Date": "2015-03-27T00:00:00", + "Tournament": "Copenhagen Open", + "Round": "Open_Semis", + "Motion": "THBT the amount of clothes a person can own should be capped." + }, + { + "Date": "2015-03-27T00:00:00", + "Tournament": "Copenhagen Open", + "Round": "Open_Final", + "Motion": "THBT European officials should not have released the fact that the downing of flight 4U9525 was deliberate." + }, + { + "Date": "2015-03-13T00:00:00", + "Tournament": "National Maidens", + "Round": 1, + "Motion": "Assuming a deal were offered, TH as Edward Snowden would take a short prison sentence in order to return to the US" + }, + { + "Date": "2015-03-13T00:00:00", + "Tournament": "National Maidens", + "Round": 2, + "Motion": "THR the Valorisation of the 1916 Rising" + }, + { + "Date": "2015-03-13T00:00:00", + "Tournament": "National Maidens", + "Round": 3, + "Motion": "THB former colonial powers should pay reparations to their former colonies" + }, + { + "Date": "2015-03-13T00:00:00", + "Tournament": "National Maidens", + "Round": 4, + "Motion": "THW posthumously strip Kevin Carter of the Pulitzer Prize" + }, + { + "Date": "2015-03-13T00:00:00", + "Tournament": "National Maidens", + "Round": 5, + "Motion": "THB African countries with AIDS crises should sue the Catholic church" + }, + { + "Date": "2015-03-13T00:00:00", + "Tournament": "National Maidens", + "Round": "Open_Semis", + "Motion": "Assuming some willingly do this already, TH as a super-powered individual would unmask and register" + }, + { + "Date": "2015-03-13T00:00:00", + "Tournament": "National Maidens", + "Round": "Open_Finals", + "Motion": "Assuming the land and resources are available, THW establish an independent state for women" + }, + { + "Date": "2015-03-11T00:00:00", + "Tournament": "NAUDC (@ Ithaca College)", + "Round": 1, + "Motion": "THB existing welfare programs should be replaced by unconditional cash transfers." + }, + { + "Date": "2015-03-11T00:00:00", + "Tournament": "NAUDC (@ Ithaca College)", + "Round": 2, + "Motion": "THB political polling and major election analytics do more harm than good." + }, + { + "Date": "2015-03-11T00:00:00", + "Tournament": "NAUDC (@ Ithaca College)", + "Round": 3, + "Motion": "THW not let cities use public funds to construct stadiums for professional sports teams." + }, + { + "Date": "2015-03-11T00:00:00", + "Tournament": "NAUDC (@ Ithaca College)", + "Round": 4, + "Motion": "THB the U.S. should impose substantial tarriffs on Chinese goods until China ceases all currency manipulation." + }, + { + "Date": "2015-03-11T00:00:00", + "Tournament": "NAUDC (@ Ithaca College)", + "Round": 5, + "Motion": "THR the success of white artists who co-opt minority dominated music subcultures (e.g. Rap, jazz, hip-hop, etc.)" + }, + { + "Date": "2015-03-11T00:00:00", + "Tournament": "NAUDC (@ Ithaca College)", + "Round": 6, + "Motion": "THW hold govrenment officials criminally responsible for severe harm to citizens resulting from grossly negligent public policy." + }, + { + "Date": "2015-03-11T00:00:00", + "Tournament": "NAUDC (@ Ithaca College)", + "Round": "Open_Quarters", + "Motion": "THR the rise of Choice Feminism." + }, + { + "Date": "2015-03-11T00:00:00", + "Tournament": "NAUDC (@ Ithaca College)", + "Round": "Open_Semis", + "Motion": "THB the EU should revoke membership status of any state that withdraws from the Schengen Agreement." + }, + { + "Date": "2015-03-11T00:00:00", + "Tournament": "NAUDC (@ Ithaca College)", + "Round": "Open_Finals", + "Motion": "THR \"True Crime\" entertainment. (e.g. Making a Murderer, American Crime Story: The People vs. OJ Simpson, Serial, etc.)" + }, + { + "Date": "2015-02-28T00:00:00", + "Tournament": "Cardiff Schools 2015", + "Round": 1, + "Motion": "THW allow single parents convicted of crimes to raise their children in prison" + }, + { + "Date": "2015-02-28T00:00:00", + "Tournament": "Cardiff Schools 2015", + "Round": 2, + "Motion": "THW broadcast a welcome message to the alien spacecraft" + }, + { + "Date": "2015-02-28T00:00:00", + "Tournament": "Cardiff Schools 2015", + "Round": 3, + "Motion": "THBT all schools in Wales should teach subjects through the medium of\r\nWelsh." + }, + { + "Date": "2015-02-28T00:00:00", + "Tournament": "Cardiff Schools 2015", + "Round": "Open_Final", + "Motion": "THW not give awards to music or film stars who have committed violent crimes" + }, + { + "Date": "2015-02-28T00:00:00", + "Tournament": "Leiden Open", + "Round": 1, + "Motion": "This House would allow euthanasia for consenting adults and children" + }, + { + "Date": "2015-02-28T00:00:00", + "Tournament": "Leiden Open", + "Round": 2, + "Motion": "This House believes that democratic countries should not allow family members of recent presidents to run for office" + }, + { + "Date": "2015-02-28T00:00:00", + "Tournament": "Leiden Open", + "Round": 3, + "Motion": "This House believes that the EU should introduce a unified tax system for companies" + }, + { + "Date": "2015-02-28T00:00:00", + "Tournament": "Leiden Open", + "Round": 4, + "Motion": "This House would ban the provision of amnesties for serious crimes commited during wartime" + }, + { + "Date": "2015-02-28T00:00:00", + "Tournament": "Leiden Open", + "Round": 5, + "Motion": "This House opposes organised religion" + }, + { + "Date": "2015-02-28T00:00:00", + "Tournament": "Leiden Open", + "Round": "Novice_Final", + "Motion": "This House would cut all benefits from those able but unwilling to work" + }, + { + "Date": "2015-02-28T00:00:00", + "Tournament": "Leiden Open", + "Round": "Open_Semi", + "Motion": "This House would make soldiers, upon return from the battlefield, take a pill that lets them forget about the war" + }, + { + "Date": "2015-02-28T00:00:00", + "Tournament": "Leiden Open", + "Round": "Open_Final", + "Motion": "This House believes that capitalism is absolutely incompatible with long term peace" + }, + { + "Date": "2015-02-21T00:00:00", + "Tournament": "DWF Manchester IV", + "Round": 1, + "Motion": "THBT the EU should openly fund secular, pro-democracy and pro-human rights political parties and civil society groups in countries with oppressive regimes" + }, + { + "Date": "2015-02-21T00:00:00", + "Tournament": "DWF Manchester IV", + "Round": 2, + "Motion": "THBT the NAACP should publicly condemn white artists who appropriate black culture" + }, + { + "Date": "2015-02-21T00:00:00", + "Tournament": "DWF Manchester IV", + "Round": 3, + "Motion": "THW require companies that produce pornography to be run by a co-operative of their female performers" + }, + { + "Date": "2015-02-21T00:00:00", + "Tournament": "DWF Manchester IV", + "Round": 4, + "Motion": "THW transfer complete strategic control of the NHS to a body of experts, appointed by experienced medical practitioners and not accountable to Parliament." + }, + { + "Date": "2015-02-21T00:00:00", + "Tournament": "DWF Manchester IV", + "Round": 5, + "Motion": "THBT Gov'ts should not publicly discuss anti-terror laws and state security in the wake of terrorist attacks" + }, + { + "Date": "2015-02-21T00:00:00", + "Tournament": "DWF Manchester IV", + "Round": "ESL_Final", + "Motion": "THBT even if human life could be extended indefinitely, society should choose to end their lives at 100 years" + }, + { + "Date": "2015-02-21T00:00:00", + "Tournament": "DWF Manchester IV", + "Round": "ProAm_Final", + "Motion": "THBT that states should not commemorate the veterans of conflicts that are now considered to be unjustified" + }, + { + "Date": "2015-02-21T00:00:00", + "Tournament": "DWF Manchester IV", + "Round": "Open_Quarters", + "Motion": "TH, as an up and coming female artist, would publically decline a leading role in a Roman Polanski film." + }, + { + "Date": "2015-02-21T00:00:00", + "Tournament": "DWF Manchester IV", + "Round": "Open_Semis", + "Motion": "THW criminalise the use and creation of unauthorised anonymous communication providers and network browsers." + }, + { + "Date": "2015-02-21T00:00:00", + "Tournament": "DWF Manchester IV", + "Round": "Open_Final", + "Motion": "TH welcomes the rise of the far left in continental Europe (e.g. Syriza in Greece & Podemos in Spain)" + }, + { + "Date": "2015-01-31T00:00:00", + "Tournament": "Norton Rose Fulbright Warwick IV", + "Round": 1, + "Motion": "THW nationalise all pharmaceutical companies in countries with a national health service." + }, + { + "Date": "2015-01-31T00:00:00", + "Tournament": "Norton Rose Fulbright Warwick IV", + "Round": 2, + "Motion": "TH, as the LGBT+ movement, regrets the decline of \"gay areas\" e.g. Soho, le marais and Chelsea" + }, + { + "Date": "2015-01-31T00:00:00", + "Tournament": "Norton Rose Fulbright Warwick IV", + "Round": 3, + "Motion": "THW (partially) staff the police through a rotating National Service." + }, + { + "Date": "2015-01-31T00:00:00", + "Tournament": "Norton Rose Fulbright Warwick IV", + "Round": 4, + "Motion": "THBT states should aggressively pursue housing policy which promotes racial integration. e.g. through council housing allocations" + }, + { + "Date": "2015-01-31T00:00:00", + "Tournament": "Norton Rose Fulbright Warwick IV", + "Round": "Open_Semis", + "Motion": "THBT states when constructing tax policies should prioritise equality rather than economic growth" + }, + { + "Date": "2015-01-31T00:00:00", + "Tournament": "Norton Rose Fulbright Warwick IV", + "Round": "Open_Final", + "Motion": "TH regrets the rise of the nation state" + }, + { + "Date": "2015-01-30T00:00:00", + "Tournament": "AIB Trinity IV 2015", + "Round": 1, + "Motion": "THW grant the unqualified right to assisted suicide to all mentally sound adults." + }, + { + "Date": "2015-01-30T00:00:00", + "Tournament": "AIB Trinity IV 2015", + "Round": 2, + "Motion": "THW create public housing for the poor in wealthy areas" + }, + { + "Date": "2015-01-30T00:00:00", + "Tournament": "AIB Trinity IV 2015", + "Round": 3, + "Motion": "THBT US citizens should select Option B i.e. they should vote to publicly subject the kidnapped officials to enhanced interrogation techniques." + }, + { + "Date": "2015-01-30T00:00:00", + "Tournament": "AIB Trinity IV 2015", + "Round": 4, + "Motion": "THBT States Should Destroy All Contemporary Works of Art (including but not limited to music, films and paintings) Created by Artists Convicted of Heinous Crimes." + }, + { + "Date": "2015-01-30T00:00:00", + "Tournament": "AIB Trinity IV 2015", + "Round": 5, + "Motion": "THBT Western States Should Create LGBTQ* Schools" + }, + { + "Date": "2015-01-30T00:00:00", + "Tournament": "AIB Trinity IV 2015", + "Round": "Novice_Final", + "Motion": "TH, as the human population of planet X, would choose communism over capitalism." + }, + { + "Date": "2015-01-30T00:00:00", + "Tournament": "AIB Trinity IV 2015", + "Round": "Open_Quarters", + "Motion": "THBT low oil prices are good for the West (may not have been the exact wording)" + }, + { + "Date": "2015-01-30T00:00:00", + "Tournament": "AIB Trinity IV 2015", + "Round": "Open_Semis", + "Motion": "THS the Creation of Feminist Parties." + }, + { + "Date": "2015-01-30T00:00:00", + "Tournament": "AIB Trinity IV 2015", + "Round": "Open_Final", + "Motion": "THBT Western States Should Ban Depictions of the Prophet Muhammad (Peace be upon him)" + }, + { + "Date": "2015-01-23T00:00:00", + "Tournament": "NorthAms (@ NYU)", + "Round": 1, + "Motion": "THBT men's and women's prisons that are close to each other should have co-ed activity time including sex rooms." + }, + { + "Date": "2015-01-23T00:00:00", + "Tournament": "NorthAms (@ NYU)", + "Round": 2, + "Motion": "THBT the Palestinian movement should abandon its claim for the right to return in exchange for significant financial reparations" + }, + { + "Date": "2015-01-23T00:00:00", + "Tournament": "NorthAms (@ NYU)", + "Round": 3, + "Motion": "TH regrets the alliance of liberal political parties with large businesses and financial interests" + }, + { + "Date": "2015-01-23T00:00:00", + "Tournament": "NorthAms (@ NYU)", + "Round": 4, + "Motion": "THBT minority artists should create street art and other art in public spaces rather than art intended for display in galleries and traditional artistic venues." + }, + { + "Date": "2015-01-23T00:00:00", + "Tournament": "NorthAms (@ NYU)", + "Round": 5, + "Motion": "THBT on balance, the influence of the internet on journalism has been harmful to society" + }, + { + "Date": "2015-01-23T00:00:00", + "Tournament": "NorthAms (@ NYU)", + "Round": 6, + "Motion": "THS the rise of Syriza." + }, + { + "Date": "2015-01-23T00:00:00", + "Tournament": "NorthAms (@ NYU)", + "Round": "Open_Octos", + "Motion": "THBT the norm of having stay-at-home dads is better for the women's rights movement than that of both parents working" + }, + { + "Date": "2015-01-23T00:00:00", + "Tournament": "NorthAms (@ NYU)", + "Round": "Open_Quarters", + "Motion": "" + }, + { + "Date": "2015-01-23T00:00:00", + "Tournament": "NorthAms (@ NYU)", + "Round": "Open_Semis", + "Motion": "THBT, on balance, the rapid fall of oil prices has been beneficial to the West" + }, + { + "Date": "2015-01-23T00:00:00", + "Tournament": "NorthAms (@ NYU)", + "Round": "Open_Finals", + "Motion": "THBT on balance, the international human rights regime has done more harm than good" + }, + { + "Date": "2015-01-23T00:00:00", + "Tournament": "Rotterdam Open", + "Round": 1, + "Motion": "THW ban religious and ideological schools" + }, + { + "Date": "2015-01-23T00:00:00", + "Tournament": "Rotterdam Open", + "Round": 2, + "Motion": "THW run simultaneously in or out referenda in all EU member states" + }, + { + "Date": "2015-01-23T00:00:00", + "Tournament": "Rotterdam Open", + "Round": 3, + "Motion": "THW ban Zwarte Piet (Black Pete)" + }, + { + "Date": "2015-01-23T00:00:00", + "Tournament": "Rotterdam Open", + "Round": 4, + "Motion": "TH, as the WTO, would allow poor countries to establish trade barriers" + }, + { + "Date": "2015-01-23T00:00:00", + "Tournament": "Rotterdam Open", + "Round": "Open_Semis", + "Motion": "TH, as the USA, would put boots on the ground in Iraq" + }, + { + "Date": "2015-01-23T00:00:00", + "Tournament": "Rotterdam Open", + "Round": "Open_Final", + "Motion": "(paraphrased) THW ban automation" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": 1, + "Motion": "THR the decline of tightly integrated families" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": 2, + "Motion": "THBT environmental movements should support climate engineering that fundamentally alters the environment in an attempt to combat global warming" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": 3, + "Motion": "THBT in areas of socio-economic deprivation, schools should train students in vocational skills to the exclusion of the liberal arts" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": 4, + "Motion": "THW prohibit the media from reporting on the mental illness of those accused of crimes" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": 5, + "Motion": "THBT the international community should cut off internet access in Syria" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": 6, + "Motion": "THBT developing countries should adopt economic development policies that heavily disincentivise urbanisation" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": 7, + "Motion": "THW ban the research and production of moral enhancement drugs" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": 8, + "Motion": "THBT the US and EU should seek to promote peace by heavily subsidising Israeli businesses who invest in the Palestinian territories" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": 9, + "Motion": "TH, as a medical professional employed by the US military or security sevices, would, and would encourage others, to refuse orders to provide medical treatment to individuals undergoing 'enhanced interrogation techniques'" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": "EFL_Semis", + "Motion": "THW ban its citizens from visiting illiberal states whose economies depend on tourism" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": "EFL_Final", + "Motion": "THBT progressive politicians in conservative societies should pander to bigots, racists, hardline conservatives and others with regressive views in attempting to win elections" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": "ESL_Quarters", + "Motion": "THBT the African-American community should actively oppose 'broken windows policies'" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": "ESL_Semis", + "Motion": "THW strictly limit the replacement of workers with technology by companies" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": "ESL_Finals", + "Motion": "THBT liberal democracies that overthrow the governments of other states should impose power-sharing, even when this severely overrides or delays democratic representation" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": "Masters_1", + "Motion": "TH regrets the rise of art that celebrates gaining material wealth" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": "Masters_2", + "Motion": "THBT judges should deliberately misinterpret constitutions to protect important liberties" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": "Open_Partials", + "Motion": "THW allow corporations to use hackers to retaliate against cyberattacks where the state seems unwilling or unable to do so" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": "Open_Octos", + "Motion": "THBT disadvantaged groups should emphasise their conformity with, rather than distinctiveness from, dominant culture, as a strategy for improving their social position" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": "Open_Quarters", + "Motion": "TH regrets the decline of secular pan-Arab nationalism" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": "Open_Semis", + "Motion": "THBT all states should create special economic zones in cities, where all economic activities (except the purchase of goods and services) are carried out by women" + }, + { + "Date": "2015-01-01T00:00:00", + "Tournament": "Malaysia WUDC 2015", + "Round": "Open_Final", + "Motion": "THBT humanitarian organisations should, and should be allowed to, give funding, resources or services to illegal armed groups when this is made a condition for access to vulnerable civilians" + }, + { + "Date": "2014-12-13T00:00:00", + "Tournament": "Birmingham IV", + "Round": 1, + "Motion": "TH, as the Dutch government, would ban all depictions, and the impersonating, of Zwarte Piet" + }, + { + "Date": "2014-12-13T00:00:00", + "Tournament": "Birmingham IV", + "Round": 2, + "Motion": "THW Extend the UK DNA Database to the entire population" + }, + { + "Date": "2014-12-13T00:00:00", + "Tournament": "Birmingham IV", + "Round": 3, + "Motion": "THR the Rise of the Women's Magazine" + }, + { + "Date": "2014-12-13T00:00:00", + "Tournament": "Birmingham IV", + "Round": 4, + "Motion": "TH supports the rise of Social Impact Bonds to fund public projects" + }, + { + "Date": "2014-12-13T00:00:00", + "Tournament": "Birmingham IV", + "Round": 5, + "Motion": "THW, as the Indian Gov't, Cease the Naxalite Surrender and Rehabilitation Policy" + }, + { + "Date": "2014-12-13T00:00:00", + "Tournament": "Birmingham IV", + "Round": "Open_Semis", + "Motion": "THBT President Obama should prosecute officials that authorised and ordered torture" + }, + { + "Date": "2014-12-13T00:00:00", + "Tournament": "Birmingham IV", + "Round": "Open_Final", + "Motion": "In countries where the right to an abortion has been achieved... THBT the right to abortion is no longer a legitimate debate" + }, + { + "Date": "2014-12-13T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 1, + "Motion": "THW not allow skilled workers to migrate to the EU from the developing world" + }, + { + "Date": "2014-12-13T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 2, + "Motion": "THW require all film companies to practice socially representative film making" + }, + { + "Date": "2014-12-13T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 3, + "Motion": "THBT US citizens should select Option B i.e. they should vote to publicly subject the kidnapped officials to enhanced interrogation techniques" + }, + { + "Date": "2014-12-13T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 4, + "Motion": "TH supports the creation of feminist political parties" + }, + { + "Date": "2014-12-13T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 5, + "Motion": "THBT the Baltic states should ban Russian state-backed TV channels" + }, + { + "Date": "2014-12-13T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Quarters", + "Motion": "TH supports African Americans who choose to violently protest in response to police brutality" + }, + { + "Date": "2014-12-13T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Semis", + "Motion": "THBT universities and student groups should not ban speakers with offensive political views" + }, + { + "Date": "2014-12-13T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Final", + "Motion": "THBT education systems should indoctrinate children to believe they are personally culpable for the death and suffering in the developing world" + }, + { + "Date": "2014-12-06T00:00:00", + "Tournament": "Westminster Open", + "Round": 1, + "Motion": "THW base monetary criminal fines primarily on the income of the perpetrator rather than the severity of the crime" + }, + { + "Date": "2014-12-06T00:00:00", + "Tournament": "Westminster Open", + "Round": 2, + "Motion": "THBT the EU should abandon its commitment to the principle of open borders between member states." + }, + { + "Date": "2014-12-06T00:00:00", + "Tournament": "Westminster Open", + "Round": 3, + "Motion": "THBT feminists should support the HeForShe movement." + }, + { + "Date": "2014-12-06T00:00:00", + "Tournament": "Westminster Open", + "Round": 4, + "Motion": "THBT it is in ASEAN's long term best interests to seek closer ties with China rather than the U.S.A." + }, + { + "Date": "2014-12-06T00:00:00", + "Tournament": "Westminster Open", + "Round": 5, + "Motion": "THBT the music press should aggressively negatively depict the work of artists, such as John Lennon and Jimmy Page who commit morally reprehensible acts." + }, + { + "Date": "2014-12-06T00:00:00", + "Tournament": "Westminster Open", + "Round": "Novice_Final", + "Motion": "THW ban religious charities from proselytising in the developing world." + }, + { + "Date": "2014-12-06T00:00:00", + "Tournament": "Westminster Open", + "Round": "Open_Semis", + "Motion": "THS the decision of pop stars such as Lily Allen and Adele to not take part in Band Aid" + }, + { + "Date": "2014-12-06T00:00:00", + "Tournament": "Westminster Open", + "Round": "Open_Final", + "Motion": "THW grant an amnesty to those who commit crimes during US race riots so long as they meet the following criteria: 1. They were motivated by a desire to fight social injustice, 2. If property is targeted, it belongs to the apparatus of the state (for example, police cars and government buildings." + }, + { + "Date": "2014-11-28T00:00:00", + "Tournament": "Canadian British Parliamentary Championships (@ Western University)", + "Round": 1, + "Motion": "THW allow individuals in prison to serve their sentences in the armed forces." + }, + { + "Date": "2014-11-28T00:00:00", + "Tournament": "Canadian British Parliamentary Championships (@ Western University)", + "Round": 2, + "Motion": "THW not allow sexual assault victims to give up their right to testify in criminal proceedings as part of a civil settlement" + }, + { + "Date": "2014-11-28T00:00:00", + "Tournament": "Canadian British Parliamentary Championships (@ Western University)", + "Round": 3, + "Motion": "THBT the EU should automatically re-admit regions that secede from member states." + }, + { + "Date": "2014-11-28T00:00:00", + "Tournament": "Canadian British Parliamentary Championships (@ Western University)", + "Round": 4, + "Motion": "THW require pornography producers to be run by a collective of their female employees." + }, + { + "Date": "2014-11-28T00:00:00", + "Tournament": "Canadian British Parliamentary Championships (@ Western University)", + "Round": 5, + "Motion": "THW ban the purchase of urban, residential real estate by foreign investors" + }, + { + "Date": "2014-11-28T00:00:00", + "Tournament": "Canadian British Parliamentary Championships (@ Western University)", + "Round": "Novice_Finals", + "Motion": "THBT police officers on regular patrol should not carry firearms" + }, + { + "Date": "2014-11-28T00:00:00", + "Tournament": "Canadian British Parliamentary Championships (@ Western University)", + "Round": "Open_Semis", + "Motion": "THBT Israel should unilaterally withdraw to the 1967 borders and respect them regardless of future Palestinian actions." + }, + { + "Date": "2014-11-28T00:00:00", + "Tournament": "Canadian British Parliamentary Championships (@ Western University)", + "Round": "Open_Finals", + "Motion": "THW allow the Children's Aid Society to force chemotherapy." + }, + { + "Date": "2014-11-28T00:00:00", + "Tournament": "Moscow Open 2014", + "Round": 1, + "Motion": "THBT laws about abortion should be decided in women-only referenda" + }, + { + "Date": "2014-11-28T00:00:00", + "Tournament": "Moscow Open 2014", + "Round": 2, + "Motion": "TH prefers a world in which people do not believe in the existence of God or a divine being" + }, + { + "Date": "2014-11-28T00:00:00", + "Tournament": "Moscow Open 2014", + "Round": 3, + "Motion": "THBT Putin's interventionist role in global geopolitics is contrary to the interests of the Russian people" + }, + { + "Date": "2014-11-28T00:00:00", + "Tournament": "Moscow Open 2014", + "Round": 4, + "Motion": "This House Supports the use of tiger parenting techniques" + }, + { + "Date": "2014-11-28T00:00:00", + "Tournament": "Moscow Open 2014", + "Round": 5, + "Motion": "THBT celebrities should not act as spokespeople for humanitarian issues" + }, + { + "Date": "2014-11-28T00:00:00", + "Tournament": "Moscow Open 2014", + "Round": "Open_Semis", + "Motion": "THW if it was technologically possible erase memory of the idea and events caused by Nazism" + }, + { + "Date": "2014-11-28T00:00:00", + "Tournament": "Moscow Open 2014", + "Round": "Open_Final", + "Motion": "THBT a state's primary obligation is towards its own citizens" + }, + { + "Date": "2014-11-24T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": 1, + "Motion": "THBT Western Liberal Democracies and their citizens should never pay ransom for those kidnapped by terrorist groups" + }, + { + "Date": "2014-11-24T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": 2, + "Motion": "THW end the use of jailhouse informants" + }, + { + "Date": "2014-11-24T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": 3, + "Motion": "THBT minority groups should not appropriate or reappropriate terms that have been used against them as slurs." + }, + { + "Date": "2014-11-24T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": 4, + "Motion": "THW allow individuals to opt out of employment provisions and regulations relating to health and safety in return for increased pay" + }, + { + "Date": "2014-11-24T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": 5, + "Motion": "THW give parents an additional vote for each of their underage children" + }, + { + "Date": "2014-11-24T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": "Open_Semis", + "Motion": "THBT Japan should re-develop offensive military capabilities." + }, + { + "Date": "2014-11-24T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": "Open_Finals", + "Motion": "THW financially incentivize vegetarianism." + }, + { + "Date": "2014-11-23T00:00:00", + "Tournament": "Cambridge Women’s", + "Round": 1, + "Motion": "THW legalise the buying and selling of sexual services" + }, + { + "Date": "2014-11-23T00:00:00", + "Tournament": "Cambridge Women’s", + "Round": 2, + "Motion": "THBT football fans should boycott the 2022 world cup in Qatar" + }, + { + "Date": "2014-11-23T00:00:00", + "Tournament": "Cambridge Women’s", + "Round": 3, + "Motion": "THBT the US and Iran should ally to fight ISIS" + }, + { + "Date": "2014-11-23T00:00:00", + "Tournament": "Cambridge Women’s", + "Round": 4, + "Motion": "THW aggressively financially incentivise the enrollment of female students in areas with low female enrollment" + }, + { + "Date": "2014-11-23T00:00:00", + "Tournament": "Cambridge Women’s", + "Round": "ESL_Final", + "Motion": "THBT developed countries should grant an amnesty to illegil immigrants" + }, + { + "Date": "2014-11-23T00:00:00", + "Tournament": "Cambridge Women’s", + "Round": "Open_Semis", + "Motion": "THBT individuals have a right to a basic income regardless of capacity or willingness to work" + }, + { + "Date": "2014-11-23T00:00:00", + "Tournament": "Cambridge Women’s", + "Round": "Open_Final", + "Motion": "THW allow individuals to sue religious organisations for making decisions that harm them" + }, + { + "Date": "2014-11-23T00:00:00", + "Tournament": "Yorkshire Novice Cup", + "Round": 1, + "Motion": "THW replace all sin taxes with an increase in income tax" + }, + { + "Date": "2014-11-23T00:00:00", + "Tournament": "Yorkshire Novice Cup", + "Round": 2, + "Motion": "THBT the EU should issue a directive to all its member states to legalise gay marriage" + }, + { + "Date": "2014-11-23T00:00:00", + "Tournament": "Yorkshire Novice Cup", + "Round": 3, + "Motion": "THW abolish all non-comprehensive schools and require children to attend their geographically closest school." + }, + { + "Date": "2014-11-23T00:00:00", + "Tournament": "Yorkshire Novice Cup", + "Round": 4, + "Motion": "THBT sexually assertive female pop stars identifying as feminists is harmful for feminism." + }, + { + "Date": "2014-11-23T00:00:00", + "Tournament": "Yorkshire Novice Cup", + "Round": "Open_Final", + "Motion": "THBT Western nations should not attend sporting events in countries with bad human rights records" + }, + { + "Date": "2014-11-22T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": 1, + "Motion": "This House would grant an additional vote to families with children for national elections" + }, + { + "Date": "2014-11-22T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": 2, + "Motion": "THW hide the diagnosis of pseudo-epilepsy from the patient" + }, + { + "Date": "2014-11-22T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": 3, + "Motion": "THW submit religious organisations to the full extent of anti-discrimination laws" + }, + { + "Date": "2014-11-22T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": 4, + "Motion": "THW nationalise social media" + }, + { + "Date": "2014-11-22T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": 5, + "Motion": "THW show a more prominent role for women in history books" + }, + { + "Date": "2014-11-22T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": "Novice_Final", + "Motion": "TH disapproves of movements that aim to further the acceptation of obesity in society" + }, + { + "Date": "2014-11-22T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": "Open_Semis", + "Motion": "THW never target civilians in a total war" + }, + { + "Date": "2014-11-22T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": "Open_Final", + "Motion": "THBT it is justified for society to demand of migrants that they accept the dominance of existing norms and values" + }, + { + "Date": "2014-11-22T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": 1, + "Motion": "TH opposes slum tourism" + }, + { + "Date": "2014-11-22T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": 2, + "Motion": "THBT student unions should never campaign for the censorship of controversial speakers" + }, + { + "Date": "2014-11-22T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": 3, + "Motion": "THW tax low-brow art to subsidize high-brow art" + }, + { + "Date": "2014-11-22T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": 4, + "Motion": "TH prefers regional trade agreements to the WTO" + }, + { + "Date": "2014-11-22T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": 5, + "Motion": "THW allow terminally ill patients to access experimental treatments" + }, + { + "Date": "2014-11-22T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": "Novice_Finals", + "Motion": "TH prefers religions that teach that people are inherently good to religions that teach that people are inherently evil" + }, + { + "Date": "2014-11-22T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": "Open_Semis", + "Motion": "THBT the US should sell arms to Nigeria to fight Boko Haram" + }, + { + "Date": "2014-11-22T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": "Open_Finals", + "Motion": "TH regrets the prominence of pop culture celebrities in feminist discourse" + }, + { + "Date": "2014-11-21T00:00:00", + "Tournament": "Cambridge IV", + "Round": 1, + "Motion": "THW not punish those who live below the poverty line for economic crimes, e.g. theft" + }, + { + "Date": "2014-11-21T00:00:00", + "Tournament": "Cambridge IV", + "Round": 2, + "Motion": "TH, as a superhero, would agree to use their powers solely in service of the democratic state" + }, + { + "Date": "2014-11-21T00:00:00", + "Tournament": "Cambridge IV", + "Round": 3, + "Motion": "THS the objectification of men in popular culture." + }, + { + "Date": "2014-11-21T00:00:00", + "Tournament": "Cambridge IV", + "Round": 4, + "Motion": "THW require that any houses or apartments left vacant for six months or more be surrendered to the State." + }, + { + "Date": "2014-11-21T00:00:00", + "Tournament": "Cambridge IV", + "Round": 5, + "Motion": "THBT Western foreign policy should abandon attempts to universalise liberal values" + }, + { + "Date": "2014-11-21T00:00:00", + "Tournament": "Cambridge IV", + "Round": "ESL_Semis", + "Motion": "THBT Google should inform the authorities about suicide searches" + }, + { + "Date": "2014-11-21T00:00:00", + "Tournament": "Cambridge IV", + "Round": "ESL_Final", + "Motion": "Assuming the existence of a gay gene, THW disproportionately favour embryos that possess it in IVF." + }, + { + "Date": "2014-11-21T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Quarters", + "Motion": "THW prohibit all research aiming to create sentient artificial intelligences." + }, + { + "Date": "2014-11-21T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Semis", + "Motion": "THS the New Atheism movement" + }, + { + "Date": "2014-11-21T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Final", + "Motion": "THBT unpaid domestic workers should strike for state pay" + }, + { + "Date": "2014-11-14T00:00:00", + "Tournament": "Oxford IV", + "Round": 1, + "Motion": "THBT in order for a law to be enacted, it should have to be passed by the legislature and then by a body chosen at random from eligible voters." + }, + { + "Date": "2014-11-14T00:00:00", + "Tournament": "Oxford IV", + "Round": 2, + "Motion": "THBT press agencies should not purchase or publish the work of freelance war reporters." + }, + { + "Date": "2014-11-14T00:00:00", + "Tournament": "Oxford IV", + "Round": 3, + "Motion": "THBT the EU should suspend Hungary’s membership rights." + }, + { + "Date": "2014-11-14T00:00:00", + "Tournament": "Oxford IV", + "Round": 4, + "Motion": "This house, as the gay community, regrets the existence of Grindr" + }, + { + "Date": "2014-11-14T00:00:00", + "Tournament": "Oxford IV", + "Round": 5, + "Motion": "This house would deny public funding to parties with explicitly ethnic-based membership or platforms" + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Durham Open", + "Round": 1, + "Motion": "THW ban religious organizations from providing rehabilitation services to drug and alcohol addicts." + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Durham Open", + "Round": 2, + "Motion": "THBT democracies should extend voting rights to migrant workers." + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Durham Open", + "Round": 3, + "Motion": "TH, as a feminist, would oppose products marketed to help women protect themselves from date rape." + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Durham Open", + "Round": 4, + "Motion": "THBT Arab-Israelis who successfully seek election to the Knesset should opt not to take up that seat." + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Durham Open", + "Round": 5, + "Motion": "THBT the state should construct false historical narratives that promote social cohesion (e.g. racial and religious tolerance)" + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Durham Open", + "Round": "Novice_Final", + "Motion": "There is a potion which can stop you falling in love. TH, as an 18 year old, would take the potion." + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Durham Open", + "Round": "Open_Semis", + "Motion": "THBT true women’s liberation is incompatible with the existence of organized religion." + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Durham Open", + "Round": "Open_Final", + "Motion": "THBT FB should manipulate users’ newsfeeds in order to promote progressive content." + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Skopje Open", + "Round": 1, + "Motion": "THBT the interests of the ethnic Albanians in Macedonia is best served through participation in ethnic Macedonian parties." + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Skopje Open", + "Round": 2, + "Motion": "THW ban all medical procedures intended to change an individual's racial appearance." + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Skopje Open", + "Round": 3, + "Motion": "TH supports the US's use of drones to eliminate terrorist targets." + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Skopje Open", + "Round": 4, + "Motion": "THBT homosexual football players from top western leagues should publicly declare their sexuality" + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Skopje Open", + "Round": 5, + "Motion": "TH supports the radical redistribution of wealth." + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Skopje Open", + "Round": "Open_Final", + "Motion": "This House Would suspend the right of free movement of people in the EU." + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Tilbury House", + "Round": 1, + "Motion": "THBT the EU should send a single unified team to the next world cup." + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Tilbury House", + "Round": 2, + "Motion": "THW criminalise all forms of high school bullying (including physical, verbal, written, cyber bullying and boycotting)" + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Tilbury House", + "Round": 3, + "Motion": "THBT donations to disease charities should be redistributed among these disease charities according to the number of people affected by each disease." + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Tilbury House", + "Round": 4, + "Motion": "THS the use of feminist catch phrases about freedom, empowerment and choice in advertisement of fashion and beauty products." + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Tilbury House", + "Round": 5, + "Motion": "THBT governments should tax individual income out of labour (paid salary) significantly less than individual's income generated out of capital (which includes inheritance, real estate, stock portfolios, etc.)" + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Tilbury House", + "Round": "Open_Semis", + "Motion": "THBT the German government should significantly fund films and tv shows that sympathetically depict the narratives of non-Jewish German civilians under the Nazi regime." + }, + { + "Date": "2014-11-08T00:00:00", + "Tournament": "Tilbury House", + "Round": "Open_Final", + "Motion": "This house would ban anti EU parties from participating in the EU elections." + }, + { + "Date": "2014-11-01T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": 1, + "Motion": "THW abolish all corporate income tax" + }, + { + "Date": "2014-11-01T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": 2, + "Motion": "THS affirmative action for male educators" + }, + { + "Date": "2014-11-01T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": 3, + "Motion": "THW legalize entrapment" + }, + { + "Date": "2014-11-01T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": 4, + "Motion": "THS substantial corporate funding for university research" + }, + { + "Date": "2014-11-01T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": 5, + "Motion": "" + }, + { + "Date": "2014-11-01T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": "Open_Semis", + "Motion": "THBT international news organizations should report equally on all geographic regions to all audiences." + }, + { + "Date": "2014-11-01T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": "Open_Finals", + "Motion": "THS the use of private military contractors in the developing world." + }, + { + "Date": "2014-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2014", + "Round": 1, + "Motion": "THW limit private land ownership" + }, + { + "Date": "2014-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2014", + "Round": 2, + "Motion": "THW abolish prisons" + }, + { + "Date": "2014-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2014", + "Round": 3, + "Motion": "TH regrets the concept of an afterlife" + }, + { + "Date": "2014-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2014", + "Round": 4, + "Motion": "THW allow private entities to discriminate on grounds that are forbidden for the state to discriminate on (or words to that effect)" + }, + { + "Date": "2014-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2014", + "Round": 5, + "Motion": "THBT western media should refuse to publicise videos or events designed to generate terror" + }, + { + "Date": "2014-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2014", + "Round": "Open_Semi", + "Motion": "THW allow retired parents to seek support payments from their adult children" + }, + { + "Date": "2014-10-31T00:00:00", + "Tournament": "Thessaloniki Open", + "Round": 1, + "Motion": "THB that states should no longer fund or own public broadcasters, such as the BBC, NERIT or PBS" + }, + { + "Date": "2014-10-31T00:00:00", + "Tournament": "Thessaloniki Open", + "Round": 2, + "Motion": "TH welcomes the rise of art that celebrates a lack of economic wealth" + }, + { + "Date": "2014-10-31T00:00:00", + "Tournament": "Thessaloniki Open", + "Round": 3, + "Motion": "THBT Google, Youtube and social media platforms should remove content which is deemed as insulting to religion" + }, + { + "Date": "2014-10-31T00:00:00", + "Tournament": "Thessaloniki Open", + "Round": 4, + "Motion": "TH supports Greek youth violently protesting against Trojka mandated austerity measures" + }, + { + "Date": "2014-10-31T00:00:00", + "Tournament": "Thessaloniki Open", + "Round": 5, + "Motion": "THW lift all limits on international migration" + }, + { + "Date": "2014-10-31T00:00:00", + "Tournament": "Thessaloniki Open", + "Round": "Open_Semis", + "Motion": "THBT international courts should punish states with the capacity to prevent crimes against humanity, but do not do so" + }, + { + "Date": "2014-10-31T00:00:00", + "Tournament": "Thessaloniki Open", + "Round": "Open_Final", + "Motion": "THW significantly lower labour regulations for youth in EU areas with high youth unemployment" + }, + { + "Date": "2014-10-26T00:00:00", + "Tournament": "SDA Novices", + "Round": 1, + "Motion": "THW ban all political donations by corporations" + }, + { + "Date": "2014-10-26T00:00:00", + "Tournament": "SDA Novices", + "Round": 2, + "Motion": "THBT Miley Cyrus' sexualised performances (such as Wrecking Ball) are a victory for feminism" + }, + { + "Date": "2014-10-26T00:00:00", + "Tournament": "SDA Novices", + "Round": 3, + "Motion": "THW unconditionally lift non-arms related sanctions on North Korea" + }, + { + "Date": "2014-10-26T00:00:00", + "Tournament": "SDA Novices", + "Round": 4, + "Motion": "TH Supports Vigilanteism in high crime areas" + }, + { + "Date": "2014-10-26T00:00:00", + "Tournament": "SDA Novices", + "Round": "Open_Final", + "Motion": "THBT the UK should unilateraly remove all restrictions on immigration from its former colonies" + }, + { + "Date": "2014-10-25T00:00:00", + "Tournament": "Bogwall (SSDC Novices)", + "Round": 1, + "Motion": "THW force companies to pay their interns" + }, + { + "Date": "2014-10-25T00:00:00", + "Tournament": "Bogwall (SSDC Novices)", + "Round": 2, + "Motion": "THW out closeted LGBT sports stars" + }, + { + "Date": "2014-10-25T00:00:00", + "Tournament": "Bogwall (SSDC Novices)", + "Round": 3, + "Motion": "THW allocate votes inversely proportional to wealth (where everyone gets at least one vote)" + }, + { + "Date": "2014-10-25T00:00:00", + "Tournament": "Bogwall (SSDC Novices)", + "Round": 4, + "Motion": "THW allow single parents to raise their children in prison" + }, + { + "Date": "2014-10-25T00:00:00", + "Tournament": "Bogwall (SSDC Novices)", + "Round": "Open_Semis", + "Motion": "THBT the West should use ground troops against the Islamic State" + }, + { + "Date": "2014-10-25T00:00:00", + "Tournament": "Bogwall (SSDC Novices)", + "Round": "Open_Final", + "Motion": "THW require British political parties to field 50% female candidates in national elections" + }, + { + "Date": "2014-10-24T00:00:00", + "Tournament": "Belgrade Open", + "Round": 1, + "Motion": "THW allow individuals to grant amnesty to criminals for crimes they committed against them" + }, + { + "Date": "2014-10-24T00:00:00", + "Tournament": "Belgrade Open", + "Round": 2, + "Motion": "THW break up banks that are deemed too big to fail" + }, + { + "Date": "2014-10-24T00:00:00", + "Tournament": "Belgrade Open", + "Round": 3, + "Motion": "THBT the LGBTQ lobby should make up evidence that prominent anti-LGBTQ rights campaigners are, themselves LGBTQ" + }, + { + "Date": "2014-10-24T00:00:00", + "Tournament": "Belgrade Open", + "Round": 4, + "Motion": "THBT developing nations should hold the Catholic Church financially liable for the medical expenses of Catholic HIV/AIDS victims in areas where the church campaigns against condom use" + }, + { + "Date": "2014-10-24T00:00:00", + "Tournament": "Belgrade Open", + "Round": 5, + "Motion": "THW ban dating services built around matching rich men/women with younger men/women" + }, + { + "Date": "2014-10-24T00:00:00", + "Tournament": "Belgrade Open", + "Round": "Open_Semis", + "Motion": "THBT Serbia should immediately cut off political and economic ties with the Russian Federation" + }, + { + "Date": "2014-10-24T00:00:00", + "Tournament": "Belgrade Open", + "Round": "Open_Final", + "Motion": "THW immediately evacuate all relics off cultural or historical import currently located in unstable countries to stable Western nations" + }, + { + "Date": "2014-10-18T00:00:00", + "Tournament": "SOAS IV", + "Round": 1, + "Motion": "THW require parents to vaccinate their children, except where doing so is not in the child's medical interest" + }, + { + "Date": "2014-10-18T00:00:00", + "Tournament": "SOAS IV", + "Round": 2, + "Motion": "THW ban the paying of ransom insurance in the case of kidnapping" + }, + { + "Date": "2014-10-18T00:00:00", + "Tournament": "SOAS IV", + "Round": 3, + "Motion": "THW impose very high taxes on the rich, even when doing so will not increase total tax revenues" + }, + { + "Date": "2014-10-18T00:00:00", + "Tournament": "SOAS IV", + "Round": 4, + "Motion": "THBT feminist campaigns directed specifically at men are harmful to the feminist cause" + }, + { + "Date": "2014-10-18T00:00:00", + "Tournament": "SOAS IV", + "Round": 5, + "Motion": "THBT the IMF and the World Bank should not make debt relief for highly indebted poor countries conditional on trade liberalisation" + }, + { + "Date": "2014-10-18T00:00:00", + "Tournament": "SOAS IV", + "Round": "ESL_Final", + "Motion": "THW offer full amnesty to any European citizen currently fighting on behalf of ISIL as long as they immediately return to Europe" + }, + { + "Date": "2014-10-18T00:00:00", + "Tournament": "SOAS IV", + "Round": "Open_Quarters", + "Motion": "THBT the state has a duty to provide the long term unemployed with lasting employment which pays at least the minimum wage" + }, + { + "Date": "2014-10-18T00:00:00", + "Tournament": "SOAS IV", + "Round": "Open_Semis", + "Motion": "THR Lara Croft" + }, + { + "Date": "2014-10-18T00:00:00", + "Tournament": "SOAS IV", + "Round": "Open_Final", + "Motion": "THS a federal UK" + }, + { + "Date": "2014-10-18T00:00:00", + "Tournament": "Strathclyde Cup", + "Round": 1, + "Motion": "THBT retired parents should be allowed to seek alimony payments from their adult children." + }, + { + "Date": "2014-10-18T00:00:00", + "Tournament": "Strathclyde Cup", + "Round": 2, + "Motion": "THBT western media outlets should collectively decline to cover any ISIS actions primarily intended to attract western attention (e.g. Hostage takings/executions)" + }, + { + "Date": "2014-10-18T00:00:00", + "Tournament": "Strathclyde Cup", + "Round": 3, + "Motion": "THBT copyright of photographic art featuring individuals or communities of people should belong to those people, not the artist." + }, + { + "Date": "2014-10-18T00:00:00", + "Tournament": "Strathclyde Cup", + "Round": 4, + "Motion": "THBT the trans movement should actively seek to separate themselves, their issues and their collective identity from the LGBTQ movement in their campaigns and in the public consciousness." + }, + { + "Date": "2014-10-18T00:00:00", + "Tournament": "Strathclyde Cup", + "Round": "Open_Final", + "Motion": "THBT military conscription should be regarded as a war crime." + }, + { + "Date": "2014-10-17T00:00:00", + "Tournament": "Roosevelt Open", + "Round": 1, + "Motion": "THW prioritise dealing with the consequences of climate change rather than preventing it" + }, + { + "Date": "2014-10-17T00:00:00", + "Tournament": "Roosevelt Open", + "Round": 2, + "Motion": "THW set the burden of proof in criminal trials to \"balance of probabilities\" rather than \"beyond reasonable doubt\"." + }, + { + "Date": "2014-10-17T00:00:00", + "Tournament": "Roosevelt Open", + "Round": 3, + "Motion": "THR that companies such as Facebook and Apple have offered to pay for elective egg freezing for their employees." + }, + { + "Date": "2014-10-17T00:00:00", + "Tournament": "Roosevelt Open", + "Round": 4, + "Motion": "THBT companies like H&M and Primark should hire half as many factory workers in the developing world but pay them twice as much." + }, + { + "Date": "2014-10-17T00:00:00", + "Tournament": "Roosevelt Open", + "Round": 5, + "Motion": "THBT people who go bankrupt should have their finances managed by the state for five years." + }, + { + "Date": "2014-10-17T00:00:00", + "Tournament": "Roosevelt Open", + "Round": "Novice_Final", + "Motion": "THW only allow those who pass a political awareness exam to vote." + }, + { + "Date": "2014-10-17T00:00:00", + "Tournament": "Roosevelt Open", + "Round": "Open_Semis", + "Motion": "THW impose the death penalty for pretty crime, if we knew that it would be 100% effective in deterring pretty crime and would never be used." + }, + { + "Date": "2014-10-17T00:00:00", + "Tournament": "Roosevelt Open", + "Round": "Open_Final", + "Motion": "THBT the EU should abandon its aim to establish an \"ever closer union\"." + }, + { + "Date": "2014-10-17T00:00:00", + "Tournament": "Turku Open", + "Round": 1, + "Motion": "THBT the EU should make English the primary language of instruction for all students above the age of 14" + }, + { + "Date": "2014-10-17T00:00:00", + "Tournament": "Turku Open", + "Round": 2, + "Motion": "TH supports violent revolution in countries with severe economic inequality" + }, + { + "Date": "2014-10-17T00:00:00", + "Tournament": "Turku Open", + "Round": 3, + "Motion": "THW ban religious practices that cause cruelty to animals." + }, + { + "Date": "2014-10-17T00:00:00", + "Tournament": "Turku Open", + "Round": 4, + "Motion": "ΤΗΒΤ on balance the invention of nuclear weapons was beneficial for the world." + }, + { + "Date": "2014-10-17T00:00:00", + "Tournament": "Turku Open", + "Round": 5, + "Motion": "TH would make bidding to host major sporting events conditional on winning a local public referendum." + }, + { + "Date": "2014-10-17T00:00:00", + "Tournament": "Turku Open", + "Round": "Open_Semis", + "Motion": "THBT parents should push their kids to achieve, even if that comes at the expense of their child’s happiness." + }, + { + "Date": "2014-10-17T00:00:00", + "Tournament": "Turku Open", + "Round": "Open_Final", + "Motion": "THW take the red pill." + }, + { + "Date": "2014-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": 1, + "Motion": "THW transfer all state funding for elite sportspersons to youth academies" + }, + { + "Date": "2014-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": 2, + "Motion": "THBT war journalists should be forced to reveal their sources in international criminal tribunals (including the International Criminal Court) trying cases of war crimes, crimes against humanity or genocide." + }, + { + "Date": "2014-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": 3, + "Motion": "THW publicly disclose all salaries" + }, + { + "Date": "2014-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": 4, + "Motion": "THW create separate schools for LGBTQ youth" + }, + { + "Date": "2014-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": 5, + "Motion": "THW consider senior politicians under oath when making public statements on political issues, thus making them criminally liable for perjury if they lie" + }, + { + "Date": "2014-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": "Novice_Finals", + "Motion": "THB the media should show images of Islamic State attrocities in their full brutality" + }, + { + "Date": "2014-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": "Open_Quarters", + "Motion": "THBT democratic states dominated by hegemonic political parties should forcibly break up those parties" + }, + { + "Date": "2014-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": "Open_Semis", + "Motion": "THR the way that brutal antiterrorism tactics have been portrayed in Western film and television media" + }, + { + "Date": "2014-10-16T00:00:00", + "Tournament": "Hart House IV", + "Round": "Open_Finals", + "Motion": "TH, as Turkey, would intervene militarily in the Syrian civil war." + }, + { + "Date": "2014-10-10T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": 1, + "Motion": "THW impose a tax on unhealthy foods" + }, + { + "Date": "2014-10-10T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": 2, + "Motion": "TH believes that animal rights activists should launch a campaign of sabotage and property destruction to further the cause of animal rights." + }, + { + "Date": "2014-10-10T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": 3, + "Motion": "THW legalise the buying and selling of sexual services" + }, + { + "Date": "2014-10-10T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": 4, + "Motion": "TH, as a parent with the financial means to do so, would not send their child to private school" + }, + { + "Date": "2014-10-10T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": "Novice_Final", + "Motion": "THW make voting compulsory" + }, + { + "Date": "2014-10-10T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": "Open_Semis", + "Motion": "THW only imprison individuals who have committed violent crimes and pose a continuing threat to society" + }, + { + "Date": "2014-10-10T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": "Open_Final", + "Motion": "TH regrets the characterisation of soldiers as heroes" + }, + { + "Date": "2014-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": 1, + "Motion": "THO the American charter school movement" + }, + { + "Date": "2014-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": 2, + "Motion": "THW cooperate with any leader or regime to defeat non-state actors that systematically violate human rights" + }, + { + "Date": "2014-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": 3, + "Motion": "THR the rise of dating and other websites that allow individuals to rate others based on past romantic interactions (e.g. Lulu)" + }, + { + "Date": "2014-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": 4, + "Motion": "THBT institutional art credentials are bad for art" + }, + { + "Date": "2014-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": 5, + "Motion": "TH, as an emerging democracy, would suppress domestic media providers in favour of international media providers" + }, + { + "Date": "2014-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": 6, + "Motion": "THBT universities and other stakeholders should primarily consider teaching ability rather than research outputs when awarding tenure and allocating academic funding" + }, + { + "Date": "2014-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": "Open_Quarters", + "Motion": "THW facilitate religious prosletysation in areas of high socio-economic deprivation" + }, + { + "Date": "2014-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": "Open_Semis", + "Motion": "THS the use of forced population transfers that create separate, ethnically homogenous states as a solution to prolonged ethnic conflict" + }, + { + "Date": "2014-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": "Open_Finals", + "Motion": "THBT, in the face of police repression, protesters have a right to non-lethal, but violent, proportional retaliation" + }, + { + "Date": "2014-10-04T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 1, + "Motion": "THBT governments should negotiate with terrorists when their citizens are taken hostage by terrorist groups" + }, + { + "Date": "2014-10-04T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 2, + "Motion": "THW allow international commercial surrogacy" + }, + { + "Date": "2014-10-04T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 3, + "Motion": "THS “No Platform” policies in student unions" + }, + { + "Date": "2014-10-04T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 4, + "Motion": "THW pay reparations to former mining communities in the UK" + }, + { + "Date": "2014-10-04T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 5, + "Motion": "THBT government regulation agencies should be allowed to break up banks, like Goldman Sachs, JP Morgan Chase and HSBC, that are deemed ’too big to fail’." + }, + { + "Date": "2014-10-04T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": "Open_Semis", + "Motion": "THBT governments should prioritise economically productive public spending over investing in arts, humanities, etc. when deciding on their budget." + }, + { + "Date": "2014-10-04T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": "Open_Final", + "Motion": "TH, as the UK Labour party, would participate in a cross party initiative to reform the Human Rights Act." + }, + { + "Date": "2014-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 1, + "Motion": "THW legalize the sale of organs, blood and marrow" + }, + { + "Date": "2014-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 2, + "Motion": "THW never arm or finance rebel groups as a tactic of war." + }, + { + "Date": "2014-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 3, + "Motion": "THBT universities should abolish all committees that deal with sexual crimes against their students and defer to the Police" + }, + { + "Date": "2014-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 4, + "Motion": "THBT FIFA should revoke the 2018 World Cup from Russia" + }, + { + "Date": "2014-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 5, + "Motion": "THBT police forces should accurately reflect the racial demographic of the population they protect." + }, + { + "Date": "2014-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 6, + "Motion": "THBT men should not hold leadership postitions within women's rights and feminist organizations." + }, + { + "Date": "2014-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": "Open_Semis", + "Motion": "THBT United States would suspend all foreign aid to Israel unless they withdraw from the West Bank" + }, + { + "Date": "2014-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": "Open_Finals", + "Motion": "THBT individuals have an obligation not to consume artwork from artists that have committed highly immoral actions." + }, + { + "Date": "2014-09-06T00:00:00", + "Tournament": "Joynt Scroll 2014", + "Round": 1, + "Motion": "This house, as a justice of the US Supreme Court, would not use their position to push their own social agenda." + }, + { + "Date": "2014-09-06T00:00:00", + "Tournament": "Joynt Scroll 2014", + "Round": 2, + "Motion": "This house believes that efforts to include characters with mental illnesses in popular media actively harms people with those conditions." + }, + { + "Date": "2014-09-06T00:00:00", + "Tournament": "Joynt Scroll 2014", + "Round": 3, + "Motion": "This house believes New Zealand should implement a tax on carbon emissions." + }, + { + "Date": "2014-09-06T00:00:00", + "Tournament": "Joynt Scroll 2014", + "Round": 4, + "Motion": "This house believes that Iran should adopt a pro-Western foreign policy" + }, + { + "Date": "2014-09-06T00:00:00", + "Tournament": "Joynt Scroll 2014", + "Round": 5, + "Motion": "This house would delegate authority over the preservation of te reo to iwi." + }, + { + "Date": "2014-09-06T00:00:00", + "Tournament": "Joynt Scroll 2014", + "Round": 6, + "Motion": "This house would prohibit research into human augmentation designed to facilitate transhumanism." + }, + { + "Date": "2014-08-19T00:00:00", + "Tournament": "Zagreb EUDC 2014", + "Round": 1, + "Motion": "This house would pay additional benefits to families on welfare according to their child’s performance in school." + }, + { + "Date": "2014-08-19T00:00:00", + "Tournament": "Zagreb EUDC 2014", + "Round": 2, + "Motion": "This house supports two-party political systems over multi-party political systems." + }, + { + "Date": "2014-08-19T00:00:00", + "Tournament": "Zagreb EUDC 2014", + "Round": 3, + "Motion": "This house would ban international aid charities from using senational, graphic, or overly-emotional images of suffering in fundraising and advertising campaigns." + }, + { + "Date": "2014-08-19T00:00:00", + "Tournament": "Zagreb EUDC 2014", + "Round": 4, + "Motion": "This house believes that EU member states should nationalise all their oil and gas resources in order to surrender total ownership and control of them to an EU-run energy agency." + }, + { + "Date": "2014-08-19T00:00:00", + "Tournament": "Zagreb EUDC 2014", + "Round": 5, + "Motion": "This house believes that states of the former Yugoslavia should not commemorate the events of the Yugoslav Wars." + }, + { + "Date": "2014-08-19T00:00:00", + "Tournament": "Zagreb EUDC 2014", + "Round": 6, + "Motion": "This house would introduce blind voting." + }, + { + "Date": "2014-08-19T00:00:00", + "Tournament": "Zagreb EUDC 2014", + "Round": 7, + "Motion": "This house would require of police departments that the ethnic composition of their arrests match the ethnic composition of the population in their jurisdiction." + }, + { + "Date": "2014-08-19T00:00:00", + "Tournament": "Zagreb EUDC 2014", + "Round": 8, + "Motion": "This house believes that micro-finance organisations (including, but not limited to: NGOs, charities and development banks) should offer micro-finance loans in developing nations exclusively to women." + }, + { + "Date": "2014-08-19T00:00:00", + "Tournament": "Zagreb EUDC 2014", + "Round": 9, + "Motion": "This house believes that states should hold binding national referendums on major peace agreements." + }, + { + "Date": "2014-08-19T00:00:00", + "Tournament": "Zagreb EUDC 2014", + "Round": "ESL_Tiebreak", + "Motion": "This house would make membership in a labour union compulsory for every worker." + }, + { + "Date": "2014-08-19T00:00:00", + "Tournament": "Zagreb EUDC 2014", + "Round": "ESL_Quarters", + "Motion": "This house would require companies to place images of animal suffering on all products or food whose production harmed or killed animals." + }, + { + "Date": "2014-08-19T00:00:00", + "Tournament": "Zagreb EUDC 2014", + "Round": "ESL_Semis", + "Motion": "This house believes that leaders of minority religions in Europe should strongly encourage their congregations to refrain from public displays of their faith." + }, + { + "Date": "2014-08-19T00:00:00", + "Tournament": "Zagreb EUDC 2014", + "Round": "ESL_Final", + "Motion": "THW, assuming it was technically feasible, remove the ability of soldiers to feel fear" + }, + { + "Date": "2014-08-19T00:00:00", + "Tournament": "Zagreb EUDC 2014", + "Round": "Open_Quarters", + "Motion": "This house believes that supreme/constitutional courts should not have the power to strike down legislation." + }, + { + "Date": "2014-08-19T00:00:00", + "Tournament": "Zagreb EUDC 2014", + "Round": "Open_Semis", + "Motion": "This house believes that the United States of America should invade, and forcibly partition Iraq." + }, + { + "Date": "2014-08-19T00:00:00", + "Tournament": "Zagreb EUDC 2014", + "Round": "Open_Finals", + "Motion": "This House believes that feminist movement should oppose military interventions which claim to further women's rights" + }, + { + "Date": "2014-08-15T00:00:00", + "Tournament": "Ljubljana IV", + "Round": 1, + "Motion": "THBT countries with booming populations should allocate every adult a single, tradable permit to have a child." + }, + { + "Date": "2014-08-15T00:00:00", + "Tournament": "Ljubljana IV", + "Round": 2, + "Motion": "THW launch a ground invasion to fight the Islamic State (ISIS) in Iraq" + }, + { + "Date": "2014-08-15T00:00:00", + "Tournament": "Ljubljana IV", + "Round": 3, + "Motion": "THBT states should seek to prioritise reducing income inequality over GDP growth" + }, + { + "Date": "2014-08-15T00:00:00", + "Tournament": "Ljubljana IV", + "Round": 4, + "Motion": "THBT states should pay reparations to minorities, who are citizens, that the state has previously oppressed" + }, + { + "Date": "2014-08-15T00:00:00", + "Tournament": "Ljubljana IV", + "Round": 5, + "Motion": "THBT the EU member states should sanction any state that ignores ECJ rulings." + }, + { + "Date": "2014-08-15T00:00:00", + "Tournament": "Ljubljana IV", + "Round": "Open_Semis", + "Motion": "TH belives that militaries are justified in directing their troops to use the Hannibal procedure" + }, + { + "Date": "2014-08-15T00:00:00", + "Tournament": "Ljubljana IV", + "Round": "Open_Final", + "Motion": "TH regrets the increased mechanization of manual labor" + }, + { + "Date": "2014-08-09T00:00:00", + "Tournament": "Rijeka Open", + "Round": 1, + "Motion": "THBT the media should show the full horrors of war" + }, + { + "Date": "2014-08-09T00:00:00", + "Tournament": "Rijeka Open", + "Round": 2, + "Motion": "TH supports Nicki Minaj's \"Anaconda\" album cover" + }, + { + "Date": "2014-08-09T00:00:00", + "Tournament": "Rijeka Open", + "Round": 3, + "Motion": "THW take away the right to host the 2018 World Cup from Russia" + }, + { + "Date": "2014-08-09T00:00:00", + "Tournament": "Rijeka Open", + "Round": 4, + "Motion": "THW enforce affirmative action of the poor, rather than minorities" + }, + { + "Date": "2014-08-09T00:00:00", + "Tournament": "Rijeka Open", + "Round": 5, + "Motion": "TH, as the USA, would withdraw all of its financial and military aid from Israel" + }, + { + "Date": "2014-08-09T00:00:00", + "Tournament": "Rijeka Open", + "Round": "Open_Semis", + "Motion": "THW prosecute women whose lifestyle severely endangers their future child’s quality of life" + }, + { + "Date": "2014-08-09T00:00:00", + "Tournament": "Rijeka Open", + "Round": "Open_Final", + "Motion": "TH regrets the rise of consumerism" + }, + { + "Date": "2014-08-09T00:00:00", + "Tournament": "Westminster IV", + "Round": 1, + "Motion": "THBT state health care providers should offer and fund faith-based treatment options." + }, + { + "Date": "2014-08-09T00:00:00", + "Tournament": "Westminster IV", + "Round": 2, + "Motion": "THW allow the homeless to seize long-term unoccupied properties." + }, + { + "Date": "2014-08-09T00:00:00", + "Tournament": "Westminster IV", + "Round": 3, + "Motion": "TH supports the recasting of male action heroes and superheroes as female." + }, + { + "Date": "2014-08-09T00:00:00", + "Tournament": "Westminster IV", + "Round": 4, + "Motion": "TH believes that populist parties (such as UKIP, theTea Party Movement and the 5 Star movement) are good for democracy." + }, + { + "Date": "2014-08-09T00:00:00", + "Tournament": "Westminster IV", + "Round": 5, + "Motion": "TH would implement the death penalty for crimes against humanity." + }, + { + "Date": "2014-08-09T00:00:00", + "Tournament": "Westminster IV", + "Round": "Open_Final", + "Motion": "TH as an Israeli would refuse to join the Israel Defence Force." + }, + { + "Date": "2014-08-02T00:00:00", + "Tournament": "Bielefeld Religion debate tournament", + "Round": 1, + "Motion": "THBT, without religion, there are basically no values" + }, + { + "Date": "2014-08-02T00:00:00", + "Tournament": "Bielefeld Religion debate tournament", + "Round": 2, + "Motion": "THW follow the prophet (m/f)" + }, + { + "Date": "2014-08-02T00:00:00", + "Tournament": "Bielefeld Religion debate tournament", + "Round": 3, + "Motion": "THW not take the drug." + }, + { + "Date": "2014-08-02T00:00:00", + "Tournament": "Bielefeld Religion debate tournament", + "Round": 4, + "Motion": "TH, as the Evangelical Church in Germany, would not baptise children." + }, + { + "Date": "2014-08-02T00:00:00", + "Tournament": "Bielefeld Religion debate tournament", + "Round": 5, + "Motion": "THW in this religiously conservative society actively engage in religious activities and events (attend worshop ceremonies, share blessings, say prayers)." + }, + { + "Date": "2014-08-02T00:00:00", + "Tournament": "Bielefeld Religion debate tournament", + "Round": "Open_Final", + "Motion": "THW not offer theology at state universities" + }, + { + "Date": "2014-08-02T00:00:00", + "Tournament": "Imperial IV", + "Round": 1, + "Motion": "THBT developing countries should never hold major international sporting events" + }, + { + "Date": "2014-08-02T00:00:00", + "Tournament": "Imperial IV", + "Round": 2, + "Motion": "THR the rise of internet piracy" + }, + { + "Date": "2014-08-02T00:00:00", + "Tournament": "Imperial IV", + "Round": 3, + "Motion": "THW require quotas of female and minority candidates for judicial appointments" + }, + { + "Date": "2014-08-02T00:00:00", + "Tournament": "Imperial IV", + "Round": 4, + "Motion": "THW Ban any public commemoration of the centenary of WW1" + }, + { + "Date": "2014-08-02T00:00:00", + "Tournament": "Imperial IV", + "Round": 5, + "Motion": "THR the rise of hookup apps" + }, + { + "Date": "2014-08-02T00:00:00", + "Tournament": "Imperial IV", + "Round": "Open_Semis", + "Motion": "THBT Elizabeth Warren should aggressively challenge Hilary Clinton for the presidency" + }, + { + "Date": "2014-08-02T00:00:00", + "Tournament": "Imperial IV", + "Round": "Open_Final", + "Motion": "THBT The British Government should publish the communications in their entirety" + }, + { + "Date": "2014-07-27T00:00:00", + "Tournament": "NCH International Relations Open", + "Round": 1, + "Motion": "THB the EU should allow freedom of movement within its borders to Syrian refugees" + }, + { + "Date": "2014-07-27T00:00:00", + "Tournament": "NCH International Relations Open", + "Round": 2, + "Motion": "THB the EU and other western powers should join the US embargo against Cuba until it transitions to a multi party democracy" + }, + { + "Date": "2014-07-27T00:00:00", + "Tournament": "NCH International Relations Open", + "Round": 3, + "Motion": "THBT it is legitimate for Israel to unilaterally strike Iranian nuclear facilities if current talks fail" + }, + { + "Date": "2014-07-27T00:00:00", + "Tournament": "NCH International Relations Open", + "Round": 4, + "Motion": "THW replace the ICC with regional courts to prosecute crimes against humanity" + }, + { + "Date": "2014-07-27T00:00:00", + "Tournament": "NCH International Relations Open", + "Round": "Open_Final", + "Motion": "THBT NATO should militarily intervene to assist the Ukrainian government in suppressing the separatist rebels in the eastern province" + }, + { + "Date": "2014-07-26T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "Round": 1, + "Motion": "THBT people have a moral duty to stop chanting words like “puto” or “maricón” (faggot) at sporting events" + }, + { + "Date": "2014-07-26T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "Round": 2, + "Motion": "THBT we should prohibit public hospitals to proscribe alternative treatments (like homeopathic treatments, accupuncture or Bach flower remedies)" + }, + { + "Date": "2014-07-26T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "Round": 4, + "Motion": "THW ban the use of circus animals" + }, + { + "Date": "2014-07-26T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "Round": 5, + "Motion": "THW ban the sales of complex financial products" + }, + { + "Date": "2014-07-26T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "Round": 6, + "Motion": "THW penalise a person who knows they have HIV and has sexual contacts with others without informing them" + }, + { + "Date": "2014-07-26T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "Round": 8, + "Motion": "THBT smokers should cover the costs of their medical treatments" + }, + { + "Date": "2014-07-26T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "Round": 9, + "Motion": "THBT the Mexican government (and others in military situations) should take steps to prevent people travelling in life-threatening ways like \"La Bestia\"" + }, + { + "Date": "2014-07-26T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "Round": "ESL_Final", + "Motion": "THW eliminate migration barriers" + }, + { + "Date": "2014-07-26T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "Round": "Open_Octos", + "Motion": "TH, if presented with a choice between holding the FIFA World Cup 2022 in Qatar or not holding the World Cup at all that year, would choose not to hold the World Cup in 2022." + }, + { + "Date": "2014-07-26T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "Round": "Open_Quarters", + "Motion": "THW eliminate the minimum wage" + }, + { + "Date": "2014-07-26T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "Round": "Open_Semis", + "Motion": "esta casa dejaría en manos de los ciudadanos, a través del voto directo en referendos" + }, + { + "Date": "2014-07-26T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "Round": "Open_Final", + "Motion": "THB it is just that citizens create their own armed groups when the state fails to protect them from organised crime" + }, + { + "Date": "2014-07-24T00:00:00", + "Tournament": "Boddencup", + "Round": 1, + "Motion": "THBT, western democracies should send military ground forces against the organisation ISlamic State (formerly ISIS)" + }, + { + "Date": "2014-07-24T00:00:00", + "Tournament": "Boddencup", + "Round": 2, + "Motion": "THW not invest in research and development that has the delay of the aging process as its sole purpose." + }, + { + "Date": "2014-07-24T00:00:00", + "Tournament": "Boddencup", + "Round": 3, + "Motion": "THW welcome the worldwide introduction of soylent or similar mixtures as a nutritional standard or staple food." + }, + { + "Date": "2014-07-24T00:00:00", + "Tournament": "Boddencup", + "Round": 4, + "Motion": "THBT you should use the beliefs of your fellow human beings to promote and establish socially progressive norms in society." + }, + { + "Date": "2014-07-24T00:00:00", + "Tournament": "Boddencup", + "Round": 5, + "Motion": "THW temporarily suspend Hungary’s EU membership" + }, + { + "Date": "2014-07-24T00:00:00", + "Tournament": "Boddencup", + "Round": "Open_Semis", + "Motion": "THW impose extra (penalty) taxes on products that cannot be proven to have been produced under fair-trade conditions." + }, + { + "Date": "2014-07-24T00:00:00", + "Tournament": "Boddencup", + "Round": "Open_Final", + "Motion": "THBT the United Nations as an idea have failed by now (auf mittelbare Zeit)" + }, + { + "Date": "2014-07-19T00:00:00", + "Tournament": "Earlsfort Open", + "Round": 1, + "Motion": "THW Prosecute The Parents/Guardians of Obese Children For Neglect" + }, + { + "Date": "2014-07-19T00:00:00", + "Tournament": "Earlsfort Open", + "Round": 2, + "Motion": "THB States Should Ensure That Their Police Forces are Roughly Proportionally Representative of the Diversity of Race & Religion of the Local Population" + }, + { + "Date": "2014-07-19T00:00:00", + "Tournament": "Earlsfort Open", + "Round": 3, + "Motion": "THB The European Union Should Immediately And Aggressively Accelerate The Accession of Ukraine" + }, + { + "Date": "2014-07-19T00:00:00", + "Tournament": "Earlsfort Open", + "Round": 4, + "Motion": "THW Allow Formula 1 Teams to Race a Third Car, Provided at Least 1 of the Drivers is Female" + }, + { + "Date": "2014-07-19T00:00:00", + "Tournament": "Earlsfort Open", + "Round": 5, + "Motion": "THB Religious Institutions Should Not be Entitled to Any Exemption From Anti-Discrimination Laws" + }, + { + "Date": "2014-07-19T00:00:00", + "Tournament": "Earlsfort Open", + "Round": "Open_Semis", + "Motion": "THB one should not be entitled to seek removal of any links to any data irrespective of their being ‘‘inadequate, irrelevant or excessive“" + }, + { + "Date": "2014-07-19T00:00:00", + "Tournament": "Earlsfort Open", + "Round": "Open_Final", + "Motion": "THB the state should provide no further services beyond those of basic law and order" + }, + { + "Date": "2014-07-19T00:00:00", + "Tournament": "HeidelBÄM", + "Round": 1, + "Motion": "Should parents’ votes carry more weight in elections?" + }, + { + "Date": "2014-07-19T00:00:00", + "Tournament": "HeidelBÄM", + "Round": 2, + "Motion": "Should cultural institutes be self-sufficient?" + }, + { + "Date": "2014-07-19T00:00:00", + "Tournament": "HeidelBÄM", + "Round": 3, + "Motion": "Should combat sports/martial arts be forbidden?" + }, + { + "Date": "2014-07-19T00:00:00", + "Tournament": "HeidelBÄM", + "Round": "Open_Final", + "Motion": "Should development aid only be given in the form of knowledge transfer?" + }, + { + "Date": "2014-07-18T00:00:00", + "Tournament": "Bulgaria Open", + "Round": 1, + "Motion": "This House believes men should have the right to refuse paternal financial obligations towards pregnancies they did not consent to." + }, + { + "Date": "2014-07-18T00:00:00", + "Tournament": "Bulgaria Open", + "Round": 2, + "Motion": "This House believes individuals have the right to be forgotten." + }, + { + "Date": "2014-07-18T00:00:00", + "Tournament": "Bulgaria Open", + "Round": 3, + "Motion": "This House would abandon the use of economic sanctions as a tool for achieving political aims" + }, + { + "Date": "2014-07-18T00:00:00", + "Tournament": "Bulgaria Open", + "Round": 4, + "Motion": "This House discredits portrayal of Disney princesses" + }, + { + "Date": "2014-07-18T00:00:00", + "Tournament": "Bulgaria Open", + "Round": 5, + "Motion": "This House would allow 3rd World countries to choose to be reinstated as a colony." + }, + { + "Date": "2014-07-18T00:00:00", + "Tournament": "Bulgaria Open", + "Round": "Novice_Final", + "Motion": "THW not tell anyone.", + "InfoSlide": "You have the ability to know when and how people are going to die. " + }, + { + "Date": "2014-07-18T00:00:00", + "Tournament": "Bulgaria Open", + "Round": "Open_Semis", + "Motion": "This House would allow drug addicts to file class action suits against their state, for their condition." + }, + { + "Date": "2014-07-18T00:00:00", + "Tournament": "Bulgaria Open", + "Round": "Open_Final", + "Motion": "This House would disband the Vatican as a state." + }, + { + "Date": "2014-07-11T00:00:00", + "Tournament": "BBU Open", + "Round": 1, + "Motion": "This house would ban schools from catering to a specific religion (such as Catholic schools, Hebrew schools or Muslim schools)" + }, + { + "Date": "2014-07-11T00:00:00", + "Tournament": "BBU Open", + "Round": 2, + "Motion": "This house believes that Brazilian footballers should have boycotted the entire 2014 World Cup." + }, + { + "Date": "2014-07-11T00:00:00", + "Tournament": "BBU Open", + "Round": 3, + "Motion": "THW allow inmates to pay for substantially better prison conditions." + }, + { + "Date": "2014-07-11T00:00:00", + "Tournament": "BBU Open", + "Round": 4, + "Motion": "THW revoke the citizenship of Western citizens who travel to the Middle East to join Jihadi groups." + }, + { + "Date": "2014-07-11T00:00:00", + "Tournament": "BBU Open", + "Round": 5, + "Motion": "THBT western European states should adopt the eastern European ban on all Communist symbols." + }, + { + "Date": "2014-07-11T00:00:00", + "Tournament": "BBU Open", + "Round": "Open_Semis", + "Motion": "Assuming the technology to do so safely and easily exist, THW force everyone to undergo periodical sex changes." + }, + { + "Date": "2014-07-11T00:00:00", + "Tournament": "BBU Open", + "Round": "Open_Final", + "Motion": "You are a scientist. You have discovered absolute conclusive proof that God does not exist. This house would destroy the information." + }, + { + "Date": "2014-07-11T00:00:00", + "Tournament": "Methusalem Cup", + "Round": 1, + "Motion": "Should the Catholic Church make its members to elect the new pope?" + }, + { + "Date": "2014-07-11T00:00:00", + "Tournament": "Methusalem Cup", + "Round": 2, + "Motion": "Should debaters who win their first ZEIT DEBATTE stop participating in these tournaments as speakers?" + }, + { + "Date": "2014-07-11T00:00:00", + "Tournament": "Methusalem Cup", + "Round": 3, + "Motion": "Should wearing national symbols like flags, colours, make up, costumes and sports shirts be banned during international sport events?" + }, + { + "Date": "2014-07-11T00:00:00", + "Tournament": "Methusalem Cup", + "Round": "Open_Final", + "Motion": "Should journalists be banned from participating actively (as speakers or writers) in political or scientific events?" + }, + { + "Date": "2014-07-07T00:00:00", + "Tournament": "Heart of Europe BP", + "Round": 1, + "Motion": "THW allow the use of nootropics for academic and professional purposes" + }, + { + "Date": "2014-07-07T00:00:00", + "Tournament": "Heart of Europe BP", + "Round": 2, + "Motion": "Given the rise of the Islamic State, THW support military intervention in Syria and Iraq" + }, + { + "Date": "2014-07-07T00:00:00", + "Tournament": "Heart of Europe BP", + "Round": 3, + "Motion": "THBT newly industrialized countries should not host international sporting events" + }, + { + "Date": "2014-07-07T00:00:00", + "Tournament": "Heart of Europe BP", + "Round": 4, + "Motion": "TH supports the implementation of Liquid Democracy via digital voting" + }, + { + "Date": "2014-07-07T00:00:00", + "Tournament": "Heart of Europe BP", + "Round": 5, + "Motion": "THW push the button (to end all life on earth)" + }, + { + "Date": "2014-07-07T00:00:00", + "Tournament": "Heart of Europe BP", + "Round": "Open_Final", + "Motion": "THW give up on climate change prevention and would instead focus on climate change adaptation" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 1.1, + "Motion": "THW have scientists make environmental policies, not politicians" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 1.2, + "Motion": "THBT humanism should disassociate from atheism" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 1.3, + "Motion": "THW nationalise porn" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 10.1, + "Motion": "THBT LGBT should split into its constituent parts" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 10.2, + "Motion": "THW teach sex positions explicitly for pleasure in sex education lessons" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 10.3, + "Motion": "THBT the US should assassinate the five Taliban prisoners released in return for Bowe Bergdahl so that the US will never negotiate with terrorists" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 2.1, + "Motion": "TH, as the US government, would create a separate Kurdish state" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 2.2, + "Motion": "THW only show films that pass the Bechdel test" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 2.3, + "Motion": "THW give equal coverage to mens’ and womens’ sport" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 3.1, + "Motion": "THBT the Mexican government should support vigilante groups" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 3.2, + "Motion": "THW remove the 9th clause from the Japanese constitution" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 3.3, + "Motion": "THW require all photoshopped images to be labelled" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 4.1, + "Motion": "THW reallocate names randomly" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 4.2, + "Motion": "THW allow simulated child pornography" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 4.3, + "Motion": "THW reduce US cultural domination" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 5.1, + "Motion": "THW decrease womens’ income tax" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 5.2, + "Motion": "THW aggressively hire ex-soldiers as teachers" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 5.3, + "Motion": "THBT Palestinians should accept demilitarisation in exchange for US recognition as a state" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 6.1, + "Motion": "THW ban private schools" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 6.2, + "Motion": "THW continue to drill the Arctic" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 6.3, + "Motion": "THW give house arrest for non-violent offenders" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 7.1, + "Motion": "THW not have set up the ICTY after the dissolution of Yugoslavia" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 7.2, + "Motion": "THBT Greece should immediately default and leave the Euro" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 7.3, + "Motion": "THW get councils to put out tenders for all NHS services in a local area" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 8.1, + "Motion": "THB liberal and progressive groups should stop saying “Check your privilege”" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 8.2, + "Motion": "THW prevent guilty nations of human rights violations from hosting sporting events" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 8.3, + "Motion": "THW abolish government funding of art" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 9.1, + "Motion": "THW send female diplomats to gender inequality countries" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 9.2, + "Motion": "THBT Mossad should covertly assassinate Syrian rebel leaders" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": 9.3, + "Motion": "TH regrets the commercialisation of indigenous cultures" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": "Open_Semi_1", + "Motion": "THW abolish Oxbridge" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": "Open_Semi_2", + "Motion": "THB that the UN should ban impartial small arms embargos" + }, + { + "Date": "2014-06-21T00:00:00", + "Tournament": "Durham Open", + "Round": "Open_Final", + "Motion": "THB that the Iraqi government should issue oil dividends to its citizens" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Eloquentiatoernooi (Eloquence tournament)", + "Round": 1.1, + "Motion": "Paternity leave should be equal to maternity leave" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Eloquentiatoernooi (Eloquence tournament)", + "Round": 1.2, + "Motion": "Students should get their basic study grant back." + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Eloquentiatoernooi (Eloquence tournament)", + "Round": 2.1, + "Motion": "Large banks should be split into smaller ones" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Eloquentiatoernooi (Eloquence tournament)", + "Round": 2.2, + "Motion": "We should prosecute homegrown Jihadis" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Eloquentiatoernooi (Eloquence tournament)", + "Round": 3.1, + "Motion": "More financial support for students is preferable over travel subsidies" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Eloquentiatoernooi (Eloquence tournament)", + "Round": 3.2, + "Motion": "The state should get a monopoly on prostitution" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Eloquentiatoernooi (Eloquence tournament)", + "Round": 4.1, + "Motion": "We should get a European army" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Eloquentiatoernooi (Eloquence tournament)", + "Round": 4.2, + "Motion": "The Netherlands should impose a maximum wage" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Eloquentiatoernooi (Eloquence tournament)", + "Round": 5.1, + "Motion": "We should add the P of paedophilia to the LGBT movement" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Eloquentiatoernooi (Eloquence tournament)", + "Round": 5.2, + "Motion": "Women older than forty should not have children" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Eloquentiatoernooi (Eloquence tournament)", + "Round": "Open_Semi_1", + "Motion": "The Dutch people should select the coach of the national football team" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Eloquentiatoernooi (Eloquence tournament)", + "Round": "Open_Semi_2", + "Motion": "A (very) high tax on inheritance would be just" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Eloquentiatoernooi (Eloquence tournament)", + "Round": "Open_Final", + "Motion": "Greenpeace should be banned" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Jena Frauenturnier (Women’s tournament)", + "Round": 1, + "Motion": "THW abolish all limitations on freedom of speech" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Jena Frauenturnier (Women’s tournament)", + "Round": 2, + "Motion": "THW ignore the snake and not eat from the fruit" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Jena Frauenturnier (Women’s tournament)", + "Round": 3, + "Motion": "TH welcomes double nationalities." + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Jena Frauenturnier (Women’s tournament)", + "Round": 4, + "Motion": "TH condemns the progressive marketisation of our health care system" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Jena Frauenturnier (Women’s tournament)", + "Round": "Open_Final", + "Motion": "THW boycott the football World Cup in Brasil" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Newcastle Mixed Doubles Open", + "Round": 1, + "Motion": "THW ban all procedures to alter one's racial appearance." + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Newcastle Mixed Doubles Open", + "Round": 2, + "Motion": "THW require all licenses for ethically controversial scientific experiments to be approved by a majority of a randomly selected group of citizens" + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Newcastle Mixed Doubles Open", + "Round": 3, + "Motion": "THW legalise commercial surrogacy." + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Newcastle Mixed Doubles Open", + "Round": 4, + "Motion": "THBT sex education in schools should teach techniques for pure sexual gratification (including but not limited to: anal sex, oral sex, mutual gratifcation, and masturbation)." + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Newcastle Mixed Doubles Open", + "Round": 5, + "Motion": "THW provide disproportionate financial incentives to make life choices which directly conflict with traditional gender roles." + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Newcastle Mixed Doubles Open", + "Round": "Open_Semis", + "Motion": "THW require that religious organisations and leaders remain politically neutral." + }, + { + "Date": "2014-06-14T00:00:00", + "Tournament": "Newcastle Mixed Doubles Open", + "Round": "Open_Final", + "Motion": "THW privatise the distribution of welfare." + }, + { + "Date": "2014-06-13T00:00:00", + "Tournament": "Monroe Cup", + "Round": 1, + "Motion": "THW criminalise the purchase of sex" + }, + { + "Date": "2014-06-13T00:00:00", + "Tournament": "Monroe Cup", + "Round": 2, + "Motion": "THBT seats in the UK Parliament should be based on competitive, merit-based, examinations rather than elections" + }, + { + "Date": "2014-06-13T00:00:00", + "Tournament": "Monroe Cup", + "Round": 3, + "Motion": "THBT The Palestinian people should abandon claims to independent statehood and publicly demand the merger of Palestine and Israel into a single democratic state" + }, + { + "Date": "2014-06-13T00:00:00", + "Tournament": "Monroe Cup", + "Round": 4, + "Motion": "THW remove the exemption for religious organisations from anti-discrimination legislation (such as the Equalities Act 2010)" + }, + { + "Date": "2014-06-13T00:00:00", + "Tournament": "Monroe Cup", + "Round": 5, + "Motion": "THBT the United States Government should pay reparations to the descendants of former slaves" + }, + { + "Date": "2014-06-07T00:00:00", + "Tournament": "Bristol Open", + "Round": 1, + "Motion": "THW publicly designate men's rights movements as hate groups and monitor them accordingly" + }, + { + "Date": "2014-06-07T00:00:00", + "Tournament": "Bristol Open", + "Round": 2, + "Motion": "THW act now to prevent quantum computing becoming a reality" + }, + { + "Date": "2014-06-07T00:00:00", + "Tournament": "Bristol Open", + "Round": 3, + "Motion": "TH, as Israel and the USA, would extend heavy military and economic aid to (only) Syrian rebel groups who publicly endorse immediate peace with Israel" + }, + { + "Date": "2014-06-07T00:00:00", + "Tournament": "Bristol Open", + "Round": 4, + "Motion": "THW, as Ed Milliband, ignore the referendum result, and remain in the EU" + }, + { + "Date": "2014-06-07T00:00:00", + "Tournament": "Bristol Open", + "Round": "Open_Final", + "Motion": "TH supports Kanye West‘s use of the Confederate flag" + }, + { + "Date": "2014-06-06T00:00:00", + "Tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "Round": 1, + "Motion": "THW abolish Gesinnungsstrafrecht (additional attitude/mindset penalties for crimes commited, e.g. hate crimes)" + }, + { + "Date": "2014-06-06T00:00:00", + "Tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "Round": 2, + "Motion": "THW give citizens the right to change their identities without giving justification" + }, + { + "Date": "2014-06-06T00:00:00", + "Tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "Round": 3, + "Motion": "THBT Putin’s conduct of the Crimea crisis was in Russia’s strategic interest" + }, + { + "Date": "2014-06-06T00:00:00", + "Tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "Round": 4, + "Motion": "TH is a citizen of a western liberal democracy that rejects discrimination on the basis of religion, gender, sexual orientation or ethnicity. TH would boycott works from artists (painters, musicians, movie directors, etc.) that personally hold discriminatory views, even when you like their art" + }, + { + "Date": "2014-06-06T00:00:00", + "Tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "Round": 5, + "Motion": "TH regrets the increasing classification of human behaviour as illnesses" + }, + { + "Date": "2014-06-06T00:00:00", + "Tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "Round": 6, + "Motion": "THW, as part of awareness campaigns about rape and sexual violence, inform women of potentially risky behaviour (like alcohol consumption or choice of clothing)" + }, + { + "Date": "2014-06-06T00:00:00", + "Tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "Round": 7, + "Motion": "TH, as the European Union, would introduce defence mechanisms agains anti-EU parties" + }, + { + "Date": "2014-06-06T00:00:00", + "Tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "Round": "ESL_Final", + "Motion": "THBT it is time for Germany to take more on miiltary responsibility in the world" + }, + { + "Date": "2014-06-06T00:00:00", + "Tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "Round": "Open_Quarters", + "Motion": ": THBT liberal democracies should not treat disclosure of information to the public as treason." + }, + { + "Date": "2014-06-06T00:00:00", + "Tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "Round": "Open_Semis", + "Motion": ": THW temporarily recolonise former colonies that have developed into “failed states”" + }, + { + "Date": "2014-06-06T00:00:00", + "Tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "Round": "Open_Final", + "Motion": "THBT current day’s political correctness does more harm than good" + }, + { + "Date": "2014-05-31T00:00:00", + "Tournament": "Tilbury House Novice", + "Round": 1, + "Motion": "This house would ban religious schools." + }, + { + "Date": "2014-05-31T00:00:00", + "Tournament": "Tilbury House Novice", + "Round": 2, + "Motion": "This house believes France and Britain should support a permanent common EU seat in the UN Security Council in exchange for their seats." + }, + { + "Date": "2014-05-31T00:00:00", + "Tournament": "Tilbury House Novice", + "Round": 3, + "Motion": "Assuming it is technologically possible, this house would require individuals in liberal democracies to reveal their actual identity when communicating on the internet" + }, + { + "Date": "2014-05-31T00:00:00", + "Tournament": "Tilbury House Novice", + "Round": 4, + "Motion": "This house supports an unconditional basic income" + }, + { + "Date": "2014-05-31T00:00:00", + "Tournament": "Tilbury House Novice", + "Round": "Open_Final", + "Motion": "This house believes a healthy democracy needs term limits for heads of government" + }, + { + "Date": "2014-05-30T00:00:00", + "Tournament": "Riga Debate Academy", + "Round": 1, + "Motion": "This house would fund cosmetic plastic surgery." + }, + { + "Date": "2014-05-30T00:00:00", + "Tournament": "Riga Debate Academy", + "Round": 2, + "Motion": "This House Believes that juries should only include individuals that are from the same socio-economic class as the defendant" + }, + { + "Date": "2014-05-30T00:00:00", + "Tournament": "Riga Debate Academy", + "Round": 3, + "Motion": "This house believes that international sporting events, such as the Olympics or Football World Cup, should not be held in countries with poor human rights records." + }, + { + "Date": "2014-05-30T00:00:00", + "Tournament": "Riga Debate Academy", + "Round": 4, + "Motion": "This house applauds the rise of pop songs by female artists that glorify assertive female sexuality" + }, + { + "Date": "2014-05-30T00:00:00", + "Tournament": "TechOpen", + "Round": 1, + "Motion": "THW implement a full ban on burqas" + }, + { + "Date": "2014-05-30T00:00:00", + "Tournament": "TechOpen", + "Round": 2, + "Motion": "TH, as the European Union, would suspend Hungary's EU-membership if they do not reform within a set period of time." + }, + { + "Date": "2014-05-30T00:00:00", + "Tournament": "TechOpen", + "Round": 3, + "Motion": "THW create Hamsterdams in cities with a high level of drug use" + }, + { + "Date": "2014-05-30T00:00:00", + "Tournament": "TechOpen", + "Round": 4, + "Motion": "THW allow virtual child pornography" + }, + { + "Date": "2014-05-30T00:00:00", + "Tournament": "TechOpen", + "Round": "Open_Semis", + "Motion": "THW Implement the Prime Directive" + }, + { + "Date": "2014-05-30T00:00:00", + "Tournament": "TechOpen", + "Round": "Open_Final", + "Motion": "TH, as the Palestinian people, would launch a Third Intifada" + }, + { + "Date": "2014-05-17T00:00:00", + "Tournament": "Neckarwiesen Cup", + "Round": 1, + "Motion": "Should we introduce diversity quota, rather than women’s quota?" + }, + { + "Date": "2014-05-17T00:00:00", + "Tournament": "Neckarwiesen Cup", + "Round": 2, + "Motion": "(inkl.Factsheet) Should we reserve prostheses and implants for people with physical deficiencies?" + }, + { + "Date": "2014-05-17T00:00:00", + "Tournament": "Neckarwiesen Cup", + "Round": 3, + "Motion": "Should companies have to justify the labour conditions of their suppliers in their yearly financial reports?" + }, + { + "Date": "2014-05-17T00:00:00", + "Tournament": "Neckarwiesen Cup", + "Round": "Open_Final", + "Motion": "Should the European Court of Justice be given the power to annul national laws that violate European values upon request of the European Parliament?" + }, + { + "Date": "2014-05-17T00:00:00", + "Tournament": "Trivium Debattoernooi", + "Round": 1, + "Motion": "THW allow family members of drug addicts to force the addicts to go into rehab" + }, + { + "Date": "2014-05-17T00:00:00", + "Tournament": "Trivium Debattoernooi", + "Round": 2, + "Motion": "THW rather invest in nuclear energy than in “green” (renewable) energy" + }, + { + "Date": "2014-05-17T00:00:00", + "Tournament": "Trivium Debattoernooi", + "Round": 3, + "Motion": "THBT criminal law should not take retribution into account as a criteria for punishment" + }, + { + "Date": "2014-05-17T00:00:00", + "Tournament": "Trivium Debattoernooi", + "Round": 4, + "Motion": "THBT the west should put heavy sanctions on Russia until Putin abdicates and democratic elections are held" + }, + { + "Date": "2014-05-17T00:00:00", + "Tournament": "Trivium Debattoernooi", + "Round": "Open_Final", + "Motion": "TH, as the Catholic Church, would use elections to select its next pope" + }, + { + "Date": "2014-05-16T00:00:00", + "Tournament": "Helsinki Open", + "Round": 1, + "Motion": "THBT parents should monitor the electronic communications of their children, for example by installing spyware, requiring their children to give them their passwords, or reading browser histories" + }, + { + "Date": "2014-05-16T00:00:00", + "Tournament": "Helsinki Open", + "Round": 2, + "Motion": "THW take away essential service givers' (such as policemen, firemen and doctors) right to strike" + }, + { + "Date": "2014-05-16T00:00:00", + "Tournament": "Helsinki Open", + "Round": 3, + "Motion": "TH regrets the campaign to remove Brendan Eich from office" + }, + { + "Date": "2014-05-16T00:00:00", + "Tournament": "Helsinki Open", + "Round": 4, + "Motion": "THW allow the parliament to pass retroactive laws with a 2/3 majority" + }, + { + "Date": "2014-05-16T00:00:00", + "Tournament": "Helsinki Open", + "Round": 5, + "Motion": "THBT developing countries should ban aid organizations from religious proselytizing" + }, + { + "Date": "2014-05-16T00:00:00", + "Tournament": "Helsinki Open", + "Round": "Open_Semis", + "Motion": "THBT The death of newspapers and news print media would be a net good" + }, + { + "Date": "2014-05-16T00:00:00", + "Tournament": "Helsinki Open", + "Round": "Open_Final", + "Motion": "THBT the education system should stream children according to their abilities from a young age" + }, + { + "Date": "2014-05-12T00:00:00", + "Tournament": "French Language World Championships Debating", + "Round": 1, + "Motion": "THW prohibit works of art that undermine/go against morality" + }, + { + "Date": "2014-05-12T00:00:00", + "Tournament": "French Language World Championships Debating", + "Round": 10, + "Motion": "THW make participating in sports activities mandatory" + }, + { + "Date": "2014-05-12T00:00:00", + "Tournament": "French Language World Championships Debating", + "Round": 11, + "Motion": "THW permit the state discretionary eavesdropping on its citizens" + }, + { + "Date": "2014-05-12T00:00:00", + "Tournament": "French Language World Championships Debating", + "Round": 12, + "Motion": "THW put a cap on the salaries of top athletes" + }, + { + "Date": "2014-05-12T00:00:00", + "Tournament": "French Language World Championships Debating", + "Round": 13, + "Motion": "THW make the payment of family allowances conditional on school attendance" + }, + { + "Date": "2014-05-12T00:00:00", + "Tournament": "French Language World Championships Debating", + "Round": 14, + "Motion": "THW resist the supremacy of English by any means available" + }, + { + "Date": "2014-05-12T00:00:00", + "Tournament": "French Language World Championships Debating", + "Round": 2, + "Motion": "THW ban commercials" + }, + { + "Date": "2014-05-12T00:00:00", + "Tournament": "French Language World Championships Debating", + "Round": 3, + "Motion": "THW introduce a “capability vote”" + }, + { + "Date": "2014-05-12T00:00:00", + "Tournament": "French Language World Championships Debating", + "Round": 4, + "Motion": "THW prohibit sex changes" + }, + { + "Date": "2014-05-12T00:00:00", + "Tournament": "French Language World Championships Debating", + "Round": 5, + "Motion": "THW ban pornography" + }, + { + "Date": "2014-05-12T00:00:00", + "Tournament": "French Language World Championships Debating", + "Round": 6, + "Motion": "THW impose a DNA database" + }, + { + "Date": "2014-05-12T00:00:00", + "Tournament": "French Language World Championships Debating", + "Round": 7, + "Motion": "THW prohibit all motor vehicles" + }, + { + "Date": "2014-05-12T00:00:00", + "Tournament": "French Language World Championships Debating", + "Round": 8, + "Motion": "THW grant legal personality to animals" + }, + { + "Date": "2014-05-12T00:00:00", + "Tournament": "French Language World Championships Debating", + "Round": 9, + "Motion": "THW ban online dating sites" + }, + { + "Date": "2014-05-10T00:00:00", + "Tournament": "Frishlingscup", + "Round": 1, + "Motion": "Should grades be abolished?" + }, + { + "Date": "2014-05-10T00:00:00", + "Tournament": "Frishlingscup", + "Round": 2, + "Motion": "Should E-sports be recognised, promoted and valued as equals to other sports?" + }, + { + "Date": "2014-05-10T00:00:00", + "Tournament": "Frishlingscup", + "Round": 3, + "Motion": "Should news media be banned from reporting on threats of terrorist attacks?" + }, + { + "Date": "2014-05-10T00:00:00", + "Tournament": "Frishlingscup", + "Round": "Open_Final", + "Motion": "Should kindergartens actively combat gender roles?" + }, + { + "Date": "2014-05-10T00:00:00", + "Tournament": "Kalliope Debattoernooi", + "Round": 1, + "Motion": "THW put high taxes on unhealthy products" + }, + { + "Date": "2014-05-10T00:00:00", + "Tournament": "Kalliope Debattoernooi", + "Round": 2, + "Motion": "THW ban TV shows that objectify women" + }, + { + "Date": "2014-05-10T00:00:00", + "Tournament": "Kalliope Debattoernooi", + "Round": 3, + "Motion": "THBT regions should always be able to call a referendum for independence" + }, + { + "Date": "2014-05-10T00:00:00", + "Tournament": "Kalliope Debattoernooi", + "Round": 4, + "Motion": "THB in a state that only provides the most basic services" + }, + { + "Date": "2014-05-10T00:00:00", + "Tournament": "Kalliope Debattoernooi", + "Round": 5, + "Motion": "TH, as the EU, would force its member states to rcognise gay marriages" + }, + { + "Date": "2014-05-10T00:00:00", + "Tournament": "Kalliope Debattoernooi", + "Round": "Open_Final", + "Motion": "THW give highly advanced artificial intelligence the same rights as humans" + }, + { + "Date": "2014-05-09T00:00:00", + "Tournament": "Cape Town Open", + "Round": 1, + "Motion": "In instances where utterances of a minor amount to hate speech, THS the public shaming of the parent rather than the minor." + }, + { + "Date": "2014-05-09T00:00:00", + "Tournament": "Cape Town Open", + "Round": 2, + "Motion": "THBT developing countries should hold the Catholic church financially liable for the medical expenses of AIDS victims in areas where the church campaigns against condom use." + }, + { + "Date": "2014-05-09T00:00:00", + "Tournament": "Cape Town Open", + "Round": 3, + "Motion": "As the South African government, THW explicity oppose the use of the word \"apartheid\" in describing the Israeli/Palestinian conflict." + }, + { + "Date": "2014-05-09T00:00:00", + "Tournament": "Cape Town Open", + "Round": 4, + "Motion": "THW, by worker referendum, allow employees to set the salaries of their top executives." + }, + { + "Date": "2014-05-09T00:00:00", + "Tournament": "Cape Town Open", + "Round": 5, + "Motion": "THW create an age-restricted rating that warns the audience when a film has failed the Bechdel Test." + }, + { + "Date": "2014-05-09T00:00:00", + "Tournament": "Cape Town Open", + "Round": 6, + "Motion": "THBT gay judges or legal experts who meaningfully contribute to legalizing gay marriage are morally obligated to publicly reveal their sexual orientation." + }, + { + "Date": "2014-05-09T00:00:00", + "Tournament": "Cape Town Open", + "Round": 7, + "Motion": "THW ban all private campaign contributions and instead implement a voucher system, wherein every citizen of voting age would receive a R600 voucher that can only be used to finance political campaigns of the citizen's choosing." + }, + { + "Date": "2014-05-09T00:00:00", + "Tournament": "Cape Town Open", + "Round": 8, + "Motion": "THW require universities to write-off the student debt of any student who graduates in good academic standing but is unable to find a job despite actively seeking employment." + }, + { + "Date": "2014-05-09T00:00:00", + "Tournament": "Cape Town Open", + "Round": 9, + "Motion": "THR Americans' recent and unprecedented opposition to military intervention." + }, + { + "Date": "2014-05-09T00:00:00", + "Tournament": "IDEA League of Young Voters European Cup", + "Round": 1, + "Motion": "THW substantially lower labour regulations for young people in areas with high youth unemployment." + }, + { + "Date": "2014-05-09T00:00:00", + "Tournament": "IDEA League of Young Voters European Cup", + "Round": 2, + "Motion": "THBT internet piracy has done more good than harm." + }, + { + "Date": "2014-05-09T00:00:00", + "Tournament": "IDEA League of Young Voters European Cup", + "Round": 3, + "Motion": "THBT the European Union should guarantee membership to regions of member states that secede from their parent state." + }, + { + "Date": "2014-05-09T00:00:00", + "Tournament": "IDEA League of Young Voters European Cup", + "Round": 4, + "Motion": "TH supports hydraulic fracturing." + }, + { + "Date": "2014-05-09T00:00:00", + "Tournament": "IDEA League of Young Voters European Cup", + "Round": 5, + "Motion": "THW implement tradable quotas for asylum seekers within the European Union." + }, + { + "Date": "2014-05-09T00:00:00", + "Tournament": "IDEA League of Young Voters European Cup", + "Round": "Open_Semis", + "Motion": "TH supports Athletic Bilbao's cantera policy." + }, + { + "Date": "2014-05-09T00:00:00", + "Tournament": "IDEA League of Young Voters European Cup", + "Round": "Open_Final", + "Motion": "THW create a common history curricula for the entire European Union." + }, + { + "Date": "2014-05-02T00:00:00", + "Tournament": "Copenhagen Open", + "Round": 1, + "Motion": "THW legalise the sale and purchase of human organs" + }, + { + "Date": "2014-05-02T00:00:00", + "Tournament": "Copenhagen Open", + "Round": 2, + "Motion": "THW allocate public housing and use financial incentives (e.g. rent subsidies) to maintain a minimum quota of ethnic groups in all areas of the country" + }, + { + "Date": "2014-05-02T00:00:00", + "Tournament": "Copenhagen Open", + "Round": 3, + "Motion": "THW ban the use of photoshop in magazines and advertising" + }, + { + "Date": "2014-05-02T00:00:00", + "Tournament": "Copenhagen Open", + "Round": 4, + "Motion": "THBT the USA should withdraw from NATO" + }, + { + "Date": "2014-05-02T00:00:00", + "Tournament": "Copenhagen Open", + "Round": 5, + "Motion": "THW lower income tax and impose higher wealth taxes (e.g. on inheritance, property and other assets) instead" + }, + { + "Date": "2014-05-02T00:00:00", + "Tournament": "Copenhagen Open", + "Round": "Open_Final", + "Motion": "THW build Dostoevsky's edifice" + }, + { + "Date": "2014-05-02T00:00:00", + "Tournament": "Zeit Debatte Mainz", + "Round": 1, + "Motion": "Should universities stop giving out honours or titles for which no scientific labour or standards were met (e.g. honourary doctors title)?" + }, + { + "Date": "2014-05-02T00:00:00", + "Tournament": "Zeit Debatte Mainz", + "Round": 2, + "Motion": "Should Spartengewerkschaften (craft unions) be abolished? Spartengewerkschaften abgeschafft werden?" + }, + { + "Date": "2014-05-02T00:00:00", + "Tournament": "Zeit Debatte Mainz", + "Round": 3, + "Motion": "Should providing arms to the citizens of another state be outlawed under international law?" + }, + { + "Date": "2014-05-02T00:00:00", + "Tournament": "Zeit Debatte Mainz", + "Round": 4, + "Motion": "Should landowners be the owners of all natural resources (Bodenschätze) in their ground?" + }, + { + "Date": "2014-05-02T00:00:00", + "Tournament": "Zeit Debatte Mainz", + "Round": 5, + "Motion": "Should media be banned from publishing information about the sexual preferences or orientations of public figures without their consent?" + }, + { + "Date": "2014-05-02T00:00:00", + "Tournament": "Zeit Debatte Mainz", + "Round": "Open_Semis", + "Motion": "It is mandatory in Germany to reserve one percent of your public building budget for art projects. Motion: Should we stop the mandatory art requirement for public building projects?" + }, + { + "Date": "2014-05-02T00:00:00", + "Tournament": "Zeit Debatte Mainz", + "Round": "Open_Final", + "Motion": "Should politicians be liable for policy decisions with their private assets (mutatis mutandis)?" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "Hull Open", + "Round": 1, + "Motion": "THW require all advertising to be gender neutral." + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "Hull Open", + "Round": 2, + "Motion": "A Computer Operated Police (or C.O.P) Machine is a non-autonomous humanoid domestic drone currently being developed by the State to carry out operations deemed to be too dangerous for human officers. They are remote operated and fully armed. Motion: TH supports the deployment, throughout the Police Force, of C.O.P.s." + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "Hull Open", + "Round": 3, + "Motion": "THW aggressively promote scientific rationalism in schools." + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "Hull Open", + "Round": 4, + "Motion": "THW, as the West, invade Syria with the objectives to depose the Assad regime and oversee a transition to democracy." + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "Hull Open", + "Round": "Open_Final", + "Motion": "THW decriminalise the intentional and negligent transmission of HIV." + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "North-East German Regional Championships", + "Round": 1, + "Motion": "THW ban commercial expeditions to the top of the Mount Everest" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "North-East German Regional Championships", + "Round": 2, + "Motion": "THW award state funding for the arts through lottery" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "North-East German Regional Championships", + "Round": 3, + "Motion": "THW apply the technology as an alternative to regular imprisonment" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "North-East German Regional Championships", + "Round": 4, + "Motion": "THW falsify history in post-war societies in order to ensure peace" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "North-East German Regional Championships", + "Round": "Open_Semis", + "Motion": "THW replace the state pension with a state disability insurance" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "North-East German Regional Championships", + "Round": "Open_Final", + "Motion": "THW require companies to make the salaries of all their employees publicly available" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "South German Regional Championships", + "Round": 1, + "Motion": "THBT liberal democratic states should add citizens duties as well as citizens rights in their constitutions" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "South German Regional Championships", + "Round": 2, + "Motion": "THW rewrite sexist, racist or otherwise discriminating passages in opera libretti" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "South German Regional Championships", + "Round": 3, + "Motion": "THW allow parents to decide to let their severally mentally handicapped children be operated or treated with hormones so that they will not enter physical puberty" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "South German Regional Championships", + "Round": 4, + "Motion": "THW ban money from Saudi Arabia to promote Islam in the EU, as long as other religions are banned from that country." + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "South German Regional Championships", + "Round": "Open_Semis", + "Motion": "THW require popular sports that generate high profits to share a portion of their gains with marginal/fringe sports" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "South German Regional Championships", + "Round": "Open_Final", + "Motion": "THW require companies to make the salaries of all their employees publicly available" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "VUAS Debate tournament", + "Round": 1, + "Motion": "THW require elected politicians and their families to use only services provided by the state" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "VUAS Debate tournament", + "Round": 2, + "Motion": "THW grant the Roma the right to settle in self governing autonomous communities" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "VUAS Debate tournament", + "Round": 3, + "Motion": "THBT states should grant unconditional asylum to all Syrians" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "VUAS Debate tournament", + "Round": 4, + "Motion": "TH, as Latvia, would ban Legion Day parades" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "VUAS Debate tournament", + "Round": 5, + "Motion": "THW would classify crimes directed against sub-cultures as hate crimes" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "VUAS Debate tournament", + "Round": "Open_Semis", + "Motion": "In countries where gay marriage is legal THW abolish tax exemptions and cease funding of religious organisations that refuse to conduct same sex marriage or ban homosexuals from their services" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "VUAS Debate tournament", + "Round": "Open_Final", + "Motion": "Given the consent of Ukraine's government, THBT the West should assist in maintaining peace and territorial integrity in Eastern Ukraine" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "West German Regional Championships", + "Round": 1, + "Motion": "THW ban beauty pageants for minors" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "West German Regional Championships", + "Round": 2, + "Motion": "THW ban political contributions." + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "West German Regional Championships", + "Round": 3, + "Motion": "TH, as a woman, would make targeted use of her feminine charms" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "West German Regional Championships", + "Round": 4, + "Motion": "THBT all borders should be opened at once" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "West German Regional Championships", + "Round": "Open_Semis", + "Motion": "THW replace the Bundestag by permanent “delegated voting”" + }, + { + "Date": "2014-04-26T00:00:00", + "Tournament": "West German Regional Championships", + "Round": "Open_Final", + "Motion": "THW require companies to make the salaries of all their employees publicly available" + }, + { + "Date": "2014-04-25T00:00:00", + "Tournament": "Paris Open", + "Round": 1, + "Motion": "THBT it is immoral to donate to animal welfare charities while there are charities which aim to alleviate human suffering still in need." + }, + { + "Date": "2014-04-25T00:00:00", + "Tournament": "Paris Open", + "Round": 2, + "Motion": "THW guarantee military veterans jobs for life (through civilian state sector employment or/and state subsidy of private sector employment)." + }, + { + "Date": "2014-04-25T00:00:00", + "Tournament": "Paris Open", + "Round": 3, + "Motion": "THBT feminists should not oppose dating sites which seek to romantically link rich men and physically attractive women." + }, + { + "Date": "2014-04-25T00:00:00", + "Tournament": "Paris Open", + "Round": 4, + "Motion": "THBT western nations should require companies seeking to sell products within their borders to abide by national worker’s rights legislation, regardless of where the goods were manufactured and at all stages of the production process." + }, + { + "Date": "2014-04-25T00:00:00", + "Tournament": "Paris Open", + "Round": 5, + "Motion": "THW determine income tax based on the relative privilege of an individuals’ upbringing.(Privilege includes such things as private education, parental wealth, childhood home)" + }, + { + "Date": "2014-04-25T00:00:00", + "Tournament": "Paris Open", + "Round": "ESL_Final", + "Motion": "THW offer citizenship to illegal immigrants in exchange for meaningful information on their traffickers and illegal employers." + }, + { + "Date": "2014-04-25T00:00:00", + "Tournament": "Paris Open", + "Round": "Open_Semis", + "Motion": "THW, as NATO, send troops to protect the Ukrainian border (not including the Crimea)." + }, + { + "Date": "2014-04-25T00:00:00", + "Tournament": "Paris Open", + "Round": "Open_Final", + "Motion": "THS the unlimited use of war-time propaganda which aims to dehumanise the enemy." + }, + { + "Date": "2014-04-19T00:00:00", + "Tournament": "Aberdeen Open", + "Round": 1, + "Motion": "THW legalize the sale, production and consumption of drugs" + }, + { + "Date": "2014-04-19T00:00:00", + "Tournament": "Aberdeen Open", + "Round": 2, + "Motion": "THW expand baby hatches in China" + }, + { + "Date": "2014-04-19T00:00:00", + "Tournament": "Aberdeen Open", + "Round": 3, + "Motion": "THW partially link development aid to developing countries commitment to female equality" + }, + { + "Date": "2014-04-19T00:00:00", + "Tournament": "Aberdeen Open", + "Round": 4, + "Motion": "TH welcomes the downfall of global capitalism" + }, + { + "Date": "2014-04-19T00:00:00", + "Tournament": "Aberdeen Open", + "Round": "Open_Final", + "Motion": "THBT the states should pay reparations to ethnic minorities" + }, + { + "Date": "2014-04-12T00:00:00", + "Tournament": "HSE Open", + "Round": "Open_Semis", + "Motion": "THW ban presidential pardon" + }, + { + "Date": "2014-04-12T00:00:00", + "Tournament": "HSE Open", + "Round": "Open_Final", + "Motion": "TH, as LGBT community, would out closeted politicians who are gays and publicly express homophobic views" + }, + { + "Date": "2014-04-12T00:00:00", + "Tournament": "Kent IV", + "Round": 1, + "Motion": "This House Regrets the rise of televised talent shows" + }, + { + "Date": "2014-04-12T00:00:00", + "Tournament": "Kent IV", + "Round": 2, + "Motion": "THBT national central banks should set limits on government spending" + }, + { + "Date": "2014-04-12T00:00:00", + "Tournament": "Kent IV", + "Round": 3, + "Motion": "THW ban the orange march in the UK" + }, + { + "Date": "2014-04-12T00:00:00", + "Tournament": "Kent IV", + "Round": 4, + "Motion": "THBT developing democracies with a history of ethnic tensions should have ethnic quotas in government" + }, + { + "Date": "2014-04-12T00:00:00", + "Tournament": "Kent IV", + "Round": "Open_Final", + "Motion": "THBT black civil rights groups should condemn contemporary hip hop" + }, + { + "Date": "2014-04-11T00:00:00", + "Tournament": "Berlin IV", + "Round": 1, + "Motion": "THS the “No Platform” practice towards far-right and fascist public figures in advance of the EU elections." + }, + { + "Date": "2014-04-11T00:00:00", + "Tournament": "Berlin IV", + "Round": 2, + "Motion": "THBT history curricula should feature the same proportion of male and female historical figures." + }, + { + "Date": "2014-04-11T00:00:00", + "Tournament": "Berlin IV", + "Round": 3, + "Motion": "THW allow assisted suicide for terminally ill children with the consent of their parents." + }, + { + "Date": "2014-04-11T00:00:00", + "Tournament": "Berlin IV", + "Round": 4, + "Motion": "THBT Western states should substantially support the Bill and Melinda Gates Foundation in its efforts in the developing world to promote birth control that is undetectable by men." + }, + { + "Date": "2014-04-11T00:00:00", + "Tournament": "Berlin IV", + "Round": 5, + "Motion": "THW make voting mandatory." + }, + { + "Date": "2014-04-11T00:00:00", + "Tournament": "Berlin IV", + "Round": "Open_Semis", + "Motion": "THW abolish the prison system." + }, + { + "Date": "2014-04-11T00:00:00", + "Tournament": "Berlin IV", + "Round": "Open_Final", + "Motion": "THBT the EU should force member states to adopt socially progressive legislation (e. g. same-sex marriage, abortion rights, ethnic and religious minority rights)." + }, + { + "Date": "2014-04-11T00:00:00", + "Tournament": "Estonian Open", + "Round": 1, + "Motion": "THW create a separate athletics league for athletes that choose to take performance enhancing substances." + }, + { + "Date": "2014-04-11T00:00:00", + "Tournament": "Estonian Open", + "Round": 2, + "Motion": "THW impose quotas that ensure at least half of a company’s board of directors is composed of women." + }, + { + "Date": "2014-04-11T00:00:00", + "Tournament": "Estonian Open", + "Round": 3, + "Motion": "THBT the gay rights movement should abandon the claim that sexuality is not a choice." + }, + { + "Date": "2014-04-11T00:00:00", + "Tournament": "Estonian Open", + "Round": 4, + "Motion": "THW allow individuals to enter into pre-nuptial agreements where infidelity is punishable by prison sentences." + }, + { + "Date": "2014-04-11T00:00:00", + "Tournament": "Estonian Open", + "Round": 5, + "Motion": "THS the creation and use of Autonomous Killing Robots. Info: Autonomous Killing Robots are a form of military technology which when activated, can identify and engage targets* without further human intervention. *targets include humans and light armoured vehicles" + }, + { + "Date": "2014-04-11T00:00:00", + "Tournament": "Estonian Open", + "Round": "Novice_Final", + "Motion": "THW give the public the power, via referendum, to pardon whistleblowers." + }, + { + "Date": "2014-04-11T00:00:00", + "Tournament": "Estonian Open", + "Round": "Open_Semis", + "Motion": "THBT the EU should offer membership to Middle Eastern and North African states that achieve successful democratic transition." + }, + { + "Date": "2014-04-11T00:00:00", + "Tournament": "Estonian Open", + "Round": "Open_Final", + "Motion": "In a parallel universe, there is a planet X which resembles Earth as it existed in the early days of humanity. Their human population face a choice of implementing one of two political systems. Motion: TH, as the human population of planet X, would choose communism over capitalism." + }, + { + "Date": "2014-04-10T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 1, + "Motion": "THW, radically tax the rich and give all citizens a basic income without a requirement to work" + }, + { + "Date": "2014-04-10T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 2, + "Motion": "THBT, rather than protecting endangered species the animal rights movement should prioritize maximizing the total welfare of the animal population" + }, + { + "Date": "2014-04-10T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 3, + "Motion": "THBT the Church should not take positions on issues which are not explicitly within the doctrine of the church" + }, + { + "Date": "2014-04-10T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 4, + "Motion": "THBT self proclaimed feminists should not alter themselves(e.g. cosmetic surgery, make-up)" + }, + { + "Date": "2014-04-10T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": "Open_Final", + "Motion": "THW charge distribution and downloading of leaked sex tapes & nude pictures as sexual assault" + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "Aberystwyth Open", + "Round": 1, + "Motion": "THW officially recognise Scientology as a religion" + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "Aberystwyth Open", + "Round": 2, + "Motion": "TH regrets the popularisation and commercialisation of counter-cultural or oppositional sub-genres of music (e.g Gangsta Rap or Punk music)" + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "Aberystwyth Open", + "Round": 3, + "Motion": "1. A robot may not injure a human being or, through inaction, allow a human being to come to harm. 2. A robot must obey the orders given to it by human beings, except where such orders would conflict with the First Law. 3. A robot may not injure its own kind and defend its own kind unless it is interfering with the first or second rule This is a suggestion, based on systems proposed in the past. Feel free to use other moral frameworks, provided this is made clear in the first minute of the PM's speech Motion: Upon the creation of strong AI, THW hardwire AI units with an unassailable and unalterable moral code" + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "Aberystwyth Open", + "Round": 4, + "Motion": "This House Would ban gay conversion therapy" + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "Aberystwyth Open", + "Round": "Open_Final", + "Motion": "In a world where the technology exists, This House Would erase all the memories of individuals who have committed serious crimes and replace them with a fabricated set of memories, instead of sending them to prison" + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "NK Debatteren (Dutch National Championships)", + "Round": 1, + "Motion": "THBT landowners should become the automatic owners of everything on and in the ground they own" + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "NK Debatteren (Dutch National Championships)", + "Round": 2, + "Motion": "THBT all schools in the Westbank become integrated schools (mixing up children of different backgrounds to enhance integration and understanding)" + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "NK Debatteren (Dutch National Championships)", + "Round": 3, + "Motion": "THW ban research into the genetic origins of homosexuality" + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "NK Debatteren (Dutch National Championships)", + "Round": 4, + "Motion": "THW offer NATO membership to all former Soviet Union states" + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "NK Debatteren (Dutch National Championships)", + "Round": 5, + "Motion": "TH, as the parent of a child diagnosed with ADHD would conceal the diagnosis from the child and its school" + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "NK Debatteren (Dutch National Championships)", + "Round": "Novice_Final", + "Motion": "THW ban women older than 40 from having children" + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "NK Debatteren (Dutch National Championships)", + "Round": "Open_Semis", + "Motion": "THW legally define rape as sex without explicit consent" + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "NK Debatteren (Dutch National Championships)", + "Round": "Open_Final", + "Motion": "THBT no mayor should have participated in the protest marches against Wilders’ statements" + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "Northumbria Open", + "Round": 1, + "Motion": "THW hold football clubs criminally liable for the actions of their fans" + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "Northumbria Open", + "Round": 2, + "Motion": "THBT developing countries should create constitutionally guaranteed minimum standards of living" + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "Northumbria Open", + "Round": 3, + "Motion": "THW establish vocational schools and aggressively stream academically underperforming children into them." + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "Northumbria Open", + "Round": 4, + "Motion": "TH regrets the centralisation of organised religion." + }, + { + "Date": "2014-04-05T00:00:00", + "Tournament": "Northumbria Open", + "Round": "Open_Final", + "Motion": "THBT the government should nationalise all land and buildings." + }, + { + "Date": "2014-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 1, + "Motion": "THW measure the efficacy of charities and strip those with comparatively low social value of their charitable status." + }, + { + "Date": "2014-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 2, + "Motion": "THBT a world without organized religion would be a better world." + }, + { + "Date": "2014-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 3, + "Motion": "THS the boycotting of Israeli academics." + }, + { + "Date": "2014-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 4, + "Motion": "THBT full gender emancipation requires the end of monogamy as a dominant social norm." + }, + { + "Date": "2014-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 5, + "Motion": "THW permit parents to stunt physical development of their severely mentally disabled children." + }, + { + "Date": "2014-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": "Open_Finals", + "Motion": "THBT, within broad budgetary constraints, environmental policy should be decided by unelected scientific experts selected by their peers." + }, + { + "Date": "2014-03-31T00:00:00", + "Tournament": "Paris V French Debating Association Tournament final", + "Round": "Open_Final", + "Motion": "THBT \"All's well that ends well\"" + }, + { + "Date": "2014-03-29T00:00:00", + "Tournament": "Cardiff Open", + "Round": 1, + "Motion": "THW prioritise the funding of grassroots over elite sports" + }, + { + "Date": "2014-03-29T00:00:00", + "Tournament": "Cardiff Open", + "Round": 2, + "Motion": "THBT large Eurozone states should openly oppose Britain's attempts to renegotiate its duties and relationship with the EU" + }, + { + "Date": "2014-03-29T00:00:00", + "Tournament": "Cardiff Open", + "Round": 3, + "Motion": "TH supports the televisation of trials" + }, + { + "Date": "2014-03-29T00:00:00", + "Tournament": "Cardiff Open", + "Round": 4, + "Motion": "THW make development aid contingent on recipient countries maintaining substantial redistributive taxes" + }, + { + "Date": "2014-03-29T00:00:00", + "Tournament": "Cardiff Open", + "Round": "Open_Final", + "Motion": "THW make failure to render reasonable assistance to a person in distress a criminal offence" + }, + { + "Date": "2014-03-29T00:00:00", + "Tournament": "Copenhagen Mini Open", + "Round": 1, + "Motion": "THW ban unpaid internships" + }, + { + "Date": "2014-03-29T00:00:00", + "Tournament": "Copenhagen Mini Open", + "Round": 2, + "Motion": "THW establish and monitor centres for animal prostitution" + }, + { + "Date": "2014-03-29T00:00:00", + "Tournament": "Copenhagen Mini Open", + "Round": 3, + "Motion": "THW heavily increase taxes on meat" + }, + { + "Date": "2014-03-29T00:00:00", + "Tournament": "Copenhagen Mini Open", + "Round": "Open_Final", + "Motion": "Given that a trade-off is required, THBT history education in post-conflict societies should focus on reconciliation at the cost of truth" + }, + { + "Date": "2014-03-29T00:00:00", + "Tournament": "Heriott Watt Open", + "Round": 1, + "Motion": "THBT the death of newspapers and print news media would be good for journalism" + }, + { + "Date": "2014-03-29T00:00:00", + "Tournament": "Heriott Watt Open", + "Round": 2, + "Motion": "TH regrets hookup apps" + }, + { + "Date": "2014-03-29T00:00:00", + "Tournament": "Heriott Watt Open", + "Round": 3, + "Motion": "in these cases MPs might be expelled from their party or denied promotion if they vote against the party. Occasionally a party will have a 'free vote' and MPs can vote as they like. Examples in the UK include the ban on fox hunting with dogs, votes on abortion, and the legalisation of same-sex marriage. Labour had a whipped vote in favour of same-sex marriage, whereas the Conservatives had a free vote. Motion: TH regrets free votes" + }, + { + "Date": "2014-03-29T00:00:00", + "Tournament": "Heriott Watt Open", + "Round": 4, + "Motion": "Murray Edwards, Newnham and Lucy Cavendish. 1,100 out of 17 000 students in women-only colleges (6%). In the university as a whole, the ratio of women to men is roughly 50:50. Motion: This house, as the University of Cambridge, would abolish women-only colleges" + }, + { + "Date": "2014-03-29T00:00:00", + "Tournament": "Heriott Watt Open", + "Round": "Open_Final", + "Motion": "The Conservative Party is the main centre-right party in the UK. The Conservative Party is wildly unpopular in Scotland with just one seat in Westminster Parliament, despite winning many seats in England. Polls of Scottish voters see them expressing economic and social views generally in line with the majority of UK voters. It has been proposed that the Conservative Party in Scotland split with UK Conservative Party. The new party would have an independent policy platform. Motion: In the event of a 'no' vote in the independence referendum, THBT the Scottish Conservative Party should split from the UK Conservative Party" + }, + { + "Date": "2014-03-28T00:00:00", + "Tournament": "National Maiden’s", + "Round": 1, + "Motion": "THW ban commercial surrogacy" + }, + { + "Date": "2014-03-28T00:00:00", + "Tournament": "National Maiden’s", + "Round": 2, + "Motion": "THW abandon the search for extraterrestrial life" + }, + { + "Date": "2014-03-28T00:00:00", + "Tournament": "National Maiden’s", + "Round": 3, + "Motion": "THW welcome a political union of Latin American states based on the ideals of the Bolivarian revolution" + }, + { + "Date": "2014-03-28T00:00:00", + "Tournament": "National Maiden’s", + "Round": 4, + "Motion": "THBT artists accrue no additional responsibilities/duties by virtue of becoming famous" + }, + { + "Date": "2014-03-28T00:00:00", + "Tournament": "National Maiden’s", + "Round": 4, + "Motion": "THW make ratification of peace agreements conditional on approval by a popular vote of women affected by the conflict" + }, + { + "Date": "2014-03-28T00:00:00", + "Tournament": "National Maiden’s", + "Round": "Open_Semis", + "Motion": "TH is a police officer operating in a democracy with a functional judicial system. THW use extra-legal methods in the investigation and apprehension of serious criminals" + }, + { + "Date": "2014-03-28T00:00:00", + "Tournament": "National Maiden’s", + "Round": "Open_Final", + "Motion": "In Margaret Atwood's novel Oryx and Crake there is a pill, which: (a) Protects the user against all sexually transmitted diseases (b) Provides unlimited libido and sexual prowess, along with a general sense of energy and well being (c) Acts as a 100% effective male and female birth control pill. All of the effects are irreversible and there are no other side effects. THW take the pill." + }, + { + "Date": "2014-03-28T00:00:00", + "Tournament": "Zeit Debatte Wien", + "Round": 1, + "Motion": "Should media be banned from speculative or evaluative (judgmental) reporting during court cases?" + }, + { + "Date": "2014-03-28T00:00:00", + "Tournament": "Zeit Debatte Wien", + "Round": 2, + "Motion": "Should war memorials for fallen soldiers also offer equal recognition to soldiers from the other side?" + }, + { + "Date": "2014-03-28T00:00:00", + "Tournament": "Zeit Debatte Wien", + "Round": 3, + "Motion": "Should it be a duty to report recognised injustices committed by fellow citizens (Sollen es eine Pflicht geben, erkanntes Unrecht seiner Mitbürger zur Anzeige zu bringen?)" + }, + { + "Date": "2014-03-28T00:00:00", + "Tournament": "Zeit Debatte Wien", + "Round": 4, + "Motion": "Should Fracking be stimulated?" + }, + { + "Date": "2014-03-28T00:00:00", + "Tournament": "Zeit Debatte Wien", + "Round": 5, + "Motion": "(inkl. Factsheet) Should Austria counteract its Declaration of Neutrality?" + }, + { + "Date": "2014-03-28T00:00:00", + "Tournament": "Zeit Debatte Wien", + "Round": "Open_Semis", + "Motion": "Should state marriage be open for all relations between people?" + }, + { + "Date": "2014-03-28T00:00:00", + "Tournament": "Zeit Debatte Wien", + "Round": "Open_Final", + "Motion": "Should we accept the incorporation of Crimea into Russia?" + }, + { + "Date": "2014-03-23T00:00:00", + "Tournament": "Southampton Open", + "Round": 1, + "Motion": "THW offer drug and alcohol addicts substantial cash payments in return for agreeing to undergo sterilisation" + }, + { + "Date": "2014-03-23T00:00:00", + "Tournament": "Southampton Open", + "Round": 2, + "Motion": "THBT major news-media organisations should not interview people with views outside the consensus of the scientific community" + }, + { + "Date": "2014-03-23T00:00:00", + "Tournament": "Southampton Open", + "Round": 3, + "Motion": "THBT men should take no active role in the womens liberation movement" + }, + { + "Date": "2014-03-23T00:00:00", + "Tournament": "Southampton Open", + "Round": 4, + "Motion": "TH, as a developing state, would ignore all international patent and copyright treaties" + }, + { + "Date": "2014-03-23T00:00:00", + "Tournament": "Southampton Open", + "Round": "Open_Final", + "Motion": "A person's self-image is the mental picture, generally of a kind that is quite resistant to change, that depicts not only details that are potentially available to objective investigation by others (height, weight, hair colour, biological sex, race etc.), but also items that have been learned by that person about himself or herself, either from personal experiences or by internalizing the judgments of others (gender, sexual orientation, ethnicity etc.) Motion: TH regrets the concept of self-image" + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "Exeter Open", + "Round": 1, + "Motion": "THW bring back the Assisted Places Scheme (info)" + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "Exeter Open", + "Round": 2, + "Motion": "THBT the feminist movement should actively participate in the production, distribution and consumption of pornography" + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "Exeter Open", + "Round": 3, + "Motion": "TH regrets the rise of atheism as promoted by Richard Dawkins (in, for example, The God Delusion in which he argues that tolerance of religion damages society and individuals)" + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "Exeter Open", + "Round": 4, + "Motion": "THW aggressively harass those who post online anonymous abuse" + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "Exeter Open", + "Round": "Open_Final", + "Motion": "There is a city called Omelas where all the citizens live perfectly fulfilled and happy lives. Buildings are beautiful, crops are plentiful, there is no disease, no crime, and no sorrow of any kind. On the day they reach adulthood, every citizen is taken into the citadel, to a room in the basement. There, in the deepest dungeon, they find a child, malnourished and sick, chained against the wall, in the utmost misery a human being can endure. They know that if the child were comforted, if it were allowed to enjoy a solitary moment of happiness, that the beauty of the city above would crumble, and disease, crime and want would become a part of the peoples lives. For that reason, the child will never be allowed to leave by the city. Every citizen in Omelas knows it is there, and they have all agreed to live with it. Occasionally, a citizen, man or woman, young or old, will walk through the gate on the edge of the city. They will venture into the desert that surrounds the city for as far as can be seen, walk over the horizon, and never be seen or heard from again.They are known only as The Ones who Walk Away from Omelas. Motion: THW walk away." + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "Liverpool IV", + "Round": 1, + "Motion": "THBT schools should actively seek to instill a strong sense of patriotism" + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "Liverpool IV", + "Round": 2, + "Motion": "THBT Western states should maintain travel bans on Modi in the event of his ascension to Prime Minister" + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "Liverpool IV", + "Round": 3, + "Motion": "THW impose a quota ensuring that more than half of the London Metropolitan Police Service, across all ranks, is composed of people from ethnic minorities" + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "Liverpool IV", + "Round": 4, + "Motion": "THW compel doctors to facilitate the deaths of consenting and competent patients." + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "Liverpool IV", + "Round": "Open_Final", + "Motion": "You are a Western Liberal democracy in a four-year long brutal and bloody war of attrition against an imperialistic dictatorship. Every Christmas, there is a football match between the two sides and a ceasefire. Attending the match are high ranking political and military persons of both sides, the killing of which would benefit greatly the other side. Motion: THW violate the ceasefire and kill the leaders." + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "Liverpool IV", + "Round": "ProAm_Final", + "Motion": "THBT Judges should take into account the socioeconomic circumstances of defendants" + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "NK Beleidsdebatteren (Dutch Policy Debate Championships)", + "Round": 1, + "Motion": "Secondary schools should have a mandatory course in etiquette" + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "NK Beleidsdebatteren (Dutch Policy Debate Championships)", + "Round": 2, + "Motion": "The Netherlands should give everyone over 14 the right to vote" + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "NK Beleidsdebatteren (Dutch Policy Debate Championships)", + "Round": 3, + "Motion": "Dutch mayors should be elected" + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "NK Beleidsdebatteren (Dutch Policy Debate Championships)", + "Round": 4, + "Motion": "Only people with a teaching degree should teach at universities in the Netherlands" + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "NK Beleidsdebatteren (Dutch Policy Debate Championships)", + "Round": "Open_Semi_1", + "Motion": "We should stop giving development aid." + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "NK Beleidsdebatteren (Dutch Policy Debate Championships)", + "Round": "Open_Semi_2", + "Motion": "Polygamie should be legalised in the Netherlands" + }, + { + "Date": "2014-03-22T00:00:00", + "Tournament": "NK Beleidsdebatteren (Dutch Policy Debate Championships)", + "Round": "Open_Final", + "Motion": "Growing and selling cannabis should be made legal in the Netherlands" + }, + { + "Date": "2014-03-21T00:00:00", + "Tournament": "Arandjelovac Open", + "Round": 1, + "Motion": "In countries where prostitution is legal, THBT national health systems should cover services of sex workers for the disabled." + }, + { + "Date": "2014-03-21T00:00:00", + "Tournament": "Arandjelovac Open", + "Round": 2, + "Motion": "THBT feminists should not campaign against polygamy in the Islamic world." + }, + { + "Date": "2014-03-21T00:00:00", + "Tournament": "Arandjelovac Open", + "Round": 3, + "Motion": "THBT countries like Switzerland, that were neutral in WW II should pay financial reparations to states occupied by the Nazis." + }, + { + "Date": "2014-03-21T00:00:00", + "Tournament": "Arandjelovac Open", + "Round": 4, + "Motion": "THW criminalise the public denial of evolution." + }, + { + "Date": "2014-03-21T00:00:00", + "Tournament": "Arandjelovac Open", + "Round": 5, + "Motion": "THBT the Western World should not portray ‘’The Great Explorers’’ (e.g. Christoph Columbus, Vasco da Gama) as heroes." + }, + { + "Date": "2014-03-21T00:00:00", + "Tournament": "Arandjelovac Open", + "Round": "Open_Semis", + "Motion": "THBT the US should covertly manipulate election results in South and Central America, in order to prevent the emergence of left wing governments." + }, + { + "Date": "2014-03-21T00:00:00", + "Tournament": "Arandjelovac Open", + "Round": "Open_Final", + "Motion": "THB in right to bear arms" + }, + { + "Date": "2014-03-21T00:00:00", + "Tournament": "DCU Open", + "Round": 1, + "Motion": "This House Would Ban All Political Donations" + }, + { + "Date": "2014-03-21T00:00:00", + "Tournament": "DCU Open", + "Round": 2, + "Motion": "This House Would Establish Brothels on Military Bases" + }, + { + "Date": "2014-03-21T00:00:00", + "Tournament": "DCU Open", + "Round": 3, + "Motion": "This House Believes That it is Legitimate for Nations to Rewrite History Books in their Favour After a Time of War" + }, + { + "Date": "2014-03-21T00:00:00", + "Tournament": "DCU Open", + "Round": 4, + "Motion": "That This House, as Barack Obama, would use inception to plant socially progressive ideas in Vladimir Putin's dreams" + }, + { + "Date": "2014-03-21T00:00:00", + "Tournament": "DCU Open", + "Round": 5, + "Motion": "This House Believes That liberal states with sexually conservative communities should subsidise hymenoplasty" + }, + { + "Date": "2014-03-21T00:00:00", + "Tournament": "DCU Open", + "Round": "Open_Semis", + "Motion": ".THW Support the Bill.", + "InfoSlide": "Disgruntled with NSA spying on US citizens, two senators from opposing parties have introduced a bill banning companies in California from providing essential utility services to the agency – including cutting off its computer-cooling water supply." + }, + { + "Date": "2014-03-21T00:00:00", + "Tournament": "DCU Open", + "Round": "Open_Final", + "Motion": "TH Welcomes the advent of extreme genetic advancements for humans" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "TH, as the North of England, would violently secede from the UK." + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "THW allow people to ascertain their lifespan via the 'Bethesda' device." + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "In a Battlestar Galactica-themed scenario (where humanity is drifting in space), THW ban abortion." + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "TH supports feminist vigilante groups in India." + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "THBT when secession referenda are called, the nation that is being seceded from should get a chance to vote the smaller country out" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "THW create a market in internal organs" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "THBT all erroneous information used in debates should be penalised by judges" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "TH, as a wizard, would create a horcrux" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "THW force countries to invest in a global space program" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "THW require all businesses to be owned and run as cooperatives" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "THW ban the production, sale, and use of Poké Balls" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "THW enter the Matrix" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "TH supports unmanned aerial vehicles in warfare" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "THW introduce a UK constitution giving courts more power." + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "THBT parents should advise daughters against heavy drinking to avoid sexual assault." + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "THW eliminate copyright and patenting" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "TH, as Germany, would ban all emission vehicles by 2020" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "THW disproportionately teach colonialism in schools" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "TH regrets the rise of drinking initiations in universities" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "TH supports the marriage of Ron and Hermione" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "THW allow \"Just following orders\" as a defence" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "THW ban advertising" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "THW forcibly plug everyone into Nozick's experience machine" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "TH does not regret internet piracy" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "It is 2017. This house is the Out campaign. THW spread hyperbolised information and lies about the EU in order to win the referendum" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "THBT colonialism caused more good than harm" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "THW force men and women to take equal maternity and paternity leave" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "TH, as Marcus Brutus, would participate in the conspiracy to kill Caesar" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "TH prefers 'an eye for an eye' in modern society" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "TH welcomes the advent of emerging genetic enhancements on the human body" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "THBT feminists should oppose global capitalism" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "It is 1951, during the Korean War. TH, as the US, would aggressively nuke China" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "THW tie minimum wage increases to increases in the income of the 1%" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "THW institute a lottery system whereby Olympic ticket purchasers may be drafted in as athletes" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "In a world with superheroes, THW institute a superhero register" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "There is a zombie outbreak where 1% of the world is infected. They are all kept in a pen at great expense. We have a vaccination, and the other 99% are vaccinated - they will not be zombified, but the 1% are still dangerous, and there is no cure. Motion: THW kill the 1%" + }, + { + "Date": "2014-03-16T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": "Open_Final", + "Motion": "TH prefers the abolition of pornography to the nationalisation of pornography." + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "Bucharest Cup", + "Round": 1, + "Motion": "THBT criminal defendants should only be allowed to use a state-funded attorney" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "Bucharest Cup", + "Round": 2, + "Motion": "THW not grant lifetime achievement awards to artists when their morality is significantly put into question" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "Bucharest Cup", + "Round": 3, + "Motion": "THW phase out fractional reserve banking" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "Bucharest Cup", + "Round": 4, + "Motion": "TH opposes the popular trend which encourages people to “be themselves” despite the opinions of others" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "Bucharest Cup", + "Round": "Open_Semis", + "Motion": "THW support a vigilante terrorist organisation combatting violence against women in African and the Middle East" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "Bucharest Cup", + "Round": "Open_Final", + "Motion": "TH supports compulsory fully privatised healthcare for people living above the poverty line" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "Reedhoven Cup", + "Round": 1, + "Motion": "Should the state provide drug checking options in all areas with higher than average drug use?" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "Reedhoven Cup", + "Round": 2, + "Motion": "Should all people be required to take a vaccination against human gene mutation (of the X-men variety) after birth?" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "Reedhoven Cup", + "Round": 3, + "Motion": "Should professional sports clubs be prohibited to seek national and international transfers of minors that are still in youth programs?" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "Reedhoven Cup", + "Round": 4, + "Motion": "Should closed prisons be abolished for all crimes in juvenile justice system?" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "Reedhoven Cup", + "Round": "Open_Semis", + "Motion": "Should there be an unconditional basic income?" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "Reedhoven Cup", + "Round": "Open_Final", + "Motion": "Should killing and feeding (Verfüttern) zoo animals for population control and consolidation of genetic diversity be banned?" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "UCL IV", + "Round": 1, + "Motion": "TH regrets the creation of shows like 'teen mom' and '16 and pregnant'" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "UCL IV", + "Round": 2, + "Motion": "TH supports Israel’s targeted assassinations of prominent members of Hamas" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "UCL IV", + "Round": 3, + "Motion": "THW suspend trade unions and labour protection laws at times of economic crisis" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "UCL IV", + "Round": 4, + "Motion": "THW require all isolated communities to have a rumspringa" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "UCL IV", + "Round": "Open_Semis", + "Motion": "TH welcomes the rise of anarcho-populism" + }, + { + "Date": "2014-03-15T00:00:00", + "Tournament": "UCL IV", + "Round": "Open_Final", + "Motion": "On the condition that gangs fulfil basic social needs (such as basic healthcare, education and sanitation), THW cease to combat the gangs and their trade in favelas" + }, + { + "Date": "2014-03-11T00:00:00", + "Tournament": "NAUDC (@ HWS College)", + "Round": 1, + "Motion": "THW abolish spousal privilege" + }, + { + "Date": "2014-03-11T00:00:00", + "Tournament": "NAUDC (@ HWS College)", + "Round": 2, + "Motion": "THBT authors who belong to historically oppressed peoples should only write in their native languages" + }, + { + "Date": "2014-03-11T00:00:00", + "Tournament": "NAUDC (@ HWS College)", + "Round": 3, + "Motion": "THBT the feminist movement should campaign to deconstruct masculinity rather than mobilize masculinity to serve feminist goals" + }, + { + "Date": "2014-03-11T00:00:00", + "Tournament": "NAUDC (@ HWS College)", + "Round": 4, + "Motion": "THBT states should not hold prisoners of war after a conflict's cessation." + }, + { + "Date": "2014-03-11T00:00:00", + "Tournament": "NAUDC (@ HWS College)", + "Round": 5, + "Motion": "THR the rise of pop-cultural authories on what constitutes good sex." + }, + { + "Date": "2014-03-11T00:00:00", + "Tournament": "NAUDC (@ HWS College)", + "Round": 6, + "Motion": "THW consider an academic's publicly stated political positions (e.g. blogs, tweets, editorials) in hiring, tenure and promotion decisions." + }, + { + "Date": "2014-03-11T00:00:00", + "Tournament": "NAUDC (@ HWS College)", + "Round": "Open_Quarters", + "Motion": "THBT all media organizations should be owned and run by journalists" + }, + { + "Date": "2014-03-11T00:00:00", + "Tournament": "NAUDC (@ HWS College)", + "Round": "Open_Semis", + "Motion": "TH supports the prominence of the American Dream in the national American discourse." + }, + { + "Date": "2014-03-11T00:00:00", + "Tournament": "NAUDC (@ HWS College)", + "Round": "Open_Finals", + "Motion": "TH, as the United States, would actively foment democratic unrest in China." + }, + { + "Date": "2014-03-11T00:00:00", + "Tournament": "Paris V French Debating Association Tournament Open_Semis", + "Round": "Open_Semi_1", + "Motion": "THBT the relationship between Britain and France is indeed a \"Dear Conjunction\"" + }, + { + "Date": "2014-03-11T00:00:00", + "Tournament": "Paris V French Debating Association Tournament Open_Semis", + "Round": "Open_Semi_2", + "Motion": "THBT \"Action is Eloquence\" (Coriolanus)" + }, + { + "Date": "2014-03-09T00:00:00", + "Tournament": "Pre-Pristina Open", + "Round": 1, + "Motion": "THW ban advertising targeted at children" + }, + { + "Date": "2014-03-09T00:00:00", + "Tournament": "Pre-Pristina Open", + "Round": 2, + "Motion": "THW assassinate North Korean nuclear scientists" + }, + { + "Date": "2014-03-09T00:00:00", + "Tournament": "Pre-Pristina Open", + "Round": "Open_Final", + "Motion": "TH, as a high profile Kosovar football player, would choose to play for a national team fully recognised by FIFA instead of Kosovo" + }, + { + "Date": "2014-03-08T00:00:00", + "Tournament": "Leeds Open", + "Round": 1, + "Motion": "THW legally require the consent of artists for the resale and use of their art" + }, + { + "Date": "2014-03-08T00:00:00", + "Tournament": "Leeds Open", + "Round": 2, + "Motion": "TH supports The RMT's decision to strike (in protest at ticket office closures)" + }, + { + "Date": "2014-03-08T00:00:00", + "Tournament": "Leeds Open", + "Round": 3, + "Motion": "THBT the US and EU should apply economic sanctions to Russia unless there is a full withdrawal of troops from territorial Ukraine." + }, + { + "Date": "2014-03-08T00:00:00", + "Tournament": "Leeds Open", + "Round": 4, + "Motion": "THW replace all means-tested benefits with a Universal Basic Income" + }, + { + "Date": "2014-03-08T00:00:00", + "Tournament": "Leeds Open", + "Round": 5, + "Motion": "THW abolish Oxford and Cambridge Universities" + }, + { + "Date": "2014-03-08T00:00:00", + "Tournament": "Mainzer Debütanten Cup", + "Round": 1, + "Motion": "Should religious education at school be abolished?" + }, + { + "Date": "2014-03-08T00:00:00", + "Tournament": "Mainzer Debütanten Cup", + "Round": 2, + "Motion": "Should we introduce mandatory quotas for media products from Europe in film, tv and radio?" + }, + { + "Date": "2014-03-08T00:00:00", + "Tournament": "Mainzer Debütanten Cup", + "Round": 3, + "Motion": "Should men be allowed to protest their legal duty to pay child support in writing if their partners decide against getting their written permission for abortion?" + }, + { + "Date": "2014-03-08T00:00:00", + "Tournament": "Mainzer Debütanten Cup", + "Round": "Open_Final", + "Motion": "Should the West cut all economic ties with Russia as long as it occupies Crimea?" + }, + { + "Date": "2014-03-07T00:00:00", + "Tournament": "UL Open", + "Round": 1, + "Motion": "THW legalise all drugs" + }, + { + "Date": "2014-03-07T00:00:00", + "Tournament": "UL Open", + "Round": 2, + "Motion": "THW ban all political parties" + }, + { + "Date": "2014-03-07T00:00:00", + "Tournament": "UL Open", + "Round": 3, + "Motion": "THB that in times of war, the state should conscript a military by means of a draft lottery" + }, + { + "Date": "2014-03-07T00:00:00", + "Tournament": "UL Open", + "Round": 4, + "Motion": "THW abolish the welfare state" + }, + { + "Date": "2014-03-07T00:00:00", + "Tournament": "UL Open", + "Round": 5, + "Motion": "THW open all borders" + }, + { + "Date": "2014-03-07T00:00:00", + "Tournament": "UL Open", + "Round": "Open_Semis", + "Motion": "TH regrets the demise of the Soviet Union" + }, + { + "Date": "2014-03-07T00:00:00", + "Tournament": "UL Open", + "Round": "Open_Final", + "Motion": "THB in the virtue of a disproportionate response" + }, + { + "Date": "2014-03-07T00:00:00", + "Tournament": "Vienna IV", + "Round": 1, + "Motion": "THBT NGOs/charities should not accept donations from organizations that contradict their aims" + }, + { + "Date": "2014-03-07T00:00:00", + "Tournament": "Vienna IV", + "Round": 2, + "Motion": "In situations where it's not possible to achieve both aims and the decision lies with the doctor, THBT doctors should prioritize prolonging life over the quality of that life" + }, + { + "Date": "2014-03-07T00:00:00", + "Tournament": "Vienna IV", + "Round": 3, + "Motion": "Ottakring is a neighbourhood with a high percentage of immigrants, particularly from former Yugoslavia." + }, + { + "Date": "2014-03-07T00:00:00", + "Tournament": "Vienna IV", + "Round": 4, + "Motion": "THBT the US and the EU should support a Russian annexation of Crimea in exchange for an otherwise independent Ukraine" + }, + { + "Date": "2014-03-07T00:00:00", + "Tournament": "Vienna IV", + "Round": 5, + "Motion": "Assuming participants have consented freely and in full knowledge of the risks and possible consequences, THW allow its citizens to participate in the “Thirst Games”" + }, + { + "Date": "2014-03-07T00:00:00", + "Tournament": "Vienna IV", + "Round": 6, + "Motion": "TH supports nations marketing themselves as destinations for ‘good time tourism’ (for the purpose of this debate, good time tourism refers to every form of tourism that satisfies human desires and is generally forbidden in the West (prostitution, drugs)" + }, + { + "Date": "2014-03-07T00:00:00", + "Tournament": "Vienna IV", + "Round": "Open_Quarters", + "Motion": "Given a machine that can predict a person's life 95% accurately, THW not use it" + }, + { + "Date": "2014-03-07T00:00:00", + "Tournament": "Vienna IV", + "Round": "Open_Semis", + "Motion": "THBT media aimed at children should reject the \"happily ever after\" model and show a more realistic picture" + }, + { + "Date": "2014-03-07T00:00:00", + "Tournament": "Vienna IV", + "Round": "Open_Final", + "Motion": "THBT no state, in any situation, has the right to demand, encourage or promote its citizen to fight or die for their country" + }, + { + "Date": "2014-03-03T00:00:00", + "Tournament": "Glasgow Women’s", + "Round": 1, + "Motion": "THW abolish trial by jury" + }, + { + "Date": "2014-03-03T00:00:00", + "Tournament": "Glasgow Women’s", + "Round": 2, + "Motion": "THW allow UK broadcasters to be politically partisan in the reporting of current events" + }, + { + "Date": "2014-03-03T00:00:00", + "Tournament": "Glasgow Women’s", + "Round": 3, + "Motion": "THW allow parents to remove their children from specific classes at school (such as sports, religious studies, sex education and science) on moral, religious or political grounds" + }, + { + "Date": "2014-03-03T00:00:00", + "Tournament": "Glasgow Women’s", + "Round": 4, + "Motion": "THW never subject international treaties to popular referenda" + }, + { + "Date": "2014-03-03T00:00:00", + "Tournament": "Glasgow Women’s", + "Round": "Open_Final", + "Motion": "TH supports Barack Obama's 'Kill List'" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Glasgow Ancients", + "Round": 1, + "Motion": "THW compel doctors to report suspected cases of domestic abuse to the police" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Glasgow Ancients", + "Round": 2, + "Motion": "THBT football associations should require clubs to be majority owned by their fans" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Glasgow Ancients", + "Round": 3, + "Motion": "THW legalise entrapment" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Glasgow Ancients", + "Round": 4, + "Motion": "THBT the EU should give automatic membership to states that have seceded from current member states" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Glasgow Ancients", + "Round": 5, + "Motion": "THW not afford religious identity the same level of anti-discrimination protection as inborn traits (such as race, gender and sexuality)" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Glasgow Ancients", + "Round": "Open_Semis", + "Motion": "THBT that the UN Security Council should sanction companies that buy 'booty futures' from rebel movements" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Glasgow Ancients", + "Round": "Open_Final", + "Motion": "TH supports the rise of online communities that aggressively police ideological purity within the feminist movement" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Helsinki Mini", + "Round": 1, + "Motion": "THBT feminists should endorse conscripting women in the Finnish army rather than abolishing conscription" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Helsinki Mini", + "Round": 2, + "Motion": "TH as Russia supports partitioning Ukraine" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Helsinki Mini", + "Round": 3, + "Motion": "THW ban male circumcision" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Marburger Geschichte Turnier (History Tournament)", + "Round": 1, + "Motion": "It is 5 July 1914. THW, as the German Reich, issue the Austrian-Hungarian empire a “blank check” on how to deal with the conflict with Serbia" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Marburger Geschichte Turnier (History Tournament)", + "Round": 2, + "Motion": "It is the end of the year 1862. THW, as Abraham Lincoln, give up on the demand to abolish slavery, provided it would help end the Civil War" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Marburger Geschichte Turnier (History Tournament)", + "Round": 3, + "Motion": "It is February of the year 44 before Christ. THW, as Brutus, join the conspiracy group of Cassius that aims to murder Caesar" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Marburger Geschichte Turnier (History Tournament)", + "Round": 4, + "Motion": "It is the beginning of 1961. THW, as the USA, seek a mutual neutrality pact with Cuba." + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Marburger Geschichte Turnier (History Tournament)", + "Round": "Open_Semis", + "Motion": "It is the fall of 1923. THW, as the Western allied forced, let Germany repay ful reparations." + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Marburger Geschichte Turnier (History Tournament)", + "Round": "Open_Final", + "Motion": "It is 1990 shortly before German reunification. THW, as the Bundesrepublik Deutschland, select the DDR anthem “Auferstanden aus Ruinen” (Risen from Ruins) as the new national anthem for a reunited Germany" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Nottingham Open", + "Round": 1, + "Motion": "THW ban the screening and production of films depicting current or recent conflicts" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Nottingham Open", + "Round": 2, + "Motion": "TH supports the Iraqi Government’s policy of paying citizens rewards to kill jihadist insurgents" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Nottingham Open", + "Round": 3, + "Motion": "TH regrets the rise and dominance of social media (such as Facebook and Twitter) in Western Liberal Democracies." + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Nottingham Open", + "Round": 4, + "Motion": "THBT developing countries should establish Charter Cities" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Nottingham Open", + "Round": "Open_Semis", + "Motion": "THBT the ICC should hire mercenaries to capture indicted individuals and put them on trial at The Hague" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Nottingham Open", + "Round": "Open_Final", + "Motion": "THBT convicted criminals should be allowed to raise their children in prison" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Tallaight IV", + "Round": 1, + "Motion": "THW legalise simulated child pornography" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Tallaight IV", + "Round": 2, + "Motion": "THW, when casting minority characters (e.g. racial minorities, LGBTs, people with disabilities etc.) would only cast actors from that same minority" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Tallaight IV", + "Round": 3, + "Motion": "TH, when testing life-extending treatments for terminally ill patients, would not use control groups" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Tallaight IV", + "Round": 4, + "Motion": "THBT Pakistan should not engage in peace talks with the Taliban" + }, + { + "Date": "2014-03-01T00:00:00", + "Tournament": "Tallaight IV", + "Round": "Open_Final", + "Motion": "You are a scientist working at CERN. Working alone one night, you make an accidental breakthrough in your research that will allow humanity to travel through time. You are alone in the lab and the odds of someone else making the same accidental breakthrough are non-existent. Motion: THW destroy its research" + }, + { + "Date": "2014-02-28T00:00:00", + "Tournament": "Budapest Open", + "Round": 1, + "Motion": "THW prohibit religious organizations from speaking out against homosexuality" + }, + { + "Date": "2014-02-28T00:00:00", + "Tournament": "Budapest Open", + "Round": 2, + "Motion": "THBT states should take active measures to limit the spread of American pop culture" + }, + { + "Date": "2014-02-28T00:00:00", + "Tournament": "Budapest Open", + "Round": 3, + "Motion": "THBT it is in Russia's interest to annex the Crimea" + }, + { + "Date": "2014-02-28T00:00:00", + "Tournament": "Budapest Open", + "Round": 4, + "Motion": "THBT the Black Rights Movement should oppose the appropriation of the Confederate flag by black public figures.", + "InfoSlide": "Kanye West recently released a clothing line which featured the Confederate flag. The Confederate flag was the flag used by the pro-slavery southern US states in the American Civil War. The American Civil War was a conflict over the use of black slaves. The flag is still used by various groups, including white supremacists in the US." + }, + { + "Date": "2014-02-28T00:00:00", + "Tournament": "Budapest Open", + "Round": 5, + "Motion": "THBT developing countries should support commercial surrogacy.", + "InfoSlide": "Surrogacy is an arrangement in which a woman carries a child for another person or couple." + }, + { + "Date": "2014-02-28T00:00:00", + "Tournament": "Budapest Open", + "Round": "Open_Semis", + "Motion": "TH opposes the sympathetic and humanizing portrayal of Nazi soldiers in popular media." + }, + { + "Date": "2014-02-28T00:00:00", + "Tournament": "Budapest Open", + "Round": "Open_Final", + "Motion": "THW suspend elections in countries with very high levels of government debt" + }, + { + "Date": "2014-02-28T00:00:00", + "Tournament": "Irish Times Final", + "Round": "Open_Final", + "Motion": "THBT the Irish Political System has served the People well" + }, + { + "Date": "2014-02-28T00:00:00", + "Tournament": "Leubke Cup (@ Brock University)", + "Round": 1, + "Motion": "THW not allow religious proselytization in the developing world." + }, + { + "Date": "2014-02-28T00:00:00", + "Tournament": "Leubke Cup (@ Brock University)", + "Round": 2, + "Motion": "TH, as the US, would grant amnesty to Edward Snowden." + }, + { + "Date": "2014-02-28T00:00:00", + "Tournament": "Leubke Cup (@ Brock University)", + "Round": 3, + "Motion": "THW not allow athletes who commit violent crimes to return to their sport upon the ending of their sentence." + }, + { + "Date": "2014-02-28T00:00:00", + "Tournament": "Leubke Cup (@ Brock University)", + "Round": 4, + "Motion": "TH opposes embedded journalists in the military." + }, + { + "Date": "2014-02-28T00:00:00", + "Tournament": "Leubke Cup (@ Brock University)", + "Round": 5, + "Motion": "TH supports the rise of sexually assertive female pop stars." + }, + { + "Date": "2014-02-28T00:00:00", + "Tournament": "Leubke Cup (@ Brock University)", + "Round": "Open_Semis", + "Motion": "THS the public outing of gay public figures." + }, + { + "Date": "2014-02-28T00:00:00", + "Tournament": "Leubke Cup (@ Brock University)", + "Round": "Open_Finals", + "Motion": "TH, with hindsight, support the 2003 invasion of Iraq." + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Leiden Open", + "Round": 1, + "Motion": "THBT the governments of developing nations should actively encourage slum tourism" + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Leiden Open", + "Round": 2, + "Motion": "TH, as a critic, would advise the public not to consume works of music, film and art produced by artists that you deem morally reprehensible, regardless of the artistic merit of their work" + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Leiden Open", + "Round": 3, + "Motion": "There have been successful experiments with citizens actively involved in the rehabilitation process of ex-convicts by, for example, hosting them in their house, or building supportive relationships with them. In these programmes, the state ensured adequate financial and professional assistance. The participation in these programmes by citizens and ex-convicts has always been voluntary. Motion: THW randomly select citizens to actively assist in the rehabilitation process of ex-convicts, and make participation mandatory for those citizens" + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Leiden Open", + "Round": 4, + "Motion": "THBT the state should make funding for political parties proportionate to the number of members from low-income brackets in those parties" + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Leiden Open", + "Round": 5, + "Motion": "THW nationalise prostitution" + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Leiden Open", + "Round": "Novice_Final", + "Motion": "Some awards in literature, theater, film, sports, etc. are granted only to people from specific minorities (NAACP awards) Motion: TH as a nominee of such an award would not accept it." + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Leiden Open", + "Round": "Open_Semis", + "Motion": "Some academic and cultural institutions have a practice of awarding prizes that recognise the achievements of members of minority groups. For example, “Muslim Student Achievement Award” or “African American Writer of the Year”. Motion:THB it is legitimate for states to deny residence or asylum to immigrants who openly contradict their predominant values" + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Leiden Open", + "Round": "Open_Final", + "Motion": "THBT the Catholic church should make absolution for those who have committed a crime conditional upon them handing themselves into the police." + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Manchester IV", + "Round": 1, + "Motion": "THBT US media should not report any details about school shootings beyond the fact that they happened" + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Manchester IV", + "Round": 2, + "Motion": "THBT all international peacekeeping operations in Africa should be carried out solely by African troops." + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Manchester IV", + "Round": 3, + "Motion": "TH supports menstrual activism.", + "InfoSlide": "Menstrual activism is a movement which seeks to examine social attitudes towards menstruation through artistic performances such as wearing menstrual blood." + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Manchester IV", + "Round": 4, + "Motion": "THW ban holocaust denial" + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Manchester IV", + "Round": "ESL_Final", + "Motion": "THW support a strict disciplinarian education system, as long as it makes students perform better" + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Manchester IV", + "Round": "Novice_Final", + "Motion": "TH regrets the use of nationalism by colonial liberation movements (e.g. the Indian National Congress, Sinn Fein)." + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Manchester IV", + "Round": "Open_Quarters", + "Motion": "TH supports the creation of women only economic zones in Saudi Arabia" + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Manchester IV", + "Round": "Open_Semis", + "Motion": "THB African-American civil rights organisations should condemn capitalism" + }, + { + "Date": "2014-02-22T00:00:00", + "Tournament": "Manchester IV", + "Round": "Open_Final", + "Motion": "The technology exists to allow people to selectively erase their memories without any physical side effects. Motion: THW allow individuals to selectively erase their own memories" + }, + { + "Date": "2014-02-21T00:00:00", + "Tournament": "Tornadu", + "Round": "Open_Quarters_Partial", + "Motion": "THBT the LGBT movement should stop using the concept of “gay pride”" + }, + { + "Date": "2014-02-21T00:00:00", + "Tournament": "Tornadu", + "Round": "Open_Semis", + "Motion": "THBT the international community has a duty to protect human rights, if necessary by military means, even in violation of the principle of national sovereignty" + }, + { + "Date": "2014-02-21T00:00:00", + "Tournament": "Tornadu", + "Round": "Open_Semi_1", + "Motion": "TH applauds the social pressure on teenage girls to initiate promiscuous sexual activity;" + }, + { + "Date": "2014-02-21T00:00:00", + "Tournament": "Tornadu", + "Round": "Open_Semi_2", + "Motion": "THW create a small network of public schools accessible only to students with outstanding academic backgrounds" + }, + { + "Date": "2014-02-21T00:00:00", + "Tournament": "Tornadu", + "Round": "Open_Semi_3", + "Motion": "When father of a fetus favours abortion and this is not carried out, THW allow him to excuse himself from any responsibility for the child;" + }, + { + "Date": "2014-02-21T00:00:00", + "Tournament": "Tornadu", + "Round": "Open_Semi_4", + "Motion": "THW reduce VAT tax on goods and services provided for by small businesses in order to combat the black (parallel) economy" + }, + { + "Date": "2014-02-21T00:00:00", + "Tournament": "Tornadu", + "Round": "Open_Semi_5", + "Motion": "THB in the primacy of serving others as opposed to seeking one’s own happiness" + }, + { + "Date": "2014-02-21T00:00:00", + "Tournament": "Tornadu", + "Round": "Open_Final", + "Motion": "THBT young Portuguese should recognize the existence of a generational struggle (with divergent and conflicting interests between generations) and prepare to win" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "Bonapartiaans Debattoernooi", + "Round": 1, + "Motion": "THW allow adoption agencies to guarantee to biological parents that their child will not be adopted by a same-sex couple" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "Bonapartiaans Debattoernooi", + "Round": 2, + "Motion": "THW allow euthanasia for patients suffering from dementia (and therefore legally incapable) who have signed an advance directive (request for euthanasia) Info" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "Bonapartiaans Debattoernooi", + "Round": 3, + "Motion": "THW provide all citizens a basic income at the poverty line without setting any requirements" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "Bonapartiaans Debattoernooi", + "Round": 4, + "Motion": "THW require all schools that teach religion to discuss militant atheism at an equal footing with all major religions." + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "Bonapartiaans Debattoernooi", + "Round": 5, + "Motion": "THW make the exploitation of brothels a state monopoly" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "Bonapartiaans Debattoernooi", + "Round": "Novice_Final", + "Motion": "THW split Belgium into separate parts" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "Bonapartiaans Debattoernooi", + "Round": "Open_Quarters", + "Motion": "THW choose its Prime Minister through direct elections" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "Bonapartiaans Debattoernooi", + "Round": "Open_Semis", + "Motion": "THW liberate slaves in Mauritania with a military intervention" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "Bonapartiaans Debattoernooi", + "Round": "Open_Final", + "Motion": "THW take Dutch citizenship away from any criminal with a double nationality and would extradite these criminals to the other country they hold citizenship of" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "Irish Times Debates Open_Semis", + "Round": "Open_Semi_1", + "Motion": "THW commemorate the First World War" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "Irish Times Debates Open_Semis", + "Round": "Open_Semi_2", + "Motion": "THW condemn the Academic and Cultural Boycott of Israel" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "Irish Times Debates Open_Semis", + "Round": "Open_Semi_3", + "Motion": "THBT the Constitution of Ireland has served the country well" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "Irish Times Debates Open_Semis", + "Round": "Open_Semi_4", + "Motion": "THW introduce Mandatory Organ Donation" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "LSE Open", + "Round": 1, + "Motion": "THBT Governments should not assist in the rebuilding of disaster prone areas" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "LSE Open", + "Round": 2, + "Motion": "TH regrets the existence of critic or professionally determined film awards, including the Academy Awards, Palme D'Or, and Sight and Sound's Top 10" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "LSE Open", + "Round": 3, + "Motion": "THBT it is the West's interest for long term Brent Crude Oil prices to fall below US$60 per barrel. Info" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "LSE Open", + "Round": 4, + "Motion": "THBT the LGBT movement should abandon the claim that sexuality is not a choice" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "LSE Open", + "Round": 5, + "Motion": "THB European Football leagues should aggressively redistribute income from successful to less successful domestic clubs" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "LSE Open", + "Round": "ESL_Semis", + "Motion": "THBT the states of the Western Balkans should ban positive depictions of indicted or convicted war criminals" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "LSE Open", + "Round": "ESL_Final", + "Motion": "THW financially incentivise interracial and interfaith marriage" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "LSE Open", + "Round": "Open_Quarters", + "Motion": "THW criminalise its citizens from fighting in foreign conflicts" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "LSE Open", + "Round": "Open_Semis", + "Motion": "THB that majority liberal supreme courts should actively misapply constitutions in order to advance progressive rights" + }, + { + "Date": "2014-02-15T00:00:00", + "Tournament": "LSE Open", + "Round": "Open_Final", + "Motion": "TH regrets Jiyas use of the Burka (info video)" + }, + { + "Date": "2014-02-14T00:00:00", + "Tournament": "Irish National Law Debates", + "Round": 1, + "Motion": "THW directly elect public representatives by random lottery" + }, + { + "Date": "2014-02-14T00:00:00", + "Tournament": "Irish National Law Debates", + "Round": 2, + "Motion": "THW remove all restrictions on sexual activities between mutually consenting adults" + }, + { + "Date": "2014-02-14T00:00:00", + "Tournament": "Irish National Law Debates", + "Round": 3, + "Motion": "THW abolish trial by jury in criminal cases" + }, + { + "Date": "2014-02-14T00:00:00", + "Tournament": "Irish National Law Debates", + "Round": 4, + "Motion": "THBT former colonial powers should not be involved in peacekeeping and nation-building in their former colonies" + }, + { + "Date": "2014-02-14T00:00:00", + "Tournament": "Irish National Law Debates", + "Round": 5, + "Motion": "THW choose to believe in a god or gods" + }, + { + "Date": "2014-02-14T00:00:00", + "Tournament": "Irish National Law Debates", + "Round": "Open_Semis", + "Motion": "THBT when awarding artistic achievement, all aspects of the artist's personal lives should be ignored" + }, + { + "Date": "2014-02-14T00:00:00", + "Tournament": "Irish National Law Debates", + "Round": "Open_Final", + "Motion": "THBT the use of violence to advance the cause of disenfranchised sexual minorities and women in Russia is legitimate" + }, + { + "Date": "2014-02-14T00:00:00", + "Tournament": "North American Women's (@ McGill University)", + "Round": 1, + "Motion": "THW ban religious and ethnic parties from running for election in developing democracies" + }, + { + "Date": "2014-02-14T00:00:00", + "Tournament": "North American Women's (@ McGill University)", + "Round": 2, + "Motion": "TH regrets the commercialization and mainstream popularization of grafitti." + }, + { + "Date": "2014-02-14T00:00:00", + "Tournament": "North American Women's (@ McGill University)", + "Round": 3, + "Motion": "THBT NATO should maintain a standing army to which all members must commit a minimum number of troops." + }, + { + "Date": "2014-02-14T00:00:00", + "Tournament": "North American Women's (@ McGill University)", + "Round": 4, + "Motion": "The “court of public opinion” refers to situations in which individuals are accused of wrongdoing, defended, and informally tried within public discourse rather than a court of law, and are subsequently treated differently based on society’s verdict(s). For example, Woody Allen is currently being tried within the court of public opinion. TH prefers a society with an active court of public opinion to one without." + }, + { + "Date": "2014-02-14T00:00:00", + "Tournament": "North American Women's (@ McGill University)", + "Round": 5, + "Motion": "THW ban employers from creating contracts which prohibit employees from expressing their political views publicly." + }, + { + "Date": "2014-02-14T00:00:00", + "Tournament": "North American Women's (@ McGill University)", + "Round": "Open_Semis", + "Motion": "THBT it is in the interest of minority rights groups (e.g. LGBTQ, women, racial minorities) to join forces in common protest rather than separately advocate for the individual interests." + }, + { + "Date": "2014-02-14T00:00:00", + "Tournament": "North American Women's (@ McGill University)", + "Round": "Open_Finals", + "Motion": "Through NSA spy networks, this House - being the US gov't - has determined that the largest of several Ukrainian opposition groups (USAR) is imminently launching a violent coup against the Ukrainian government. THW warn the Ukrainian government." + }, + { + "Date": "2014-02-09T00:00:00", + "Tournament": "Reading No-Notes Open", + "Round": 1, + "Motion": "THW Prevent men from running for elected office for a period of two terms." + }, + { + "Date": "2014-02-09T00:00:00", + "Tournament": "Reading No-Notes Open", + "Round": 2, + "Motion": "THW Ban any and all participation in faith healing." + }, + { + "Date": "2014-02-09T00:00:00", + "Tournament": "Reading No-Notes Open", + "Round": 3, + "Motion": "THW Allow and enforce prenuptial agreements that punish infidelity." + }, + { + "Date": "2014-02-09T00:00:00", + "Tournament": "Reading No-Notes Open", + "Round": 4, + "Motion": "TH, as the Conservative party, would condemn the portrayal of Romanians and Bulgarians in the tabloids" + }, + { + "Date": "2014-02-09T00:00:00", + "Tournament": "Reading No-Notes Open", + "Round": "Open_Final", + "Motion": "This House Believes that NATO Should Launch a Retaliatory Nuclear Strike." + }, + { + "Date": "2014-02-08T00:00:00", + "Tournament": "Dutch Mace", + "Round": 1, + "Motion": "THW allow companies to pay higher wages to employees who agree not to have children during their term of employment." + }, + { + "Date": "2014-02-08T00:00:00", + "Tournament": "Dutch Mace", + "Round": 2, + "Motion": "THW only give out scholarships on the basis of academic potential." + }, + { + "Date": "2014-02-08T00:00:00", + "Tournament": "Dutch Mace", + "Round": 3, + "Motion": "THB the West should make use of its imperialist power." + }, + { + "Date": "2014-02-08T00:00:00", + "Tournament": "Dutch Mace", + "Round": "Open_Final", + "Motion": "THW ban such a machine." + }, + { + "Date": "2014-02-08T00:00:00", + "Tournament": "John Smith Memorial Mace Scotland", + "Round": 1, + "Motion": "THW allow employees to sign a contract to give up their right to have children in exchange for a higher salary" + }, + { + "Date": "2014-02-08T00:00:00", + "Tournament": "John Smith Memorial Mace Scotland", + "Round": 2, + "Motion": "THBT developing nations should no longer sell land to foreign companies" + }, + { + "Date": "2014-02-08T00:00:00", + "Tournament": "John Smith Memorial Mace Scotland", + "Round": 3, + "Motion": "THW make the weight of votes proportional to a person’s expected remain lifespan" + }, + { + "Date": "2014-02-08T00:00:00", + "Tournament": "John Smith Memorial Mace Scotland", + "Round": 4, + "Motion": "TH supports the use of violent protest to topple oppressive regimes" + }, + { + "Date": "2014-02-08T00:00:00", + "Tournament": "John Smith Memorial Mace Scotland", + "Round": 5, + "Motion": "THW restrict CEOs from annually earning more than 12 times the salary of his or her lowest-paid employee" + }, + { + "Date": "2014-02-08T00:00:00", + "Tournament": "John Smith Memorial Mace Scotland", + "Round": "Open_Semis", + "Motion": "TH, as the Catholic Church, would vote in the Pope through a referendum amongst all Church-going Catholics when electing a new Pope, rather than amongst Cardinals" + }, + { + "Date": "2014-02-08T00:00:00", + "Tournament": "John Smith Memorial Mace Scotland", + "Round": "Open_Final", + "Motion": "THBT the State should pay to each and every citizen 15,000 pounds per year unconditionally" + }, + { + "Date": "2014-02-08T00:00:00", + "Tournament": "Lancaster IV", + "Round": 1, + "Motion": "THBT schools should prioritise the teaching of modern literature over classical literature." + }, + { + "Date": "2014-02-08T00:00:00", + "Tournament": "Lancaster IV", + "Round": 2, + "Motion": "THBT the west should give substantial extra non-conditional aid packages to countries that have large illegal narcotics exports." + }, + { + "Date": "2014-02-08T00:00:00", + "Tournament": "Lancaster IV", + "Round": 3, + "Motion": "TH, as Edward Snowden, regrets publishing the NSA files." + }, + { + "Date": "2014-02-08T00:00:00", + "Tournament": "Lancaster IV", + "Round": 4, + "Motion": "THBT celebrities should be banned from making political statements." + }, + { + "Date": "2014-02-08T00:00:00", + "Tournament": "Lancaster IV", + "Round": "Open_Final", + "Motion": "TH, as a scientist who has developed a compound which when ingested causes a person to become bisexual, would infect the global water supply with the compound." + }, + { + "Date": "2014-02-01T00:00:00", + "Tournament": "NorthAms (@ Carleton University)", + "Round": 1, + "Motion": "THW make voting power depreciate with age." + }, + { + "Date": "2014-02-01T00:00:00", + "Tournament": "NorthAms (@ Carleton University)", + "Round": 2, + "Motion": "THBT signatories to the Kyoto protocol should institute economic sanctions against nations that refuse to sign" + }, + { + "Date": "2014-02-01T00:00:00", + "Tournament": "NorthAms (@ Carleton University)", + "Round": 3, + "Motion": "THBT art depicting historical atrocities should depict them in their full brutality." + }, + { + "Date": "2014-02-01T00:00:00", + "Tournament": "NorthAms (@ Carleton University)", + "Round": 4, + "Motion": "THW ban advertising that objectifies women." + }, + { + "Date": "2014-02-01T00:00:00", + "Tournament": "Warwick IV", + "Round": 1, + "Motion": "THW require those claiming Job Seekers' Allowance to undertake community service" + }, + { + "Date": "2014-02-01T00:00:00", + "Tournament": "Warwick IV", + "Round": 2, + "Motion": "TH supports public funding of blasphemous art" + }, + { + "Date": "2014-02-01T00:00:00", + "Tournament": "Warwick IV", + "Round": 3, + "Motion": "THW abolish academic journals and make all academic research freely available to the public online" + }, + { + "Date": "2014-02-01T00:00:00", + "Tournament": "Warwick IV", + "Round": 4, + "Motion": "TH supports the formation of vigilante groups in high crime areas of Mexico" + }, + { + "Date": "2014-02-01T00:00:00", + "Tournament": "Warwick IV", + "Round": "Open_Semis", + "Motion": "THBT Barack Obama should issue an executive order suspending all state bans on gay marriage" + }, + { + "Date": "2014-02-01T00:00:00", + "Tournament": "Warwick IV", + "Round": "Open_Final", + "Motion": "TH, as a wealthy individual, rather than paying the full rate of tax, would avoid taxation in order to donate to charity, according to his/her own moral preferences" + }, + { + "Date": "2014-01-25T00:00:00", + "Tournament": "Brabants Debattoernooi", + "Round": 1, + "Motion": "We should be able to fire (Rabobank) Board members that were responsible for fraud, without a severance bonus." + }, + { + "Date": "2014-01-25T00:00:00", + "Tournament": "Brabants Debattoernooi", + "Round": 2, + "Motion": "Bitcoins should become the official currency in the Netherlands" + }, + { + "Date": "2014-01-25T00:00:00", + "Tournament": "Brabants Debattoernooi", + "Round": 3, + "Motion": "Health insurances should be allowed to refuse medicines on the basis of their costs" + }, + { + "Date": "2014-01-25T00:00:00", + "Tournament": "Brabants Debattoernooi", + "Round": 4, + "Motion": "The availability/sales of pyrotechnics/fireworks should be limited (This article and this one give appropriate background info)" + }, + { + "Date": "2014-01-25T00:00:00", + "Tournament": "Brabants Debattoernooi", + "Round": "Open_Semi_1", + "Motion": "Assad should win" + }, + { + "Date": "2014-01-25T00:00:00", + "Tournament": "Brabants Debattoernooi", + "Round": "Open_Semi_2", + "Motion": "Dutch athletes should boycott the Sochi Winter Olympics" + }, + { + "Date": "2014-01-25T00:00:00", + "Tournament": "Brabants Debattoernooi", + "Round": "Open_Final", + "Motion": "People in Groningen should stop complaining (probably referring to gas drilling in the province)" + }, + { + "Date": "2014-01-25T00:00:00", + "Tournament": "York IV", + "Round": 1, + "Motion": "THW create drug provison centres to provide all adults with unlimited quantities of free heroin and cocaine, exclusively for on site consumption." + }, + { + "Date": "2014-01-25T00:00:00", + "Tournament": "York IV", + "Round": 2, + "Motion": "In a world in which the Z-gene exists, THW require that mutants be constantly monitored by the state from birth." + }, + { + "Date": "2014-01-25T00:00:00", + "Tournament": "York IV", + "Round": 3, + "Motion": "THBT the Labour Party should end its affiliation with trade unions." + }, + { + "Date": "2014-01-25T00:00:00", + "Tournament": "York IV", + "Round": 4, + "Motion": "THBT schools should attempt to indoctrinate school children with the belief that they are personally culpable for death, poverty and abject misery in the developing world." + }, + { + "Date": "2014-01-25T00:00:00", + "Tournament": "York IV", + "Round": "Open_Semis", + "Motion": "THBT the Syrian National Coalition and the Free Syrian Army should offer to end the Syrian Civil War and share power in a short term transitional government led by Bashar al-Assad" + }, + { + "Date": "2014-01-25T00:00:00", + "Tournament": "York IV", + "Round": "Open_Final", + "Motion": "THBT comedians who cross the line of public offence do more harm than good" + }, + { + "Date": "2014-01-24T00:00:00", + "Tournament": "Trinity IV", + "Round": 1, + "Motion": "THBT feminists should condemn the practice of monogamy" + }, + { + "Date": "2014-01-24T00:00:00", + "Tournament": "Trinity IV", + "Round": 2, + "Motion": "THBT resource-rich developing nations should severely restrict the extraction and sale of natural resources" + }, + { + "Date": "2014-01-24T00:00:00", + "Tournament": "Trinity IV", + "Round": 3, + "Motion": "THBT Japanese leaders are legitimate in visiting the Yasukuni Shrine" + }, + { + "Date": "2014-01-24T00:00:00", + "Tournament": "Trinity IV", + "Round": 4, + "Motion": "THB the NAACP should not seek a post-racial society" + }, + { + "Date": "2014-01-24T00:00:00", + "Tournament": "Trinity IV", + "Round": "Open_Quarters", + "Motion": "THB the Irish state should pay reparations to all female citizens who lived during the period in which Magdalene Laundries were operational" + }, + { + "Date": "2014-01-24T00:00:00", + "Tournament": "Trinity IV", + "Round": "Open_Semis", + "Motion": "THW teach children to question authority, even if it undermines discipline in the classroom" + }, + { + "Date": "2014-01-24T00:00:00", + "Tournament": "Trinity IV", + "Round": "Open_Final", + "Motion": "TH rejects the legitimacy of the state" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 1.1, + "Motion": "THW stop state funding of the arts" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 1.2, + "Motion": "THW \"Live as if you were to die tomorrow\"" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 1.3, + "Motion": "THW use force to make peace" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 2.1, + "Motion": "THBT the bare necessities are enough" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 2.2, + "Motion": "THBT we should fear Google" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 2.3, + "Motion": "THBT privacy is an illusion" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 2.4, + "Motion": "THW not have children" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 2.5, + "Motion": "THBT anything good in life is either illegal, immoral or fattening" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 3.1, + "Motion": "THW always choose style over substance" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 3.2, + "Motion": "THBT bad government comes from too much government" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 3.3, + "Motion": "THBT men have become the tools of their tools" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 3.4, + "Motion": "THBT science will save us" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 3.4, + "Motion": "THW emigrate" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 3.5, + "Motion": "THW tell the whole truth" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 4.1, + "Motion": "THBT work is overrated" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 4.2, + "Motion": "THB in free speech" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 4.3, + "Motion": "THBT parents are corrupted by children" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 4.4, + "Motion": "THBT imagination is better than knowledge" + }, + { + "Date": "2014-01-23T00:00:00", + "Tournament": "Paris V", + "Round": 4.5, + "Motion": "THBT whenever you find yourself on the side of the majority it is time to pause and reflect" + }, + { + "Date": "2014-01-18T00:00:00", + "Tournament": "Irish Times Debates Round 2", + "Round": 1, + "Motion": "TH condemns the actions of Edward Snowden" + }, + { + "Date": "2014-01-18T00:00:00", + "Tournament": "Irish Times Debates Round 2", + "Round": 2, + "Motion": "THW remove all restrictions on freedom of speech" + }, + { + "Date": "2014-01-18T00:00:00", + "Tournament": "London Pro-Am IV", + "Round": 1, + "Motion": "If the tech to do so were available, THW allow disabled parents to ensure their children are born with their disabilities" + }, + { + "Date": "2014-01-18T00:00:00", + "Tournament": "London Pro-Am IV", + "Round": 2, + "Motion": "TH, as the Pope and the Vatican council, would liquidate all the Vatican's assets and distribute them to charity" + }, + { + "Date": "2014-01-18T00:00:00", + "Tournament": "London Pro-Am IV", + "Round": 3, + "Motion": "THW create a scheme to aggressively encourage university graduates to marry and reproduce" + }, + { + "Date": "2014-01-18T00:00:00", + "Tournament": "London Pro-Am IV", + "Round": 4, + "Motion": "TH regrets the 'fat pride' movement" + }, + { + "Date": "2014-01-11T00:00:00", + "Tournament": "Nottingham Trent Open", + "Round": 1, + "Motion": "THW require that government ministers be highly qualified and experienced experts in their policy areas" + }, + { + "Date": "2014-01-11T00:00:00", + "Tournament": "Nottingham Trent Open", + "Round": 2, + "Motion": "THBT the EU should lift its ban on exporting sedatives used in lethal injections to the USA" + }, + { + "Date": "2014-01-11T00:00:00", + "Tournament": "Nottingham Trent Open", + "Round": 3, + "Motion": "THBT the Conservative Party should form an electoral pact with the UK Independence Party for the 2015 general election" + }, + { + "Date": "2014-01-11T00:00:00", + "Tournament": "Nottingham Trent Open", + "Round": 4, + "Motion": "THBT hacking is a legitimate form of protest against large corporations" + }, + { + "Date": "2014-01-11T00:00:00", + "Tournament": "Nottingham Trent Open", + "Round": "Open_Semis", + "Motion": "THBT all states should adopt the Flemish system of university admissions" + }, + { + "Date": "2014-01-11T00:00:00", + "Tournament": "Nottingham Trent Open", + "Round": "Open_Final", + "Motion": "THBT the British education system should aim to give students from all backgrounds a high level of familiarity with the cultural knowledge prized by white, upper and middle class elites" + }, + { + "Date": "2014-01-10T00:00:00", + "Tournament": "Zeit Debatte Dresden", + "Round": 1, + "Motion": "THW make graduates of state universities, who become stay-at-home “parents” (Hausfrauen oder Hausmänner), retrospectively pay their study fees (normally free)." + }, + { + "Date": "2014-01-10T00:00:00", + "Tournament": "Zeit Debatte Dresden", + "Round": 2, + "Motion": "THW offer immigrants who cannot claim welfare benefits in Germany a loan for “livelihood/existence costs” that they would have to repay after five years" + }, + { + "Date": "2014-01-10T00:00:00", + "Tournament": "Zeit Debatte Dresden", + "Round": 3, + "Motion": "THBT parents should monitor the electronic communications of their children, for example by installing spyware, requiring their children to give them their passwords, or reading browser histories" + }, + { + "Date": "2014-01-10T00:00:00", + "Tournament": "Zeit Debatte Dresden", + "Round": 4, + "Motion": "THW provide strong financial support to families who decide to bring a foetus with Down syndrom to term and raise it by themselves" + }, + { + "Date": "2014-01-10T00:00:00", + "Tournament": "Zeit Debatte Dresden", + "Round": 5, + "Motion": "THBT attacks on military targets, in which many civilian victims can be expected, are legitimate" + }, + { + "Date": "2014-01-10T00:00:00", + "Tournament": "Zeit Debatte Dresden", + "Round": "Open_Semis", + "Motion": "THW allow people to insure themselves against fines" + }, + { + "Date": "2014-01-10T00:00:00", + "Tournament": "Zeit Debatte Dresden", + "Round": "Open_Final", + "Motion": "TH, as an athlete with sight on a medal at the Olympic Games in Sotchi, would publicly promote LGBT rights during the Games" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": 1, + "Motion": "THR the commercialization of religious holidays." + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": 2, + "Motion": "THBT universities should ban all fraternities and sororities." + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": 3, + "Motion": "TH, as the Mexican government, would end its war against the drug cartels." + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": 4, + "Motion": "THR the use of feminism as an advertising tactic." + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": 5, + "Motion": "THW ban all youth wings of political parties in developing countries." + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": 6, + "Motion": "THBT protesters should not use memorials as sites for protest." + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": "Novice_Finals", + "Motion": "THS a lower income tax for women than men." + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": "Open_Quarters", + "Motion": "THP Facebook's policy of only removing content that users report as objectionable to a policy where Facebook itself independently determines restrictions on content." + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": "Open_Semis", + "Motion": "THBT all information marked as classified by governments should become available to the public within 50 years." + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Brandeis IV", + "Round": "Open_Finals", + "Motion": "THW allow communities to vote to suspend police supervision." + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": 1, + "Motion": "THBT the United States of America should fund moderate Madrassas (schools of Islamic study) throughout the Islamic world" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": 2, + "Motion": "THW allow first-time offenders to, with the consent of the victims, pay compensation to them in place of a prison sentence" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": 3, + "Motion": "TH regrets the rise of a 'hookup culture' (one which accepts and encourages casual sexual encounters focused on physical pleasure, without necessarily including emotional bonding)" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": 4, + "Motion": "THBT developing countries should ban members of political dynasties from standing for elected office" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": 5, + "Motion": "THBT the Trans-Pacific Partnership is in the interests of the small and medium-sized negotiating countries." + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": 6, + "Motion": "THW make the receipt of welfare payments to raise children conditional on the use of long-term, but reversible, contraception" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": 7, + "Motion": "THBT government agencies that regulate drugs should only test whether a drug is safe, not whether it is effective, before approving it for public use." + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": 8, + "Motion": "THBT NATO should unconditionally offer membership to the states of the former Soviet Union, excluding Russia" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": 9, + "Motion": "TH regrets the commodification of indigenous cultures" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": "EFL_Semis", + "Motion": "THBT the gay rights movement should abandon the claim that sexuality is not a choice" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": "EFL_Final", + "Motion": "THBT multinational companies should be liable for human rights abuses that occur anywhere in their supply chain" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": "ESL_Quarters", + "Motion": "THW remove all copyright protection for material deemed to be morally objectionable" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": "ESL_Semis", + "Motion": "THBT Pope Francis should publicly encourage Catholics to support radically redistributive government policies" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": "ESL_Final", + "Motion": "THW allow countries to pay other countries to settle asylum-seekers who reach their borders" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": "Open_Partial_Double_Octos", + "Motion": "THW abolish gated communities in the developing world" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": "Open_Octos", + "Motion": "THBT Japan should shame its soldiers who participated in WWII, including those who did not commit war crimes themselves" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": "Open_Quarters", + "Motion": "THW auction off the long-term right to govern bankrupt cities for profit" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": "Open_Semis", + "Motion": "THBT women should reject practices that alter the appearance of their genitalia, such as waxing and labiaplasty" + }, + { + "Date": "2014-01-01T00:00:00", + "Tournament": "Chennai WUDC 2014", + "Round": "Open_Final", + "Motion": "THBT India should adopt aggressive free market policies." + }, + { + "Date": "2013-12-21T00:00:00", + "Tournament": "Decemberac (beginners tournament)", + "Round": 1, + "Motion": "THW include children with special needs into regular school classes" + }, + { + "Date": "2013-12-21T00:00:00", + "Tournament": "Decemberac (beginners tournament)", + "Round": 2, + "Motion": "TH, as a former communist state, would remove the monuments of the former regime" + }, + { + "Date": "2013-12-21T00:00:00", + "Tournament": "Decemberac (beginners tournament)", + "Round": 3, + "Motion": "THBT holding the Olympics is not worth it for the host country" + }, + { + "Date": "2013-12-21T00:00:00", + "Tournament": "Decemberac (beginners tournament)", + "Round": 4, + "Motion": "THBT sanctions are a good way of implementing democracy" + }, + { + "Date": "2013-12-21T00:00:00", + "Tournament": "Decemberac (beginners tournament)", + "Round": 5, + "Motion": "THW not undress" + }, + { + "Date": "2013-12-21T00:00:00", + "Tournament": "Decemberac (beginners tournament)", + "Round": "Open_Semis", + "Motion": "In today’s world, THW choose a craft rather than the university education" + }, + { + "Date": "2013-12-21T00:00:00", + "Tournament": "Decemberac (beginners tournament)", + "Round": "Open_Final", + "Motion": "THW not read fairy tales to children" + }, + { + "Date": "2013-12-20T00:00:00", + "Tournament": "Birmingham IV", + "Round": 1, + "Motion": "THW financially compensate children who fail to achieve employable grades at school" + }, + { + "Date": "2013-12-20T00:00:00", + "Tournament": "Birmingham IV", + "Round": 2, + "Motion": "THW establish quotas for immigrants on national sports teams" + }, + { + "Date": "2013-12-20T00:00:00", + "Tournament": "Birmingham IV", + "Round": 3, + "Motion": "THB the European Union should lower the entry requirements and fast-track accession procedures for the Ukraine and other nations in the Caucasus" + }, + { + "Date": "2013-12-20T00:00:00", + "Tournament": "Birmingham IV", + "Round": 4, + "Motion": "THB the USA should withdraw from its defensive pact with Japan in the East China Sea" + }, + { + "Date": "2013-12-20T00:00:00", + "Tournament": "Birmingham IV", + "Round": 5, + "Motion": "THBT lack of Intent should not be considered a legitimate defence in hate speech trials" + }, + { + "Date": "2013-12-20T00:00:00", + "Tournament": "Birmingham IV", + "Round": "Open_Semis", + "Motion": "THBT governments should take public steps to disrupt and discredit the use of cryptocurrencies (e.g. Bitcoin)" + }, + { + "Date": "2013-12-20T00:00:00", + "Tournament": "Birmingham IV", + "Round": "Open_Final", + "Motion": "THBT South Africans should engage in a frank and critical discussion of the life achievements and legacy of Nelson Mandela, rather than continue to uncritically revere him" + }, + { + "Date": "2013-12-19T00:00:00", + "Tournament": "Jerusalem Open", + "Round": 1, + "Motion": "THBT foreign Western governments should stop attempting to resolve the Israel-Palestine conflict." + }, + { + "Date": "2013-12-19T00:00:00", + "Tournament": "Jerusalem Open", + "Round": 2, + "Motion": "THBT First Ladies/Gentlemen should not publicly advocate for policies or political positions during their partner's term in office" + }, + { + "Date": "2013-12-19T00:00:00", + "Tournament": "Jerusalem Open", + "Round": 3, + "Motion": "THBT schools should avoid instilling a sense of patriotism" + }, + { + "Date": "2013-12-19T00:00:00", + "Tournament": "Jerusalem Open", + "Round": 4, + "Motion": "THW allow jury nullification" + }, + { + "Date": "2013-12-19T00:00:00", + "Tournament": "Jerusalem Open", + "Round": "Open_Semis", + "Motion": "THW charge George W. Bush with war crimes for the CIA's actions in his terms" + }, + { + "Date": "2013-12-19T00:00:00", + "Tournament": "Jerusalem Open", + "Round": "Open_Final", + "Motion": "THBT policy pertaining to religion in the public sphere in Israel should be set on a local level" + }, + { + "Date": "2013-12-19T00:00:00", + "Tournament": "Tournament without a name (Macedonian-Greek exchange tournament)", + "Round": 1, + "Motion": "THW ban international adoption" + }, + { + "Date": "2013-12-19T00:00:00", + "Tournament": "Tournament without a name (Macedonian-Greek exchange tournament)", + "Round": 2, + "Motion": "THW organise Alternative Olympics to the Sochi 2014 Winter Olympics in order to protest anti-LGBT laws in Russia" + }, + { + "Date": "2013-12-19T00:00:00", + "Tournament": "Tournament without a name (Macedonian-Greek exchange tournament)", + "Round": 3, + "Motion": "THBT Pope Francis I should openly endorse radical left political parties and candidates" + }, + { + "Date": "2013-12-19T00:00:00", + "Tournament": "Tournament without a name (Macedonian-Greek exchange tournament)", + "Round": "Open_Final", + "Motion": "THW ban re-election of politicians that did not fulfil their promises" + }, + { + "Date": "2013-12-14T00:00:00", + "Tournament": "KCL IV", + "Round": 1, + "Motion": "THBT foster children should be placed into families with similar backgrounds (race, religion, etc)" + }, + { + "Date": "2013-12-14T00:00:00", + "Tournament": "KCL IV", + "Round": 2, + "Motion": "THBT politicians should not have public profiles on twitter and other social networking sites" + }, + { + "Date": "2013-12-14T00:00:00", + "Tournament": "KCL IV", + "Round": 3, + "Motion": "You are an immigrant (asylum seeker?) from a non-Western country. You are offered full and immediate citizenship of the EU and the US. The offers are the only two that you have and are mutually exclusive. You do not know where you will live in either union. Your native and only language is spoken in neither. Motion: THW opt for the EU" + }, + { + "Date": "2013-12-14T00:00:00", + "Tournament": "KCL IV", + "Round": 4, + "Motion": "TH supports soldier-run free schools" + }, + { + "Date": "2013-12-14T00:00:00", + "Tournament": "KCL IV", + "Round": "Open_Semis", + "Motion": "THBT the US should overturn its blanket ban on negotiating with terrorists" + }, + { + "Date": "2013-12-14T00:00:00", + "Tournament": "KCL IV", + "Round": "Open_Final", + "Motion": "As an atheist, THW proselytise" + }, + { + "Date": "2013-12-14T00:00:00", + "Tournament": "Leiden Novice Tournament", + "Round": 1, + "Motion": "THW stop streaming children in secondary schools based on intelligence" + }, + { + "Date": "2013-12-14T00:00:00", + "Tournament": "Leiden Novice Tournament", + "Round": 2, + "Motion": "THW make parents legally responsible for their children's crimes" + }, + { + "Date": "2013-12-14T00:00:00", + "Tournament": "Leiden Novice Tournament", + "Round": 3, + "Motion": "This house believes that governments should never pay ransoms" + }, + { + "Date": "2013-12-14T00:00:00", + "Tournament": "Leiden Novice Tournament", + "Round": "Open_Final", + "Motion": "THW ban all media (such as music, films and videogames) which glorify misogyny" + }, + { + "Date": "2013-12-14T00:00:00", + "Tournament": "Streitkultur Cup", + "Round": 1, + "Motion": "Do we need a third vote (Die Drittstimme)" + }, + { + "Date": "2013-12-14T00:00:00", + "Tournament": "Streitkultur Cup", + "Round": 2, + "Motion": "Should natural disasters and extreme weather in the future be named after politicians that are against combatting climate change?" + }, + { + "Date": "2013-12-14T00:00:00", + "Tournament": "Streitkultur Cup", + "Round": 3, + "Motion": "Should the state treat all religions equally?" + }, + { + "Date": "2013-12-14T00:00:00", + "Tournament": "Streitkultur Cup", + "Round": "Open_Final", + "Motion": "Should Germany boycott the Sochi Olympics?" + }, + { + "Date": "2013-12-13T00:00:00", + "Tournament": "BGU IV", + "Round": 1, + "Motion": "THBT Times Magazine should have chosen Miley Cyrus to be person of the year" + }, + { + "Date": "2013-12-13T00:00:00", + "Tournament": "BGU IV", + "Round": 2, + "Motion": "TH, as the US, would abandon the Israeli-Palestinian Cause" + }, + { + "Date": "2013-12-13T00:00:00", + "Tournament": "BGU IV", + "Round": 3, + "Motion": "THW wage war using only games fought via computers" + }, + { + "Date": "2013-12-13T00:00:00", + "Tournament": "BGU IV", + "Round": 4, + "Motion": "THBT governments should not regulate the use of any new currency" + }, + { + "Date": "2013-12-13T00:00:00", + "Tournament": "BGU IV", + "Round": 5, + "Motion": "In memory of Nelson Mandela: The year is 1985, THS Paul Simon in breaking the cultural boycott of Apartheid South Africa (for the making of the future Graceland album in collaboration with black musicians)" + }, + { + "Date": "2013-12-13T00:00:00", + "Tournament": "BGU IV", + "Round": "Open_Final", + "Motion": "THBT Pope Francis as the head of the Catholic Church will end up causing more harm than good" + }, + { + "Date": "2013-12-13T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 1, + "Motion": "THW forcibly relocate indigenous peoples where their presence prevents the extraction/utilization of valuable resources" + }, + { + "Date": "2013-12-13T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 2, + "Motion": "TH supports private ownership of 3D printers" + }, + { + "Date": "2013-12-13T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 3, + "Motion": "TH regrets the branding of Burka Avenger as a feminist icon" + }, + { + "Date": "2013-12-13T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 4, + "Motion": "TH, as Pope Francis, would allow women to become priests" + }, + { + "Date": "2013-12-13T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 5, + "Motion": "THB, in times of economic crisis, economic bodies should (strategically) withhold information that may damage market confidence" + }, + { + "Date": "2013-12-13T00:00:00", + "Tournament": "Tilbury House IV", + "Round": "Open_Final", + "Motion": "TH welcomes the rise of art, music and film that celebrates lack of economic wealth" + }, + { + "Date": "2013-12-07T00:00:00", + "Tournament": "John Smith Memorial Mace Welsh leg", + "Round": 1, + "Motion": "THW legalise euthanasia" + }, + { + "Date": "2013-12-07T00:00:00", + "Tournament": "John Smith Memorial Mace Welsh leg", + "Round": 2, + "Motion": "THW provide financial incentives to individuals leading a vegetarian lifestyle" + }, + { + "Date": "2013-12-07T00:00:00", + "Tournament": "John Smith Memorial Mace Welsh leg", + "Round": 3, + "Motion": "THBT FIFA should reallocate the 2022 World Cup from Qatar to a country with a superior human rights record" + }, + { + "Date": "2013-12-07T00:00:00", + "Tournament": "John Smith Memorial Mace Welsh leg", + "Round": 4, + "Motion": "THBT major Hollywood studios should increase the number of lead roles for female villains substantially in their blockbuster films" + }, + { + "Date": "2013-12-07T00:00:00", + "Tournament": "John Smith Memorial Mace Welsh leg", + "Round": "Open_Final", + "Motion": "THBT the media should fabricate and publish positive economic stories during prolonged periods of economic recession" + }, + { + "Date": "2013-12-07T00:00:00", + "Tournament": "Sheffield IV", + "Round": 1, + "Motion": "THW aggressively fund art in public places, which depicts struggles on which there is no consensus and of which there are continuing consequences" + }, + { + "Date": "2013-12-07T00:00:00", + "Tournament": "Sheffield IV", + "Round": 2, + "Motion": "THW cut off development aid to countries which willfully neglect to combat terrorism within their own borders" + }, + { + "Date": "2013-12-07T00:00:00", + "Tournament": "Sheffield IV", + "Round": 3, + "Motion": "THW freeze membership of sporting federations of nations that boycott sporting competitions (events, matches, tournaments etc.) for political reasons." + }, + { + "Date": "2013-12-07T00:00:00", + "Tournament": "Sheffield IV", + "Round": 4, + "Motion": "THW end the prosecution of Troubles-related killings in Northern Ireland" + }, + { + "Date": "2013-12-07T00:00:00", + "Tournament": "Sheffield IV", + "Round": "Open_Final", + "Motion": "TH, as the United States, does not regret the dropping of the atomic bomb." + }, + { + "Date": "2013-12-07T00:00:00", + "Tournament": "Tournament of Champions", + "Round": 1, + "Motion": "This House would legalize the use of baby-boxes all around the EU" + }, + { + "Date": "2013-12-07T00:00:00", + "Tournament": "Tournament of Champions", + "Round": 2, + "Motion": "THBT a world in which there is no more sexual instinct and reproduction is only in vitro and through similar technologies is a better world" + }, + { + "Date": "2013-12-07T00:00:00", + "Tournament": "Tournament of Champions", + "Round": 3, + "Motion": "This House would grant immediate EU admission to regions like Scotland or Catalonia who choose to declare independence from countries that are already in the EU" + }, + { + "Date": "2013-12-07T00:00:00", + "Tournament": "Tournament of Champions", + "Round": 4, + "Motion": "THW eliminate any legal or ethical limitations from the field of genetic research on improving the human body." + }, + { + "Date": "2013-12-07T00:00:00", + "Tournament": "Tournament of Champions", + "Round": "Open_Final", + "Motion": "THBT Romania should strengthen its relationship with China, even if that impacts its relationship with the EU" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Brandeis IV", + "Round": 1, + "Motion": "THBT children should be banned from attending religious services." + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Brandeis IV", + "Round": 2, + "Motion": "THBT the use of chemical weapons in a defensive capacity against enemy combatants should not be a war crime." + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Brandeis IV", + "Round": 3, + "Motion": "THW criminalize the possession and use of Bitcoins." + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Brandeis IV", + "Round": 4, + "Motion": "THW make government assistance to historically marginalized cultural groups contingent on policies to combat traditional gender inequality." + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Brandeis IV", + "Round": 5, + "Motion": "THBT all universities should create separate career tracks for teaching and research." + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Brandeis IV", + "Round": 6, + "Motion": "THBT the NFL should issue automatic lifetime bans to players convicted of domestic violence or sexual assault." + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Brandeis IV", + "Round": "Open_Quarters", + "Motion": "THW require the state to compensate individuals who face criminal prosecution but are not found guilty." + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Brandeis IV", + "Round": "Open_Semis", + "Motion": "THBT Germany should renew the ban on the publication of Mein Kampf." + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Brandeis IV", + "Round": "Open_Finals", + "Motion": "THBT the LGBT movement should not take a position on whether sexual preferences are a choice." + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Centrale IV", + "Round": 1, + "Motion": "THW Allow athletes to compete in the gender category they self identify with" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Centrale IV", + "Round": 2, + "Motion": "THBT Hamid Karzai should sign the Bilateral Security Agreement" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Centrale IV", + "Round": 3, + "Motion": "This house would allow the Roma to settle in autonomous communities" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Centrale IV", + "Round": 4, + "Motion": "This house believes that developing countries should ban the entry of foreign supermarkets chains [added by me] into their markets" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Centrale IV", + "Round": 5, + "Motion": "Given that a trade off is required, THBT history education in post-conflict societies should focus on cohesion at the cost of truth" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Centrale IV", + "Round": "Open_Final", + "Motion": "TH supports FEMEN" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Lund IV", + "Round": 1, + "Motion": "THBT Facebook, Google+,and other social media platforms should remove all content produced by extremist political parties." + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Lund IV", + "Round": 2, + "Motion": "TH welcomes the presence of gender-neutral schools." + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Lund IV", + "Round": 3, + "Motion": "THBT is in China’s interest to shoot down foreign military aircrafts that violate the ADIZ." + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Lund IV", + "Round": 4, + "Motion": "Assuming that the death penalty is in use, THW make all executions public." + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Lund IV", + "Round": "Novice_Final", + "Motion": "THBT Schools should raise the expectations of children beyond what they can realistically achieve." + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Lund IV", + "Round": "Open_Semis", + "Motion": "THBT the EU should materially support anti-Russian political movements in Eastern Europe and the former Soviet Union" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Lund IV", + "Round": "Open_Final", + "Motion": "TH supports armed vigilante groups in high crime areas." + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Moscow Open", + "Round": 1, + "Motion": "THW ban the fur industry" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Moscow Open", + "Round": 2, + "Motion": "TH as Ukraine would join Russia led economic bloc rather than the EU free trade account" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Moscow Open", + "Round": 3, + "Motion": "THW in the countries that have laws prohibiting discriminatory and hateful language against various groups based on certain characteristics they have, grant overweight people the same protection like other vulnerable groups" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Moscow Open", + "Round": 4, + "Motion": "THW require police to wear miniature video cameras at all times whilst on duty" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Moscow Open", + "Round": 5, + "Motion": "THBT decisions to allocate funding to scientific research programs should be taken solely by a group of professional scientists" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Moscow Open", + "Round": "Open_Semis", + "Motion": "TH, as a Russian woman, would rather live in the Soviet Union" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Moscow Open", + "Round": "Open_Final", + "Motion": "THBT Western Liberal Democracies should boycott the Russian Winter Olympics 2014 in Sochi" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Warsaw Open", + "Round": 1, + "Motion": "THW eject national sports teams from international competitions if their fans or players are found to have committed racist or fascist acts during matches" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Warsaw Open", + "Round": 2, + "Motion": "THBT in developed countries the minimum wage should guarantee a middle class lifestyle" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Warsaw Open", + "Round": 3, + "Motion": "THW stop all research into differences between the male and female brain" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Warsaw Open", + "Round": 4, + "Motion": "THBT Pope Francis should openly endorse radical left political parties and candidates" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Warsaw Open", + "Round": "Open_Semis", + "Motion": "THW only hold gay pride parades with the consent of the local community" + }, + { + "Date": "2013-12-06T00:00:00", + "Tournament": "Warsaw Open", + "Round": "Open_Final", + "Motion": "THW immediately lift all sanctions on Iran" + }, + { + "Date": "2013-12-01T00:00:00", + "Tournament": "English Cup", + "Round": 1, + "Motion": "THW classify all organized crime as terrorist organizations" + }, + { + "Date": "2013-12-01T00:00:00", + "Tournament": "English Cup", + "Round": 2, + "Motion": "THBT the education system should promote expectations according to the students’ realistic potential, ability and social status" + }, + { + "Date": "2013-12-01T00:00:00", + "Tournament": "English Cup", + "Round": 3, + "Motion": "This house would hire police personnel in proportion to society’s demography" + }, + { + "Date": "2013-12-01T00:00:00", + "Tournament": "English Cup", + "Round": "Open_Semis", + "Motion": "THW, as a western liberal democracy, legalize paid surrogacy" + }, + { + "Date": "2013-12-01T00:00:00", + "Tournament": "English Cup", + "Round": "Open_Final", + "Motion": "This house, as China, would legalize gay marriage" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Bristol ProAM", + "Round": 1, + "Motion": "THW not allow governments to electronically intercept communications without a warrant" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Bristol ProAM", + "Round": 2, + "Motion": "THW prevent the media from publishing any personal details (such as race or social class) of criminals and suspects" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Bristol ProAM", + "Round": 3, + "Motion": "TH, as the USA, would destroy its stockpile of smallpox" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Bristol ProAM", + "Round": 4, + "Motion": "In proportion to under 30s population, THW reserve seats in parliament for 18-30 year olds" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Bristol ProAM", + "Round": "Open_Semis", + "Motion": "THW, as David Icke, dedicate the rest of its life to exposing the lizard people. (Info)" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Bristol ProAM", + "Round": "Open_Final", + "Motion": "THBT western liberal democracies should use any effective means at their disposal to uphold the human rights of women" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Newcastle IV", + "Round": 1, + "Motion": "THW allow individuals to sell their non-vital organs" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Newcastle IV", + "Round": 2, + "Motion": "THW legalise online child chat simulations" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Newcastle IV", + "Round": 3, + "Motion": "THW apply the same standards to the sale of mass surveillance technology as it does to the sale of arms" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Newcastle IV", + "Round": 4, + "Motion": "THS affirmative action policies targeted at women in business" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Newcastle IV", + "Round": "Open_Final", + "Motion": "THBT Miley Cyrus is bad for feminism" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Nikolausturnier", + "Round": 1, + "Motion": "THW convicted criminals the options to choose corporal punishments over imprisonment" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Nikolausturnier", + "Round": 2, + "Motion": "You are a young, liberal, Turkish man in Turkey. Motion: THBT the ban on Islamic veils in public buildings should be abolished" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Nikolausturnier", + "Round": 3, + "Motion": "It is Christmas. In otherwise pristine snow, the trackmarks of Santa Claus’ sleigh are visible. A policeman is walking around the field to savour the Christmas spirit and suddenly discovers a small booklet. It is Santa Claus’ list with no less than a complete list of all transgressions of everyone on the planet. The policeman immediately recognises the potential power of such a list. In the back of the booklet is Santa Claus’ address. Motion: THW destroy the list." + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Nikolausturnier", + "Round": "Open_Final", + "Motion": "THW introduce a 30-hour work week" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Schroeter Cup", + "Round": 1, + "Motion": "THW set one common minimum wage" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Schroeter Cup", + "Round": 2, + "Motion": "THW ban circumcision of minors" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Schroeter Cup", + "Round": 3, + "Motion": "THW ban pornography and would make it taboo (verb tabuisieren)" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Schroeter Cup", + "Round": 4, + "Motion": "THW only allow European firms to sell weapons in the EU" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "Schroeter Cup", + "Round": "Open_Final", + "Motion": "THW create a film rating for movies that do not pass the Bechdel-Test" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 1, + "Motion": "THW introduce a sin tax on all meat products" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 2, + "Motion": "THBT governments should not provide rebuilding funds to citizens above the poverty line in known natural disaster areas" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 3, + "Motion": "THW establish an easily performed procedure for individuals to delete the entirety of their internet and social media footprint" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 4, + "Motion": "TH supports the Ukrainian government’s decision to make a trade deal with Russia rather than seek integration with the EU" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 5, + "Motion": "THW return all ill-gotten artworks and valuable historical artefacts to the communities of their origin" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Novice_Final", + "Motion": "THW not give jail time to criminals who do not pose an ongoing violent threat to society" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Semis", + "Motion": "THBT violent protest is a legitimate strategy in democratic societies" + }, + { + "Date": "2013-11-30T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Final", + "Motion": "TH support unlimited human body enhancement in all areas of life" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "Cork IV", + "Round": 1, + "Motion": "THBT once artists earn enough to constitute a comfortable wage, they have a duty to make their work freely available" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "Cork IV", + "Round": 2, + "Motion": "THBT Libya should repeal its ban on senior members of the Gaddaffi Regime (military and civil) from holding positions in government" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "Cork IV", + "Round": 3, + "Motion": "THW force violent offenders to undergo the Ludovico technique" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "Cork IV", + "Round": 4, + "Motion": "THBT developing countries should use policies such as permits to restrict rural to urban migration" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "Cork IV", + "Round": 5, + "Motion": "THW allow Pro-Life organisations to pay women currently considering having an abortion to carry the pregnancy to term" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "Cork IV", + "Round": "Open_Semis", + "Motion": "TH supports the actions of Anonymous and other such vigilante groups" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "Cork IV", + "Round": "Open_Final", + "Motion": "Assuming you would not be found out, in the event of a terrorist attack on US soil, committed by Islamist extremists THW fabricate evidence that attack was committed by dominant ethnic and socio-economic group, e.g. white Anglo-Saxons" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "IDAS Tournament", + "Round": 1, + "Motion": "THW impose a tax on men to reduce the gender pay gap" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "IDAS Tournament", + "Round": 2, + "Motion": "THBT EU nations should stop cooperating with the USA on intelligence matters" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "IDAS Tournament", + "Round": 3, + "Motion": "THW not watch pornography" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "IDAS Tournament", + "Round": 4, + "Motion": "THW pay reparations to European Roma" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "IDAS Tournament", + "Round": 5, + "Motion": "THBT all corporations should become cooperatives owned and operated by the workers" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "IDAS Tournament", + "Round": 6, + "Motion": "THB the dead are the property of the state" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "IDAS Tournament", + "Round": "Open_Quarters", + "Motion": "THW not tax \"bitcoin\" transactions" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "IDAS Tournament", + "Round": "Open_Semis", + "Motion": "THW apply universal jurisdiction to crimes against the environment" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "IDAS Tournament", + "Round": "Open_Final", + "Motion": "THB that the recent Geneva agreement with Iran will fail" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "Iron Man tournament", + "Round": 1, + "Motion": "THBT our legal system should neither regulate nor judge behaviour that takes place solely in virtual online worlds like “Second Life” and leave the making of rules to their manufacturers" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "Iron Man tournament", + "Round": 2, + "Motion": "THBT China should prioritise social justice over economic growth" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "Iron Man tournament", + "Round": 3, + "Motion": "THW allow businesses to pay employees who agree not to have children more in wages" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "Iron Man tournament", + "Round": 4, + "Motion": "THW allow sodomie (intercourse with animals)" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "Iron Man tournament", + "Round": "Open_Final", + "Motion": "A ship sinks at the high seas. Three sailors and the cabin boy survive in a lifeboat. There is no land in sight and the men are exhausted. To stay alive, the sailors kill and eat the cabin boy against his will. Days later, the lifeboat is found and brought to land. The sailors survived thanks to the reinforcement brought by eating the cabin boy. The authorities hear of the tale and the sailors are brought before a court where a jury will give a verdict. Motion: TH, as the jury, would vote against a conviction" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "UCU Open", + "Round": 1, + "Motion": "THW, assuming it were feasible to enforce, support a global inheritance tax of 100% on all cash and assets beyond the first €5000 (and substantial taxes on high-value gifts during one's lifetime)" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "UCU Open", + "Round": 2, + "Motion": "THBT the citizens of countries under military occupation of a western liberal democracy should be granted the right to vote in the elections of that occupying state!" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "UCU Open", + "Round": 3, + "Motion": "THW give men more paid parental leave than women and force them to take it" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "UCU Open", + "Round": 4, + "Motion": "THW allow people (including companies) to give the police money in exchange for new or increased efforts in a specified area of legitimate law enforcement" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "UCU Open", + "Round": 5, + "Motion": "THW place a sin tax to low-brow entertainment in order to subsidize high-brow art" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "UCU Open", + "Round": "Open_Semis", + "Motion": "THW appoint a group of relevant charities (e.g. Environmental charities) to cast votes in general elections on behalf of future citizens" + }, + { + "Date": "2013-11-29T00:00:00", + "Tournament": "UCU Open", + "Round": "Open_Final", + "Motion": "You are a dutch person. THBT you should campaign against Zwarte Piet and should routinely condemn it as a racist institution" + }, + { + "Date": "2013-11-28T00:00:00", + "Tournament": "Cork Invitational", + "Round": 1, + "Motion": "THBT foreign visitors to Islamic countries should dress and act according to local sensibilities in public even if not obliged to by law" + }, + { + "Date": "2013-11-28T00:00:00", + "Tournament": "Cork Invitational", + "Round": 2, + "Motion": "THW never allow prisons to force-feed detainees on hunger strike" + }, + { + "Date": "2013-11-28T00:00:00", + "Tournament": "Cork Invitational", + "Round": 3, + "Motion": "TH supports targeted advertising based on gender" + }, + { + "Date": "2013-11-28T00:00:00", + "Tournament": "Cork Invitational", + "Round": "Open_Final", + "Motion": "THBT suicide bombing is a legitimate tactic of warfare" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Cicero Toernooi", + "Round": 1, + "Motion": "THW remove all restrictions on euthanasia (such as “hopeless and unbearable” suffering)" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Cicero Toernooi", + "Round": 2, + "Motion": "THW abolish the right to remain silent (verschoningsrecht) for clergy" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Cicero Toernooi", + "Round": 3, + "Motion": "THW impose strong political and economic sanctions on tax havens" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Cicero Toernooi", + "Round": 4, + "Motion": "TH, as parents, would raise its children non-gendered" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Cicero Toernooi", + "Round": 5, + "Motion": "THW, as the US, continue to gather information about non-citizens on a large scale" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Cicero Toernooi", + "Round": "ProAm_Final", + "Motion": "THW not admit immigrants who actively (strongly?) oppose the norms of the host society" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Cicero Toernooi", + "Round": "Open_Semis", + "Motion": "THW replace all income taxes with consumption taxes that become proportionally higher as the purchased goods become less essential" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Cicero Toernooi", + "Round": "Open_Final", + "Motion": "TH would create a substantial salary for those who take on caretaker roles for family, friends or neighbours (DK vervangt het mantelzorgcompliment door een substantieel salaris)" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 1, + "Motion": "THW ban the advertising of financial products that entail an obligation of consumer debt" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 2, + "Motion": "THBT domestically, Margaret Thatcher’s premiership did more harm than good" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 3, + "Motion": "THW allow pro-immigration charities to sue politicians and media outlets that defame ’immigrants’" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 4, + "Motion": "THW tax earnings over £1million by 75% but allow individuals to decide how the government spends the additional revenue generated by this income" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": "Open_Semis", + "Motion": "TH welcomes the decline of US-led humanitarian interventions without international consensus" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": "Open_Final", + "Motion": "THBT all main political parties should implement a cross party political scheme to use all-women shortlists to get more women into parliament until gender parity is reached" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Tübingen Herbst Debatten", + "Round": 1, + "Motion": "Should private kindergartens and schools be abolished?" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Tübingen Herbst Debatten", + "Round": 2, + "Motion": "Should participants in the Olympics be allowed to publicly express their political opinions?" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Tübingen Herbst Debatten", + "Round": 3, + "Motion": "Should the morning after pill be available without doctor’s recipe?" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Tübingen Herbst Debatten", + "Round": "Open_Final", + "Motion": "Should Edward Snowden get asylum in Germany?" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Yorkshire Novices", + "Round": 1, + "Motion": "THBT it is legitimate for environmental campaign groups to use ecoterrorism to achieve their goals" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Yorkshire Novices", + "Round": 2, + "Motion": "TH regrets the annual commemoration of past wars" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Yorkshire Novices", + "Round": 3, + "Motion": "THW implement total surveillance" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Yorkshire Novices", + "Round": 4, + "Motion": "THBT artists, entertainers, and musicians should not comment on politics outside of their artistic creations" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Yorkshire Novices", + "Round": "Open_Semis", + "Motion": "THBT Western liberal democracies have a duty to militarily intervene in conflicts where large scale human rights abuses are occurring" + }, + { + "Date": "2013-11-23T00:00:00", + "Tournament": "Yorkshire Novices", + "Round": "Open_Final", + "Motion": "THW fabricate and publicise evidence that high ranking religious figures that claim homosexuality to be a sin engage in homosexual acts" + }, + { + "Date": "2013-11-22T00:00:00", + "Tournament": "Zeit Debatte Frankfurt", + "Round": 1, + "Motion": "THW make purchasing sexual services punishable by law. Info: Adults over 18 are allowed to prostitute themselves, get social security and sue for compensations. Bans can be imposed against prostitution in specific areas or at specific times. Pimping is not illegal as long as the work environment offered is suitable and the prostitute is not exploited" + }, + { + "Date": "2013-11-22T00:00:00", + "Tournament": "Zeit Debatte Frankfurt", + "Round": 2, + "Motion": "THBT religion is redundant." + }, + { + "Date": "2013-11-22T00:00:00", + "Tournament": "Zeit Debatte Frankfurt", + "Round": 3, + "Motion": "THW return artworks stolen or expropriated by the Nazis, without regard to property rights, laws and statutes of limitation that might block such a return (info and here)" + }, + { + "Date": "2013-11-22T00:00:00", + "Tournament": "Zeit Debatte Frankfurt", + "Round": 4, + "Motion": "THW go on a treasure hunt" + }, + { + "Date": "2013-11-22T00:00:00", + "Tournament": "Zeit Debatte Frankfurt", + "Round": 5, + "Motion": "THW ban temp agency contracting (Leiharbeit, Arbeitnehmerüberlassung, Zeitarbeit, Mitarbeiterüberlassung oder Personalleasing)" + }, + { + "Date": "2013-11-22T00:00:00", + "Tournament": "Zeit Debatte Frankfurt", + "Round": "Open_Semis", + "Motion": "THW spread asylum seekers over EU countries on the basis of their relative population sizes" + }, + { + "Date": "2013-11-22T00:00:00", + "Tournament": "Zeit Debatte Frankfurt", + "Round": "Open_Final", + "Motion": "THW abolish the federalist system in Germany" + }, + { + "Date": "2013-11-20T00:00:00", + "Tournament": "Canadian BP Championships (@ McMaster University)", + "Round": 1, + "Motion": "THW implement a lower rate of income tax for women." + }, + { + "Date": "2013-11-20T00:00:00", + "Tournament": "Canadian BP Championships (@ McMaster University)", + "Round": 2, + "Motion": "THW make it a criminal offence to materially and substnatially enable the substance abuse problems of an addict." + }, + { + "Date": "2013-11-20T00:00:00", + "Tournament": "Canadian BP Championships (@ McMaster University)", + "Round": 3, + "Motion": "THBT Canada should have boycotted the Commonwealth meeting in Sri Lanka." + }, + { + "Date": "2013-11-20T00:00:00", + "Tournament": "Canadian BP Championships (@ McMaster University)", + "Round": 4, + "Motion": "THO prenatal testing for mental disabilities." + }, + { + "Date": "2013-11-20T00:00:00", + "Tournament": "Canadian BP Championships (@ McMaster University)", + "Round": 5, + "Motion": "THBT Walmart is good for America." + }, + { + "Date": "2013-11-20T00:00:00", + "Tournament": "Canadian BP Championships (@ McMaster University)", + "Round": "Tiebreaker_Top", + "Motion": "THW enact good Samaritan laws." + }, + { + "Date": "2013-11-20T00:00:00", + "Tournament": "Canadian BP Championships (@ McMaster University)", + "Round": "Open_Semis", + "Motion": "THBT the ICC should not have pursued any charges related to the 2006 post-election violence in Kenya." + }, + { + "Date": "2013-11-20T00:00:00", + "Tournament": "Canadian BP Championships (@ McMaster University)", + "Round": "Open_Novice finals", + "Motion": "TH regrets the fat pride movement." + }, + { + "Date": "2013-11-16T00:00:00", + "Tournament": "Schwarzwald Cup", + "Round": 1, + "Motion": "THW ban all polls (predicting election results)" + }, + { + "Date": "2013-11-16T00:00:00", + "Tournament": "Schwarzwald Cup", + "Round": 2, + "Motion": "TH rejects any policy that punishes families for having more than one child" + }, + { + "Date": "2013-11-16T00:00:00", + "Tournament": "Schwarzwald Cup", + "Round": 3, + "Motion": "THW subsidise sex workers visits for severely handicapped persons" + }, + { + "Date": "2013-11-16T00:00:00", + "Tournament": "Schwarzwald Cup", + "Round": 4, + "Motion": "THW always execute those sentenced to death publicly" + }, + { + "Date": "2013-11-16T00:00:00", + "Tournament": "Schwarzwald Cup", + "Round": "Open_Semis", + "Motion": "As a homosexual person in a very homophobic country, THW emigrate" + }, + { + "Date": "2013-11-16T00:00:00", + "Tournament": "Schwarzwald Cup", + "Round": "Open_Final", + "Motion": "THBT too many high school graduates study (go on to university)" + }, + { + "Date": "2013-11-15T00:00:00", + "Tournament": "Bogwall", + "Round": 1, + "Motion": "THBT the (same-sex couples) Marriage Bill 2013 should remove the right of religious institutions to refuse to perform same-sex marriages" + }, + { + "Date": "2013-11-15T00:00:00", + "Tournament": "Bogwall", + "Round": 2, + "Motion": "THBT past colonial empires should pay reparations to their former colonies who are still classed as developing" + }, + { + "Date": "2013-11-15T00:00:00", + "Tournament": "Bogwall", + "Round": 3, + "Motion": "THBT feminist political activists should form a separate political party based on feminist ideology, rather than joining existing parties" + }, + { + "Date": "2013-11-15T00:00:00", + "Tournament": "Bogwall", + "Round": 4, + "Motion": "THW Pay Additional Benefits to Families on Welfare Whose Children are Excelling in School" + }, + { + "Date": "2013-11-15T00:00:00", + "Tournament": "Bogwall", + "Round": "Open_Semis", + "Motion": "THBT America should refuse to engage with any attempts to end cyber warfare" + }, + { + "Date": "2013-11-15T00:00:00", + "Tournament": "Bogwall", + "Round": "Open_Final", + "Motion": "TH, as Sherlock Holmes, Would accept the henchman’s offer." + }, + { + "Date": "2013-11-15T00:00:00", + "Tournament": "Cambridge IV", + "Round": 1, + "Motion": "THW give primates and cetaceans the same rights to life, freedom from physical harm and freedom of movement as humans." + }, + { + "Date": "2013-11-15T00:00:00", + "Tournament": "Cambridge IV", + "Round": 2, + "Motion": "THBT developed countries should set maximum rents for residential properties in large urban centres." + }, + { + "Date": "2013-11-15T00:00:00", + "Tournament": "Cambridge IV", + "Round": 3, + "Motion": "THBT despite the expressed wishes of the Pakistani government, the United States should continue to target the leaders of Tehrik-i-Talibani (Pakistani Taliban)." + }, + { + "Date": "2013-11-15T00:00:00", + "Tournament": "Cambridge IV", + "Round": 4, + "Motion": "THW break up banks like Goldman Sachs, JP Morgan Chase and HSBC, that are deemed \"too big to fail\"." + }, + { + "Date": "2013-11-15T00:00:00", + "Tournament": "Cambridge IV", + "Round": 5, + "Motion": "THW ban religious charities from engaging in proselytisation." + }, + { + "Date": "2013-11-15T00:00:00", + "Tournament": "Cambridge IV", + "Round": "ESL_Semis", + "Motion": "THW prevent those who deny climate change from seeking political office." + }, + { + "Date": "2013-11-15T00:00:00", + "Tournament": "Cambridge IV", + "Round": "ESL_Finals", + "Motion": "THBT it should be the policy of the US to conduct all of its military interventions unilaterally." + }, + { + "Date": "2013-11-15T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Quarters", + "Motion": "THBT the Republican and Democratic parties should select congressional, senate and presidential candidates through a vote by the party leadership rather than through primaries." + }, + { + "Date": "2013-11-15T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Semis", + "Motion": "Instead of creating a Jewish state in the British Mandate of Palestine, with the benefit of hindsight THW have created a Jewish state in Germany." + }, + { + "Date": "2013-11-15T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Finals", + "Motion": "THBT it is in the West's interests for Assad to decisively win the Syrian civil war." + }, + { + "Date": "2013-11-10T00:00:00", + "Tournament": "Oxford IV", + "Round": 1, + "Motion": "THW provide mobile teachers for the compulsory education of children in travelling communities (e.g. Roma and Irish travellers)" + }, + { + "Date": "2013-11-10T00:00:00", + "Tournament": "Oxford IV", + "Round": 2, + "Motion": "THBT developing countries should collectivelly agree to radically redistributive tax policies." + }, + { + "Date": "2013-11-10T00:00:00", + "Tournament": "Oxford IV", + "Round": 3, + "Motion": "THW ban the gender testing of athletes in sports." + }, + { + "Date": "2013-11-10T00:00:00", + "Tournament": "Oxford IV", + "Round": 4, + "Motion": "THW require major polluters to open their borders to environmental refugees." + }, + { + "Date": "2013-11-10T00:00:00", + "Tournament": "Oxford IV", + "Round": 5, + "Motion": "THBT national war memorials should commemorate the casualties on all sides of the conflict." + }, + { + "Date": "2013-11-10T00:00:00", + "Tournament": "Oxford IV", + "Round": "ESL_Semis", + "Motion": "THBT political parties should adopt non-hierarchical organisational structures." + }, + { + "Date": "2013-11-10T00:00:00", + "Tournament": "Oxford IV", + "Round": "ESL_Finals", + "Motion": "THBT liberal democracies should cut all economic and military ties with the Kingdom of Saudi Arabia." + }, + { + "Date": "2013-11-10T00:00:00", + "Tournament": "Oxford IV", + "Round": "Novice_Finals", + "Motion": "THBT when courts sentence offenders, they should give considerable weight to the views of the victims." + }, + { + "Date": "2013-11-10T00:00:00", + "Tournament": "Oxford IV", + "Round": "Open_Quarters", + "Motion": "THW, as a liberal democracy, restrict coverage of small-scale terrorist attacks." + }, + { + "Date": "2013-11-10T00:00:00", + "Tournament": "Oxford IV", + "Round": "Open_Semis", + "Motion": "THBT identity-based social movements should not include in their movements allies who are not part of the identity group in question." + }, + { + "Date": "2013-11-10T00:00:00", + "Tournament": "Oxford IV", + "Round": "Open_Finals", + "Motion": "THBT the US should dissolve its military capabilities." + }, + { + "Date": "2013-11-09T00:00:00", + "Tournament": "UK Debate Challenge", + "Round": 1, + "Motion": "THBT feminists should oppose restrictions on the wearing of the burkha and the hijab" + }, + { + "Date": "2013-11-09T00:00:00", + "Tournament": "UK Debate Challenge", + "Round": 2, + "Motion": "THW remove all non-military sanctions on Iran" + }, + { + "Date": "2013-11-09T00:00:00", + "Tournament": "UK Debate Challenge", + "Round": 3, + "Motion": "TH regrets the portrayal of the developing world in the fundraising campaigns of charitable organisations" + }, + { + "Date": "2013-11-09T00:00:00", + "Tournament": "UK Debate Challenge", + "Round": 4, + "Motion": "THBT state schools should instil in children the belief that anyone can succeed through hard work, regardless of their background" + }, + { + "Date": "2013-11-09T00:00:00", + "Tournament": "UK Debate Challenge", + "Round": 5, + "Motion": "THBT artists from dominant cultural majorities should not seek to portray minority cultures" + }, + { + "Date": "2013-11-09T00:00:00", + "Tournament": "UK Debate Challenge", + "Round": "Novice_Final", + "Motion": "You are a government employee who has found evidence that your state is carrying out actions you personally believe to be gravely immoral. You have no cause to believe these actions are illegal. Motion: THW leak the evidence directly to the press" + }, + { + "Date": "2013-11-09T00:00:00", + "Tournament": "UK Debate Challenge", + "Round": "Open_Semis", + "Motion": "THW abolish private property" + }, + { + "Date": "2013-11-09T00:00:00", + "Tournament": "UK Debate Challenge", + "Round": "Open_Final", + "Motion": "THBT The US should end the War on Terror" + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Debatijada Open", + "Round": 1, + "Motion": "THBT parents should not tell their adopted children that they are adopted" + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Debatijada Open", + "Round": 2, + "Motion": "THBT every student living in the EU should spend one year studying in the country other than the one he or she is born or is a national of." + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Debatijada Open", + "Round": 3, + "Motion": "THW show only movies that pass the bechdel test (with info)" + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Debatijada Open", + "Round": 4, + "Motion": "THBT animal suffering should not be an obstacle for satisfying societal needs." + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Debatijada Open", + "Round": "Open_Final", + "Motion": "THW ban political parties that use ethnicity as basis for their political agenda" + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": 1, + "Motion": "THW legalize all drugs." + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": 2, + "Motion": "THBT it is an acceptably policy for the U.S. to spy on leaders of allied states." + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": 3, + "Motion": "THBT the LGBT movement should oppose gay bars that ban entrance to straight customers." + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": 4, + "Motion": "THBT the world should focus on adapting to the effects of climate change instead of trying to avert it." + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": 5, + "Motion": "TH regrets the creation of the Eurozone." + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": "Novice_Finals", + "Motion": "THW prevent people from signing up for a one-way mission to Mars." + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": "Open_Partial_Quarters", + "Motion": "THW ban cosmetic surgery designed to alter one's racial appearance." + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": "Open_Semis", + "Motion": "THBT the state should aggressively discourage university attendance and promote college." + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Guindon Cup (University of Ottawa)", + "Round": "Open_Finals", + "Motion": "THBT a person of super genius intelligence should transform themselves into someone of average intelligence." + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Vienna Freshers", + "Round": 1, + "Motion": "THW not publicly fund universities" + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Vienna Freshers", + "Round": 2, + "Motion": "THBT individuals with bad personal lifestyles (that influence their health) should pay more for their health insurance" + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Vienna Freshers", + "Round": 3, + "Motion": "In the European Union, asylum seekers can only apply for asylum in the country they first enter. They cannot reapply nor be reallocated to another EU country. Motion: THBT the EU should divide up asylum seekers amongst its member states proportional to member states' GDP per cap" + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Vienna Freshers", + "Round": 4, + "Motion": "THBT women activists in Saudi Arabia should not drive cars in their protest against the ban" + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Vienna Freshers", + "Round": "Open_Semis", + "Motion": "THBT individuals should pass a parenting test before having children" + }, + { + "Date": "2013-11-08T00:00:00", + "Tournament": "Vienna Freshers", + "Round": "Open_Final", + "Motion": "TH supports the US continuing its surveillance practices on global political leaders" + }, + { + "Date": "2013-11-02T00:00:00", + "Tournament": "Durham IV", + "Round": 1, + "Motion": "THBT in criminal court cases the jury should be comprised of individuals from the same racial and socio-economic background as the defendant" + }, + { + "Date": "2013-11-02T00:00:00", + "Tournament": "Durham IV", + "Round": 2, + "Motion": "THW give the public the power to pardon whistleblowers through a referendum" + }, + { + "Date": "2013-11-02T00:00:00", + "Tournament": "Durham IV", + "Round": 3, + "Motion": "THBT that the International Criminal Court should not issue indictments against individuals involved in ongoing conflicts" + }, + { + "Date": "2013-11-02T00:00:00", + "Tournament": "Durham IV", + "Round": 4, + "Motion": "THW not allow individuals to opt into a one-way mission to Mars with the Mars One Project." + }, + { + "Date": "2013-11-02T00:00:00", + "Tournament": "Durham IV", + "Round": 5, + "Motion": "THBT energy security is a legitimate reason for military action" + }, + { + "Date": "2013-11-02T00:00:00", + "Tournament": "Durham IV", + "Round": "Novice_Final", + "Motion": "THW hold parents criminally liable for the repeat offences of their children" + }, + { + "Date": "2013-11-02T00:00:00", + "Tournament": "Durham IV", + "Round": "Open_Semis", + "Motion": "THW pay drug addicts to be permanently sterilised" + }, + { + "Date": "2013-11-02T00:00:00", + "Tournament": "Durham IV", + "Round": "Open_Final", + "Motion": "TH regrets the creation of a moral and legal distinction between the use of chemical weapons and conventional weapons" + }, + { + "Date": "2013-11-02T00:00:00", + "Tournament": "Welsh Novices", + "Round": 1, + "Motion": "THW Legalise licensed brothels" + }, + { + "Date": "2013-11-02T00:00:00", + "Tournament": "Welsh Novices", + "Round": 2, + "Motion": "THW, as the EU, suspend the membership of any nation that elects extremist parties" + }, + { + "Date": "2013-11-02T00:00:00", + "Tournament": "Welsh Novices", + "Round": 3, + "Motion": "THW ban all resit exams" + }, + { + "Date": "2013-11-02T00:00:00", + "Tournament": "Welsh Novices", + "Round": 4, + "Motion": "The Russian state systematically oppresses its LGBTQI+ community: Homosexual couples can be prosecuted for displaying their sexuality and the police often refuse to prevent violence towards LGBTQI+ people. Motion: TH, as a heterosexual winter Olympian, would not attend the Sochi Winter Olympics" + }, + { + "Date": "2013-11-02T00:00:00", + "Tournament": "Welsh Novices", + "Round": "Open_Final", + "Motion": "THBT the police should have unrestricted access to the personal online data of everybody, including email, web history and private content on social media" + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": 1, + "Motion": "THS medical tourism." + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": 2, + "Motion": "THBT conscription should be a war crime." + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": 3, + "Motion": "THS the actions of the Gulabi gang." + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": 4, + "Motion": "THW not assign a sex to babies born with ambiguous genitalia." + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": 5, + "Motion": "THW abolist Canadian content requirements." + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": "Novice_Finals", + "Motion": "In states with persistent ethnic conflict, THB governments should censor works of historical fiction that portray oppressed minority groups in a negative way." + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": "Open_Semis", + "Motion": "THB the state should stop incentivizing monogamous relationships." + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "Chancellor's Cup (Queen's University)", + "Round": "Open_Finals", + "Motion": "In 1947, Otto Frank subimtted his daughter's diary for publication. Particularly personal passages wherein Anne discussed her emerging sexuality were removed from the original manuscript. The diary was later published in its complete form. THW not have published Anne Frank's unabridged diary." + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2013", + "Round": 1, + "Motion": "THW ban intl (cross border) commercial surrogacy" + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2013", + "Round": 2, + "Motion": "THW, as a parent of a young woman, advise her to drink responsibly to reduce the risk of them being sexually assaulted" + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2013", + "Round": 4, + "Motion": "That college athletes in the Us should be paid as professionals" + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2013", + "Round": 5, + "Motion": "THW only give funding to indigenous groups that are democratically organised." + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2013", + "Round": "Open_Semi", + "Motion": "This house would not prosecute individuals for pirating entertainment media for their own use" + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2013", + "Round": "Open_Final", + "Motion": "This house believes that the west should forgive debt owed by governments of developing countries" + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "SDA Open", + "Round": 1, + "Motion": "THBT same sex couples should be allowed to adopt children" + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "SDA Open", + "Round": 2, + "Motion": "THW ban smoking" + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "SDA Open", + "Round": 3, + "Motion": "THW resolve the Syrian refugee crisis" + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "SDA Open", + "Round": 4, + "Motion": "THB in the market economy" + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "SDA Open", + "Round": "Open_Quarters", + "Motion": "THW remove unemployment benefits" + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "SDA Open", + "Round": "Open_Semis", + "Motion": "THB in international military intervention in foreign countries" + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "SDA Open", + "Round": "Open_Final", + "Motion": "THB in the student protests" + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "UBC IV", + "Round": 1, + "Motion": "THW provide free heroin for heroin addicts" + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "UBC IV", + "Round": 2, + "Motion": "THW allow legislatures to override constitutional bills of rights." + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "UBC IV", + "Round": 3, + "Motion": "THBT the Palestininan authority should concede." + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "UBC IV", + "Round": 4, + "Motion": "THS austerity." + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "UBC IV", + "Round": 5, + "Motion": "THW pay developing countries to not exploit natural resources in environmentally sensitive regions." + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "UBC IV", + "Round": "Open_Semis", + "Motion": "THBT Greece should ban the Golden Dawn" + }, + { + "Date": "2013-11-01T00:00:00", + "Tournament": "UBC IV", + "Round": "Open_Finals", + "Motion": "THBT colonial powers should pay reparations for colonialism." + }, + { + "Date": "2013-10-27T00:00:00", + "Tournament": "SDA Novice Competition", + "Round": 1, + "Motion": "THW allow those convicted of non-violent, -sexual, -serious crimes to serve sentences in the military, rather than prison" + }, + { + "Date": "2013-10-27T00:00:00", + "Tournament": "SDA Novice Competition", + "Round": 2, + "Motion": "THBT Facebook and other social media should not host images off beheadings and acts of brutal violence on their sites" + }, + { + "Date": "2013-10-27T00:00:00", + "Tournament": "SDA Novice Competition", + "Round": 3, + "Motion": "THW prohibit tourism to countries with a poor record of protecting human rights" + }, + { + "Date": "2013-10-27T00:00:00", + "Tournament": "SDA Novice Competition", + "Round": 4, + "Motion": "TH regrets the existence of \"men in power\" or \"men’s rights\" groups" + }, + { + "Date": "2013-10-27T00:00:00", + "Tournament": "SDA Novice Competition", + "Round": "Open_Final", + "Motion": "THBT the beauty industry has done more harm than good" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Dutch Masters", + "Round": 1, + "Motion": "THBT governments should make children’s vaccinations obligatory" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Dutch Masters", + "Round": 2, + "Motion": "THBT former colonising countries should pay substantial reparations to the countries they colonised" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Dutch Masters", + "Round": 3, + "Motion": "THBT the state should financially incentivise higher-educated citizens to have children before their 25th birthday" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Dutch Masters", + "Round": "Open_Final", + "Motion": "THBT members of parliament should be appointed by lottery" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Imperial Open", + "Round": 1, + "Motion": "THW ban unpaid internships" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Imperial Open", + "Round": 2, + "Motion": "THW boycott the FIFA World Cup in Qatar" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Imperial Open", + "Round": 3, + "Motion": "TH, as the Roman Catholic Church, would excommunicate political leaders who fail to advocate nuclear disarmament" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Imperial Open", + "Round": 4, + "Motion": "THW construct brothels on military bases" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Imperial Open", + "Round": "Open_Final", + "Motion": "THB schools in the USA should teach rap lyrics as part of their core English literature curricula" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Middle Man tournament", + "Round": 1, + "Motion": "THW not allow players born outside of the state to play for the national teams of that state" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Middle Man tournament", + "Round": 2, + "Motion": "THW remove all sanctions against Iran" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Middle Man tournament", + "Round": 3, + "Motion": "Granted that technology exist, THW not use technology to get superpowers" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Middle Man tournament", + "Round": 4, + "Motion": "THW use public referendum to decide whether to give amnesty to whistleblowers" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Middle Man tournament", + "Round": 5, + "Motion": "THW only subsidise art that is understandable to average voter" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Middle Man tournament", + "Round": 6, + "Motion": "THBT its legitimate for women to use sex as a tool for advancing in life" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Middle Man tournament", + "Round": "Open_Semis", + "Motion": "The year is 1389, THW not go to Kosovo" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Middle Man tournament", + "Round": "Open_Final", + "Motion": "THBT revolution is inevitable" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "NAMDA Novice Cup", + "Round": 1, + "Motion": "In countries with a state alternative, THW ban private healthcare." + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "NAMDA Novice Cup", + "Round": 2, + "Motion": "THW replace income tax with a wealth tax." + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "NAMDA Novice Cup", + "Round": 3, + "Motion": "THW abolish all immigration restrictions other than those required for national security." + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "NAMDA Novice Cup", + "Round": 4, + "Motion": "THW ban the production and consumption of pornography." + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "NAMDA Novice Cup", + "Round": "Open_Semis", + "Motion": "THW make conscription a war crime." + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "NAMDA Novice Cup", + "Round": "Open_Final", + "Motion": "THW ban the slaughter and consumption of non-human animals" + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Strathclyde Presidents Cup", + "Round": 1, + "Motion": "THBT party nominees for UK general elections should be selected through open primaries." + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Strathclyde Presidents Cup", + "Round": 2, + "Motion": "THBT the feminist movement should support monogamy." + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Strathclyde Presidents Cup", + "Round": 3, + "Motion": "TH: supports the integration of armed rebel groups into the DRC army." + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Strathclyde Presidents Cup", + "Round": 4, + "Motion": "THBT the entire UK housing stock should be owned by the state." + }, + { + "Date": "2013-10-26T00:00:00", + "Tournament": "Strathclyde Presidents Cup", + "Round": "Open_Final", + "Motion": "TH: as Nick Clegg (with the benefit of hindsight) would not have joined a coalition with the Conservatives in 2010." + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": 1, + "Motion": "THW make casinos and bookmakers liable for the debt of problem gamblers." + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": 2, + "Motion": "THW Allow prisoners to run for elected office." + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": 3, + "Motion": "This House would force the media to display, promote and report women’s sport equally to men’s sport." + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": 4, + "Motion": "THBT the government should assist physically healthy people in the act of committing suicide." + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": 5, + "Motion": "THBT Western governments should renounce democratization of developing states as a foreign policy objective." + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": "Open_Semis", + "Motion": "THBT, on balance, the internet has been harmful to journalism." + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "McMaster Pro-Am", + "Round": "Open_Finals", + "Motion": "THW allow violent offenders to opt in, at a judges discretion, to the Ludovico technique as a substitution for jail time" + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "Turku Open", + "Round": 1, + "Motion": "THW make welfare payments conditional on recipients engaging in full-time community service" + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "Turku Open", + "Round": 2, + "Motion": "THW forcibly remove the children of Roma parents who refuse to integrate" + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "Turku Open", + "Round": 3, + "Motion": "THBT professional football clubs should be forced to field the majority of players from their local community" + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "Turku Open", + "Round": 4, + "Motion": "THBT Syria would be better off if Assad won the civil war" + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "Turku Open", + "Round": 5, + "Motion": "THW replace parliamentary elections with a lottery system" + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "Turku Open", + "Round": "Open_Semis", + "Motion": "THBT the Spanish Central Government should allow Catalonia a referendum for independence" + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "Turku Open", + "Round": "Open_Final", + "Motion": "TH supports the falsification of historical textbooks in order to teach moral outcomes" + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "UCD Vice President’s Cup", + "Round": 1, + "Motion": "THW, assuming it was technologically possible, replace all human soldiers on the battlefield with robots" + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "UCD Vice President’s Cup", + "Round": 2, + "Motion": "THW create quotas for male workers in female-dominated professions such as teaching and nursing" + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "UCD Vice President’s Cup", + "Round": 3, + "Motion": "THBT that the EU should impose sanctions on Hungary if the Jobbik party takes office after the upcoming national election." + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "UCD Vice President’s Cup", + "Round": 4, + "Motion": "THW support the use of violent protest" + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "UCD Vice President’s Cup", + "Round": 5, + "Motion": "THBT the Black rights movement should promote black superiority." + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "UCD Vice President’s Cup", + "Round": "Open_Semis", + "Motion": "TH, as the ICC, would never bring cases against incumbent heads of states." + }, + { + "Date": "2013-10-25T00:00:00", + "Tournament": "UCD Vice President’s Cup", + "Round": "Open_Final", + "Motion": "THW ban all religions from actively seeking to convert non-believers" + }, + { + "Date": "2013-10-24T00:00:00", + "Tournament": "UCD Novice Cup", + "Round": 1, + "Motion": "THW only imprison criminals who pose a continuing threat to society" + }, + { + "Date": "2013-10-24T00:00:00", + "Tournament": "UCD Novice Cup", + "Round": 2, + "Motion": "THW boycott the 2014 Sochi Winter Olympics" + }, + { + "Date": "2013-10-24T00:00:00", + "Tournament": "UCD Novice Cup", + "Round": 3, + "Motion": "THB the state should fund free access to museums, art exhibitions and other cultural attractions for social welfare recipients" + }, + { + "Date": "2013-10-24T00:00:00", + "Tournament": "UCD Novice Cup", + "Round": "Open_Semis", + "Motion": "THBT countries should ensure that their militaries are roughly proportionally representative of the diversity of religion, income & race of their populations and that they should, where necessary, use conscription to achieve this" + }, + { + "Date": "2013-10-24T00:00:00", + "Tournament": "UCD Novice Cup", + "Round": "Open_Final", + "Motion": "THBT Rolling Stone should not have portrayed Dzhokhar Tsarnaev in a sympathetic manner" + }, + { + "Date": "2013-10-19T00:00:00", + "Tournament": "Simpsons Open", + "Round": 1, + "Motion": "THB there are no good wars with the following exceptions: the American Revolution, World War 2 and the Star Wars Trilogy." + }, + { + "Date": "2013-10-19T00:00:00", + "Tournament": "Simpsons Open", + "Round": 2, + "Motion": "TH, deep down, secretly longs for a cold hearted Republican to lower taxes, brutalise criminals and rule you like a king." + }, + { + "Date": "2013-10-19T00:00:00", + "Tournament": "Simpsons Open", + "Round": 3, + "Motion": "THBT it can trust the President of Cuba." + }, + { + "Date": "2013-10-19T00:00:00", + "Tournament": "Simpsons Open", + "Round": 4, + "Motion": "THBT God has no place within these walls - just like facts have no place within organised religion." + }, + { + "Date": "2013-10-19T00:00:00", + "Tournament": "Simpsons Open", + "Round": "Open_Final", + "Motion": "TH can't seriously want to ban alcohol. It tastes great, makes women appear more attractive and makes a person virtually invulnerable to alcohol." + }, + { + "Date": "2013-10-19T00:00:00", + "Tournament": "SOAS IV", + "Round": 1, + "Motion": "THW ban anyone with a criminal record worth 2+ years in prison from running for political office" + }, + { + "Date": "2013-10-19T00:00:00", + "Tournament": "SOAS IV", + "Round": 2, + "Motion": "THBT city-states are a better political unit than nation-states" + }, + { + "Date": "2013-10-19T00:00:00", + "Tournament": "SOAS IV", + "Round": 3, + "Motion": "THW ban conversion therapy to \"cure\" homosexuality (assuming the therapy has a 10% chance of success)" + }, + { + "Date": "2013-10-19T00:00:00", + "Tournament": "SOAS IV", + "Round": 4, + "Motion": "THBT no further research should be done on the creation of Lethal Autonomous Robots" + }, + { + "Date": "2013-10-19T00:00:00", + "Tournament": "SOAS IV", + "Round": 5, + "Motion": "THBT copyright should expire on the death of the author/artist" + }, + { + "Date": "2013-10-19T00:00:00", + "Tournament": "SOAS IV", + "Round": "ESL_Final", + "Motion": "THBT the European Union should prioritise unemployment over further austerity measures" + }, + { + "Date": "2013-10-19T00:00:00", + "Tournament": "SOAS IV", + "Round": "Open_Quarters", + "Motion": "TH, as Malala, would kill him" + }, + { + "Date": "2013-10-19T00:00:00", + "Tournament": "SOAS IV", + "Round": "Open_Semis", + "Motion": "TH supports the reclamation of the word “slut”" + }, + { + "Date": "2013-10-19T00:00:00", + "Tournament": "SOAS IV", + "Round": "Open_Final", + "Motion": "THBT it is legitimate to kill civilians to reach military objectives" + }, + { + "Date": "2013-10-12T00:00:00", + "Tournament": "Open de Debates de Lisboa", + "Round": 1, + "Motion": "THW close the military academy" + }, + { + "Date": "2013-10-12T00:00:00", + "Tournament": "Open de Debates de Lisboa", + "Round": 2, + "Motion": "THBT it is better for Egypt to get secular authoritarian leadership than a democratic government" + }, + { + "Date": "2013-10-12T00:00:00", + "Tournament": "Open de Debates de Lisboa", + "Round": 3, + "Motion": "TH, being a single woman, would sleep with their boss if they knew it would lead to a career rise" + }, + { + "Date": "2013-10-12T00:00:00", + "Tournament": "Open de Debates de Lisboa", + "Round": 4, + "Motion": "TH regrets the Portuguese decolonisation" + }, + { + "Date": "2013-10-12T00:00:00", + "Tournament": "Open de Debates de Lisboa", + "Round": "Open_Final", + "Motion": "In light of the right to representative democracy, TH defends the fact that independent candidates compete" + }, + { + "Date": "2013-10-12T00:00:00", + "Tournament": "US National Open", + "Round": 1, + "Motion": "THW bail out Detroit." + }, + { + "Date": "2013-10-12T00:00:00", + "Tournament": "US National Open", + "Round": 2, + "Motion": "THS the force feeding of incarcerated hunger strikers." + }, + { + "Date": "2013-10-12T00:00:00", + "Tournament": "US National Open", + "Round": 3, + "Motion": "THW eliminate adoption preference based on race and ethnicity." + }, + { + "Date": "2013-10-12T00:00:00", + "Tournament": "US National Open", + "Round": 4, + "Motion": "THBT the government should not promote home ownership." + }, + { + "Date": "2013-10-12T00:00:00", + "Tournament": "US National Open", + "Round": 5, + "Motion": "THBT US elected officials should not be subject to recall elections." + }, + { + "Date": "2013-10-12T00:00:00", + "Tournament": "US National Open", + "Round": 6, + "Motion": "THBT individuals displaced by a conflict should have a right to emigrate to any country." + }, + { + "Date": "2013-10-12T00:00:00", + "Tournament": "US National Open", + "Round": 7, + "Motion": "THBT individuals should not be permitted to represent themselves at trial." + }, + { + "Date": "2013-10-12T00:00:00", + "Tournament": "US National Open", + "Round": 8, + "Motion": "THBT governments should establish methods to provide unconditional cash transfers to the poor." + }, + { + "Date": "2013-10-12T00:00:00", + "Tournament": "US National Open", + "Round": "Open_Semis", + "Motion": "THBT jury trials do more harm than good." + }, + { + "Date": "2013-10-12T00:00:00", + "Tournament": "US National Open", + "Round": "Open_Finals", + "Motion": "THW eliminate inheritance." + }, + { + "Date": "2013-10-11T00:00:00", + "Tournament": "EBS Open", + "Round": 1, + "Motion": "THW make EU voting compulsory." + }, + { + "Date": "2013-10-11T00:00:00", + "Tournament": "EBS Open", + "Round": 2, + "Motion": "You are a 19 year old boy who just finished his Abitur. As this boy, THW join the Bundeswehr" + }, + { + "Date": "2013-10-11T00:00:00", + "Tournament": "EBS Open", + "Round": 3, + "Motion": "THW ban private Universities." + }, + { + "Date": "2013-10-11T00:00:00", + "Tournament": "EBS Open", + "Round": 4, + "Motion": "THW grant all ethnic Germans a full right of return" + }, + { + "Date": "2013-10-11T00:00:00", + "Tournament": "EBS Open", + "Round": "Open_Final", + "Motion": "THW place pictures of poverty on all luxury goods" + }, + { + "Date": "2013-10-11T00:00:00", + "Tournament": "Roosevelt Academy Open", + "Round": 1, + "Motion": "THW no longer arrest or prosecute individual members of drug gangs operating in highly violent areas if gang leaders agree to halt all turf wars" + }, + { + "Date": "2013-10-11T00:00:00", + "Tournament": "Roosevelt Academy Open", + "Round": 2, + "Motion": "THW suspend all regulation regarding environmental protection laws and policies during prolonged periods of economic recession" + }, + { + "Date": "2013-10-11T00:00:00", + "Tournament": "Roosevelt Academy Open", + "Round": 3, + "Motion": "TH regrets that in the case of SGP vs. The Netherlands the European Court of Human Rights ruled in favour of The Netherlands (forcing the SGP to allow women to take office within the party)" + }, + { + "Date": "2013-10-11T00:00:00", + "Tournament": "Roosevelt Academy Open", + "Round": 4, + "Motion": "THBT the International Criminal Court should hire private military contractors to arrest individuals who refuse to surrender after an indictment" + }, + { + "Date": "2013-10-11T00:00:00", + "Tournament": "Roosevelt Academy Open", + "Round": 5, + "Motion": "TH Welcomes the rise of online news media at the expense of traditional journalism" + }, + { + "Date": "2013-10-11T00:00:00", + "Tournament": "Roosevelt Academy Open", + "Round": "Novice_Final", + "Motion": "THBT schools should instill unrealistically high expectations in students from lower-socio economic backgrounds" + }, + { + "Date": "2013-10-11T00:00:00", + "Tournament": "Roosevelt Academy Open", + "Round": "Open_Semis", + "Motion": "THBT the Israeli LBGT-movement should oppose pink-washing" + }, + { + "Date": "2013-10-11T00:00:00", + "Tournament": "Roosevelt Academy Open", + "Round": "Open_Final", + "Motion": "THBT \"I was just following orders\" is a legitimate defence in cases of war crimes and crimes against humanity" + }, + { + "Date": "2013-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": 1, + "Motion": "THB that teachers of history should deliberately overemphasize the contributions of marginalized groups." + }, + { + "Date": "2013-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": 2, + "Motion": "THBT for certain criminal offenses, torture is a just punishment." + }, + { + "Date": "2013-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": 3, + "Motion": "THBT oil exporting Islamic states should enact embargoes against states that pass laws discriminating against Muslims." + }, + { + "Date": "2013-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": 4, + "Motion": "THW require all low wage employees of large corporations to be unionized." + }, + { + "Date": "2013-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": 5, + "Motion": "THS the overthrow of democratically elected, authoritarian heads of state." + }, + { + "Date": "2013-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": "Novice_Finals", + "Motion": "THBT individuals should experiment with mind altering hallucinogenic drugs." + }, + { + "Date": "2013-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": "Open_Quarters", + "Motion": "THBT it would be principally just for a state that is unable to provide a social safety net to allow a greatly impoverished individual to sell themselves into slavery." + }, + { + "Date": "2013-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": "Open_Semis", + "Motion": "THBT countries should be required to post territory as collateral to receive IMF bailout funds." + }, + { + "Date": "2013-10-06T00:00:00", + "Tournament": "Yale IV", + "Round": "Open_Finals", + "Motion": "In cases where individuals are convicted of leaking state secrets, THW allow their convictions to be nullified by a national referendum." + }, + { + "Date": "2013-10-05T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 1, + "Motion": "THW boycott the Russian Winter Olympics 2014 in Sochi" + }, + { + "Date": "2013-10-05T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 2, + "Motion": "THBT British national curricula should portray a unanimously and graphically negative account of the impact of British colonialism on its foreign subjects" + }, + { + "Date": "2013-10-05T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 3, + "Motion": "THBT Rockstar Games should make the lead protagonist of the next instalment of the GTA series female" + }, + { + "Date": "2013-10-05T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 4, + "Motion": "TH supports aggressive Palestinian protest (such as property destruction) in illegal Israeli settlements" + }, + { + "Date": "2013-10-05T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 5, + "Motion": "THB President Obama should grant Chelsea Manning a presidential pardon" + }, + { + "Date": "2013-10-05T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": "Open_Semis", + "Motion": "THW restrict the press from all speculation and reporting on the mental health of criminals and suspected criminals" + }, + { + "Date": "2013-10-05T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": "Open_Final", + "Motion": "THB that feminists should adopt the cause of anti-capitalism" + }, + { + "Date": "2013-10-05T00:00:00", + "Tournament": "Gutenberg Cup", + "Round": 1, + "Motion": "Should the Gauls end their resistance to the Romans?" + }, + { + "Date": "2013-10-05T00:00:00", + "Tournament": "Gutenberg Cup", + "Round": 2, + "Motion": "Should we create a common sanctuary/reservation for hipsters, zombies, former FDP politicians and stranded aliens?" + }, + { + "Date": "2013-10-05T00:00:00", + "Tournament": "Gutenberg Cup", + "Round": 3, + "Motion": "Should sex become olympic?" + }, + { + "Date": "2013-10-05T00:00:00", + "Tournament": "Gutenberg Cup", + "Round": "Open_Semis", + "Motion": "Should the long-term unemployed be reemployed for energy production?" + }, + { + "Date": "2013-10-05T00:00:00", + "Tournament": "Gutenberg Cup", + "Round": "Open_Final", + "Motion": "Should Sauron become US president?" + }, + { + "Date": "2013-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 1, + "Motion": "THW ban unpaid internships." + }, + { + "Date": "2013-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 2, + "Motion": "THW punish bullies through the courts instead of through schools." + }, + { + "Date": "2013-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 3, + "Motion": "THW ban international marriage agencies." + }, + { + "Date": "2013-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 4, + "Motion": "THW create power-sharing with the Taliban in exchange for disarmament." + }, + { + "Date": "2013-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 5, + "Motion": "THW ban any group or program that seeks to change someone's sexual identity." + }, + { + "Date": "2013-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": 6, + "Motion": "THW give harsher sentences to military of police officers who engage in sexual assault." + }, + { + "Date": "2013-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": "Open_Semis", + "Motion": "THW create a nation for X, where X is defined by OG as a specific demographic." + }, + { + "Date": "2013-09-30T00:00:00", + "Tournament": "McGill Novice", + "Round": "Open_Finals", + "Motion": "THW never, ever ban books." + }, + { + "Date": "2013-09-27T00:00:00", + "Tournament": "DDG Masters Cup", + "Round": 1, + "Motion": "THBT the world has become better through Facebook" + }, + { + "Date": "2013-09-27T00:00:00", + "Tournament": "DDG Masters Cup", + "Round": 2, + "Motion": "THW impose the Working Time Act on politicians as well" + }, + { + "Date": "2013-09-27T00:00:00", + "Tournament": "DDG Masters Cup", + "Round": 3, + "Motion": "THW relentlessly impose cyberwars on dictatorships" + }, + { + "Date": "2013-09-27T00:00:00", + "Tournament": "DDG Masters Cup", + "Round": 4, + "Motion": "THW create an age limit for public appearances" + }, + { + "Date": "2013-09-27T00:00:00", + "Tournament": "DDG Masters Cup", + "Round": 5, + "Motion": "TH (as debate couple) would encourage its kids to debate competitively" + }, + { + "Date": "2013-09-27T00:00:00", + "Tournament": "DDG Masters Cup", + "Round": 6, + "Motion": "THW reinstitute the Gold Standard" + }, + { + "Date": "2013-09-27T00:00:00", + "Tournament": "DDG Masters Cup", + "Round": "Open_Final", + "Motion": "THW, as the CDU, pursue a minority government in the Bundestag" + }, + { + "Date": "2013-09-08T00:00:00", + "Tournament": "Red Sea Open", + "Round": 1, + "Motion": "THW ban the circumcision of males under the age of 18." + }, + { + "Date": "2013-09-08T00:00:00", + "Tournament": "Red Sea Open", + "Round": 2, + "Motion": "THBT Germany should grant asylum to Edward Snowden." + }, + { + "Date": "2013-09-08T00:00:00", + "Tournament": "Red Sea Open", + "Round": 3, + "Motion": "THBT the jury in all medical malpractice trials should consist solely of medical professionals." + }, + { + "Date": "2013-09-08T00:00:00", + "Tournament": "Red Sea Open", + "Round": 4, + "Motion": "TH supports the creation of a new country, open to all where the only functions of the government are to provide security and to protect property rights." + }, + { + "Date": "2013-09-08T00:00:00", + "Tournament": "Red Sea Open", + "Round": 5, + "Motion": "TH Supports the actions of the Gulabi Gang.", + "InfoSlide": "The Gulabi Gang “the Pink gang” are a collection of women in North India that wear pink saris and engage in violent, non-lethal acts of vigilantism. They target men who they have reason to believe have gone unpunished for acts of violence against women." + }, + { + "Date": "2013-09-08T00:00:00", + "Tournament": "Red Sea Open", + "Round": 6, + "Motion": "TH, upon discovering irrefutable proof that God does NOT exist, would use a fail safe system to destroy the proof and hide it from any human’s knowledge." + }, + { + "Date": "2013-09-08T00:00:00", + "Tournament": "Red Sea Open", + "Round": "Open_Semis", + "Motion": "THBT the discovery of a means of stopping the aging process would be a bad thing for society. (Clarifying information: For this debate ‘stopping the aging process’ means that bodies would stop aging after the age of 35; it does NOT mean that people would stop dying of things unrelated to the process of aging)." + }, + { + "Date": "2013-09-08T00:00:00", + "Tournament": "Red Sea Open", + "Round": "Open_Final", + "Motion": "TH, as the Israeli Debating League, would refuse to accept a debating society from Ariel as a member. (Clarifying information: Ariel is an Israeli settlement in the West Bank.)" + }, + { + "Date": "2013-09-06T00:00:00", + "Tournament": "Joynt Scroll 2013", + "Round": 1, + "Motion": "This House supports the introduction of a two-tier education system, that places non-academic students in separate schools that cater towards vocational qualifications and practical skills." + }, + { + "Date": "2013-09-06T00:00:00", + "Tournament": "Joynt Scroll 2013", + "Round": 2, + "Motion": "This House believes that the Kingitanga should be disestablished." + }, + { + "Date": "2013-09-06T00:00:00", + "Tournament": "Joynt Scroll 2013", + "Round": 3, + "Motion": "This House believes that if humanity becomes capable of interstellar travel, it should implement and enforce the \"Prime Directive\"." + }, + { + "Date": "2013-09-06T00:00:00", + "Tournament": "Joynt Scroll 2013", + "Round": 4, + "Motion": "This House believes that the modern NZ Labour party should not regret the reforms of the fourth Labour Government." + }, + { + "Date": "2013-09-06T00:00:00", + "Tournament": "Joynt Scroll 2013", + "Round": 5, + "Motion": "This House condemns televisions shows that glorify the rich" + }, + { + "Date": "2013-09-06T00:00:00", + "Tournament": "Joynt Scroll 2013", + "Round": 6, + "Motion": "This House believes that political Islam is incompatible with democracy." + }, + { + "Date": "2013-09-06T00:00:00", + "Tournament": "Joynt Scroll 2013", + "Round": "Open_Semi", + "Motion": "This House believes that if technology permitted us to identify people who are genetically predisposed to commit crimes, it would be appropriate for the state to monitor them and limit their activities." + }, + { + "Date": "2013-09-06T00:00:00", + "Tournament": "Joynt Scroll 2013", + "Round": "Open_Final", + "Motion": "This House believes that it is time for the LGBTQIA movement to break up." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": 1.1, + "Motion": "THS SOPA (Stop Online Piracy Act)" + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": 1.2, + "Motion": "Assuming efficacy, THW prefer an internet of no anonimity." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": 1.3, + "Motion": "THBT it is only justifiable to leak classified information when that information details clearly illegal government conduct." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": 2.1, + "Motion": "THW remove the image of Mohammed from the US surpreme court building." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": 2.2, + "Motion": "THO the instititution of petitionary prayer." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": 2.3, + "Motion": "TH prefers a religion that believes thaat people are inherently good to one that believes they are inherently flawed." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": 3.1, + "Motion": "THW not punish professional sports athletes for off-field behaviour." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": 3.2, + "Motion": "As a gay athlete qualified for the Sochi olympics, THW boycott those Olympics." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": 3.3, + "Motion": "THBT coaches should be held liable for players which they choose to play with the knowledge that those players were already injured." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": 4.1, + "Motion": "THW allow jurors to pose questions to anyone testifying." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": 4.2, + "Motion": "As a juror, this house would in no circumstances consider nullification." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": 4.3, + "Motion": "THBT lawyers should not be involved in jury selection." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": "Open_Quarters_1", + "Motion": "THW prioritize women in international university applications." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": "Open_Quarters_2", + "Motion": "TH prefers a society which prioritizes global poverty reduction over domestic poverty initiatives." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": "Open_Quarters_3", + "Motion": "THBT Western governments should renounce democratization of other states as a foreign policy objective." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": "Open_Semis_1", + "Motion": "THW prefer to experience art knowing nothing of the artist." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": "Open_Semis_2", + "Motion": "TH has received incontrovertible proof that the Mona Lisa is a forgery. THW not reveal that information." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": "Open_Semis_3", + "Motion": "THS the right of an artist to absolute posthumour control of their work." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": "Open_Finals_1", + "Motion": "THS a federal European state." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": "Open_Finals_2", + "Motion": "THBT a democratic world government is a worthwhile long-term human project." + }, + { + "Date": "2013-09-01T00:00:00", + "Tournament": "Commonwealth Open (Australs style)", + "Round": "Open_Finals_3", + "Motion": "THS a people's enshrined right to a binding secession referenda." + }, + { + "Date": "2013-08-18T00:00:00", + "Tournament": "Manchester EUDC 2013", + "Round": 1, + "Motion": "THW ban video games in which the player engages in brutal and immoral violence in a realistic setting" + }, + { + "Date": "2013-08-18T00:00:00", + "Tournament": "Manchester EUDC 2013", + "Round": 2, + "Motion": "THW require international development aid budgets to be approved by popular referenda" + }, + { + "Date": "2013-08-18T00:00:00", + "Tournament": "Manchester EUDC 2013", + "Round": 3, + "Motion": "TH, as the Muslim Brotherhood, would sincerely offer to cease resistance, participate in elections and respect a liberal constitution" + }, + { + "Date": "2013-08-18T00:00:00", + "Tournament": "Manchester EUDC 2013", + "Round": 4, + "Motion": "THW permit government agencies to conduct automated surveillance without court authorisation" + }, + { + "Date": "2013-08-18T00:00:00", + "Tournament": "Manchester EUDC 2013", + "Round": 5, + "Motion": "THBT Israel should allow members of the Jewish diaspora to vote in elections" + }, + { + "Date": "2013-08-18T00:00:00", + "Tournament": "Manchester EUDC 2013", + "Round": 6, + "Motion": "TH applauds the rise of songs by female pop artists that glorify assertive female sexuality. For example: Nothing on, I strut around; I do it big, I shut it down; I wonder if you’ll be able to handle me; Rita Ora – R.I.P" + }, + { + "Date": "2013-08-18T00:00:00", + "Tournament": "Manchester EUDC 2013", + "Round": 7, + "Motion": "THBT it is in China’s strategic interest to cease all non-humanitarian assistance to North-Korea until it verifiably ends its nuclear programme" + }, + { + "Date": "2013-08-18T00:00:00", + "Tournament": "Manchester EUDC 2013", + "Round": 8, + "Motion": "THBT Barack Obama should not have granted legal immunity to officials who ordered the use of torture" + }, + { + "Date": "2013-08-18T00:00:00", + "Tournament": "Manchester EUDC 2013", + "Round": 9, + "Motion": "THW provide welfare in the form of basic goods and services rather than cash payments" + }, + { + "Date": "2013-08-18T00:00:00", + "Tournament": "Manchester EUDC 2013", + "Round": "ESL_Quarters", + "Motion": "THBT men should consistently call out and correct chauvinistic claims by colleagues and co-workers" + }, + { + "Date": "2013-08-18T00:00:00", + "Tournament": "Manchester EUDC 2013", + "Round": "ESL_Semis", + "Motion": "THBT environmental agencies should start a campaign of sabotage and destruction against major pollution companies" + }, + { + "Date": "2013-08-18T00:00:00", + "Tournament": "Manchester EUDC 2013", + "Round": "ESL_Final", + "Motion": "THBT the state should not fund any works of art or performances that the average citizen would not recognize as having artistic merit" + }, + { + "Date": "2013-08-18T00:00:00", + "Tournament": "Manchester EUDC 2013", + "Round": "Open_Quarters", + "Motion": "THBT African countries should adopt English as the principle language of instruction" + }, + { + "Date": "2013-08-18T00:00:00", + "Tournament": "Manchester EUDC 2013", + "Round": "Open_Semis", + "Motion": "TH regrets that Western Media demonised Islamist Terrorists rather than portraying them as criminals with legitimate grievances" + }, + { + "Date": "2013-08-18T00:00:00", + "Tournament": "Manchester EUDC 2013", + "Round": "Open_Final", + "Motion": "THW give more votes to citizens according to their performance on a current affairs test" + }, + { + "Date": "2013-08-08T00:00:00", + "Tournament": "DAPDI", + "Round": 1, + "Motion": "THW legalise assisted suicide for any reason." + }, + { + "Date": "2013-08-08T00:00:00", + "Tournament": "DAPDI", + "Round": 2, + "Motion": "THBT politicians have a right to a private life." + }, + { + "Date": "2013-08-08T00:00:00", + "Tournament": "DAPDI", + "Round": 3, + "Motion": "THW require corporations which operate in both the developed and developing worlds to apply the same labour rights to both." + }, + { + "Date": "2013-08-08T00:00:00", + "Tournament": "DAPDI", + "Round": 4, + "Motion": "TH, as a woman, would sleep her way to the top." + }, + { + "Date": "2013-08-08T00:00:00", + "Tournament": "DAPDI", + "Round": 5, + "Motion": "THW invade North Korea." + }, + { + "Date": "2013-08-08T00:00:00", + "Tournament": "DAPDI", + "Round": "Open_Semis", + "Motion": "This House believes that the media, including but not limited to journalists and photographers, have a duty to portray racist public figures in a negative light." + }, + { + "Date": "2013-08-08T00:00:00", + "Tournament": "DAPDI", + "Round": "Open_Final", + "Motion": "This House, given the technology, would allow medical procedures which endow human beings with superpowers" + }, + { + "Date": "2013-08-04T00:00:00", + "Tournament": "SOAS invitational", + "Round": 1, + "Motion": "THBT new democracies should prevent revolutionary leaders from standing for elected office" + }, + { + "Date": "2013-08-04T00:00:00", + "Tournament": "SOAS invitational", + "Round": 2, + "Motion": "THBT increased female participation in violent sports (such as boxing) is good for women" + }, + { + "Date": "2013-08-04T00:00:00", + "Tournament": "SOAS invitational", + "Round": 3, + "Motion": "THBT the WTO should allow developing countries to impose tariffs on developed countries" + }, + { + "Date": "2013-08-04T00:00:00", + "Tournament": "SOAS invitational", + "Round": 4, + "Motion": "THBT the USA should pay $1 trillion in war reparations to North Korea" + }, + { + "Date": "2013-08-04T00:00:00", + "Tournament": "SOAS invitational", + "Round": "Open_Final", + "Motion": "THW give the public the power, via referendum, to pardon whistleblowers." + }, + { + "Date": "2013-08-03T00:00:00", + "Tournament": "SOAS Open", + "Round": 1, + "Motion": "THBT the LGBT movement should oppose gay bars that ban entrance to straight customers" + }, + { + "Date": "2013-08-03T00:00:00", + "Tournament": "SOAS Open", + "Round": 2, + "Motion": "THBT the government should subsidise private home ownership" + }, + { + "Date": "2013-08-03T00:00:00", + "Tournament": "SOAS Open", + "Round": 3, + "Motion": "THBT in the event of Scotland voting for independence in 2014, the governmental authorities of the North of England should petition the Scottish government for membership of the new Scottish state" + }, + { + "Date": "2013-08-03T00:00:00", + "Tournament": "SOAS Open", + "Round": 4, + "Motion": "THBT the Church of England should not take official stances on social, political and economic issues not directly related to items of doctrine" + }, + { + "Date": "2013-08-03T00:00:00", + "Tournament": "SOAS Open", + "Round": "Open_Final", + "Motion": "THBT the Norwegian Nobel Prize commitee should retrospectively remove Barrack Obama's peace prize" + }, + { + "Date": "2013-07-29T00:00:00", + "Tournament": "Heart of Europe British Parliamentary Debate track", + "Round": 1, + "Motion": "THW legalize prostitution." + }, + { + "Date": "2013-07-29T00:00:00", + "Tournament": "Heart of Europe British Parliamentary Debate track", + "Round": 2, + "Motion": "THBT immigration from developing countries should be made illegal." + }, + { + "Date": "2013-07-29T00:00:00", + "Tournament": "Heart of Europe British Parliamentary Debate track", + "Round": 3, + "Motion": "THBT abortions are morally justifiable." + }, + { + "Date": "2013-07-29T00:00:00", + "Tournament": "Heart of Europe British Parliamentary Debate track", + "Round": 4, + "Motion": "THW not cooperate with international financial institutions." + }, + { + "Date": "2013-07-29T00:00:00", + "Tournament": "Heart of Europe British Parliamentary Debate track", + "Round": 5, + "Motion": "THBT national states should not support minority cultures to the detriment of the majority culture." + }, + { + "Date": "2013-07-29T00:00:00", + "Tournament": "Heart of Europe British Parliamentary Debate track", + "Round": "Open_Final", + "Motion": "THBT free sharing of copyrighted information should be tolerated." + }, + { + "Date": "2013-07-27T00:00:00", + "Tournament": "Bodden Cup", + "Round": 1, + "Motion": "THW grant prisoners their right to vote back as soon as they are released" + }, + { + "Date": "2013-07-27T00:00:00", + "Tournament": "Bodden Cup", + "Round": 2, + "Motion": "THW support separatist movements in the EU" + }, + { + "Date": "2013-07-27T00:00:00", + "Tournament": "Bodden Cup", + "Round": 3, + "Motion": "THW employ asylum seekers as porters in train stations" + }, + { + "Date": "2013-07-27T00:00:00", + "Tournament": "Bodden Cup", + "Round": 4, + "Motion": "TH, which is Brazil, regrets its bid for hosting the 2014 World Cup" + }, + { + "Date": "2013-07-27T00:00:00", + "Tournament": "Bodden Cup", + "Round": 5, + "Motion": "THW abolish the separation period (Trennungsfristen) for marriages - (i.e. create quick ends to marriage?)" + }, + { + "Date": "2013-07-27T00:00:00", + "Tournament": "Bodden Cup", + "Round": "Open_Semis", + "Motion": "THW limit the amount for new leases to a maximum of 10% above the local rent index" + }, + { + "Date": "2013-07-27T00:00:00", + "Tournament": "Bodden Cup", + "Round": "Open_Final", + "Motion": "TH welcomes medical progress that enables women to have children after the menopause" + }, + { + "Date": "2013-07-26T00:00:00", + "Tournament": "Patras Open", + "Round": 1, + "Motion": "THW ban the Golden Dawn" + }, + { + "Date": "2013-07-26T00:00:00", + "Tournament": "Patras Open", + "Round": 2, + "Motion": "THBT the state should not give religious institutions any financial benefits" + }, + { + "Date": "2013-07-26T00:00:00", + "Tournament": "Patras Open", + "Round": 3, + "Motion": "THBT the United Kingdom should abolish its monarchy" + }, + { + "Date": "2013-07-26T00:00:00", + "Tournament": "Patras Open", + "Round": 4, + "Motion": "TH regrets Disney's continuation of the Star Wars film saga" + }, + { + "Date": "2013-07-26T00:00:00", + "Tournament": "Patras Open", + "Round": 5, + "Motion": "THW abolish national sports teams" + }, + { + "Date": "2013-07-26T00:00:00", + "Tournament": "Patras Open", + "Round": "Open_Semis", + "Motion": "THBT the City of Thessaloniki should name one of its major avenues after Kemal Atatürk" + }, + { + "Date": "2013-07-26T00:00:00", + "Tournament": "Patras Open", + "Round": "Open_Final", + "Motion": "TH as Socrates would not have drunk the hemlock" + }, + { + "Date": "2013-07-24T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "Round": 1, + "Motion": "THW punish parents for the crimes their minor children commit" + }, + { + "Date": "2013-07-24T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "Round": 2, + "Motion": "THW give the death penalty to government officials that engage in acts of corruption" + }, + { + "Date": "2013-07-24T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "Round": 3, + "Motion": "TH regrets welfare policies promoted by Eurozone countries currently immersed in a debt crisis" + }, + { + "Date": "2013-07-24T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "Round": 4, + "Motion": "THW pay poor people to not have children" + }, + { + "Date": "2013-07-24T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "Round": 5, + "Motion": "THW prohibit in financial settlements lawsuits against pharmaceutical companies" + }, + { + "Date": "2013-07-24T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "Round": 6, + "Motion": "THW allow organ donation only to those individuals who are donors" + }, + { + "Date": "2013-07-24T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "Round": 7, + "Motion": "THW help/support snitches (informants, informers)" + }, + { + "Date": "2013-07-24T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "Round": 8, + "Motion": "THBT developing countries should nationalise companies that extract their national resources" + }, + { + "Date": "2013-07-24T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "Round": 9, + "Motion": "TH supports media censorship during times of political crisis" + }, + { + "Date": "2013-07-24T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "Round": "Open_Quarters", + "Motion": "TH regrets that Brazil is the host of the football World Cup 2014" + }, + { + "Date": "2013-07-24T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "Round": "Open_Semis", + "Motion": "TH would eliminate the Catholic Church on a global level (the Church’s global governing level?)" + }, + { + "Date": "2013-07-24T00:00:00", + "Tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "Round": "Open_Final", + "Motion": "TH repents of the Spanish colonisation of Latin America" + }, + { + "Date": "2013-07-20T00:00:00", + "Tournament": "Earlsfort Open", + "Round": 1, + "Motion": "THW require all welfare recipients to take drug tests, and if they fail, cut off all monetary benefits and replace with non-monetary benefits such as food/clothing vouchers" + }, + { + "Date": "2013-07-20T00:00:00", + "Tournament": "Earlsfort Open", + "Round": 2, + "Motion": "THBT post-conflict societies should set a history curriculum that emphasises the wrongs done by their own community during that conflict" + }, + { + "Date": "2013-07-20T00:00:00", + "Tournament": "Earlsfort Open", + "Round": 3, + "Motion": "THBT juries should be of the same demographic as the accused and victim in each case" + }, + { + "Date": "2013-07-20T00:00:00", + "Tournament": "Earlsfort Open", + "Round": 4, + "Motion": "THBT the overthrow of Egypt's President, Mohammed Morsi, is a setback to the goals of the Arab Spring" + }, + { + "Date": "2013-07-20T00:00:00", + "Tournament": "Earlsfort Open", + "Round": 5, + "Motion": "THW hold companies to a higher ethical standard than the law imposes on them" + }, + { + "Date": "2013-07-20T00:00:00", + "Tournament": "Earlsfort Open", + "Round": "Open_Semis", + "Motion": "Presuming the technology existed to alter people's sexual orientation, THW make that technology available on the national health service" + }, + { + "Date": "2013-07-20T00:00:00", + "Tournament": "Earlsfort Open", + "Round": "Open_Final", + "Motion": "TH, as President Obama, would grant a presidential pardon to Edward Snowden" + }, + { + "Date": "2013-07-13T00:00:00", + "Tournament": "Frischlingscup", + "Round": 1, + "Motion": "Do we need mandatory voting?" + }, + { + "Date": "2013-07-13T00:00:00", + "Tournament": "Frischlingscup", + "Round": 2, + "Motion": "Should modes of energy production that significantly alter the Umweltnieschen (surrounding/environment?) be banned?" + }, + { + "Date": "2013-07-13T00:00:00", + "Tournament": "Frischlingscup", + "Round": 3, + "Motion": "Should there no longer be a possibility of early release in case of life sentences?" + }, + { + "Date": "2013-07-13T00:00:00", + "Tournament": "Frischlingscup", + "Round": "Open_Final", + "Motion": "Should we decide to categorically deny foreign missions for our army?" + }, + { + "Date": "2013-07-13T00:00:00", + "Tournament": "Imperial No Notes Open", + "Round": 1, + "Motion": "THBT in areas where there is a high level of drug-related crime, that laws surrounding the sale and use of drugs should not be enforced." + }, + { + "Date": "2013-07-13T00:00:00", + "Tournament": "Imperial No Notes Open", + "Round": 2, + "Motion": "TH, as a parent in a western liberal democracy, would teach its child to respect authority." + }, + { + "Date": "2013-07-13T00:00:00", + "Tournament": "Imperial No Notes Open", + "Round": 3, + "Motion": "THBT comedians should not use racist, sexist, or homophobic language, even for the purposes of satire." + }, + { + "Date": "2013-07-13T00:00:00", + "Tournament": "Imperial No Notes Open", + "Round": 4, + "Motion": "TH, as Prometheus, would snub mankind" + }, + { + "Date": "2013-07-13T00:00:00", + "Tournament": "Imperial No Notes Open", + "Round": "Open_Final", + "Motion": "as a promising young graduate, you are offered two jobs. One with a charity that you would enjoy working for (\"First Teach\"), with reasonable pay. The other with a large multinational firm (DelcentureMG) that provides higher pay, and better long term career prospects. Motion: THW sell out to the man." + }, + { + "Date": "2013-07-07T00:00:00", + "Tournament": "English Open", + "Round": 1, + "Motion": "THW ban international adoption" + }, + { + "Date": "2013-07-07T00:00:00", + "Tournament": "English Open", + "Round": 2, + "Motion": "TH supports state capitalism over liberal capitalism.", + "InfoSlide": "State capitalism is an economic model in which companies are privately owned and compete in a free market of consumers, yet the state often intervenes by investing heavily in favored firms, forcing managerial changes, and making other decisions aimed at stabilizing and strengthening the economy. Famous state-capitalist nations include Singapore, China and Russia." + }, + { + "Date": "2013-07-07T00:00:00", + "Tournament": "English Open", + "Round": 3, + "Motion": "THBT The US should continue its nation building efforts after it has left Afghanistan militarily.", + "InfoSlide": "The US is currently involved in major nation building projects in Afghanistian, including funding and support of democratic institutions, empowerment of local leaders and investment in education." + }, + { + "Date": "2013-07-07T00:00:00", + "Tournament": "English Open", + "Round": 4, + "Motion": "THBT educators should abandon the \"pitiful bully\" approach.", + "InfoSlide": "In recent decades, many educational institutions have instructed their teachers that bullying is a result of low self-esteem and other personal problems." + }, + { + "Date": "2013-07-07T00:00:00", + "Tournament": "English Open", + "Round": "Open_Final", + "Motion": "THBT citizens should be more worried about Google and Facebook's access to their data, than the governments' access" + }, + { + "Date": "2013-07-07T00:00:00", + "Tournament": "Mix Team (pro-am tournament)", + "Round": 1, + "Motion": "THW introduce special schools for LGBTQI." + }, + { + "Date": "2013-07-07T00:00:00", + "Tournament": "Mix Team (pro-am tournament)", + "Round": 2, + "Motion": "THB that overthrowing Mohamed Morsi was a mistake." + }, + { + "Date": "2013-07-07T00:00:00", + "Tournament": "Mix Team (pro-am tournament)", + "Round": 3, + "Motion": "THW legally permit soldiers to refuse to participate in military actions or missions on the basis of conscience" + }, + { + "Date": "2013-07-07T00:00:00", + "Tournament": "Mix Team (pro-am tournament)", + "Round": 4, + "Motion": "THW introduce inheritance tax of 100%" + }, + { + "Date": "2013-07-07T00:00:00", + "Tournament": "Mix Team (pro-am tournament)", + "Round": "Open_Semis", + "Motion": "THW provide parents access to their children profiles on social networks" + }, + { + "Date": "2013-07-07T00:00:00", + "Tournament": "Mix Team (pro-am tournament)", + "Round": "Open_Final", + "Motion": "THW privatise all education" + }, + { + "Date": "2013-07-06T00:00:00", + "Tournament": "ULU Westminster IV", + "Round": 1, + "Motion": "THBT Greece should ban the Golden Dawn party." + }, + { + "Date": "2013-07-06T00:00:00", + "Tournament": "ULU Westminster IV", + "Round": 2, + "Motion": "THW force universities to make all their lectures available for free online" + }, + { + "Date": "2013-07-06T00:00:00", + "Tournament": "ULU Westminster IV", + "Round": 3, + "Motion": "TH regrets the rise of mega-rich football clubs (such as Chelsea, Manchester City, PSG, Monaco, Anzhi M. etc)" + }, + { + "Date": "2013-07-06T00:00:00", + "Tournament": "ULU Westminster IV", + "Round": 4, + "Motion": "THBT Barack Hussein Obama should call off the prosecution of NSA whistleblower Edward Snowden" + }, + { + "Date": "2013-07-06T00:00:00", + "Tournament": "ULU Westminster IV", + "Round": 5, + "Motion": "THW give extra votes to young adults" + }, + { + "Date": "2013-07-06T00:00:00", + "Tournament": "ULU Westminster IV", + "Round": "Open_Final", + "Motion": "THW offer EU membership to Middle Eastern and North African states that achieve successful democratic transition" + }, + { + "Date": "2013-06-29T00:00:00", + "Tournament": "Essex IV", + "Round": 1, + "Motion": "TH supports the use of child labour in the developing world." + }, + { + "Date": "2013-06-29T00:00:00", + "Tournament": "Essex IV", + "Round": 2, + "Motion": "THBT Beyonce is good for feminism." + }, + { + "Date": "2013-06-29T00:00:00", + "Tournament": "Essex IV", + "Round": 3, + "Motion": "THBT community vigilante groups have been a force for good in the fight against gangs and gang crime in Mexico." + }, + { + "Date": "2013-06-29T00:00:00", + "Tournament": "Essex IV", + "Round": 4, + "Motion": "TH regrets the rise and dominance of Facebook (and other social media sites like Twitter) in Western liberal democracies" + }, + { + "Date": "2013-06-29T00:00:00", + "Tournament": "Essex IV", + "Round": "Open_Final", + "Motion": "THBT the African Union should refuse to cooperate with the ICC and instead pursue their own means of justice." + }, + { + "Date": "2013-06-28T00:00:00", + "Tournament": "Vienna Mini", + "Round": 1, + "Motion": "THW privatise healthcare" + }, + { + "Date": "2013-06-28T00:00:00", + "Tournament": "Vienna Mini", + "Round": 2, + "Motion": "THBT that Australia should replace its current flag with the aboriginal one" + }, + { + "Date": "2013-06-28T00:00:00", + "Tournament": "Vienna Mini", + "Round": 3, + "Motion": "THW eliminate standardised testing for university admission" + }, + { + "Date": "2013-06-28T00:00:00", + "Tournament": "Vienna Mini", + "Round": 4, + "Motion": "THBT Pixar's next animated motion picture should have a same-sex couple as protagonists" + }, + { + "Date": "2013-06-28T00:00:00", + "Tournament": "Vienna Mini", + "Round": "Open_Final", + "Motion": "As Quadriga, THW not have retracted Putin's award (info)" + }, + { + "Date": "2013-06-22T00:00:00", + "Tournament": "Elbe Open", + "Round": 1, + "Motion": "THW grant patients the full right to inspect records of their own treatment from psychotherapists" + }, + { + "Date": "2013-06-22T00:00:00", + "Tournament": "Elbe Open", + "Round": 2, + "Motion": "THB the continuing European Central Bank Policy of low interest rate focus is wrong" + }, + { + "Date": "2013-06-22T00:00:00", + "Tournament": "Elbe Open", + "Round": 3, + "Motion": "TH does not want a society in which people are immortal" + }, + { + "Date": "2013-06-22T00:00:00", + "Tournament": "Elbe Open", + "Round": 4, + "Motion": "THW force theatres that are funded by public money to allow the public to determine its programming" + }, + { + "Date": "2013-06-22T00:00:00", + "Tournament": "Elbe Open", + "Round": "Open_Semis", + "Motion": "THW remove the 5% election threshold for Islamic parties in all parliamentary elections" + }, + { + "Date": "2013-06-22T00:00:00", + "Tournament": "Elbe Open", + "Round": "Open_Final", + "Motion": "THW promote pornography that challenges gender cliches" + }, + { + "Date": "2013-06-21T00:00:00", + "Tournament": "Berlin IV", + "Round": 1, + "Motion": "THW forbid the Supreme Court to annul legislation." + }, + { + "Date": "2013-06-21T00:00:00", + "Tournament": "Berlin IV", + "Round": 2, + "Motion": "THW ban fortune-telling for profit." + }, + { + "Date": "2013-06-21T00:00:00", + "Tournament": "Berlin IV", + "Round": 3, + "Motion": "As an emerging nation, THW allow the manufacture and sale of generic drugs even in cases where patents or international treaties are infringed." + }, + { + "Date": "2013-06-21T00:00:00", + "Tournament": "Berlin IV", + "Round": 4, + "Motion": "THW give security services total and unrestricted access to citizens’ data on social media and webmail services." + }, + { + "Date": "2013-06-21T00:00:00", + "Tournament": "Berlin IV", + "Round": "Open_Semis", + "Motion": "THW introduce an immediate democracy.", + "InfoSlide": "Immediate democracy is a method in which citizens can change their vote at any time. The number of MPs given to each party is allocated on a daily basis and represents the current support percentage of the population. In this system there are no elections, but the number of MPs from each party can change every day." + }, + { + "Date": "2013-06-21T00:00:00", + "Tournament": "Berlin IV", + "Round": "Open_Final", + "Motion": "THW support popular uprisings against dictators even in cases they are lead by Islamist extremist." + }, + { + "Date": "2013-06-21T00:00:00", + "Tournament": "GDPPC Open", + "Round": 1, + "Motion": "THBT tech companies should never share user information with governments." + }, + { + "Date": "2013-06-21T00:00:00", + "Tournament": "GDPPC Open", + "Round": 2, + "Motion": "In fighting prostitution, THW criminalize only the demand." + }, + { + "Date": "2013-06-21T00:00:00", + "Tournament": "GDPPC Open", + "Round": 3, + "Motion": "THBT Stark Industries should have open-sourced the Iron man suit." + }, + { + "Date": "2013-06-21T00:00:00", + "Tournament": "GDPPC Open", + "Round": 4, + "Motion": "THBT IMF should pay reparations to Greece." + }, + { + "Date": "2013-06-21T00:00:00", + "Tournament": "GDPPC Open", + "Round": 5, + "Motion": "THBT The New York Post shouldn't have published the photo (edit: showing a man about to be overrun by a metro and die)" + }, + { + "Date": "2013-06-21T00:00:00", + "Tournament": "GDPPC Open", + "Round": "Open_Semis", + "Motion": "THW restart the Esperanto project." + }, + { + "Date": "2013-06-21T00:00:00", + "Tournament": "GDPPC Open", + "Round": "Open_Final", + "Motion": "THBT offenders with drug dependency should be sent into treatment rather than to prison." + }, + { + "Date": "2013-06-08T00:00:00", + "Tournament": "Bristol Open", + "Round": 1, + "Motion": "THW prosecute attempted murder and murder as the same crime" + }, + { + "Date": "2013-06-08T00:00:00", + "Tournament": "Bristol Open", + "Round": 2, + "Motion": "THBT the disappearance of marriage from society will be more beneficial for LGBT individuals than their inclusion in it" + }, + { + "Date": "2013-06-08T00:00:00", + "Tournament": "Bristol Open", + "Round": 3, + "Motion": "THBT the USA should fund Private Military Companies (PMCs) to fight the war on drugs in Mexico" + }, + { + "Date": "2013-06-08T00:00:00", + "Tournament": "Bristol Open", + "Round": 4, + "Motion": "TH regrets the use of extreme tactics by feminist groups in countries with poor equalities records (like Femen, Pussy Riot and their supporters)" + }, + { + "Date": "2013-06-08T00:00:00", + "Tournament": "Bristol Open", + "Round": "Open_Final", + "Motion": "Where a suitable job is available in an individual's country of origin, THW require anyone wishing to emigrate to first repay the state the cost of any government services they have received to that point." + }, + { + "Date": "2013-05-31T00:00:00", + "Tournament": "Riga Debate Academy", + "Round": 1, + "Motion": "THW remove the right to vote upon retirement" + }, + { + "Date": "2013-05-31T00:00:00", + "Tournament": "Riga Debate Academy", + "Round": 2, + "Motion": "THBT the targeting of religious sites is a legitimate tool of war" + }, + { + "Date": "2013-05-31T00:00:00", + "Tournament": "Riga Debate Academy", + "Round": 3, + "Motion": "THW make fines relative to wealth" + }, + { + "Date": "2013-05-31T00:00:00", + "Tournament": "Riga Debate Academy", + "Round": 4, + "Motion": "TH, as a Russian-speaking Latvian, would not vote for a Russian party in Latvian elections." + }, + { + "Date": "2013-05-31T00:00:00", + "Tournament": "Riga Debate Academy", + "Round": "Open_Final", + "Motion": "THW require couples that intend to enter into official partnerships to be informed of their partners full genetic profile and other health issues" + }, + { + "Date": "2013-05-30T00:00:00", + "Tournament": "Deutschsprachige Debattiermeisterschaft", + "Round": 1, + "Motion": "Should bullfighting be forbidden?" + }, + { + "Date": "2013-05-30T00:00:00", + "Tournament": "Deutschsprachige Debattiermeisterschaft", + "Round": 2, + "Motion": "Should teams be excluded from sports matches when one of their team members has taken doping?" + }, + { + "Date": "2013-05-30T00:00:00", + "Tournament": "Deutschsprachige Debattiermeisterschaft", + "Round": 3, + "Motion": "Seed companies seek out strong-yielding plants and sterilise the seeds. The plants cannot produce fertile seeds and the companies protect their license rights. Motion: Should plant sterilisation be banned?" + }, + { + "Date": "2013-05-30T00:00:00", + "Tournament": "Deutschsprachige Debattiermeisterschaft", + "Round": 4, + "Motion": "Assume the technical possibility of a manned flight to Mars, without the possibility to survive there on a long-term basis, or to return: Should we send a manned spacecraft to Mars?" + }, + { + "Date": "2013-05-30T00:00:00", + "Tournament": "Deutschsprachige Debattiermeisterschaft", + "Round": 5, + "Motion": "Should we abolish adding to wages until the income reaches the poverty line?" + }, + { + "Date": "2013-05-30T00:00:00", + "Tournament": "Deutschsprachige Debattiermeisterschaft", + "Round": 6, + "Motion": "After a civil war, should the ethnic groups involved be separated, even through forced resettlement?" + }, + { + "Date": "2013-05-30T00:00:00", + "Tournament": "Deutschsprachige Debattiermeisterschaft", + "Round": "Open_Octos", + "Motion": "Should commuter allowances be abolished?" + }, + { + "Date": "2013-05-30T00:00:00", + "Tournament": "Deutschsprachige Debattiermeisterschaft", + "Round": "Open_Quarters", + "Motion": "Servicemen and women are equal before the law in the Armed Forces. In practice, women are not used on the frontline (as special commandos for example). Motion: should women be employed in the frontline?" + }, + { + "Date": "2013-05-30T00:00:00", + "Tournament": "Deutschsprachige Debattiermeisterschaft", + "Round": "Open_Semis", + "Motion": "Should prisoners on hungerstrike be forcefed?" + }, + { + "Date": "2013-05-30T00:00:00", + "Tournament": "Deutschsprachige Debattiermeisterschaft", + "Round": "Open_Final", + "Motion": "When the Bundestag votes on matters of conscience, the members can vote without party discipline. Should the People decide on matters of conscience instead of the Parliament?" + }, + { + "Date": "2013-05-27T00:00:00", + "Tournament": "History Tournament", + "Round": 1, + "Motion": "TH is Martin Luther. THW not publish the Theses" + }, + { + "Date": "2013-05-27T00:00:00", + "Tournament": "History Tournament", + "Round": 2, + "Motion": "During WWII: THBT the Western Allies should under no circumstances cooperate with Stalin" + }, + { + "Date": "2013-05-27T00:00:00", + "Tournament": "History Tournament", + "Round": 3, + "Motion": "In the middle of the 19th century: THW stop export of food products from Ireland until the Great Famine ends" + }, + { + "Date": "2013-05-27T00:00:00", + "Tournament": "History Tournament", + "Round": "Open_Final", + "Motion": "TH is Gandhi. THW declare war on the English occupation" + }, + { + "Date": "2013-05-19T00:00:00", + "Tournament": "Brüder Grimm Cup", + "Round": 1, + "Motion": "Should self-incriminating reports for tax evasion no longer lead to amnesty/ower punishment?" + }, + { + "Date": "2013-05-19T00:00:00", + "Tournament": "Brüder Grimm Cup", + "Round": 2, + "Motion": "Should Members of Parliaments be allowed to have family members as employees?" + }, + { + "Date": "2013-05-19T00:00:00", + "Tournament": "Brüder Grimm Cup", + "Round": 3, + "Motion": "Should works of art no longer be restored?" + }, + { + "Date": "2013-05-19T00:00:00", + "Tournament": "Brüder Grimm Cup", + "Round": 4, + "Motion": "Should genetic testing right after birth be made mandatory?" + }, + { + "Date": "2013-05-19T00:00:00", + "Tournament": "Brüder Grimm Cup", + "Round": "Open_Semis", + "Motion": "Should Telecommunications providers be required by law to ensure net neutrality?" + }, + { + "Date": "2013-05-19T00:00:00", + "Tournament": "Brüder Grimm Cup", + "Round": "Open_Final", + "Motion": "Should there be a quota for young people in top political offices?" + }, + { + "Date": "2013-05-17T00:00:00", + "Tournament": "Belgrade Open", + "Round": 1, + "Motion": "THBT Djokar Tsarnev, the Boston Marathon bomber, should be given the death penalty" + }, + { + "Date": "2013-05-17T00:00:00", + "Tournament": "Belgrade Open", + "Round": 2, + "Motion": "THW take the children of Roma who live traditional lifestyles into state care" + }, + { + "Date": "2013-05-17T00:00:00", + "Tournament": "Belgrade Open", + "Round": 3, + "Motion": "THW reverse austerity measures in Europe" + }, + { + "Date": "2013-05-17T00:00:00", + "Tournament": "Belgrade Open", + "Round": 4, + "Motion": "THW allow voters to dismiss their government during its term through citizen initiated referenda" + }, + { + "Date": "2013-05-17T00:00:00", + "Tournament": "Belgrade Open", + "Round": 5, + "Motion": "THBT EU should offer Middle Eastern and North African states membership in exchange for successful democratic transformation" + }, + { + "Date": "2013-05-17T00:00:00", + "Tournament": "Belgrade Open", + "Round": "Open_Semis", + "Motion": "Additive manufacturing or 3D printing is the process of making a three-dimensional solid object of almost any shape from a downloadable design. Currently, they can be used to create shoes, electronic devises, guns and even houses. In future, their uses are likely to grow. Motion: THW ban the sale of 3D printers to households" + }, + { + "Date": "2013-05-17T00:00:00", + "Tournament": "Belgrade Open", + "Round": "Open_Final", + "Motion": "THW replace the national sport teams of Ex-Yugoslavian republics with new unified teams" + }, + { + "Date": "2013-05-11T00:00:00", + "Tournament": "Kalliope Debattoernooi", + "Round": 1, + "Motion": "THW make membership of a political party mandatory" + }, + { + "Date": "2013-05-11T00:00:00", + "Tournament": "Kalliope Debattoernooi", + "Round": 2, + "Motion": "TH celebrates (approves of) the existence of religion" + }, + { + "Date": "2013-05-11T00:00:00", + "Tournament": "Kalliope Debattoernooi", + "Round": 3, + "Motion": "THW pay male teachers in primary school more than female teachers" + }, + { + "Date": "2013-05-11T00:00:00", + "Tournament": "Kalliope Debattoernooi", + "Round": 4, + "Motion": "TH regrets the founding of the state of Israel" + }, + { + "Date": "2013-05-11T00:00:00", + "Tournament": "Kalliope Debattoernooi", + "Round": 5, + "Motion": "THW ban media from publishing graphic depictions of terrorist attacks" + }, + { + "Date": "2013-05-11T00:00:00", + "Tournament": "Kalliope Debattoernooi", + "Round": "Open_Semis", + "Motion": "THW ban private companies from choosing political positions and promoting them" + }, + { + "Date": "2013-05-11T00:00:00", + "Tournament": "Kalliope Debattoernooi", + "Round": "Open_Final", + "Motion": "THW make fathers responsible for children, in financial and other terms, only if they have given explicit permission for their birth" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Denny Crane", + "Round": 1, + "Motion": "THW require all politicians who are running for election to do a test of general knowledge whose results would then be made ​​public" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Denny Crane", + "Round": 2, + "Motion": "THW require from companies to share their annual profit to all employees" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Denny Crane", + "Round": 3, + "Motion": "THW abolish gender categories for the awards in culture" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Denny Crane", + "Round": 4, + "Motion": "THW not punish offenders for non-violent crimes with prison sentence" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Denny Crane", + "Round": 5, + "Motion": "Humanity has found an alien species of an unknown level of technological development. Motion: THW not make first contact with an alien" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Denny Crane", + "Round": "Open_Semis", + "Motion": "THBT on October 5th blood should have been spilled" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Denny Crane", + "Round": "Open_Final", + "Motion": "THW censor art that desecrates religious symbols" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Oxford Women’s Open", + "Round": 1, + "Motion": "THW ban religious preachers in the public sphere" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Oxford Women’s Open", + "Round": 2, + "Motion": "THBT the USA should give South Korea independent control of a nuclear arsenal" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Oxford Women’s Open", + "Round": 3, + "Motion": "TH, as a professional female athlete, would not pose in a sexualised manner for magazines and commercials" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Oxford Women’s Open", + "Round": 4, + "Motion": "In areas where hostage taking is a tactic, THW require soldiers to kill squad mates who are about to be captured" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Oxford Women’s Open", + "Round": 5, + "Motion": "THW subsidise art that glorifies the working class" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Stockholm IV", + "Round": 1, + "Motion": "THW completely abolish all subsidies and preferential treatment to the farming industry in the EU" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Stockholm IV", + "Round": 2, + "Motion": "You are a poor 19-year old woman living in a former Soviet state. You have little education, no obvious career prospects, and few opportunities for economic advancement in your own country. THW register as a mail order bride" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Stockholm IV", + "Round": 3, + "Motion": "TH, which is the EU, would sue any individual who speaks untrue of or defames the European Union" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Stockholm IV", + "Round": 4, + "Motion": "TH as Israel would immediately intervene in Syria" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Stockholm IV", + "Round": 5, + "Motion": "THBT billionaires have a moral obligation to donate their money to the US government instead of charities" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Stockholm IV", + "Round": "Open_Semis", + "Motion": "You are Arnold Schwarzenegger, You are presented a script in which you are asked to portray a SS Nazi Officer who is presented in a positive humane light. THW take on the role" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Stockholm IV", + "Round": "Open_Final", + "Motion": "THBT the EU should adopt the formation of a constitutional anti-theistic atheist society as one of its declared goals.", + "InfoSlide": "The current stated goal of the european union, as stipulated in the treaty of rome, is an \"ever closer union\" Anti-theistic atheism society is a society that while still allowing religions to exist,more than just being secular actively seeks to eliminate religion from state institutions, laws and actively promotes atheism to the general public." + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Zeit Debatte Aachen", + "Round": 1, + "Motion": "THW make organ donations after death mandatory" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Zeit Debatte Aachen", + "Round": 2, + "Motion": "THW not export any weapons out of the EU" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Zeit Debatte Aachen", + "Round": 3, + "Motion": "THW replace the three-tiered education system with one common high school." + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Zeit Debatte Aachen", + "Round": 4, + "Motion": "THW check all Doctorate theses of living persons for plagiarism" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Zeit Debatte Aachen", + "Round": 5, + "Motion": "THW welcome a UK exit out of the EU" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Zeit Debatte Aachen", + "Round": "Open_Semis", + "Motion": "THW ban alternative medicine" + }, + { + "Date": "2013-05-10T00:00:00", + "Tournament": "Zeit Debatte Aachen", + "Round": "Open_Final", + "Motion": "THW not have introduced a common European currency" + }, + { + "Date": "2013-05-04T00:00:00", + "Tournament": "Kyiv Open", + "Round": 1, + "Motion": "THBT racial profiling is a legitimate tool in fighting crime" + }, + { + "Date": "2013-05-04T00:00:00", + "Tournament": "Kyiv Open", + "Round": 2, + "Motion": "THW prohibit the military from embedding journalists" + }, + { + "Date": "2013-05-04T00:00:00", + "Tournament": "Kyiv Open", + "Round": 3, + "Motion": "THBT all state funding of the art should be allocated to artists through a random and equal lottery" + }, + { + "Date": "2013-05-04T00:00:00", + "Tournament": "Kyiv Open", + "Round": 4, + "Motion": "THW introduce a statute of limitation on murder" + }, + { + "Date": "2013-05-04T00:00:00", + "Tournament": "Kyiv Open", + "Round": 5, + "Motion": "THB the US should unilaterally intervene in Syria" + }, + { + "Date": "2013-05-04T00:00:00", + "Tournament": "Kyiv Open", + "Round": "Open_Semis", + "Motion": "THBT police force should have quotas of proportional representation of races" + }, + { + "Date": "2013-05-04T00:00:00", + "Tournament": "Kyiv Open", + "Round": "Open_Final", + "Motion": "THW forgive the group of young people who blew up a monument of Stalin in Ukraine." + }, + { + "Date": "2013-04-28T00:00:00", + "Tournament": "Cambridge Invitational", + "Round": 1, + "Motion": "THW prosecute (in western courts) anyone who buys people out of slavery in the developing world" + }, + { + "Date": "2013-04-28T00:00:00", + "Tournament": "Cambridge Invitational", + "Round": 2, + "Motion": "THB that the Church of England should not allow the singing of Jerusalem in its services" + }, + { + "Date": "2013-04-28T00:00:00", + "Tournament": "Cambridge Invitational", + "Round": 3, + "Motion": "THW require that all marginal increases in funding for healthcare technology be spent on whatever NICE believes most cost effectively maximises Quality Adjusted Life Years." + }, + { + "Date": "2013-04-28T00:00:00", + "Tournament": "Cambridge Invitational", + "Round": "Open_Final", + "Motion": "THW create: 1) an obligation on western powers to militarily intervene in conflicts where chemical weapons are being used (regardless of UN approval), and 2) a right if major humanitarian organisations to sue governments for failure to fulfil this obligation" + }, + { + "Date": "2013-04-26T00:00:00", + "Tournament": "Jacobs Open", + "Round": 1, + "Motion": "THW remove all \"sin taxes\"" + }, + { + "Date": "2013-04-26T00:00:00", + "Tournament": "Jacobs Open", + "Round": 2, + "Motion": "TH, as US President, would grant Chinese Christian refugees asylum" + }, + { + "Date": "2013-04-26T00:00:00", + "Tournament": "Jacobs Open", + "Round": 3, + "Motion": "THBT Governments should fund and public display of art which viscerally portrays the suffering of victims created by state policies/actions (eg war, failure to go to war, poverty at home and abroad)" + }, + { + "Date": "2013-04-26T00:00:00", + "Tournament": "Jacobs Open", + "Round": 4, + "Motion": "THW only allow election campaigns to be funded by a fixed budget provided by the state" + }, + { + "Date": "2013-04-26T00:00:00", + "Tournament": "Jacobs Open", + "Round": 5, + "Motion": "TH, as the gay community, regrets the rise of Grindr in western liberal democracies" + }, + { + "Date": "2013-04-26T00:00:00", + "Tournament": "Jacobs Open", + "Round": "Open_Semis", + "Motion": "In the event of a terrorist attack by radical Islamists, THW fabricate evidence (which wouldn't be found out to be untrue) that the attack was committed by someone from the dominant (religious/ethnic) group in that society" + }, + { + "Date": "2013-04-26T00:00:00", + "Tournament": "Jacobs Open", + "Round": "Open_Final", + "Motion": "TH, as 2 atheist parents, raising their child in a homogeneous religious rural community (e.g. in Texas) would raise their child to be religious" + }, + { + "Date": "2013-04-26T00:00:00", + "Tournament": "Open de Minho", + "Round": 1, + "Motion": "THW exhibit the Ten Commandments in all public schools of the EU." + }, + { + "Date": "2013-04-26T00:00:00", + "Tournament": "Open de Minho", + "Round": 2, + "Motion": "THW aplaude that the Member States of the EU would participate in the Olympics under only one flag." + }, + { + "Date": "2013-04-26T00:00:00", + "Tournament": "Split Open", + "Round": 1, + "Motion": "In cases of politically motivated terrorist attacks, THW ban the press from disclosing any information regarding the name, background or the political motivation of the attackers" + }, + { + "Date": "2013-04-26T00:00:00", + "Tournament": "Split Open", + "Round": 2, + "Motion": "You are a single woman in her twenties. Sleeping with your boss would probably significantly advance your career. THW do it." + }, + { + "Date": "2013-04-26T00:00:00", + "Tournament": "Split Open", + "Round": 3, + "Motion": "THW force elected politicians and their families to use only public health and education services." + }, + { + "Date": "2013-04-26T00:00:00", + "Tournament": "Split Open", + "Round": 4, + "Motion": "THBT any form of conscription is a war crime" + }, + { + "Date": "2013-04-26T00:00:00", + "Tournament": "Split Open", + "Round": 5, + "Motion": "THB Croatia should stop all special treatment of the Catholic religion." + }, + { + "Date": "2013-04-26T00:00:00", + "Tournament": "Split Open", + "Round": "Open_Final", + "Motion": "Assuming the existence of the Biblical God, THW never praise him" + }, + { + "Date": "2013-04-23T00:00:00", + "Tournament": "SdDUP Debate changing Europe round 1", + "Round": 1, + "Motion": "TH applaudes that the representatives of the Member States on the European Council and on European Parliament adopt as criteria for decisions what is best for the citizens of their own countries and not what is best for the European citizens." + }, + { + "Date": "2013-04-23T00:00:00", + "Tournament": "SdDUP Debate changing Europe round 1", + "Round": 2, + "Motion": "TH (as the EU) would offer visas for residence to all immigrants and their families that have proven to have found means of subsistence." + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "Dutch National Championships", + "Round": 1, + "Motion": "THW ban all beauty pageants" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "Dutch National Championships", + "Round": 2, + "Motion": "THW abolish all exceptions to the military draft on the basis of religion, sexual orientation or gender in democratic countries that have a compulsory military draft" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "Dutch National Championships", + "Round": 3, + "Motion": "THW abolish the statute of limitations for serious crimes" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "Dutch National Championships", + "Round": 4, + "Motion": "THW use military force to destroy North Korea’s nuclear facilities" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "Dutch National Championships", + "Round": 5, + "Motion": "THW bring the Greek debt back to healthy European standards by a one-off wealth taxation of Greek’s rich." + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "Dutch National Championships", + "Round": "Open_Quarters", + "Motion": "THBT Dutch labour unions should agree to a structural decrease in pay for older employees" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "Dutch National Championships", + "Round": "Open_Semis", + "Motion": "THW offer all citizens, upon request, a second chance" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "Dutch National Championships", + "Round": "Open_Final", + "Motion": "After a military intervention to bring down a dictator, THW put a new dictator in place who is the best possible candidate" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships North-East", + "Round": 1, + "Motion": "Should we allow the police to use racial profiling?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships North-East", + "Round": 2, + "Motion": "Should we put a limit to the time parties can be in parliament?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships North-East", + "Round": 3, + "Motion": "Should selfishness be proscribed?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships North-East", + "Round": 4, + "Motion": "It is 1952. Should the Bundersrepublik Deutschland agree to the Stalin-Note?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships North-East", + "Round": "Open_Semis", + "Motion": "Should the country grant bravery medals to drone soldiers?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships North-East", + "Round": "Open_Final", + "Motion": "Should same-sex couples receive full adoption rights?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships South (Austria and Switzerland)", + "Round": 1, + "Motion": "Should exile be reinstated as a form of punishment?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships South (Austria and Switzerland)", + "Round": 2, + "Motion": "Should we abolish all family (welfare) benefits in exchange for a one-off children premium of 100.000 Euros?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships South (Austria and Switzerland)", + "Round": 3, + "Motion": "Should all Members of Parliament be selected, not through elections, but through a lottery from among all citizens?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships South (Austria and Switzerland)", + "Round": "Open_Semis", + "Motion": "Should journalists hand the Offshore-Leaks data to the competent authorities?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships South (Austria and Switzerland)", + "Round": "Open_Final", + "Motion": "Should same-sex couples receive full adoption rights?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships West", + "Round": 1, + "Motion": "Should we abolish the balancing of federal budgets (Länderfinanzausgleich)?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships West", + "Round": 2, + "Motion": "Should the candidate for Chancellor of a party be elected by all party members?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships West", + "Round": 3, + "Motion": "Do we need the meatfree Monday?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships West", + "Round": 4, + "Motion": "Should Germany disarm completely?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships West", + "Round": "Open_Semis", + "Motion": "Should the special status of churches under labour law be abolished?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "German Regional Championships West", + "Round": "Open_Final", + "Motion": "Should same-sex couples receive full adoption rights?" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "Hull Open", + "Round": 1, + "Motion": "THW ban industrial action in time of economic recession" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "Hull Open", + "Round": 2, + "Motion": "THW ban all media (such as music, films and video games) which glorify misogyny" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "Hull Open", + "Round": 3, + "Motion": "THW end the use of armed drones in counter-terrorism operations" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "Hull Open", + "Round": 4, + "Motion": "THBT in emerging democracies with a history of female oppression, women should be granted two votes" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "Hull Open", + "Round": "Open_Final", + "Motion": "THBT western governments should cease all diplomatic,economic and military ties with the Bahrain government and support the opposition movement" + }, + { + "Date": "2013-04-20T00:00:00", + "Tournament": "John Smith Memorial Mace International Final", + "Round": "Open_Final", + "Motion": "This House Would Make the Use of Unmanned Military Attack Vehicles a War Crime" + }, + { + "Date": "2013-04-19T00:00:00", + "Tournament": "Nordic Debating Championships", + "Round": 1, + "Motion": "THW criminalise adultery" + }, + { + "Date": "2013-04-19T00:00:00", + "Tournament": "Nordic Debating Championships", + "Round": 2, + "Motion": "THW have a standing policy of conducting air strikes on government buildings of states which are implicated in the massacre of their own citizens" + }, + { + "Date": "2013-04-19T00:00:00", + "Tournament": "Nordic Debating Championships", + "Round": 3, + "Motion": "THW set up an online voting system for citizens to directly choose the distribution of a specified portion of the national budget" + }, + { + "Date": "2013-04-19T00:00:00", + "Tournament": "Nordic Debating Championships", + "Round": 4, + "Motion": "THW offer terminally ill patients the option of a cash grant if they forgo treatment and consent to early euthanasia" + }, + { + "Date": "2013-04-19T00:00:00", + "Tournament": "Nordic Debating Championships", + "Round": 5, + "Motion": "THW make development aid conditional on recipient states adopting a one-child policy" + }, + { + "Date": "2013-04-19T00:00:00", + "Tournament": "Nordic Debating Championships", + "Round": "Open_Semis", + "Motion": "THW ban the publication of images of terrorist atrocities" + }, + { + "Date": "2013-04-19T00:00:00", + "Tournament": "Nordic Debating Championships", + "Round": "Open_Final", + "Motion": "THW impose a tax on men to reduce the gender pay gap" + }, + { + "Date": "2013-04-17T00:00:00", + "Tournament": "Coimbra Debate changing Europe round", + "Round": 1, + "Motion": "THW give a higher child subsidies to couples composed by persons from different Member States of the EU." + }, + { + "Date": "2013-04-17T00:00:00", + "Tournament": "Coimbra Debate changing Europe round", + "Round": 2, + "Motion": "THW make mandatory that all European treaties would be submitted to a referendum under only one electoral cycle." + }, + { + "Date": "2013-04-17T00:00:00", + "Tournament": "UTAD Debate changing Europe round", + "Round": 1, + "Motion": "THW give a higher child subsidies to couples composed by persons from different Member States of the EU." + }, + { + "Date": "2013-04-17T00:00:00", + "Tournament": "UTAD Debate changing Europe round", + "Round": 2, + "Motion": "THBT the Common Agricultural Policy harmed the national agricultures." + }, + { + "Date": "2013-04-13T00:00:00", + "Tournament": "HSE Open", + "Round": 1, + "Motion": "THW legally bind children to take care of their parents once the parents reach old age." + }, + { + "Date": "2013-04-13T00:00:00", + "Tournament": "HSE Open", + "Round": 2, + "Motion": "This house would erect a memorial statue for President Ronald Reagan in the red Square." + }, + { + "Date": "2013-04-13T00:00:00", + "Tournament": "HSE Open", + "Round": 3, + "Motion": "TH, as a feminist, would marry a closeted homosexual in order to help him keep his sexual identity secret." + }, + { + "Date": "2013-04-13T00:00:00", + "Tournament": "HSE Open", + "Round": 4, + "Motion": "THW, as Russia, offer all Western European millionaires a low tax asylum and full Citizenship in the Russian federation." + }, + { + "Date": "2013-04-13T00:00:00", + "Tournament": "HSE Open", + "Round": 5, + "Motion": "THW abolish NATO" + }, + { + "Date": "2013-04-13T00:00:00", + "Tournament": "HSE Open", + "Round": "Open_Semis", + "Motion": "THBT the state should never ever fund the arts or cultural activities." + }, + { + "Date": "2013-04-13T00:00:00", + "Tournament": "HSE Open", + "Round": "Open_Final", + "Motion": "You are a member of the Pussy Riots. You are presented with a fail safe plan to runaway from prison and start a relatively comfortable life in the west. THW stay in prison." + }, + { + "Date": "2013-04-12T00:00:00", + "Tournament": "Estonian Open", + "Round": 1, + "Motion": "THW provide the disabled access to sex workers as part of national health care" + }, + { + "Date": "2013-04-12T00:00:00", + "Tournament": "Estonian Open", + "Round": 2, + "Motion": "THW pay mercenaries to assassinate Kim Jong-un." + }, + { + "Date": "2013-04-12T00:00:00", + "Tournament": "Estonian Open", + "Round": 3, + "Motion": "THBT governments should actively discourage consumerist lifestyles" + }, + { + "Date": "2013-04-12T00:00:00", + "Tournament": "Estonian Open", + "Round": 4, + "Motion": "TH regrets the EU Troika’s reliance on mainly austerity measures as a solution for at risk Eurozone economies." + }, + { + "Date": "2013-04-12T00:00:00", + "Tournament": "Estonian Open", + "Round": 5, + "Motion": "THW make failure to render reasonable assistance to a person in distress a criminal offence." + }, + { + "Date": "2013-04-12T00:00:00", + "Tournament": "Estonian Open", + "Round": "Open_Semis", + "Motion": "THBT feminist organisations should not use nudity as a tactic for pursuing their aims" + }, + { + "Date": "2013-04-12T00:00:00", + "Tournament": "Estonian Open", + "Round": "Open_Final", + "Motion": "TH Regrets the strong social norms in favour of lifelong monogamy." + }, + { + "Date": "2013-04-12T00:00:00", + "Tournament": "Potsdam Puls Punk", + "Round": 1, + "Motion": "Should we teach beggars profitable street arts?" + }, + { + "Date": "2013-04-12T00:00:00", + "Tournament": "Potsdam Puls Punk", + "Round": 2, + "Motion": "Should HIV-infected people be forced to take a pill that would kill them within three days?" + }, + { + "Date": "2013-04-12T00:00:00", + "Tournament": "Potsdam Puls Punk", + "Round": 3, + "Motion": "Should the state give up on shrinking villages?" + }, + { + "Date": "2013-04-12T00:00:00", + "Tournament": "Potsdam Puls Punk", + "Round": 4, + "Motion": "Should sexual acts with robots be banned, as soon as these are physically comparable to human beings?" + }, + { + "Date": "2013-04-12T00:00:00", + "Tournament": "Potsdam Puls Punk", + "Round": 5, + "Motion": "Should people with more children be allowed to enter retirement earlier?" + }, + { + "Date": "2013-04-12T00:00:00", + "Tournament": "Potsdam Puls Punk", + "Round": "Open_Semis", + "Motion": "Should scientific writings be freely available?" + }, + { + "Date": "2013-04-12T00:00:00", + "Tournament": "Potsdam Puls Punk", + "Round": "Open_Final", + "Motion": "Should the internet be closed on Sundays?" + }, + { + "Date": "2013-04-10T00:00:00", + "Tournament": "Transatlantic Debating Championships", + "Round": "Open_Semi_1", + "Motion": "THBT French millionaires should escape to England" + }, + { + "Date": "2013-04-10T00:00:00", + "Tournament": "Transatlantic Debating Championships", + "Round": "Open_Semi_2", + "Motion": "THB America has no culture" + }, + { + "Date": "2013-04-10T00:00:00", + "Tournament": "Transatlantic Debating Championships", + "Round": "Open_Semi_3", + "Motion": "THB France should be more German" + }, + { + "Date": "2013-04-10T00:00:00", + "Tournament": "Transatlantic Debating Championships", + "Round": "Open_Final", + "Motion": "THB Germany should let Europe die" + }, + { + "Date": "2013-04-06T00:00:00", + "Tournament": "Paris Open", + "Round": 1, + "Motion": "TH, as commissioner Gordon, would never use the bat signal." + }, + { + "Date": "2013-04-06T00:00:00", + "Tournament": "Paris Open", + "Round": 2, + "Motion": "TH, as the French Parliament, would not have recognised the Armenian Genocide" + }, + { + "Date": "2013-04-06T00:00:00", + "Tournament": "Paris Open", + "Round": 3, + "Motion": "THW choose a comprehensive education system where the only selection process is geographical location and NOT intelligence, ability or talent" + }, + { + "Date": "2013-04-06T00:00:00", + "Tournament": "Paris Open", + "Round": 4, + "Motion": "TH welcomes the anglicization of the French language" + }, + { + "Date": "2013-04-06T00:00:00", + "Tournament": "Paris Open", + "Round": "Open_Semis", + "Motion": "It is 1945. THW create a Jewish state in Western Europe instead of the Middle East" + }, + { + "Date": "2013-04-06T00:00:00", + "Tournament": "Paris Open", + "Round": "Open_Final", + "Motion": "Given the technology, THW, as a genius, use this technology to reduce its intelligence to become “normal”" + }, + { + "Date": "2013-04-05T00:00:00", + "Tournament": "DCU Open", + "Round": 1, + "Motion": "THW allow individuals to opt out of employment provisions relating to health and safety in return for increased pay" + }, + { + "Date": "2013-04-05T00:00:00", + "Tournament": "DCU Open", + "Round": 2, + "Motion": "THW allow sex offenders to choose to undergo castration in return for a considerably shorter sentence" + }, + { + "Date": "2013-04-05T00:00:00", + "Tournament": "DCU Open", + "Round": 3, + "Motion": "THW ban serving military generals from talking to the media" + }, + { + "Date": "2013-04-05T00:00:00", + "Tournament": "DCU Open", + "Round": 4, + "Motion": "THBT children in the West Bank should be educated in integrated schools (integrated school is one where students sit in the same classroom and share all facilities irrespective of background (including religion, culture or ethnicity))" + }, + { + "Date": "2013-04-05T00:00:00", + "Tournament": "DCU Open", + "Round": 5, + "Motion": "THBT in reducing its budget deficit, Ireland should prioritise cutting welfare to an absolute minimum rather than increasing taxes and cutting services" + }, + { + "Date": "2013-04-05T00:00:00", + "Tournament": "DCU Open", + "Round": "Open_Semis", + "Motion": "TH,as the US Republican Party,would end the use of primaries to select their presidential nominee" + }, + { + "Date": "2013-04-05T00:00:00", + "Tournament": "DCU Open", + "Round": "Open_Final", + "Motion": "TH supports Belfast City Council's decision to restrict the flying of the Union Jack outside Belfast City Hall" + }, + { + "Date": "2013-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 1, + "Motion": "THW allow legislation through voter initiated referenda." + }, + { + "Date": "2013-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 2, + "Motion": "THW establish a US federal court with the authority to approve targeted killings of unlawful combatants." + }, + { + "Date": "2013-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 3, + "Motion": "THW prohibit provincial and local governments from offering tax incentives to lure corporations to open business in their domain." + }, + { + "Date": "2013-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 4, + "Motion": "THBT the discovery of a means to stop the human aging process would be a curse to humanity." + }, + { + "Date": "2013-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": 5, + "Motion": "THBT governments should use corporal punishment instead of incarceration for a significant number of crimes." + }, + { + "Date": "2013-04-01T00:00:00", + "Tournament": "HWS Round Robin", + "Round": "Open_Finals", + "Motion": "THS diversity quotas for university admissions." + }, + { + "Date": "2013-03-30T00:00:00", + "Tournament": "Heriot Watt Open", + "Round": 1, + "Motion": "THBT the salaries and the continuation of employment of teachers should be dependent on the academic performance of their students" + }, + { + "Date": "2013-03-30T00:00:00", + "Tournament": "Heriot Watt Open", + "Round": 2, + "Motion": "THBT: The international community should support a one-state solution to the Israel-Palestine conflict" + }, + { + "Date": "2013-03-30T00:00:00", + "Tournament": "Heriot Watt Open", + "Round": 3, + "Motion": "THW: Ban Political Opinion Polls" + }, + { + "Date": "2013-03-30T00:00:00", + "Tournament": "Heriot Watt Open", + "Round": 4, + "Motion": "“to secure for the workers by hand or by brain the full fruits of their industry and the most equitable distribution thereof that may be possible upon the basis of the common ownership of the means of production, distribution and exchange and the best attainable system of popular administration and control of each industry or service” (clause 4, part 4)Clause 4 as a whole was the symbol of the Labour Party’s commitment to “public ownership” and the Party’s principled opposition to market capitalism. Clause 4 was abolished under the leadership of Tony Blair at a special party conference in Easter 1995. Motion: THBT the Labour party should not have revoked Clause 4" + }, + { + "Date": "2013-03-30T00:00:00", + "Tournament": "Heriot Watt Open", + "Round": "Open_Final", + "Motion": "THBT the Democratic Party should give up their attempts to regulate firearms and openly seek the complete abolition of firearms (approximate wording)" + }, + { + "Date": "2013-03-30T00:00:00", + "Tournament": "Kent IV", + "Round": 1, + "Motion": "THBT all corporations should become workers' co-operatives." + }, + { + "Date": "2013-03-30T00:00:00", + "Tournament": "Kent IV", + "Round": 2, + "Motion": "THW require the consent of the subjects before publishing photographs of celebrities" + }, + { + "Date": "2013-03-30T00:00:00", + "Tournament": "Kent IV", + "Round": 3, + "Motion": "THBT feminists should support free markets in the developing world/" + }, + { + "Date": "2013-03-30T00:00:00", + "Tournament": "Kent IV", + "Round": 4, + "Motion": "THW vote to acquit and attempt to persuade other jurors to do the same" + }, + { + "Date": "2013-03-29T00:00:00", + "Tournament": "St Petersburg Debating Open", + "Round": 1, + "Motion": "THBT parents of underaged children should not drink alcohol" + }, + { + "Date": "2013-03-29T00:00:00", + "Tournament": "St Petersburg Debating Open", + "Round": 2, + "Motion": "THW set up brothels in military bases" + }, + { + "Date": "2013-03-29T00:00:00", + "Tournament": "St Petersburg Debating Open", + "Round": 3, + "Motion": "THW Make US military aid to Israel dependent on Israel accepting the two-state solution" + }, + { + "Date": "2013-03-29T00:00:00", + "Tournament": "St Petersburg Debating Open", + "Round": 4, + "Motion": "THW force state officials to keep all their financial assets in domestic banks" + }, + { + "Date": "2013-03-29T00:00:00", + "Tournament": "St Petersburg Debating Open", + "Round": 5, + "Motion": "THBT police officers should pose as children on social networking sites to entrap paedophiles" + }, + { + "Date": "2013-03-29T00:00:00", + "Tournament": "St Petersburg Debating Open", + "Round": "Open_Semis", + "Motion": "THW ban all individuals who have advocated or used violence in order to further a political cause in emerging democratic states, from standing for future elections" + }, + { + "Date": "2013-03-29T00:00:00", + "Tournament": "St Petersburg Debating Open", + "Round": "Open_Final", + "Motion": "THBT the state has no responsibility in protecting intellectual property rights" + }, + { + "Date": "2013-03-25T00:00:00", + "Tournament": "French Debating Association Final", + "Round": "Open_Final", + "Motion": "This House Still Believes in \"Liberty, Equality, Fraternity\"" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Estonian BP Championships", + "Round": 1, + "Motion": "THW arm Syrian rebels" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Estonian BP Championships", + "Round": 2, + "Motion": "THBT the state should support home ownership" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Estonian BP Championships", + "Round": 3, + "Motion": "THBT the International Olympic Committee should ban all athletes who express hostile views towards racial, ethnic or sexual minorities from participating" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Estonian BP Championships", + "Round": 4, + "Motion": "THW stop funding all space programs" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Estonian BP Championships", + "Round": 5, + "Motion": "THBT parents have a moral obligation not to consume alcohol" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Estonian BP Championships", + "Round": "Open_Semis", + "Motion": "THBT that extraordinary taxation of saving deposits in times of crisis is justified" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Estonian BP Championships", + "Round": "Open_Final", + "Motion": "THBT people should only be allowed to work in state or local government agencies for a maximum of 5 years" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Exeter Open", + "Round": 1, + "Motion": "THBT Western liberal democracies should ban unpaid internships" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Exeter Open", + "Round": 2, + "Motion": "TH supports the decision to stop British development aid to India" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Exeter Open", + "Round": 3, + "Motion": "THBT states should never protect dying languages" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Exeter Open", + "Round": 4, + "Motion": "THBT the use of violence can be legitimate in political protest" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Exeter Open", + "Round": "Open_Final", + "Motion": "TH supports the creation of a feminist political party" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Mykolas Romeris University (MRU) IV", + "Round": 1, + "Motion": "THW require all social networks that offer services to minors to offer parents full unlimited access to their children's accounts" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Mykolas Romeris University (MRU) IV", + "Round": 2, + "Motion": "THBT the entire European Union should adopt the ban on communist symbols" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Mykolas Romeris University (MRU) IV", + "Round": 3, + "Motion": "THBT Lithuania should recognise Polish as an official language in municipalities with significant populations of ethnic Poles" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Mykolas Romeris University (MRU) IV", + "Round": 4, + "Motion": "TH, which is China, would cease all political and economic support to North Korea" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Mykolas Romeris University (MRU) IV", + "Round": 5, + "Motion": "THW force employers to allow their employees to work from home whenever physically possible" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Mykolas Romeris University (MRU) IV", + "Round": "Open_Semis", + "Motion": "THW allow the deliberate targeting of civilians in war, where it would significantly reduce casualties in the long term" + }, + { + "Date": "2013-03-23T00:00:00", + "Tournament": "Mykolas Romeris University (MRU) IV", + "Round": "Open_Final", + "Motion": "TH, as Cyprus, would ask Russia for its bailout" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Irish National Maidens", + "Round": 1, + "Motion": "THB the pope should be elected by all members of the Catholic Church" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Irish National Maidens", + "Round": 2, + "Motion": "THW introduce ethnic and gender quotas for film and television programs" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Irish National Maidens", + "Round": 3, + "Motion": "THW not grant amnesty to people who commit atrocities in conflicts" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Irish National Maidens", + "Round": 4, + "Motion": "THW allow soldiers to volunteer for experimental genetic and physical modifications" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Irish National Maidens", + "Round": 5, + "Motion": "THW prosecute the perpetrators of domestic violence without the victim's consent" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Irish National Maidens", + "Round": "Open_Semis", + "Motion": "THW die for a cause" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Irish National Maidens", + "Round": "Open_Final", + "Motion": "THBT celebrating housewives impedes the feminist movement" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Leiden Open", + "Round": 1, + "Motion": "THW criminalize gang membership." + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Leiden Open", + "Round": 2, + "Motion": "THBT adoption agencies should seek to place children in families with a similar culture to that of their biological parents." + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Leiden Open", + "Round": 3, + "Motion": "THW require re-ratification of all international treaties, including the EU, by popular referenda every decade." + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Leiden Open", + "Round": 4, + "Motion": "THBT the international community should treat espionage as a justification for military retaliation." + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Leiden Open", + "Round": 5, + "Motion": "THBT the news media should also represent the criminal’s point of view when reporting on criminal convictions." + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Leiden Open", + "Round": "Open_Semis", + "Motion": "THBT the LGBT rights movement should abandon the ‘born this way’ campaign. (Info: ‘Some people believe that they were born LGBT, some LGBT people believe that it is a choice that they made. Currently, the LGBT movement uses being ‘Born this way’ as a way of legitimising equal rights.’)" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Leiden Open", + "Round": "Open_Final", + "Motion": "In times of war, THBT relatives of civilians killed by the military occupation, should be able to sue the soldiers responsible for their relative’s death in civilian court." + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Zalgiris Cup", + "Round": 1, + "Motion": "THW give only temporary marriage lines" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Zalgiris Cup", + "Round": 2, + "Motion": "THW require all isolated religious communities (eg. Hasidic Jews, Jehova's Witnesses) to give all 18-year-olds a 'Rumspringa' [Amish tradition of sending off 18-y.-olds to live in outside world for 1 year, after which they may chose to return or not]" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Zalgiris Cup", + "Round": 3, + "Motion": "THBT South Korea should have nuclear weapon" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Zalgiris Cup", + "Round": 4, + "Motion": "THW make companies pay taxes equal to their influence on the environment" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Zalgiris Cup", + "Round": 5, + "Motion": "THW allow police to provoke citizens for committing crimes" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Zalgiris Cup", + "Round": "Open_Semis", + "Motion": "THW give citizens negative votes on general elections" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Zalgiris Cup", + "Round": "Open_Final", + "Motion": "THBT organized religion causes more harm than good" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Zeit Debatte Marburg", + "Round": 1, + "Motion": "THW allow the use of bounty hunters" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Zeit Debatte Marburg", + "Round": 2, + "Motion": "THBT Cuba should prioritise the implementation of capitalism over the implementation of democracy" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Zeit Debatte Marburg", + "Round": 3, + "Motion": "THW not give out separate art prizes (like the Oscars) for men and women" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Zeit Debatte Marburg", + "Round": 4, + "Motion": "THBT patriotism is a virtue" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Zeit Debatte Marburg", + "Round": 5, + "Motion": "THB in a human right to suicide" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Zeit Debatte Marburg", + "Round": "Open_Semis", + "Motion": "THW abolish all limits on the heights of buildings" + }, + { + "Date": "2013-03-22T00:00:00", + "Tournament": "Zeit Debatte Marburg", + "Round": "Open_Final", + "Motion": "THW abolish all anonymity for sperm donation" + }, + { + "Date": "2013-03-21T00:00:00", + "Tournament": "Feminism and Gender Tournament", + "Round": 1, + "Motion": "THW ban marriage." + }, + { + "Date": "2013-03-21T00:00:00", + "Tournament": "Feminism and Gender Tournament", + "Round": 2, + "Motion": "TH, which is a woman, would not make any cosmetic changes to her appearance, including but not limited to makeup, shaving, and plastic surgeries ." + }, + { + "Date": "2013-03-21T00:00:00", + "Tournament": "Feminism and Gender Tournament", + "Round": 3, + "Motion": "THW ban all presentations of the 10th commandment in all Israeli School systems." + }, + { + "Date": "2013-03-21T00:00:00", + "Tournament": "Feminism and Gender Tournament", + "Round": "Open_Final", + "Motion": "TH, which is a female debater, would participate in next year's Glasgow Ancients." + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "THW ban teenagers from using Facebook" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "THW choose immortality over fertility" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "THBT Simba should not go back" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "THBT Bilbo should have killed Gollum when he had the chance" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "THBT all politicians should be celibate" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "THW ban advertising" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "THBT charity is immoral" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 1, + "Motion": "THW kill its best friend when s/he is about to become a zombie" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "THW build a second Deathstar" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "THBT children under 18 with close relatives who are victims of FGM should not be allowed to travel outside the EU" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "THW ban Google Glasses" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "THW discourage people with genetic diseases from having children and prioritise them in terms of adoption" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "THW replace juries with panels of philosophers who will decide cases purely on utilitarian grounds" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "THW not give aliens the vote (aliens live alongside humans 1 year from now)" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "THB feminists should oppose capitalism" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 2, + "Motion": "THBT the feminist movement should oppose the banning of the burqa" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "THBT the Pope Francis should make an ex-cathedra statement to the effect that all Catholics must support socialism" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "THW give the Roma a homeland" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "THW build a deathstar" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "As an omipotent, omniscient god, THW smite people who commit serious crimes and who we know will feel no remorse" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "THW bring back public corporal punishment for smaller crimes" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "THW make higher education free" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "THW abolish the speaker tab" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 3, + "Motion": "THW fully replace agriculture and fishing with stem cell production to produce food" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "THW require priests to report confessions that lead to criminal convictions" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "You are an Israeli nuclear submarine commander. You learn that Israel has been wiped out by an iranian nuclear strike. THW return Fire" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "THW link Job Seekers Allowance to previous income" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "THW not become a superhero" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "THW encourage replacing human body parts with advanced robotic counterparts" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "THW build 500,000 social homes in the London Greenbelt" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "THW wipe the memories of those convicted very serious crimes and replace them with more positive memories" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": 4, + "Motion": "THW require universities to increase funding for classics and deprioritise funding for popular culture choices" + }, + { + "Date": "2013-03-17T00:00:00", + "Tournament": "Royal Holloway Open", + "Round": "Open_Final", + "Motion": "In world that has eradicated racism, THW prefer that people were/were not able to recognise differences in physical appearance" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Berlin-Brandenburgischen-Meisterschaften (Championships)", + "Round": 1, + "Motion": "Should corporations be forced, in case of layoffs, to always lay off those workers with the best chances on the labour market?" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Berlin-Brandenburgischen-Meisterschaften (Championships)", + "Round": 2, + "Motion": "Should the prosecution and defence in criminal cases no longer be able to make deals?" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Berlin-Brandenburgischen-Meisterschaften (Championships)", + "Round": 3, + "Motion": "Should a word, that one group feels is discriminating, no longer be used by that same group either?" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Berlin-Brandenburgischen-Meisterschaften (Championships)", + "Round": 4, + "Motion": "Should secret services produce pictures of despots that change their reputation and distribute those in the countries of these despots?" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Berlin-Brandenburgischen-Meisterschaften (Championships)", + "Round": "Open_Final", + "Motion": "Should a state be excluded from the EU when its politics go against the basic values of the EU?" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Bucharest Universities Debating Cup", + "Round": 1, + "Motion": "THBT the Romanian state should cut all ties to all churches" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Bucharest Universities Debating Cup", + "Round": 2, + "Motion": "THW abolish the institution of the criminal record" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Bucharest Universities Debating Cup", + "Round": 3, + "Motion": "In a run-off for the Romanian Presidency, HW rather vote for Gigi Becali than Corneliu Vadim Tudor (Romanian extremist politicians)" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Bucharest Universities Debating Cup", + "Round": 4, + "Motion": "THW fight for the reunification of Romania with the Republic of Moldova" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Bucharest Universities Debating Cup", + "Round": 5, + "Motion": "Given easily accessible technology to choose the sex of a future child, THW give financial stimulants to parents that choose to have girls" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Bucharest Universities Debating Cup", + "Round": "Novice_Final", + "Motion": "THW ban the popular vote in talent shows:" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Bucharest Universities Debating Cup", + "Round": "Open_Semis", + "Motion": "THW pardon Bashar al-Assad for all his crimes in exchange for him stepping down from power" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Bucharest Universities Debating Cup", + "Round": "Open_Final", + "Motion": "THBT in times of economic recession, European states, don't spend enough" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Czech and Slovak Championships", + "Round": 1, + "Motion": "THW reinstitute the Czecho-Slovak federation." + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Czech and Slovak Championships", + "Round": 2, + "Motion": "THW send top teachers to weakest schools." + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Czech and Slovak Championships", + "Round": 3, + "Motion": "THW constitutionally cap the government deficit at 3% of GDP." + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Czech and Slovak Championships", + "Round": 4, + "Motion": "THW ban pornography." + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Czech and Slovak Championships", + "Round": "Open_Semis", + "Motion": "THW let Iran develop nuclear weapons." + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "Czech and Slovak Championships", + "Round": "Open_Final", + "Motion": "THW enable directly elected heads of state to, at their own initiative, dismiss government cabinets or their individual members." + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Open_Final", + "Round": "Open_Final", + "Motion": "THW not have children" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "UCL IV", + "Round": 1, + "Motion": "THW legalise the private sale of organs" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "UCL IV", + "Round": 2, + "Motion": "TH, as a feminist parent, would deliberately undermine its child's gender." + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "UCL IV", + "Round": 3, + "Motion": "TH welcomes the creation of strong forms of artificial intelligence" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "UCL IV", + "Round": 4, + "Motion": "THB that it is morally permissible to target civilians in times of war" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "UCL IV", + "Round": "Open_Semis", + "Motion": "THBT American politicians should not use the language of American Exceptionalism" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "UCL IV", + "Round": "Open_Final", + "Motion": "TH Regrets the rise of Reality Television" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "VUAS Debate Tournament", + "Round": 1, + "Motion": "THW make the Internet a public good" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "VUAS Debate Tournament", + "Round": 2, + "Motion": "THW prohibit underaged from entering religious organizations" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "VUAS Debate Tournament", + "Round": 3, + "Motion": "THW ban professors/teachers from communicating with students/schoolchildren in social networks" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "VUAS Debate Tournament", + "Round": 4, + "Motion": "THW allow the use of negative competitor image in advertisement" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "VUAS Debate Tournament", + "Round": 5, + "Motion": "THW include debating into school curriculum" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "VUAS Debate Tournament", + "Round": "Open_Semis", + "Motion": "THW allow to participate in general election only those people with IQ above a certain level" + }, + { + "Date": "2013-03-16T00:00:00", + "Tournament": "VUAS Debate Tournament", + "Round": "Open_Final", + "Motion": "THBT the government should be blamed for slow economic growth" + }, + { + "Date": "2013-03-11T00:00:00", + "Tournament": "NAUDC (also Hart House IV)", + "Round": 1, + "Motion": "THW require all criminal defendants to use a government-provided lawyer." + }, + { + "Date": "2013-03-11T00:00:00", + "Tournament": "NAUDC (also Hart House IV)", + "Round": 2, + "Motion": "THW withhold government funding from indigenous bands or tribal councils that do not have a democratic form of government." + }, + { + "Date": "2013-03-11T00:00:00", + "Tournament": "NAUDC (also Hart House IV)", + "Round": 3, + "Motion": "THW aggressively prioritize the posting of female diplomats to countries with poor women's rights records." + }, + { + "Date": "2013-03-11T00:00:00", + "Tournament": "NAUDC (also Hart House IV)", + "Round": 4, + "Motion": "THBT Pakistan should sincerely pursue peace talks with the Pakistani Taliban." + }, + { + "Date": "2013-03-11T00:00:00", + "Tournament": "NAUDC (also Hart House IV)", + "Round": 5, + "Motion": "THW not grant developing countries the right to host major sporting events." + }, + { + "Date": "2013-03-11T00:00:00", + "Tournament": "NAUDC (also Hart House IV)", + "Round": "Novice_Finals", + "Motion": "THW extend the right to vote in Israeli elections to all Jews everywhere, including those who live outside of Israel." + }, + { + "Date": "2013-03-11T00:00:00", + "Tournament": "NAUDC (also Hart House IV)", + "Round": "Open_Quarters", + "Motion": "THBT white entertainers should refrain from using cultural modes of expression that come from minority cultures." + }, + { + "Date": "2013-03-11T00:00:00", + "Tournament": "NAUDC (also Hart House IV)", + "Round": "Open_Semis", + "Motion": "THBT all major daily newspapers and TV news channels should be required to treat all controversial issues with due accuracy and impartiality." + }, + { + "Date": "2013-03-11T00:00:00", + "Tournament": "NAUDC (also Hart House IV)", + "Round": "Open_Finals", + "Motion": "THBT religious leaders should not endorse candidates for political office." + }, + { + "Date": "2013-03-09T00:00:00", + "Tournament": "Leeds Open", + "Round": 1, + "Motion": "THW require internet users to disclose their identities" + }, + { + "Date": "2013-03-09T00:00:00", + "Tournament": "Leeds Open", + "Round": 2, + "Motion": "On the 10th Anniversary, TH does not regret the decision to invade Iraq." + }, + { + "Date": "2013-03-09T00:00:00", + "Tournament": "Leeds Open", + "Round": 3, + "Motion": "TH, as the board of Zenit St. Petersburg, would preference players with Slavic ethnicity, in order to respect the wishes of the fans" + }, + { + "Date": "2013-03-09T00:00:00", + "Tournament": "Leeds Open", + "Round": 4, + "Motion": "THBT Conservative MPs should not have been given a free vote on the Marriage (same sex couples) Bill" + }, + { + "Date": "2013-03-09T00:00:00", + "Tournament": "Leeds Open", + "Round": 5, + "Motion": "THW require individuals to donate 75% of their annual income above £1 million to charity" + }, + { + "Date": "2013-03-09T00:00:00", + "Tournament": "Leeds Open", + "Round": "Novice_Final", + "Motion": "THW sentence repeat offenders to life imprisonment" + }, + { + "Date": "2013-03-09T00:00:00", + "Tournament": "Leeds Open", + "Round": "Open_Semis", + "Motion": "In post-conflict societies, THBT that justice is better served by TRCs (Truth and Reconciliation Committees) than by prosecution of perpetrators of attrocities other than the leaders" + }, + { + "Date": "2013-03-09T00:00:00", + "Tournament": "Leeds Open", + "Round": "Open_Final", + "Motion": "TH regrets the acceptance of Atheism in the form promoted by Richard Dawkins in The God Delusion" + }, + { + "Date": "2013-03-09T00:00:00", + "Tournament": "Southampton Open", + "Round": 1, + "Motion": "THW put a high minimum price on meat." + }, + { + "Date": "2013-03-09T00:00:00", + "Tournament": "Southampton Open", + "Round": 2, + "Motion": "THBT schools should teach sex positive sex education (ie techniques for sexual gratification) in secondary schools." + }, + { + "Date": "2013-03-09T00:00:00", + "Tournament": "Southampton Open", + "Round": 3, + "Motion": "TH regrets the rise of Marxism in Latin America" + }, + { + "Date": "2013-03-09T00:00:00", + "Tournament": "Southampton Open", + "Round": 4, + "Motion": "THW make the next James Bond gay" + }, + { + "Date": "2013-03-09T00:00:00", + "Tournament": "Southampton Open", + "Round": "Open_Final", + "Motion": "THBT Israel should give East Jerusalem to the Palestinians" + }, + { + "Date": "2013-03-08T00:00:00", + "Tournament": "Vienna IV", + "Round": 1, + "Motion": "THBT juries should only include individuals that are from the same socio-economic class as the defendant" + }, + { + "Date": "2013-03-08T00:00:00", + "Tournament": "Vienna IV", + "Round": 2, + "Motion": "TH, in hindsight, would still have fought the 2003 war in Iraq" + }, + { + "Date": "2013-03-08T00:00:00", + "Tournament": "Vienna IV", + "Round": 3, + "Motion": "THW, as an atheist, join an atheist church (definition: an atheist church is a congregation of non-religious people, who engage in singing, lectures and other activities. It also promotes the Manifesto for Atheists, which lists atheist virtues)" + }, + { + "Date": "2013-03-08T00:00:00", + "Tournament": "Vienna IV", + "Round": 4, + "Motion": "THBT school children in the UK should be taught that their country engaged in war crimes" + }, + { + "Date": "2013-03-08T00:00:00", + "Tournament": "Vienna IV", + "Round": 5, + "Motion": "TH, as the heir to any European throne, would refuse to become a monarch" + }, + { + "Date": "2013-03-08T00:00:00", + "Tournament": "Vienna IV", + "Round": 6, + "Motion": "THBT women are morally justified in lying about their past experiences, abilities and future family plans at a job interview or application" + }, + { + "Date": "2013-03-08T00:00:00", + "Tournament": "Vienna IV", + "Round": "Open_Semis", + "Motion": "You are an emigrant from a poor and collapsing unnamed country. You are offered full and immediate citizenship from the United States and the European Union. The offers are the only two options you have and are mutually exclusive. You do not know where you will live in either Union. Your native and only language is not spoken in either. Motion: THW emigrate to the European Union." + }, + { + "Date": "2013-03-08T00:00:00", + "Tournament": "Vienna IV", + "Round": "Open_Final", + "Motion": "THW hold a referendum among all churchgoing Catholics to elect the new Pope rather than having Cardinals elect him" + }, + { + "Date": "2013-03-07T00:00:00", + "Tournament": "French Debating Association Open_Semiss", + "Round": "Open_Semi_1", + "Motion": "THBT youth is wasted on the young" + }, + { + "Date": "2013-03-07T00:00:00", + "Tournament": "French Debating Association Open_Semiss", + "Round": "Open_Semi_2", + "Motion": "THBT you can't plan the future by the past" + }, + { + "Date": "2013-03-05T00:00:00", + "Tournament": "John Smith Memorial Mace (Ireland Open_Semis)", + "Round": "Open_Semi_1", + "Motion": "TH regrets the rise of globalisation" + }, + { + "Date": "2013-03-05T00:00:00", + "Tournament": "John Smith Memorial Mace (Ireland Open_Semis)", + "Round": "Open_Semi_2", + "Motion": "THBT individualism has failed us" + }, + { + "Date": "2013-03-02T00:00:00", + "Tournament": "Nottingham Open", + "Round": 1, + "Motion": "THW give more votes to those who live in areas with high levels of political apathy and low voter turnout" + }, + { + "Date": "2013-03-02T00:00:00", + "Tournament": "Nottingham Open", + "Round": 2, + "Motion": "THW would allow parents to microchip their children without the child's consent" + }, + { + "Date": "2013-03-02T00:00:00", + "Tournament": "Nottingham Open", + "Round": 3, + "Motion": "THW allow individuals to contract out of all basic employment provisions in their contracts (such as health & safety, unfair dismissal etc) in return for compensation." + }, + { + "Date": "2013-03-02T00:00:00", + "Tournament": "Nottingham Open", + "Round": 4, + "Motion": "THW allow individuals to sue religious organisations for compensation for the harmful effects of choices made as a result of adherence to religious doctrine" + }, + { + "Date": "2013-03-02T00:00:00", + "Tournament": "Nottingham Open", + "Round": 5, + "Motion": "THW require the creators of artistic works which depict negative stereotypes of disenfranchised groups to give a portion of their profits to those groups" + }, + { + "Date": "2013-03-02T00:00:00", + "Tournament": "Nottingham Open", + "Round": "Open_Semi", + "Motion": "THW Prosecute Irish politicians of the era for failing to take action over the abuses of the Magdalene Laundries." + }, + { + "Date": "2013-03-02T00:00:00", + "Tournament": "Nottingham Open", + "Round": "Open_Final", + "Motion": "In a possible near future world, a computer chip has been developed which can painlessly be implanted in the brain, preventing all sexual desire. At the same time, technology has advanced to the point where completely asexual human reproduction is possible. THW prefer that world to this one." + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "Budapest Open", + "Round": 0, + "Motion": "TH regrets the turn away from socialism" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "Budapest Open", + "Round": 1, + "Motion": "THW create separate state schools for those who are LGBTQ" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "Budapest Open", + "Round": 2, + "Motion": "THBT former colonial powers should never intervene militarily in their former colonies" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "Budapest Open", + "Round": 3, + "Motion": "THBT in order to continue to eat meat individuals should personally slaughter a major meat animal" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "Budapest Open", + "Round": 4, + "Motion": "THW abolish all term limitations for elected officials in high offices" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "Budapest Open", + "Round": "Open_Semis", + "Motion": "THW require all isolated religious communities to give all 18-year-olds a Rumspringa" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "Budapest Open", + "Round": "Open_Final", + "Motion": "THBT an EU institution should block websites in EU member states that use negative racial/ethnic/religious stereotypes" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "Glasgow Ancients", + "Round": 1, + "Motion": "TH, as the academic and debating communities of the UK, would not invite George Galloway to our public debates" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "Glasgow Ancients", + "Round": 2, + "Motion": "THW ban unpaid internships" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "Glasgow Ancients", + "Round": 3, + "Motion": "THW would ban the use of unarmed domestic surveillance drones" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "Glasgow Ancients", + "Round": 4, + "Motion": "THW assassinate Iranian and North Korean nuclear scientists" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "Glasgow Ancients", + "Round": 5, + "Motion": "THBT governments have no legal or moral obligation to respond with proportionate force to armed attacks on their citizens" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "Glasgow Ancients", + "Round": "Open_Semis", + "Motion": "THB the ICC should not issue warrants for suspects during ongoing conflicts" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "Glasgow Ancients", + "Round": "Open_Final", + "Motion": "TH regrets the centralisation of organised religion" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "UL Open", + "Round": 1, + "Motion": "THW allow parents of children with Klüver-Bucy syndrome to sterilise those children" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "UL Open", + "Round": 2, + "Motion": "THW make access to museums art exhibitions concerts etc. attractions free for people earning less than a certain wage" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "UL Open", + "Round": 3, + "Motion": "THW prohibit films about historical or political events,or those of a biographical nature, unless produced as documentaries" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "UL Open", + "Round": 4, + "Motion": "THB former colonial powers should maintain a presence in former colonies,in the interest of benefiting those colonies" + }, + { + "Date": "2013-03-01T00:00:00", + "Tournament": "UL Open", + "Round": 5, + "Motion": "THB emphasis on the depiction of the \"normal\" female body is no more empowerment than equal emphasis on the \"perfect\" female body" + }, + { + "Date": "2013-02-23T00:00:00", + "Tournament": "Manchester IV", + "Round": 1, + "Motion": "THBT single parents sent to prison should be able to raise their children in prison." + }, + { + "Date": "2013-02-23T00:00:00", + "Tournament": "Manchester IV", + "Round": 2, + "Motion": "TH, as Israel, would grant exemptions from compulsory military service to all and only those citizens that give up their right to vote." + }, + { + "Date": "2013-02-23T00:00:00", + "Tournament": "Manchester IV", + "Round": 3, + "Motion": "TH approves of the New York Post's decision to publish the subway photograph 'Doomed'." + }, + { + "Date": "2013-02-23T00:00:00", + "Tournament": "Manchester IV", + "Round": 4, + "Motion": "TH approves of the USA's policy of extra-judicial killing of terrorists." + }, + { + "Date": "2013-02-23T00:00:00", + "Tournament": "Manchester IV", + "Round": 5, + "Motion": "THBT at least 50% of the Legislature (Parliament) should be appointed by a socially representative random draw from the general population." + }, + { + "Date": "2013-02-23T00:00:00", + "Tournament": "Manchester IV", + "Round": "Open_Quarters", + "Motion": "THBT states should disband their armed forces and use PMCs as and when necessary" + }, + { + "Date": "2013-02-23T00:00:00", + "Tournament": "Manchester IV", + "Round": "Open_Semis", + "Motion": "THBT the unemployed, living in areas of high unemployment and low private investment, should relocate to areas where their employment is more likely in order to keep their benefits." + }, + { + "Date": "2013-02-23T00:00:00", + "Tournament": "Manchester IV", + "Round": "Open_Final", + "Motion": "THBT David Cameron was wrong to offer the British electorate a referendum on EU membership." + }, + { + "Date": "2013-02-22T00:00:00", + "Tournament": "Polish Parliamentary Debating Championships", + "Round": 1, + "Motion": "THW officially register Pastafarianism as a religion in Poland." + }, + { + "Date": "2013-02-22T00:00:00", + "Tournament": "Polish Parliamentary Debating Championships", + "Round": 2, + "Motion": "THW introduce tax cuts for qualified foreigners who want to settle in Poland." + }, + { + "Date": "2013-02-22T00:00:00", + "Tournament": "Polish Parliamentary Debating Championships", + "Round": 3, + "Motion": "THW supplement Polish Constitution with the civil right of access to the Internet." + }, + { + "Date": "2013-02-22T00:00:00", + "Tournament": "Polish Parliamentary Debating Championships", + "Round": 4, + "Motion": "THW ban advertising that invoke polishness as a value" + }, + { + "Date": "2013-02-22T00:00:00", + "Tournament": "Polish Parliamentary Debating Championships", + "Round": "Open_Semis", + "Motion": "THBT Poland should join the Eurozone as soon as possible" + }, + { + "Date": "2013-02-22T00:00:00", + "Tournament": "Polish Parliamentary Debating Championships", + "Round": "Open_Final", + "Motion": "THBT political parties should be subject to anti-monopoly laws" + }, + { + "Date": "2013-02-19T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": "Open_Quarter_1", + "Motion": "THW ban the use of artificial human augmentation, either by surgical or genetic therapy." + }, + { + "Date": "2013-02-19T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": "Open_Quarter_2", + "Motion": "THB that people who attend mass are morally responsible for the actions of the Catholic Church" + }, + { + "Date": "2013-02-19T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": "Open_Quarter_3", + "Motion": "THW allow prisoners to choose death over life sentence" + }, + { + "Date": "2013-02-19T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": "Open_Quarter_4", + "Motion": "THW ban domestic drones" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "Edinburgh IV", + "Round": 1, + "Motion": "THW withdraw all state benefits including healthcare from the voluntarily unemployed" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "Edinburgh IV", + "Round": 2, + "Motion": "THBT Student Unions should not take an explicit policy on abortion" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "Edinburgh IV", + "Round": 3, + "Motion": "THB that independent states in the developing world should be allowed to unilaterally opt to become overseas territories of their former colonial powers." + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "Edinburgh IV", + "Round": 4, + "Motion": "THW ban all individuals who have advocated or used violence in order to further a political cause in a liberal democratic state, from standing for future elections" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "Edinburgh IV", + "Round": "Open_Final", + "Motion": "THW Not Shoot the Naked Soldier" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "IDEA-DTU", + "Round": 1, + "Motion": "THW ban the production and consumption of tobacco in the European Union" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "IDEA-DTU", + "Round": 2, + "Motion": "THW make lying by politicians punishable by law" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "IDEA-DTU", + "Round": 3, + "Motion": "TH hopes the United Kingdom will leave the European Union" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "IDEA-DTU", + "Round": 4, + "Motion": "THW not pursue income redistribution beyond poverty reduction (armoedebestrijding, i.e. combatting poverty)" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "IDEA-DTU", + "Round": "Open_Semis", + "Motion": "THW make the punishment for drunk driving equal to manslaughter, even if the driver caused no accident" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "IDEA-DTU", + "Round": "Open_Final", + "Motion": "THW set a public ultimatum: if the next pope does not implement radical reforms, the Roman Catholic church will be disbanded" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "LSE Open", + "Round": 1, + "Motion": "THBT Western Liberal Democracies should institute bans on their citizens visiting illiberal states whose economies depends on tourism" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "LSE Open", + "Round": 2, + "Motion": "THW require prospective owners or large shareholders of sport clubs / teams to gain majority support from season ticket holders or other representatives of the fan base to complete their acquisition" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "LSE Open", + "Round": 3, + "Motion": "THW make conscription a war crime" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "LSE Open", + "Round": 4, + "Motion": "THW require close relatives of the homeless to pay their welfare costs to the extent that they can afford to do so" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "LSE Open", + "Round": 5, + "Motion": "THW allocate state funding for the arts exclusively to new and original work, and never to reproductions of ‘great works’ or other old plays, opera, music, films or art" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "LSE Open", + "Round": "ESL_Final", + "Motion": "This House would allow pro-life organisations to offer to pay women considering abortions to carry the baby to term (assuming adequate child support services exist)" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "LSE Open", + "Round": "Open_Quarters", + "Motion": "THBT the International Criminal Court should focus on indicting and prosecuting larger numbers of middle-to-low ranking suspects for war crimes, crimes against humanity, or genocide, rather than smaller numbers of high ranking suspects" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "LSE Open", + "Round": "Open_Semis", + "Motion": "This House believes that the civil and criminal legal system has no business considering or regulating behaviour that exclusively occurs in online virtual worlds such as ‘Second Life’" + }, + { + "Date": "2013-02-16T00:00:00", + "Tournament": "LSE Open", + "Round": "Open_Final", + "Motion": "This House would support policies of ‘ever increasing political union’ – i.e. progressive political integration aimed at the distant goal of federal unification – amongst members of the League of Arab States" + }, + { + "Date": "2013-02-15T00:00:00", + "Tournament": "The Galway Open (Irish National Law Debates)", + "Round": 1, + "Motion": "TH supports the legislation (legalisation?) of sex work" + }, + { + "Date": "2013-02-15T00:00:00", + "Tournament": "The Galway Open (Irish National Law Debates)", + "Round": 2, + "Motion": "THBT every member of the NRA is morally culpable for the level of gun crime in the US" + }, + { + "Date": "2013-02-15T00:00:00", + "Tournament": "The Galway Open (Irish National Law Debates)", + "Round": 3, + "Motion": "THBT the government should access private electronic communications to predict and tackle crime" + }, + { + "Date": "2013-02-15T00:00:00", + "Tournament": "The Galway Open (Irish National Law Debates)", + "Round": 4, + "Motion": "THBT artists from privileged groups should not depict characters from underprivileged groups in their work" + }, + { + "Date": "2013-02-15T00:00:00", + "Tournament": "The Galway Open (Irish National Law Debates)", + "Round": 5, + "Motion": "THBT the UN should recruit a standing army" + }, + { + "Date": "2013-02-15T00:00:00", + "Tournament": "The Galway Open (Irish National Law Debates)", + "Round": "Open_Semis", + "Motion": "a pill exists to prevent you falling in love, THW take that pill" + }, + { + "Date": "2013-02-15T00:00:00", + "Tournament": "The Galway Open (Irish National Law Debates)", + "Round": "Open_Final", + "Motion": "THW abolish private property" + }, + { + "Date": "2013-02-08T00:00:00", + "Tournament": "Österreichischen Debattier Meisterschaft (Austrian Debate Championships)", + "Round": 1, + "Motion": "Should we intervene in Mali?" + }, + { + "Date": "2013-02-08T00:00:00", + "Tournament": "Österreichischen Debattier Meisterschaft (Austrian Debate Championships)", + "Round": 2, + "Motion": "Should the water supply be nationalised all over Europe?" + }, + { + "Date": "2013-02-08T00:00:00", + "Tournament": "Österreichischen Debattier Meisterschaft (Austrian Debate Championships)", + "Round": 3, + "Motion": "Should Incest be allowed?" + }, + { + "Date": "2013-02-08T00:00:00", + "Tournament": "Österreichischen Debattier Meisterschaft (Austrian Debate Championships)", + "Round": 4, + "Motion": "Should the possibility to revoke a PhD degree be under a statute of limitation?" + }, + { + "Date": "2013-02-08T00:00:00", + "Tournament": "Österreichischen Debattier Meisterschaft (Austrian Debate Championships)", + "Round": 5, + "Motion": "Should we, who are technically capable of it, seek contact with extraterrestrials?" + }, + { + "Date": "2013-02-08T00:00:00", + "Tournament": "Österreichischen Debattier Meisterschaft (Austrian Debate Championships)", + "Round": "Open_Semis", + "Motion": "Should we ban the import of goods that were not produced under the social and ecological standards of the EU?" + }, + { + "Date": "2013-02-08T00:00:00", + "Tournament": "Österreichischen Debattier Meisterschaft (Austrian Debate Championships)", + "Round": "Open_Final", + "Motion": "Should we buy armed drones?" + }, + { + "Date": "2013-02-08T00:00:00", + "Tournament": "Sciences Po Open", + "Round": 1, + "Motion": "THW return all national treasures to their countries of origin, provided they sincerely commit to preserve and display them." + }, + { + "Date": "2013-02-08T00:00:00", + "Tournament": "Sciences Po Open", + "Round": 2, + "Motion": "THW end the search for extraterrestrial intelligence" + }, + { + "Date": "2013-02-08T00:00:00", + "Tournament": "Sciences Po Open", + "Round": 3, + "Motion": "THBT, in the event of an immediate and unprovoked Israeli strike against Iran's nuclear facilities, the USA should make a credible pledge to support Israel in any resulting conflict." + }, + { + "Date": "2013-02-08T00:00:00", + "Tournament": "Sciences Po Open", + "Round": 4, + "Motion": "THW set maximum rents for residential property in the city of Paris." + }, + { + "Date": "2013-02-08T00:00:00", + "Tournament": "Sciences Po Open", + "Round": 5, + "Motion": "THW legalise polygamy" + }, + { + "Date": "2013-02-08T00:00:00", + "Tournament": "Sciences Po Open", + "Round": "Open_Semis", + "Motion": "THBT Pakistan should end all cooperation with America’s War on Terror." + }, + { + "Date": "2013-02-08T00:00:00", + "Tournament": "Sciences Po Open", + "Round": "Open_Final", + "Motion": "THBT Socrates should not have drunk the hemlock" + }, + { + "Date": "2013-02-02T00:00:00", + "Tournament": "Warwick IV", + "Round": 1, + "Motion": "THW stop all efforts to cease the international drug trade and put all funding into education and rehab" + }, + { + "Date": "2013-02-02T00:00:00", + "Tournament": "Warwick IV", + "Round": 2, + "Motion": "TH, as a progressive, would oppose the awarding of hosting rights for major international sporting competitions to 'Unprogressive' countries" + }, + { + "Date": "2013-02-02T00:00:00", + "Tournament": "Warwick IV", + "Round": 3, + "Motion": "THBT Advocates for Trans* people should not campaign within the feminist movement" + }, + { + "Date": "2013-02-02T00:00:00", + "Tournament": "Warwick IV", + "Round": 4, + "Motion": "THBT opposition movements in countries with repressive regimes should never use violent tactics" + }, + { + "Date": "2013-02-02T00:00:00", + "Tournament": "Warwick IV", + "Round": "Open_Semis", + "Motion": "TH (As the EU) would make development aid conditional upon developing countries using it for renewable energy generation" + }, + { + "Date": "2013-02-01T00:00:00", + "Tournament": "Inner Temple IV", + "Round": 1, + "Motion": "THW abolish trial by jury" + }, + { + "Date": "2013-02-01T00:00:00", + "Tournament": "Inner Temple IV", + "Round": 2, + "Motion": "THBT, when and where gay marriage is legal, religious institutions should be compelled to conduct gay wedding ceremonies" + }, + { + "Date": "2013-02-01T00:00:00", + "Tournament": "Inner Temple IV", + "Round": 3, + "Motion": "THBT all policy on drugs, alcohol, tobacco and other controlled substances should be made by expert scientific panels and not elected officials" + }, + { + "Date": "2013-02-01T00:00:00", + "Tournament": "Inner Temple IV", + "Round": 4, + "Motion": "THBT the Arab Spring has been bad for Egypt" + }, + { + "Date": "2013-02-01T00:00:00", + "Tournament": "Inner Temple IV", + "Round": 5, + "Motion": "THW punish illegal tax avoidance (evasion) by the deprivation of citizenship" + }, + { + "Date": "2013-02-01T00:00:00", + "Tournament": "Inner Temple IV", + "Round": "Open_Semis", + "Motion": "THBT it is impossible to be a pro-life feminist" + }, + { + "Date": "2013-02-01T00:00:00", + "Tournament": "Inner Temple IV", + "Round": "Open_Final", + "Motion": "TH regrets that Lance Armstrong got caught" + }, + { + "Date": "2013-02-01T00:00:00", + "Tournament": "Irish Times Open_Semis", + "Round": "Open_Semi_1", + "Motion": "THW introduce graduate tax" + }, + { + "Date": "2013-02-01T00:00:00", + "Tournament": "Irish Times Open_Semis", + "Round": "Open_Semi_2", + "Motion": "THW ban tobacco" + }, + { + "Date": "2013-02-01T00:00:00", + "Tournament": "Irish Times Open_Semis", + "Round": "Open_Semi_3", + "Motion": "THB freedom of speech should never be curtailed" + }, + { + "Date": "2013-01-28T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 1, + "Motion": "THW criminalise doping in sport" + }, + { + "Date": "2013-01-28T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 2, + "Motion": "THW ban any technology that can delete or alter a person's memory" + }, + { + "Date": "2013-01-28T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 3, + "Motion": "A pill exists that ensures \"moral behaviour\", THW ban the morality pill." + }, + { + "Date": "2013-01-28T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 4, + "Motion": "THB that abortion referendums should be open to women voters only" + }, + { + "Date": "2013-01-28T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 5, + "Motion": "THB countries should cease trying to prevent climate change and focus resources on preparing for its consequences." + }, + { + "Date": "2013-01-28T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 6, + "Motion": "THB social media companies have a duty to prevent far-right or hate groups from using their platforms." + }, + { + "Date": "2013-01-28T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 7, + "Motion": "TH supports a Palestinian right of return." + }, + { + "Date": "2013-01-28T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 8, + "Motion": "THBT former colonial powers should never intervene militarily or economically in favour of one side in a civil war or rebellion in a former colony." + }, + { + "Date": "2013-01-26T00:00:00", + "Tournament": "Beginner Tournament Mainz (DCJG)", + "Round": 1, + "Motion": "Should the government leader at federal and state level be directly elected?" + }, + { + "Date": "2013-01-26T00:00:00", + "Tournament": "Beginner Tournament Mainz (DCJG)", + "Round": 2, + "Motion": "Should employees of energy and transport companies be banned from striking?" + }, + { + "Date": "2013-01-26T00:00:00", + "Tournament": "Beginner Tournament Mainz (DCJG)", + "Round": 3, + "Motion": "Should Bilbo stay home?" + }, + { + "Date": "2013-01-26T00:00:00", + "Tournament": "Beginner Tournament Mainz (DCJG)", + "Round": "Open_Final", + "Motion": "Should we create a public newspaper?" + }, + { + "Date": "2013-01-26T00:00:00", + "Tournament": "Rotterdam BP toernooi", + "Round": 1, + "Motion": "TH, being the US, would oblige the Amish to send their children to public high schools" + }, + { + "Date": "2013-01-26T00:00:00", + "Tournament": "Rotterdam BP toernooi", + "Round": 2, + "Motion": "THW ban meat consumption" + }, + { + "Date": "2013-01-26T00:00:00", + "Tournament": "Rotterdam BP toernooi", + "Round": 3, + "Motion": "THW ban cosmetic/plastic surgery aimed to change racial features" + }, + { + "Date": "2013-01-26T00:00:00", + "Tournament": "Rotterdam BP toernooi", + "Round": 4, + "Motion": "THW introduce corporal punishment" + }, + { + "Date": "2013-01-26T00:00:00", + "Tournament": "Rotterdam BP toernooi", + "Round": "Open_Semis", + "Motion": "THW abolish the UN Security Council" + }, + { + "Date": "2013-01-26T00:00:00", + "Tournament": "Rotterdam BP toernooi", + "Round": "Open_Final", + "Motion": "THW make abortion mandatory in cases of severe medical conditions that lead to short and painful lives" + }, + { + "Date": "2013-01-26T00:00:00", + "Tournament": "York IV", + "Round": 1, + "Motion": "THBT student societies and newspapers should have a 'no platform' policy for extremist political figures" + }, + { + "Date": "2013-01-26T00:00:00", + "Tournament": "York IV", + "Round": 2, + "Motion": "TH, as Tottenham Hotspur, would ban fans found chanting 'Yid Army'" + }, + { + "Date": "2013-01-26T00:00:00", + "Tournament": "York IV", + "Round": 3, + "Motion": "THBT parents, where concerned, should install spyware to monitor their children's online activity and communications" + }, + { + "Date": "2013-01-26T00:00:00", + "Tournament": "York IV", + "Round": 4, + "Motion": "THW ban religious proselytising and faith-based rehabilitation programmes in prisons" + }, + { + "Date": "2013-01-26T00:00:00", + "Tournament": "York IV", + "Round": "Open_Semis", + "Motion": "THBT states should place constitutional limits on regressive taxation policies" + }, + { + "Date": "2013-01-26T00:00:00", + "Tournament": "York IV", + "Round": "Open_Final", + "Motion": "TH regrets the societal acceptance of promiscuity" + }, + { + "Date": "2013-01-25T00:00:00", + "Tournament": "Rotterdam BP Toernooi", + "Round": 1, + "Motion": "THW force pregnant minors to have an abortion or give their child up for adoption" + }, + { + "Date": "2013-01-25T00:00:00", + "Tournament": "Rotterdam BP Toernooi", + "Round": 2, + "Motion": "THW introduce trial by jury" + }, + { + "Date": "2013-01-25T00:00:00", + "Tournament": "Rotterdam BP Toernooi", + "Round": 3, + "Motion": "THBT Mexican state should create a list of known members of drug cartels and outlaw everyone on it" + }, + { + "Date": "2013-01-25T00:00:00", + "Tournament": "Rotterdam BP Toernooi", + "Round": 4, + "Motion": "THBT CDA should vote with the ruling coalition if proposed laws satisfy the Senate criteria of redelijkheid (reasonableness, judiciousness, fairness) and samenhang (congruence with other laws) (addendum: instead of for other political criteria)" + }, + { + "Date": "2013-01-25T00:00:00", + "Tournament": "Rotterdam BP Toernooi", + "Round": "Open_Semis", + "Motion": "THW split up banks until none are “too big to fail”" + }, + { + "Date": "2013-01-25T00:00:00", + "Tournament": "Rotterdam BP Toernooi", + "Round": "Open_Final", + "Motion": "THW only drill for gas in areas where the population has consented through a local referendum (inspired by recent opposition to gas drilling in Groningen)" + }, + { + "Date": "2013-01-25T00:00:00", + "Tournament": "Trinity IV", + "Round": 1, + "Motion": "THW not prosecute victims of domestic violence for crimes committed as a result of their abuse" + }, + { + "Date": "2013-01-25T00:00:00", + "Tournament": "Trinity IV", + "Round": 2, + "Motion": "THBT the marketing strategies of Western NGOs have hindered the development of the global South" + }, + { + "Date": "2013-01-25T00:00:00", + "Tournament": "Trinity IV", + "Round": 3, + "Motion": "THW ban the teaching of Romeo and Juliet in schools" + }, + { + "Date": "2013-01-25T00:00:00", + "Tournament": "Trinity IV", + "Round": 4, + "Motion": "THB the campaign for marriage equality is a waste of the gay community's resources" + }, + { + "Date": "2013-01-25T00:00:00", + "Tournament": "Trinity IV", + "Round": 5, + "Motion": "THW hold Islam accountable for the actions of Islamists" + }, + { + "Date": "2013-01-25T00:00:00", + "Tournament": "Trinity IV", + "Round": "Open_Quarters", + "Motion": "THBT allowing women on front lines is a victory for feminism" + }, + { + "Date": "2013-01-25T00:00:00", + "Tournament": "Trinity IV", + "Round": "Open_Semis", + "Motion": "TH as an Israeli Arab would boycott Israeli elections" + }, + { + "Date": "2013-01-25T00:00:00", + "Tournament": "Trinity IV", + "Round": "Open_Final", + "Motion": "THW restrict media coverage of school shootings" + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "A1", + "Motion": "THW rather die before they get old." + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "A2", + "Motion": "THBT we are clever enough to engineer our doom but not to prevent it." + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "A3", + "Motion": "THBT limitation nurtures creativity" + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "A4", + "Motion": "THBT peace is only an illusion" + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "B1", + "Motion": "THBT we should not let our schooling interfere with our education" + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "B2", + "Motion": "THBT technology is killing our work ethic" + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "B3", + "Motion": "THBT we should strive for immortality" + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "B4", + "Motion": "THW sooner befriend an evil genius than a dull hero" + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "C1", + "Motion": "THBT Art is the highest achievement of humanity." + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "C2", + "Motion": "THBT change is not progress" + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "C3", + "Motion": "THBT life is nasty, brutish and short" + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "C4", + "Motion": "THBT uncle Sam is not a member of the family" + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "D1", + "Motion": "THBT books are obsolete" + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "D2", + "Motion": "THBT it is better to learn than to be taught" + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "D3", + "Motion": "THBT true friends stab you in the front." + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "D4", + "Motion": "THBT peace depends on fear" + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "French Debating Association Tournament", + "Round": "D5", + "Motion": "THBT banking institutions are more dangerous to our liberties than armies" + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "Kingsmill Moore Invitational", + "Round": 1, + "Motion": "THBT social disgust is a sufficient justification for censoring art" + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "Kingsmill Moore Invitational", + "Round": 2, + "Motion": "THW federalise the European Union" + }, + { + "Date": "2013-01-24T00:00:00", + "Tournament": "Kingsmill Moore Invitational", + "Round": 3, + "Motion": "THBT the state should never negotiate with hostage takers" + }, + { + "Date": "2013-01-13T00:00:00", + "Tournament": "Regents’ IV", + "Round": 1, + "Motion": "THB the west should not recruit doctors from the developing world" + }, + { + "Date": "2013-01-13T00:00:00", + "Tournament": "Regents’ IV", + "Round": 2, + "Motion": "THB student unions should not campaign on geo-political issues" + }, + { + "Date": "2013-01-13T00:00:00", + "Tournament": "Regents’ IV", + "Round": 3, + "Motion": "THW ban religious based rehabilitation programs, regardless of how effective they may be" + }, + { + "Date": "2013-01-13T00:00:00", + "Tournament": "Regents’ IV", + "Round": 4, + "Motion": "THW hold a referendum on the death penalty." + }, + { + "Date": "2013-01-13T00:00:00", + "Tournament": "Regents’ IV", + "Round": "Open_Final", + "Motion": "TH regrets the existence of mankind" + }, + { + "Date": "2013-01-12T00:00:00", + "Tournament": "Nottingham Trent IV", + "Round": 1, + "Motion": "THBT all components of the welfare state should be means tested" + }, + { + "Date": "2013-01-12T00:00:00", + "Tournament": "Nottingham Trent IV", + "Round": 2, + "Motion": "THBT feminists should support the death penalty for crimes of severe sexual assault in countries with extreme gender inequality" + }, + { + "Date": "2013-01-12T00:00:00", + "Tournament": "Nottingham Trent IV", + "Round": 3, + "Motion": "THW ban the practice and use of all alternative therapies" + }, + { + "Date": "2013-01-12T00:00:00", + "Tournament": "Nottingham Trent IV", + "Round": 4, + "Motion": "TH, as the USA, no longer supports the right to bear arms" + }, + { + "Date": "2013-01-12T00:00:00", + "Tournament": "Nottingham Trent IV", + "Round": "Open_Semis", + "Motion": "THW not teach vocational subjects at universities" + }, + { + "Date": "2013-01-12T00:00:00", + "Tournament": "Nottingham Trent IV", + "Round": "Open_Final", + "Motion": "THW compel HIV infected people to disclose their HIV status to their sexual partners" + }, + { + "Date": "2013-01-12T00:00:00", + "Tournament": "Zeit Debatte Hamburg", + "Round": 1, + "Motion": "Do we need to abolish public broadcasting?" + }, + { + "Date": "2013-01-12T00:00:00", + "Tournament": "Zeit Debatte Hamburg", + "Round": 2, + "Motion": "Should doping be allowed in professional sport (Leistungssport)?" + }, + { + "Date": "2013-01-12T00:00:00", + "Tournament": "Zeit Debatte Hamburg", + "Round": 3, + "Motion": "Should throw our principles away (over board)?" + }, + { + "Date": "2013-01-12T00:00:00", + "Tournament": "Zeit Debatte Hamburg", + "Round": 4, + "Motion": "Do we need schocking pictures of the slaughter and processing of meat and sausage products?" + }, + { + "Date": "2013-01-12T00:00:00", + "Tournament": "Zeit Debatte Hamburg", + "Round": 5, + "Motion": "To hell with extortionate rent prices: do we need housing socialism?" + }, + { + "Date": "2013-01-12T00:00:00", + "Tournament": "Zeit Debatte Hamburg", + "Round": "Open_Semis", + "Motion": "Should we give up on climate protection?" + }, + { + "Date": "2013-01-12T00:00:00", + "Tournament": "Zeit Debatte Hamburg", + "Round": "Open_Final", + "Motion": "Should large infrastructural projects be subject to democratic control?" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": 1, + "Motion": "THW create public housing for the poor in wealthy areas" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": 2, + "Motion": "THBT Japan should acquire nuclear weapons" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": 3, + "Motion": "THW only imprison individuals who pose a direct and continuing threat to society" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": 4, + "Motion": "THBT International development institutions (such as the World Bank) should not finance natural resource extraction projects in corrupt states" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": 5, + "Motion": "THBT self described progressive males of dominant ethnicities are morally obliged to refrain from taking positions of responsibility where there is a qualified alternative candidate from a historically disadvantaged group who would otherwise receive the post" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": 6, + "Motion": "THW legally permit soldiers to refuse to participate in military actions or missions on the basis of conscience" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": 7, + "Motion": "THBT European Union nations should forgive Greece’s sovereign debt" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": 8, + "Motion": "THBT countries with booming populations should allocate every adult a single tradable permit to have a child" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": 9, + "Motion": "THW ban political parties and require all candidates for national public office to seek election as independents" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": "EFL_Quarters", + "Motion": "THBT publicly funded universities should be required to reduce enrolment in degree programs within their university that have statistically poor employment outcomes" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": "EFL_Semis", + "Motion": "THBT policies that may have significant environmental consequences should be subject to a veto by a 'supreme court' of scientific experts" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": "EFL_Final", + "Motion": "TH welcomes the decline of the USA as the sole global super power." + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": "ESL_Quarters", + "Motion": "THBT publicly funded universities should be required to reduce enrolment in degree programs within their university that have statistically poor employment outcomes (same as EFL_Quarters)" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": "ESL_Semis", + "Motion": "THBT the feminist movement should actively promote norms of stable monogamous relationships" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": "ESL_Final", + "Motion": "THBT representative democracies with large numbers of foreigners living in their territory (on a temporary or permanent basis) should create specific seats to represent them in parliament." + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": "Open_Partial_Double_Octos", + "Motion": "THBT universities should never prohibit research or teaching on the grounds of sexist, racist or otherwise discriminatory implications" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": "Open_Octos", + "Motion": "THBT the US should cut off military aid to Egypt" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": "Open_Quarters", + "Motion": "THW ban all advertising of consumer goods and services" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": "Open_Semis", + "Motion": "TBHT the WTO should never allow nations to place export restrictions on food, rare-earth metals, and other non-oil commodities" + }, + { + "Date": "2013-01-01T00:00:00", + "Tournament": "Berlin WUDC 2013", + "Round": "Open_Final", + "Motion": "THW not allow religious communities to expel members on the basis of views or actions that contradict doctrinal teachings" + }, + { + "Date": "2012-12-15T00:00:00", + "Tournament": "IDEA European Cup", + "Round": 1, + "Motion": "THBT all professional football clubs should be majority owned by their supporters" + }, + { + "Date": "2012-12-15T00:00:00", + "Tournament": "IDEA European Cup", + "Round": 2, + "Motion": "THW ban children from participating in religious activities" + }, + { + "Date": "2012-12-15T00:00:00", + "Tournament": "IDEA European Cup", + "Round": 3, + "Motion": "THBT emerging democracies should ban the election of close family members of current or previous office-holders" + }, + { + "Date": "2012-12-15T00:00:00", + "Tournament": "IDEA European Cup", + "Round": "Open_Final", + "Motion": "the Greek left wing party Syriza has promised to renegotiate the current bailout, and turn back a number of austerity measures, such as lowering of pension and welfare benefits. Motion: As a Greek voter, THW vote for Syriza" + }, + { + "Date": "2012-12-14T00:00:00", + "Tournament": "Birmingham IV", + "Round": 1, + "Motion": "THBT the state should subsidise news media outlets" + }, + { + "Date": "2012-12-14T00:00:00", + "Tournament": "Birmingham IV", + "Round": 2, + "Motion": "THBT the government of the DRC should hire private military companies to defeat rebels in North and South Kivu" + }, + { + "Date": "2012-12-14T00:00:00", + "Tournament": "Birmingham IV", + "Round": 3, + "Motion": "TH supports citizen-initiated referendums*" + }, + { + "Date": "2012-12-14T00:00:00", + "Tournament": "Birmingham IV", + "Round": 4, + "Motion": "THBT the Japanese government should renounce pacifism and rearm" + }, + { + "Date": "2012-12-14T00:00:00", + "Tournament": "Birmingham IV", + "Round": 5, + "Motion": "TH supports the legalisation of the production, sale, purchase and consumption of All recreational drugs" + }, + { + "Date": "2012-12-14T00:00:00", + "Tournament": "Birmingham IV", + "Round": "Open_Semis", + "Motion": "THW alter World Trade Organisation rules to allow poor countries to erect protectionist barriers against rich countries" + }, + { + "Date": "2012-12-14T00:00:00", + "Tournament": "Birmingham IV", + "Round": "Open_Final", + "Motion": "THW, as the UK, give up its nuclear arsenal" + }, + { + "Date": "2012-12-14T00:00:00", + "Tournament": "Centrale Open", + "Round": 1, + "Motion": "THBT all criminal trials should be decided by a jury verdict" + }, + { + "Date": "2012-12-14T00:00:00", + "Tournament": "Centrale Open", + "Round": 2, + "Motion": "THW allow employers to offer a contract to their female employees giving up their right to become pregnant." + }, + { + "Date": "2012-12-14T00:00:00", + "Tournament": "Centrale Open", + "Round": 3, + "Motion": "This House believes that governments should end all direct international aid, and donate money to Non Governmental Organizations (e.g. Oxfam, Médicins Sans Frontièrs) instead" + }, + { + "Date": "2012-12-14T00:00:00", + "Tournament": "Centrale Open", + "Round": 4, + "Motion": "THW remove bylines from individual newspaper articles" + }, + { + "Date": "2012-12-14T00:00:00", + "Tournament": "Centrale Open", + "Round": 5, + "Motion": "THW rather spend the money on subsidised housing and living costs for migrants in the centre of Paris than investment in the Banlieues" + }, + { + "Date": "2012-12-14T00:00:00", + "Tournament": "Centrale Open", + "Round": "Open_Semis", + "Motion": "TH, as a draftee, would dodge the draft" + }, + { + "Date": "2012-12-14T00:00:00", + "Tournament": "Centrale Open", + "Round": "Open_Final", + "Motion": "The Twin Towers were a recognizable part of the famous New York skyline. On the 11th of September on 2001 they were destroyed by a terrorist attack. In 2011 the New York City Office commissioned the building of the Freedom Tower on Ground Zero. Motion: THW have instead rebuilt the world trade centre to original specifications, but one floor higher" + }, + { + "Date": "2012-12-09T00:00:00", + "Tournament": "The English Cup", + "Round": 1, + "Motion": "THW ban homeschooling" + }, + { + "Date": "2012-12-09T00:00:00", + "Tournament": "The English Cup", + "Round": 2, + "Motion": "TH, which is the US, would stop the use of armed military drones in pakistan" + }, + { + "Date": "2012-12-09T00:00:00", + "Tournament": "The English Cup", + "Round": 3, + "Motion": "THW offer financial incentives for bringing in elusive criminals" + }, + { + "Date": "2012-12-09T00:00:00", + "Tournament": "The English Cup", + "Round": "Open_Semis", + "Motion": "THW require all companies to publish salaries to the entire public" + }, + { + "Date": "2012-12-09T00:00:00", + "Tournament": "The English Cup", + "Round": "Open_Final", + "Motion": "THW obligate newly formed states that were formed through violent resistance to pay reparations for harms and casualties which were caused by their struggle" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "Baden-Württemberg", + "Round": 1, + "Motion": "Should people who have lived a healthy life be given preferential access to donated organs?" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "Baden-Württemberg", + "Round": 2, + "Motion": "Should we establish worker participation (unternehmerische Mitbestimmung) in corporations in all of Europe?" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "Baden-Württemberg", + "Round": 3, + "Motion": "Should public television give all sexual variations (sexuellen Spielarten) proportionally equal representation?" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "Baden-Württemberg", + "Round": "Open_Final", + "Motion": "Should the UN make the knowledge of how to build an atomic weapon available upon request?" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "Lancaster IV", + "Round": 1, + "Motion": "THBT the expansion in the proportion of the population attending university has done more harm than good" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "Lancaster IV", + "Round": 2, + "Motion": "THW punish poachers of endangered species in the same way as murderers" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "Lancaster IV", + "Round": 3, + "Motion": "THBT developing countries should ban non citizens from purchasing real estate" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "Lancaster IV", + "Round": 4, + "Motion": "THBT MGM studios should cast a woman as the next Bond" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "Lancaster IV", + "Round": 5, + "Motion": "THBT the United States Should fund Madrassas in Pakistan" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "Lancaster IV", + "Round": "Open_Semis", + "Motion": "THBT the Mexican government should offer immunity for economic crimes to drug cartels in exchange for not targeting the police, military or civilians" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "Lancaster IV", + "Round": "Open_Final", + "Motion": "THS the reappropriation of the word 'nigger" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "SSE Riga & LMT IV", + "Round": 1, + "Motion": "THW ban sports, where the main purpose is to inflict pain (e.g. boxing, martial arts)" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "SSE Riga & LMT IV", + "Round": 2, + "Motion": "THBT the state should fund the identity change, including changing their legal name and physical appearance, of infamous prisoners upon their release" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "SSE Riga & LMT IV", + "Round": 3, + "Motion": "THBT Western countries should offer to immediately cancel all debts owed by any authoritarian country upon its transition to democracy" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "SSE Riga & LMT IV", + "Round": 4, + "Motion": "THBT the gay rights movement should campaign for the abolition of marriage, rather than marriage equality" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "SSE Riga & LMT IV", + "Round": 5, + "Motion": "THW ban all political polls before any election" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "SSE Riga & LMT IV", + "Round": "Open_Semis", + "Motion": "THW make the use of conscripts in active combat a war crime" + }, + { + "Date": "2012-12-08T00:00:00", + "Tournament": "SSE Riga & LMT IV", + "Round": "Open_Final", + "Motion": "THBT from kindergarten onwards all education should be gender neutral" + }, + { + "Date": "2012-12-07T00:00:00", + "Tournament": "Bristol IV", + "Round": 1, + "Motion": "THS state-provision of cosmetic surgery and surgical enhancements" + }, + { + "Date": "2012-12-07T00:00:00", + "Tournament": "Bristol IV", + "Round": 2, + "Motion": "THBT South Korea should provide unconditional humanitarian aid and assistance to North Korea" + }, + { + "Date": "2012-12-07T00:00:00", + "Tournament": "Bristol IV", + "Round": 3, + "Motion": "THW allow victims of miscarriages of justice to sue expert witnesses for incompetence" + }, + { + "Date": "2012-12-07T00:00:00", + "Tournament": "Bristol IV", + "Round": 4, + "Motion": "THW subsidise feminist pornography" + }, + { + "Date": "2012-12-07T00:00:00", + "Tournament": "Bristol IV", + "Round": 5, + "Motion": "THW fabricate evidence in order to create the impression that historical national heroes had been gay" + }, + { + "Date": "2012-12-07T00:00:00", + "Tournament": "Bristol IV", + "Round": "Open_Semis", + "Motion": "THS the creation of a Black Players' Union in the English Premier League" + }, + { + "Date": "2012-12-07T00:00:00", + "Tournament": "Bristol IV", + "Round": "Open_Final", + "Motion": "TH regrets the popular veneration of Che Guevara" + }, + { + "Date": "2012-12-07T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 1, + "Motion": "THW only release prisoners if they are rehabilitated" + }, + { + "Date": "2012-12-07T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 2, + "Motion": "THBT slacktivism has harmed activism more than it has benefited it" + }, + { + "Date": "2012-12-07T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 3, + "Motion": "TH supports a technocratic government in times of dire financial crisis" + }, + { + "Date": "2012-12-07T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 4, + "Motion": "THW ban all lobbyist activity" + }, + { + "Date": "2012-12-07T00:00:00", + "Tournament": "Tilbury House IV", + "Round": 5, + "Motion": "THBT matchmaking is a better system than dating" + }, + { + "Date": "2012-12-07T00:00:00", + "Tournament": "Tilbury House IV", + "Round": "Open_Semis", + "Motion": "THW allow parents to sell their babies" + }, + { + "Date": "2012-12-07T00:00:00", + "Tournament": "Tilbury House IV", + "Round": "Open_Final", + "Motion": "THBT a society in which charity and donations are prevalent is preferable to a society with a state run welfare system" + }, + { + "Date": "2012-12-04T00:00:00", + "Tournament": "Irish Times Debates", + "Round": 1, + "Motion": "TH welcomes the government’s proposed fat tax" + }, + { + "Date": "2012-12-04T00:00:00", + "Tournament": "Irish Times Debates", + "Round": 2, + "Motion": "TH regrets the demise of the Green Party" + }, + { + "Date": "2012-12-04T00:00:00", + "Tournament": "Irish Times Debates", + "Round": 3, + "Motion": "THB Enda deserved his place on the cover of TIME" + }, + { + "Date": "2012-12-04T00:00:00", + "Tournament": "Irish Times Debates", + "Round": 4, + "Motion": "THW abolish the minimum wage" + }, + { + "Date": "2012-12-04T00:00:00", + "Tournament": "Irish Times Debates", + "Round": 5, + "Motion": "THB the diaspora should b‘The Gathering’" + }, + { + "Date": "2012-12-04T00:00:00", + "Tournament": "Irish Times Debates", + "Round": 6, + "Motion": "THW not negotiate with Hamas" + }, + { + "Date": "2012-12-04T00:00:00", + "Tournament": "Irish Times Debates", + "Round": 7, + "Motion": "THB it can no longer support the ‘Barclays Premier League’" + }, + { + "Date": "2012-12-04T00:00:00", + "Tournament": "Irish Times Debates", + "Round": 8, + "Motion": "THB feminism has run its course in Ireland" + }, + { + "Date": "2012-12-01T00:00:00", + "Tournament": "King’s College IV", + "Round": 1, + "Motion": "THBT Bert and Ernie should get married" + }, + { + "Date": "2012-12-01T00:00:00", + "Tournament": "King’s College IV", + "Round": 2, + "Motion": "TH regrets the 2001 Afghanistan invasion" + }, + { + "Date": "2012-12-01T00:00:00", + "Tournament": "King’s College IV", + "Round": 3, + "Motion": "THBT NASA should fund suicide missions to Mars", + "InfoSlide": "Hypothetically, in 10 years, it would be possible to send a manned mission to Mars. However, the crew wouldn't be able to return alive." + }, + { + "Date": "2012-12-01T00:00:00", + "Tournament": "King’s College IV", + "Round": 4, + "Motion": "THBT Governments should not assist in the rebuilding of disaster prone areas" + }, + { + "Date": "2012-12-01T00:00:00", + "Tournament": "King’s College IV", + "Round": "Open_Final", + "Motion": "THBT feminist christians should leave the Church of England" + }, + { + "Date": "2012-12-01T00:00:00", + "Tournament": "Nikolausturnier", + "Round": 1, + "Motion": "THW force insurance companies to have equal insurance premiums for men and women" + }, + { + "Date": "2012-12-01T00:00:00", + "Tournament": "Nikolausturnier", + "Round": 2, + "Motion": "THW give the members of every political party the right to determine the voting behaviour of their deputies" + }, + { + "Date": "2012-12-01T00:00:00", + "Tournament": "Nikolausturnier", + "Round": 3, + "Motion": "THW offer Maria its own bed" + }, + { + "Date": "2012-12-01T00:00:00", + "Tournament": "Nikolausturnier", + "Round": "Open_Final", + "Motion": "THW make all the proceeds that a professors earns with their books and other academic work available to their universities" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "BGU IV", + "Round": 1, + "Motion": "TH supports a preference for mothers in custody trials" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "BGU IV", + "Round": 2, + "Motion": "THW grant high ranking army officers the right to veto government decisions regarding security" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "BGU IV", + "Round": 3, + "Motion": "THW abolish intellectual property rights over music" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "BGU IV", + "Round": 4, + "Motion": "THW abolish mandatory retirement age" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "BGU IV", + "Round": 5, + "Motion": "TH prefers a strong dictatorship to a weak democracy" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "BGU IV", + "Round": "Open_Final", + "Motion": "THBT Marx would have approved of the internet" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Cork IV", + "Round": 1, + "Motion": "THW require prospective parents to obtain parenting licences prior to having children" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Cork IV", + "Round": 3, + "Motion": "THW require all news media to graphically depict under-reported armed conflicts" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Cork IV", + "Round": 4, + "Motion": "THBT the EU should suspend the membership rights of countries if they elect extremist parties to government (for example, Greece's Golden Dawn or the UK's British National Party)" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Cork IV", + "Round": 5, + "Motion": "THB artists should not set out to sympathetically portray characters who hold morally repugnant world views" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Cork IV", + "Round": "Novice_Final", + "Motion": "THW ban all medical procedures intended to change an individual's racial appearance" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Cork IV", + "Round": "Open_Semis", + "Motion": "THW introduce blind voting in national elections" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Cork IV", + "Round": "Open_Final", + "Motion": "THB the ICC should open an investigation on war crimes in Palestine" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Moscow Open", + "Round": 1, + "Motion": "THBT citizens have no moral obligation to obey laws which they personally believe may be unjust" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Moscow Open", + "Round": 2, + "Motion": "TH supports direct elections of governors in Russia" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Moscow Open", + "Round": 3, + "Motion": "THW only allow pornography produced and directed by Women" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Moscow Open", + "Round": 4, + "Motion": "THBT consumer electronics firms should not be allowed to patent technologies which are not essential to the working of their product" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Moscow Open", + "Round": 5, + "Motion": "TH, as Germany, would leave the EU" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Moscow Open", + "Round": "Open_Semis", + "Motion": "THW remove all special legal privileges from religious organisations" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Moscow Open", + "Round": "Open_Final", + "Motion": "THBT Russia should immediately withdraw all support from the Assad regime" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Münster Ironman", + "Round": 1, + "Motion": "THBT separate sports competitions for women harm the feminist cause" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Münster Ironman", + "Round": 2, + "Motion": "THW set up Christian mission schools in Pakistan" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Münster Ironman", + "Round": 3, + "Motion": "THW ban transport of persons and goods by beaming" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Münster Ironman", + "Round": 4, + "Motion": "THW not want a German Europe" + }, + { + "Date": "2012-11-30T00:00:00", + "Tournament": "Münster Ironman", + "Round": "Open_Final", + "Motion": "THW set up brothels in military bases abroad" + }, + { + "Date": "2012-11-28T00:00:00", + "Tournament": "IDEA Debate@Europe final event", + "Round": 1, + "Motion": "THBT the European Union should ban art, including literature or film, that directly insults any religion" + }, + { + "Date": "2012-11-28T00:00:00", + "Tournament": "IDEA Debate@Europe final event", + "Round": 2, + "Motion": "THBT the EU should oblige its member states to include positive references to LGBT individuals and issues in their high school textbooks" + }, + { + "Date": "2012-11-28T00:00:00", + "Tournament": "IDEA Debate@Europe final event", + "Round": 3, + "Motion": "THBT the European Union should guarantee membership to regions of existing EU member states, such as Catalonia or Scotland, that secede" + }, + { + "Date": "2012-11-28T00:00:00", + "Tournament": "IDEA Debate@Europe final event", + "Round": 4, + "Motion": "THB that Europe should weaken its austerity measures to guarantee its citizens greater social support" + }, + { + "Date": "2012-11-28T00:00:00", + "Tournament": "IDEA Debate@Europe final event", + "Round": "Open_Final", + "Motion": "THW ban far-right parties from competing in elections in European countries" + }, + { + "Date": "2012-11-24T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": 1, + "Motion": "THW force universities to create stricter entrance requirements, even if this would lead to fewer students" + }, + { + "Date": "2012-11-24T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": 2, + "Motion": "THW ban the publication of any photographic and film material that portrays crime suspects" + }, + { + "Date": "2012-11-24T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": 3, + "Motion": "TH, being a teenager, would not open a Facebook account" + }, + { + "Date": "2012-11-24T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": 4, + "Motion": "THW force schools to offer students intensive interaction with different worldviews" + }, + { + "Date": "2012-11-24T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": 5, + "Motion": "THW allow the Supreme Court to reject laws if they contradict the constitution (this is not SQ in the Netherlands)" + }, + { + "Date": "2012-11-24T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": "Open_Semis", + "Motion": "THW grant the ECB the right to limit member country’s sovereign debt" + }, + { + "Date": "2012-11-24T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": "Open_Final", + "Motion": "THW subsidise genetical modification on humans" + }, + { + "Date": "2012-11-24T00:00:00", + "Tournament": "John Smith Memorial Mace England Leg", + "Round": 1, + "Motion": "THW Abolish National School Curriculums" + }, + { + "Date": "2012-11-24T00:00:00", + "Tournament": "John Smith Memorial Mace England Leg", + "Round": 2, + "Motion": "THBT in Times of High Unemployment, Governments Should Remove all Minimum Standard Regulations in the Labour Market" + }, + { + "Date": "2012-11-24T00:00:00", + "Tournament": "John Smith Memorial Mace England Leg", + "Round": 3, + "Motion": "THB India should not allow Tesco or Walmart into their national market" + }, + { + "Date": "2012-11-24T00:00:00", + "Tournament": "John Smith Memorial Mace England Leg", + "Round": 4, + "Motion": "THW Punish Parents when Their Children Bully Others at School" + }, + { + "Date": "2012-11-24T00:00:00", + "Tournament": "John Smith Memorial Mace England Leg", + "Round": 5, + "Motion": "TH Regrets the Rise of the Career Politician" + }, + { + "Date": "2012-11-24T00:00:00", + "Tournament": "John Smith Memorial Mace England Leg", + "Round": "Open_Semis", + "Motion": "THBT, where resources are scare, minority campaign groups should fund minority art, literature and films rather than funding lobbying for legislative change" + }, + { + "Date": "2012-11-24T00:00:00", + "Tournament": "John Smith Memorial Mace England Leg", + "Round": "Open_Final", + "Motion": "THB that the Press Cannot be Trusted to Regulate Itself :" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "IDAS tournament", + "Round": 1, + "Motion": "THBT access to the internet is a human right" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "IDAS tournament", + "Round": 2, + "Motion": "THW penalise politicians who break pre-election pledges" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "IDAS tournament", + "Round": 3, + "Motion": "THB that online activism is counterproductive" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "IDAS tournament", + "Round": 4, + "Motion": "TH regrets the rapid expansion of online education" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "IDAS tournament", + "Round": 5, + "Motion": "TH supports censorship of pornography on the internet" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "IDAS tournament", + "Round": 6, + "Motion": "THBT in the era of the Internet we should adopt a global hate speech law" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "IDAS tournament", + "Round": "Open_Semis", + "Motion": "THBT hacktivism is a legitimate tool of protest against multinational corporations" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "IDAS tournament", + "Round": "Open_Final", + "Motion": "THBT an unregulated Internet does more harm than good" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "Lund Debate Challenge", + "Round": 1, + "Motion": "THW decriminalize incest between consenting adults" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "Lund Debate Challenge", + "Round": 2, + "Motion": "THB enterprises and charities are more effective for development than official development assistance (ODAs)" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "Lund Debate Challenge", + "Round": 3, + "Motion": "THW collect DNA of every newborn child in order to prevent and solve future crimes" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "Lund Debate Challenge", + "Round": "Open_Semis", + "Motion": "THW refuse American statehood to Puerto Rico" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "Lund Debate Challenge", + "Round": "Open_Final", + "Motion": "THW forbid universities from accepting donations earmarked for the pseudo-sciences" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "Zeit Debatte Tübingen", + "Round": 1, + "Motion": "Should prisoners temporarily lose their right to vote?" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "Zeit Debatte Tübingen", + "Round": 2, + "Motion": "Should punishment for use of doping be subject to a statute of limitation?" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "Zeit Debatte Tübingen", + "Round": 3, + "Motion": "Should people who are in a relationship with an enemy of the constitution (Verfassungsfeinden) be considered enemies of the constitution too?" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "Zeit Debatte Tübingen", + "Round": 4, + "Motion": "Should people have the right to erase/block the autocomplete for their names in search engines?" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "Zeit Debatte Tübingen", + "Round": 5, + "Motion": "Should James Bond retire?" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "Zeit Debatte Tübingen", + "Round": "Open_Semis", + "Motion": "Should citizens be forced to borrow money to the state in times of crisis? (Should it become mandatory for citizens)" + }, + { + "Date": "2012-11-23T00:00:00", + "Tournament": "Zeit Debatte Tübingen", + "Round": "Open_Final", + "Motion": "Should corporate sponsorship of dangerous (life-threatening) sports and stunts?" + }, + { + "Date": "2012-11-20T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 1, + "Motion": "THW create a permanent seat for the Travelling Community in the Dáil." + }, + { + "Date": "2012-11-20T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 2, + "Motion": "THW create a constituency for the Irish abroad." + }, + { + "Date": "2012-11-20T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 3, + "Motion": "THW allow Asylum Seekers to work." + }, + { + "Date": "2012-11-20T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 4, + "Motion": "THW compel parents to take equal paternity and maternity leave." + }, + { + "Date": "2012-11-20T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 5, + "Motion": "THW require the unemployed to participate in community work to be eligible for social welfare." + }, + { + "Date": "2012-11-20T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 6, + "Motion": "THW re-introduce the punishment of banishment for serious crimes." + }, + { + "Date": "2012-11-20T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 7, + "Motion": "THW grant the police the ability to stop and search without reasonable suspicion in designated areas and times." + }, + { + "Date": "2012-11-20T00:00:00", + "Tournament": "John Smith Memorial Mace", + "Round": 8, + "Motion": "THB the US Federal Government should continue to enforce the national prohibition on drugs in states which legalise the personal use of cannabis." + }, + { + "Date": "2012-11-18T00:00:00", + "Tournament": "Iasi BP Open", + "Round": 1, + "Motion": "THW not make state health care available to smokers" + }, + { + "Date": "2012-11-18T00:00:00", + "Tournament": "Iasi BP Open", + "Round": 2, + "Motion": "TH regrets the influence of computer games on the next generation" + }, + { + "Date": "2012-11-18T00:00:00", + "Tournament": "Iasi BP Open", + "Round": 3, + "Motion": "THW ban pornography" + }, + { + "Date": "2012-11-18T00:00:00", + "Tournament": "Iasi BP Open", + "Round": 4, + "Motion": "THBT the European Union should open its borders to all immigrants" + }, + { + "Date": "2012-11-18T00:00:00", + "Tournament": "Iasi BP Open", + "Round": "Open_Final", + "Motion": "THW give all animals capable of respecting all citizen obligations equal rights to humans" + }, + { + "Date": "2012-11-17T00:00:00", + "Tournament": "Cambridge IV", + "Round": 1, + "Motion": "The state should pay a living wage to stay at home parents" + }, + { + "Date": "2012-11-17T00:00:00", + "Tournament": "Cambridge IV", + "Round": 2, + "Motion": "THB all donor countries should freeze aid to Rwanda" + }, + { + "Date": "2012-11-17T00:00:00", + "Tournament": "Cambridge IV", + "Round": 3, + "Motion": "THW hold the senior executives of major banks and rating agencies criminally liable for the actions of their companies that led to the Global Financial Crisis" + }, + { + "Date": "2012-11-17T00:00:00", + "Tournament": "Cambridge IV", + "Round": 4, + "Motion": "THBT democratic reform is more important than economic growth for China" + }, + { + "Date": "2012-11-17T00:00:00", + "Tournament": "Cambridge IV", + "Round": 5, + "Motion": "THBT prosecutors should never offer reduced sentences in exchange for testifying against others" + }, + { + "Date": "2012-11-17T00:00:00", + "Tournament": "Cambridge IV", + "Round": "ESL_Final", + "Motion": "THBT that Japan should not abandon nuclear power" + }, + { + "Date": "2012-11-17T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Quarters", + "Motion": "TH regrets the rise of 24 hour news culture" + }, + { + "Date": "2012-11-17T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Semis", + "Motion": "THBT all companies should be at least 75% owned by their workforce, in equal shares" + }, + { + "Date": "2012-11-17T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Final", + "Motion": "THBT Egypt should provide a military security guarantee against the invasion of Gaza" + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Brno Open", + "Round": 1, + "Motion": "THW adopt life sentences without parole." + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Brno Open", + "Round": 2, + "Motion": "THW not read fairytales which contain gender stereotypes to children." + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Brno Open", + "Round": 3, + "Motion": "THW grant tax cuts to large foreign investors." + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Brno Open", + "Round": 4, + "Motion": "THW cancel permanent membership and veto power in the UN Security Council." + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Brno Open", + "Round": "Open_Semis", + "Motion": "THBT all regionally concentrated ethnic minorities should be granted territorial autonomy." + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Brno Open", + "Round": "Open_Final", + "Motion": "THBT the European Union should open its borders for immigrants from third world countries." + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "ESCP Debating Open", + "Round": 1, + "Motion": "THBT states in the developing world should invest in sex tourism" + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "ESCP Debating Open", + "Round": 2, + "Motion": "THW allow all doping in professional sports" + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "ESCP Debating Open", + "Round": "Open_Final", + "Motion": "THW choose immortality over the opportunity to have children" + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Open de Debates da Sociedade de Debates da Universidade de Coimbra (SDUC)", + "Round": 1, + "Motion": "TH supports lifting the celibacy of the Catholic Church" + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Open de Debates da Sociedade de Debates da Universidade de Coimbra (SDUC)", + "Round": 2, + "Motion": "THW ban the German Chancellor, Angela Merkel, from adopting children" + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Open de Debates da Sociedade de Debates da Universidade de Coimbra (SDUC)", + "Round": 3, + "Motion": "THW require all Portuguese to spend 25 € per month on local products" + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Open de Debates da Sociedade de Debates da Universidade de Coimbra (SDUC)", + "Round": 4, + "Motion": "THBT all children should have location chips" + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Open de Debates da Sociedade de Debates da Universidade de Coimbra (SDUC)", + "Round": "Open_Semis", + "Motion": "THBT Wikipedia should be put on the UNESCO World Heritage list" + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Open de Debates da Sociedade de Debates da Universidade de Coimbra (SDUC)", + "Round": "Open_Final", + "Motion": "TH defends that austerity is the solution to the (economic) crisis" + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Vienna Freshers", + "Round": 1, + "Motion": "THW ban smoking entirely" + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Vienna Freshers", + "Round": 2, + "Motion": "THBT there should be obligatory equal parental leave for women and men" + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Vienna Freshers", + "Round": 3, + "Motion": "THW prosecute violent fouls as criminal assault" + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Vienna Freshers", + "Round": 4, + "Motion": "THBT testing on animals is immoral" + }, + { + "Date": "2012-11-10T00:00:00", + "Tournament": "Vienna Freshers", + "Round": "Open_Final", + "Motion": "THBT state funded space programs are a waste of tax payers' money" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "Oxford IV", + "Round": 1, + "Motion": "THBT Google, YouTube, & social media websites should remove content which it deems to insult religions" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "Oxford IV", + "Round": 2, + "Motion": "THB the ANC should nationalize all mines" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "Oxford IV", + "Round": 3, + "Motion": "THBT Western governments should buy the freedom of slaves" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "Oxford IV", + "Round": 4, + "Motion": "THBT the Greek military should suspend democratic government until economic recovery" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "Oxford IV", + "Round": 5, + "Motion": "THBT companies should not take public stance in gay right issues" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "Oxford IV", + "Round": "ESL_Semis", + "Motion": "THB governments should actively discourage consumerist lifestyles" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "Oxford IV", + "Round": "ESL_Final", + "Motion": "THW give extra votes to youths over the age of 18" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "Oxford IV", + "Round": "Open_Quarters", + "Motion": "THBT Emily's list should fund pro-choice male candidates" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "Oxford IV", + "Round": "Open_Semis", + "Motion": "THBT States should forcibly reverse the transmigration policies of their former dictators" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "Oxford IV", + "Round": "Open_Final", + "Motion": "THB in the right to bear arms" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "UK Debate Challenge", + "Round": 1, + "Motion": "THW abolish all political parties" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "UK Debate Challenge", + "Round": 2, + "Motion": "THW allow workers to sell employment rights back to their employers" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "UK Debate Challenge", + "Round": 3, + "Motion": "THBT the right to decide the timing and manner of one's death is a fundamental component of liberty" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "UK Debate Challenge", + "Round": 4, + "Motion": "THBT the Myanmar NLD should actively support a pro-democracy campaign of civil disobedience" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "UK Debate Challenge", + "Round": 5, + "Motion": "THW remove immunity from prosecution from holders of high political office" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "UK Debate Challenge", + "Round": "Open_Semis", + "Motion": "THBT the works of hip hop legends such as Tupac Shakur, the Wu Tang Clan and JayZ should be taught in schools" + }, + { + "Date": "2012-11-09T00:00:00", + "Tournament": "UK Debate Challenge", + "Round": "Open_Final", + "Motion": "THBT the capitalist system is incompatible with a just society" + }, + { + "Date": "2012-11-03T00:00:00", + "Tournament": "Durham IV", + "Round": 1, + "Motion": "THW ban male circumcision for Under 18s, except for medical reasons." + }, + { + "Date": "2012-11-03T00:00:00", + "Tournament": "Durham IV", + "Round": 2, + "Motion": "TH wants the USA to lead a Coalition of the Willing to intervene militarily in Syria." + }, + { + "Date": "2012-11-03T00:00:00", + "Tournament": "Durham IV", + "Round": 3, + "Motion": "THBT developed countries should not retaliate to protectionist measures by developing countries." + }, + { + "Date": "2012-11-03T00:00:00", + "Tournament": "Durham IV", + "Round": 4, + "Motion": "THW publicly shame persons found guilty of committing hate speech." + }, + { + "Date": "2012-11-03T00:00:00", + "Tournament": "Durham IV", + "Round": 5, + "Motion": "THBT Britain should seek issue based coalitions rather than a further integration into the EU." + }, + { + "Date": "2012-11-03T00:00:00", + "Tournament": "Durham IV", + "Round": "Novice_Final", + "Motion": "This House would ban extremist political parties." + }, + { + "Date": "2012-11-03T00:00:00", + "Tournament": "Durham IV", + "Round": "Open_Semis", + "Motion": "This House would allow prospective mothers to take the pill.\"" + }, + { + "Date": "2012-11-03T00:00:00", + "Tournament": "Durham IV", + "Round": "Open_Final", + "Motion": "This House would support the partition of nation-states along their ethnic lines." + }, + { + "Date": "2012-11-03T00:00:00", + "Tournament": "Welsh Novices", + "Round": 1, + "Motion": "THW not allow anybody under the age of 18 to leave school without first having passed all of their exams" + }, + { + "Date": "2012-11-03T00:00:00", + "Tournament": "Welsh Novices", + "Round": 2, + "Motion": "THW institute gender and racial quotas in all government cabinets" + }, + { + "Date": "2012-11-03T00:00:00", + "Tournament": "Welsh Novices", + "Round": 3, + "Motion": "THW only intervene in arab uprisings if guaranteed preferential economic agreements in return" + }, + { + "Date": "2012-11-03T00:00:00", + "Tournament": "Welsh Novices", + "Round": 4, + "Motion": "THW Make it a criminal offence to know of a crime and not report it" + }, + { + "Date": "2012-11-03T00:00:00", + "Tournament": "Welsh Novices", + "Round": "Open_Final", + "Motion": "THBT pieces of major social legislation, notably gay marriage, should be passed only by referendum" + }, + { + "Date": "2012-11-02T00:00:00", + "Tournament": "Newcastle IV", + "Round": 1, + "Motion": "THBT the media should not report on a terrorist attack immediately after the event" + }, + { + "Date": "2012-11-02T00:00:00", + "Tournament": "Newcastle IV", + "Round": 2, + "Motion": "THW introduce irreversible laws to be programmed into robots" + }, + { + "Date": "2012-11-02T00:00:00", + "Tournament": "Newcastle IV", + "Round": 3, + "Motion": "THW take charitable status away from religious institutions that do not teach comprehensive sexual education" + }, + { + "Date": "2012-11-02T00:00:00", + "Tournament": "Newcastle IV", + "Round": 4, + "Motion": "THBT it is legitimate for nations to destabilise the governments that are complicit in the production of hardcore narcotics" + }, + { + "Date": "2012-11-02T00:00:00", + "Tournament": "Newcastle IV", + "Round": "Open_Final", + "Motion": "THBT state education should purposely undermine the normal gender roles" + }, + { + "Date": "2012-11-02T00:00:00", + "Tournament": "UCU Open", + "Round": 1, + "Motion": "THW Remove All UEFA's Limits on Football Club Spending (which includes transfer and salaries)." + }, + { + "Date": "2012-11-02T00:00:00", + "Tournament": "UCU Open", + "Round": 2, + "Motion": "THBT the European Union should guarantee membership to regions of member states that secede from their parent state." + }, + { + "Date": "2012-11-02T00:00:00", + "Tournament": "UCU Open", + "Round": 3, + "Motion": "THW fund hymen reconstruction." + }, + { + "Date": "2012-11-02T00:00:00", + "Tournament": "UCU Open", + "Round": 4, + "Motion": "TH Regrets the 2001 invasion of Afghanistan." + }, + { + "Date": "2012-11-02T00:00:00", + "Tournament": "UCU Open", + "Round": 5, + "Motion": "THBT MGM Film Studios should cast a woman as the next James Bond." + }, + { + "Date": "2012-11-02T00:00:00", + "Tournament": "UCU Open", + "Round": "Open_Semis", + "Motion": "THBT Japanese Leaders are justified in honouring the Yasukuni War Shrines." + }, + { + "Date": "2012-11-02T00:00:00", + "Tournament": "UCU Open", + "Round": "Open_Final", + "Motion": "You are a Liberal leaning journalist covering the White House, you have received exclusive and indisputable evidence that during his college years Barack Obama had an active gay sexual life, THW Publish the Story." + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "Imperial Open", + "Round": 1, + "Motion": "THBT the West should support a power-sharing deal between the Afghan government and the Taliban" + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "Imperial Open", + "Round": 2, + "Motion": "THBT Latin American countries should use private military contractors to police high crime areas" + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "Imperial Open", + "Round": 3, + "Motion": "THBT the feminist movement should renounce the title of \"Feminism\"" + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "Imperial Open", + "Round": 4, + "Motion": "THBT in order to be eligible for public funding, art must be subject to a double-blind test, in which it is judged anonymously by an art critic, and by members of the public against the work of a 5-year-old" + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "Namda Novices", + "Round": 1, + "Motion": "THW, ban national football teams who fans use racist or homophobic chants, from international competition" + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "Namda Novices", + "Round": 2, + "Motion": "THW require local councils to provide sufficient plots for gypsies in spite of local opposition." + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "Namda Novices", + "Round": 3, + "Motion": "THW allow law enforcement agencies to monitor the phones, emails, internet activity and text messages of anyone who has been convicted of a crime linked to organised crime (as opposed to a hypothetical status quo where permission is granted on a case by case basis, where a judge must approve it based on evidence that the person is currently committing a crime)" + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "Namda Novices", + "Round": 4, + "Motion": "THW force clinically obese children to attend residential weight loss and education camps during the summer holidays" + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "Namda Novices", + "Round": "Open_Semis", + "Motion": "THBT western nations should launch pre-emptive air strikes against Iranian nuclear facilities" + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "Namda Novices", + "Round": "Open_Final", + "Motion": "THBT in order for full gender equality to be achieved, all images designed to even slightly sexually attract or arouse the viewer must be banned" + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "UCD Vice-President’s Cup", + "Round": 1, + "Motion": "THW allow people in developing countries to sell themselves into slavery" + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "UCD Vice-President’s Cup", + "Round": 2, + "Motion": "THW require artists to obtain permission from the subject/muse of a work of art prior to its release" + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "UCD Vice-President’s Cup", + "Round": 3, + "Motion": "THW give the ECB a veto over all national budgets within the Eurozone" + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "UCD Vice-President’s Cup", + "Round": 4, + "Motion": "As a Parent, THIW Raise its Child Gender Neutral" + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "UCD Vice-President’s Cup", + "Round": 5, + "Motion": "THBT it is not the role of a Government to reduce the relative poverty of its citizens" + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "UCD Vice-President’s Cup", + "Round": "Open_Semis", + "Motion": "THBT the state should, were possible, teach children in their vernacular language" + }, + { + "Date": "2012-10-27T00:00:00", + "Tournament": "UCD Vice-President’s Cup", + "Round": "Open_Final", + "Motion": "THBT the UCI should establish a truth and reconciliation commission to deal with doping in cycling" + }, + { + "Date": "2012-10-25T00:00:00", + "Tournament": "UCD Novice IV", + "Round": 1, + "Motion": "THBT the right to bear arms is the right to be free" + }, + { + "Date": "2012-10-25T00:00:00", + "Tournament": "UCD Novice IV", + "Round": 2, + "Motion": "THBT the world would be a better place if nobody believed in God" + }, + { + "Date": "2012-10-25T00:00:00", + "Tournament": "UCD Novice IV", + "Round": 3, + "Motion": "THW ban private healthcare and replace it with a comprehensive public system" + }, + { + "Date": "2012-10-25T00:00:00", + "Tournament": "UCD Novice IV", + "Round": "Open_Semis", + "Motion": "THB corrupt, benevolent and capable dictatorship is preferable to corrupt and inept democracy" + }, + { + "Date": "2012-10-25T00:00:00", + "Tournament": "UCD Novice IV", + "Round": "Open_Final", + "Motion": "THW Require the Public Registration of All Psychics and the Suppression of their Abilities with Drugs" + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "Bogwall (SSDC Novices)", + "Round": 1, + "Motion": "THW legalise polygamy" + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "Bogwall (SSDC Novices)", + "Round": 2, + "Motion": "THW financially incentivise voting" + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "Bogwall (SSDC Novices)", + "Round": 3, + "Motion": "THBT the West should impose sanctions on Israel until it disbands its nuclear programme and relinquishes control of all nuclear weapons" + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "Bogwall (SSDC Novices)", + "Round": 4, + "Motion": "THW ban protests at any event connected to a military funeral" + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "Bogwall (SSDC Novices)", + "Round": "Open_Semis", + "Motion": "TH supports Scottish independence" + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "Bogwall (SSDC Novices)", + "Round": "Open_Final", + "Motion": "THW out closeted LGBT public figures" + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "Dutch Debate Masters", + "Round": 1, + "Motion": "THW abolish ethical checks on social science experiments" + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "Dutch Debate Masters", + "Round": 2, + "Motion": "THBT Turkey should intervene militarily in Syria" + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "Dutch Debate Masters", + "Round": 3, + "Motion": "THW set a maximum amount to be spent on health care per QUALY (Quality Adjusted Life Year)" + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "Dutch Debate Masters", + "Round": "Open_Final", + "Motion": "THBT the judges in Supreme Court should be elected directly by the American people" + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "Gutenberg Cup", + "Round": 1, + "Motion": "Should Robin be allowed to drive the Batmobil too?" + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "Gutenberg Cup", + "Round": 2, + "Motion": "Does Snowhite need only one Dwarf?" + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "Gutenberg Cup", + "Round": 3, + "Motion": "Do we need a women’s quota in prison?" + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "Gutenberg Cup", + "Round": "Open_Semis", + "Motion": "Do we need an ECO-label for organs?" + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "Gutenberg Cup", + "Round": "Open_Final", + "Motion": "Should the Dönertier be placed under environmental protection?" + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "SOAS IV", + "Round": 1, + "Motion": "TH regrets the criminalisation of squatting." + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "SOAS IV", + "Round": 2, + "Motion": "THW allow high-ranked army officials, when in agreement, to reverse decisions made by democratic governments regarding military missions." + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "SOAS IV", + "Round": 3, + "Motion": "THW fund research into the existence of a violent gene." + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "SOAS IV", + "Round": 4, + "Motion": "THB that LGBTQI activism in countries with strong anti-gay policies does more harm than good." + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "SOAS IV", + "Round": 5, + "Motion": "THW abolish all term-limits on the service of elected heads of state." + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "SOAS IV", + "Round": "ESL_Semis", + "Motion": "THW not allow members of the royal family to serve in active combat." + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "SOAS IV", + "Round": "ESL_Final", + "Motion": "THB that European States should end all funding for the arts until everyone lives above the national poverty level." + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "SOAS IV", + "Round": "Open_Quarters", + "Motion": "THB it is legitimate for states to deny residence or asylum to immigrants who openly contradict their predominant values." + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "SOAS IV", + "Round": "Open_Semis", + "Motion": "You are the British government. You have full guarantee that SAS (special air service) can enter the prison which currently holds the Pussy Riot Girls in Russia and you can remove them safely. THW enter Russia and remove the Pussy Riot Girls from their cells." + }, + { + "Date": "2012-10-20T00:00:00", + "Tournament": "SOAS IV", + "Round": "Open_Final", + "Motion": "THB the state should actively prosecute sexist and misogynist remarks.." + }, + { + "Date": "2012-10-13T00:00:00", + "Tournament": "Alternative Open", + "Round": 1, + "Motion": "THW ban memory erasing technology (Eternal Sunshine of the Spotless Mind)" + }, + { + "Date": "2012-10-13T00:00:00", + "Tournament": "Alternative Open", + "Round": 2, + "Motion": "THBT it is legitimate for Replicants to destroy any and all means of replicant production (Bladerunner)" + }, + { + "Date": "2012-10-13T00:00:00", + "Tournament": "Alternative Open", + "Round": 3, + "Motion": "THW establish an independent 'prawn' state (District 9)" + }, + { + "Date": "2012-10-13T00:00:00", + "Tournament": "Alternative Open", + "Round": 4, + "Motion": "something about clones being happier if they didn't know they were clones. (Never Let Me Go)" + }, + { + "Date": "2012-10-13T00:00:00", + "Tournament": "Alternative Open", + "Round": "Open_Final", + "Motion": "THW give the 4-5-6 the 10% of children from the bottom of the league tables (Or, THW implement PLEB) (Torchwood: Children of the Earth)" + }, + { + "Date": "2012-10-13T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": 1, + "Motion": "THBT adults who are not on the organ donor list should not be eligible to receive organ transplants" + }, + { + "Date": "2012-10-13T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": 2, + "Motion": "THBT players who are found to have racially abused their fellow competitors should be banned for life" + }, + { + "Date": "2012-10-13T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": 3, + "Motion": "THW ban the depiction of the Prophet Muhammad (Peace Be Upon Him)" + }, + { + "Date": "2012-10-13T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": 4, + "Motion": "THW prefer US Presidential candidates to be selected exclusively by party elites" + }, + { + "Date": "2012-10-13T00:00:00", + "Tournament": "UCL President’s Cup", + "Round": "Open_Final", + "Motion": "THBT the LGBT Movement Should Not Out Homosexual Politicians That Publicly Profess Homophobic Views" + }, + { + "Date": "2012-10-06T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 1, + "Motion": "THBT the State should pay for university education" + }, + { + "Date": "2012-10-06T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 2, + "Motion": "THW abolish all hate crime laws and instead prosecute according to criminal law" + }, + { + "Date": "2012-10-06T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 3, + "Motion": "THS eco-terrorism" + }, + { + "Date": "2012-10-06T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 4, + "Motion": "THBT the identity of the artist should be obscured from those who buy and display the art (approximation)" + }, + { + "Date": "2012-10-06T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 5, + "Motion": "THW financially incentivize drug and alcohol addicts not to have children" + }, + { + "Date": "2012-10-06T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": "Open_Semis", + "Motion": "THBT in the event of a Syrian border attack on Turkey, NATO should come to the aid of Turkey" + }, + { + "Date": "2012-10-06T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": "Open_Final", + "Motion": "TH welcomes the death of god at the hands of science" + }, + { + "Date": "2012-10-05T00:00:00", + "Tournament": "Open de Lisboa", + "Round": 1, + "Motion": "THW prohibit the grievance of religious beliefs" + }, + { + "Date": "2012-10-05T00:00:00", + "Tournament": "Open de Lisboa", + "Round": 2, + "Motion": "THW defend that universities give preference to disadvantaged students" + }, + { + "Date": "2012-10-05T00:00:00", + "Tournament": "Open de Lisboa", + "Round": 3, + "Motion": "THBT illegal downloading is not criminal" + }, + { + "Date": "2012-10-05T00:00:00", + "Tournament": "Open de Lisboa", + "Round": 4, + "Motion": "THW allow private companies to resort to openly discriminatory hiring practices" + }, + { + "Date": "2012-10-05T00:00:00", + "Tournament": "Open de Lisboa", + "Round": "Open_Semis", + "Motion": "THW recognise the independence of Catalunia" + }, + { + "Date": "2012-10-05T00:00:00", + "Tournament": "Open de Lisboa", + "Round": "Open_Final", + "Motion": "THB in revolution as a solution to the country’s problems" + }, + { + "Date": "2012-09-29T00:00:00", + "Tournament": "DDG Master’s Cup 2012", + "Round": 1, + "Motion": "THB in the right of bodily integrity of children" + }, + { + "Date": "2012-09-29T00:00:00", + "Tournament": "DDG Master’s Cup 2012", + "Round": 2, + "Motion": "THW out homosexual football players (or forcibly out those it knows about)" + }, + { + "Date": "2012-09-29T00:00:00", + "Tournament": "DDG Master’s Cup 2012", + "Round": 3, + "Motion": "THW abolish the Beamtenstatus (i.e. a body of exceptions to the laws governing all citizens of the state granted to some categories of civil servants)" + }, + { + "Date": "2012-09-29T00:00:00", + "Tournament": "DDG Master’s Cup 2012", + "Round": 4, + "Motion": "TH chooses immortality" + }, + { + "Date": "2012-09-29T00:00:00", + "Tournament": "DDG Master’s Cup 2012", + "Round": "Open_Semis", + "Motion": "TH declares the war on drugs a failure" + }, + { + "Date": "2012-09-29T00:00:00", + "Tournament": "DDG Master’s Cup 2012", + "Round": "Open_Final", + "Motion": "THBT it is (fully) sufficient to combat the symptoms" + }, + { + "Date": "2012-09-21T00:00:00", + "Tournament": "Roosevelt Academy Open (RA Open)", + "Round": 1, + "Motion": "THW abolish referenda" + }, + { + "Date": "2012-09-21T00:00:00", + "Tournament": "Roosevelt Academy Open (RA Open)", + "Round": 2, + "Motion": "THW not allow immigrants with illiberal values, such as homophobia, to settle in the country" + }, + { + "Date": "2012-09-21T00:00:00", + "Tournament": "Roosevelt Academy Open (RA Open)", + "Round": 3, + "Motion": "THW vote for Obama" + }, + { + "Date": "2012-09-21T00:00:00", + "Tournament": "Roosevelt Academy Open (RA Open)", + "Round": 4, + "Motion": "THBT western countries should criminalize depictions of the Prophet Muhammed" + }, + { + "Date": "2012-09-21T00:00:00", + "Tournament": "Roosevelt Academy Open (RA Open)", + "Round": 5, + "Motion": "THBT sport's governing bodies, such as IOC and FIFA, should allow performance enhancing pharmaceuticals" + }, + { + "Date": "2012-09-21T00:00:00", + "Tournament": "Roosevelt Academy Open (RA Open)", + "Round": "Open_Semis", + "Motion": "THB the EU should not pay rural subsidies" + }, + { + "Date": "2012-09-21T00:00:00", + "Tournament": "Roosevelt Academy Open (RA Open)", + "Round": "Open_Final", + "Motion": "THW not use prison to punish non-violent offenders" + }, + { + "Date": "2012-09-02T00:00:00", + "Tournament": "Red Sea Open", + "Round": 1, + "Motion": "This house, as Germany, would immediately cease all reparations to the State of Israel" + }, + { + "Date": "2012-09-02T00:00:00", + "Tournament": "Red Sea Open", + "Round": 2, + "Motion": "THW incentivize employers to hire non-college graduates" + }, + { + "Date": "2012-09-02T00:00:00", + "Tournament": "Red Sea Open", + "Round": 3, + "Motion": "THBT decisions on the legalisation, banning, or limiting of substances, including, but not limited to narcotics, tobacco & alcohol should be left to panels of experts rather than to elected representatives" + }, + { + "Date": "2012-09-02T00:00:00", + "Tournament": "Red Sea Open", + "Round": 4, + "Motion": "THW require any journalist working for a print,TV or radio news organization to have a government.-issued license" + }, + { + "Date": "2012-09-02T00:00:00", + "Tournament": "Red Sea Open", + "Round": 5, + "Motion": "THW force anyone suspected of being a 'stolen child' [under the Argentinian military junta 1976-1983] to undergo DNA testing to establish whether they are indeed stolen children and then make the results public" + }, + { + "Date": "2012-09-02T00:00:00", + "Tournament": "Red Sea Open", + "Round": 6, + "Motion": "THW require all isolated religious communities (eg. Hasidic Jews, Jehova's Witnesses) to give all 18-year-olds a 'Rumspringa' [Amish tradition of sending off 18-y.-olds to live in outside world for 1 year, after which they may chose to return or not]" + }, + { + "Date": "2012-09-02T00:00:00", + "Tournament": "Red Sea Open", + "Round": "Open_Semis", + "Motion": "THBT all Government Policy Should Follow the Strict Logic of Maximizing Total Happiness" + }, + { + "Date": "2012-09-02T00:00:00", + "Tournament": "Red Sea Open", + "Round": "Open_Final", + "Motion": "THBT the State of Israel should immediately and publicly end all attempts to capture or kill Nazi war criminals" + }, + { + "Date": "2012-08-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 1, + "Motion": "This house would ban sports, where the main purpose is to inflict pain (e.g. boxing, martial arts)" + }, + { + "Date": "2012-08-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 2, + "Motion": "This house believes that the state should fund the identity change, including changing their legal name and physical appearance, of infamous prisoners upon their release" + }, + { + "Date": "2012-08-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 3, + "Motion": "This house believes that Western countries should offer to immediately cancel all debts owed by any authoritarian country upon its transition to democracy" + }, + { + "Date": "2012-08-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 4, + "Motion": "This house believes that the gay rights movement should campaign for the abolition of marriage, rather than marriage equality" + }, + { + "Date": "2012-08-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 5, + "Motion": "This house would ban all political polls before any election" + }, + { + "Date": "2012-08-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Semis", + "Motion": "This house would make the use of conscripts in active combat a war crime" + }, + { + "Date": "2012-08-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Final", + "Motion": "This house believes that from kindergarten onwards all education should be gender neutral" + }, + { + "Date": "2012-08-05T00:00:00", + "Tournament": "Belgrade EUDC 2012", + "Round": 1, + "Motion": "THBT Parents Should Choose Not To Send their Children to Private Schools" + }, + { + "Date": "2012-08-05T00:00:00", + "Tournament": "Belgrade EUDC 2012", + "Round": 2, + "Motion": "THW Give First Nations Peoples (eg. Native Americans and Aboriginal Australians) Complete Autonomous Self-Government" + }, + { + "Date": "2012-08-05T00:00:00", + "Tournament": "Belgrade EUDC 2012", + "Round": 3, + "Motion": "THBT The Music Industry Should Not Facilitate the Comebacks of Artists Who Commit Violent Crimes" + }, + { + "Date": "2012-08-05T00:00:00", + "Tournament": "Belgrade EUDC 2012", + "Round": 4, + "Motion": "THBT The Mexican Government Should Lift All Limits on the Military and Law Enforcement in the Fight Against Organised Crime" + }, + { + "Date": "2012-08-05T00:00:00", + "Tournament": "Belgrade EUDC 2012", + "Round": 5, + "Motion": "THBT The ECB Should Unconditionally Buy Government Debt from Struggling Eurozone Economies" + }, + { + "Date": "2012-08-05T00:00:00", + "Tournament": "Belgrade EUDC 2012", + "Round": 6, + "Motion": "THW Cap the Amount Corporations Can Spend in Any One Course of Litigation" + }, + { + "Date": "2012-08-05T00:00:00", + "Tournament": "Belgrade EUDC 2012", + "Round": 7, + "Motion": "THW Require the Military to Recruit Soldiers in Direct Proportion to the Socio-Economic Make-up of the Country" + }, + { + "Date": "2012-08-05T00:00:00", + "Tournament": "Belgrade EUDC 2012", + "Round": 8, + "Motion": "THBT The Palestinians Should Accept Complete Demilitarisation in Immediate Return for A Sovereign State" + }, + { + "Date": "2012-08-05T00:00:00", + "Tournament": "Belgrade EUDC 2012", + "Round": 9, + "Motion": "THW Let Anyone Take Up Residence in Any Country, Provided They Can Show that They Will Not be an Economic Burden on that Country" + }, + { + "Date": "2012-08-05T00:00:00", + "Tournament": "Belgrade EUDC 2012", + "Round": "ESL_Quarters", + "Motion": "TH Supports Life Sentences Without the Possibility of Parole For Serial Serious Re-Offenders" + }, + { + "Date": "2012-08-05T00:00:00", + "Tournament": "Belgrade EUDC 2012", + "Round": "ESL_Semis", + "Motion": "THBT The Militaries of Newly Democratised Arab Countries Should Act as Guardians of Secularism" + }, + { + "Date": "2012-08-05T00:00:00", + "Tournament": "Belgrade EUDC 2012", + "Round": "ESL_Final", + "Motion": "THW Retrospectively Remove Amnesties Granted to Those Who Committed Crimes As Part of Oppressive Regimes" + }, + { + "Date": "2012-08-05T00:00:00", + "Tournament": "Belgrade EUDC 2012", + "Round": "Open_Quarters", + "Motion": "THBT Republika Srpska Should Secede from Bosnia and Herzegovina" + }, + { + "Date": "2012-08-05T00:00:00", + "Tournament": "Belgrade EUDC 2012", + "Round": "Open_Semis", + "Motion": "THBT Schools Should Aggressively Stream Students According to their Ability From An Early Age" + }, + { + "Date": "2012-08-05T00:00:00", + "Tournament": "Belgrade EUDC 2012", + "Round": "Open_Final", + "Motion": "THW Amend the US Constitution To Prohibit Any Involvement by Religious Organisation in the Electoral Process" + }, + { + "Date": "2012-07-29T00:00:00", + "Tournament": "Mediterranean Universities Debating Championships (Koc University)", + "Round": 1, + "Motion": "THB the state should send all underage overweight children to a summer far camp" + }, + { + "Date": "2012-07-29T00:00:00", + "Tournament": "Mediterranean Universities Debating Championships (Koc University)", + "Round": 2, + "Motion": "THBT all EU countries should set the bar of entry to their parliament in such a way that would ensure a two party system" + }, + { + "Date": "2012-07-29T00:00:00", + "Tournament": "Mediterranean Universities Debating Championships (Koc University)", + "Round": 3, + "Motion": "THBT Amercia is justified in keeping the Second Amendment" + }, + { + "Date": "2012-07-29T00:00:00", + "Tournament": "Mediterranean Universities Debating Championships (Koc University)", + "Round": 4, + "Motion": "You are a western reporter covering the Middle East. You received indisputable and exclusive evidence that Israel is about to launch an attack on Iranian nuclear facilities in the next 24 hours. THW not publish the story" + }, + { + "Date": "2012-07-29T00:00:00", + "Tournament": "Mediterranean Universities Debating Championships (Koc University)", + "Round": 5, + "Motion": "THB Turkey should abandon all efforts to join the EU" + }, + { + "Date": "2012-07-29T00:00:00", + "Tournament": "Mediterranean Universities Debating Championships (Koc University)", + "Round": 6, + "Motion": "You are a CEO of a major clothing company and currently pay workers in your factory 1 dollar a day. You are presented with a plan that would give your employees a dignified living wage. This would significantly increase production costs but would not put you out of business. THW implement the plan." + }, + { + "Date": "2012-07-29T00:00:00", + "Tournament": "Mediterranean Universities Debating Championships (Koc University)", + "Round": 7, + "Motion": "THBT posing for Playboy is immoral" + }, + { + "Date": "2012-07-29T00:00:00", + "Tournament": "Mediterranean Universities Debating Championships (Koc University)", + "Round": "Open_Semis", + "Motion": "THW heavily incentivise Bosnians, Croats and Serbs in Bosnia and Hercegovina that move to areas where dominant ethnicity is other than their own" + }, + { + "Date": "2012-07-29T00:00:00", + "Tournament": "Mediterranean Universities Debating Championships (Koc University)", + "Round": "Open_Final", + "Motion": "Given the technology, THW burn obedience to criminal law in the brains of all humans" + }, + { + "Date": "2012-07-27T00:00:00", + "Tournament": "IDC Porto Debate Camp and Open", + "Round": 1, + "Motion": "THW end all govt funding of the arts" + }, + { + "Date": "2012-07-27T00:00:00", + "Tournament": "IDC Porto Debate Camp and Open", + "Round": 2, + "Motion": "THBT the media should out gay public figure" + }, + { + "Date": "2012-07-27T00:00:00", + "Tournament": "IDC Porto Debate Camp and Open", + "Round": 3, + "Motion": "THBT the state should not pay any university students tuition fee" + }, + { + "Date": "2012-07-27T00:00:00", + "Tournament": "IDC Porto Debate Camp and Open", + "Round": 4, + "Motion": "THBT if he is deemed to be fully rehabilated, Ander Brevik should ultimately be released." + }, + { + "Date": "2012-07-27T00:00:00", + "Tournament": "IDC Porto Debate Camp and Open", + "Round": 5, + "Motion": "THBT people should not get married" + }, + { + "Date": "2012-07-27T00:00:00", + "Tournament": "IDC Porto Debate Camp and Open", + "Round": "Open_Semis", + "Motion": "TH supports the use of racial profiling in law enforcement" + }, + { + "Date": "2012-07-27T00:00:00", + "Tournament": "IDC Porto Debate Camp and Open", + "Round": "Open_Final", + "Motion": "THBT capitalism has failed the worker." + }, + { + "Date": "2012-07-21T00:00:00", + "Tournament": "SOAS Open", + "Round": 1, + "Motion": "THW ban religious schools" + }, + { + "Date": "2012-07-21T00:00:00", + "Tournament": "SOAS Open", + "Round": 2, + "Motion": "THBT Western countries should commit to cancel all debts owed by any authoritarian country upon its transition to democracy." + }, + { + "Date": "2012-07-21T00:00:00", + "Tournament": "SOAS Open", + "Round": 3, + "Motion": "THW put Jeremy Deller's piece (of a bombed car) on the plinth ( on Trafalgar Square)" + }, + { + "Date": "2012-07-21T00:00:00", + "Tournament": "SOAS Open", + "Round": 4, + "Motion": "TH supports a fiscal union for the eurozone" + }, + { + "Date": "2012-07-21T00:00:00", + "Tournament": "SOAS Open", + "Round": "Open_Final", + "Motion": "TH regrets the bombing of Japan in Worldwar II" + }, + { + "Date": "2012-07-20T00:00:00", + "Tournament": "Boddencup", + "Round": 1, + "Motion": "THBT general education (wide promotion) is better than education/promotion of excellence." + }, + { + "Date": "2012-07-20T00:00:00", + "Tournament": "Boddencup", + "Round": 2, + "Motion": "THW accept Iran as a nuclear power." + }, + { + "Date": "2012-07-20T00:00:00", + "Tournament": "Boddencup", + "Round": 3, + "Motion": "THBT Vorrunde: Dieses Haus glaubt, der demolition of the Palasts der Republik (DDR Parliament) was a mistake." + }, + { + "Date": "2012-07-20T00:00:00", + "Tournament": "Boddencup", + "Round": 4, + "Motion": "THW use only masculine word forms for women and men." + }, + { + "Date": "2012-07-20T00:00:00", + "Tournament": "Boddencup", + "Round": 5, + "Motion": "THW give parliament power to decide over weapons exports." + }, + { + "Date": "2012-07-20T00:00:00", + "Tournament": "Boddencup", + "Round": "Open_Semis", + "Motion": "THW charge a (prohibitively) high customs duty on imports of solar cells from China." + }, + { + "Date": "2012-07-20T00:00:00", + "Tournament": "Boddencup", + "Round": "Open_Final", + "Motion": "TH, being Socrates, would not drink the cup of poison." + }, + { + "Date": "2012-07-07T00:00:00", + "Tournament": "Imperial Summer IV", + "Round": 1, + "Motion": "THW allow companies to pay a higher salary to employees who contractually agree not to have children." + }, + { + "Date": "2012-07-07T00:00:00", + "Tournament": "Imperial Summer IV", + "Round": 2, + "Motion": "THW not imprison people when racist remarks cause offense on social media forums." + }, + { + "Date": "2012-07-07T00:00:00", + "Tournament": "Imperial Summer IV", + "Round": 3, + "Motion": "THW prosecute toppled dictators for crimes against humanity in the ICC rather than in a national court or tribunal." + }, + { + "Date": "2012-06-29T00:00:00", + "Tournament": "Berlin IV", + "Round": 1, + "Motion": "THW assasinate Bashar al Assad" + }, + { + "Date": "2012-06-29T00:00:00", + "Tournament": "Berlin IV", + "Round": 2, + "Motion": "THBT schools should teach children from first-generation immigrants in the language of their parents" + }, + { + "Date": "2012-06-29T00:00:00", + "Tournament": "Berlin IV", + "Round": 3, + "Motion": "THBT developing countries should limit rural to urban migration" + }, + { + "Date": "2012-06-29T00:00:00", + "Tournament": "Berlin IV", + "Round": 4, + "Motion": "THW compel the Catholic Church to allow women to serve as priests" + }, + { + "Date": "2012-06-29T00:00:00", + "Tournament": "Berlin IV", + "Round": 5, + "Motion": "TH regrets South Africa’s decision to use Truth and Reconciliation Commisions rather than prosecuting perpetrators of crimes under Apartheid" + }, + { + "Date": "2012-06-29T00:00:00", + "Tournament": "Berlin IV", + "Round": "Open_Final", + "Motion": "TH regrets the decline of socialism" + }, + { + "Date": "2012-06-10T00:00:00", + "Tournament": "Israeli Nationals", + "Round": 1, + "Motion": "THW compel citizens to vote in national elections" + }, + { + "Date": "2012-06-10T00:00:00", + "Tournament": "Israeli Nationals", + "Round": 2, + "Motion": "THW exempt from mandatory military service any Hasid who chooses to work rather than study in a Yeshiva" + }, + { + "Date": "2012-06-10T00:00:00", + "Tournament": "Israeli Nationals", + "Round": 3, + "Motion": "TH, which is the Hamas movement, would lay down its arms" + }, + { + "Date": "2012-06-10T00:00:00", + "Tournament": "Israeli Nationals", + "Round": 4, + "Motion": "THW decriminalize squatting" + }, + { + "Date": "2012-06-10T00:00:00", + "Tournament": "Israeli Nationals", + "Round": 5, + "Motion": "THW introduce mandatory minimum sentences" + }, + { + "Date": "2012-06-10T00:00:00", + "Tournament": "Israeli Nationals", + "Round": 6, + "Motion": "THW ban student parties who are backed by national political parties from participating in elections for student unions" + }, + { + "Date": "2012-06-10T00:00:00", + "Tournament": "Israeli Nationals", + "Round": "Open_Semis", + "Motion": "THW stop providing tactical training and equipment to \"neighbourhood watch\" groups in Israeli settlements in the West Bank" + }, + { + "Date": "2012-06-10T00:00:00", + "Tournament": "Israeli Nationals", + "Round": "Open_Final", + "Motion": "TH, which is the Iranian regime, would develop nuclear weapons" + }, + { + "Date": "2012-06-07T00:00:00", + "Tournament": "German Language Championships", + "Round": 1, + "Motion": "THW oblige pharmaceutical companies to spend half of their research budgets on illnesses that occur primarily in developing countries" + }, + { + "Date": "2012-06-07T00:00:00", + "Tournament": "German Language Championships", + "Round": 2, + "Motion": "THW forbid domestic security services to monitor Members of Parliaments" + }, + { + "Date": "2012-06-07T00:00:00", + "Tournament": "German Language Championships", + "Round": 3, + "Motion": "THW continue the European Football Championships with 16 participating teams" + }, + { + "Date": "2012-06-07T00:00:00", + "Tournament": "German Language Championships", + "Round": 4, + "Motion": "TH, which is technically capable to do so, would clone Neandertalers" + }, + { + "Date": "2012-06-07T00:00:00", + "Tournament": "German Language Championships", + "Round": 5, + "Motion": "THW create Eurobonds" + }, + { + "Date": "2012-06-07T00:00:00", + "Tournament": "German Language Championships", + "Round": 6, + "Motion": "THW not perform any plays of Thomas Bernhard in Austria" + }, + { + "Date": "2012-06-07T00:00:00", + "Tournament": "German Language Championships", + "Round": 7, + "Motion": "TH supports the foundation of an independent Kurdic state" + }, + { + "Date": "2012-06-07T00:00:00", + "Tournament": "German Language Championships", + "Round": "Open_Quarters", + "Motion": "TH condemns the use of unmanned weapon systems (drones) against human targets" + }, + { + "Date": "2012-06-07T00:00:00", + "Tournament": "German Language Championships", + "Round": "Open_Semis", + "Motion": "THW use geo-engineering to combat climate change" + }, + { + "Date": "2012-06-07T00:00:00", + "Tournament": "German Language Championships", + "Round": "Open_Final", + "Motion": "TH supports large-scale migration from poor to rich regions in the European Union" + }, + { + "Date": "2012-06-02T00:00:00", + "Tournament": "Iron Man BP Tournament", + "Round": 1, + "Motion": "THBT there should be no restrictions on political donations" + }, + { + "Date": "2012-06-02T00:00:00", + "Tournament": "Iron Man BP Tournament", + "Round": 2, + "Motion": "THW predicate any humanitarian aid on efforts limiting birth-rates where there’s a risk of overpopulation." + }, + { + "Date": "2012-06-02T00:00:00", + "Tournament": "Iron Man BP Tournament", + "Round": 3, + "Motion": "THBT, rather than after the fact, the judicial system should be able to take pre-emptive measures when there’s a suspicion of hate-speech" + }, + { + "Date": "2012-06-02T00:00:00", + "Tournament": "Iron Man BP Tournament", + "Round": 4, + "Motion": "THBT that the Turkish military should stop enforcing the separation between church & state" + }, + { + "Date": "2012-06-02T00:00:00", + "Tournament": "Iron Man BP Tournament", + "Round": "Open_Semis", + "Motion": "THW practice investment over austerity in times of economic crisis" + }, + { + "Date": "2012-06-02T00:00:00", + "Tournament": "Iron Man BP Tournament", + "Round": "Open_Final", + "Motion": "THW undertake military action against the Syrian government" + }, + { + "Date": "2012-05-26T00:00:00", + "Tournament": "Bruder Grimm Cup", + "Round": 1, + "Motion": "THW make football clubs pay for the costs of police surveillance during league matches" + }, + { + "Date": "2012-05-26T00:00:00", + "Tournament": "Bruder Grimm Cup", + "Round": 2, + "Motion": "THW block the Security Council as long as the veto power remains available" + }, + { + "Date": "2012-05-26T00:00:00", + "Tournament": "Bruder Grimm Cup", + "Round": 3, + "Motion": "THW Vorrunde: THW rewrite the Grimm fairytales in a gender neutral way (Dieses Haus würde die Grimmschen Märchen gendergerecht umschreiben)" + }, + { + "Date": "2012-05-26T00:00:00", + "Tournament": "Bruder Grimm Cup", + "Round": 4, + "Motion": "THW require candidates for public office to be psychologically evaluated during their trial period rather than making their psychological illness history public" + }, + { + "Date": "2012-05-26T00:00:00", + "Tournament": "Bruder Grimm Cup", + "Round": "Open_Semis", + "Motion": "THW allow defendants to choose between a judge or a jury." + }, + { + "Date": "2012-05-26T00:00:00", + "Tournament": "Bruder Grimm Cup", + "Round": "Open_Final", + "Motion": "THW allow doctors treating terminally ill patients patients to offer them treatments that are still in the experimental stages" + }, + { + "Date": "2012-05-26T00:00:00", + "Tournament": "Dutch Mace", + "Round": 1, + "Motion": "THW allow companies to pay more salary to its employees in exchange for not having children" + }, + { + "Date": "2012-05-26T00:00:00", + "Tournament": "Dutch Mace", + "Round": 2, + "Motion": "TH, which is Mabel Wisse Smit (of Orange), would end the life of Prince Friso" + }, + { + "Date": "2012-05-26T00:00:00", + "Tournament": "Dutch Mace", + "Round": 3, + "Motion": "TH welcomes the end of American hegemony" + }, + { + "Date": "2012-05-26T00:00:00", + "Tournament": "Dutch Mace", + "Round": "Open_Final", + "Motion": "THW die for its country (literally: die for nation and fatherland)" + }, + { + "Date": "2012-05-18T00:00:00", + "Tournament": "Split Union Open", + "Round": 1, + "Motion": "THW ban single sex schools" + }, + { + "Date": "2012-05-18T00:00:00", + "Tournament": "Split Union Open", + "Round": 2, + "Motion": "THW disband NATO" + }, + { + "Date": "2012-05-18T00:00:00", + "Tournament": "Split Union Open", + "Round": 3, + "Motion": "THW make votes public" + }, + { + "Date": "2012-05-18T00:00:00", + "Tournament": "Split Union Open", + "Round": 4, + "Motion": "THW allow pharmaceutical companies to advertise prescription drugs" + }, + { + "Date": "2012-05-18T00:00:00", + "Tournament": "Split Union Open", + "Round": "Open_Final", + "Motion": "THW create ethnic diversity in neighborhoods by introducing housing quotas" + }, + { + "Date": "2012-05-12T00:00:00", + "Tournament": "SSE Riga Debate Academy", + "Round": 1, + "Motion": "THW ban single sex schools" + }, + { + "Date": "2012-05-12T00:00:00", + "Tournament": "SSE Riga Debate Academy", + "Round": 2, + "Motion": "THW not participate in international sporting events held in countries that abuse human rights" + }, + { + "Date": "2012-05-12T00:00:00", + "Tournament": "SSE Riga Debate Academy", + "Round": 3, + "Motion": "THBT crimes committed by police officers should be punished more severely" + }, + { + "Date": "2012-05-12T00:00:00", + "Tournament": "SSE Riga Debate Academy", + "Round": 4, + "Motion": "THBT women should pay a lower rate of income tax than men" + }, + { + "Date": "2012-05-12T00:00:00", + "Tournament": "SSE Riga Debate Academy", + "Round": 5, + "Motion": "THW ban treatments that claim to cure homosexuality" + }, + { + "Date": "2012-05-12T00:00:00", + "Tournament": "SSE Riga Debate Academy", + "Round": "Open_Final", + "Motion": "THBT NATO members should not sell weapons to non NATO members" + }, + { + "Date": "2012-05-12T00:00:00", + "Tournament": "“Denny Crane” Faculty of Political Science", + "Round": 1, + "Motion": "This House prefers Guantanamo Bay rather than the current practice of the war against terrorism with unmanned aerial vehicles." + }, + { + "Date": "2012-05-12T00:00:00", + "Tournament": "“Denny Crane” Faculty of Political Science", + "Round": 2, + "Motion": "In the case of a contact with extra-terrestrial beings, this House would send a woman as a negotiator." + }, + { + "Date": "2012-05-12T00:00:00", + "Tournament": "“Denny Crane” Faculty of Political Science", + "Round": 3, + "Motion": "This House would grant one seat in the Parliament to all more significant religions." + }, + { + "Date": "2012-05-12T00:00:00", + "Tournament": "“Denny Crane” Faculty of Political Science", + "Round": 4, + "Motion": "This House would make a number of votes of one voter inversely proportional to his/her personal wealth." + }, + { + "Date": "2012-05-12T00:00:00", + "Tournament": "“Denny Crane” Faculty of Political Science", + "Round": "Open_Semis", + "Motion": "This House believe that only people who take the law into their hands can save us." + }, + { + "Date": "2012-05-12T00:00:00", + "Tournament": "“Denny Crane” Faculty of Political Science", + "Round": "Open_Final", + "Motion": "This House would never restore the buildings destroyed in the bombing." + }, + { + "Date": "2012-05-11T00:00:00", + "Tournament": "Zeit Debatte Munster", + "Round": 1, + "Motion": "THW ban broadcasting of boxing matches from TV" + }, + { + "Date": "2012-05-11T00:00:00", + "Tournament": "Zeit Debatte Munster", + "Round": 2, + "Motion": "THW adjust development aid to countries where gay rights are violated" + }, + { + "Date": "2012-05-11T00:00:00", + "Tournament": "Zeit Debatte Munster", + "Round": 3, + "Motion": "THW include paintings by Wolfgang Beltracchis in the collectinos of leading German art museums." + }, + { + "Date": "2012-05-11T00:00:00", + "Tournament": "Zeit Debatte Munster", + "Round": 4, + "Motion": "THW declare a trade war against China" + }, + { + "Date": "2012-05-11T00:00:00", + "Tournament": "Zeit Debatte Munster", + "Round": 5, + "Motion": "THW instate a public service (öffentlich-rechtliches) system for newspapers" + }, + { + "Date": "2012-05-11T00:00:00", + "Tournament": "Zeit Debatte Munster", + "Round": "Open_Semis", + "Motion": "THW ban the defamation of religious symbols or authorities" + }, + { + "Date": "2012-05-11T00:00:00", + "Tournament": "Zeit Debatte Munster", + "Round": "Open_Final", + "Motion": "TH supports the targeted/deliberate killing of Iranian scientists" + }, + { + "Date": "2012-05-11T00:00:00", + "Tournament": "Zionism Begin Tournament", + "Round": 1, + "Motion": "THBT the Israeli MoD museum department should stop all it's funding for sites and museums commemorating the Etzel and Lechi groups." + }, + { + "Date": "2012-05-11T00:00:00", + "Tournament": "Zionism Begin Tournament", + "Round": 2, + "Motion": "THW rather marry a Zionist Shiksa than an Anti-Zionist Jew." + }, + { + "Date": "2012-05-11T00:00:00", + "Tournament": "Zionism Begin Tournament", + "Round": 3, + "Motion": "TH regrets \"Aloni Mora\" (euphemism for the settlements)" + }, + { + "Date": "2012-05-11T00:00:00", + "Tournament": "Zionism Begin Tournament", + "Round": 4, + "Motion": "THW will move the Israeli Capital from Jerusalem to Tel-Aviv." + }, + { + "Date": "2012-05-11T00:00:00", + "Tournament": "Zionism Begin Tournament", + "Round": "Open_Final", + "Motion": "THW pay monetary compensation to Sephardi Jews." + }, + { + "Date": "2012-04-29T00:00:00", + "Tournament": "International John Smith Memorial Mace Final", + "Round": "Open_Final", + "Motion": "This house believes the ICC should use bounty hunters to capture and, if necessary, kill indicted war criminals" + }, + { + "Date": "2012-04-28T00:00:00", + "Tournament": "Saggsn- Masders", + "Round": 1, + "Motion": "THW make Saxon a mandatory foreign language on Saxon colleges (hochschulen)" + }, + { + "Date": "2012-04-28T00:00:00", + "Tournament": "Saggsn- Masders", + "Round": 2, + "Motion": "THW swap all children after birth" + }, + { + "Date": "2012-04-28T00:00:00", + "Tournament": "Saggsn- Masders", + "Round": 3, + "Motion": "TH calls for a culture flat tax" + }, + { + "Date": "2012-04-28T00:00:00", + "Tournament": "Saggsn- Masders", + "Round": 4, + "Motion": "THW give Parliament the right to initiate foreign deployment of the army" + }, + { + "Date": "2012-04-28T00:00:00", + "Tournament": "Saggsn- Masders", + "Round": "Open_Final", + "Motion": "THW grant an amnesty to illegal immigrants" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Israeli Open", + "Round": 1, + "Motion": "TH, which is the West, would sanction China." + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Israeli Open", + "Round": 2, + "Motion": "TH, which is the ministry of health, will withhold any information regarding a drug that will ensure the birth of heterosexual children." + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Israeli Open", + "Round": 3, + "Motion": "THW enact an Immediate Democracy.", + "InfoSlide": "Immediate Democracy is a system in which the voter may change their vote at any given time, thus changing the composition of the parliament on a daily basis according to public support." + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Israeli Open", + "Round": "Open_Semis", + "Motion": "THW release inmates from jail solely on the basis of their rehabilitation and not upon the completion of a predetermined period of time." + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Israeli Open", + "Round": "Open_Final", + "Motion": "THW use its influence to disseminate socially progressive values supported by faith.", + "InfoSlide": "You are a young man living in the Galilee 2,000 years ago. You are smart and charismatic. You are capable of collecting and leading a fold of followers. People believe you are the son of God and can do miracles such as healing and food replication." + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Mitteldeutschen Regionalmeisterschaft", + "Round": 1, + "Motion": "THW abolish state imposed heritage protection" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Mitteldeutschen Regionalmeisterschaft", + "Round": 2, + "Motion": "There are states which prescribe quota for the number of women in Boards of companies. THW prohibit companies from other states that do not fill the required quota in their Board to participate in public tenders in states with quotas." + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Mitteldeutschen Regionalmeisterschaft", + "Round": 3, + "Motion": "THW limit media coverage of shootings" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Mitteldeutschen Regionalmeisterschaft", + "Round": 4, + "Motion": "When a ship threatens to breach a UN weapons embargo, THW allow all states to stop the ship with the use of force." + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Mitteldeutschen Regionalmeisterschaft", + "Round": "Open_Semis", + "Motion": "THBT every person has the right to take pictures of works of art or performances and publish them as their own works of art" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Mitteldeutschen Regionalmeisterschaft", + "Round": "Open_Final", + "Motion": "THW allow audio and video recording of court procedures and the public dissemination of the recordings" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "NK Debatteren", + "Round": 1, + "Motion": "THBT political parties should not take gender into account when selecting candidates for voting lists" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "NK Debatteren", + "Round": 2, + "Motion": "You call the internet provider to take down the filter, while your children are present" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "NK Debatteren", + "Round": 3, + "Motion": "THW abolish the tax rebate on mortgage interest" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "NK Debatteren", + "Round": 4, + "Motion": "THW allow the Reclame Code Commissie (Dutch Advertising Standards Authority) to ban advertisements which affirm gender roles" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "NK Debatteren", + "Round": 5, + "Motion": "You lie to Albert Speer and tell him the atomic bomb cannot be built." + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "NK Debatteren", + "Round": 6, + "Motion": "THW abolish the income criteria for family reunification (when bringing family members to the Netherlands for permanent settlement, the applicant must have an income significantly higher than the minimum wage)" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "NK Debatteren", + "Round": "Novice_Final", + "Motion": "THBT in countries where abortion is illegal, no exceptions should be made for cases of incest or rape" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "NK Debatteren", + "Round": "Open_Semis", + "Motion": "THBT, upon death, every person’s body should revert to the state for scientific use or for organ donation depending on necessity" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "NK Debatteren", + "Round": "Open_Final", + "Motion": "THBT every Dutch family with an average or higher income has a moral obligation to take in a foster child (child from foster care)" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Norddeutschen Regionalmeisterschaft", + "Round": 1, + "Motion": "H calls for a common European army" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Norddeutschen Regionalmeisterschaft", + "Round": 2, + "Motion": "THW lift the ban on dancing (Tanzverbot, probably more a general celebration ban) on the “quiet holidays” (Good Friday, Memorial Day and Remembrance Sunday (Totensonntag))" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Norddeutschen Regionalmeisterschaft", + "Round": 3, + "Motion": "THW make the ‘morning after pill’ available without doctor’s recipe" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Norddeutschen Regionalmeisterschaft", + "Round": 4, + "Motion": "THW cancel the exemption on the 5% vote threshold for national minorities" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Norddeutschen Regionalmeisterschaft", + "Round": "Open_Semis", + "Motion": "THBT the Olympic Idea has outlived itself" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Norddeutschen Regionalmeisterschaft", + "Round": "Open_Final", + "Motion": "THW allow audio and video recording of court procedures and the public dissemination of the recordings" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Süddeutschen Regionalmeisterschaft", + "Round": 1, + "Motion": "TH calls for a constitutional right to Internet" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Süddeutschen Regionalmeisterschaft", + "Round": 2, + "Motion": "THW mandate the use of condoms in pornoggaphic movies" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Süddeutschen Regionalmeisterschaft", + "Round": 3, + "Motion": "THBT a stable dictatorship is better than an unstable democracy" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Süddeutschen Regionalmeisterschaft", + "Round": 4, + "Motion": "In case of a zombie-epidemic, THBT zombies have a right to a humane life in special zombie-habitats" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Süddeutschen Regionalmeisterschaft", + "Round": "Open_Semis", + "Motion": "THBT it would be good for the Catholic Chuch to let the next pope be elected by a vote by all Catholics" + }, + { + "Date": "2012-04-21T00:00:00", + "Tournament": "Süddeutschen Regionalmeisterschaft", + "Round": "Open_Final", + "Motion": "THW allow audio and video recording of court procedures and the public dissemination of the recordings" + }, + { + "Date": "2012-04-19T00:00:00", + "Tournament": "Estonia Open", + "Round": 1, + "Motion": "THW abandon the single European monetary currency" + }, + { + "Date": "2012-04-19T00:00:00", + "Tournament": "Estonia Open", + "Round": 2, + "Motion": "TH condems racially provocative art" + }, + { + "Date": "2012-04-19T00:00:00", + "Tournament": "Estonia Open", + "Round": 3, + "Motion": "THW defend Anders Breivik" + }, + { + "Date": "2012-04-19T00:00:00", + "Tournament": "Estonia Open", + "Round": 4, + "Motion": "THW choose only non religious soldiers to serve in international conflicts" + }, + { + "Date": "2012-04-19T00:00:00", + "Tournament": "Estonia Open", + "Round": 5, + "Motion": "THW only teach gender neutral pronouns in school" + }, + { + "Date": "2012-04-19T00:00:00", + "Tournament": "Estonia Open", + "Round": "Open_Semis", + "Motion": "THBT current Generation Germans should not pay taxes or any other form of reparations for Nazi atrocities" + }, + { + "Date": "2012-04-19T00:00:00", + "Tournament": "Estonia Open", + "Round": "Open_Final", + "Motion": "THW reject a Western conception of property rights in favour of collective ownership." + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "Jacobs Open", + "Round": 1, + "Motion": "When paying teachers, THW take into account their students' academic performance" + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "Jacobs Open", + "Round": 2, + "Motion": "TH regrets joining Facebook" + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "Jacobs Open", + "Round": 3, + "Motion": "THW encourage its citizens to break laws in other countries that violate human rights" + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "Jacobs Open", + "Round": 4, + "Motion": "THW pay spouses who stay at home a salary" + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "Jacobs Open", + "Round": 5, + "Motion": "TH supports the US's use of military drones in Pakistan" + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "Jacobs Open", + "Round": "Open_Final", + "Motion": "TH supports campaigns like \"Kony 2012”" + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "Science Po Le Havre IV", + "Round": 1, + "Motion": "THW ban racist and extreme nationalist political parties" + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "Science Po Le Havre IV", + "Round": 2, + "Motion": "THW lift all sanctions on North Korea" + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "Science Po Le Havre IV", + "Round": 3, + "Motion": "THBT the ICC should offer Joseph Kony an amnesty from prosecution" + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "Science Po Le Havre IV", + "Round": 4, + "Motion": "THW impose a 75% rate of tax on all earnings over €100000" + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "Science Po Le Havre IV", + "Round": 5, + "Motion": "THBT all State Schools should actively promote the religion of the majority" + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "Science Po Le Havre IV", + "Round": "Open_Semis", + "Motion": "THBT state policies should actively discourage a consumerist lifestyle" + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "Science Po Le Havre IV", + "Round": "Open_Final", + "Motion": "TH regrets the founding of the European Union" + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "USU Open", + "Round": 1, + "Motion": "THW legalize multi-partner marriages for both men and women." + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "USU Open", + "Round": 2, + "Motion": "THW ban private financing of election campaigns." + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "USU Open", + "Round": 3, + "Motion": "TH regrets the Arab Spring" + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "USU Open", + "Round": 4, + "Motion": "THW abolish prison sentences for all non-violent crimes." + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "USU Open", + "Round": 5, + "Motion": "THBT the creation of the Eurozone has done more harm than good.", + "InfoSlide": "The Eurozone is a currency union consisting of EU member states who have adopted the Euro as their common currency. Its monetary policy is administered by the European Central Bank." + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "USU Open", + "Round": 6, + "Motion": "THBT the West Should cease using attack drones in counter-insurgency operations." + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "USU Open", + "Round": "Open_Octos", + "Motion": "THW lift all sanctions on Iran that target its nuclear program." + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "USU Open", + "Round": "Open_Quarters", + "Motion": "TH regrets the declIne of labor unions." + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "USU Open", + "Round": "Open_Semis", + "Motion": "THBT governments should systematically use subconscious manipulation to nudge citizens towards socially desirable choices.", + "InfoSlide": "There is growing evidence from behavioral economics that seemingly trivial alterations in the way decisions are presented can substantially affect choices. For instance, printing smiley faces on the electricity bills of low-usage households decreases their future electricity consumption. As another example, consumers presented with a list of financial choices are more likely to choose items placed near the middle of the list." + }, + { + "Date": "2012-04-13T00:00:00", + "Tournament": "USU Open", + "Round": "Open_Final", + "Motion": "THBT coming cuts in USA military spending will make the world a better place." + }, + { + "Date": "2012-04-07T00:00:00", + "Tournament": "HSE Open", + "Round": 1, + "Motion": "THBT all teachers should openly declare their sexuality to their pupils" + }, + { + "Date": "2012-04-07T00:00:00", + "Tournament": "HSE Open", + "Round": 2, + "Motion": "THW set legally binding minimal physical parameters for fashion models" + }, + { + "Date": "2012-04-07T00:00:00", + "Tournament": "HSE Open", + "Round": 3, + "Motion": "THW treat cyber attacks as acts of war" + }, + { + "Date": "2012-04-07T00:00:00", + "Tournament": "HSE Open", + "Round": 4, + "Motion": "THW legalize all drugs" + }, + { + "Date": "2012-04-07T00:00:00", + "Tournament": "HSE Open", + "Round": 5, + "Motion": "THW not use public money on life-extending medical care for people over a certain age" + }, + { + "Date": "2012-04-07T00:00:00", + "Tournament": "HSE Open", + "Round": "Open_Semis", + "Motion": "HBT change comes through molotov cocktails, not with a voting ballot" + }, + { + "Date": "2012-04-07T00:00:00", + "Tournament": "HSE Open", + "Round": "Open_Final", + "Motion": "In the case where human space exploration efforts locate an inhabitable planet, THBT the settlers of that planet should construct a society without private property" + }, + { + "Date": "2012-04-06T00:00:00", + "Tournament": "Paris IV", + "Round": 1, + "Motion": "THW remove all constraints on companies firing workers" + }, + { + "Date": "2012-04-06T00:00:00", + "Tournament": "Paris IV", + "Round": 2, + "Motion": "THW make sportןמע teams whose fans performed violence or severe disorderly behaviour, play their matches in front of a crowd of women and children only." + }, + { + "Date": "2012-04-06T00:00:00", + "Tournament": "Paris IV", + "Round": 3, + "Motion": "TH, as Aljazeera, would have broadcasted the videos of the Toulouse attacks." + }, + { + "Date": "2012-04-06T00:00:00", + "Tournament": "Paris IV", + "Round": 4, + "Motion": "THBT retribution should not be a part of the criminal justice system" + }, + { + "Date": "2012-04-06T00:00:00", + "Tournament": "Paris IV", + "Round": 5, + "Motion": "THBT the state should subsidize feminist porn" + }, + { + "Date": "2012-04-06T00:00:00", + "Tournament": "Paris IV", + "Round": "ESL_Final", + "Motion": "HW make assimilation the primary goal of legislation related to immigrants." + }, + { + "Date": "2012-04-06T00:00:00", + "Tournament": "Paris IV", + "Round": "Open_Semis", + "Motion": "THW ban all research into the genetic origins of homosexuality" + }, + { + "Date": "2012-04-06T00:00:00", + "Tournament": "Paris IV", + "Round": "Open_Final", + "Motion": "thw allow the deliberate (!) targeting of civilians in war, where it would significantly reduce casualties in the long term" + }, + { + "Date": "2012-03-31T00:00:00", + "Tournament": "Schwarzwald Cup", + "Round": 1, + "Motion": "THW found one European elite university" + }, + { + "Date": "2012-03-31T00:00:00", + "Tournament": "Schwarzwald Cup", + "Round": 2, + "Motion": "THW tax meat products (approximation)" + }, + { + "Date": "2012-03-31T00:00:00", + "Tournament": "Schwarzwald Cup", + "Round": 3, + "Motion": "THW take away the special protection of marriage from the law" + }, + { + "Date": "2012-03-31T00:00:00", + "Tournament": "Schwarzwald Cup", + "Round": 4, + "Motion": "THW drink more milk." + }, + { + "Date": "2012-03-31T00:00:00", + "Tournament": "Schwarzwald Cup", + "Round": 5, + "Motion": "THW oblige all ministeries (state departments) to use only open source software" + }, + { + "Date": "2012-03-31T00:00:00", + "Tournament": "Schwarzwald Cup", + "Round": 6, + "Motion": "THW shrink/make smaller the Eurozone" + }, + { + "Date": "2012-03-31T00:00:00", + "Tournament": "Schwarzwald Cup", + "Round": "Open_Final", + "Motion": "THW save Schlecker (a drugstore chain that is bankrupt)" + }, + { + "Date": "2012-03-30T00:00:00", + "Tournament": "Dutch Open", + "Round": 1, + "Motion": "THW forcibly relocate indigenous peoples where their presence prevents the extraction of valuable resources" + }, + { + "Date": "2012-03-30T00:00:00", + "Tournament": "Dutch Open", + "Round": 2, + "Motion": "HB that sex education classes should include sexual fetishes with the aim of normalising them." + }, + { + "Date": "2012-03-30T00:00:00", + "Tournament": "Dutch Open", + "Round": 3, + "Motion": "THW not allow pre-nuptial agreements" + }, + { + "Date": "2012-03-30T00:00:00", + "Tournament": "Dutch Open", + "Round": 4, + "Motion": "THB that developing countries should disregard intellectual property rights on life saving/preserving medicine" + }, + { + "Date": "2012-03-30T00:00:00", + "Tournament": "Dutch Open", + "Round": 5, + "Motion": "This House Would covertly fabricate evidence that politicians who promote demonisation or criminalisation of homosexuality are gay (approximation)" + }, + { + "Date": "2012-03-30T00:00:00", + "Tournament": "Dutch Open", + "Round": "Novice_Final", + "Motion": "THW make the punishment for crimes of theft inversely proportional to the wealth of the victim (approximation)" + }, + { + "Date": "2012-03-30T00:00:00", + "Tournament": "Dutch Open", + "Round": "Open_Semis", + "Motion": "THW create country quotas for the acceptance of refugees and allow for trade of these obligations" + }, + { + "Date": "2012-03-30T00:00:00", + "Tournament": "Dutch Open", + "Round": "Open_Final", + "Motion": "THW create a Supreme Court to protect future generations from current lawmakers" + }, + { + "Date": "2012-03-30T00:00:00", + "Tournament": "John Smith Memorial Mace Final", + "Round": "Open_Final", + "Motion": "THBT Science Is Holding Back Humanity" + }, + { + "Date": "2012-03-26T00:00:00", + "Tournament": "French Debate Association Tournament Final", + "Round": "Open_Final", + "Motion": "THBT our technology has exceeded our humanity" + }, + { + "Date": "2012-03-24T00:00:00", + "Tournament": "Heriot-Watt Open", + "Round": 1, + "Motion": "THW allow corporations to pay higher salaries to employees who agree not to have children" + }, + { + "Date": "2012-03-24T00:00:00", + "Tournament": "Heriot-Watt Open", + "Round": 2, + "Motion": "THBT the congressional black caucus should admit non-black members" + }, + { + "Date": "2012-03-24T00:00:00", + "Tournament": "Heriot-Watt Open", + "Round": 3, + "Motion": "THW establish as a norm of international law that reparations should not be paid after wars" + }, + { + "Date": "2012-03-24T00:00:00", + "Tournament": "Heriot-Watt Open", + "Round": 4, + "Motion": "THW replace income tax with a tax on wealth" + }, + { + "Date": "2012-03-24T00:00:00", + "Tournament": "Heriot-Watt Open", + "Round": "Open_Final", + "Motion": "THBT the Scottish Government should allow England to vote in the referendum on Scottish Independence" + }, + { + "Date": "2012-03-24T00:00:00", + "Tournament": "Mykolas Romeris IV", + "Round": 1, + "Motion": "THW ban beauty pageants for under 16-year olds" + }, + { + "Date": "2012-03-24T00:00:00", + "Tournament": "Mykolas Romeris IV", + "Round": 2, + "Motion": "THBT the media should not publish news on suicides" + }, + { + "Date": "2012-03-24T00:00:00", + "Tournament": "Mykolas Romeris IV", + "Round": 3, + "Motion": "THW require that Roma children be sent to state boarding schools" + }, + { + "Date": "2012-03-24T00:00:00", + "Tournament": "Mykolas Romeris IV", + "Round": 4, + "Motion": "THW ban the use of religious rhetoric in political campaigns" + }, + { + "Date": "2012-03-24T00:00:00", + "Tournament": "Mykolas Romeris IV", + "Round": 5, + "Motion": "TH supports the use of bounty hunters in law enforcement" + }, + { + "Date": "2012-03-24T00:00:00", + "Tournament": "Mykolas Romeris IV", + "Round": "Open_Semis", + "Motion": "TH regrets the influence of YouTube on popular culture" + }, + { + "Date": "2012-03-24T00:00:00", + "Tournament": "Mykolas Romeris IV", + "Round": "Open_Final", + "Motion": "THW grant asylum to those fleeing from persecution on grounds of sexual violence" + }, + { + "Date": "2012-03-23T00:00:00", + "Tournament": "DCU Open", + "Round": 1, + "Motion": "THBT it is morally wrong for companies to base hiring/firing/promotion decisions on info taken from social networking sites" + }, + { + "Date": "2012-03-23T00:00:00", + "Tournament": "DCU Open", + "Round": 2, + "Motion": "THW place police in schools that protect them" + }, + { + "Date": "2012-03-23T00:00:00", + "Tournament": "DCU Open", + "Round": 3, + "Motion": "THW not (as the USA) support Israel in a pre-emptive strike on Iraq" + }, + { + "Date": "2012-03-23T00:00:00", + "Tournament": "DCU Open", + "Round": 4, + "Motion": "THW require companies to have the same environmental and working standards in foreign countries as in their home states" + }, + { + "Date": "2012-03-23T00:00:00", + "Tournament": "DCU Open", + "Round": 5, + "Motion": "TH supports the right of parents of mentally disabled children to medically slow or prevent their physical growth" + }, + { + "Date": "2012-03-23T00:00:00", + "Tournament": "DCU Open", + "Round": "Open_Final", + "Motion": "A zombie infection has broken out, THBT it is morally legitimate to kill uninfected humans to increase your own chances of survival." + }, + { + "Date": "2012-03-20T00:00:00", + "Tournament": "John Smith Memorial Mace Open_Semiss", + "Round": "Open_Semis", + "Motion": "THBT Feminist Groups Should Campaign for a Complete Overhaul of the Economic System" + }, + { + "Date": "2012-03-20T00:00:00", + "Tournament": "John Smith Memorial Mace Open_Semiss", + "Round": "Open_Semis", + "Motion": "THBT Feminist Groups Should Actively Recruit Male Spokespeople" + }, + { + "Date": "2012-03-17T00:00:00", + "Tournament": "Debattoernooi Utrecht (DTU)", + "Round": 1, + "Motion": "THW give parliaments the right to appoint an absolute dictator for a limited period of time" + }, + { + "Date": "2012-03-17T00:00:00", + "Tournament": "Debattoernooi Utrecht (DTU)", + "Round": 2, + "Motion": "THBT women in the Netherlands are emancipated enough" + }, + { + "Date": "2012-03-17T00:00:00", + "Tournament": "Debattoernooi Utrecht (DTU)", + "Round": 3, + "Motion": "TH, being an Italian judge, would convict Berlusconi of abuse of power, corruption and gross negligence and take away all his personal belongings" + }, + { + "Date": "2012-03-17T00:00:00", + "Tournament": "Debattoernooi Utrecht (DTU)", + "Round": 4, + "Motion": "THW assume the suspect of a crime to be guilty when the witness(es) in a court case are intimidated or physically abused (approximation)" + }, + { + "Date": "2012-03-17T00:00:00", + "Tournament": "Debattoernooi Utrecht (DTU)", + "Round": "Open_Semis", + "Motion": "THW not punish people who live below the poverty line for economic crimes they have committed" + }, + { + "Date": "2012-03-17T00:00:00", + "Tournament": "Debattoernooi Utrecht (DTU)", + "Round": "Open_Final", + "Motion": "TH, being MTV, would publicly denounce acts with lyrics that degrade women or gays and/or glorify violence (approximation)" + }, + { + "Date": "2012-03-16T00:00:00", + "Tournament": "Zeit Debatte Magdeburg", + "Round": 1, + "Motion": "Should there be a minimum BMI for models?" + }, + { + "Date": "2012-03-16T00:00:00", + "Tournament": "Zeit Debatte Magdeburg", + "Round": 2, + "Motion": "Should tax returns (Steuererklärungen) be made public?" + }, + { + "Date": "2012-03-16T00:00:00", + "Tournament": "Zeit Debatte Magdeburg", + "Round": 3, + "Motion": "Should we consider the DDR an unjust state?" + }, + { + "Date": "2012-03-16T00:00:00", + "Tournament": "Zeit Debatte Magdeburg", + "Round": 4, + "Motion": "Should private pensions be abolished?" + }, + { + "Date": "2012-03-16T00:00:00", + "Tournament": "Zeit Debatte Magdeburg", + "Round": "Open_Semis", + "Motion": "Should buildings that have been empty/unused for over a year be made freely available for general use?" + }, + { + "Date": "2012-03-16T00:00:00", + "Tournament": "Zeit Debatte Magdeburg", + "Round": "Open_Final", + "Motion": "Should politicians and diplomats in general no longer hold immunity status?" + }, + { + "Date": "2012-03-09T00:00:00", + "Tournament": "Vienna IV", + "Round": 1, + "Motion": "THW introduce mandatory trips to Nazi concentration camps for Austrian elementary school students." + }, + { + "Date": "2012-03-09T00:00:00", + "Tournament": "Vienna IV", + "Round": 2, + "Motion": "This House supports the use of charity rather than state welfare systems." + }, + { + "Date": "2012-03-09T00:00:00", + "Tournament": "Vienna IV", + "Round": 3, + "Motion": "This House believes that Russia was justified in vetoing intervention in Syria." + }, + { + "Date": "2012-03-09T00:00:00", + "Tournament": "Vienna IV", + "Round": 4, + "Motion": "This House believes that Facebook is justified to censor any of its users' content for any reason it sees fit." + }, + { + "Date": "2012-03-09T00:00:00", + "Tournament": "Vienna IV", + "Round": 5, + "Motion": "This House supports the appointment of technocratic governments in Eurozone countries suffering fiscal crisis." + }, + { + "Date": "2012-03-09T00:00:00", + "Tournament": "Vienna IV", + "Round": 6, + "Motion": "THB the Israeli Army should adopt a policy of shooting to kill their own comrades where they are likely to be captured." + }, + { + "Date": "2012-03-09T00:00:00", + "Tournament": "Vienna IV", + "Round": "Open_Semis", + "Motion": "THBT EU countries should promote Christianity and not other religions." + }, + { + "Date": "2012-03-09T00:00:00", + "Tournament": "Vienna IV", + "Round": "Open_Final", + "Motion": "Given the ability to carry a full term pregnancy in an incubator. THBT humankind should seek to abolish natural pregnancy." + }, + { + "Date": "2012-03-08T00:00:00", + "Tournament": "French Debate Association Tournament Open_Semiss", + "Round": "Open_Semi_1", + "Motion": "THBT a man who dies rich is a man who dies disgraced" + }, + { + "Date": "2012-03-08T00:00:00", + "Tournament": "French Debate Association Tournament Open_Semiss", + "Round": "Open_Semi_2", + "Motion": "THBT whoever controls the past controls the future." + }, + { + "Date": "2012-03-05T00:00:00", + "Tournament": "John Smith Memorial Mace Open_Semiss", + "Round": "Open_Quarter_1", + "Motion": "THBT the NAACP should publicly condemn Chris Brown" + }, + { + "Date": "2012-03-05T00:00:00", + "Tournament": "John Smith Memorial Mace Open_Semiss", + "Round": "Open_Quarter_2", + "Motion": "THW ban “My Big Fat Gypsy Wedding”" + }, + { + "Date": "2012-03-05T00:00:00", + "Tournament": "John Smith Memorial Mace Open_Semiss", + "Round": "Open_Quarter_3", + "Motion": "THW abolish the two categories for Best Actor/Actress and Best Supporting Actor/Actress at the Academy Awards and award only gender neutral Oscars for Best Acting and Best Supporting Acting" + }, + { + "Date": "2012-03-05T00:00:00", + "Tournament": "John Smith Memorial Mace Open_Semiss", + "Round": "Open_Quarter_4", + "Motion": "THBT notable LGB figures should not describe their sexuality as a choice" + }, + { + "Date": "2012-03-02T00:00:00", + "Tournament": "Budapest Open", + "Round": 1, + "Motion": "THW not imprison those convicted of non-violent crimes" + }, + { + "Date": "2012-03-02T00:00:00", + "Tournament": "Budapest Open", + "Round": 2, + "Motion": "THW make development aid conditional upon the improvement of women’s rights." + }, + { + "Date": "2012-03-02T00:00:00", + "Tournament": "Budapest Open", + "Round": 3, + "Motion": "THW lift the ban on Communist symbols in all post-communist EU member states" + }, + { + "Date": "2012-03-02T00:00:00", + "Tournament": "Budapest Open", + "Round": 4, + "Motion": "THW only provide state pension to those mentally or physically unable to work." + }, + { + "Date": "2012-03-02T00:00:00", + "Tournament": "Budapest Open", + "Round": "Open_Semis", + "Motion": "THW ban medicine designed to erase human memories" + }, + { + "Date": "2012-03-02T00:00:00", + "Tournament": "Budapest Open", + "Round": "Open_Final", + "Motion": "THBT violent activities to achieve anti-capitalist aims in Western societies are justified" + }, + { + "Date": "2012-02-24T00:00:00", + "Tournament": "Manchester IV", + "Round": 1, + "Motion": "THB India should remove its ban on 'The Satanic Verses'" + }, + { + "Date": "2012-02-24T00:00:00", + "Tournament": "Manchester IV", + "Round": 2, + "Motion": "THW invest in big casinos to rejuvenate economically disadvantaged areas" + }, + { + "Date": "2012-02-24T00:00:00", + "Tournament": "Manchester IV", + "Round": 3, + "Motion": "THB the Greek Government should reject the latest EU, ECB & IMF bailout agreement" + }, + { + "Date": "2012-02-24T00:00:00", + "Tournament": "Manchester IV", + "Round": 4, + "Motion": "THB the Gay Rights Movement should oppose Gay Pride Parades in Western Liberal Democracies" + }, + { + "Date": "2012-02-24T00:00:00", + "Tournament": "Manchester IV", + "Round": 5, + "Motion": "THBT the states of former Yugoslavia should create a unified football league" + }, + { + "Date": "2012-02-24T00:00:00", + "Tournament": "Manchester IV", + "Round": "ESL_Semis", + "Motion": "THBT the Media should not show images of police brutality" + }, + { + "Date": "2012-02-24T00:00:00", + "Tournament": "Manchester IV", + "Round": "ESL_Final", + "Motion": "THW grant automatic asylum to women from countries under sharia law" + }, + { + "Date": "2012-02-24T00:00:00", + "Tournament": "Manchester IV", + "Round": "Open_Quarters", + "Motion": "THBT Vladmir Putin should make a credible public offer to the United States for joint decommissioning of their entire nuclear arsenal" + }, + { + "Date": "2012-02-24T00:00:00", + "Tournament": "Manchester IV", + "Round": "Open_Semis", + "Motion": "THBT film stars, music stars & other popular entertainers should be prohibited from participating in political campaigns" + }, + { + "Date": "2012-02-24T00:00:00", + "Tournament": "Manchester IV", + "Round": "Open_Final", + "Motion": "THBT Western European countries should teach an overwhelmingly negative version of their imperial histories" + }, + { + "Date": "2012-02-17T00:00:00", + "Tournament": "Aberdeen Open", + "Round": 1, + "Motion": "THBT the Gay Rights Movement Should Campaign For The Abolition of Marriage, Rather Than Marriage Equality" + }, + { + "Date": "2012-02-17T00:00:00", + "Tournament": "Aberdeen Open", + "Round": 2, + "Motion": "THBT the UK Should Leave The EU" + }, + { + "Date": "2012-02-17T00:00:00", + "Tournament": "Aberdeen Open", + "Round": 3, + "Motion": "THBT Journals Should Not Publish The Research", + "InfoSlide": "Scientific research has found evidence that a particular race has an increased genetic risk of developing psychiatric disorders." + }, + { + "Date": "2012-02-17T00:00:00", + "Tournament": "Aberdeen Open", + "Round": 4, + "Motion": "THBT The Image Of Female Sexuality Depicted By Female RnB Artists In Songs Like, But Not Limited To, Rihanna's Rude Boy Are Empowering." + }, + { + "Date": "2012-02-17T00:00:00", + "Tournament": "Aberdeen Open", + "Round": "Open_Final", + "Motion": "THBT It Is Immoral To Vote Republican" + }, + { + "Date": "2012-02-17T00:00:00", + "Tournament": "Final Irish Times", + "Round": "Open_Final", + "Motion": "THW Abolish Prisons" + }, + { + "Date": "2012-02-17T00:00:00", + "Tournament": "LSE Open", + "Round": 1, + "Motion": "THW legalise all forms of assisted suicide for mentally sound people" + }, + { + "Date": "2012-02-17T00:00:00", + "Tournament": "LSE Open", + "Round": 2, + "Motion": "TH regrets the strong social norms in favour of lifelong monogamy" + }, + { + "Date": "2012-02-17T00:00:00", + "Tournament": "LSE Open", + "Round": 3, + "Motion": "THBT western countries should invest primarily in air power rather than ground troops for future military interventions" + }, + { + "Date": "2012-02-17T00:00:00", + "Tournament": "LSE Open", + "Round": 4, + "Motion": "THBT the education system should promote equality of outcomes over equality of opportunities" + }, + { + "Date": "2012-02-17T00:00:00", + "Tournament": "LSE Open", + "Round": 5, + "Motion": "TH welcomes the advent of extreme genetic enhancements for human beings" + }, + { + "Date": "2012-02-17T00:00:00", + "Tournament": "LSE Open", + "Round": "ESL_Final", + "Motion": "THBT national governments should aim to depopulate rather than regenerate areas with few viable economic activities" + }, + { + "Date": "2012-02-17T00:00:00", + "Tournament": "LSE Open", + "Round": "Open_Quarters", + "Motion": "THBT the state should systematically use subconscious manipulation to nudge citizens towards good choices", + "InfoSlide": "There is growing evidence from behavioral economics that seemingly trivial alterations in the way decisions are presented can substantially affect choices. For instance, printing smiley faces on the electricity bills of low-usage households decreases their future electricity consumption. As another example, consumers presented with a list of financial choices are more likely to choose items placed near the middle of the list." + }, + { + "Date": "2012-02-17T00:00:00", + "Tournament": "LSE Open", + "Round": "Open_Semis", + "Motion": "THBT Western foreign policy should seek to prevent China's acquisition of Africa's natural land and resources" + }, + { + "Date": "2012-02-17T00:00:00", + "Tournament": "LSE Open", + "Round": "Open_Final", + "Motion": "TH regrets the decline of Marxism in liberal Western democracies" + }, + { + "Date": "2012-02-12T00:00:00", + "Tournament": "Irish Mace Third Round", + "Round": 1, + "Motion": "THW allow the families of victims of war crimes to sue the country responsible for reparations" + }, + { + "Date": "2012-02-12T00:00:00", + "Tournament": "Irish Mace Third Round", + "Round": 2, + "Motion": "THW grant amnesty to dictators who voluntarily leave office" + }, + { + "Date": "2012-02-12T00:00:00", + "Tournament": "Irish Mace Third Round", + "Round": 3, + "Motion": "THW Make the directors of multi-national companies criminally responsible for any environmental damage caused by their company in the developing world" + }, + { + "Date": "2012-02-12T00:00:00", + "Tournament": "Irish Mace Third Round", + "Round": 4, + "Motion": "THW refuse to extradite criminals to countries with the death penalty" + }, + { + "Date": "2012-02-12T00:00:00", + "Tournament": "Irish Mace Third Round", + "Round": 5, + "Motion": "THW Never hold major sporting events in countries with ongoing human rights violations" + }, + { + "Date": "2012-02-12T00:00:00", + "Tournament": "Irish Mace Third Round", + "Round": 6, + "Motion": "THW allow the global free movement of people" + }, + { + "Date": "2012-02-12T00:00:00", + "Tournament": "Irish Mace Third Round", + "Round": 7, + "Motion": "THW believes that it is legitimate for parliaments to delegate sovereignty to the EU without any need for referendum" + }, + { + "Date": "2012-02-12T00:00:00", + "Tournament": "Irish Mace Third Round", + "Round": 8, + "Motion": "THW use military force to deliver aid in humanitarian crises" + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Bonapartiaans Debattoernooi Amsterdam (BDT)", + "Round": 1, + "Motion": "THW fire civil servants who refuse to wed same-sex couples" + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Bonapartiaans Debattoernooi Amsterdam (BDT)", + "Round": 2, + "Motion": "THW ban Martijn, a paedophile association (vereniging)" + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Bonapartiaans Debattoernooi Amsterdam (BDT)", + "Round": 3, + "Motion": "THW transform the EU into a United States of Europe" + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Bonapartiaans Debattoernooi Amsterdam (BDT)", + "Round": 4, + "Motion": "THW abolish deposit guarantee schemes everywhere" + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Bonapartiaans Debattoernooi Amsterdam (BDT)", + "Round": 5, + "Motion": "THW ban imports from countries where workers do not have the liberty to form unions" + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Bonapartiaans Debattoernooi Amsterdam (BDT)", + "Round": "Open_Semis", + "Motion": "THW abolish patents on computer software" + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Bonapartiaans Debattoernooi Amsterdam (BDT)", + "Round": "Open_Final", + "Motion": "THW instate a general pardon to asylum seekers who have lived in the Netherlands for five years as a minor, and for their parents/legal guardians if they are currently still a minor" + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Cardiff IV", + "Round": 1, + "Motion": "THW create a separate league for athletes who choose to take performance enhancing substances." + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Cardiff IV", + "Round": 2, + "Motion": "THW require all video games that ostensibly depict realistic combat to adhere to the rules of war" + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Cardiff IV", + "Round": 3, + "Motion": "THW abolish the concept of limited liability" + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Cardiff IV", + "Round": 4, + "Motion": "THW create a separate state where all women and only women can claim citizenship" + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Cardiff IV", + "Round": "Open_Final", + "Motion": "THW use the influences gained from these abilities and beliefs to propagate socialist values that are justified through faith." + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Galway Open", + "Round": 1, + "Motion": "THB It is Illegitimate for the State to Attempt to Instill Morals or Values in Children in Schools" + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Galway Open", + "Round": 2, + "Motion": "THW Prosecute Barack Obama for War Crimes" + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Galway Open", + "Round": 3, + "Motion": "TH Regrets the Existence of Valentine's Day" + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Galway Open", + "Round": 4, + "Motion": "from the view of Iran: THW Build a Nuclear Weapon" + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Galway Open", + "Round": 5, + "Motion": "THB the State Should Impose a Maximum Income of €50000, inc benefits, commissions, bonuses, etc." + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Galway Open", + "Round": "Open_Semis", + "Motion": "THW ban all technology in the pursuit of the genetic enhancement of humanity" + }, + { + "Date": "2012-02-11T00:00:00", + "Tournament": "Galway Open", + "Round": "Open_Final", + "Motion": "in the context of The Matrix: THW take the Blue Pill" + }, + { + "Date": "2012-02-06T00:00:00", + "Tournament": "Aghveryan IV", + "Round": 1, + "Motion": "THW punish sports teams for the criminal and violent behaviour of their fans." + }, + { + "Date": "2012-02-06T00:00:00", + "Tournament": "Aghveryan IV", + "Round": 2, + "Motion": "THW ban foreign citizens from adopting Armenian children." + }, + { + "Date": "2012-02-06T00:00:00", + "Tournament": "Aghveryan IV", + "Round": 3, + "Motion": "THW add a right to internet access to the Armenian constitution." + }, + { + "Date": "2012-02-06T00:00:00", + "Tournament": "Aghveryan IV", + "Round": 4, + "Motion": "THB that the Armenian media does not adequately represent the views and concerns of Armenian society." + }, + { + "Date": "2012-02-06T00:00:00", + "Tournament": "Aghveryan IV", + "Round": "Open_Final", + "Motion": "THB that journalism is more effective than political protest in holding governments responsible for their actions." + }, + { + "Date": "2012-01-31T00:00:00", + "Tournament": "Irish Times Open_Semiss", + "Round": "Open_Semi_1", + "Motion": "“THB the Protection of National Identity is a Legitimate Reason to Restrict Immigration”" + }, + { + "Date": "2012-01-31T00:00:00", + "Tournament": "Irish Times Open_Semiss", + "Round": "Open_Semi_2", + "Motion": "“THB in a State of Anarchy”" + }, + { + "Date": "2012-01-31T00:00:00", + "Tournament": "Irish Times Open_Semiss", + "Round": "Open_Semi_3", + "Motion": "“THB Feminism has Run it's Course”" + }, + { + "Date": "2012-01-31T00:00:00", + "Tournament": "Irish Times Open_Semiss", + "Round": "Open_Semi_4", + "Motion": "“THW Vote for Mitt Romney to be the Next President of the United States of America”" + }, + { + "Date": "2012-01-27T00:00:00", + "Tournament": "Trinity IV", + "Round": 1, + "Motion": "THW disclose the ethnicity of a sperm/egg donor to the prospective parent" + }, + { + "Date": "2012-01-27T00:00:00", + "Tournament": "Trinity IV", + "Round": 2, + "Motion": "THBT goverments should only fund bailouts of other countries if they get permission to do so in a referendum" + }, + { + "Date": "2012-01-27T00:00:00", + "Tournament": "Trinity IV", + "Round": 3, + "Motion": "THBT the US should give South Korea weapons" + }, + { + "Date": "2012-01-27T00:00:00", + "Tournament": "Trinity IV", + "Round": 4, + "Motion": "THBT the feminist groups should not campaign against abortion" + }, + { + "Date": "2012-01-27T00:00:00", + "Tournament": "Trinity IV", + "Round": 5, + "Motion": "THBT the US should pay reparations to its Muslim population for policies carried out in the aftermath of 9/11" + }, + { + "Date": "2012-01-27T00:00:00", + "Tournament": "Trinity IV", + "Round": "Open_Quarters", + "Motion": "THBT Boston College should release the IRA tapes" + }, + { + "Date": "2012-01-27T00:00:00", + "Tournament": "Trinity IV", + "Round": "Open_Semis", + "Motion": "TH whishes that Barack Obama had faced a primary challenge" + }, + { + "Date": "2012-01-27T00:00:00", + "Tournament": "Trinity IV", + "Round": "Open_Final", + "Motion": "THW welcome the downfall of global capitalism" + }, + { + "Date": "2012-01-27T00:00:00", + "Tournament": "York IV", + "Round": 1, + "Motion": "THW force broadcasters to display, promote and report women’s sport equally to men’s sport." + }, + { + "Date": "2012-01-27T00:00:00", + "Tournament": "York IV", + "Round": 2, + "Motion": "THW allow people to opt in to drugs that have not yet passed clinical trials." + }, + { + "Date": "2012-01-27T00:00:00", + "Tournament": "York IV", + "Round": 3, + "Motion": "THW make Georgia a NATO member." + }, + { + "Date": "2012-01-27T00:00:00", + "Tournament": "York IV", + "Round": 4, + "Motion": "THW ban the private production of pornography and replace it with state-produced pornography that promotes respect and good treatment for women." + }, + { + "Date": "2012-01-27T00:00:00", + "Tournament": "York IV", + "Round": "Open_Semis", + "Motion": "THW prevent foreign ownership of significant domestic companies" + }, + { + "Date": "2012-01-27T00:00:00", + "Tournament": "York IV", + "Round": "Open_Final", + "Motion": "THW treat the desecration and destruction of sites of historical or cultural value as a crime against humanity" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 1, + "Motion": "THBT we live in a mediaocracy" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 10, + "Motion": "THBT If You Are Not In Fashion, You Are Nobody" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 11, + "Motion": "THBT science has replaced philosophy" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 12, + "Motion": "THBT men build too many walls and not enough bridges" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 13, + "Motion": "THBT if it isn't broken, break it" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 14, + "Motion": "THW look back in anger" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 15, + "Motion": "THBT greed is good" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 16, + "Motion": "THBT If It's Not Fun, You're Not Doing It Right." + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 17, + "Motion": "THBT the best is yet to come" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 18, + "Motion": "THBT stale, pale males still rule" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 2, + "Motion": "THB in the Holy Trinity: Apple, Google and Facebook" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 3, + "Motion": "THBT life begins at 25" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 4, + "Motion": "THBT politicians should retire at 65 like everybody else" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 5, + "Motion": "THB in freedom at all costs" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 6, + "Motion": "THB in a three-day week-end" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 7, + "Motion": "THW blow the whistle" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 8, + "Motion": "THBT physical appearance is a fundamental criterion for good leadership" + }, + { + "Date": "2012-01-26T00:00:00", + "Tournament": "French Debate Association Tournament Preliminary Rounds", + "Round": 9, + "Motion": "THB politicians should have a sense of humor" + }, + { + "Date": "2012-01-24T00:00:00", + "Tournament": "Irish Mace Debates Round 2", + "Round": 1, + "Motion": "THW remove all hate speech laws" + }, + { + "Date": "2012-01-24T00:00:00", + "Tournament": "Irish Mace Debates Round 2", + "Round": 10, + "Motion": "THW, in countries where the death penalty is in use, not allow anyone to watch the execution" + }, + { + "Date": "2012-01-24T00:00:00", + "Tournament": "Irish Mace Debates Round 2", + "Round": 11, + "Motion": "THW take socio-economic background into account when sentencing criminals" + }, + { + "Date": "2012-01-24T00:00:00", + "Tournament": "Irish Mace Debates Round 2", + "Round": 12, + "Motion": "TTHW prosecute domestic violence without the consent of the victim" + }, + { + "Date": "2012-01-24T00:00:00", + "Tournament": "Irish Mace Debates Round 2", + "Round": 13, + "Motion": "THBT post-revolution states should delegate all trials and sentencing of former rulers and high ranking officials to the international community" + }, + { + "Date": "2012-01-24T00:00:00", + "Tournament": "Irish Mace Debates Round 2", + "Round": 14, + "Motion": "THW Elect its Judges Democratically" + }, + { + "Date": "2012-01-24T00:00:00", + "Tournament": "Irish Mace Debates Round 2", + "Round": 15, + "Motion": "THW publish a list of convicted sex offenders" + }, + { + "Date": "2012-01-24T00:00:00", + "Tournament": "Irish Mace Debates Round 2", + "Round": 16, + "Motion": "THW ban alcohol" + }, + { + "Date": "2012-01-24T00:00:00", + "Tournament": "Irish Mace Debates Round 2", + "Round": 2, + "Motion": "THW allow “religious duty/compulsion” as a mitigating defense for crimes" + }, + { + "Date": "2012-01-24T00:00:00", + "Tournament": "Irish Mace Debates Round 2", + "Round": 3, + "Motion": "THW ban media reporting on violent crimes" + }, + { + "Date": "2012-01-24T00:00:00", + "Tournament": "Irish Mace Debates Round 2", + "Round": 4, + "Motion": "THW hold parents responsible for the crimes of their kids" + }, + { + "Date": "2012-01-24T00:00:00", + "Tournament": "Irish Mace Debates Round 2", + "Round": 5, + "Motion": "THW make rehabilitation the sole criteria for releasing criminals from prison" + }, + { + "Date": "2012-01-24T00:00:00", + "Tournament": "Irish Mace Debates Round 2", + "Round": 6, + "Motion": "THW ban works of literature/film/music that glorify criminality" + }, + { + "Date": "2012-01-24T00:00:00", + "Tournament": "Irish Mace Debates Round 2", + "Round": 7, + "Motion": "THW compel priests to report a crime which they learn of through confession" + }, + { + "Date": "2012-01-24T00:00:00", + "Tournament": "Irish Mace Debates Round 2", + "Round": 8, + "Motion": "TTHW abolish the practice of plea bargaining" + }, + { + "Date": "2012-01-24T00:00:00", + "Tournament": "Irish Mace Debates Round 2", + "Round": 9, + "Motion": "THW end the use of prisons" + }, + { + "Date": "2012-01-21T00:00:00", + "Tournament": "Berlin Punk", + "Round": 1, + "Motion": "THW make the use of public transport free" + }, + { + "Date": "2012-01-21T00:00:00", + "Tournament": "Berlin Punk", + "Round": 2, + "Motion": "THW forbid celebrities to present their children in the media" + }, + { + "Date": "2012-01-21T00:00:00", + "Tournament": "Berlin Punk", + "Round": 3, + "Motion": "THBT education is a federal matter" + }, + { + "Date": "2012-01-21T00:00:00", + "Tournament": "Berlin Punk", + "Round": 4, + "Motion": "THBT the EU should impose an embargo on countries where child labour exists" + }, + { + "Date": "2012-01-21T00:00:00", + "Tournament": "Berlin Punk", + "Round": "Open_Semis", + "Motion": "THBT endangered animal species should not be actively protected" + }, + { + "Date": "2012-01-21T00:00:00", + "Tournament": "Berlin Punk", + "Round": "Open_Final", + "Motion": "THBT judges should have the option to sentence people to human trials (medical trials?)" + }, + { + "Date": "2012-01-21T00:00:00", + "Tournament": "Rotterdam BP Tournament", + "Round": 1, + "Motion": "THW allow ‘Fight Clubs’ to be founded" + }, + { + "Date": "2012-01-21T00:00:00", + "Tournament": "Rotterdam BP Tournament", + "Round": 2, + "Motion": "THW give police the same investigative powers as under the anti-terrorism framework when dealing with ‘loverboys’ (men who trick young women into becoming prostitutes)" + }, + { + "Date": "2012-01-21T00:00:00", + "Tournament": "Rotterdam BP Tournament", + "Round": 3, + "Motion": "THBT the EU should focus all its efforts on the Common Market (should only strive for a Common Market)" + }, + { + "Date": "2012-01-21T00:00:00", + "Tournament": "Rotterdam BP Tournament", + "Round": 4, + "Motion": "THW oblige prospective parents with a genetic disease to use embryo selection" + }, + { + "Date": "2012-01-21T00:00:00", + "Tournament": "Rotterdam BP Tournament", + "Round": "Open_Semis", + "Motion": "THW suspend all sanctions on North Korea" + }, + { + "Date": "2012-01-21T00:00:00", + "Tournament": "Rotterdam BP Tournament", + "Round": "Open_Final", + "Motion": "THW impose a legal duty of care on adult children for their parents" + }, + { + "Date": "2012-01-20T00:00:00", + "Tournament": "Berlin New Year’s Invitational", + "Round": 1, + "Motion": "THBT the Brasilian state should prosecute a murder that happens among one of the uncontacted peoples in the rainforest" + }, + { + "Date": "2012-01-20T00:00:00", + "Tournament": "Berlin New Year’s Invitational", + "Round": 2, + "Motion": "THBT in states where cloning is allowed for research purposes, it should be possible to purchase Chimären (a copy body? genetic material?)" + }, + { + "Date": "2012-01-20T00:00:00", + "Tournament": "Berlin New Year’s Invitational", + "Round": 3, + "Motion": "THW prohibit missionary work that pronounces abstention as the only godly way against the spread of HIV" + }, + { + "Date": "2012-01-20T00:00:00", + "Tournament": "Berlin New Year’s Invitational", + "Round": 4, + "Motion": "THBT the State should put freedom over security in case of doubt" + }, + { + "Date": "2012-01-20T00:00:00", + "Tournament": "Berlin New Year’s Invitational", + "Round": "Open_Final", + "Motion": "THBT fathers have the right to get a fatherhood test even against the explicit wish of the mother" + }, + { + "Date": "2012-01-20T00:00:00", + "Tournament": "Oxford Women’s Open", + "Round": 1, + "Motion": "THBT religious organisations should be subject to all aspects of civilian law (including, but not limited to: employment practice, adoption policy,...)" + }, + { + "Date": "2012-01-20T00:00:00", + "Tournament": "Oxford Women’s Open", + "Round": 2, + "Motion": "THW require military training to include extensive ethical and philosophical study" + }, + { + "Date": "2012-01-20T00:00:00", + "Tournament": "Oxford Women’s Open", + "Round": 3, + "Motion": "THW vote Republican" + }, + { + "Date": "2012-01-20T00:00:00", + "Tournament": "Oxford Women’s Open", + "Round": 4, + "Motion": "THW legalise S&M" + }, + { + "Date": "2012-01-20T00:00:00", + "Tournament": "Oxford Women’s Open", + "Round": 5, + "Motion": "THB it is legitimate to use violence to defend private property" + }, + { + "Date": "2012-01-20T00:00:00", + "Tournament": "Oxford Women’s Open", + "Round": "Open_Semis", + "Motion": "TH, as the UN, would use only private military companies for peace keeping operations" + }, + { + "Date": "2012-01-20T00:00:00", + "Tournament": "Oxford Women’s Open", + "Round": "Open_Final", + "Motion": "THW raise its child without gender" + }, + { + "Date": "2012-01-13T00:00:00", + "Tournament": "Zeit Debatte Hamburg", + "Round": 1, + "Motion": "Should pensioners be obliged to do voluntary work?" + }, + { + "Date": "2012-01-13T00:00:00", + "Tournament": "Zeit Debatte Hamburg", + "Round": 2, + "Motion": "Should the 9th of November be Germany’s national holiday?" + }, + { + "Date": "2012-01-13T00:00:00", + "Tournament": "Zeit Debatte Hamburg", + "Round": 3, + "Motion": "Do we need a common European asylum and migration policy?" + }, + { + "Date": "2012-01-13T00:00:00", + "Tournament": "Zeit Debatte Hamburg", + "Round": 4, + "Motion": "Should the debt limit on Länder be abolished?" + }, + { + "Date": "2012-01-13T00:00:00", + "Tournament": "Zeit Debatte Hamburg", + "Round": 5, + "Motion": "Should people with prostheses be allowed to participate in regular sports competitions, even when the prostheses could be considered advantageous?" + }, + { + "Date": "2012-01-13T00:00:00", + "Tournament": "Zeit Debatte Hamburg", + "Round": "Open_Semis", + "Motion": "Should research in all German universities exclusively serve civil and peaceful purposes?" + }, + { + "Date": "2012-01-13T00:00:00", + "Tournament": "Zeit Debatte Hamburg", + "Round": "Open_Final", + "Motion": "Should the position of national president be abolished?" + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": 1, + "Motion": "THW make fathers take paternity leave." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": 2, + "Motion": "THW prevent politicians from making fact claims that, while not technically lies, are substantially misleading to voters." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": 3, + "Motion": "THW force large companies who leave an area to pay the costs of any resulting structural unemployment." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": 4, + "Motion": "THW require individuals to use all their wealth beyond USD 5 million for philanthropic projects." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": 5, + "Motion": "THW require deaf parents to send their children (whether deaf or hearing) to mainstream schools for their primary and secondary education." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": 6, + "Motion": "TH supports politicians who pass progressive legislation, even where this is contrary to the wishes of the democratic electorate." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": 7, + "Motion": "TH supports the free movement of labour worldwide." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": 8, + "Motion": "THW exempt academic disputes from defamation law." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": 9, + "Motion": "THW ban all private healthcare in favour of a comprehensive public healthcare system." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": "EFL_Semis", + "Motion": "THBT when doctors discover a patient has STDs, they should reveal that info to the patient’s partner." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": "EFL_Final", + "Motion": "THBT public education systems should raise the aspirations of children from disadvantaged backgrounds beyond that which is realistic to expect them to achieve." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": "ESL_Quarters", + "Motion": "THW limit government ministers’ standard of living to that of someone on the current median wage." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": "ESL_Semis", + "Motion": "In countries with few female politicians, THB it is good to have a politically active ‘first lady’." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": "ESL_Final", + "Motion": "TH supports scientists who fabricate evidence exaggerating the certainty of man-made climate change, where there is a low likelihood to be caught." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": "Open_Octos", + "Motion": "THW not allow a single media company to own multiple TV channels or newspapers (whether in print or online)." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": "Open_Quarters", + "Motion": "THBT “Western” consultants advising dictatorships have a moral duty to sabotage them." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": "Open_Semis", + "Motion": "THBT images designed to even slightly sexually attract/aroused viewer should be restricted to specialist adult shot/xxx domain." + }, + { + "Date": "2012-01-01T00:00:00", + "Tournament": "De La Salle WUDC 2012", + "Round": "Open_Final", + "Motion": "TH supports nationalism." + }, + { + "Date": "2011-12-17T00:00:00", + "Tournament": "Dutch Novice Cup", + "Round": 1, + "Motion": "THW enable people to sue their partner for compensation in case of infedility" + }, + { + "Date": "2011-12-17T00:00:00", + "Tournament": "Dutch Novice Cup", + "Round": 2, + "Motion": "THW abolish political parties and only allow election of individuals" + }, + { + "Date": "2011-12-17T00:00:00", + "Tournament": "Dutch Novice Cup", + "Round": 3, + "Motion": "THW set ethnic quota per school" + }, + { + "Date": "2011-12-17T00:00:00", + "Tournament": "Dutch Novice Cup", + "Round": "Open_Final", + "Motion": "You would make your discovery public" + }, + { + "Date": "2011-12-10T00:00:00", + "Tournament": "Stuttgart IV", + "Round": 1, + "Motion": "THW make the right to vote contingent on basic knowledge about political issues" + }, + { + "Date": "2011-12-10T00:00:00", + "Tournament": "Stuttgart IV", + "Round": 2, + "Motion": "THBT the EU should limit the amount of energy individuals are allowed to consume" + }, + { + "Date": "2011-12-10T00:00:00", + "Tournament": "Stuttgart IV", + "Round": 3, + "Motion": "As a parent, THW not lie to its children about the existence of Santa Claus" + }, + { + "Date": "2011-12-10T00:00:00", + "Tournament": "Stuttgart IV", + "Round": 4, + "Motion": "THW allow young boys to undergo chemical castration to preserve their singing voices" + }, + { + "Date": "2011-12-10T00:00:00", + "Tournament": "Stuttgart IV", + "Round": "Open_Semis", + "Motion": "This house would militarily intervene in Syria" + }, + { + "Date": "2011-12-10T00:00:00", + "Tournament": "Stuttgart IV", + "Round": "Open_Final", + "Motion": "THW make Drion’s pill publicly available" + }, + { + "Date": "2011-12-09T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 1, + "Motion": "THBT Western nations should make development aid conditional on the protection of LGBT (Lesbian, gay, bisexual, transsexual) rights." + }, + { + "Date": "2011-12-09T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 2, + "Motion": "THBT governments should lie to their populations in time of economic crisis, where the lies are deemed likely to improve the economy." + }, + { + "Date": "2011-12-09T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 3, + "Motion": "THW make any language which is spoken by at least 5% of the population an official state language and offer all state service in that language." + }, + { + "Date": "2011-12-09T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 4, + "Motion": "THBT the US military should destroy Iran's nuclear program." + }, + { + "Date": "2011-12-09T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 5, + "Motion": "THW require all media aimed at children to undermine traditional gender roles" + }, + { + "Date": "2011-12-09T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Semis", + "Motion": "THW make the US pay reparations to its Muslim citizens." + }, + { + "Date": "2011-12-09T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Final", + "Motion": "THBT the time for the United States of Europe has come." + }, + { + "Date": "2011-12-09T00:00:00", + "Tournament": "Streitcultur Cup", + "Round": 1, + "Motion": "Fake or Real: Should photoshopped (retouched) images be banned in advertisement?" + }, + { + "Date": "2011-12-09T00:00:00", + "Tournament": "Streitcultur Cup", + "Round": 2, + "Motion": "Should states that financially support other states in crisis situations get a say in that country’s internal politics?" + }, + { + "Date": "2011-12-09T00:00:00", + "Tournament": "Streitcultur Cup", + "Round": 3, + "Motion": "Should the concept of household income be abolished for taxation purposes? (Soll das Ehegattensplitting abgeschafft werden?)" + }, + { + "Date": "2011-12-09T00:00:00", + "Tournament": "Streitcultur Cup", + "Round": "Open_Final", + "Motion": "In the name of the people: do we need jury panels in our courts?" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "Estonian Pro-Am Tournament", + "Round": 1, + "Motion": "THBT the Russian language should be an official language of Estonia" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "Estonian Pro-Am Tournament", + "Round": 2, + "Motion": "THW ban pornography" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "Estonian Pro-Am Tournament", + "Round": 3, + "Motion": "THBT political assassination is a legitimate tool for foreign policy" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "Estonian Pro-Am Tournament", + "Round": 4, + "Motion": "THW have a maximum wage" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "Estonian Pro-Am Tournament", + "Round": "Open_Final", + "Motion": "THW stop all measures to prevent suicides" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "Finnish National Championships", + "Round": 1, + "Motion": "THW break the state monopoly on alcohol" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "Finnish National Championships", + "Round": 2, + "Motion": "THW not fund public service broadcasters (like YLE or BBC)" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "Finnish National Championships", + "Round": 3, + "Motion": "THBT free health care should cover cosmetic surgery" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "Finnish National Championships", + "Round": 4, + "Motion": "THBT Finland should unilaterally pull out of the Euro" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "Finnish National Championships", + "Round": "Open_Semis", + "Motion": "THW create a common European defence force" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "Finnish National Championships", + "Round": "Open_Final", + "Motion": "THW appoint the parliament by lottery" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "KCL IV", + "Round": 1, + "Motion": "THBT High Schools should not award the titles Prom King and Prom Queen at the Senior Prom" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "KCL IV", + "Round": 2, + "Motion": "THW Make Substantial Military Service a Condition for Running for the Presidency of the United States" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "KCL IV", + "Round": 3, + "Motion": "THBT Facebook, Google, and Yahoo should take active steps to prevent the formation of \"filter bubbles\"" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "KCL IV", + "Round": 4, + "Motion": "THW allow individuals to legally occupy any building that has been unused for more than 6 months" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "KCL IV", + "Round": "Open_Semis", + "Motion": "THBT the Japanese Government should allow its citizens to form leagues of masked vigilantes to fight the Yakuza" + }, + { + "Date": "2011-12-03T00:00:00", + "Tournament": "KCL IV", + "Round": "Open_Final", + "Motion": "THBT Courts in Emerging Democracies should break up persistently dominant political parties" + }, + { + "Date": "2011-12-02T00:00:00", + "Tournament": "Cork IV", + "Round": 1, + "Motion": "THBT all bail-out packages should be approved by a popular referendum in the recipient party" + }, + { + "Date": "2011-12-02T00:00:00", + "Tournament": "Cork IV", + "Round": 2, + "Motion": "THBT the Arab League should impose an oil embargo on the EU until the EU member states lift their ban on the Islamic Veil" + }, + { + "Date": "2011-12-02T00:00:00", + "Tournament": "Cork IV", + "Round": 3, + "Motion": "THBT it would be better if Sinn Fein took their seats (in the UK parliament)" + }, + { + "Date": "2011-12-02T00:00:00", + "Tournament": "Cork IV", + "Round": 4, + "Motion": "THBT Virginia Tech should remember Seung-Hui Cho, the shooter, along with his victims in its memorials … and launch 33 balloons" + }, + { + "Date": "2011-12-02T00:00:00", + "Tournament": "Cork IV", + "Round": 5, + "Motion": "THW allow defendants in criminal trials to ask the judge to be acquitted on the grounds that the law they broke was unjust, and would instruct all juries to take this defense into account" + }, + { + "Date": "2011-12-02T00:00:00", + "Tournament": "Cork IV", + "Round": "Novice_Final", + "Motion": "THBT the State should have no role in the recognition of marriage" + }, + { + "Date": "2011-12-02T00:00:00", + "Tournament": "Cork IV", + "Round": "Open_Semis", + "Motion": "THBT the State should give everyone an equal salary, paid for by the government, even if they are unemployed" + }, + { + "Date": "2011-12-02T00:00:00", + "Tournament": "Cork IV", + "Round": "Open_Final", + "Motion": "THW refuse war veterans the right to vote" + }, + { + "Date": "2011-12-02T00:00:00", + "Tournament": "Paris Centrale IV", + "Round": 1, + "Motion": "THBT parenthood should be by license only" + }, + { + "Date": "2011-12-02T00:00:00", + "Tournament": "Paris Centrale IV", + "Round": 2, + "Motion": "THBT states should actively try to break down internet censorship of foreign regimes" + }, + { + "Date": "2011-12-02T00:00:00", + "Tournament": "Paris Centrale IV", + "Round": 3, + "Motion": "THBT gay professional sportspeople have a duty to come out" + }, + { + "Date": "2011-12-02T00:00:00", + "Tournament": "Paris Centrale IV", + "Round": 4, + "Motion": "THBT the European Union should have direct powers of taxation" + }, + { + "Date": "2011-12-02T00:00:00", + "Tournament": "Paris Centrale IV", + "Round": 5, + "Motion": "THW legalize opium production in Afghanistan" + }, + { + "Date": "2011-12-02T00:00:00", + "Tournament": "Paris Centrale IV", + "Round": "Open_Semis", + "Motion": "THBT serial marital infidelity should be a bar to seeking high political office" + }, + { + "Date": "2011-12-02T00:00:00", + "Tournament": "Paris Centrale IV", + "Round": "Open_Final", + "Motion": "THW partition Belgium" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": 1, + "Motion": "THBT American political parties should hold their primaries nation-wide on one day" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": 2, + "Motion": "THBT immigration is a good solution to counter an aging population" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": 3, + "Motion": "THW nationalise the banking sector" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": 4, + "Motion": "(In 2050 scientists have localised the gen that causes paedophilic tendencies. The gen can be surgically removed/”turned off” without major impact) THW require everyone with the gen to undergo surgery, even if they have never been convicted of a crime" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": 5, + "Motion": "THW ban all advertising" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": "Open_Semis", + "Motion": "THBT large-scale land redistribution are a legitimate way to combat poverty in the third world" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Cicero Debattoernooi", + "Round": "Open_Final", + "Motion": "THW require the ICC to prosecute Netanyahu" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "ESU England Mace", + "Round": 1, + "Motion": "THW allow gifted students to skip years in primary and secondary school" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "ESU England Mace", + "Round": 2, + "Motion": "THBT all countries should abandon the fight against climate change and should just seek to adapt to its consequences" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "ESU England Mace", + "Round": 3, + "Motion": "(Pre-released motion) THBT all US primary elections should be held on the same day" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "ESU England Mace", + "Round": 4, + "Motion": "THB the EU should centrally govern all vital aspects of the economies of heavily indebted eurozone nations" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "ESU England Mace", + "Round": 5, + "Motion": "THBT single parents in prison should be provided with special treatment to allow them to raise their young children from behind bars" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "ESU England Mace", + "Round": "Open_Semis", + "Motion": "THBT Pakistan should cease all assistance to the United States in the fight against the Taliban" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "ESU England Mace", + "Round": "Open_Final", + "Motion": "THW criminalise all forms of racist speech and behaviour, even where it falls short of directly inciting racial hatred or violence" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Moscow Open", + "Round": 1, + "Motion": "THW ban the smacking of children" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Moscow Open", + "Round": 2, + "Motion": "THBT one party's maximum share in the parliament should be limited to 50% + 1 place" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Moscow Open", + "Round": 3, + "Motion": "THBT eurozone countries that are in danger of default should be forced to give up control over taxation and budget spending in addition to receiving a bail-out." + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Moscow Open", + "Round": 4, + "Motion": "THBT legislators should not take the will of the people into consideration, when the reason behind it is religious" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Moscow Open", + "Round": 5, + "Motion": "THBT countries should use political leverage to influence judicial proceedings involving their citizens in other countries." + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Moscow Open", + "Round": "Open_Semis", + "Motion": "THBT Russia along with the EU & US should implement a complete trade ban with Iran" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Moscow Open", + "Round": "Open_Final", + "Motion": "THBT society would be better if the primary duty of companies were to their workers and not to their shareholders" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Zeit Debatte Karlsruhe", + "Round": 1, + "Motion": "Should appeal procedures (Einspruchsmöglichkeiten) against construction projects for renewable energy be cancelled?" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Zeit Debatte Karlsruhe", + "Round": 2, + "Motion": "Should the inclusion of disabled children in German schools be stopped?" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Zeit Debatte Karlsruhe", + "Round": 3, + "Motion": "Should the NPD be banned?" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Zeit Debatte Karlsruhe", + "Round": 4, + "Motion": "Should human rights be cancelled for those persons who violate human rights?" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Zeit Debatte Karlsruhe", + "Round": 5, + "Motion": "Should news be censored when it could shake the confidence in the public finances of a Eurozone member?" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Zeit Debatte Karlsruhe", + "Round": "Open_Semis", + "Motion": "Should the West support the uprising in Syria militarily?" + }, + { + "Date": "2011-11-26T00:00:00", + "Tournament": "Zeit Debatte Karlsruhe", + "Round": "Open_Final", + "Motion": "Do we need a United States of Europe?" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS", + "Round": 0, + "Motion": "THW make voting a use it or lose it right" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS", + "Round": 1, + "Motion": "THBT state has an obligation to fund the arts" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS", + "Round": 10, + "Motion": "THBT newly democratised Arab countries should not allow religious parties to participate in elections" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS", + "Round": 2, + "Motion": "THBT all countries’ education systems should focus on the teaching of English" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS", + "Round": 3, + "Motion": "THW allow abortion only in the case of both parents’ consent" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS", + "Round": 4, + "Motion": "THBT the European experiment has failed" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS", + "Round": 5, + "Motion": "THBT media in liberal Western democracies is not independent and free" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS", + "Round": 6, + "Motion": "THW give every citizen a positive and a negative vote in elections" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS", + "Round": 7, + "Motion": "TH supports the implementation of a global Robin Hood tax" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS", + "Round": 8, + "Motion": "TH regrets the undemocratic election of Italy’s and Greece’s president" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS", + "Round": 9, + "Motion": "THBT the EU should make Serbian membership conditional upon Serbia’s acceptance of gay rights" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS Tournament II", + "Round": 1, + "Motion": "This House believes that the media should show the full horror of war" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS Tournament II", + "Round": 2, + "Motion": "This House approves of \"hacktivism\" against misbehaving corporations." + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS Tournament II", + "Round": 3, + "Motion": "THW give transnational EU citizenship to Roma." + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS Tournament II", + "Round": 4, + "Motion": "THBT there will be no peace in the Middle East without an independent Palestine." + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS Tournament II", + "Round": 5, + "Motion": "THBT war criminals should be put on trial in their home countries." + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS Tournament II", + "Round": 6, + "Motion": "THBT states should guarantee legally enforceable socio-economic rights." + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS Tournament II", + "Round": "Open_Quarters", + "Motion": "HBT Greece should go bankrupt" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS Tournament II", + "Round": "Open_Semis", + "Motion": "THBT companies should be held liable in their home countries for environmental damage in other countries" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "IDAS Tournament II", + "Round": "Open_Final", + "Motion": "THBT the feminist movement should seek a ban on pornography" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "Irish Times Round 2", + "Round": 1, + "Motion": "\"THW Remove all State Funding from RTE\"" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "Irish Times Round 2", + "Round": 2, + "Motion": "\"THB if Josef Mengele had Discovered a Cure for Cancer, it'd be morally Acceptable to use it\"" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "Irish Times Round 2", + "Round": 3, + "Motion": "\"THW Remove Equal State Suffrage in the United States Senate\"" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "Irish Times Round 2", + "Round": 4, + "Motion": "\"TH Supports 'The Right to be Forgotten' (in relation to internet privacy)\"" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "Irish Times Round 2", + "Round": 5, + "Motion": "\"THB Enda Kenny's first 9 months as Taoiseach have been a success\"" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "Irish Times Round 2", + "Round": 6, + "Motion": "\"THW Allow Organised Fight Clubs\"" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "Irish Times Round 2", + "Round": 7, + "Motion": "\"THW Introduce Sex-Affirmative Action for Corporate Executives\"" + }, + { + "Date": "2011-11-25T00:00:00", + "Tournament": "Irish Times Round 2", + "Round": 8, + "Motion": "\"THW Abolish Libel\"" + }, + { + "Date": "2011-11-18T00:00:00", + "Tournament": "Bogwall", + "Round": 1, + "Motion": "This house would ban under 18's from appearing on reality TV shows" + }, + { + "Date": "2011-11-18T00:00:00", + "Tournament": "Bogwall", + "Round": 2, + "Motion": "This house would ban all space exploration for the foreseeable future" + }, + { + "Date": "2011-11-18T00:00:00", + "Tournament": "Bogwall", + "Round": 3, + "Motion": "This house would globally create a tax on financial transactions" + }, + { + "Date": "2011-11-18T00:00:00", + "Tournament": "Bogwall", + "Round": 4, + "Motion": "This house would apply all libel law to content produced on social networking sites" + }, + { + "Date": "2011-11-18T00:00:00", + "Tournament": "Bogwall", + "Round": "Open_Final", + "Motion": "This house would euthanise all people on their 80th brithday" + }, + { + "Date": "2011-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": 1, + "Motion": "THW allow family members to forcibly commit proven alcoholics and drug addicts to rehabilitation clinics" + }, + { + "Date": "2011-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": 2, + "Motion": "THBT all research organizations should institute codes of conduct that forbid the creation of strong Artificial Intelligence.", + "InfoSlide": "A ‘Weak’ Artificial Intelligence is only capable of solving narrowly defined problems. A ‘Strong’ AI is capable of all the same kinds of intellectual tasks as human beings. A Strong AI would be able to reason, plan, learn, adapt, and communicate in natural language. Researchers at major universities have made significant progress towards the creation of Strong AI." + }, + { + "Date": "2011-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": 3, + "Motion": "THW provide financial assistance to inner city communities to prevent gentrification" + }, + { + "Date": "2011-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": 4, + "Motion": "THBT China should make extracting a full apology for Japan’s war crimes a top strategic priority" + }, + { + "Date": "2011-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": 5, + "Motion": "THBT feminism should not campaign against polygamy in poor countries" + }, + { + "Date": "2011-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": "ESL_Semis", + "Motion": "THW take the children of the Amish into care" + }, + { + "Date": "2011-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": "ESL_Final", + "Motion": "THB that it is morally legitimate for Occupy Movement to use violence to undermine capitalist institutions" + }, + { + "Date": "2011-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Quarters", + "Motion": "THW consider the use of conscripts a war crime" + }, + { + "Date": "2011-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Semis", + "Motion": "TH regrets the rise of a distinct African American culture" + }, + { + "Date": "2011-11-18T00:00:00", + "Tournament": "Cambridge IV", + "Round": "Open_Final", + "Motion": "THW break Google’s search monopoly" + }, + { + "Date": "2011-11-11T00:00:00", + "Tournament": "Oxford IV", + "Round": 1, + "Motion": "THBT sexual education classes in schools should teach techniques or pure sexual gratification (including but not limited to ...list follows)" + }, + { + "Date": "2011-11-11T00:00:00", + "Tournament": "Oxford IV", + "Round": 2, + "Motion": "THBT in developing countries aid organisations should be banned from religious proselytyzing" + }, + { + "Date": "2011-11-11T00:00:00", + "Tournament": "Oxford IV", + "Round": 3, + "Motion": "THW suspend trade unions and labour protection laws in times of economic crisis" + }, + { + "Date": "2011-11-11T00:00:00", + "Tournament": "Oxford IV", + "Round": 4, + "Motion": "THBT Israel should Materially Support Arab Pro-Democratic Movements" + }, + { + "Date": "2011-11-11T00:00:00", + "Tournament": "Oxford IV", + "Round": 5, + "Motion": "THW place a special tax on successful artists in order to fund new and developing artists" + }, + { + "Date": "2011-11-11T00:00:00", + "Tournament": "Oxford IV", + "Round": "ESL_Semis", + "Motion": "THBT the LBGT movement should not support Gay Pride marches" + }, + { + "Date": "2011-11-11T00:00:00", + "Tournament": "Oxford IV", + "Round": "ESL_Final", + "Motion": "THBT the leaders of big world corporations should be democratically chosen by national elections" + }, + { + "Date": "2011-11-11T00:00:00", + "Tournament": "Oxford IV", + "Round": "Open_Quarters", + "Motion": "THBT international law should allow states which accept refugees to sue the states they come from for compensation." + }, + { + "Date": "2011-11-11T00:00:00", + "Tournament": "Oxford IV", + "Round": "Open_Semis", + "Motion": "THW establish brothels on military bases" + }, + { + "Date": "2011-11-11T00:00:00", + "Tournament": "Oxford IV", + "Round": "Open_Final", + "Motion": "THW establish geographical zones in which the sale, possession, and use of drugs is legal" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 1, + "Motion": "THW positively discriminate for women in the armed forces" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 10, + "Motion": "THW abolish all laws prohibiting cruelty to animals" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 11, + "Motion": "THW allow parents to remove their children from sex education classes." + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 12, + "Motion": "THBT news outlets should not have shown images of Gaddafi’s corpse" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 13, + "Motion": "THW dismantle power sharing in the North and elect the Stormont Assembly by PR STV" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 14, + "Motion": "THW ban the use, in schools, of literature that reinforces traditional gender roles." + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 15, + "Motion": "THW Not outsource the running of hospitals to private companies." + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 16, + "Motion": "THW allow police to temporarily suspend social networking sites in the interest of restoring law and order" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 17, + "Motion": "THW publicly fund research into paranormal phenomena" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 18, + "Motion": "THW Occupy Dame Street" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 19, + "Motion": "THW impose a moratorium on home foreclosures" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 2, + "Motion": "THW introduce a salary cap for European footballers" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 20, + "Motion": "THW prohibit the release of previously unpublished artistic works, after the death of the creator, author or musician" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 21, + "Motion": "TH regrets the popularity of the Twilight series" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 22, + "Motion": "THW Would Reintroduce Hard Labour in Prisons" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 23, + "Motion": "THW not lie to its children about Santa Claus" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 24, + "Motion": "THB that it is in the interests of women’s equality to campaign against maternity leave." + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 25, + "Motion": "THW require internet subscribers to opt in in order to be able to view pornorgraphic websites" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 26, + "Motion": "That military officers should be allowed to publicly criticise the government" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 27, + "Motion": "This House would allow the defendants that belong to a minority group to choose to be judged by a jury composed exclusively of other members of their same minority group." + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 28, + "Motion": "THW (assuming the technology existed) implant irremovable tracking chips in its citizens" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 29, + "Motion": "THBT Trade Unions do more harm than good for workers" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 3, + "Motion": "THB The state should financially support newspapers" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 30, + "Motion": "THBT destruction of private property is a legitimate tool for environmental campaigners" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 31, + "Motion": "THW End All State Funding For The Arts" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 32, + "Motion": "THW Allow People To Sell Their Organs" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 4, + "Motion": "THW only hire disabled actors to play disabled characters" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 5, + "Motion": "THW abolish JobBridge" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 6, + "Motion": "THW set a cap on pay for all chief executives and other high level employees of chartities." + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 7, + "Motion": "THW abolish geographical constituencies and hold only national elections" + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 8, + "Motion": "THW allow people to sell their organs." + }, + { + "Date": "2011-11-08T00:00:00", + "Tournament": "John Smith Memorial Irish Mace Round 1", + "Round": 9, + "Motion": "THW give social welfare in the form of vouchers." + }, + { + "Date": "2011-11-05T00:00:00", + "Tournament": "Durham IV", + "Round": 1, + "Motion": "THB the police should not create perp walks." + }, + { + "Date": "2011-11-05T00:00:00", + "Tournament": "Durham IV", + "Round": 2, + "Motion": "THW teach boys those aspects of subjects which are thought to be most interesting to them, such as military history." + }, + { + "Date": "2011-11-05T00:00:00", + "Tournament": "Durham IV", + "Round": 3, + "Motion": "THW require all newspapers to be constituted as cooperatives, owned and run by journalists." + }, + { + "Date": "2011-11-05T00:00:00", + "Tournament": "Durham IV", + "Round": 4, + "Motion": "Insofar as it is cost effective, THBT authorities should routinely gather and access as much information, including private and personal information, that may conceivably be useful in solving or preventing crime, as possible." + }, + { + "Date": "2011-11-05T00:00:00", + "Tournament": "Durham IV", + "Round": 5, + "Motion": "THW punish NHS workers who do not blow the whistle on malpractice, corruption or negligence, of which they know, as if they had carried out the act themselves." + }, + { + "Date": "2011-11-05T00:00:00", + "Tournament": "Durham IV", + "Round": "Novice_Final", + "Motion": "This house believes it is illegitimate for governments to prevent any peaceful protest in public space." + }, + { + "Date": "2011-11-05T00:00:00", + "Tournament": "Durham IV", + "Round": "Open_Semis", + "Motion": "This house would not prosecute people living below the poverty line for purely acquisitive crime." + }, + { + "Date": "2011-11-05T00:00:00", + "Tournament": "Durham IV", + "Round": "Open_Final", + "Motion": "This house believes that the media should not use the phrase 'big society' uncritically." + }, + { + "Date": "2011-11-04T00:00:00", + "Tournament": "UCU Open", + "Round": 1, + "Motion": "THBT the USA should stop its military support of Taiwan" + }, + { + "Date": "2011-11-04T00:00:00", + "Tournament": "UCU Open", + "Round": 2, + "Motion": "THBT the state has a duty to provide free, unlimited and uncensored access to the Internet at every home" + }, + { + "Date": "2011-11-04T00:00:00", + "Tournament": "UCU Open", + "Round": 3, + "Motion": "THW legalise all forms of hatespeech" + }, + { + "Date": "2011-11-04T00:00:00", + "Tournament": "UCU Open", + "Round": 4, + "Motion": "THW still pronounce a verdict for civil cases which have been settled out of court" + }, + { + "Date": "2011-11-04T00:00:00", + "Tournament": "UCU Open", + "Round": 5, + "Motion": "THBT each country has a duty to limit population growth" + }, + { + "Date": "2011-11-04T00:00:00", + "Tournament": "UCU Open", + "Round": "Open_Semis", + "Motion": "You are the commander of an Israeli submarine in the Persian Gulf. It is the day after Israel was annihilated in a surprise Iranian nuclear attack: THW not use Israel's second strike capabilities" + }, + { + "Date": "2011-11-04T00:00:00", + "Tournament": "UCU Open", + "Round": "Open_Final", + "Motion": "THW halt all state-sponsored efforts to integrate immigrants into society" + }, + { + "Date": "2011-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2011", + "Round": 1, + "Motion": "THW ban child beauty pageants" + }, + { + "Date": "2011-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2011", + "Round": 2, + "Motion": "THBT Israel should unilaterally preemptively strike Iran" + }, + { + "Date": "2011-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2011", + "Round": 3, + "Motion": "THBT individuals should be required by governments to invest a defined portion of their salary for their retirement" + }, + { + "Date": "2011-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2011", + "Round": 4, + "Motion": "THW forcibly remove the homeless from the streets and place them in mental institutions or rehabilitation" + }, + { + "Date": "2011-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2011", + "Round": 5, + "Motion": "THW consign the European Union to the dustbin of history" + }, + { + "Date": "2011-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2011", + "Round": 6, + "Motion": "THS comprehensive parental leave paid for by employers" + }, + { + "Date": "2011-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2011", + "Round": "Open_Semi", + "Motion": "THW camp out in solidarity with the “Occupy” protestors" + }, + { + "Date": "2011-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2011", + "Round": "Open_Final", + "Motion": "THBT newly democratised Arab nations should not allow religious parties to run for office" + }, + { + "Date": "2011-10-30T00:00:00", + "Tournament": "Irish Times Debates First Round", + "Round": 1, + "Motion": "“THW cut all foreign aid in times of recession”" + }, + { + "Date": "2011-10-30T00:00:00", + "Tournament": "Irish Times Debates First Round", + "Round": 10, + "Motion": "“THW Introduce Mandatory Paternity Leave”" + }, + { + "Date": "2011-10-30T00:00:00", + "Tournament": "Irish Times Debates First Round", + "Round": 11, + "Motion": "“THB Norris was/is the Right Choice for President of Ireland”" + }, + { + "Date": "2011-10-30T00:00:00", + "Tournament": "Irish Times Debates First Round", + "Round": 12, + "Motion": "“THB Wireless Internet Access Should be a Right not a Privilege”" + }, + { + "Date": "2011-10-30T00:00:00", + "Tournament": "Irish Times Debates First Round", + "Round": 13, + "Motion": "“THW Force People to take a Mandatory Civics Test before Voting in National Elections/Referendas”" + }, + { + "Date": "2011-10-30T00:00:00", + "Tournament": "Irish Times Debates First Round", + "Round": 14, + "Motion": "“THB the IOC Should Ban Drug Cheats for Life”" + }, + { + "Date": "2011-10-30T00:00:00", + "Tournament": "Irish Times Debates First Round", + "Round": 15, + "Motion": "“TH Regrets the Demise of the Green Party”" + }, + { + "Date": "2011-10-30T00:00:00", + "Tournament": "Irish Times Debates First Round", + "Round": 16, + "Motion": "“THW Remove all Catholic Control of Public Education by the End of the School Year”" + }, + { + "Date": "2011-10-30T00:00:00", + "Tournament": "Irish Times Debates First Round", + "Round": 2, + "Motion": "“TH is Disgusted by 'Toddlers and Tiaras' and other Child Beauty Pagants”" + }, + { + "Date": "2011-10-30T00:00:00", + "Tournament": "Irish Times Debates First Round", + "Round": 3, + "Motion": "“THB it's High Time the Monarchy was Abolished”" + }, + { + "Date": "2011-10-30T00:00:00", + "Tournament": "Irish Times Debates First Round", + "Round": 4, + "Motion": "“THB Manchester City and Teams of their Ilk are Ruining Football”" + }, + { + "Date": "2011-10-30T00:00:00", + "Tournament": "Irish Times Debates First Round", + "Round": 5, + "Motion": "“THW give Extra Leaving Cert Points for Extra Curricular Activities”" + }, + { + "Date": "2011-10-30T00:00:00", + "Tournament": "Irish Times Debates First Round", + "Round": 6, + "Motion": "“THW use Military Force to Remove Kim Jong Il from Power Immediately”" + }, + { + "Date": "2011-10-30T00:00:00", + "Tournament": "Irish Times Debates First Round", + "Round": 7, + "Motion": "“THB that Barack Obama's Presidency has been a Success”" + }, + { + "Date": "2011-10-30T00:00:00", + "Tournament": "Irish Times Debates First Round", + "Round": 8, + "Motion": "“THW Abolish the Minimum Wage”" + }, + { + "Date": "2011-10-30T00:00:00", + "Tournament": "Irish Times Debates First Round", + "Round": 9, + "Motion": "“THB it's Abhorrent for Western Countries to Employ Doctors from the Third World”" + }, + { + "Date": "2011-10-29T00:00:00", + "Tournament": "Imperial College Open", + "Round": 1, + "Motion": "THBT the media should not report the declared motivations of protesters who use violence" + }, + { + "Date": "2011-10-29T00:00:00", + "Tournament": "Imperial College Open", + "Round": 2, + "Motion": "THBT emerging democracies should limit their presidents to a single term in office" + }, + { + "Date": "2011-10-29T00:00:00", + "Tournament": "Imperial College Open", + "Round": 3, + "Motion": "THW not contact, trade or otherwise engaging with uncontacted Yanomami communities in the Amazon forest" + }, + { + "Date": "2011-10-29T00:00:00", + "Tournament": "Imperial College Open", + "Round": 4, + "Motion": "THW disband the BBC" + }, + { + "Date": "2011-10-29T00:00:00", + "Tournament": "Imperial College Open", + "Round": "Open_Final", + "Motion": "The House does not regret the invasion of Iraq." + }, + { + "Date": "2011-10-29T00:00:00", + "Tournament": "NAMDA Novices", + "Round": 1, + "Motion": "THW Only Imprison Criminals Who Threaten the Safety of Citizens." + }, + { + "Date": "2011-10-29T00:00:00", + "Tournament": "NAMDA Novices", + "Round": 2, + "Motion": "THW End Fiscal Austerity and Increase Government Security on Education, Health and Infrastructure." + }, + { + "Date": "2011-10-29T00:00:00", + "Tournament": "NAMDA Novices", + "Round": 3, + "Motion": "THBT Israel was Right to Negotiate the Release of Gilad Shilat." + }, + { + "Date": "2011-10-29T00:00:00", + "Tournament": "NAMDA Novices", + "Round": 4, + "Motion": "THW Ban the Production and Consumption of Meat." + }, + { + "Date": "2011-10-29T00:00:00", + "Tournament": "NAMDA Novices", + "Round": 5, + "Motion": "THW Allow Doctors to Lie to Patients in Order to Use the Placebo Effect (not sure of wording)" + }, + { + "Date": "2011-10-29T00:00:00", + "Tournament": "NAMDA Novices", + "Round": "Open_Final", + "Motion": "THW Ban Porn" + }, + { + "Date": "2011-10-28T00:00:00", + "Tournament": "UCD VP", + "Round": 1, + "Motion": "THW outsource the capture of elusive criminals to bounty-hunters." + }, + { + "Date": "2011-10-28T00:00:00", + "Tournament": "UCD VP", + "Round": 2, + "Motion": "THBT Ireland should create constituencies, elected by people who emigrate from Ireland" + }, + { + "Date": "2011-10-28T00:00:00", + "Tournament": "UCD VP", + "Round": 3, + "Motion": "THW grant aboriginal peoples copyrights over depictions of their culture." + }, + { + "Date": "2011-10-28T00:00:00", + "Tournament": "UCD VP", + "Round": 4, + "Motion": "THW allow the families of dead people to sue for libel on their behalf" + }, + { + "Date": "2011-10-28T00:00:00", + "Tournament": "UCD VP", + "Round": 5, + "Motion": "THBT it is legitimate for politicians to lie to the electorate about their real views." + }, + { + "Date": "2011-10-28T00:00:00", + "Tournament": "UCD VP", + "Round": "Open_Semis", + "Motion": "THW grant minors the right to euthanasia regardless of parental consent." + }, + { + "Date": "2011-10-28T00:00:00", + "Tournament": "UCD VP", + "Round": "Open_Final", + "Motion": "Regardless of the relative efficiency of various economic systems, THBT meritocracy is a just way of allocating resources." + }, + { + "Date": "2011-10-22T00:00:00", + "Tournament": "SOAS IV", + "Round": 1, + "Motion": "THW give harsher punishments to those who commit crimes during riots" + }, + { + "Date": "2011-10-22T00:00:00", + "Tournament": "SOAS IV", + "Round": 2, + "Motion": "THW have minimum quotas for different ethnic groups living in public housing estates" + }, + { + "Date": "2011-10-22T00:00:00", + "Tournament": "SOAS IV", + "Round": 3, + "Motion": "THBT serving military generals should be prohibited from talking to the Media" + }, + { + "Date": "2011-10-22T00:00:00", + "Tournament": "SOAS IV", + "Round": 4, + "Motion": "THBT the Indian Government Should Ban marriage between Members of the Same Caste" + }, + { + "Date": "2011-10-22T00:00:00", + "Tournament": "SOAS IV", + "Round": 5, + "Motion": "THW create a free market for the sale of babies" + }, + { + "Date": "2011-10-22T00:00:00", + "Tournament": "SOAS IV", + "Round": "ESL_Semis", + "Motion": "THW allow constituents to recall their elected representatives" + }, + { + "Date": "2011-10-22T00:00:00", + "Tournament": "SOAS IV", + "Round": "ESL_Final", + "Motion": "THBT the countries of former Yugoslavia should create a common history curriculum and textbooks" + }, + { + "Date": "2011-10-22T00:00:00", + "Tournament": "SOAS IV", + "Round": "Open_Quarters", + "Motion": "THBT Mexico Should Legalise the Sale, Production and Transit of all Drugs" + }, + { + "Date": "2011-10-22T00:00:00", + "Tournament": "SOAS IV", + "Round": "Open_Semis", + "Motion": "THW end all subsidies for small farms" + }, + { + "Date": "2011-10-22T00:00:00", + "Tournament": "SOAS IV", + "Round": "Open_Final", + "Motion": "TH regrets the extra judicial killing of Colonel Gaddafi" + }, + { + "Date": "2011-10-15T00:00:00", + "Tournament": "Masters", + "Round": 1, + "Motion": "THW give Parliament the right to determine the moment a monarch steps down" + }, + { + "Date": "2011-10-15T00:00:00", + "Tournament": "Masters", + "Round": 2, + "Motion": "THW deny Greece the Euro (or: THW kick Greece out of the Eurozone)" + }, + { + "Date": "2011-10-15T00:00:00", + "Tournament": "Masters", + "Round": 3, + "Motion": "THW remove the right to religious freedom from the constitution" + }, + { + "Date": "2011-10-15T00:00:00", + "Tournament": "Masters", + "Round": "Open_Final", + "Motion": "THW help countries with the death penalty to implement it humanely" + }, + { + "Date": "2011-10-08T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 1, + "Motion": "THW ban nuclear energy" + }, + { + "Date": "2011-10-08T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 2, + "Motion": "THW abolish the British Monarchy" + }, + { + "Date": "2011-10-08T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 3, + "Motion": "THB the UN should immediately recognise and independent state of Palestine" + }, + { + "Date": "2011-10-08T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": 4, + "Motion": "THW cease all austerity measures in favour of a massive increase in government spending" + }, + { + "Date": "2011-10-08T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": "Open_Semis", + "Motion": "THW start a marxist revolution" + }, + { + "Date": "2011-10-08T00:00:00", + "Tournament": "Edinburgh Cup", + "Round": "Open_Final", + "Motion": "THB the world is a safer place since the collapse of the USSR" + }, + { + "Date": "2011-10-01T00:00:00", + "Tournament": "Dutch Pro-Am Tournament", + "Round": 1, + "Motion": "THW make parents pass a test before having children" + }, + { + "Date": "2011-10-01T00:00:00", + "Tournament": "Dutch Pro-Am Tournament", + "Round": 2, + "Motion": "THW halt all development aid to countries that punish homosexuality" + }, + { + "Date": "2011-10-01T00:00:00", + "Tournament": "Dutch Pro-Am Tournament", + "Round": 3, + "Motion": "THW allow the police full and unrestricted access to Facebook and other social media" + }, + { + "Date": "2011-10-01T00:00:00", + "Tournament": "Dutch Pro-Am Tournament", + "Round": 4, + "Motion": "THW ban corporate sponsorship of academic research" + }, + { + "Date": "2011-10-01T00:00:00", + "Tournament": "Dutch Pro-Am Tournament", + "Round": "Open_Final", + "Motion": "THW allow convicted criminals the choice between their sentence and the same number of years of weekly corporal punishment" + }, + { + "Date": "2011-10-01T00:00:00", + "Tournament": "Kiev Open", + "Round": 1, + "Motion": "THBT there should be no limit on self-defence against violent crimes" + }, + { + "Date": "2011-10-01T00:00:00", + "Tournament": "Kiev Open", + "Round": 2, + "Motion": "THW ban parades and demonstrations that could incite a violent response" + }, + { + "Date": "2011-10-01T00:00:00", + "Tournament": "Kiev Open", + "Round": 3, + "Motion": "THBT the UN should offer large bounties for the capture of pirates and the destruction of pirate ships" + }, + { + "Date": "2011-10-01T00:00:00", + "Tournament": "Kiev Open", + "Round": 4, + "Motion": "THW ban all religions from actively seeking conversions" + }, + { + "Date": "2011-10-01T00:00:00", + "Tournament": "Kiev Open", + "Round": 5, + "Motion": "THBT America and the EU should cease all financial, political and military aid to both Israel and the Palestinian Authority until they reach a peace deal" + }, + { + "Date": "2011-10-01T00:00:00", + "Tournament": "Kiev Open", + "Round": "Open_Semis", + "Motion": "THW ban political parties that propagate racism and xenophobia" + }, + { + "Date": "2011-10-01T00:00:00", + "Tournament": "Kiev Open", + "Round": "Open_Final", + "Motion": "THBT even in an oppressive state, citizens should not turn to violence as a means of opposition" + }, + { + "Date": "2011-09-23T00:00:00", + "Tournament": "EU-China Youth Debate Tournament", + "Round": 1, + "Motion": "THBT EU membership should not be determined on the basis of geographic criteria" + }, + { + "Date": "2011-09-23T00:00:00", + "Tournament": "EU-China Youth Debate Tournament", + "Round": 2, + "Motion": "THBT media company owners have the right to influence the nature of news" + }, + { + "Date": "2011-09-23T00:00:00", + "Tournament": "EU-China Youth Debate Tournament", + "Round": 3, + "Motion": "THBT China should abolish the “Gaokao” in favour of allowing universities to establish their own (admission) criteria" + }, + { + "Date": "2011-09-23T00:00:00", + "Tournament": "EU-China Youth Debate Tournament", + "Round": 4, + "Motion": "THBT during riots it is legitimate for governments to deny access to social networks" + }, + { + "Date": "2011-09-23T00:00:00", + "Tournament": "EU-China Youth Debate Tournament", + "Round": "Open_Quarters", + "Motion": "THBT a Chinese Marshall Plan should be initiated to save the Euro" + }, + { + "Date": "2011-09-23T00:00:00", + "Tournament": "EU-China Youth Debate Tournament", + "Round": "Open_Semis", + "Motion": "THW demand international corporations operating in China to uphold the same environmental standards required in their home country" + }, + { + "Date": "2011-09-23T00:00:00", + "Tournament": "EU-China Youth Debate Tournament", + "Round": "Open_Final", + "Motion": "THBT Mandarin should be taught as the primary second language in all EU schools" + }, + { + "Date": "2011-09-04T00:00:00", + "Tournament": "Red Sea Open", + "Round": 1, + "Motion": "THW ban the payment of ransoms" + }, + { + "Date": "2011-09-04T00:00:00", + "Tournament": "Red Sea Open", + "Round": 2, + "Motion": "THW force elected politicians and their families to use only public health and education services" + }, + { + "Date": "2011-09-04T00:00:00", + "Tournament": "Red Sea Open", + "Round": 3, + "Motion": "THW mandate the use of condoms in porn" + }, + { + "Date": "2011-09-04T00:00:00", + "Tournament": "Red Sea Open", + "Round": 4, + "Motion": "THW prosecute violent fouls in sports as criminal assault" + }, + { + "Date": "2011-09-04T00:00:00", + "Tournament": "Red Sea Open", + "Round": 5, + "Motion": "Actually, THW rather see one innocent man go to jail than a 100 guilty men walk free" + }, + { + "Date": "2011-09-04T00:00:00", + "Tournament": "Red Sea Open", + "Round": 6, + "Motion": "THBT natural resources should belong to the world and not to any individual country" + }, + { + "Date": "2011-09-04T00:00:00", + "Tournament": "Red Sea Open", + "Round": "Open_Semis", + "Motion": "THBT a universal minimum standard of education is a prerequisite for democracy" + }, + { + "Date": "2011-09-04T00:00:00", + "Tournament": "Red Sea Open", + "Round": "Open_Final", + "Motion": "THBT consent is not a source of moral legitimacy" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": 1, + "Motion": "This house believes that national sporting teams should reflect the diversity of the national population" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": 2, + "Motion": "This house believes that all states have a right to nuclear weapons" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": 3, + "Motion": "This house believes that governments should not provide benefits on the basis of marital status" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": 4, + "Motion": "This house believes that central banks should set limits on government spending" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": 5, + "Motion": "This wouse would prioritise asylum Seekers who have engaged in armed struggle against oppressive regimes" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": 6, + "Motion": "This wouse would allow teachers unions the right to strike" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": 7, + "Motion": "This wouse would require individuals to reveal their actual identity when communicating on the internet" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": 8, + "Motion": "This house believes that the southern african development community (SADC) should pursue political union" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": 9, + "Motion": "This house believes that social movements should use the courts rather than the legislature to advance social change" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": "EFL_Semis", + "Motion": "This house supports a one state solution for the Israeli-Palestinian conflict" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": "EFL_Final", + "Motion": "This wouse would give more votes to the poor" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": "ESL_Quarters", + "Motion": "This house believes that domestic courts should try foreign nationals who commit war crimes abroad" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": "ESL_Semis", + "Motion": "This wouse would prefer that the children of racial minorities be adopted by parents of that race" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": "ESL_Final", + "Motion": "This house believes that the courts should break up consistently dominant political parties" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": "Masters_1", + "Motion": "This wouse would buy local" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": "Masters_Final", + "Motion": "This house prefers a philosopher King to a tyrannical democracy" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": "Open_Octos", + "Motion": "This wouse would buy countries votes in international organizations" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": "Open_Quarters", + "Motion": "This house believes that courts should not enforce wills that discriminate on the basis of race" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": "Open_Semis", + "Motion": "This house opposes organised religion" + }, + { + "Date": "2011-01-01T00:00:00", + "Tournament": "Botswana WUDC 2011", + "Round": "Open_Final", + "Motion": "This wouse would invade Zimbabwe" + }, + { + "Date": "2010-07-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 1, + "Motion": "THW criminalize women that drink alcohol during pregnancy" + }, + { + "Date": "2010-07-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 2, + "Motion": "THBT English should be the only language of education in developing countries" + }, + { + "Date": "2010-07-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 3, + "Motion": "THW forcibly settle the Roma" + }, + { + "Date": "2010-07-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 4, + "Motion": "THBT the US should stop all support (including military) until Israel unilaterally withdraws from illegal settlements in Palestine" + }, + { + "Date": "2010-07-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 5, + "Motion": "THW introduce quotas of poor and rich in all schools" + }, + { + "Date": "2010-07-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Semis", + "Motion": "THBT the state should approve all loans" + }, + { + "Date": "2010-07-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Final", + "Motion": "THBT emergent democracies should ban all political rallies and other large public gatherings" + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": 1, + "Motion": "This house would ban labour unions." + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": 2, + "Motion": "This house believes that developing nations should pay for the full tuition of female university students." + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": 3, + "Motion": "This house would financially incentivize both inter-faith and inter-ethnic marriages." + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": 4, + "Motion": "THW prohibit high-ranking members of the Sri Lankan military and the Tamil Tigers from participation in the election." + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": 5, + "Motion": "THW abolish taxes on alcohol and cigarettes that go beyond normal sales taxes." + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": 6, + "Motion": "THW prosecute communities for complicity in honour killings." + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": 7, + "Motion": "THW grant those diagnosed with terminal illnesses the right to access treatments that have not completed clinical testing." + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": 8, + "Motion": "THW partition Sudan." + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": 9, + "Motion": "THW ban all pornography." + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": "EFL_Semis", + "Motion": "This House would use faith based rehabilitation in prison." + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": "EFL_Final", + "Motion": "This House believes that democratic states should own their own broadcasting corporations." + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": "ESL_Quarters", + "Motion": "This House would ban any scheme intended to cure homosexuality" + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": "ESL_Semis", + "Motion": "This house would allow prisoners to raise their babies behind bars." + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": "ESL_Final", + "Motion": "This house would prohibit expression that portrays convicted war criminals in a positive light." + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": "Open_Octos", + "Motion": "This house believes the West should recognise the Dalai Lama" + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": "Open_Quarters", + "Motion": "This house would ban all procedures to alter one's racial appearance." + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": "Open_Semis", + "Motion": "THB that the United States government should subsidize Twitter to liberalize oppressed societies" + }, + { + "Date": "2010-01-01T00:00:00", + "Tournament": "Koc WUDC 2010", + "Round": "Open_Final", + "Motion": "THB that the media should show the full horror of war" + }, + { + "Date": "2009-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2009", + "Round": 1, + "Motion": "This house would destroy the results of unethical research," + }, + { + "Date": "2009-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2009", + "Round": 2, + "Motion": "This house believes that the European Union should be an economic union, not a political union." + }, + { + "Date": "2009-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2009", + "Round": 3, + "Motion": "This house would ban cosmetic surgery" + }, + { + "Date": "2009-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2009", + "Round": 4, + "Motion": "THW pay for the return of hostages" + }, + { + "Date": "2009-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2009", + "Round": 5, + "Motion": "THBT groups should have to give up their weapons in order to stand for political office" + }, + { + "Date": "2009-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2009", + "Round": 6, + "Motion": "THW end all censorship apart from age restrictions" + }, + { + "Date": "2009-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2009", + "Round": "Open_Semi", + "Motion": "This House would legalise the baby trade" + }, + { + "Date": "2009-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2009", + "Round": "Open_Final", + "Motion": "This House would prevent criminals from publishing accounts of their crimes" + }, + { + "Date": "2009-09-06T00:00:00", + "Tournament": "Joynt Scroll 2009", + "Round": 1, + "Motion": "THW admit Turkey into the EU" + }, + { + "Date": "2009-09-06T00:00:00", + "Tournament": "Joynt Scroll 2009", + "Round": 2, + "Motion": "This House would abolish the concept of intellectual property" + }, + { + "Date": "2009-09-06T00:00:00", + "Tournament": "Joynt Scroll 2009", + "Round": 3, + "Motion": "This House would allow minors to have sex change operations" + }, + { + "Date": "2009-09-06T00:00:00", + "Tournament": "Joynt Scroll 2009", + "Round": 4, + "Motion": "This House would place a constitutional limit on the size of government as a percentage of GDP" + }, + { + "Date": "2009-09-06T00:00:00", + "Tournament": "Joynt Scroll 2009", + "Round": 5, + "Motion": "This House Would refuse to buy Fair Trade" + }, + { + "Date": "2009-09-06T00:00:00", + "Tournament": "Joynt Scroll 2009", + "Round": "Open_Semi", + "Motion": "This House would allow the judiciary to strike down laws that breach the New Zealand Bill of Rights" + }, + { + "Date": "2009-09-06T00:00:00", + "Tournament": "Joynt Scroll 2009", + "Round": "Open_Final", + "Motion": "This House Would let endangered languages die" + }, + { + "Date": "2009-01-01T00:00:00", + "Tournament": "Cork WUDC 2009", + "Round": 1, + "Motion": "This house would ban all forms of gambling." + }, + { + "Date": "2009-01-01T00:00:00", + "Tournament": "Cork WUDC 2009", + "Round": 2, + "Motion": "This house would fire the senior managements of all corporations which receive government bailouts." + }, + { + "Date": "2009-01-01T00:00:00", + "Tournament": "Cork WUDC 2009", + "Round": 3, + "Motion": "This house would allow soldiers to sue their government for negligence." + }, + { + "Date": "2009-01-01T00:00:00", + "Tournament": "Cork WUDC 2009", + "Round": 4, + "Motion": "This house would force the religious desegregation of Northern Irish schools." + }, + { + "Date": "2009-01-01T00:00:00", + "Tournament": "Cork WUDC 2009", + "Round": 5, + "Motion": "This house believes that China and India should bear the same obligations as the West in fighting climate change" + }, + { + "Date": "2009-01-01T00:00:00", + "Tournament": "Cork WUDC 2009", + "Round": 6, + "Motion": "This house would criminalise adultery." + }, + { + "Date": "2009-01-01T00:00:00", + "Tournament": "Cork WUDC 2009", + "Round": 7, + "Motion": "This house believes that the west should recognise the independence of Abkhazia." + }, + { + "Date": "2009-01-01T00:00:00", + "Tournament": "Cork WUDC 2009", + "Round": 8, + "Motion": "This house would apply a lower rate of income tax to women." + }, + { + "Date": "2009-01-01T00:00:00", + "Tournament": "Cork WUDC 2009", + "Round": 9, + "Motion": "This house would ban the publication of political opinion polls." + }, + { + "Date": "2009-01-01T00:00:00", + "Tournament": "Cork WUDC 2009", + "Round": "EFL_Final", + "Motion": "This house would prohibit all private health care." + }, + { + "Date": "2009-01-01T00:00:00", + "Tournament": "Cork WUDC 2009", + "Round": "ESL_Final", + "Motion": "This house would implement quotas for domestic players in national football leagues." + }, + { + "Date": "2009-01-01T00:00:00", + "Tournament": "Cork WUDC 2009", + "Round": "Open_Octos", + "Motion": "This house would arm local militia to fight the taliban in Afghanistan." + }, + { + "Date": "2009-01-01T00:00:00", + "Tournament": "Cork WUDC 2009", + "Round": "Open_Quarters", + "Motion": "This house believes that the international criminal court should prosecute crimes against the democratic process." + }, + { + "Date": "2009-01-01T00:00:00", + "Tournament": "Cork WUDC 2009", + "Round": "Open_Semis", + "Motion": "This house believes governments should subsidise private home ownership." + }, + { + "Date": "2009-01-01T00:00:00", + "Tournament": "Cork WUDC 2009", + "Round": "Open_Final", + "Motion": "This house would ban abortion at all stages of pregnancy." + }, + { + "Date": "2008-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2008", + "Round": 1, + "Motion": "This house believes that the gay community should “out” gay celebrities." + }, + { + "Date": "2008-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2008", + "Round": 2, + "Motion": "This house believes that the military should overthrow governments which have lost popular legitimacy." + }, + { + "Date": "2008-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2008", + "Round": 3, + "Motion": "This house would criminalise individuals and organisations who do not recycle." + }, + { + "Date": "2008-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2008", + "Round": 4, + "Motion": "This house would abolish all forms of affirmative action." + }, + { + "Date": "2008-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2008", + "Round": 5, + "Motion": "This house would allow parents to cast proxy votes on behalf of their children." + }, + { + "Date": "2008-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2008", + "Round": 6, + "Motion": "\\ This house believes that the Palestinians should give up the Right of Return." + }, + { + "Date": "2008-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2008", + "Round": "Open_Semi", + "Motion": "This house would make insulting religion a crime." + }, + { + "Date": "2008-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2008", + "Round": "Open_Final", + "Motion": "This House believes freer markets, rather than more government intervention, are the solution to the current economic crisis." + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": 1, + "Motion": "This House would allow the use of torture." + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": 2, + "Motion": "This House believes that Taiwan should declare independence now" + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": 3, + "Motion": "THW not allow local government to pay for the relocation of homeless people." + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": 4, + "Motion": "This House believes that the European Union should only direct aid to nations that pursue environmentally sustainable development." + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": 5, + "Motion": "This House believes that every criminal defendant should be required to use a government provided defense lawyer." + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": 6, + "Motion": "THW subject foreign political contributions to greater restrictions than domestic contributions." + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": 7, + "Motion": "This House would assassinate Vladimir Putin." + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": 8, + "Motion": "THB that governments should never rescue failing private industry." + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": 9, + "Motion": "This House would deny scarce medical resources to terminally ill patients." + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": "EFL_Final", + "Motion": "This house would eliminate all non state-run schools" + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": "ESL_Octos", + "Motion": "This House would support the use of mercenaries by the United Nations." + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": "ESL_Quarters", + "Motion": "This House would force religious adoption agencies to place children with homosexual couples." + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": "ESL_Semis", + "Motion": "This House would require doctors to report all cases of suspected domestic violence." + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": "ESL_Final", + "Motion": "This house believes that the Turkish military should stop enforcing the separation of church (mosque) and state" + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": "Masters_1", + "Motion": "This house regrets the passing of Bhutto" + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": "Masters_2", + "Motion": "This house would stop the search for the gay gene" + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": "Masters_3", + "Motion": "This house would let them eat whale" + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": "Masters_Final", + "Motion": "This house would put an age limit on debating" + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": "Open_Octos", + "Motion": "THB that governments in the developing world should invest in sex tourism." + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": "Open_Quarters", + "Motion": "This House would force religious adoption agencies to place children with homosexual couples." + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": "Open_Semis", + "Motion": "THB that extreme economic need should be grounds for asylum." + }, + { + "Date": "2008-01-01T00:00:00", + "Tournament": "Assumption WUDC 2008", + "Round": "Open_Final", + "Motion": "THB that people who give HIV to others must pay drug support." + }, + { + "Date": "2007-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2007", + "Round": 1, + "Motion": "This house would force single parents receiving welfare to seek work." + }, + { + "Date": "2007-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2007", + "Round": 2, + "Motion": "This house would use quotas to desegregate Northern Ireland religious schools." + }, + { + "Date": "2007-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2007", + "Round": 3, + "Motion": "This house believes that the First World should prohibit the immigration of doctors and nurses from the Third World." + }, + { + "Date": "2007-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2007", + "Round": 4, + "Motion": "This house would allow juries to decide on sentences." + }, + { + "Date": "2007-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2007", + "Round": 5, + "Motion": "This house would build power stations in ex-Soviet states to reduce their dependence on Russia." + }, + { + "Date": "2007-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2007", + "Round": 6, + "Motion": "This house would ban the broadcast and dissemination of terrorist videos." + }, + { + "Date": "2007-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2007", + "Round": "Open_Semi", + "Motion": "This house would immediately establish a Palestinian state in the Fatah-controlled West Bank." + }, + { + "Date": "2007-11-01T00:00:00", + "Tournament": "New Zealand BP Debating Championships 2007", + "Round": "Open_Final", + "Motion": "This House believes Amnesty International should campaign for abortion rights." + }, + { + "Date": "2007-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 1, + "Motion": "THW make people pay for private car ownership (not exact wording)" + }, + { + "Date": "2007-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 3, + "Motion": "THW make voting in European Parliament Elections mandatory (not exact wording)" + }, + { + "Date": "2007-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 4, + "Motion": "THW put a tax on the number of foreign players in a sports teams (not exact wording)" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": 1, + "Motion": "This house would ban government funding of religious schools" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": 2, + "Motion": "This house believes that the UK should abolish it’s nuclear arsenal" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": 3, + "Motion": "This House supports accelerated land redistribution in South Africa" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": 4, + "Motion": "This house would criminalize the payment of ransom" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": 5, + "Motion": "This house supports independence for Quebec" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": 6, + "Motion": "This house would abolish all taxes on inherited wealth" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": 7, + "Motion": "This house would support regime change in Myanmar/Burma" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": 8, + "Motion": "This house would ban Cosmetic Surgery" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": 9, + "Motion": "This house would grant citizenship in exchange for military service" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": "EFL_Final", + "Motion": "This house would lift sanctions on Iran" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": "ESL_Semis", + "Motion": "This house believes all serious crimes should be trialed by Jury" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": "ESL_Final", + "Motion": "This house believes that politicians have a right to a private life" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": "Masters_1", + "Motion": "This house would designate one city to permanently host the Olympics" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": "Masters_2", + "Motion": "This house believes that governments should provide heroin addicts with safe injection facilities" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": "Masters_Final", + "Motion": "This house supports a 35 hour working week" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": "Open_Octos", + "Motion": "This house believes that developing nation should nationalize their energy resources" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": "Open_Quarters", + "Motion": "This house believes that people sentenced to life imprisonment should be allowed to choose the death penalty instead" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": "Open_Semis", + "Motion": "This house would ban websites that glorify eating disorders" + }, + { + "Date": "2007-01-01T00:00:00", + "Tournament": "UBC WUDC 2007", + "Round": "Open_Final", + "Motion": "This house believes that economic growth is the solution to climate change" + }, + { + "Date": "2006-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 1, + "Motion": "THW legalise euthanasia" + }, + { + "Date": "2006-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 2, + "Motion": "THBT multinational companies are friends of the developing world" + }, + { + "Date": "2006-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 3, + "Motion": "THW impose environmental tax on airlines" + }, + { + "Date": "2006-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 4, + "Motion": "THW change the constitution of Japan allowing them to have offensive forces" + }, + { + "Date": "2006-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 5, + "Motion": "THW introduce national quotas for accepting immigrants for EU member states" + }, + { + "Date": "2006-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Semis", + "Motion": "THW allow the sale of organs" + }, + { + "Date": "2006-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Final", + "Motion": "THW compel prisoners to be subject to medical experiments" + }, + { + "Date": "2005-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 1, + "Motion": "THW place tax on fast food" + }, + { + "Date": "2005-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 2, + "Motion": "THW tie foreign aid to environmental standards" + }, + { + "Date": "2005-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 3, + "Motion": "THBT torture is justified" + }, + { + "Date": "2005-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 4, + "Motion": "THBT there are no more heros" + }, + { + "Date": "2005-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": 5, + "Motion": "THW ban extremist political parties" + }, + { + "Date": "2005-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Quarters", + "Motion": "THBT sporting boycotts are a legitimate political tool" + }, + { + "Date": "2005-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Semis", + "Motion": "THW declare sex with a trafficked prostitue rape" + }, + { + "Date": "2005-01-12T00:00:00", + "Tournament": "SSE Riga IV", + "Round": "Open_Final", + "Motion": "THW ban the reporting of hostage taking" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 1, + "Motion": "THBT it is the duty of any state to grant political asylum to whistleblowers from other countries" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 1, + "Motion": "THW allow the use of performance enhancing drugs in competitive sports" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 1, + "Motion": "THBT the Baltic states should not provide any development aid" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 1, + "Motion": "THW cap prices for vitally important goods like bread and milk" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 1, + "Motion": "THW give parents proxy votes for their children" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 2, + "Motion": "THW use all dead human bodies for the benefit of those waiting for organ transplants" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 2, + "Motion": "TH condemns the use of military drones in all military operations" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 2, + "Motion": "THW create a state-run monopoly of porn and use it for social engineering" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 2, + "Motion": "THBT parties with overdue debts should not be allowed to participate in elections" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 2, + "Motion": "THW give North Korea unconditional food aid" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 3, + "Motion": "THW suspend all regulation regarding environmental protection laws and policies during prolonged periods of economic recession" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 3, + "Motion": "THW forbid testing on all animals" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 3, + "Motion": "THW ban any religious influence on people below the age of 18" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 3, + "Motion": "THB in visa freedom with Russia" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 3, + "Motion": "THW allow surrogate motherhood for profit" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 4, + "Motion": "THBT the Pope should be elected by all Catholics" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 4, + "Motion": "THW ban all art that offends religious communities" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 4, + "Motion": "THW gradually stop paying old age pensions" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 4, + "Motion": "THW criminalize the payment of ransom" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": 4, + "Motion": "THW ban equality movements focusing on one group only" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": "Open_Final", + "Motion": "THBT intelligence agencies should be allowed to monitor all people without their consent" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": "Open_Final", + "Motion": "THBT that the European Union has failed" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": "Open_Final", + "Motion": "THW legalize duels in cases of adultery" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": "Open_Final", + "Motion": "THBT the EU should approve member countries budget deficit sides" + }, + { + "Date": "1999-01-01T00:00:00", + "Tournament": "SSE Riga Practice Tournament", + "Round": "Open_Final", + "Motion": "THW tie the liabilities of borrowers to the value of their provided collateral" + }, + { + "Date": "0000-00-00", + "Tournament": "21st SSE Riga IV", + "Round": 1, + "Motion": "THR the glorification of startup culture" + }, + { + "Date": "0000-00-00", + "Tournament": "21st SSE Riga IV", + "Round": 2, + "Motion": "THP a world where significant minority groups (e.g. Maori and Aboriginal populations in New Zealand and Australia; Catalonians in Spain; Nations within Great Britain) form their own sports teams rather than partake in the national teams of their country of residence" + }, + { + "Date": "0000-00-00", + "Tournament": "21st SSE Riga IV", + "Round": 3, + "Motion": "THS the decline of American influence in East Asia" + }, + { + "Date": "0000-00-00", + "Tournament": "21st SSE Riga IV", + "Round": 4, + "Motion": "TH believes that climate change movements should prioritize the mitigation of climate change rather than the prevention of climate change" + }, + { + "Date": "0000-00-00", + "Tournament": "21st SSE Riga IV", + "Round": 5, + "Motion": "THW significantly censor the depiction of alcohol in popular culture" + }, + { + "Date": "0000-00-00", + "Tournament": "21st SSE Riga IV", + "Round": "Novice_Final", + "Motion": "THR the narrative that love should be unconditional" + }, + { + "Date": "0000-00-00", + "Tournament": "21st SSE Riga IV", + "Round": "Open_Quarters", + "Motion": "Assuming a mechanism exists, THBT NATO should expel Turkey" + }, + { + "Date": "0000-00-00", + "Tournament": "21st SSE Riga IV", + "Round": "Open_Semi", + "Motion": "THBT governments should significantly invest in social impact bonds to address social problems" + }, + { + "Date": "0000-00-00", + "Tournament": "21st SSE Riga IV", + "Round": "Open_Final", + "Motion": "THP the governance of the 'The One State'" + }, + { + "Date": "0000-00-00", + "Tournament": "Dutch WUDC 2017", + "Round": "ESL_Semi", + "Motion": "TH would establish English as primary language for education in China (inexact)" + }, + { + "Date": "0000-00-00", + "Tournament": "Dutch WUDC 2017", + "Round": "Open_Quarters", + "Motion": "THBT all governments should designate and publicly announce a list of financial institutions that they would bail out in the event of a crisis" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": 1, + "Motion": "This House Regrets the tradition of parents not living with and being cared for by their children in old age." + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": 1, + "Motion": "THBT fear is a legitimate tool for instilling moral values" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": 1, + "Motion": "THBT minority parents should shelter their children from the existence of racism for as long as possible." + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": 2, + "Motion": "THW tie World Bank aid to women's rights" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": 2, + "Motion": "THBT government programmes should only be upscaled after successful impact evaluations" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": 2, + "Motion": "TH (as Marxists) R the rise of automation of jobs previously performed by humans (e.g., self-driving cars, self-checkouts)." + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": 3, + "Motion": "THR the rise of self-help books" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": 3, + "Motion": "THR the role of modern medicines in over-emphasizing prolonged life" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": 3, + "Motion": "THR the fetishization of athletic success in popular culure" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": 4, + "Motion": "THS the trending of pairing differently-abled people" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": 4, + "Motion": "THBT Peta should use the surge in human depression rates during the great lockdown, to rally for ending animal captivity." + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": 4, + "Motion": "This house believes that charities and humanitarian aid organizations should not use images of graphics suffering in their advertising campaigns." + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": 5, + "Motion": "TH as Japan would actively dissociate from the tradition of \"Wa\"" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": 5, + "Motion": "THW establish a formal embassy in Taiwan" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": 5, + "Motion": "THBT cartographical asymmetries should be resolved using mechanisms of local referendums of bonafide residents" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": "Open_Quarter", + "Motion": "THBT DINOs do more harm than good to the Democratic Party" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": "Open_Quarter", + "Motion": "This House Prefers protests with clearly identifiable leaders and defined goals to leaderless movements with disparate goals." + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": "Open_Quarter", + "Motion": "THBT identity based social movements should prioritise the majority populations acceptance of that identity over preservation of a distinct culture" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": "Open_Semi", + "Motion": "THW remove all patents on green technology" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": "Open_Semi", + "Motion": "THW focus on adapting to the consequences of climate change rather than trying to prevent it" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": "Open_Semi", + "Motion": "THW not cut funding for research that seeks to deal with Climate Change, even in the wake of austerity" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": "Open_Final", + "Motion": "THS the conception of morality as a scientifically determined innate characteristic" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": "Open_Final", + "Motion": "TH celebrates self interest as one of the dominant guiding moral principles" + }, + { + "Date": "0000-00-00", + "Tournament": "GGDSD PDC 2020", + "Round": "Open_Final", + "Motion": "THS Zobrist's means of population control" + } +] \ No newline at end of file diff --git a/src/core/constants/motions.json b/src/core/constants/motions.json new file mode 100644 index 0000000..7391f8f --- /dev/null +++ b/src/core/constants/motions.json @@ -0,0 +1,89637 @@ +[ + { + "tournament": "Debate for Donation Open", + "year": "2020", + "format": "", + "content": "THW embrace the rise of private cities (i.e. Eko Atlantic,Tatu City,Hope City,Cite le Flueve).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Debate for Donation Open", + "year": "2020", + "format": "", + "content": "TH, as Christians, regrets the rise of popular mainstream artists co-opting Gospel themes in their works (i.e. Kanye West Jesus is King).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Debate for Donation Open", + "year": "2020", + "format": "", + "content": "TH, as US, would covertly begin boosting the amount of foreign election interferences done by CIA.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Debate for Donation Open", + "year": "2020", + "format": "", + "content": "THP a world where Homo Sapiens is not the sole surviving human species.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Debate for Donation Open", + "year": "2020", + "format": "", + "content": "THW not grant employers access to applicants' criminal records.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Debate for Donation Open", + "year": "2020", + "format": "", + "content": "TH, as Saudi Arabia, would advocate for Yemen to be split to three countries; South Yemen led by al-Zubaidi STC, Yemen led by Abd Rabbuh Al-Hadi and North Yemen led by Houthi.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2020", + "format": "", + "content": "THBT implementing bonded government scholarships are in the interest of developing states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2020", + "format": "", + "content": "THBT the feminist movement in the West should heavily promote the concept of 'self-partnership'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2020", + "format": "", + "content": "THBT the European Union should immediately grant full membership rights to Bosnia and Herzegovina.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2020", + "format": "", + "content": "THBT the Pope should excommunicate Rodrigo Duterte.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2020", + "format": "", + "content": "THBT environmentalist groups should fully abandon advocating for the mitigation of climate change, in favour of campaigning for adaptation efforts instead (e.g. building sea walls, genetically modified crops, exploring alternative living habitats).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2020", + "format": "", + "content": "THR the social preference for positivity and optimism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2020", + "format": "", + "content": "You have been a moderate Republican for the last 10 years, and identify the most with the GOP establishment. THR the 2016 election of Donald Trump as president of the USA.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2020", + "format": "", + "content": "THBT the choice of the economic liberalism as a dominant doctrine by major international financial institutions does more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2020", + "format": "", + "content": "THP a world where humans cannot perceive aesthetic beauty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imitation Cup", + "year": "2020", + "format": "", + "content": "THBT the notion of journalistic objectivity has done more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imitation Cup", + "year": "2020", + "format": "", + "content": "THBT the United States should pursue aggressive containment of China (e.g. economic sanctions, diplomatic threats, remilitarization of South China Sea and Japan, countering China's influence in various regions).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imitation Cup", + "year": "2020", + "format": "", + "content": "THR the dominant narrative that individuals should \"do what they love\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imitation Cup", + "year": "2020", + "format": "", + "content": "THBT developing countries should pursue investment agreements that require state-to-state arbitrations, compared to agreements which grant foreign investors standing to sue governments in investor-state arbitrations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imitation Cup", + "year": "2020", + "format": "", + "content": "THW disallow religious leaders from publicly endorsing, rejecting, or commenting on any political party or candidate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imitation Cup", + "year": "2020", + "format": "", + "content": "THBT the feminist movement should focus its efforts on encouraging men to \"lean out\" rather than on encouraging women to \"lean in\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imitation Cup", + "year": "2020", + "format": "", + "content": "THR anthropocentrism in the environmental rights movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imitation Cup", + "year": "2020", + "format": "", + "content": "THW place a time limit on all private land ownership in major cities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imitation Cup", + "year": "2020", + "format": "", + "content": "THBT it is justified for an individual to prioritise their own self-interest over alleviating universal suffering.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IUBDC Rational Wrangle", + "year": "2020", + "format": "", + "content": "THS the managed relocation of biodiversity in response to climate change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IUBDC Rational Wrangle", + "year": "2020", + "format": "", + "content": "Post the 2020 elections, and regardless of its outcomes, THBT the progressive faction of the Democrat Party should split to form a new major party.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IUBDC Rational Wrangle", + "year": "2020", + "format": "", + "content": "THBT governments in developing countries should prioritize increasing foreign tie-ups in public universities, over allowing the entry of foreign universities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pre-Worlds", + "year": "2020", + "format": "", + "content": "THBT the Bretton Woods Institutions (International Monetary Fund, World Bank, etc.) have done more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pre-Worlds", + "year": "2020", + "format": "", + "content": "THBT national policies that may have significant environmental consequences should be subject to a veto by a national level appointed panel of scientific experts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pre-Worlds", + "year": "2020", + "format": "", + "content": "TH, as the EU, would actively prevent EU countries (like Italy, Slovenia, Lithuania, etc.) from achieving closer ties with China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pre-Worlds", + "year": "2020", + "format": "", + "content": "THR the romanticisation of art that is pursued for non material gain.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pre-Worlds", + "year": "2020", + "format": "", + "content": "THW pool donations for specific charity causes and redistribute them to charities according to evidence-based assessment of the efficacy of these charities within the sector.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pre-Worlds", + "year": "2020", + "format": "", + "content": "THBT the Black Lives Matter(BLM) movement should campaign for the inclusion of more African American police officers instead of the defunding of the police force.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pre-Worlds", + "year": "2020", + "format": "", + "content": "THW ban essential service workers from striking.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pre-Worlds", + "year": "2020", + "format": "", + "content": "THR the glamorization of the portrayal of a \"Genius\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pre-Worlds", + "year": "2020", + "format": "", + "content": "THW break up persistently dominant political parties in emerging/developing democracies (e.g. the ANC in South Africa).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pre-Worlds", + "year": "2020", + "format": "", + "content": "THBT human rights activists in post-conflict societies should neither advocate for political parties nor run for election in the transition to democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pre-Worlds", + "year": "2020", + "format": "", + "content": "THR the US-Taliban peace deal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pre-Worlds", + "year": "2020", + "format": "", + "content": "TH prefers a world where each believer established their own connection to God,rather than establishing one through organized religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pre-Worlds", + "year": "2020", + "format": "", + "content": "Assuming that a technology exists that can accurately measure and transfer intelligence This House would radically redistribute intelligence among the population.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That we regret the culture of fearing death.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That, as a promising university graduate, we should opt to make the largest amount of money possible and donate it to charities instead of directly working in social fields.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That we would not publish this information.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That liberal supreme court s should misinterpret the constitution to advance civil rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That the LGBTQ+ movement should not allow police officers at pride events (such as the pride march).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That, as the queer (LGBTQIA+) community, we would reject the ‘born this way’ narrative.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That curricula in post-colonial states should focus on locally-authored literature, to the absolute exclusion of 'great work' such as Shakespeare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That we should implement a Mastery Learning framework at all levels of education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "TH, as an educational institution, would prohibit all sports programs that pose a risk of CTE.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That we would ban the short selling of shares.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That we prefer a world where cooperatives (employee owned businesses) were the norm.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That local communities should be able to cap the number of tourists that enter their region over a specific period of time.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That we regret Hamilton.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That we would ban Microtransactions in video games.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That we regret the rise of True Crime entertainment (e.g Making A Murderer, Serial, Tiger King, The Jinx etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That we prefer Facebook's policy of only removing content that users report as compared to a policy where Facebook itself independently determines restrictions on content.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That we regret the rise of influencers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That we prefer a world where the internet never existed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That we regret the decline of secular Pan-Arab nationalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That the African Union should pivot toward the global East rather than the global West.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That, as Imran Khan, we would issue a public apology for 1971 to Bangladesh.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That as established feminist artists, we should systematically produce art and media that actively ridicules heroic masculine archetypes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That as the Global Feminist Movement we would support anti-capitalist movements (Occupy Wallstreet etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That microfinance organizations offering loans in developing countries should offer them exclusively to women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That, assuming Personal Protective Equipment is sufficiently available, medical workers during a pandemic should have the right to opt out of service.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That we would aggressively and competitively fund CRISPR.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That in times of a global pandemic, standard research ethics should be suspended as long as the subject consents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That we regret the fall of the Societ Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That Student Unions should not take political positions that do not directly pertain to tertiary education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Karachi Debate Open", + "year": "2020", + "format": "", + "content": "That, as a lifelong Republican, we would vote for Joe Biden.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Ope", + "year": " 2.0", + "format": "", + "content": "THBT the Mexican govenment should retroactively legalise the production and distribution of drugs, instead of keeping them illegal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Ope", + "year": " 2.0", + "format": "", + "content": "THR the ideological dominance of the left in the feminist movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Ope", + "year": " 2.0", + "format": "", + "content": "THW heavily penalise corporations for punishing their employees for engaging in legally permitted speech.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Ope", + "year": " 2.0", + "format": "", + "content": "THBT the IMF should adopt a policy of not bailing out countries that take out significant loans from China under One Belt One Road.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Ope", + "year": " 2.0", + "format": "", + "content": "THBT it is in the interest of the ruling party of Kazakhstan to hold free and fair local elections of akims and maslikhats.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Ope", + "year": " 2.0", + "format": "", + "content": "THS the use of the Hannibal Directive in combatting terrorist organisations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Ope", + "year": " 2.0", + "format": "", + "content": "THW ban advanced simulations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Ope", + "year": " 2.0", + "format": "", + "content": "TH, as the researchers, would have eaten the crops during the siege.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Ope", + "year": " 2.0", + "format": "", + "content": "TH prefers a world in which every individual is perceived to have equal access to a deeper connection with religious deities (as opposed to e.g. religious leaders being perceived to have more such access).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That we would abolish Slytherin house.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1a", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That, as a Hobbit, we would go on a grand adventure.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1a", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That we would have preferred the Game of Thrones prequel series to be Bloodmoon over House of the Dragon.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1a", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That, as a competitive and socially conscious young Pokémon trainer, we would not participate in Pokémon battles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1b", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That we prefer larger, more spaced apart patches to regular, smaller patches in esports games.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1b", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That it is in the interest of the Gerudo to abandon their policy of isolationism and instead embrace an open borders policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "1b", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That, as Rey Skywalker after the battle of Exegol, we would re-start the Jedi Order.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That the Star Wars sequels are better than the Star Wars prequels.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That it is in the interest of the Sith (circa 35 BBY) to abolish the Rule of Two.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That, as Billie Eilish, we would release a Christmas album.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That, with hindsight, we really do regret Glee.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That, as Clutch Mami, we would sign with a major record label rather than remain independent.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That, as Aman, we would have professed our love and married Naina.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That, as the fertility doctor, we would tell the young woman the truth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That we believe that Andy should have stayed and worked at Runway.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That we would prefer the Eric Killmonger plot to the Shuri plot.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That Gotham would be safer if Batman abandoned his 'No Killing' rule.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That we regret the depiction of Supergirl frequently saving the day through idealism and hope.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That the Pokemon anime should soon replace Ash as the show’s main protagonist.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That we believe that the ending of Bojack Horseman series should have been him dying at the end of 'The View From Halfway Down'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That, as Morty, we would sever ties with Rick.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That, as Melissa, we would reveal the truth to the world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "This house, as the engines, would unionise and protest against the Fat Controller's \"Really Useful Engine Doctrine\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That we believe that Donkey and Puss should have had a relationship, not Donkey and Dragon.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That we regret Netflix remakes of cartoons for adult audiences (eg. Riverdale, Avatar the Last Airbender).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That Tumblr should unban pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That we support the Hollywood Blockbuster model.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That we would prefer prominent authors to write books about utopia, not dystopia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "Without having regard to future events of the show, That the protagonists of the 100 were wrong to seek to expose the Primes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pop Culture Grand Prix", + "year": "2020", + "format": "", + "content": "That Curtis should destroy the train and end humanity rather than taking control.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale NUS Pro Ams", + "year": "2020", + "format": "", + "content": "THBT the age of digital information (e.g. social media, online news, etc.) has done more harm than good in protecting democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale NUS Pro Ams", + "year": "2020", + "format": "", + "content": "THBT the environmental movement should abandon the narrative of personal responsibility in favor of one which emphasizes institutional accountability.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale NUS Pro Ams", + "year": "2020", + "format": "", + "content": "THBT feminism is in opposition to capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale NUS Pro Ams", + "year": "2020", + "format": "", + "content": "Assuming that Joe Biden wins the presidential election, THBT the US should continue to pursue antagonistic and confrontational trade strategies against China (engaging in trade wars, etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale NUS Pro Ams", + "year": "2020", + "format": "", + "content": "TH Prefers Western entertainment (TV Shows, Movies, Theatre) which assumes fluid sexuality (How to Get Away With Murder, Imagine Me & You, High Fidelity, Game of Thrones, Trinkets) for its characters rather than centering a narrative of non-hetero sexuality (Love Simon, Carol, One Day at a Time, The Half of It).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale NUS Pro Ams", + "year": "2020", + "format": "", + "content": "THW legalize the buying and selling of one’s remaining lifetime years.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale NUS Pro Ams", + "year": "2020", + "format": "", + "content": "THW weigh shareholder votes in line with the length of time their shares have been held.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale NUS Pro Ams", + "year": "2020", + "format": "", + "content": "TH, as the Jammu & Kashmir Liberation Front, would ally itself with the Pakistani government to push back against abrogation of Article 370 by the Indian government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale NUS Pro Ams", + "year": "2020", + "format": "", + "content": "THS the rise of anti-natalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale NUS Pro Ams", + "year": "2020", + "format": "", + "content": "THBT religions should promise reward in the afterlife as opposed to promising material reward in this life, with both outcomes contingent on faithful practice.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar September", + "year": "2020", + "format": "", + "content": "TH house prefers karmic-based religious systems over religious systems based on eternal reward or punishment/ divine mercy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar September", + "year": "2020", + "format": "", + "content": "THW not allow news media outlets to report on suicide.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Argumentum Open", + "year": "2020", + "format": "", + "content": "As an average student from lower socio-economic class who lives in a developing country, This House Would choose a generalist career path over becoming a specialist.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Argumentum Open", + "year": "2020", + "format": "", + "content": "This House Prefers a world where altruism is the only acceptable motive in doing good deeds.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Argumentum Open", + "year": "2020", + "format": "", + "content": "Assuming Israel will accept, as Palestinian Authority, This House Would let go of the Gaza Strip in exchange of Palestinian independence in the West Bank.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Argumentum Open", + "year": "2020", + "format": "", + "content": "THR the romanticization of staying productive while working from home amidst the pandemic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Argumentum Open", + "year": "2020", + "format": "", + "content": "This House Prefers a world where China becomes the largest global oil & natural gas exporter.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Argumentum Open", + "year": "2020", + "format": "", + "content": "As feminist, THO such coverage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Argumentum Open", + "year": "2020", + "format": "", + "content": "THBT US presidential debates bring more harms than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Argumentum Open", + "year": "2020", + "format": "", + "content": "THW ban foreign investment on Indonesia tech startups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Argumentum Open", + "year": "2020", + "format": "", + "content": "In the wake of Jacob Blake shooting, As African-American athletes in the NBPA, This house would boycott the remaining of the NBA season.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Argumentum Open", + "year": "2020", + "format": "", + "content": "As left-wing democrats, this house regrets Joe Biden's decision to choose Kamala Harris as VP Candidate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Argumentum Open", + "year": "2020", + "format": "", + "content": "THBT Indonesia's state-owned enterprises should solely focus on distributive function (i.e. distribute services, provide job) even at the expense on revenue generation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MonDO", + "year": "2020", + "format": "", + "content": "THW ban the use of fully autonomous weapons in warfare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MonDO", + "year": "2020", + "format": "", + "content": "THP leaderless movements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MonDO", + "year": "2020", + "format": "", + "content": "THP a world where people cannot lie.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MonDO", + "year": "2020", + "format": "", + "content": "THBT Joe Biden should have picked Elizabeth Warren as the Democratic Party's Vice Presidential candidate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MonDO", + "year": "2020", + "format": "", + "content": "THO the humanisation of villains in popular media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MonDO", + "year": "2020", + "format": "", + "content": "THS judicial activism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MonDO", + "year": "2020", + "format": "", + "content": "THW significantly restrict military recruitment in impoverished areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MonDO", + "year": "2020", + "format": "", + "content": "TH, as the feminist movement, would oppose the practice of female pop artists sexualising themselves in their work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MonDO", + "year": "2020", + "format": "", + "content": "THBT it was in the interest of the UAE to reject the Israel-UAE peace deal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SEC Schools Championship", + "year": "2020", + "format": "", + "content": "THBT developing states should aggressively incentivize collective farming.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SEC Schools Championship", + "year": "2020", + "format": "", + "content": "THP a world without lying.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SEC Schools Championship", + "year": "2020", + "format": "", + "content": "THR the romanticizaion of motherhood.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SEC Schools Championship", + "year": "2020", + "format": "", + "content": "THBT all acts of election campaign should be prohibited with the exception of public debates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SEC Schools Championship", + "year": "2020", + "format": "", + "content": "In developing states, THW highly incentivize students to pursue vocational school.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb Random Pro Am", + "year": "2020", + "format": "", + "content": "THW make voting mandatory.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb Random Pro Am", + "year": "2020", + "format": "", + "content": "THW not allow unvaccinated children to attend schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb Random Pro Am", + "year": "2020", + "format": "", + "content": "TH, as the EU, would withhold development aid from countries with poor women's rights records, e.g. age of consent, laws around domestic violence or property laws.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb Random Pro Am", + "year": "2020", + "format": "", + "content": "For crimes with low prosecution and conviction rates (e.g. sexual assault, domestic violence or membership of criminal gangs), THW lower the burden of proof from \"beyond reasonable doubt\" to \"on the balance of probabilities\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Alternate Pre-ABP", + "year": "2020", + "format": "", + "content": "THBT video games should regularly reassign random gender and race identity to player avatars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Alternate Pre-ABP", + "year": "2020", + "format": "", + "content": "TH, as Central Asian states, would heavily focus on economic and political alignment with China under the Belt and Road Initiative.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Alternate Pre-ABP", + "year": "2020", + "format": "", + "content": "THBT Blockchain does more harm than good to developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Alternate Pre-ABP", + "year": "2020", + "format": "", + "content": "TH, as Hercules, would go up to the Olympus to live with the Gods.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Alternate Pre-ABP", + "year": "2020", + "format": "", + "content": "In universities where affirmative action for women exists, this house would institute affirmative action for men in departments where they are under-represented.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Alternate Pre-ABP", + "year": "2020", + "format": "", + "content": "THBT the world would be better off if the human race would cease to exist.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Alternate Pre-ABP", + "year": "2020", + "format": "", + "content": "This house believes that regional alliances should not take a stance on the elections of their member states, assuming free and fair elections are possible in that member country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Alternate Pre-ABP", + "year": "2020", + "format": "", + "content": "THBT state x should increase taxes as opposed to cutting government spending.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC Practice Spars", + "year": "2020", + "format": "", + "content": "THP a tech industry characterized by multiple smaller firms rather than one dominated by a few large players (e.g. Google Amazon Facebook in status quo).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC Practice Spars", + "year": "2020", + "format": "", + "content": "THR the rise of the commercialisation of surrogacy in developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WSDC Practice Spars", + "year": "2020", + "format": "", + "content": "THW subsidise companies for the employment of ex-convicts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Victoria's Cup", + "year": "2020", + "format": "", + "content": "THS the use of shaming to advance social causes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Victoria's Cup", + "year": "2020", + "format": "", + "content": "TH, as an immigrant parent, would raise their child exclusively in their own (minority) language.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Victoria's Cup", + "year": "2020", + "format": "", + "content": "THBT developing nations should choose to protect their own industries rather than be more open to trade.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Victoria's Cup", + "year": "2020", + "format": "", + "content": "THBT Australian Indigenous groups should focus on expanding the powers and resources of Land Councils rather than seeking change through State/Federal Parliaments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Victoria's Cup", + "year": "2020", + "format": "", + "content": "THW ban corporate sponsorship of academic research.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Victoria's Cup", + "year": "2020", + "format": "", + "content": "THBT feminists should never critique mothers’ parenting except where it is obviously abusive or neglectful.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Victoria's Cup", + "year": "2020", + "format": "", + "content": "TH, as a religious leader, would deny membership to politicians who vote contrary to our religious teachings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Victoria's Cup", + "year": "2020", + "format": "", + "content": "THR the concept of undonditional love.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross-DebSoc Pre-ABP Tournament", + "year": "2020", + "format": "", + "content": "THW deprioritize the distribution of the COVID-19 vaccines to those who contravene public health protocol (eg: spreading false rumours about COVID, refusing to wear a mask).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross-DebSoc Pre-ABP Tournament", + "year": "2020", + "format": "", + "content": "THS the \"Free School\"Philosophy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross-DebSoc Pre-ABP Tournament", + "year": "2020", + "format": "", + "content": "THW, as Lebanon, welcome significantly greater French influence over its domestic affairs (e.g. political-constitutional arrangements, economic policies etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross-DebSoc Pre-ABP Tournament", + "year": "2020", + "format": "", + "content": "THO all media and literature that romanticizes mental illness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross-DebSoc Pre-ABP Tournament", + "year": "2020", + "format": "", + "content": "THBT feminists should adopt \"call-in\" instead of \"call-out\" as their dominant strategy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross-DebSoc Pre-ABP Tournament", + "year": "2020", + "format": "", + "content": "THS local movements in Asia adopting western terminology and strategies to push the cause forward.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross-DebSoc Pre-ABP Tournament", + "year": "2020", + "format": "", + "content": "THW, as the Democratic National Convention, support the Make Billionaires Pay Tax.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross-DebSoc Pre-ABP Tournament", + "year": "2020", + "format": "", + "content": "Assuming the technology was available, THW allow people to erase specific memories of their choice from existence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IBA DU Nations League", + "year": "2020", + "format": "", + "content": "THBT democracies should allow people to opt into religious courts that punish them for acts that are deemed to be offences under their religion, as long as they remain members of that religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IBA DU Nations League", + "year": "2020", + "format": "", + "content": "TH, as fans of the club, supports a takeover by the Saudi Arabian Public Investment Fund.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IBA DU Nations League", + "year": "2020", + "format": "", + "content": "THW break up companies that are deemed threats to the democratic process, even when they do not harm consumer welfare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IBA DU Nations League", + "year": "2020", + "format": "", + "content": "THR the belief that forgiveness is a virtue.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IBA DU Nations League", + "year": "2020", + "format": "", + "content": "THBT the US should ban the sale of vital components for the manufacturing of electronic devices (eg semiconductors), which are produced in the US or use American technology or software*, to Huawei and other major Chinese companies. (*the vast majority of currently produced components).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IBA DU Nations League", + "year": "2020", + "format": "", + "content": "THBT comedians from minority communities should not base their comedy on stereotypes and slurs about their own groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THW abolish the prison system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THW allow single parents to raise their children in prisons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THR the popularity of the \"cop show\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THS the vision of the ASEAN Economic Community.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THBT developing countries would ban the purchase of land by foreign individuals and companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THBT micro-finance organizations should offer micro-finance loans in developing nations exclusively to women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THS the Animal Liberation Front.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "Th, as the LGBTQ+ movement, regrets the advocacy strategy of strongly encouraging people to declare their sexual orientation (e.g: national coming out day).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THR Celebrity CEOs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THBT the West should place a ban on providing military aid to authoritatian regimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "TH as the UK Supports the PM's proposal and would expand the proposal to grant unconditional citizenship to all residents of Hong Kong.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THBT extreme economic need should be grounds for asylum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THBT the Netflix series \"Indian Matchmaking\" does more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "As someone who is in a healthy fling with someone else, but not sexually satisfied, THW ghost instead of breaking up.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THS \"gold digging\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THBT the feminist movement should support polyamorous relationships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THR the narrative that difficulties and struggles in one's lived experience are \"empowering\" (e.g. glorified stories about Oprah's harsh experiences with racism and misogyny).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THBT social movements should prioritize calling-in problematic inividuals and behaviours rather than calling them out.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THP a world where all humans are born as adults.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "Instead of leaving the decision up to the producing company, THW legally require that Self-Driving Cars produced by companies always choose to maximise the number of lives saved, even if it leads to the death of the passengers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THS movements that advocate for the provision of negative rights to sentient AI.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THBT poverty should receive suspect classification in the US legal system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THW legalize betting on electoral processes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "In multi party states with a significant ethnic minority population, TH supports the creation of political parties with the primary purpose of pursuing the interests of that ethnic minority group.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THP a world in which most people are determinists to a world in which most people believe in free will.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "THW prefer to live in a world where one was mortal but could precisely schedule and plan out one`s death.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "East Coast Asians", + "year": "2020", + "format": "", + "content": "Assuming the technology exists, THS the use of non-sentient artifical intelligence that imitates deceased loved ones in appearance, personality, and mannerism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Feminism Open", + "year": "2020", + "format": "", + "content": "TH, as the feminist movement, would advocate for the ban of violent/ unrealistic porn.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Feminism Open", + "year": "2020", + "format": "", + "content": "THBT spouses of political figures should not be recognized as public figures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Feminism Open", + "year": "2020", + "format": "", + "content": "THBT the LGBTQ community should actively boycott the Harry Potter series.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Feminism Open", + "year": "2020", + "format": "", + "content": "Assuming there exists the technology to divide the 40 weeks of pregnancy between two partners in any possible way, THW mandate that each partner carries for half the term.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Feminism Open", + "year": "2020", + "format": "", + "content": "THR the narrative that the man box is a form of oppression.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Feminism Open", + "year": "2020", + "format": "", + "content": "THP the hypersexualisation of men rather than the desexualisation of women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Feminism Open", + "year": "2020", + "format": "", + "content": "Assuming feasibility, THW create a matriarchal state within each nation and allow anyone to move there.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MIDP Round Robin", + "year": "2020", + "format": "", + "content": "THW hold religious leaders liable when identifiable adult believers are harmed by adhering to doctrinal teachings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MIDP Round Robin", + "year": "2020", + "format": "", + "content": "THR the continuation of NATO after the dissolution of the USSR.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MIDP Round Robin", + "year": "2020", + "format": "", + "content": "THW allow ex-felons to become police officers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MIDP Round Robin", + "year": "2020", + "format": "", + "content": "THBT indebted countries should prioritize social spending over paying back loans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MIDP Round Robin", + "year": "2020", + "format": "", + "content": "THBT post conflict states should not instil nationalism through the education system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MIDP Round Robin", + "year": "2020", + "format": "", + "content": "someone pls provide this, it isn't available online.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Novice Debate", + "year": "2020", + "format": "", + "content": "THW allow illegally obtained evidence to be admissable in court.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Novice Debate", + "year": "2020", + "format": "", + "content": "THBT members of a minority group should oppose popular media that innacurately portrays the culture, struggles or history of traditionally marginalised groups (i.e. Hamilton, Mulan).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Novice Debate", + "year": "2020", + "format": "", + "content": "THS Governments Significantly Increasing Their Use of Big Data Based Predictive Models in Decision Making to Replace Human Judgements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Novice Debate", + "year": "2020", + "format": "", + "content": "THR the romanticisation of Dark Tourism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Novice Debate", + "year": "2020", + "format": "", + "content": "THP a world without the concept of fate and destiny.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Novice Debate", + "year": "2020", + "format": "", + "content": "THBT in the event of an all out war between India and China the US should not intervene.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Wilderness Open", + "year": "2020", + "format": "", + "content": "This House Prefers a world where curriculum emphasize on globally integrated history over regional history.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Wilderness Open", + "year": "2020", + "format": "", + "content": "THP trials where victims and defendants are anonymous.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Wilderness Open", + "year": "2020", + "format": "", + "content": "THR the rise of T-10 cricket.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Wilderness Open", + "year": "2020", + "format": "", + "content": "This house believes that developing nations with ethnically diverse populations should prohibit vernacular schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Wilderness Open", + "year": "2020", + "format": "", + "content": "THBT the provision of emergency loans by the International Monetary Fund (IMF) and European Central Bank (ECB) should never be accompanied by fiscal or monetary policy conditions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Wilderness Open", + "year": "2020", + "format": "", + "content": "THW bar Hassan Diab and his cabinet from standing for parliamentary seats in Lebanon.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Wilderness Open", + "year": "2020", + "format": "", + "content": "THS Fisher's Protocol.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Link Bate Championship III", + "year": "2020", + "format": "", + "content": "THW legalise euthanasia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Link Bate Championship III", + "year": "2020", + "format": "", + "content": "THW abolish all private schools at the primary and secondary level.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Link Bate Championship III", + "year": "2020", + "format": "", + "content": "THW abolish all patents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Link Bate Championship III", + "year": "2020", + "format": "", + "content": "Assuming the technology exists, THS genetic engineering to make humans more resistant to the effects of climate change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Link Bate Championship III", + "year": "2020", + "format": "", + "content": "THW transfer the majority ownership of professional sporting clubs to non-profit organizations managed by elected members within their local communities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Link Bate Championship III", + "year": "2020", + "format": "", + "content": "THBT the feminist movement should actively work with liberal religious leaders to change the religions' perception about women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Link Bate Championship III", + "year": "2020", + "format": "", + "content": "This House, as developing nations, would prioritize local industries over foreign MNCs (e.g. subsidize local car brands and tax foreign imported cars).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Link Bate Championship III", + "year": "2020", + "format": "", + "content": "TH, as a parent from a middle income family, would adopt free range parenting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Junior_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Link Bate Championship III", + "year": "2020", + "format": "", + "content": "THBT individuals convicted for crimes that were later legalised should be retrospectively cleared of those charges and released from prison if applicable.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Junior_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Link Bate Championship III", + "year": "2020", + "format": "", + "content": "In sanctuary cities, THW grant undocumented immigrants the right to vote.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Link Bate Championship III", + "year": "2020", + "format": "", + "content": "THR the humanisation of villains in film and media (eg Joker, Maleficient, Gru, Megamind, etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Link Bate Championship III", + "year": "2020", + "format": "", + "content": "Assuming feasibility exists and with benefit of hindsight, TH as USA would go back in time and choose not to invade Afghanistan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Link Bate Championship III", + "year": "2020", + "format": "", + "content": "THS the creation of an international court to prosecute 'crimes against the earth'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Princeton Round Robin", + "year": "2020", + "format": "", + "content": "TH supports a ban on Chinese-owned social media apps (e.g. TikTok, WeChat).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Princeton Round Robin", + "year": "2020", + "format": "", + "content": "THBT all universities should permanently move from letter grades to pass/fail systems.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Princeton Round Robin", + "year": "2020", + "format": "", + "content": "THB the International Community should allow breakaway republics in former Soviet states to join the Russian Federation, conditional on holding free and fair referenda.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Princeton Round Robin", + "year": "2020", + "format": "", + "content": "THBT the government should offer cash compensation for the creation of pharmaceuticals to replace the patent system for pharmaceuticals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Princeton Round Robin", + "year": "2020", + "format": "", + "content": "THBT courts in emerging democracies should break up constantly dominant political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Princeton Round Robin", + "year": "2020", + "format": "", + "content": "THW rename Yale.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Debating Championships", + "year": "2020", + "format": "", + "content": "THR the prominent usage of self deprecating humour by female poltiicians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Debating Championships", + "year": "2020", + "format": "", + "content": "In the event of First Contact occurring between humans and extra terrestrial life (aliens) on Earth, THBT humans should react immediately with pre emptive force.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Debating Championships", + "year": "2020", + "format": "", + "content": "THW ban TikTok.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Debating Championships", + "year": "2020", + "format": "", + "content": "TH, as Joe Biden, would embrace a Green New Deal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Debating Championships", + "year": "2020", + "format": "", + "content": "TH as the OIC would cease business with China (e.g freezing assets, boycotting firms, imposing tariffs, imposing sanctions) until the Uighurs are given safety and religious liberty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Debating Championships", + "year": "2020", + "format": "", + "content": "THP a world where homo sapiens are not the sole surviving human species.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Debating Championships", + "year": "2020", + "format": "", + "content": "THW include regret as a factor in sentencing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Debating Championships", + "year": "2020", + "format": "", + "content": "THBT WSDC adjudication should switch to a consensus methodology of adjudication.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DSDC Coherence", + "year": "2020", + "format": "", + "content": "THBT that national boards should have the right to disallow a player from participating in international domestic sporting leagues.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DSDC Coherence", + "year": "2020", + "format": "", + "content": "TH, as an activist residing in Hong Kong who holds a BNO passport, would take up the deal being offered by UK.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DSDC Coherence", + "year": "2020", + "format": "", + "content": "THBT philanthropists should donate to environmental protection as opposed to poverty alleviation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DSDC Coherence", + "year": "2020", + "format": "", + "content": "THP a world where radical revolutionaries (Malcolm X, Bhagat Singh) are celebrated over peaceful revolutionaries (Mahatma Gandhi, MLK Jr).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DSDC Coherence", + "year": "2020", + "format": "", + "content": "THR the narrative that one must \"do what they love\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "HighSchool_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DSDC Coherence", + "year": "2020", + "format": "", + "content": "THP to live in a world where personal success and failure are seen as a consequence of random factors rather than personal choice.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DSDC Coherence", + "year": "2020", + "format": "", + "content": "TH, as an average resident of Gaza, would support Hamas and their agendas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DSDC Coherence", + "year": "2020", + "format": "", + "content": "THBT the IMF should require collateral for bailouts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DSDC Coherence", + "year": "2020", + "format": "", + "content": "THBT feminists should reclaim and celebrate traits (such as empathy, nurturing) and activities (gardening, cooking) associated with femininity as empowering.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar August", + "year": "2020", + "format": "", + "content": "THW strip the voting rights of individuals that did not vote in more than 2 consecutive election cycles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar August", + "year": "2020", + "format": "", + "content": "THBT in countries where National Service is mandatory, feminists should push for the inclusion of women to be conscripted as well.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar August", + "year": "2020", + "format": "", + "content": "THW remove the privilege of self incrimination.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar August", + "year": "2020", + "format": "", + "content": "This house supports health insurance companies offering optional lump sum payments to terminally ill patients who choose to forgo expensive life extending medical treatments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar August", + "year": "2020", + "format": "", + "content": "Assuming feasibility, THW allow individuals to sell their units of Intelligence Quotient (IQ).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana EUDC", + "year": "2020", + "format": "", + "content": "This House Would only allow university admission on the basis of standardized testing, as opposed to non-quantitative methods (e.g. essays, alumni interviews).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana EUDC", + "year": "2020", + "format": "", + "content": "This House Would ban Amazon's internal arbitration courts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana EUDC", + "year": "2020", + "format": "", + "content": "This House Opposes the commercialization of Mindfulness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana EUDC", + "year": "2020", + "format": "", + "content": "This House Believes That pro-democratic activists should use fake news and synthetic media (e.g. \"deepfake\", fake video or audio recordings) to advance their cause.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana EUDC", + "year": "2020", + "format": "", + "content": "THR the trend of central banks setting extremely low interest rates after the 2008 financial crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana EUDC", + "year": "2020", + "format": "", + "content": "This House Believes That 10 Minute School should remove the videos.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana EUDC", + "year": "2020", + "format": "", + "content": "Given the technology, THW erase society's memory and evidence of the criminal past of former convicts after their release from prison.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana EUDC", + "year": "2020", + "format": "", + "content": "This House Believes That leaders of an occupied nation should not assist the occupying powers in maintaining stability.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana EUDC", + "year": "2020", + "format": "", + "content": "This House Would ban ownership consolidation of newspapers by a single entity e.g. private equity firms, single media company.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana EUDC", + "year": "2020", + "format": "", + "content": "This House Would force individuals suspected of being a \"stolen child\" under the junta to undergo DNA testing to establish whether they are indeed stolen children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana EUDC", + "year": "2020", + "format": "", + "content": "THBT countries should suspend all elections in times of severe health crises.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana EUDC", + "year": "2020", + "format": "", + "content": "THW only recruit atheists to be part of the group, and would not allow any religious books or items of worship on board.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana EUDC", + "year": "2020", + "format": "", + "content": "This House Would ban insurance coverage for sexual misconduct claims.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana EUDC", + "year": "2020", + "format": "", + "content": "This House Would transfer management of all water resources to an international body.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana EUDC", + "year": "2020", + "format": "", + "content": "TH, as Israel, would form a strategic military alliance with the Kurds in Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana EUDC", + "year": "2020", + "format": "", + "content": "THW allow police officers to refuse orders on grounds of conscience.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taylor's Debate Open", + "year": "2020", + "format": "", + "content": "THBT feminists in India should attempt to infiltrate and reform the arranged marriage industry as opposed to fight for its abolishment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taylor's Debate Open", + "year": "2020", + "format": "", + "content": "THR the glorification of immediate postcolonial leaders in Africa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taylor's Debate Open", + "year": "2020", + "format": "", + "content": "THBT charities and non-profit organizations should be given votes in elections proportional to the amount of donations they receive.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taylor's Debate Open", + "year": "2020", + "format": "", + "content": "TH, as Likud, W support and adopt the Jewish People’s Intelligence Services Doctrine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taylor's Debate Open", + "year": "2020", + "format": "", + "content": "TH, as the Catholic Church, would prioritize impact investing over direct charity to communities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taylor's Debate Open", + "year": "2020", + "format": "", + "content": "THBT South Indian film industries should integrate with Bollywood.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Ope_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taylor's Debate Open", + "year": "2020", + "format": "", + "content": "TH, as a prominent pro-independence activist in Hong Kong, would align as pro-China in an effort to run for upcoming elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taylor's Debate Open", + "year": "2020", + "format": "", + "content": "In Western Liberal democracies, THR the queer movement's primary form of collectivization transitioning from riots/protests into pride celebrations/parades.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Womxn's Debating Championship", + "year": "2020", + "format": "", + "content": "THW ban the buying and selling of emotional services.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Womxn's Debating Championship", + "year": "2020", + "format": "", + "content": "THW grant Indigenous communities exclusive legal rights to control distribution of traditional folklore, music, dance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Womxn's Debating Championship", + "year": "2020", + "format": "", + "content": "THBT international development institutions should not finance natural resource extraction projects in corrupt states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Womxn's Debating Championship", + "year": "2020", + "format": "", + "content": "THS the narrative that the decision to have a biological child is a selfish one.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Womxn's Debating Championship", + "year": "2020", + "format": "", + "content": "THBT states should not prosecute members of terrorist organisations (e.g. ISIS, Al-Qaeda) who surrender to those states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Womxn's Debating Championship", + "year": "2020", + "format": "", + "content": "TH, as X, would not accept the offer.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Womxn's Debating Championship", + "year": "2020", + "format": "", + "content": "THBT India should lease Protected Areas to local residents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Womxn's Debating Championship", + "year": "2020", + "format": "", + "content": "THBT feminists should challenge militarism instead of advocating for the \"right to fight\" (ex. pushing for the inclusion of women in national draft registration and combat duty_.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Womxn's Debating Championship", + "year": "2020", + "format": "", + "content": "THBT the general economic policy of countries should aim to increase Gross National Happiness rather than standard economic measures (eg, Gross Domestic Product).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Womxn's Debating Championship", + "year": "2020", + "format": "", + "content": "THBT individuals should vote based on their principles rather than on the electability of the candidates (eg by vote-spoiling in the #undirosak movement, or by voting for fringe candidates).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Online Open", + "year": "2020", + "format": "", + "content": "THP a parliamentary electoral system which includes a constituency link.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Online Open", + "year": "2020", + "format": "", + "content": "TH opposes the derogatory usage of the inherent identity characteristics of dominant groups - e.g. \"You're so white.\", \"Man Tears\", \"ugh such a Karen\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Online Open", + "year": "2020", + "format": "", + "content": "THBT Central Asian states should significantly disassociate from Russian cultural influence (e.g. language, the arts, media, history etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Online Open", + "year": "2020", + "format": "", + "content": "Assuming there is a safe procedure, THW allow adults to permanently \"lock in\" their chosen personality traits (e.g. stubbornness, openness, honesty) as unchangeable.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Online Open", + "year": "2020", + "format": "", + "content": "In times of economic crises, THBT the government should withhold information that is likely to damage market confidence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Online Open", + "year": "2020", + "format": "", + "content": "Given the opportunity, TH, as a talented young individual living in a Western Balkan country, would emigrate to pursue a career in the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Online Open", + "year": "2020", + "format": "", + "content": "THO the \"Toxic Positivity\" culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Online Open", + "year": "2020", + "format": "", + "content": "Given the opportunity, TH, as a talented young individual living in a Western Balkan country, would emigrate to pursue a career in the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Online Open", + "year": "2020", + "format": "", + "content": "THO the \"Toxic Positivity\" culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Online Open", + "year": "2020", + "format": "", + "content": "THP to be alone in the universe.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Womxn and Gender Minorities Online Debate Open", + "year": "2020", + "format": "", + "content": "THR the prominence of creator-driven content.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Womxn and Gender Minorities Online Debate Open", + "year": "2020", + "format": "", + "content": "THP the removal of sex and gender markers (e.g., on government forms, IDs, and other areas of legal recognition) as opposed to the inclusion of nonbinary, \"X\", and other gender or sex markers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Womxn and Gender Minorities Online Debate Open", + "year": "2020", + "format": "", + "content": "THS facilitating massive emigration as a response to oppressive regimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Womxn and Gender Minorities Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT developing countries should prohibit using the principal of petroleum funds to finance social and welfare programs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Womxn and Gender Minorities Online Debate Open", + "year": "2020", + "format": "", + "content": "THO the use of \"desperation science\" during the coronavirus pandemic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Womxn and Gender Minorities Online Debate Open", + "year": "2020", + "format": "", + "content": "THR the popular belief in free will.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Womxn and Gender Minorities Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT feminists should primarily combat pseudo-scientific claims of sex and gender based differences (e.g. claims that men are more intelligent/brave/strong) on the basis of their scientific inaccuracy as opposed to focusing on deconstructing the social value placed on those differences.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Womxn and Gender Minorities Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT parliamentary ridings and congressional districts should be drawn to maximize electoral competitiveness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Womxn and Gender Minorities Online Debate Open", + "year": "2020", + "format": "", + "content": "THP a world where epistemic humility is widely believed in, as opposed to a world where skepticism is widely believed in.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Access Debate Tournament", + "year": "2020", + "format": "", + "content": "This House Would significantly decrease income tax rates for women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Access Debate Tournament", + "year": "2020", + "format": "", + "content": "This House Would give victims of crimes significant power over sentencing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Access Debate Tournament", + "year": "2020", + "format": "", + "content": "This House believes that contemporary social movements should focus on class differences rather than on identity-based discrimination (e.g. gender, race).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Access Debate Tournament", + "year": "2020", + "format": "", + "content": "This House, as a Pacific island state, would reject Chinese developmental assistance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Access Debate Tournament", + "year": "2020", + "format": "", + "content": "In post-conflict societies, This House prefers power-sharing agreements to unrestricted democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Access Debate Tournament", + "year": "2020", + "format": "", + "content": "Given the dichotomy, This House believes that animal rights activists should focus on the environmental impacts that meat consumption has on humans, rather than empathy for animals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Access Debate Tournament", + "year": "2020", + "format": "", + "content": "This House believes that developing countries should prioritise the massive construction of infrastructure over the direct provision of high subsidies and social welfare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Access Debate Tournament", + "year": "2020", + "format": "", + "content": "This House believes that middle-class families should adopt a model of extended adolescence for their children, rather than one of early independence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "An Najah Arabic Novice Online Debates", + "year": "2020", + "format": "", + "content": "THBT Palestinians should prefer their wellbeing over fighting injustices in Palestine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "An Najah Arabic Novice Online Debates", + "year": "2020", + "format": "", + "content": "THP western individualism over local collectivism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "An Najah Arabic Novice Online Debates", + "year": "2020", + "format": "", + "content": "THW direct the Palestinian economy toward information technology.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "An Najah Arabic Novice Online Debates", + "year": "2020", + "format": "", + "content": "THO Arab nationalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debate Open", + "year": "2020", + "format": "", + "content": "THS the narrative that traditionally feminine qualities (e.g. compassion, kindness) enable female leaders to better deal with times of crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debate Open", + "year": "2020", + "format": "", + "content": "THW give people additional votes in proportion to their economic disadvantage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debate Open", + "year": "2020", + "format": "", + "content": "THO the societal narrative that forgiveness is a virtue.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debate Open", + "year": "2020", + "format": "", + "content": "THBT governments of developing countries should aggressively disincentivize students from pursuing further education overseas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debate Open", + "year": "2020", + "format": "", + "content": "THBT the heads of central banks (eg: the Federal Reserve, the European Central Bank) should be democratically elected.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debate Open", + "year": "2020", + "format": "", + "content": "THR the rise of Nihilism in popular culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Debate Open", + "year": "2020", + "format": "", + "content": "THP a world where entry into Heaven is decided on peer-based evaulation as opposed to religious doctrine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge 2: Euros Bungaloo", + "year": "2020", + "format": "", + "content": "THW abolish awards in creative fields (e.g., the Oscars for film, the Booker Prize or the Nobel for literature, the Future Generation Art Prize for art).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge 2: Euros Bungaloo", + "year": "2020", + "format": "", + "content": "THBT governments should provide significant financial incentives for urban citizens to move to rural areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge 2: Euros Bungaloo", + "year": "2020", + "format": "", + "content": "THBT the education system should teach children to believe that they are personally culpable for the death and suffering in the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge 2: Euros Bungaloo", + "year": "2020", + "format": "", + "content": "TH, as the US, would prioritize economic engagement with North Korea instead of demanding nuclear disarmament.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge 2: Euros Bungaloo", + "year": "2020", + "format": "", + "content": "THS the shaming of individuals as a tactic for social movements to catalyse change (e.g. shaming individuals for not taking environmentally sustainable actions, shaming individuals for violating lockdown/quarantine policies).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge 2: Euros Bungaloo", + "year": "2020", + "format": "", + "content": "THP a society that heavily emphasises collectivism rather than individualism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge 2: Euros Bungaloo", + "year": "2020", + "format": "", + "content": "THBT policies regarding the teaching and use of language should be descriptive rather than prescriptive.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge 2: Euros Bungaloo", + "year": "2020", + "format": "", + "content": "THR the glorification of the concept of genius.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge 2: Euros Bungaloo", + "year": "2020", + "format": "", + "content": "THBT developing states are better off with elite-led technocratic governments as opposed to democratic ones.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge 2: Euros Bungaloo", + "year": "2020", + "format": "", + "content": "THP a world where Karmic reincarnation exists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge 2: Euros Bungaloo", + "year": "2020", + "format": "", + "content": "THW introduce significant \"cost caps\" in sports.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Schools_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge 2: Euros Bungaloo", + "year": "2020", + "format": "", + "content": "TH, as a parent belonging to a minority religion, would discourage their children from expressing their faith publicly (e.g. crossing yourself, wearing hijabs, kippahs or other articles of faith, posting on social media, publicly attending mass, synagogues etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Schools_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we regret the norm that doctors should defer to their patients' wishes, even where doing so is not in those patients' best interests.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we oppose the medicalisation of learning disabilities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That, as Joe Biden, we would choose to run on a ‘Medicare-for-All’ platform.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That the #MeToo movement has failed working class women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That the government should provide incentives for the urban poor to migrate to rural areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we support gamification in the workplace.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we regret the ongoing prominence of cricket in postcolonial countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we prefer a world where sports are not commercialised.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we would abolish the ‘one-year-out’ rule in the NBA.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That Palestinians should abandon their claim for statehood and opt for a civil rights struggle instead.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we regret the Trump-Taliban peace deal agreement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we, as Benny Gantz, regret signing the coalition agreement between Likud and the Blue and White alliance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we regret the expectation that children should be shielded from all forms of danger.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we would proportionately subsidise (e.g. scholarship and funding) university courses according to the employability of their graduates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we support a permanent move to online tertiary education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That young people should reject traditionally empowered political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That legislative bodies (e.g. parliament, congress, senate, councils) should be formed by sortition democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That the Democratic Party should not embrace 'Never Trump' Republicans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we should ban high frequency trading.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we should limit the trading of individual shares and derivative products to licensed professionals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we should ban mortgage-based financial derivatives.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we should ban mergers and acquisitions of mass media companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That social media companies should aggressively censor offensive and discriminatory content.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we prefer a world where social media networking sites are only available on a paid subscription basis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That the state's failure to address a pandemic should be considered as a crime against humanity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That criminal trials should continue even when the accused is deceased.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That the state should pay reparations to individuals convicted in the past for actions that are no longer recognised as a crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That developing countries should prioritise the massive construction of infrastructure over the direct provision of high subsidies and social welfare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we regret the rise of nation-states built around exclusive notions of language, race, and religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That it is illegitimate for states to limit immigration unless there is a clear threat to national security.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That it is morally wrong to use subconscious manipulation to nudge citizens towards socially desirable choices.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That activist movements should embrace cancel culture as a tool to promote social change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That France should abandon the principle of laïcité.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we should abolish literary awards (e.g. the Man Booker Prize, the Nobel Prize for Literature).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we regret the stigmatisation of hedonistic lifestyles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we support the creation of children's literature which teaches that people are neither good nor evil.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That Non-Western LGBTQ activists should reject sex positivity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we regret the belief that individuals possess defined personality traits.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That portrayals of religious deities and prophets in media should receive prior approval from relevant religious authorities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That Western companies with a significant number of employees from the Indian diaspora should actively campaign against the caste system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That ASEAN should transform itself into a political union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That, as developing nations, we would prefer to align with China than the United States.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That, as a woman of colour living in a majority-white country, we would embrace, compete in and establish national beauty pageants for women of our ethnic heritage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That capitalism is incompatible with racial equality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we, as a Catholic priest, would actively endorse liberal values that do not align with the Catholic Church.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we, as original producers of non-Western films, would deny Hollywood the right to produce remakes, unless a quota for non-Western actors/actresses is guaranteed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Double", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we prefer transformative to curatorial fandom.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Double", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That Disney should remove from circulation cartoons from its history that contain racist caricatures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Double", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we should stop the practice of requiring community's approval to build houses of worship.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That, as minorities, we would engage in respectability politics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we would require companies to use absolute blind recruitment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we should allow parents to sell shares in their children’s future income streams.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we should reallocate public investment funds from start-ups to traditional small and medium-sized enterprises.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That the European Central Bank should monetise the government deficits of Eurozone countries experiencing financial crises.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That, in countries where military service is mandatory only for men, as self-proclaimed feminist women, we would actively volunteer in the military.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we regret narratives that portray human progress as inevitable.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we regret the emphasis placed on individual rights by social justice movements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we should grant legal personhood to culturally significant features of the natural environment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That we support compassionate conservation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monash Australs", + "year": "2020", + "format": "", + "content": "That, as environmentalists, we would choose a strategy of working closely with corporations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Borneo Online Debate Championship", + "year": "2020", + "format": "", + "content": "THBT Queer movements in the developing world Should attempt to dissociate themselves from modern Queer movements in the west.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Borneo Online Debate Championship", + "year": "2020", + "format": "", + "content": "As the resistance group, THW accept the offer.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Borneo Online Debate Championship", + "year": "2020", + "format": "", + "content": "THR the use of nostalgia in political campaigning.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Borneo Online Debate Championship", + "year": "2020", + "format": "", + "content": "THO the demonization of dark humour / comedy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Borneo Online Debate Championship", + "year": "2020", + "format": "", + "content": "THR the Heroisation of Covid-19 Frontliners.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice2_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Borneo Online Debate Championship", + "year": "2020", + "format": "", + "content": "As an Asian parent, THW teach their child to actively reject the 'humble culture\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Borneo Online Debate Championship", + "year": "2020", + "format": "", + "content": "THBT the GNA and its allies should abandon any attempts at peace negotiations and continue its current push against the LNA.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Borneo Online Debate Championship", + "year": "2020", + "format": "", + "content": "THS Black rights movements in the West's strategy of actively campaigning to defund the police instead of pushing for institutional reforms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "CP Nationals", + "year": "2020", + "format": "", + "content": "THO participation awards.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "CP Nationals", + "year": "2020", + "format": "", + "content": "THBT the USMCA should pursue long term economic integration through a common currency.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "CP Nationals", + "year": "2020", + "format": "", + "content": "THS the complete and total liberation of all animals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "CP Nationals", + "year": "2020", + "format": "", + "content": "THR the narrative that family love should be unconditional.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "CP Nationals", + "year": "2020", + "format": "", + "content": "THW attend the Queer Liberation March rather than the Stonewall 50 March.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "CP Nationals", + "year": "2020", + "format": "", + "content": "THS the withdrawal of companies from Hong Kong.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "CP Nationals", + "year": "2020", + "format": "", + "content": "THBT, given feasibility, companies should move to work from home.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "CP Nationals", + "year": "2020", + "format": "", + "content": "THW remove all restrictions on allowable areas of scientific research.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "CP Nationals", + "year": "2020", + "format": "", + "content": "THBT when financial institutions are in need of financial assistance during recessions, the burden should fall upon creditors (e.g. via diluting shareholder value by turning debt into equity) rather than the government stepping in.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ASDO", + "year": "2020", + "format": "", + "content": "TH regrets virtue signalling on social media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ASDO", + "year": "2020", + "format": "", + "content": "THBT X should take the job of CEO.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ASDO", + "year": "2020", + "format": "", + "content": "THBT Batman should abolish his no kill rule.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ASDO", + "year": "2020", + "format": "", + "content": "THW programme self-driving cars to prioritise the number of lives saved when faced with unavoidable collisions as opposed to prioritising the safety of the driver/passenger.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ASDO", + "year": "2020", + "format": "", + "content": "THW require all historically major polluters to open their borders to environmental refugees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ASDO", + "year": "2020", + "format": "", + "content": "THR effective altruism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DGBDS Mace", + "year": "2020", + "format": "", + "content": "TH supports the rapid global elimination of both tariff and non-tariff barriers to free trade.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DGBDS Mace", + "year": "2020", + "format": "", + "content": "In countries with a lack of medical professionals, TH, rather than regulate who can be a healthcare professional, would provide optional certifications of competence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DGBDS Mace", + "year": "2020", + "format": "", + "content": "THR The increasing trend of left wing censorship in university campuses and the overall academic and literary sphere.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DGBDS Mace", + "year": "2020", + "format": "", + "content": "This House Believes That the state should strongly incentivise highly educated individuals to have children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DGBDS Mace", + "year": "2020", + "format": "", + "content": "This House believes that the protections of international law conventions and treaties should not apply to combatants from terrorist organisations (e.g. prohibition on torture, prisoner of war status, guarantee of post-conflict release).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DGBDS Mace", + "year": "2020", + "format": "", + "content": "THP a world in which African nations persued aggressive trade deals with China at the expense of all western aid.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DGBDS Mace", + "year": "2020", + "format": "", + "content": "THW make all punishments imposed by the criminal justice system proportional to the wealth of the accused.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "St Petersburg Online Open", + "year": "2020", + "format": "", + "content": "THR the narrative that in times of crisis (for example: major natural disasters, war, pandemics) frontline workers are national heroes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "St Petersburg Online Open", + "year": "2020", + "format": "", + "content": "THP a world where significantly more women are cast in lead villain roles by film and TV studios.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "St Petersburg Online Open", + "year": "2020", + "format": "", + "content": "THW require policing budgets and policy to be decided by local referenda.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "St Petersburg Online Open", + "year": "2020", + "format": "", + "content": "THR the glorification of youth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "St Petersburg Online Open", + "year": "2020", + "format": "", + "content": "THBT it would be in the interest of the Russian state to pivot away from China and towards the West.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "St Petersburg Online Open", + "year": "2020", + "format": "", + "content": "THR the focus on the personal identity and private actions of politicians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "St Petersburg Online Open", + "year": "2020", + "format": "", + "content": "TH prefers, as a means of enrolling people in the army, conscription by lottery rather than aggressive recruitment of volunteers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "St Petersburg Online Open", + "year": "2020", + "format": "", + "content": "THBT the scientific community should reject the notion of \"non-overlapping magisteria\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Suzhou Debate Open", + "year": "2020", + "format": "", + "content": "THW put an absolute cap on non-essential expenditure by parents on each of their children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Suzhou Debate Open", + "year": "2020", + "format": "", + "content": "THBT prominent social media platforms (e.g Twitter, Facebook, Weibo) should not allow politicians or political parties to make public accounts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Suzhou Debate Open", + "year": "2020", + "format": "", + "content": "THS the pirating and mass availability of academic resources.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Suzhou Debate Open", + "year": "2020", + "format": "", + "content": "THW cancel all debts to international organisations (e.g. the IMF) or other countries held by the governments of the poorest 20% of countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Suzhou Debate Open", + "year": "2020", + "format": "", + "content": "THBT in areas of socio-economic deprivation, schools should train students in vocational skills to the exclusion of the liberal arts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Suzhou Debate Open", + "year": "2020", + "format": "", + "content": "THS the illegal removal of statues of popular historical figures by social justice movements who consider them to be offensive (e.g statues of Winston Churchill in the UK, of Sukarno in Indonesia, etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Suzhou Debate Open", + "year": "2020", + "format": "", + "content": "THBT international media organisations should only use local reporters to cover foreign stories and events.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Suzhou Debate Open", + "year": "2020", + "format": "", + "content": "Assuming feasibility, THW allow individuals to sell their units of Intelligence Quotient (IQ).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Suzhou Debate Open", + "year": "2020", + "format": "", + "content": "THBT identity groups within the feminist movement (e.g. the trans community, black feminists, etc) should lobby and campaign as independent movements rather than together as a single movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar July", + "year": "2020", + "format": "", + "content": "THW consider \"public interest\" as a mitigating factor for investigative journalists prosecuted for committing crimes (e.g. breaking and entering, breaching privacy etc) in the course of an investigation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar July", + "year": "2020", + "format": "", + "content": "Where resources are significantly limited, THBT states should actively promote religion in areas of high poverty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar July", + "year": "2020", + "format": "", + "content": "THBT it is legitimate for oppressed communities (e.g. poor African American communities in the US) to not pay taxes towards the government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar July", + "year": "2020", + "format": "", + "content": "THW break up big tech companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar July", + "year": "2020", + "format": "", + "content": "THW compel all social media companies to offer multi-tiered paid subscription services instead of free for all access.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lockdown.Exe Debate League", + "year": "2020", + "format": "", + "content": "THBT the feminist movement should actively recruit conservative women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lockdown.Exe Debate League", + "year": "2020", + "format": "", + "content": "THBT developed states should freeze all debt repayments from developing states until the COVID-19 crisis is effectively contained.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lockdown.Exe Debate League", + "year": "2020", + "format": "", + "content": "THBT the educational system should portray drug use in an objective way (with all pros and cons), rather than in an solely negative light.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lockdown.Exe Debate League", + "year": "2020", + "format": "", + "content": "THR the glamourization of start-up culture that encourages people to start their own businesses rather than pursuing traditional career paths.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lockdown.Exe Debate League", + "year": "2020", + "format": "", + "content": "THBT environmental advocacy groups should prioritize lobbying governments to change environmental policies (e.g. Cap and trade, banning environmentally harmful chemicals) rather than convincing individuals to take responsibility for their own contribution to environmental damage (e.g. reducing / recycling waste, taking public transit).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lockdown.Exe Debate League", + "year": "2020", + "format": "", + "content": "THO the rise of billionaire philanthropy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lockdown.Exe Debate League", + "year": "2020", + "format": "", + "content": "THS filial responsibility laws.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lockdown.Exe Debate League", + "year": "2020", + "format": "", + "content": "THBT developing nations should distribute, as a dividend to citizens, income derived from natural resource extraction.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial IV", + "year": "2020", + "format": "", + "content": "THBT sex education classes in schools should teach techniques for sexual gratification (including, but not limited to, anal sex, oral sex, mutual gratification and masturbation).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial IV", + "year": "2020", + "format": "", + "content": "THBT Israel should adopt the Corpus Seperatum plan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial IV", + "year": "2020", + "format": "", + "content": "THBT Carrie Lam should resign.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial IV", + "year": "2020", + "format": "", + "content": "THBT the US should require the NRA to pay reparations to victims of gun violence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial IV", + "year": "2020", + "format": "", + "content": "THW ban the creation of saviour siblings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial IV", + "year": "2020", + "format": "", + "content": "THW take the Blue Pill over the Red Pill.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial IV", + "year": "2020", + "format": "", + "content": "THBT India should join ASEAN.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial IV", + "year": "2020", + "format": "", + "content": "THBT universities should establish \"dangerous spaces\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial IV", + "year": "2020", + "format": "", + "content": "THR the rise of silicon valley culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Restricted Mara Open", + "year": "2020", + "format": "", + "content": "THBT South Korea should develop its own nucler weapons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Restricted Mara Open", + "year": "2020", + "format": "", + "content": "THW grant only non-male individuals the right to bear arms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Restricted Mara Open", + "year": "2020", + "format": "", + "content": "THBT Muslim majority states should not perform the hajj until Saudi Arabia and its allies withdraw from Yemen.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Restricted Mara Open", + "year": "2020", + "format": "", + "content": "THS the establishment of LGBTQIA+-only schools in conservative areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Restricted Mara Open", + "year": "2020", + "format": "", + "content": "THW allow children who have reached the age of majority to sue their parents for religious indoctrination.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Restricted Mara Open", + "year": "2020", + "format": "", + "content": "THO the glorification of courage in popular culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Restricted Mara Open", + "year": "2020", + "format": "", + "content": "THBT India should seek prompt de-escalation, even at the expense of territorial concessions, in relation to China in the Sino-Indian conflict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Restricted Mara Open", + "year": "2020", + "format": "", + "content": "THW prefer not to be born than to live a deeply immoral yet pleasurable life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Restricted Mara Open", + "year": "2020", + "format": "", + "content": "THBT it is in Mahathir's interest to cede leadership of the Opposition to Anwar Ibrahim.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Saskatoon WSDC", + "year": "2020", + "format": "", + "content": "THW cancel all debts held by poor countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Saskatoon WSDC", + "year": "2020", + "format": "", + "content": "THW put an absolute cap on non-essential expenditure by parents on each of their children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Saskatoon WSDC", + "year": "2020", + "format": "", + "content": "THW grant amnesty to members of drgu gangs operating in violent areas if gang leaders end all turf wars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Saskatoon WSDC", + "year": "2020", + "format": "", + "content": "THBT it is in the interests of the EU to offer Turkey accession into the union in exchange for a permanent commitment to housing refugees from the Syrian and Iraqi conflicts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Saskatoon WSDC", + "year": "2020", + "format": "", + "content": "THBT historically oppressed communities should heavily prioritize teaching values of individualism to their children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Saskatoon WSDC", + "year": "2020", + "format": "", + "content": "THBT tourists should boycott Indigenous tourist destinations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Saskatoon WSDC", + "year": "2020", + "format": "", + "content": "THBT all control of disputed religious sites should be ceded to the UN.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC Fundraiser Open", + "year": "2020", + "format": "", + "content": "TH, as a prominent director from a marginalized background, would prioritize developing TV shows and films with a multicultural, diverse cast over one focused specifically on their marginalized group.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC Fundraiser Open", + "year": "2020", + "format": "", + "content": "Assuming this medicine exists and is widely accessible, This House Believes That universities should ban and actively test for this drug.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC Fundraiser Open", + "year": "2020", + "format": "", + "content": "TH as Japan Would nationalize their electronics industry.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC Fundraiser Open", + "year": "2020", + "format": "", + "content": "THBT people should never \"go above and beyond\" in the workplace.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC Fundraiser Open", + "year": "2020", + "format": "", + "content": "THBT feminist movements should adopt feminist icons that are adversarial and embody violence as opposed to icons that promote traditional norms, monetary prosperity and working within the system through cooperation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC Fundraiser Open", + "year": "2020", + "format": "", + "content": "THR Breadtubers' prioritisation of trying to de-radicalise alt-righters.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC Fundraiser Open", + "year": "2020", + "format": "", + "content": "THR the commercialization of genetic testing (eg: AncestryDNA, 23 & Me).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC Fundraiser Open", + "year": "2020", + "format": "", + "content": "This House Prefers a world with city-states governed by an elected global leadership to the current predominance of nation-states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Online", + "year": "2020", + "format": "", + "content": "THW implement the Teacher Independence Model in schools for children aged over 12.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Online", + "year": "2020", + "format": "", + "content": "THR twitter adding a fact-check function.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Online", + "year": "2020", + "format": "", + "content": "THW incentivize work from home (*not only for the duration of the pandemic).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Online", + "year": "2020", + "format": "", + "content": "THW grant all nation states the right to veto any transfer, out of their country, of art which is deemed to be cultural heritage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Online", + "year": "2020", + "format": "", + "content": "THW forbid universities in the US from accepting research funding from China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Online", + "year": "2020", + "format": "", + "content": "THW spend the significant majority of foreign development aid on interventions proven to be effective by RCT.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Online", + "year": "2020", + "format": "", + "content": "TH, as a feminist hacker, would seek to disrupt tradwife spaces (for example, by methods such as DDos, phishing, defacement).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Online", + "year": "2020", + "format": "", + "content": "THP the rule of the governing AI, with elections on priorities over, traditional representative democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Evodio Online Open", + "year": "2020", + "format": "", + "content": "TH supports giving legal personhood to internationally recognized important environmental spaces (e.g., Mount Everest, the Amazon) as a form of conservation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Evodio Online Open", + "year": "2020", + "format": "", + "content": "TH prefers a world with a widespread belief in radical freedom.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Evodio Online Open", + "year": "2020", + "format": "", + "content": "TH supports the creation of charter cities in the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Evodio Online Open", + "year": "2020", + "format": "", + "content": "THBT social movements should focus on publicly shaming corporations to change business practices rather than trying to achieve these outcomes through legislative action.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Evodio Online Open", + "year": "2020", + "format": "", + "content": "THBT the 'cultural defence' is a legitimate defence in criminal proceedings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Evodio Online Open", + "year": "2020", + "format": "", + "content": "THBT the U.S. Federal Reserve should purchase equities (i.e., buy stocks).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Evodio Online Open", + "year": "2020", + "format": "", + "content": "TH supports the narrative that All Cops Are Bad.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Evodio Online Open", + "year": "2020", + "format": "", + "content": "TH prefers a world where romantic love is not the primary consideration in a marriage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Pro Ams", + "year": "2020", + "format": "", + "content": "THW ban all forms of pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Pro Ams", + "year": "2020", + "format": "", + "content": "THW ban standardized testing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Pro Ams", + "year": "2020", + "format": "", + "content": "THW require parents to obtain the State's approval before having children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Pro Ams", + "year": "2020", + "format": "", + "content": "THW hold city and local governments civilly responsible for deaths that can be ascribed to homelessness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Pro Ams", + "year": "2020", + "format": "", + "content": "This house believes that feminists should criticise decisions made by women that seem to entrench patriarchal norms even where women claim it is their choice (e.g. foregoing careers to raise children, having cosmetic surgery).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Pro Ams", + "year": "2020", + "format": "", + "content": "THBT oppressed minority groups should pursue violent resistance (i.e. rioting) as opposed to peaceful protest when seeking reform.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Pro Ams", + "year": "2020", + "format": "", + "content": "TH, as Russia, would pursue an oil war against Saudi Arabia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hong Kong Pro Ams", + "year": "2020", + "format": "", + "content": "THP a world where people are unable to forget their life experiences.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sarawak Schools Online Debating Championship", + "year": "2020", + "format": "", + "content": "THR the idolization of individuals who achieved success without going through traditional education (Bill Gates, Mark Zuckerberg, etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sarawak Schools Online Debating Championship", + "year": "2020", + "format": "", + "content": "THR the narrative that humans are innately bad.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sarawak Schools Online Debating Championship", + "year": "2020", + "format": "", + "content": "In places with strong Islamophobia, THBT Muslim parents should homeschool their children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THS the destruction of monuments of controversial historical figures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THS the rise of teenagers at the forefront of social movements (e.g. Gretta Thunberg, Malala Yousafzai, the Parkland students).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THBT hacking is an acceptable form of protest against large corporations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "Assuming full social distancing isn't possible: This house, upon finding an opportunity, would escape to another city which is not yet infected.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THBT governments should not fund reconstruction in areas prone to natural disasters.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "In times of crisis, where tradeoff is inevitable, THBT states should prioritise safety over freedom.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "TH, as Mowgli W stay in the jungle.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THBT Ezra Miller should drop out of the role for future movies in the series.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "TH, as the Ministry of Magic W expose itself to the Muggle World.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THW make income tax for all women directly proportional to the national wage gap (e.g. if women earn on average 70% of what men earn, they would pay 70% of the income tax men pay for the same salary).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THO the rise of entrepreneurs selling off their businesses to large corporations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THS the rise of disaster capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THBT Michael should not be convicted for his crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "Assuming there exists technology that can access and project memories, THW allow using it for evidence in court.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THW allow the use of evidence obtained illegally in court.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THO the portrayal of female retributive violence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THO the depiction of women in mythology as feminists (eg: Athena, Draupadi).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "TH, as the LGBTQ+ community, supports Queer baiting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THBT the working class should reject Bernie Sanders as the face of the working class movement for being a part of the 1%.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THW require all research institutions to use at least 50% of their resources (time, staff, money, etc.) to do replication studies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THS two party political systems over multiparty political systems.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THW allow doctors to disclose incurable and terminal hereditary conditions to their patient's life partner against the patient's wishes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THP a world in which the dominant societal world-view is a realistic one rather than an optimistic one.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THP a world in which people don't engage in virtue signalling.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THR the US pursuit of global energy dominance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "With the benefit of hindsight, TH, as the USA would not order the killing of the Iranian major general Qasem Soleimani at the beginning of this year.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "TH, as Wakanda, would reveal itself to the world and adopt globalism, rather than remain in isolation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "Assuming the technology to alter one's memories irreversibly exists, THW ban the use of the technology.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THW use Soul 100.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "India Debate Open AP", + "year": "2020", + "format": "", + "content": "THW allow convicted criminals whose crimes caused their victims suffering to choose to undergo the exact same experience as their victims did, by using the technology, as a substitute for a prison sentence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cyberpunk IV", + "year": "2020", + "format": "", + "content": "This house, without knowledge of who they will be, would prefer to be born into the 2nd Moon.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cyberpunk IV", + "year": "2020", + "format": "", + "content": "THS the existence of teleportation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cyberpunk IV", + "year": "2020", + "format": "", + "content": "THP a world where, starting tomorrow, women can shoot lightning from their fingertips.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cyberpunk IV", + "year": "2020", + "format": "", + "content": "THW ban privately contracting the services of superheroes by individuals or companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cyberpunk IV", + "year": "2020", + "format": "", + "content": "Assuming the technology exists, this house would allow people to buy and sell years of their life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Gold_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cyberpunk IV", + "year": "2020", + "format": "", + "content": "Assuming the technology exists, this house would allow people to buy and sell years of their life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cyberpunk IV", + "year": "2020", + "format": "", + "content": "TH, as someone with hyperempathy, would not take the pill.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Silver_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gwalia Open", + "year": "2020", + "format": "", + "content": "THBT parents should have the right to withdraw their children from all teaching about sex and relationships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gwalia Open", + "year": "2020", + "format": "", + "content": "THBT twitter should require individuals to use accounts uner their own name.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gwalia Open", + "year": "2020", + "format": "", + "content": "TH regrets the narrative that hard work will lead to financial success.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gwalia Open", + "year": "2020", + "format": "", + "content": "THW never hold referenda on measures of social lpolicy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "THO the use of deferred prosecution agreements for large companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "This house supports, where possible, the loved ones (eg family, close friends) of victims of serious criminal offences being involved in the sentencing of the perpetrator (eg in consultation with the judge).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "THW abolish all legislatively set sentencing guidelines.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "This house, as the progressive movement, supports progressive candidates running on centrist platforms solely in order to get elected.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "TH, as the Biden campaign, would pick Elizabeth Warren as our Vice President.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "his house, as the progressive movement, supports progressive candidates running on centrist platforms solely in order to get elected.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "This house regrets the rise of low-fee, easy-to-access financial market trading services (e.g. Robinhood).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "his house would impose an exit tax on citizens who choose to take up long term employment outside their country of origin.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "THS closed shop arrangements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "This house would implement a strict deadline for the length of time that children can be in foster care before being placed in a permanent home (eg returned to birth parents, in guardianship or adopted).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "This house would prefer their child, in preschool and early primary school, to have one close friend rather than being 'popular' with several less-close 'friends'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "This house believes that the feminist movement should aggressively praise mothers and motherhood.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "THR the commercialisation of spirituality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "THP a world in which individuals did not feel strong emotions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "This house believes that it is immoral to consume the art of creators who have been proven to be guilty of heinous offences.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "THBT the United States should leave Iraq.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "This house, as the EU, impose sanctions on countries with active prisoners of conscience.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "This house, as a SEA nation involved in the South China Sea conflict, would opt to actively seek closer ties with China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "This house would require test-status cricketing nations to play each other at equivalent rates (e.g. South Africa would be required to play Afghanistan and Ireland approximately as often as they play India).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "THS efforts to colonize Mars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "This house regrets the narrative that one should respect authority figures even if you disagree with them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "This house prefers process-based to outcomes-based environmental regulation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "THBT humans owe a debt to Future Generations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macquarie Open", + "year": "2020", + "format": "", + "content": "THBT the environmentalist movement should prioritise the anthropocentrist value of nature in its rhetoric.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NTU Debate Online Open", + "year": "2020", + "format": "", + "content": "TH, as the CCP, would publicly acknowledge their errors in their managing of COVID-19 & the creation of a pandemic, and agree to reasonable measures of assistance & compensation to the global community.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NTU Debate Online Open", + "year": "2020", + "format": "", + "content": "TH, in times of economic crisis, would ease bank capital adequacy requirements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NTU Debate Online Open", + "year": "2020", + "format": "", + "content": "THBT Indian feminist movement movements should adopt Lakshmi as a symbol of the movement rather than Kali.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NTU Debate Online Open", + "year": "2020", + "format": "", + "content": "THW allow \"religious duty\" as a mitigating defense for crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NTU Debate Online Open", + "year": "2020", + "format": "", + "content": "THR the rise of ideological purity policing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NTU Debate Online Open", + "year": "2020", + "format": "", + "content": "THBT it is in the interest of the Aam Aadmi Party to join in a coalition with the Indian National Congress before contesting in the next general election.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NTU Debate Online Open", + "year": "2020", + "format": "", + "content": "THBT ASEAN should abandon the China-ASEAN South China Sea Code of Conduct negotiations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BRAC Genders Online", + "year": "2020", + "format": "", + "content": "THW prohibit the dismissal of employees for their use of free speech or expression.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BRAC Genders Online", + "year": "2020", + "format": "", + "content": "TH, as a POC witnessing a non-violent crime (theft, trespassing, drug possession) by another POC, would choose to not call the cops.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BRAC Genders Online", + "year": "2020", + "format": "", + "content": "THBT gender and sexual minority groups (feminist and LGBTQIA+) should ensure that decision making and representation for their cause is done by members of the minority group and limit the advocacy of allies to support and mass action (such as protests and petitions).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BRAC Genders Online", + "year": "2020", + "format": "", + "content": "THW facilitate religious proselytization in areas of high socio-economic deprivation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BRAC Genders Online", + "year": "2020", + "format": "", + "content": "TH, as Bangladesh, would recognize Israel.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BRAC Genders Online", + "year": "2020", + "format": "", + "content": "THBT Lebanon should abolish the system of Confessionalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BRAC Genders Online", + "year": "2020", + "format": "", + "content": "TH supports the creation of feminist political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sumatra Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT GOVERNMENTS SHOULD HAVE AUTONOMY TO DIVERT A PORTION OF CHARITY DONATIONS TO CHARITIES THEY DEEM TO BE MORE USEFUL/RELEVANT.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sumatra Online Debate Open", + "year": "2020", + "format": "", + "content": "As Black Lives Matter Movement, THW reject any form of participation from the police force within their protest activities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sumatra Online Debate Open", + "year": "2020", + "format": "", + "content": "As Annisa, THW take the job.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sumatra Online Debate Open", + "year": "2020", + "format": "", + "content": "In asymmetric warfare, THBT it is a legitimate tactic for the significantly weaker side to target enemy civilian.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sumatra Online Debate Open", + "year": "2020", + "format": "", + "content": "THP a world where there is no belief in the afterlife.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sumatra Online Debate Open", + "year": "2020", + "format": "", + "content": "THW implement TCDS on all criminals convicted of violent crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sumatra Online Debate Open", + "year": "2020", + "format": "", + "content": "THW legalize \"hacking back\" in the private sector.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sumatra Online Debate Open", + "year": "2020", + "format": "", + "content": "THP a wolrd in which every aspect of one's physical experience is indistinguishable from that of other people.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Online Open", + "year": "2020", + "format": "", + "content": "This House Would allow the use of performance enhancing drugs in professional sport.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Online Open", + "year": "2020", + "format": "", + "content": "This House Believes That minorities should not attempt to reclaim slurs that have been directed against them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Online Open", + "year": "2020", + "format": "", + "content": "This House Believes That Ireland should significantly raise its corporate tax.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Online Open", + "year": "2020", + "format": "", + "content": "This House Opposes the Rise of Non-Career Politicians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Online Open", + "year": "2020", + "format": "", + "content": "This House Believes That universities should continue with primarily online education post COVID-19.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Online Open", + "year": "2020", + "format": "", + "content": "This House Believes That Joe Biden should pick Elizabeth Warren as his Vice President running mate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Online Open", + "year": "2020", + "format": "", + "content": "This House Opposes Twitch's decision to ban sexually suggestive content on their platform.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Online Open", + "year": "2020", + "format": "", + "content": "This House Supports rioting as a means of fighting for social justice in the U.S.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Online Open", + "year": "2020", + "format": "", + "content": "This House Would violate the ceasefire and kill the leaders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "THR World Athletics' decision to put an indefinite moratorium on future advances in shoe technology.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "THS granting IP protection for sports moves.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "Post the Covid-19 outbreak is contained, TH(the Bundesliga)W scrap the 50+1 rule.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "THBT major polluter nations should open their borders to climate refugees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "THR the characterization of large scale policy reforms against social vices as wars For example --‘combating’.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "THBT regulation of overconsumption of common shared resources is justified.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "TH (the journalist) will reveal this information to the public.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "TH, as climate activists, would use interpretation of religious texts as a tool for climate action ( Eg invoking stories from the Ramayana’s Aranya Kaand to create narratives around forests, etc.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "THR the vilification of \"money mindedness\" in individuals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "THBT women in politics actively moving away from \"the pantsuit\" does more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "THR the rise of rainbow capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "TH, as a feminist, R the narrative that God is a Woman.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "THS privatisation of prisons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "THP the Collegium System for the appointment of Federal Judges and Justices instead of Executive Nomination System in USA.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "THBT criminal law should not distinguish an attempt to commit a crime from successfully committing a crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "In times of economic crisis, THW abolish the minimum wage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "(Assuming equal cost feasibility) THP UBI instead of traditional Welfare Programs(Medicare, Food stamps, PMJDY, etc) to tackle poverty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cross Deb Soc Practice Tournament Ed. 1", + "year": "2020", + "format": "", + "content": "THS the use of Negative Interest Rate Policies to tackle the economic downturn due to the Covid 19.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar June", + "year": "2020", + "format": "", + "content": "THR violent protests.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar June", + "year": "2020", + "format": "", + "content": "In a world where realistic android relationships are possible, THS the rise of relationships with realistic androids.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar June", + "year": "2020", + "format": "", + "content": "THR cancel culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar June", + "year": "2020", + "format": "", + "content": "THW remove veto powers from permanent security council members and redistribute it to historically neutral countries (e.g. Ireland, Switzerland, Panama, etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar June", + "year": "2020", + "format": "", + "content": "This house believes that progressive social movements in developing countries should prioritise campaigning for changes to official laws and governmental policies over changes in mass attitudes and beliefs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Circuit Breaker Debate Open", + "year": "2020", + "format": "", + "content": "As an 18 year old female from a lower income family receiving a scholarship to attend a highly prestigious yet highly competitive university, THW invest all their time and resources in the most lucrative field to work in, as opposed to seeking knowledge and experiences from multiple fields.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Circuit Breaker Debate Open", + "year": "2020", + "format": "", + "content": "THS the rise of escapist media and art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Circuit Breaker Debate Open", + "year": "2020", + "format": "", + "content": "THW focus economic stimulus packages on businesses instead of individuals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Circuit Breaker Debate Open", + "year": "2020", + "format": "", + "content": "THR the rise of celebrity preachers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Circuit Breaker Debate Open", + "year": "2020", + "format": "", + "content": "As environmental movements, THW focus on campaigning against having children as opposed to campaigning to reduce all forms of consumption.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Circuit Breaker Debate Open", + "year": "2020", + "format": "", + "content": "THBT militaries should prioritize spending on cyber security over physical security.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Circuit Breaker Debate Open", + "year": "2020", + "format": "", + "content": "TH prefers a world where humans are assumed to be inherently good as opposed to a world where humans are assumed to be inherently evil.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Circuit Breaker Debate Open", + "year": "2020", + "format": "", + "content": "THP a world where competitive debating tournaments are always and exclusively hosted online as opposed to always and exclusively in person.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Open", + "year": "2020", + "format": "", + "content": "THW break up large pharmaceutical firms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Open", + "year": "2020", + "format": "", + "content": "THBT feminists should not use rhetoric about women being more empathetic or more caring than men as part of their advocacy (e.g. “Women are good leaders because they are more gentle and nurturing.”).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Open", + "year": "2020", + "format": "", + "content": "THBT attacks on non-combatants involved in war activities are a legitimate strategy in war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Open", + "year": "2020", + "format": "", + "content": "TH regrets the rise of philanthrocapitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Open", + "year": "2020", + "format": "", + "content": "THR the societal belief that one should strongly identify with the culture of one's ancestry (e.g. if you are ethnically Chinese, identifying strongly with Chinese culture).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Open", + "year": "2020", + "format": "", + "content": "THR the US-Taliban peace deal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Open", + "year": "2020", + "format": "", + "content": "THP a world without a belief in free will.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Online Open", + "year": "2020", + "format": "", + "content": "THBT teachers and parents belonging to oppressed minority groups should teach children within their group to contribute to the welfare of the group even at personal cost.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That we prefer the establishment of truth and reconciliation commissions to attempts at pursuing retributive justice (e.g. prosecuting perpetrators) in post-conflict states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That we should make it an offense to witness a crime and not report it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That we should make search engines liable for defamation when their algorithms promote defamatory content.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That we should ban derivative markets.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That we should ban hedge funds.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That we regret central bank independence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That the US should escalate its ‘maximum pressure’ campaign against Iran.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That we, as India, would rejoin the RCEP.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That the UK should offer citizenship to all residents of Hong Kong.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That developing countries should ban the sale of GMO products.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That we shuold genetically design \"Philosopher Kings\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "Assuming that the technology existed, that we would allow individuals to sell their Intelligence Quotient (IQ) as a commodity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "You are a publicly successful chef, whose real cooking skill is secretly attributable to a rat which directs your movements underneath your chef's hat. That we should reveal the existence of the rat.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That we should ban the consumption of animals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That we should ban religious practices that cause cruelty to animals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That we regret cancel culture within progressive movements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That, as Joe Biden, we would prioritize solving economic inequality over racial issues in the campaign.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That, as the minority resistance group, we would submit to the state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That no media platform should receive public funding.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That we would abolish the Goldwater Rule.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That we should regulate social media entities as publishers/news organisations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That, as Bibi Netanyahu, we should abandon efforts to annex Jewish settlements in the West Bank.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That we regret the rise of decentralisation agendas in developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Whippersnappa Pre-Australs", + "year": "2020", + "format": "", + "content": "That, as a liberal democracy, we should heavily restrict our Multinational Corporations from investing in/expanding into illiberal states (e.g. Russia, Turkey, China, Poland).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eastern Online IV", + "year": "2020", + "format": "", + "content": "THW mandate that in any legal case both sides must have access to an equally priced counsel (for example a rich person can hire as expensive a defense attorney as they would like, but money must be provided to the plaintiff if they cannot afford a lawyer of a similar caliber).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eastern Online IV", + "year": "2020", + "format": "", + "content": "THR tv shows and movies that humanize violent, antisocial protagonists (ex: Barry, You, Killing Eve, The Assassination of Gianni Versace, My Friend Dahmer).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eastern Online IV", + "year": "2020", + "format": "", + "content": "THBT Muslim states should sever political and economic ties with India until the repeal of the Citizenship Amendment Act.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eastern Online IV", + "year": "2020", + "format": "", + "content": "Assuming you lived a middle class life, THW choose to upload their consciousness to this technology.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eastern Online IV", + "year": "2020", + "format": "", + "content": "THR the existence of high fashion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eastern Online IV", + "year": "2020", + "format": "", + "content": "THBT governments should not condition COVID-related bailouts of the private sector on major corporate reforms (e.g., limiting executive compensation, banning corporate stock buybacks, restrictions on lobbying, increased environmental regulation, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eastern Online IV", + "year": "2020", + "format": "", + "content": "THBT western liberal democracies should criminalize and permanently disavow private military contractors.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eastern Online IV", + "year": "2020", + "format": "", + "content": "THW spend all of Jeff Bezos's money.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THR the increasing trend of producing reboots within franchises (e.g. Marvel Cinematic Universe, Star Wars, Harry Potter, X-men).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT artists should refrain from actively and openly interpreting their own art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT Asian immigrants to Western countries should assimilate in the culture of their host country even at the expense of losing their original culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THS excess profit taxes on corporations that derive a significant profit from a pandemic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT philanthropic figures focussed on COVID-19 should focus on prevention (eg distributing PPE) to possible cures/vaccines.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "In the aftermath of the COVID-19 Outbreak, THBT Western liberal democracies/governments should actively promote the narrative that individuals ought to sacrifice/make sacrifices for the collective community.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THP a world where the legacies of radical revolutionaries are glorified over the legacies of peaceful revolutionaries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THR the use of nostalgia (e.g. reminiscing over past/historical leaders, periods, or events) in politics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT technocrats (highly educated and skilled experts) within authoritarian states should collectively refuse to work with/for the government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THP a world where sexual compatibility is prioritized over emotional compatibility in relationships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT parents have a duty to push their children to succeed even if it comes at the expense of their happiness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THS parents actively confiding in their children about financial problems and personal insecurities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THW require both parties to use state lawyers, instead of private lawyers, in defamation trials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THW not give employers access to criminal records of potential employees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT all sentencing should be decided according to an algorithm that considers purely the probability of recidivism of the convict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THR the usage of religious appeals as a rallying call for humanitarian causes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "HS_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT movements should not use civil disobedience as a strategy to achieve their goals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "HS_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "This house regrets the dominant narrative that mainstream social movements should refrain from being antagonistic and aggressive, in pushing for changes/fighting against injustice.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "HS_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT post-conflict societies should construct a national identity around a shared ethnicity, as opposed to a common culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "HS_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "TH opposes the narrative that refugees' entitlement to help should be conditional upon their potential utility to the economy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "HS_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "In post-conflict societies, THW actively suppress information and interpretation, that paints any past dictator in a sympathetic light.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "HS_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT US Senators who approved (in confidential briefings) the CIA's use of enhanced interrogation (waterboarding, sleep deprivation, exposure to low temperatures for extended periods etc.) should be tried for war crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT Iran should end its nuclear weapons program.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "TH, as Bernie Sanders, Would have stayed in the race as opposed to dropping out.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octa", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "TH, as a prominent religious leader of a major organised religion, would promote any scripture/interpretation/doctrine that says that the determinant factor of entering heaven is good deeds and not the level of faith/piety.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THP a world where the belief or disbelief in God or Gods is seen as an involuntary decision.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT LGBTQIA+ activists in religiously conservative countries should seek to actively solicit support, funding, and endorsement from religious entities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT developing nations should distribute, as a dividend to citizens, income derived from nature resource extraction.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT the World Bank should have the full responsibility for the share of loss due to corruption.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THBT the \"Tax Mix\" should be set by reserve banks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THR \"self-crit\" culture.* * ”Self-crit culture” refers to a culture where individuals are encouraged to publicly and openly criticise themselves for their shortcomings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THO the use of scientific discoveries obtained through unethical means.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Taiwan Online Debate Open", + "year": "2020", + "format": "", + "content": "THR the narrative that ideal deliberation should exclude display or involvement of emotions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Open", + "year": "2020", + "format": "", + "content": "In liberal democracies, THW ban the media from reporting on ongoing sex offence trials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Open", + "year": "2020", + "format": "", + "content": "THBT western museums should return historical artifacts to the nations where they originated.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Open", + "year": "2020", + "format": "", + "content": "THBT governments should financially incentivize people to move away from areas with few viable economic activities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Open", + "year": "2020", + "format": "", + "content": "THBT the attacks by Palestinians on civilians actively supporting the Israeli government (politicians, businessmen, etc.) are justified ways of fighting for independence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Open", + "year": "2020", + "format": "", + "content": "THR the narrative that 'women can have it all' (career, family, children, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Open", + "year": "2020", + "format": "", + "content": "THBT it is in the interest of Russia to have Putin continue in power after 2024 elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Open", + "year": "2020", + "format": "", + "content": "Regardless of whether or not sexual identity is a choice, TH regrets the born this way narrative.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Open", + "year": "2020", + "format": "", + "content": "TH would nationalize all nationally systemically important financial institutions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Astana Debate Union Open", + "year": "2020", + "format": "", + "content": "THW not allow revolutionary leaders and their families in post-conflict societies to run for political office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VITDT Round Robin", + "year": "2020", + "format": "", + "content": "This House Would ban the breeding of wild animals for petting programs at zoos.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VITDT Round Robin", + "year": "2020", + "format": "", + "content": "This House, as the WWE, would recognize Chris Benoit's achievements and induct him into the Hall of Fame.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VITDT Round Robin", + "year": "2020", + "format": "", + "content": "This House Supports the US Federal/State governments' re-opening of their economies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VITDT Round Robin", + "year": "2020", + "format": "", + "content": "In countries with conscription, This House Believes That it is morally legitimate to evade draft.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VITDT Round Robin", + "year": "2020", + "format": "", + "content": "This House Believes That the IMF should significantly relax conditions on loans to African countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VITDT Round Robin", + "year": "2020", + "format": "", + "content": "This House Believes That Imran Khan should pivot away from China and towards India.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deree Invitational LIX", + "year": "2020", + "format": "", + "content": "THW ban 24 Hour News Media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deree Invitational LIX", + "year": "2020", + "format": "", + "content": "THR the narrative that being a nurse is a calling rather than a job.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deree Invitational LIX", + "year": "2020", + "format": "", + "content": "THW ban Zero Hour Contracts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deree Invitational LIX", + "year": "2020", + "format": "", + "content": "THW ban religious institutions from opening addiction rehab centers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deree Invitational LIX", + "year": "2020", + "format": "", + "content": "THW implement a weighted voting system, where your vote counts less and less the older you get.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deree Invitational LIX", + "year": "2020", + "format": "", + "content": "THS first-generation immigrants to Western Europe encouraging their children to fully assimilate and identify with the local culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deree Invitational LIX", + "year": "2020", + "format": "", + "content": "THBT Putin has been good for Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Parassat Open", + "year": "2020", + "format": "", + "content": "THW not subsidize national flag carrier airlines.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Parassat Open", + "year": "2020", + "format": "", + "content": "THW stop writing the novel.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Parassat Open", + "year": "2020", + "format": "", + "content": "THBT the feminist movements in Central Asian states should also focus on gender issues that affect men (toxic masculinity etc.) rather than exclusively focus on the issues that affect only women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Parassat Open", + "year": "2020", + "format": "", + "content": "TH as Nicolas Maduro would seek to voluntarily step down from power.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Parassat Open", + "year": "2020", + "format": "", + "content": "THBT it is in the interests of organized religions to adopt the \"rigorous mission scheme\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Parassat Open", + "year": "2020", + "format": "", + "content": "TH as a young individual in an authoritarian country who wants to improve their society would seek to do so by joining the ruling party as opposed to operating outside the establishment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Parassat Open", + "year": "2020", + "format": "", + "content": "THBT it is in the interests of organized religions to adopt the \"rigorous mission scheme\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Parassat Open", + "year": "2020", + "format": "", + "content": "THBT members of the Eurasian Economic Union should introduce a new common currency.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Parassat Open", + "year": "2020", + "format": "", + "content": "THO the commercialization of competitive debating (such as for profit debate training, paid workshops, paying IAs a salary, paying pros to speak with wealthy beginners, etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ullens Online", + "year": "2020", + "format": "", + "content": "Assuming adequate child support services exist, This house would allow opponents of abortion to sign legally-binding contracts with pregnant women, in which they pay the pregnant women not to have an abortion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ullens Online", + "year": "2020", + "format": "", + "content": "THW nationalise the Space industry.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ullens Online", + "year": "2020", + "format": "", + "content": "THS the rise of disclosure culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ullens Online", + "year": "2020", + "format": "", + "content": "THS authoritarian reformers in newly formed states. (Eg: Lee Kuan Yew, Castro, etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ullens Online", + "year": "2020", + "format": "", + "content": "In a post COVID-19 world, THBT developing countries should prioritize the growth of their domestic markets/industries over foreign trade.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ullens Online", + "year": "2020", + "format": "", + "content": "Assuming it was possible, THW allow individuals to permanently alter their memories to forget the dead.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia Queer Open", + "year": "2020", + "format": "", + "content": "This House supports the outing of anti-LGBT+ conservative public figures (e.g.: politicians, celebrities).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia Queer Open", + "year": "2020", + "format": "", + "content": "Assuming Personal Protective Equipment is sufficiently available, THBT medical workers during a pandemic should have the right to opt out of service.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia Queer Open", + "year": "2020", + "format": "", + "content": "THBT local queer activist groups should aggressively push for the redefinition of Hijras as ordinary individuals with no unique supernatural powers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia Queer Open", + "year": "2020", + "format": "", + "content": "This House Believes That Bernie Sanders would have been better than Joe Biden as the Democratic Presidential nominee.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia Queer Open", + "year": "2020", + "format": "", + "content": "This House Rejects the desexualisation of queer activism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia Queer Open", + "year": "2020", + "format": "", + "content": "This House Regrets cancel culture within progressive movements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia Queer Open", + "year": "2020", + "format": "", + "content": "This House Supports the rise of atheist movements in Southeast Asia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia Queer Open", + "year": "2020", + "format": "", + "content": "TH prefers representation of queer characters in media whose stories do not centre around their queerness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia Queer Open", + "year": "2020", + "format": "", + "content": "This House Supports the rise of atheist movements in Southeast Asia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge Online Open", + "year": "2020", + "format": "", + "content": "THS online piracy in developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge Online Open", + "year": "2020", + "format": "", + "content": "THBT environmental movements should be pro-capitalism in their policies and advocacy (e.g., appealing to corporations for green policies, advocating for individual responsibility and sustainable consumption; rather than lobbying governments for extreme regulation, protesting for divestment).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge Online Open", + "year": "2020", + "format": "", + "content": "THBT it is in the interest of Germany to support EU bonds.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge Online Open", + "year": "2020", + "format": "", + "content": "THP a world with radical honesty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge Online Open", + "year": "2020", + "format": "", + "content": "THBT it is preferable to be single, than pursuing a successful long-term monogamous relationship.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge Online Open", + "year": "2020", + "format": "", + "content": "THW allow companies to buy the rights to govern economically failing cities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge Online Open", + "year": "2020", + "format": "", + "content": "THBT parents should teach morality to their children through religious context (e.g. “it is a sin to lie”; \"help thy neighbour\" etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Doxbridge Online Open", + "year": "2020", + "format": "", + "content": "THBT, when allocating resources to their children, working class families should allocate most of their resources to support the most talented child in the family.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Schools_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "Assuming the technology were available, and you were the only one who could use it, that you should choose to become immortal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "You have suffered from severe amnesia and cannot remember any of your past. You suspect that it may be \"dark\". That you should not go searching for answers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "That we should prohibit research into the de-extinction of human-like species such as the Neanderthal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "That the state should more harshly punish people who commit crimes against members of social groups who experience disproportionately high rates of violence regardless of that offender’s motivation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "That the victim of crimes should be able to choose whether the offender is dealt with under civil law or criminal law.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "That individuals who breach COVID-19 lockdown requirements while unknowingly infectious should be liable for manslaughter for any resulting deaths.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "You are a state whose diplomatic and economic power is increasing rapidly. There are maintained attempts to curb the rise of your economic and diplomatic influence by the established regional power. That you should seek active confrontation with the established power.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "You are the ruler of a militaristic Greek city state. The Archameid empire has invaded mainland Hellas, if they are successful, your state will be subjugated. The other city states are in disarray and cannot decide on how to respond. You know that there is no chance of victory alone. That you should march against the Persian threat.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "Congratulations, you command the armies of Greece and now have the means to embark on your life goal to sail to and conquer Troy. Alas, you have offended the goddess Artemis who has stymied your plans by sending unfavourable winds. The only way to achieve your goal is to sacrifice your only child and you will win the war. That you should sacrifice your child.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "That the United States should immediately abolish private health insurance and establish Medicare for all.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "That the European Union should abandon the Euro.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "That in times of extraordinary economic or social crisis, we should temporarily close financial markets.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "As a curator of a prominent museum or gallery, you should only display works created by women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "A ‘sham marriage’ (also known as xinghun or co-operative marriage) is a marriage between a gay man and a lesbian woman for the purposes of creating the appearance of being straight and evading the social stigmas of being gay or being ‘left on the shelf’. They are particularly common in China. That, as a homosexual person in China, would enter into a sham marriage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "That feminists should celebrate domestic activities which are traditionally carried out by women (e.g. baking, gardening and knitting) as empowering and feminist activities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "That the Ukraine should seek an internationally brokered agreement to formally acknowledge the cession of Crimea to Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "In a world in which humans have obtained the ability of interstellar travel, humans should never make contact with, or interfere with, the development of alien civilisations that are not also capable of interstellar travel.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "That we should abolish the International Criminal Court.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "That the Catholic Church should de-emphasise the concepts of Satan and Hell.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "You are a cardinal with evidence of corruption in the Vatican. That you should destroy the evidence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jurassic IV", + "year": "2020", + "format": "", + "content": "You are a 16th century english Catholic bishop. Henry VIII has established the Anglican Church in opposition to the Catholic Church. You have been invited by the King to join his church as Bishop. That you should join the Anglican Church.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar May", + "year": "2020", + "format": "", + "content": "This house prefers a world in which people predominantly believe that all decisions, thoughts, and actions of all in the universe are pre-determined.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar May", + "year": "2020", + "format": "", + "content": "THW institute a health credit system (inexact wording).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar May", + "year": "2020", + "format": "", + "content": "THBT states should be legally liable for recidivist crimes (inexact wording).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Grand Spar May", + "year": "2020", + "format": "", + "content": "This house, as person X, would choose to upload yourself onto the digital afterlife instead of going through with the surgery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Axiom Debate Open", + "year": "2020", + "format": "", + "content": "THP a world in which social media platforms use paid subscriptions rather than collect and monetize users' data.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Axiom Debate Open", + "year": "2020", + "format": "", + "content": "THBT progressives are justified in refusing to endorse Joe Biden until he adopts significantly more progressive policies in his campaign platform.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Axiom Debate Open", + "year": "2020", + "format": "", + "content": "THBT states should not bail out large corporations with high rates of unemployment caused by the COVID-19 pandemic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Axiom Debate Open", + "year": "2020", + "format": "", + "content": "THBT China should pay reparations to developing nations severely affected by COVID-19.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Axiom Debate Open", + "year": "2020", + "format": "", + "content": "TH, as Dr. Anthony Fauci, would publicly and actively call out Trump whenever he gives false medical advice to the general public.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Axiom Debate Open", + "year": "2020", + "format": "", + "content": "Assuming feasibility, THW have all states temporarily cede their sovereignty to international organizations in times of protracted global crisis (e.g. global recessions, pandemics).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Axiom Debate Open", + "year": "2020", + "format": "", + "content": "TH, as Dr. Anthony Fauci, would publicly and actively call out Trump whenever he gives false medical advice to the general public.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Axiom Debate Open", + "year": "2020", + "format": "", + "content": "THR the widespread use of war-like terminology by world leaders in combating the COVID-19 pandemic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Central European Cyberspace Open", + "year": "2020", + "format": "", + "content": "This House Opposes educational approaches centered on making children believe they are special.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Central European Cyberspace Open", + "year": "2020", + "format": "", + "content": "This House Believes That the West should discourage and disincentivize economic collaboration and exchange with China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Central European Cyberspace Open", + "year": "2020", + "format": "", + "content": "This House Would break up Amazon.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Central European Cyberspace Open", + "year": "2020", + "format": "", + "content": "This House Believes That feminists should advocate for the destruction of the traditional family unit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Central European Cyberspace Open", + "year": "2020", + "format": "", + "content": "This House Believes That scientific literature should be free.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Central European Cyberspace Open", + "year": "2020", + "format": "", + "content": "This House Believes That leaders of police forces should be elected by thelocal communities they serve.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL F", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Central European Cyberspace Open", + "year": "2020", + "format": "", + "content": "This House Opposes cancel culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Central European Cyberspace Open", + "year": "2020", + "format": "", + "content": "This House Believes That states formerly under the rule of the Soviet Union should NOT emphasize their history of struggle against Russian imperialism in constructing their national identity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Central European Cyberspace Open", + "year": "2020", + "format": "", + "content": "This House Believes That all countries should implement legislation similar to the US Defense Production Act to combat the Covid-19 pandemic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia E-Debate Challenge", + "year": "2020", + "format": "", + "content": "THBT parents of children from lower socio economic backgrounds should discourage their children from pursuing majors with low employability (sociology, history, fine arts, etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia E-Debate Challenge", + "year": "2020", + "format": "", + "content": "THW make the State liable for recidivist crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia E-Debate Challenge", + "year": "2020", + "format": "", + "content": "TH prefers the US modernizing its military at the cost of reducing its military size.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia E-Debate Challenge", + "year": "2020", + "format": "", + "content": "THBT feminist organizations should prioritize progressive, well off communities as opposed to communities that are more financially needy, but choose to adhere to strong traditional gender roles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia E-Debate Challenge", + "year": "2020", + "format": "", + "content": "Assuming feasibility, THW create sovereign states for each major religion, and offer citizenship to anyone who professes to be a part of that religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia E-Debate Challenge", + "year": "2020", + "format": "", + "content": "TH Opposes the Informal Economy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia E-Debate Challenge", + "year": "2020", + "format": "", + "content": "Assuming feasibility, THW create sovereign states for each major religion, and offer citizenship to anyone who professes to be a part of that religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Asia E-Debate Challenge", + "year": "2020", + "format": "", + "content": "TH, as the Putin administration, would choose to artificially decrease Russia's oil price.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cinnamon Scroll", + "year": "2020", + "format": "", + "content": "That, assuming it were practicable, sports teams or people that develop novel strategies or techniques should be able to “copyright” them for two seasons after they are first used successfully.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cinnamon Scroll", + "year": "2020", + "format": "", + "content": "That we regret Drag Culture going mainstream.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cinnamon Scroll", + "year": "2020", + "format": "", + "content": "That one should not offer to ‘give exposure’ to gain discounted goods or services from creatives.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cinnamon Scroll", + "year": "2020", + "format": "", + "content": "That we would abolish corporate tax.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cinnamon Scroll", + "year": "2020", + "format": "", + "content": "That we would create financial incentives for companies to expose the law breaking of their competitors.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cinnamon Scroll", + "year": "2020", + "format": "", + "content": "That we prefer broad tax cuts in financial stimulus packages to targeted government spending.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cinnamon Scroll", + "year": "2020", + "format": "", + "content": "That evidence that is reliable but illegally obtained by the police should be excluded as evidence in all criminal trials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cinnamon Scroll", + "year": "2020", + "format": "", + "content": "That we should abolish all statutes of limitations in criminal cases.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cinnamon Scroll", + "year": "2020", + "format": "", + "content": "That we should abolish the \"right to silence\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cinnamon Scroll", + "year": "2020", + "format": "", + "content": "That, as the West, we would lift economic sanctions on Iran during its COVID-19 crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cinnamon Scroll", + "year": "2020", + "format": "", + "content": "That we would bail out airlines failing due to COVID-19.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cinnamon Scroll", + "year": "2020", + "format": "", + "content": "That we would disestablish the World Health Organisation (WHO).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cinnamon Scroll", + "year": "2020", + "format": "", + "content": "That sanctions should be placed on countries that provide tax-havens to multinational companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cinnamon Scroll", + "year": "2020", + "format": "", + "content": "That war criminals should be tried in their home country instead of the International Criminal Court (ICC).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cinnamon Scroll", + "year": "2020", + "format": "", + "content": "That states should be allowed to buy and sell votes in international organizations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EUDC Challenge IV", + "year": "2020", + "format": "", + "content": "THBT social media platforms should aggressively remove unverified information.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EUDC Challenge IV", + "year": "2020", + "format": "", + "content": "THW require companies valued at $1B or above to trade publicly*.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EUDC Challenge IV", + "year": "2020", + "format": "", + "content": "THW NOT publish this information.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EUDC Challenge IV", + "year": "2020", + "format": "", + "content": "TH, as the EU, would pass a binding resolution to impose significant economic sanctions on Israel in the event that Israel unilaterally annexes any part of the West Bank.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EUDC Challenge IV", + "year": "2020", + "format": "", + "content": "TH prefers to live in a world where personal success and failure are predominantly seen as a consequence of random factors rather than personal choices.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin Online IV", + "year": "2020", + "format": "", + "content": "This House would give financial incentives to people who live a healthy lifestyle (eg. no smoking, exercising regularly, healthy diet).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin Online IV", + "year": "2020", + "format": "", + "content": "THP a world where the pill exists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin Online IV", + "year": "2020", + "format": "", + "content": "This House would implement UBI in times of crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin Online IV", + "year": "2020", + "format": "", + "content": "This House prefers a world where the Assassins Brotherhood exists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin Online IV", + "year": "2020", + "format": "", + "content": "THBT Supreme Court justices should adopt Originalist stances in applying constitutional law.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin Online IV", + "year": "2020", + "format": "", + "content": "This House prefers to follow a religion where one's fate in the material world is predetermined, rather than one where one's choices and actions influence their fate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin Online IV", + "year": "2020", + "format": "", + "content": "This House supports the decline of oil prices.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin Online IV", + "year": "2020", + "format": "", + "content": "This House believes that in times of severe crisis, individuals have a moral obligation to dedicate themselves towards combating the crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lord Discup's Cup", + "year": "2020", + "format": "", + "content": "TH, as a star Latin American soccer/football player, would stay in their national league over playing in Europe.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lord Discup's Cup", + "year": "2020", + "format": "", + "content": "THBT stock markets should freeze the sale of publicly-exchanged stocks on the secondary market during pandemics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lord Discup's Cup", + "year": "2020", + "format": "", + "content": "THBT trans legal advocates should seek to establish precedent that protects trans people under existing sex discrimination law, rather than pursuing anti-discrimination laws for trans communities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lord Discup's Cup", + "year": "2020", + "format": "", + "content": "TH, as the EU, would replace the independent national healthcare systems with a collectively funded regional system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lord Discup's Cup", + "year": "2020", + "format": "", + "content": "THR the concept of \"The one that got away\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lord Discup's Cup", + "year": "2020", + "format": "", + "content": "THBT Facebook has done more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lord Discup's Cup", + "year": "2020", + "format": "", + "content": "THS the \"Kingpin\" strategy in combatting drug cartels.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lord Discup's Cup", + "year": "2020", + "format": "", + "content": "THA the Vatican regrets the China-Vatican deal on the appointment of Chinese Bishops.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lord Discup's Cup", + "year": "2020", + "format": "", + "content": "THW allow victims of miscarriages of justice to sue expert witnesses for incompetence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2020", + "format": "", + "content": "THW forcibly take owernership of privately-owned homes which are not lived in by their owners during periods of national housing shortages.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2020", + "format": "", + "content": "THBT, instead of attempting to mitigate the effect of climate change, states should re-divert all existing environmental funding to geoengineering projects.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2020", + "format": "", + "content": "THR the decision to let the FARC run as a political party.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2020", + "format": "", + "content": "When tech companies own platform utilities and platform products, THW break them up.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2020", + "format": "", + "content": "THS protectionism in developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2020", + "format": "", + "content": "THR the Goldwater Rule.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2020", + "format": "", + "content": "THBT social justice movements should not actively try to appeal to allies (e.g. the feminist movement deliberately trying to appeal to men, or the LGBT+ movement to straight cis individuals).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2020", + "format": "", + "content": "Assuming the technology exists, TH supports the use of augmented eternity for people in highly influential positions (e.g: top academics, researchers, CEOs or politicians).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Downpour Open '20", + "year": "2020", + "format": "", + "content": "R1 - THW allow medical professionals to give medicine to underage children irrespective of the children's and their parent's consent.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Downpour Open '20", + "year": "2020", + "format": "", + "content": "THW require priests to disclose confessions where it is relevant to ongoing criminal cases.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Downpour Open '20", + "year": "2020", + "format": "", + "content": "In countries with large immigrant populations, THW reserve seats for foreign individuals in parliament.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Downpour Open '20", + "year": "2020", + "format": "", + "content": "THBT political assassination is a legitimate tool in foreign policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That as the superdelegates, we would give the nomination to Biden.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That we would allow political parties to make binding electoral promises that, once broken, will immediately trigger re-election.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That we should hold all state presidential primary elections simultaneously.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "This House, as Likud, regrets not removing Netanyahu as leader before the upcoming election.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That Lebanon should abolish the confessional system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That we regret the assassination of Iranian general Qasem Soleimani.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That as an Indian feminist we would identify more with Lakshmi than with Kali.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That feminists in Islamic majority countries should attempt to work to reform Sharia courts from within rather than advocating their abolition.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "This House, as the feminist movement, would push for the sexualisation of religious attires (eg. hijab/saree/cheongsum).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That ASEAN should allow the free movement of labour.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That ASEAN should negotiate all investment deals with Chinese government entities as a bloc (with decisions made by majority vote of its members), so that no member state can enter into investment deals without the consent of the majority of ASEAN.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That we support the abolition of the CFA franc.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That western countries should abandon attempts to remove Maduro from power in Venezuela (e.g. ending sanctions, ceasing funding of Guaido and opposition movements).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That we regret the removal of Evo Morales as president of Bolivia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That we regret the 2019 election of Alberto Fernandez and Cristina Fernandez de Kirschner in Argentina.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That we support Moon Jae-In's attempts to reform The Supreme Prosecutors' Office of the Republic of Korea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That it is in the interest of the Indian state for AAP to form a coalition with the INC to contest in upcoming general elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That King Abdullah al-Haj should have called a snap election in Malaysia , rather than appointing Muhyuddin Yasin as Prime Minister and allowing the current members of the Dewan Rakyat (lower house) to form a new governing coalition.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That states should opt to implement the Hannibal Directive in dealing with their soldiers captured by terrorists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That we should adopt the Fisher Suggestion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2020 Commonwealth Debating Championship", + "year": "2020", + "format": "", + "content": "That, as a religious organization, we would perform final duas for known terrorists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb Open", + "year": "2020", + "format": "", + "content": "This House would prohibit the use of statistical risk assessments when criminal courts are making sentencing decisions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb Open", + "year": "2020", + "format": "", + "content": "This House prefers the antihero as the dominant female archetype in literature and movies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb Open", + "year": "2020", + "format": "", + "content": "This House believes that companies should adopt the practice of Radical Transparency.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb Open", + "year": "2020", + "format": "", + "content": "This House would immediately abolish Two Schools under One Roof.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb Open", + "year": "2020", + "format": "", + "content": "This House would ban payday loans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb Open", + "year": "2020", + "format": "", + "content": "This House prefers a world where people do not enter romantic relationships before they turn 18.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb Open", + "year": "2020", + "format": "", + "content": "This House prefers a 2nd term of Donald Trump presidency over a Bernie Sanders presidency.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2020", + "format": "", + "content": "THW mandate labor union membership in large companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2020", + "format": "", + "content": "THBT the UK should adopt a federal statehood structure which establishes regions and large counties as states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2020", + "format": "", + "content": "TH, as Narendra Modi, would reverse the 'Make in India' policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2020", + "format": "", + "content": "THW allow indigenous groups to veto the development of environmentally disruptive projects on their territory.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2020", + "format": "", + "content": "THW only allow the media and campagning organisations to depict or publish information about the deceased in a tragedy with the explicit permission of the family.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2020", + "format": "", + "content": "THW allow the pardoning of whistleblowers by referendum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2020", + "format": "", + "content": "THBT it is in the interests of the Chinese Communist Party to allow state-owned firms to default on domestic bond repayments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2020", + "format": "", + "content": "THP a world in which people exclusively idolise people they know.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2020", + "format": "", + "content": "THR the westernization of the elite in post-colonial countries (e.g. speaking predominantly in English, going to schools/universities in the West, consuming predominantly Western media).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS IV", + "year": "2020", + "format": "", + "content": "THW create and enforce filial responsibility laws (mandating that people take care of their parents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS IV", + "year": "2020", + "format": "", + "content": "THBT sporting teams should be owned by their fans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS IV", + "year": "2020", + "format": "", + "content": "THW prefer a religion which preaches that one's fate in the material world is predetermined rather than one that preaches that one's choices influence it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS IV", + "year": "2020", + "format": "", + "content": "TH, as a female climate change activist, would choose not to have children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS IV", + "year": "2020", + "format": "", + "content": "THBT in authoritarian countries, individuals who wish to improve their societies should actively seek to join the establishment, as opposed to operating outside the establishment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS IV", + "year": "2020", + "format": "", + "content": "The year is 2018. This house, as Imran Khan, would rather lose the election than side with the Establishment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS IV", + "year": "2020", + "format": "", + "content": "TH supports first generation immigrants to Western Europe encouraging their children to assimilate and identify with local culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS IV", + "year": "2020", + "format": "", + "content": "THW prosecute communities for complicity in honour killings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS IV", + "year": "2020", + "format": "", + "content": "THBT all national economic policy (taxation, monetary policy, tariffs, etc) should be set by an appointed panel of economists rather than by elected officials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS IV", + "year": "2020", + "format": "", + "content": "TH, as progressive student movements in Pakistan, would publicly ally themselves with progressive student movements in India.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS IV", + "year": "2020", + "format": "", + "content": "TH, as the Pakistan Army, would support the Musharraf verdict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2020", + "format": "", + "content": "THP a system where campaign donations are banned and all candidates for an election are equally publicly funded to a world that allows donations to candidates and parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2020", + "format": "", + "content": "THBT a North American sports league, in seeking to expand beyond North America, should prioritize access and development to the Latin American market over the Chinese market.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2020", + "format": "", + "content": "TH, as Benny Gantz, Would form a government with the Likud and Netanyahu to avoid a March 2020 election.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2020", + "format": "", + "content": "You are a woman in a healthy non-abusive long-term relationship with a man. You make a stable salary with which you can support yourself. Your partner has/makes significantly(ridiculously) more money than you. THW Let him pay for the vast majority of expenses incurred during your relationship.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2020", + "format": "", + "content": "THBT major film companies should use AI to choose which films to greenlight.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2020", + "format": "", + "content": "THBT the United States should adopt more pro-plaintiff policies, such as abandoning the need to prove material harm and intent to defame.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2020", + "format": "", + "content": "THR the rise of business schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2020", + "format": "", + "content": "Assuming support from international activists, THBT indigenous groups should advocate for a boycott, divestment, and sanctions movement against Canada to fight its ongoing discrimination against Indigenous peoples.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2020", + "format": "", + "content": "TH as a socially conscious prominent management consultant firm would accept cases for foreign governments with ongoing human rights violations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2020", + "format": "", + "content": "THR the narrative that immortality is desirable.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2020", + "format": "", + "content": "THBT the US should pursue Modern Monetary Theory.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2020", + "format": "", + "content": "In response to climate change THS an immediate, indefinite, international workers strike.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bishop Anthony Lobo Championship", + "year": "2020", + "format": "", + "content": "This House Regrets the prominent use of self deprecating humor by female comedians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bishop Anthony Lobo Championship", + "year": "2020", + "format": "", + "content": "This House Regrets the trend of self destructive/anti social characters as protagonists in media (e.g Bojack Horseman, Rick and Morty, Crazy Ex-Girlfriend, Sherlock, Mad Men etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bishop Anthony Lobo Championship", + "year": "2020", + "format": "", + "content": "THBT it was against the interest of Syrian Kurds to align themselves with the West in the Syrian Civil War.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bishop Anthony Lobo Championship", + "year": "2020", + "format": "", + "content": "This House Believes That schools should emphasize the moral failures and wrongdoings of people considered to be national and social heroes (e.g Churchill, Gandhi, Mother Teresa).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bishop Anthony Lobo Championship", + "year": "2020", + "format": "", + "content": "Assuming it could be done without placing the burden of secrecy on adults, This House Prefers a world where individuals are unaware of the existence of organized religions for the duration of their childhoods.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House would impose a BBC-style impartiality requirement on all news platforms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House supports the rapid global elimination of both tariff and non-tariff barriers to free trade.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House would allow children to sue their parents for religious indoctrination.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House would abolish the Olympic Games.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House believes that the Mexican government should adopt measures that enable one cartel to monopolise the drug market. (These measures can include but are not limited to: targeting enemy cartels; selective arrests; stopping military deployments to areas controlled by this cartel; and renouncing the headhunt on its current leaders.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "In liberal democracies, This House would implement a Social Credit System.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House believes that ASEAN should abandon \"the ASEAN Way\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House believes that the feminist movement should support the narrative that \"beauty does not matter\" over the narrative that \"all bodies are beautiful\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House would abolish primary and secondary school grades/years that group children based on age, and instead group them by competency and intelligence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House prefers a world where, starting today, all humans have identical intellectual abilities (equivalent to the current global average).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House would abolish the private ownership of (housing) property in major metropolitan areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "In a relatively equal society where the \"protected sphere model\" is the norm, This House, as a parent, would raise their children according to the \"deferred happiness model\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House prefers a world without the Neuralink.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House believes that the United States government should cede the authority to prosecute criminal trials involving African Americans (as either victims or alleged perpetrators) to African American interest groups, and allocate funding for this.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House prefers religions in which all individuals have roughly equal religious obligations and are encouraged to develop a personal connection with the divine, over religions in which religious obligation and access to the divine are concentrated in religious authority figures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Partial_Double_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House prefers a cynical and pessimistic perception of democratic politics to an idealistic and optimistic one.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House believes that developing countries should acquire, on the open market, large stakes in major publicly-traded global corporations (eg. Google, JP Morgan, Shell, and Pfizer).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House prefers a \"Brave New World\" to the status quo in Western Liberal Democracies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thailand WUDC", + "year": "2020", + "format": "", + "content": "This House, as China, would grant universal suffrage to Hong Kong.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UFMG IV", + "year": "2019", + "format": "", + "content": "This House would allow private corporations to donate to political campaigns in Brazil.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UFMG IV", + "year": "2019", + "format": "", + "content": "THW break up big tech.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UFMG IV", + "year": "2019", + "format": "", + "content": "This House, as Michel Temer, regrets nothing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PAUDC Akofena", + "year": "2019", + "format": "", + "content": "This House regrets the Humanization of Villains in Film and Media [i.e Joker].", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PAUDC Akofena", + "year": "2019", + "format": "", + "content": "The House believes that charitable organizations [e.g Omaze] should not be allowed to obtain donations in exchange for the offer of potential prizes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PAUDC Akofena", + "year": "2019", + "format": "", + "content": "This house believes that governments in developing nations should prioritize funding for early childhood development to the exclusion of funding for tertiary education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PAUDC Akofena", + "year": "2019", + "format": "", + "content": "In instances where the collapse of financial institutions is imminent, The House supports a bail-in.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PAUDC Akofena", + "year": "2019", + "format": "", + "content": "This House Supports the public offering of Saudi Aramco.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PAUDC Akofena", + "year": "2019", + "format": "", + "content": "‪This House, as the trans community, would prioritize psychosocial rather than physical makeup as a metric for gender dispositions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PAUDC Akofena", + "year": "2019", + "format": "", + "content": "This House believes that religious institutions should use radically leftist interpretations of their teachings in areas of high rates of poverty (e.g Liberation Theology, Islamic Socialism).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PAUDC Akofena", + "year": "2019", + "format": "", + "content": "THS the use of deep fake technology as a legitimate political tool.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PAUDC Akofena", + "year": "2019", + "format": "", + "content": "THR human ability to adapt to social adversity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2019", + "format": "", + "content": "THBT military conscription (aka involuntary draft) should be considered a war crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2019", + "format": "", + "content": "THBT political centrism does more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2019", + "format": "", + "content": "THW break up Disney.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2019", + "format": "", + "content": "THW geoengineer the climate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2019", + "format": "", + "content": "TH as an artist would prefer to be self-taught rather than classically trained.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2019", + "format": "", + "content": "THBT the United States should not take a stance on the conflicts in South America.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2019", + "format": "", + "content": "THW require social media companies to pay for metadata.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2019", + "format": "", + "content": "THBT the African Union should condemn the One Belt One Road Initiative.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2019", + "format": "", + "content": "THR intercollegiate debate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2018", + "format": "", + "content": "This house believes that the criminal justice system should not consider retribution as a factor in sentencing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2018", + "format": "", + "content": "This house prefers a world in which universities charged tuition based on student earnings after graduation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2018", + "format": "", + "content": "This house believes that governments should prioritize the economic improvement of minority communities over the preservation of their culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2018", + "format": "", + "content": "This house prefers a world in which, upon childhood, all people intuitively come to know their natural expiration date.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2018", + "format": "", + "content": "When responding to civilian casualties, this house believes that the military action taken does not have to meet the principle of proportionality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2018", + "format": "", + "content": "This house believes that the interests of the Chinese people would be better served by a peaceful transition into a democracy, rather than a continuation of one party rule.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2019", + "format": "", + "content": "This House regrets the decline of the humanities in higher education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2019", + "format": "", + "content": "This house regrets the decline of the humanities in higher education.", + "infoSlide": "In academic settings, “the humanities” is contrasted with the study of natural sciences, social sciences, and professional training. Core fields in the humanities include: literature, philosophy, history, religion, art, etc.", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2019", + "format": "", + "content": "This House supports laws that protect the health of fetuses (whose mothers intend to carry them to term).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2019", + "format": "", + "content": "This house supports laws that protect the health of fetuses (whose mothers intend to carry them to term).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2019", + "format": "", + "content": "In the event that current talks produce a compromise Brexit deal, This House Would put it to a referendum with “remain” as an alternative.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2019", + "format": "", + "content": "In the event that current talks produce a compromise Brexit deal, this house would put it to a referendum, with “remain” as the alternative.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2019", + "format": "", + "content": "This House would take a pill that permanently made one contented with one’s current life situation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2019", + "format": "", + "content": "This house would take a pill that permanently made one entirely contented with one’s current life situation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2019", + "format": "", + "content": "This House Opposes the centrality of sport to national identity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2019", + "format": "", + "content": "This house opposes the centrality of sport to national identity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2019", + "format": "", + "content": "This House believes that the Black Lives Matter movement should embrace open carry gun laws and engage in armed community patrols.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2019", + "format": "", + "content": "This house believes that the Black Lives Matter movement should embrace open carry gun laws and engage in armed community patrols.", + "infoSlide": "The Black Panthers began as a group of black citizens in Oakland, California who engaged in armed patrols of the city streets, specifically focusing on observing police behavior and arrests. In response, California enacted much stricter gun control legislation.", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Prague Open", + "year": "2019", + "format": "", + "content": "THW cut government and parliament members wages and pension funds, if they run fiscal deficits.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Prague Open", + "year": "2019", + "format": "", + "content": "TH regrets the dominant narrative that moral progress is inevitable (e.g.”The moral arc of history bends towards justice”).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Prague Open", + "year": "2019", + "format": "", + "content": "THBT EU should not offer the UK another extension on Brexit after October 31.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Prague Open", + "year": "2019", + "format": "", + "content": "TH opposes the stigmatisation of romantic relationships built upon materialistic needs or exchanges (e.g. suggar-daddys, cougars, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Prague Open", + "year": "2019", + "format": "", + "content": "THBT secular states should not allow minority groups to implement their own family law systems.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Prague Open", + "year": "2019", + "format": "", + "content": "TH, as the Democratic party, regrets starting the impeachment process of President Trump.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Prague Open", + "year": "2019", + "format": "", + "content": "THBT the fight against Climate Change should include taking international action against sovereign countries (such as exclusion from international institutions, sanctions, military intervention, etc.), which allow environmental abuses through direct action or negligence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debate Championship", + "year": "2019", + "format": "", + "content": "THS THE GLORIFICATION OF START-UP CULTURE THAT ENCOURAGES PEOPLE TO CREATE THEIR OWN BUSINESSES RATHER THAN PURSUE TRADITIONAL CAREER PATHS.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debate Championship", + "year": "2019", + "format": "", + "content": "THR THE PHENOMENON OF SENSITIVITY SCREENING.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debate Championship", + "year": "2019", + "format": "", + "content": "THBT CONSERVATIVE STATES SHOULD AGGRESSIVELY EMBRACE LIBERAL IDEOLOGIES IN THE PURSUIT OF PROMOTING ECONOMIC DEVELOPMENT.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debate Championship", + "year": "2019", + "format": "", + "content": "THS THE PRACTICE OF CULTURAL CHRISTIANITY.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debate Championship", + "year": "2019", + "format": "", + "content": "TH CELEBRATES NO NUT NOVEMBER (NNN).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debate Championship", + "year": "2019", + "format": "", + "content": "ASSUMING IT WOULD BE ILLEGAL FOR ANYONE TO BECOME STATELESS, THW CREATE A MARKETPLACE FOR THE BUYING AND SELLING OF CITIZENSHIP BETWEEN PRIVATE INDIVIDUALS.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debate Championship", + "year": "2019", + "format": "", + "content": "THW PROSECUTE LEADERS WHO REFUSE TO IMPLEMENT UNIVERSAL HEALTH COVERAGE (UHC) POLICIES FOR MENTAL HEALTH CASES AND OTHER PRIMARY HEALTH CARE EMERGENCIES.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debate Championship", + "year": "2019", + "format": "", + "content": "THS THE BANNING OF POLITICAL PARTIES ADVERTISEMENTS ON SOCIAL MEDIA PLATFORMS.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debate Championship", + "year": "2019", + "format": "", + "content": "TH AS GOOGLE WILL ADOPT THE HIPPOCRATIC LICENSE.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debate Championship", + "year": "2019", + "format": "", + "content": "THR THE WOKE CALL-OUT CULTURE.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debate Championship", + "year": "2019", + "format": "", + "content": "THW choose China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debate Championship", + "year": "2019", + "format": "", + "content": "THR THE BORDER CLOSURE.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2019", + "format": "", + "content": "TH, as a leftist politician, would adopt political disinformation campaign tactics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2019", + "format": "", + "content": "THR the use of identity-based self deprecating humour by minority entertainers in popular culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2019", + "format": "", + "content": "THBT the EU should expel member states who join the Belt & Road initiative.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2019", + "format": "", + "content": "THP a world in which religious leaders (Priests, Imams, Rabbis etc.) are not seen as having a deeper connection with religious deities (ex: God or Allah) than regular members of the faithful.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2019", + "format": "", + "content": "In cases where individuals are convicted of leaking state secrets, THW allow their convictions to be nullified by a national referendum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2019", + "format": "", + "content": "THBT it is unethical to have children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2019", + "format": "", + "content": "THP a geniocracy over rule by democratic representation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2019", + "format": "", + "content": "THR the narrative that money can't buy happiness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2019", + "format": "", + "content": "This house believes that hacking is a legitimate form of protest against large corporations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2019", + "format": "", + "content": "This house regrets films and television shows that glorify gang culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2019", + "format": "", + "content": "This house believes that states should not attempt to regulate digital currencies like bitcoin.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2019", + "format": "", + "content": "This house supports the right of fiction authors to use a pseudonym and/or remain anonymous.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2019", + "format": "", + "content": "This house believes that environmental movements should support climate engineering that fundamentally alters the environment in an attempt to combat global warming.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2019", + "format": "", + "content": "In emerging democracies, this house would break up persistently dominant political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2019", + "format": "", + "content": "This house believes that feminist organisations should not criticize female politicians for their views on women's issues.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rocky Mountain Championships", + "year": "2019", + "format": "", + "content": "Given the state of the world, THBT it is immoral for humans to willfully reproduce.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rocky Mountain Championships", + "year": "2019", + "format": "", + "content": "THW replace all social safety net policies with a comparable universal basic income.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rocky Mountain Championships", + "year": "2019", + "format": "", + "content": "THW assimilate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rocky Mountain Championships", + "year": "2019", + "format": "", + "content": "TH rejects all sports mascots which depict humans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rocky Mountain Championships", + "year": "2019", + "format": "", + "content": "THW encourage feminists to troll, meme, and shame the patriarchy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rocky Mountain Championships", + "year": "2019", + "format": "", + "content": "TH, as foreign militaries, would condition material support to the United States Armed Forces on the removal of the Trump Administration.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rocky Mountain Championships", + "year": "2019", + "format": "", + "content": "TH, as the United States Federal Government, would take all necessary steps to eliminate Mexican drug cartels.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rocky Mountain Championships", + "year": "2019", + "format": "", + "content": "TH rejects the idea of ethical consumption.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2019", + "format": "", + "content": "THO the demonisation of nationalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2019", + "format": "", + "content": "THBT climate change movements should prioritise constructive policy proposals over criticism and obstruction of current policies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2019", + "format": "", + "content": "THBT sports assocciation’s ultimate goal should be the integration of women into mixed teams rather than achieving parity between male and female teams.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2019", + "format": "", + "content": "THBT it was against the interest of Syrian Kurds to align themselves with the West in the Syrian Civil War.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2019", + "format": "", + "content": "THW never allow parents to make medical decisions for their children that contradict the medical consensus.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2019", + "format": "", + "content": "THR the integration of PR China into the global economy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2019", + "format": "", + "content": "THW release the evidence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2019", + "format": "", + "content": "THR the increasing professionalization of youth athletics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2019", + "format": "", + "content": "In cities with scarce housing availability THW reallocate funds intended for building or subsidizing affordable housing to providing the means for those in need to relocate to different cities with lower costs of living.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2019", + "format": "", + "content": "THBT that Western Nations should impose heavy penalties on domestic corporations that punish their employees for engaging in legally permitted speech.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2019", + "format": "", + "content": "Assuming feasibility, THW distribute development aid to individual citizens rather than governments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2019", + "format": "", + "content": "THW have all settler colonial states (Canada, U.S., Australia, Mexico, Brazil, etc.) pay rent to their indigenous populations for all government-owned property.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2019", + "format": "", + "content": "THP a world without a belief in life after death (heaven, reincarnation, past lives, hell, etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2019", + "format": "", + "content": "Assuming neither standard is upheld in the status quo, THBT society should aim towards becoming a meritocracy as opposed to a society where people are treated equally regardless of merit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2019", + "format": "", + "content": "In the aftermath of genocides, ethnic violence or crimes against humanity THO efforts to ban or suppress discussion of ethnicity and/or religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2019", + "format": "", + "content": "THBT all nations should take active steps to eliminate all borders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bard IV", + "year": "2019", + "format": "", + "content": "THBT a universal basic income is preferable to conditional welfare programs (e.g., SNAP, housing assistance, Medicaid).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bard IV", + "year": "2019", + "format": "", + "content": "THS \"Cancel Culture\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bard IV", + "year": "2019", + "format": "", + "content": "THBT Puerto Ricans should advocate for independence over statehood.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bard IV", + "year": "2019", + "format": "", + "content": "THW limit copyright terms for works of art (including fine art, music, film, literature, etc.) to the original artist’s lifespan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bard IV", + "year": "2019", + "format": "", + "content": "THW prohibit hospitals from being owned by or affiliated with religious organizations (eg, Catholic hospitals).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bard IV", + "year": "2019", + "format": "", + "content": "THR the portrayal of parental figures as incompetent and/or out-of-touch in children's media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bard IV", + "year": "2019", + "format": "", + "content": "THBT small island nations should declare a state of emergency due to climate change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bard IV", + "year": "2019", + "format": "", + "content": "THBT the United States, when confronting organizations designated as terrorist groups, should pursue a strategy of engaging with perceived moderates within the group’s leadership in an attempt to exact concessions (e.g., prisoner exchanges, cease-fires, or political freedoms for minorities under their control) rather than pursuing a policy of explicit non-engagement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bard IV", + "year": "2019", + "format": "", + "content": "THBT supporters of Medicare For All should advocate for the abolition of private insurance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bard IV", + "year": "2019", + "format": "", + "content": "THBT that individuals who have committed mass atrocities deserve to suffer in the afterlife.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Karachi Cup", + "year": "2019", + "format": "", + "content": "This house would allow the selection of all-female juries in sexual assault cases.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Karachi Cup", + "year": "2019", + "format": "", + "content": "This house supports countries withdrawing from the International Criminal Court in order to create their own regional replacements (e.g. an African Criminal Court, an InterAmerican Criminal Court).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Karachi Cup", + "year": "2019", + "format": "", + "content": "This house would move Pakistan’s capital to Karachi.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Karachi Cup", + "year": "2019", + "format": "", + "content": "After a speaker has been invited, this house would allow university to vote to reject the speaker from coming to campus.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Karachi Cup", + "year": "2019", + "format": "", + "content": "This house believes that all laws regarding climate change should be subject to a referendum only open to those aged 30 and below.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Karachi Cup", + "year": "2019", + "format": "", + "content": "This house supports the 'Right to be Forgotten' on the internet.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Karachi Cup", + "year": "2019", + "format": "", + "content": "As the author of a non-colonial language (e.g. Marathi, Inuktitut, IsiXhosa, Gikuyu, Tibetan, among others), this house would only write in its native language.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WW III", + "year": "2019", + "format": "", + "content": "TH REGRETS THE COMMERCIALISATION OF ANTI-RAPE PRODUCTS.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WW III", + "year": "2019", + "format": "", + "content": "THIS HOUSE AS THE US CIA WILL DISCLOSE IT.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WW III", + "year": "2019", + "format": "", + "content": "THBT GLOBAL SPORTS GOVERNING BODIES (EG. FIFA) SHOULD PRIORITISE GEO POLITICAL CONSIDERATIONS IN SITUATING CHAMPIONSHIPS.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "WW III", + "year": "2019", + "format": "", + "content": "TH AS THIRD WORLD COUNTRIES WOULD OFFER ITS ELECTED OFFICIALS THE GRAFT LEEWAY.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "In a world in which the technology has recently been created to impregnate men, TH, as a male partner of a young career-focused woman, would choose to carry their baby.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THB LGB people should emphasize their same-sex attraction.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THBT sporting teams should change their names where they are considered insensitive (e.g. Crusaders).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THBT countries should develop and deploy autonomous robot soldiers in conflict zones that are capable of killing people.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THW militarily intervene in Venezuela.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THBT African Countries should pivot towards the Global East rather than the Global West.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THBT social movements should not adopt works of art as symbols where the artist does not identify with that movement (e.g. the feminist movement adopting the close-up of flowers painted by Georgia O’Keeffee believing the paintings to be sexual depictions of female anatomy; the adoption of the horror fim the Babadook by the queer rights movement).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THR docu-dramas that \"put people on trial\" after their exoneration or death (e.g. Leaving Neverland about Michael Jackson, The People v. O. J. Simpson, The Disappearance of Madeleine McCann).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THR pop-culture portrayals of people with chronic or life-threatening illnesses (e.g. Five Feet Apart, Me Before You, The Big Sick, Fault in Our Stars, My Sister’s Keeper).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THR the Reformation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THBT as the Christian church would teach that the Bible is a historically-based account containing human error, rather than teaching that the Bible is the flawless work of God.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "TH prefers religions that teach salvation is achieved through certain behaviours (e.g. good works, five pillars of Islam), over religions that teach salvation is achieved through faith alone.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THBT members of socially progressive movements should not support harsh punishment of criminals, even when the crimes committed are the opposite of what that movement supports. (e.g. hate crimes; domestic violence; pedophilia).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "Instead of sentencing offenders to fixed terms of imprisonment, THW sentence offenders to indeterminate sentences of imprisonment and release them when they have been rehabilitated.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THW revoke ISIS fighters' citizenship, even in instances where that would leave them stateless.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THR the decline of trade unions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THW break-up large social media companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THS wage subsidies in regions with persistent economic malaise (e.g. The Rust Belt, Kawerau).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THW create special intellectual property rights of indefinite duration for the traditional knowledge and culture of indigenous peoples (e.g. gurana berry processing for the Gurani people of South America; ka mate haka for Ngati Toa; dot paintings for the Papunya Tula people in Australia).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THBT Labour MPs elected in Maori seats should publicly criticise any Labour Party policy that hurts Maori.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "TH, as a parent, would send their children to a kohanga reo school (Māori immersion schools).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THBT the UK Parliament should cancel Brexit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THBT NZ should return to First Past the Post (FPP).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2019", + "format": "", + "content": "THR the narrative that people who are members of marginalised groups (e.g. queer people, people of colour, indigenous people) should only vote for left-wing parties and politicians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Lyceum Debating Championship", + "year": "2019", + "format": "", + "content": "This House Regrets the societal expectation of going to university.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Lyceum Debating Championship", + "year": "2019", + "format": "", + "content": "This House, as a parent, would allow Vought America to inject their child with Compound V.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Lyceum Debating Championship", + "year": "2019", + "format": "", + "content": "THW ban zoos.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Lyceum Debating Championship", + "year": "2019", + "format": "", + "content": "This house, as the US government, would break up Facebook, inc.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Lyceum Debating Championship", + "year": "2019", + "format": "", + "content": "In areas with high crime, this house would impose a curfew on men.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Lyceum Debating Championship", + "year": "2019", + "format": "", + "content": "THS Antifa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Lyceum Debating Championship", + "year": "2019", + "format": "", + "content": "If brought back to the 2018 ballot in the Pakistani General Elections, this house would still vote for the Pakistan Tehreek-e-Insaaf (PTI).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Feminism Open", + "year": "2019", + "format": "", + "content": "As feminists, this house supports all forms of self-commodification of one's sex appeal, escorting, sugardaddying / mommying, and starring in porn videos.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Feminism Open", + "year": "2019", + "format": "", + "content": "This house believes that Japanese feminists should advocate for the abolition of the Imperial system (天皇制) as opposed to advocating for the inclusion of female imperial members in the line of succession for the Imperial throne.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Feminism Open", + "year": "2019", + "format": "", + "content": "This house believes that women who have experienced gender based discrimination are justified in committing misandry.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Feminism Open", + "year": "2019", + "format": "", + "content": "This house, as the feminist movement, would advocate for the introduction of a socialized care system in which all people needing care (the elderly, people with disabilities, etc) are cared for by workers selected by a national draft system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens EUDC", + "year": "2019", + "format": "", + "content": "THBT Greece should introduce significant financial incentives for companies and individuals currently based in Athens* to relocate to other Greek cities *Over a third of the Greek population lives in Athens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens EUDC", + "year": "2019", + "format": "", + "content": "THBT it is in the interest of the Chinese Communist Party to cease attempts to infringe on \"One Country, Two Systems\" in Hong Kong, rather than continuing its current approach.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens EUDC", + "year": "2019", + "format": "", + "content": "THW encourage women to be selfish.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens EUDC", + "year": "2019", + "format": "", + "content": "THBT it is in the interest of dominant organised religions for their leaders to declare more progressive interpretations of traditional dogma* *e.g. on dietary and pilgrimage requirements, the acceptability of contraception, same-sex relationships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens EUDC", + "year": "2019", + "format": "", + "content": "THBT consumers should predominantly aim to buy locally produced goods and services.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens EUDC", + "year": "2019", + "format": "", + "content": "THW break up Disney.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens EUDC", + "year": "2019", + "format": "", + "content": "THBT schools should teach children to be skeptical of parental authority.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens EUDC", + "year": "2019", + "format": "", + "content": "In circumstances where a unanimous decision is currently required, THP majority voting as the European Council's decision-making approach.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens EUDC", + "year": "2019", + "format": "", + "content": "THW make police commanders personally criminally liable for instances of police brutality committed by their subordinates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens EUDC", + "year": "2019", + "format": "", + "content": "In situations where deliberate economic policies by another state have caused substantial economic harms, THBT international law should recognise that military retaliation can be justified.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens EUDC", + "year": "2019", + "format": "", + "content": "THBT the US Democratic Party should prioritise employment issues, even at the expense of significant harms to the environment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens EUDC", + "year": "2019", + "format": "", + "content": "TH Opposes the Defining Decade norm.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens EUDC", + "year": "2019", + "format": "", + "content": "THBT local governments in developing countries should allocate significant portions of their budget via Participatory Budgeting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens EUDC", + "year": "2019", + "format": "", + "content": "THBT it is in the interest of the Kremlin to take measures to reduce Russian dependency of China (e.g. limit the selling of raw materials to China, reduce the share of Yuan in Russia's currency reserves, not allowing Chinese companies to develop strategic infrastructure such as 5G in Russia).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens EUDC", + "year": "2019", + "format": "", + "content": "THBT communities that have been victims of atrocities should emphasise the narrative of the 'banality of evil' when interpreting those atrocities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens EUDC", + "year": "2019", + "format": "", + "content": "THBT the Greek government should have rejected the 2015 bailout deal and sought to negotiate further concessions, even at the risk of not receiving a bailout.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "European Round Robin", + "year": "2019", + "format": "", + "content": "TH would attend the Queer Liberation March rather than the Stonewall50 March.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "European Round Robin", + "year": "2019", + "format": "", + "content": "This House, as religious individual would prefer to be a part of a religious community that proselytizes over the one that does not.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "European Round Robin", + "year": "2019", + "format": "", + "content": "This House Believes That China should seek to curb debt at the expense of economic growth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "European Round Robin", + "year": "2019", + "format": "", + "content": "This House Believes That all wealth beyond the necessary to meet one’s basic needs is immoral.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "European Round Robin", + "year": "2019", + "format": "", + "content": "This House, as the Iranian government, would fulfill its obligations under the JCPOA.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "European Round Robin", + "year": "2019", + "format": "", + "content": "This House prefers a world where family love was seen as unconditional as opposed to conditional.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DU IV", + "year": "2019", + "format": "", + "content": "This house as woke liberal parents living in a conservative red state would choose to home school their children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DU IV", + "year": "2019", + "format": "", + "content": "THW not allow media to report on crime reported by refugees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DU IV", + "year": "2019", + "format": "", + "content": "THBT the remaining members of ICC should breakaway from ICC & form their own unified cricketing body.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DU IV", + "year": "2019", + "format": "", + "content": "THW never support or finance rebel groups on foreign soil as a tactic of war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DU IV", + "year": "2019", + "format": "", + "content": "THBT the LGBTQ+ Community should include Side B Christians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DU IV", + "year": "2019", + "format": "", + "content": "TH prefer a world where human life naturally ends at 50.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Poznan Open", + "year": "2019", + "format": "", + "content": "In areas where minorities face significant barriers to traditional representation of their culture, THS ethnic majority artists who focus their work around minority culture’s appreciation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Poznan Open", + "year": "2019", + "format": "", + "content": "THBT companies should pay corporate tax in all countries that they operate in (proportional to the amount of revenue made in that country), as opposed to only the country that their headquarters are registered in.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Poznan Open", + "year": "2019", + "format": "", + "content": "THR the demonization of Russia in Eastern European countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Poznan Open", + "year": "2019", + "format": "", + "content": "The year is 2020 and in the UK a second referendum on Brexit has reversed the original decision. TH, as the EU, W not allow the UK to cancel Brexit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Poznan Open", + "year": "2019", + "format": "", + "content": "THBT all military strategies are justified if they save more lives than they cost.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Poznan Open", + "year": "2019", + "format": "", + "content": "THW destroy the evidence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Cologne Open", + "year": "2019", + "format": "", + "content": "THS the use of extra-legal and illegal methods to provide wider access to knowledge (e.g. sci-hub, hacking Jstor, unauthorised distribution of files and copies).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Cologne Open", + "year": "2019", + "format": "", + "content": "In places where conscription of men already exists, THBT the feminist movement should advocate for conscription of women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Cologne Open", + "year": "2019", + "format": "", + "content": "THW ban private ownership of 3D printers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Cologne Open", + "year": "2019", + "format": "", + "content": "THS such organizations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Cologne Open", + "year": "2019", + "format": "", + "content": "THW elect 51% of parliament by lottery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Cologne Open", + "year": "2019", + "format": "", + "content": "THO artwork that humanizes pro-regime germans during the Second World War.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Cologne Open", + "year": "2019", + "format": "", + "content": "THR the modern high priorisation of sexual compatibility in romantic relationships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2019", + "format": "", + "content": "THBT women should decline chivalrous gestures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2019", + "format": "", + "content": "THS using social media platforms to depict stories from the Holocaust.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2019", + "format": "", + "content": "THW ban religious arbitration courts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2019", + "format": "", + "content": "THS the strategy of “decapitation” in fighting transnational criminal organizations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2019", + "format": "", + "content": "THW NOT enforce pharmaceutical patent infringements within developing nations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2019", + "format": "", + "content": "THO social media banning of alt-right figures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2019", + "format": "", + "content": "THW create and teach a unified history curriculum in the European Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2019", + "format": "", + "content": "THBT Gavrilo Princip was justified in killing Archduke Franz Ferdinand.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2019", + "format": "", + "content": "This House Would expel states which fail to spend a minimum of 2% of GDP on defence from NATO.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2019", + "format": "", + "content": "This House Believes that feminist movements in the developing world should integrate religious messages and institutions into their advocacy, rather than distancing themselves from them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2019", + "format": "", + "content": "This House Believes That the West should massively discourage and disincentivise economic collaboration and exchange with China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2019", + "format": "", + "content": "This House Would raise their child to prefer to be single.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2019", + "format": "", + "content": "THBT the democratic nominee should commit to abolishing ICE.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2019", + "format": "", + "content": "This House Believes That it is in the interest of the Russian Federation for Vladimir Putin to run for a fifth term as President in 2024.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2019", + "format": "", + "content": "This House prefers technocracy to democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2019", + "format": "", + "content": "This House Believes That it is in the interest of the Russian Federation for Vladimir Putin to run for a fifth term as President in 2024.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2019", + "format": "", + "content": "This House prefers technocracy to democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2019", + "format": "", + "content": "THBT Palestinians should prioritise striving to consolidate a Palestinian state in the Westbank and the Gaza Strip as opposed to seeking the right to return to Israel.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That, as a feminist parent, we would send our daughter to an all-girls school as opposed to a comparable co-ed school.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That feminists should actively campaign for quotas and increased female involvement in the military.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That we should ban pregnant women from working during the last month of their pregnancy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That we should allow scientific journals to publish anonymous papers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That schools should be allowed to expel students who are violent or consistent bullies, even if there is not a school immediately willing to take them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That, assuming feasibility, governments should cap parents' expenditure on their children to an amount equivalent to the current median expenditure per year.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That we should hold pharmaceutical companies liable for harms caused by widespread misuse of their drugs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That we should allow doctors to override Advance Care Directives.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That judges should prescribe Naltrexone instead of mandating Alcoholics Anonymous for offenders of minor alcohol related crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That African American rap artists have a moral obligation to donate their disposable income to African American low socioeconomic-status areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That the queer community should abandon the trend of making queer events/celebrations open to cis/straight allies (eg. bars, parties, events, mardi gras, etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That schools should encourage children from minority backgrounds to 'code switch'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That prominent social activists (e.g. the leaders of Black Lives Matter, Aung San Suu Kyi) should not choose to run for office. (.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That it would be in the interests of the Democratic Party if Kamala Harris were to win the Presidential nomination instead of Bernie Sanders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That we would, as the Coalition, dedicate substantial resources into challenging the legal status of minor parties and their candidates (eg. Section 44, the number of signatures, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That the state should offer criminals a new identity upon serving their sentence (e.g. new name, new background, optional plastic surgery).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That judges should not consider whether evidence was collected legally when deciding to admit it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That we should ban prison guards from striking.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That the public, via referendum, should be given the power to pardon/give amnesty to whistleblowers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octo", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That, as a Rohingya Muslim fleeing the Myanmar military, we would join ARSA. (Octo-finals) That we regret the custom of giving gifts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That we regret narratives of deference to the elderly (e.g. \"older people are more experienced\").", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That the Bretton Woods institutions (i.e. the International Monetary Fund and the World Bank) have done more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That, assuming feasibility, we should charge corporations a tax equal to their Social Cost instead of company tax.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Easters", + "year": "2019", + "format": "", + "content": "That the queer community should actively embrace religious organisations and queer religious individuals in its leadership positions and advocacy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cracow Open", + "year": "2019", + "format": "", + "content": "This House welcomes complete video surveillance systems of public spaces in cities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cracow Open", + "year": "2019", + "format": "", + "content": "This House believes that the EU should pursue further relations with China, at the expense of relations with the US.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cracow Open", + "year": "2019", + "format": "", + "content": "This House would criminalize defamation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cracow Open", + "year": "2019", + "format": "", + "content": "This House, as an individual, prefers believing that they can singlehandedly change the world over believing that they are just one pawn in the grand scheme of things.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cracow Open", + "year": "2019", + "format": "", + "content": "This House believes that pro-refugee advocacy groups should portray refugees as valuable contributors to society, rather than victims of their circumstances.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cracow Open", + "year": "2019", + "format": "", + "content": "This House believes that wages should be predominantly determined by the public utility of a job.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cracow Open", + "year": "2019", + "format": "", + "content": "This House regrets rising commodification of close and intimate relationships (including but not limited to hiring actors to play your family members; commercial hugging; premium accounts on dating apps).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USUDC", + "year": "2019", + "format": "", + "content": "THR the decline in influence of ‘gatekeeping’ media institutions (major newspapers, network news, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USUDC", + "year": "2019", + "format": "", + "content": "THW no longer require parental consent for administering invasive procedures on adolescents (e.g. piercing and tattoos, cosmetic surgery, sex reassignment surgery, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USUDC", + "year": "2019", + "format": "", + "content": "After popular uprisings resulting in the overthrow of long-time dictators, THBT Western nations should make support (e.g. diplomatic recognition, foreign aid, investments) to the new government explicitly contingent on holding internationally observed elections within 6 months of the dictator’s end.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USUDC", + "year": "2019", + "format": "", + "content": "THW embrace transhumanist philosophy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USUDC", + "year": "2019", + "format": "", + "content": "THBT secondary education (ages 10-18) should focus on preparing students for local workforce needs rather than focusing on well-rounded basic education (i.e. mathematics, literature, physical and biological sciences, art, history).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USUDC", + "year": "2019", + "format": "", + "content": "THW pay known gang members to not commit violent crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USUDC", + "year": "2019", + "format": "", + "content": "THO employer-provided benefits (e.g. health insurance, childcare, retirement investment accounts).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USUDC", + "year": "2019", + "format": "", + "content": "THW create matriarchal semi-autonomous regions within countries, and provide legal, political, and economic support to them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USUDC", + "year": "2019", + "format": "", + "content": "TH, as Japan, would support closing all U.S. military bases on Japanese territory.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USUDC", + "year": "2019", + "format": "", + "content": "This house regrets the corporatization of higher education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USUDC", + "year": "2019", + "format": "", + "content": "This supports prison abolition as opposed to prison reform.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USUDC", + "year": "2019", + "format": "", + "content": "THR the stance of U.S. foreign policy in favor of Sunni forces in the Shia-Sunni conflict in the Middle East.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USUDC", + "year": "2019", + "format": "", + "content": "This house regrets the modern idealization of Civil Rights leaders as moderate, pacifist, and respectable.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USUDC", + "year": "2019", + "format": "", + "content": "THW divide the United States of America into multiple countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USUDC", + "year": "2019", + "format": "", + "content": "THBT LGBTQ+ activists in non-Western countries should use and advocate for LGBTQ+ rights and individuals using their local historical terms (mahjie, hijra, etc.) instead of Western terminology (lesbian, gay, bisexual, transgender etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "America's Cup", + "year": "2019", + "format": "", + "content": "THR the decline of Black militant groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "America's Cup", + "year": "2019", + "format": "", + "content": "THW ban the colonization of space.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "America's Cup", + "year": "2019", + "format": "", + "content": "THO democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deree Invitational LVII", + "year": "2019", + "format": "", + "content": "THBT women should pay less income tax than men.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deree Invitational LVII", + "year": "2019", + "format": "", + "content": "THW give up.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deree Invitational LVII", + "year": "2019", + "format": "", + "content": "THW never support or finance rebel groups on foreign soil as a tactic of war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deree Invitational LVII", + "year": "2019", + "format": "", + "content": "TH, as the parent of a child prodigy, would push that child to maximize its potential.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deree Invitational LVII", + "year": "2019", + "format": "", + "content": "THBT environmentalists and animal rights activists should launch violent campaigns against companies that pollute the environment or violate animals' rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deree Invitational LVII", + "year": "2019", + "format": "", + "content": "THW introduce a maximum wage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deree Invitational LVII", + "year": "2019", + "format": "", + "content": "THBT the WTO should allow developing countries to impose tariffs on imports from developed countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deree Invitational LVII", + "year": "2019", + "format": "", + "content": "THBT mainstream political parties in Europe should impose a \"cordon sanitaire\" on radical populist parties (e.g. VOX, AFD, PPV).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS Asians' Debate Open", + "year": "2019", + "format": "", + "content": "TH supports job security legislation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS Asians' Debate Open", + "year": "2019", + "format": "", + "content": "THW implement substantial measures to impose long-termism in corporate investment culture (eg. minimum holding periods for shares, yearly rather than quarterly financial reporting, long term executive compensation plans).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS Asians' Debate Open", + "year": "2019", + "format": "", + "content": "THW prohibit hedge funds from purchasing sovereign debt issued by countries nearing insolvency.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS Asians' Debate Open", + "year": "2019", + "format": "", + "content": "TH, as the BJP, would reinstate Articles 370 and 35(A) of the Indian Constitution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS Asians' Debate Open", + "year": "2019", + "format": "", + "content": "TH, as Xi Jinping, would remove Hong Kong’s Special Administrative Status.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS Asians' Debate Open", + "year": "2019", + "format": "", + "content": "THR the erosion of national sovereignty by large supranational bodies (eg the EU and the UN).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS Asians' Debate Open", + "year": "2019", + "format": "", + "content": "THR the rise of movements based on ethical consumption.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS Asians' Debate Open", + "year": "2019", + "format": "", + "content": "THBT anyone living above the national median wage has an obligation to donate all excess wealth to charity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS Asians' Debate Open", + "year": "2019", + "format": "", + "content": "THW implement universal jurisdiction for environmental crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS Asians' Debate Open", + "year": "2019", + "format": "", + "content": "TH, as Greta Thunberg, would openly denounce capitalism as the root of climate change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS Asians' Debate Open", + "year": "2019", + "format": "", + "content": "THW prevent climate change deniers from seeking political office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS Asians' Debate Open", + "year": "2019", + "format": "", + "content": "TH, as Iran, would cease all support for military groups in the Middle East (e.g. Hezbollah, Hamas, Houthis etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS Asians' Debate Open", + "year": "2019", + "format": "", + "content": "THBT governments should abandon the strategy of \"decapitation\" in fighting terrorism.", + "infoSlide": "In the context of anti-terrorism, decapitation refers to the strategy of targeting terrorist leaders for assassination.", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LUMS Asians' Debate Open", + "year": "2019", + "format": "", + "content": "TH, as the Chinese state, would send in the People's Liberation Army to take back control of Hong Kong.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonia Debate Open", + "year": "2019", + "format": "", + "content": "THS the use of local lay judges in minor legal cases.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonia Debate Open", + "year": "2019", + "format": "", + "content": "This House supports the US’s use of economic warfare (eg. tariffs, targeted sanctions, etc.) against China in order to force compliance with the rules of the global economic order (eg. opening up its economy, protecting intellectual property, not engaging in currency manipulation, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonia Debate Open", + "year": "2019", + "format": "", + "content": "THW ban the research, production and use of lethal autonomous weapons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonia Debate Open", + "year": "2019", + "format": "", + "content": "TH regrets the Westernisation of the elites in post-colonial societies. (e.g. speaking predominantly in English, wearing western clothing, going to schools and/or universities in the West, consuming predominantly Western media).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonia Debate Open", + "year": "2019", + "format": "", + "content": "THBT shrinking cities should be allowed to impose an “exit tax” on leaving businesses.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonia Debate Open", + "year": "2019", + "format": "", + "content": "THBT liberal states should sponsor the hacking of infrastructure designed to limit freedom of speech in authoritarian states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonia Debate Open", + "year": "2019", + "format": "", + "content": "TH, as the UK conservative party, would hold a second Brexit referendum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonia Debate Open", + "year": "2019", + "format": "", + "content": "TH prefers a world in which the prevailing norm is one of serial monogamy rather than monogamy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Barcelona Debating Open", + "year": "2019", + "format": "", + "content": "THW make the number of votes an individual has inversely proportional to their wealth (i.e. the more wealth an individual has the fewer votes in an election).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Barcelona Debating Open", + "year": "2019", + "format": "", + "content": "THW grant senior military officers a veto over military decisions made by politicians (e.g. troop deployments, specific missions).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Barcelona Debating Open", + "year": "2019", + "format": "", + "content": "TH supports social movements having strict standards for what members should believe e.g feminists excluding pro-life feminists from the Women’s March.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Barcelona Debating Open", + "year": "2019", + "format": "", + "content": "THBT developing countries with substantial natural resources should nationalise natural resource production.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Barcelona Debating Open", + "year": "2019", + "format": "", + "content": "TH prefers secular governments that exclude all religion from public spaces to those that allow unlimited religious expression.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Barcelona Debating Open", + "year": "2019", + "format": "", + "content": "THBT mainstream Spanish political parties should operate cordon sanitaire policies towards radical populists (e.g. VOX).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Barcelona Debating Open", + "year": "2019", + "format": "", + "content": "THBT that feminists should not use rhetoric about women being more empathetic or caring than men as part of their advocacy (e.g. “Women are good leaders because they are more compassionate”).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Barcelona Debating Open", + "year": "2019", + "format": "", + "content": "TH prefers a world where the majority believed in determinism over one where the majority believed in free will.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Muslim Interscholastic Tournament", + "year": "2019", + "format": "", + "content": "THBT States/Provinces/Territories should be able to decide whether to implement federal laws and regulations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Muslim Interscholastic Tournament", + "year": "2019", + "format": "", + "content": "THBT Indigenous/Metis peoples should be guaranteed a middle-class income as reparations for past injustices.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Muslim Interscholastic Tournament", + "year": "2019", + "format": "", + "content": "THBT the public’s right to know ought to be valued above the right to privacy of candidates for public office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Muslim Interscholastic Tournament", + "year": "2019", + "format": "", + "content": "THS Prohibit the advertisement of prescription medicine to the general public.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Muslim Interscholastic Tournament", + "year": "2019", + "format": "", + "content": "THBT all undocumented minors should be granted permanent residency.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Muslim Interscholastic Tournament", + "year": "2019", + "format": "", + "content": "THS allow the populace to petition for revotes of elected officials during their term.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Muslim Interscholastic Tournament", + "year": "2019", + "format": "", + "content": "THS ban providing military aid to authoritative regimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Muslim Interscholastic Tournament", + "year": "2019", + "format": "", + "content": "THS substantially increase its development and/or engagement to the Republic of India.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Muslim Interscholastic Tournament", + "year": "2019", + "format": "", + "content": "THS Considerably decrease its regulation of genetically modified foods.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan American Debating Championships", + "year": "2019", + "format": "", + "content": "THBT Brazil should fully privatize Petrobras / ECCQ Brasil debería privatizar por completo Petrobras.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan American Debating Championships", + "year": "2019", + "format": "", + "content": "THBT that Western countries should revoke the citizenship of individuals that traveled to the Middle East to join Jihadi groups, even if they were minors at the time of their departure / ECCQ los países occidentales deberían revocar la ciudadanía a los individuos que se trasladaron a Medio Oriente para integrarse a grupos Jihadistas , incluso si eran menores de edad al momento de su translado.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan American Debating Championships", + "year": "2019", + "format": "", + "content": "THS state attempts to help their citizens find and sustain love (e.g. subsidizing subscriptions to matching agencies such as match.com, significant funding for research on what makes a relationship last, creating courses on how to woo and keep a spouse) / EC apoya que el estado busque ayudar a sus ciudadanos a encontrar y mantener el amor (ej. Subsidiando suscripciones a sitios de citas como match.com, financiando significativamente investigaciones sobre cómo hacer que una relación perdure, creando cursos sobre cómo sorprender y conservar a tu pareja).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan American Debating Championships", + "year": "2019", + "format": "", + "content": "THBT major awards of meritocratic distinction (e.g. the Nobel Prize, the Pulitzer Prize, Oscars, etc) should include a moral clause* *a provision that allows the honoree to receive, or hold, the award only in the case they meet a behavioral standard set by the awarding panel. / ECCQ los principales premios de reconocimiento al mérito (Ej. Premio Nobel, Premio Pulitzer, Oscar’s, etc.) deberían incluir una cláusula moral* *una condición que permite al homenajeado recibirlo y conservarlo únicamente cuando cumplan con un estándar de comportamiento establecido por el jurado calificador.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan American Debating Championships", + "year": "2019", + "format": "", + "content": "THBT developing countries should pursue the establishment of charter cities / ECCQ los países en vía de desarrollo deberían establecer ciudades chárter.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan American Debating Championships", + "year": "2019", + "format": "", + "content": "THBT the general educational approach in schools should be to discourage children from assessing their achievements in comparison to their peers. / ECCQ el enfoque general de la educación en los colegios debe ser desincentivar que los niños midan sus logros comparándolos con los de sus pares.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan American Debating Championships", + "year": "2019", + "format": "", + "content": "In countries with proportional representation, THS founding political parties that exclusively represents women’s interests / En países con representación proporcional, EC apoya la creación de partidos políticos que representan exclusivamente los intereses de las mujeres.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan American Debating Championships", + "year": "2019", + "format": "", + "content": "THW prohibit businesses from adopting a public position on social justice issues (e.g. LGBTQIA+, racial relations, abortion, etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan American Debating Championships", + "year": "2019", + "format": "", + "content": "THS countries granting rights to nature.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan American Debating Championships", + "year": "2019", + "format": "", + "content": "EC preferiría unirse al Club de los 27 que vivir una vida anónima promedio.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Spanish_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan American Debating Championships", + "year": "2019", + "format": "", + "content": "En casos en que un funcionario público sea acusado de corrupción, EC reduciría el estándar probatorio al del “balance de probabilidades”* en vez del de la “duda razonable”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Spanish_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan American Debating Championships", + "year": "2019", + "format": "", + "content": "ECCQ el involucramientode Estados Unidos en Panama (presencia militar, influencia cultural, relaciones economicas estrechas, etc) beneficia a los panamenos.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Spanish_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2019", + "format": "", + "content": "THBT DINOs do more harm than good to the Democratic Party.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2019", + "format": "", + "content": "In minority communities, THW prioritize free access to university over higher standards of schools education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2019", + "format": "", + "content": "THW, as a parent, teach their daughters to devalue romantic relationships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2019", + "format": "", + "content": "As part of the post-conflict government transition, TH, as the US would have partitioned Iraq into 3 separate states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2019", + "format": "", + "content": "THW break up big tech companies (Amazon, Facebook, Google).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2019", + "format": "", + "content": "THBT liberal supreme courts should misinterpret the constitution to advance progressive rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2019", + "format": "", + "content": "The westminster model is a form of government in which the executive is drawn from the elected parliament (ie. Canada, UK, Australia ect.) The prime minister is the head of the largest party or coalition, and all the cabinet ministers are Members of Parliament. In a Presidential Executive only the President (and Vice President) are elected by the population and all cabinet positions (executive) are appointed by the President (ie. the United States, France). The President also normally does not have direct control over the legislature. Motion: THS the presidential executive over the westminster model.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2019", + "format": "", + "content": "THBT there is no moral obligation to follow the law.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2019", + "format": "", + "content": "Assuming that it would be illegal for anyone to become stateless, THW create a marketplace for the buying and selling of citizenship between private individuals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAW*DC", + "year": "2019", + "format": "", + "content": "THW make college admissions a randomized lottery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAW*DC", + "year": "2019", + "format": "", + "content": "THW record and publicize all criminal trial proceedings (eg, indictment hearings, testimonies, jury deliberations).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAW*DC", + "year": "2019", + "format": "", + "content": "THS international intervention in Venezuela.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAW*DC", + "year": "2019", + "format": "", + "content": "Assuming it could be done without placing the burden of secrecy on adults, THP a world in which individuals are unaware of the existence of organized religions for the duration of their childhood.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAW*DC", + "year": "2019", + "format": "", + "content": "THR the narrative of the American Dream.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAW*DC", + "year": "2019", + "format": "", + "content": "THR society's focus on the perspectives of mass murderers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAW*DC", + "year": "2019", + "format": "", + "content": "THBT western tech companies should actively pursue contracts with the Chinese government and Chinese firms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAW*DC", + "year": "2019", + "format": "", + "content": "TH, as the LGBTQ+ community, would boycott RuPaul's Drag Race.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAW*DC", + "year": "2019", + "format": "", + "content": "Assuming the public would never find out, THP historical narratives that prioritize equal representation throughout history, even if people and events need to be fabricated.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "THBT the US should abandon complete denuclearization as a prerequisite to easing sanctions on NK.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "THBT the US should abandon complete denuclearization as a prerequisite to easing sanctions on NK.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "THR the rise in political consumerism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "THR the rise in political consumerism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "Given a way to accurately measure an individual's empathy, THW only allow individuals with high levels of empathy for people beyond their immediate circle to vote in elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "Given a way to accurately measure an individual's empathy, THW only allow individuals with high levels of empathy for people beyond their immediate circle to vote in elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "THBT the IMF should require collateral in exchange for loans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "THBT the IMF should require collateral in exchange for loans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "TH, as the Pope, would abolish the concept of Hell.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "TH, as the Pope, would abolish the concept of Hell.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "THS the creation of a global citizenship market.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "THS the creation of a global citizenship market.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "TH, as the EPP, Would Expel Fidesz.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "TH, as the EPP, Would Expel Fidesz.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "In cities and areas with rapidly increasing housing costs, THW tax new residents and use the revenue to subsidize housing costs for citizens already residing in the area.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "In cities and areas with rapidly increasing housing costs, THW tax new residents and use the revenue to subsidize housing costs for citizens already residing in the area.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "THR the narrative that forgiveness is a virtue.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2019", + "format": "", + "content": "THR the narrative that forgiveness is a virtue.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Empire Debates", + "year": "2019", + "format": "", + "content": "THW establish a content rating system (e.g. the MPAA rating system for movies) for children’s and Young Adult literature - Round 2.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Empire Debates", + "year": "2019", + "format": "", + "content": "TH, as a hopeful for the Democratic presidential nomination, would not endorse Alexandria Ocasio-Cortez’s Green New Deal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Empire Debates", + "year": "2019", + "format": "", + "content": "THBT Muslim states in Asia (including but not limited to Malaysia, Indonesia, Afghanistan, etc) should participate in currency, finance, and resource unions with Arab states rather than regional powerhouses (e.g. China, India, Russia).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Empire Debates", + "year": "2019", + "format": "", + "content": "Assuming a world where superheroes exist, TH, as the United Nations, would regulate their engagement in conflicts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Empire Debates", + "year": "2019", + "format": "", + "content": "THBT in times of crisis that threaten the existence of a community (e.g., famine, war, plague, natural disaster, etc), capable individuals from the community have a moral obligation to dedicate their time directly towards ending the crisis instead of pursuing nonessential activities (e.g., playing sports, making non-propagandist/apolitical art, going on vacation to the beach, pursuing education irrelevant to the crisis, etc.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Empire Debates", + "year": "2019", + "format": "", + "content": "THW reallocate public school funding to create a voucher program for the poorest 10% of American households.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Empire Debates", + "year": "2019", + "format": "", + "content": "THBT the United States and its allies should abandon the use of gay rights diplomacy in developing nations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Empire Debates", + "year": "2019", + "format": "", + "content": "THR the concept of martyrdom.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Research Open", + "year": "2019", + "format": "", + "content": "THBT governments should stop funding scientific programmes that have no immediate benefit for humankind (such as space travel and exploration, human cloning).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Research Open", + "year": "2019", + "format": "", + "content": "THBT Western states should permanently revoke the citizenship of citizens who join terrorist organisations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Research Open", + "year": "2019", + "format": "", + "content": "TH regrets the EU’s introduction of freedom of movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Research Open", + "year": "2019", + "format": "", + "content": "THW suspend trade union powers and significantly relax labour protection laws in times of economic crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Research Open", + "year": "2019", + "format": "", + "content": "THBT causing deliberate harms to enemy civilians, by the weaker side, is a justified tactic in asymmetrical warfare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Research Open", + "year": "2019", + "format": "", + "content": "TH regrets the idealisation of motherhood.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Research Open", + "year": "2019", + "format": "", + "content": "THBT female political candidates in liberal democracies should not appeal to traditional female roles in their campaigns.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2019", + "format": "", + "content": "THBT the European Union should expel Hungary.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2019", + "format": "", + "content": "This House Supports the rise of websites that provide free access to open source and pay-wall protected academic resources.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2019", + "format": "", + "content": "issues that are classically seen as part of the political domain are increasingly decided on by courts through legislation. Examples include, but are not limited to: the Dutch state successfully being sued to take stronger measures against climate change (Urgenda) and forcing political parties to allow women as candidates (SGP), the British Supreme Court deciding whether the Lower House should have a vote on Brexit and Trumps measures being increasingly challenged in courts. Motion: THR the judicialisation of politics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2019", + "format": "", + "content": "THW allow natural persons to pay people not to vote.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2019", + "format": "", + "content": "THW choose the job they are passionate about.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2019", + "format": "", + "content": "This House prefers a world with a dominant norm of not expressing strong emotions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2019", + "format": "", + "content": "India, Malaysia, Singapore, Indonesia, Thailand, Japan, and South Korea. The structure of the alliance treaty replicates all the clauses of the NATO treaty. Motion: This House supports Asian NATO.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2019", + "format": "", + "content": "Dulce et decorum est Pro patria mori. Motion: This house believes that ”Dulce et Decorum Est pro Patria Mori” (i.e. the belief that it is sweet and right to die for your country).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2019", + "format": "", + "content": "THS civil rights activists using disruptive or violent civil disobedience as a tool of protest (e.g. the Stansted 15, Gilets Jaunes/Antifa movements).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2019", + "format": "", + "content": "THBT major film studios should substantially increase the number of lead roles for female villains in their blockbuster films.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2019", + "format": "", + "content": "THS a Unity Ticket by prominent members of the Republican and Democratic parties in the 2020 US presidential elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2019", + "format": "", + "content": "THW implement filial responsibility laws.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2019", + "format": "", + "content": "THBT states should actively attempt to make contact with Uncontacted Peoples and provide them with modern medicine and technology.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2019", + "format": "", + "content": "THR the trend of centring self-destructive/antisocial characters as protagonists in media (e.g. Bojack Horseman, Rick and Morty, Crazy Ex-Girlfriend, Sherlock, Mad Men…).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2019", + "format": "", + "content": "THBT developing countries should actively discourage the creation of primate cities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2019", + "format": "", + "content": "TH prefers a world with a widespread belief in Radical Freedom.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2019", + "format": "", + "content": "THBT the scientific community should reject the view that science and religion are non-overlapping magisteria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GWU IV / US Universities Debate Eastern Championship", + "year": "2019", + "format": "", + "content": "THW ban embedded journalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GWU IV / US Universities Debate Eastern Championship", + "year": "2019", + "format": "", + "content": "THW publicly televise the execution of death row inmates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GWU IV / US Universities Debate Eastern Championship", + "year": "2019", + "format": "", + "content": "THW actively relocate unemployed people living in areas of high and structural unemployment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GWU IV / US Universities Debate Eastern Championship", + "year": "2019", + "format": "", + "content": "THW provide amnesty to violent political dissidents in exchange for removing their ability to vote or run for public office, e.g. the integration of FARC rebels into Colombia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GWU IV / US Universities Debate Eastern Championship", + "year": "2019", + "format": "", + "content": "THBT professionals should have the right to refuse to provide their services based on religous grounds.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GWU IV / US Universities Debate Eastern Championship", + "year": "2019", + "format": "", + "content": "THW give land grants to women in developing nations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GWU IV / US Universities Debate Eastern Championship", + "year": "2019", + "format": "", + "content": "This house, as an upper-middle-class African American, would resettle in Africa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GWU IV / US Universities Debate Eastern Championship", + "year": "2019", + "format": "", + "content": "Assuming feasibility, THW sacrifice the rich.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PEP IV", + "year": "2019", + "format": "", + "content": "THW give two votes to members of disenfranchised ethnic minorities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PEP IV", + "year": "2019", + "format": "", + "content": "THW ban TalkToys.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PEP IV", + "year": "2019", + "format": "", + "content": "THBT liberal democrats should provide financial and legal aid to their citizens who wish to permanently migrate abroad.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PEP IV", + "year": "2019", + "format": "", + "content": "THBT Asian countries should pivot away from US and seeker closer ties with China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PEP IV", + "year": "2019", + "format": "", + "content": "THBT Pope Francis should take radical action to convince Catholics to vote only for political parties who promote redistributive policies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PEP IV", + "year": "2019", + "format": "", + "content": "THBT states should prioritise the lives of their own soldiers over those of enemy non-combatants.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PEP IV", + "year": "2019", + "format": "", + "content": "THR the decline of Marxism in Western Europe.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FLTRP Training Beijing Debate Open", + "year": "2019", + "format": "", + "content": "thw ban personal accolades in team sports.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FLTRP Training Beijing Debate Open", + "year": "2019", + "format": "", + "content": "thw make it a war crime to kill child soldiers in any circumstance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FLTRP Training Beijing Debate Open", + "year": "2019", + "format": "", + "content": "in developing nations, thbt workers should be allowed to trade off their employment benefits (eg pensions, health insurance, protections from labor laws) in exchange for higher wages.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FLTRP Training Beijing Debate Open", + "year": "2019", + "format": "", + "content": "th, as the actress would accept the role.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FLTRP Training Beijing Debate Open", + "year": "2019", + "format": "", + "content": "thw subsidize youths that opt into entrepreneurship instead of pursuing university degrees (designing, launching, and running a new business eg start ups).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FLTRP Training Beijing Debate Open", + "year": "2019", + "format": "", + "content": "thw relocate refugees to countries based solely on the receiving countries' level of economic wealth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FLTRP Training Beijing Debate Open", + "year": "2019", + "format": "", + "content": "thr the recreational ownership of pets.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FLTRP Training Beijing Debate Open", + "year": "2019", + "format": "", + "content": "th, as the us Democrats, would agree to fund trump's border wall in exchange for increased gun control measures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FLTRP Training Beijing Debate Open", + "year": "2019", + "format": "", + "content": "thr the glorification of altruism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FLTRP Training Beijing Debate Open", + "year": "2019", + "format": "", + "content": "thw set a cap on the personal wealth an individual is allowed to own (including the value of shares that individuals own in companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cornell Novice Nationals 2019 & Cornell IV", + "year": "2019", + "format": "", + "content": "THW actively instill a value of disobeying authority in children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cornell Novice Nationals 2019 & Cornell IV", + "year": "2019", + "format": "", + "content": "TH as the US would never militarily intervene in other countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cornell Novice Nationals 2019 & Cornell IV", + "year": "2019", + "format": "", + "content": "THR the westernization of the elites in post-colonial countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cornell Novice Nationals 2019 & Cornell IV", + "year": "2019", + "format": "", + "content": "THBT being single is preferable to being in a relationship.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cornell Novice Nationals 2019 & Cornell IV", + "year": "2019", + "format": "", + "content": "THBT liberal media organisations should actively glorify democratic candidates of color.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cornell Novice Nationals 2019 & Cornell IV", + "year": "2019", + "format": "", + "content": "THBT it is always unjustifiable to maintain friendship with somebody who use hate speech.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cornell Novice Nationals 2019 & Cornell IV", + "year": "2019", + "format": "", + "content": "THR the celebration of soldiers as heroes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cornell Novice Nationals 2019 & Cornell IV", + "year": "2019", + "format": "", + "content": "Assuming that technology to do so existed, THW would progressively tax happiness and redistribute it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cornell Novice Nationals 2019 & Cornell IV", + "year": "2019", + "format": "", + "content": "TH, as an Asian American, would not support the suit against Harvard University.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cornell Novice Nationals 2019 & Cornell IV", + "year": "2019", + "format": "", + "content": "THS the idea of authoritarian reformers in developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Research Open", + "year": "2019", + "format": "", + "content": "THBT governments should stop funding scientific programmes that have no immediate benefit for humankind (such as space travel and exploration, human cloning).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Research Open", + "year": "2019", + "format": "", + "content": "THBT Western states should permanently revoke the citizenship of citizens who join terrorist organisations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Research Open", + "year": "2019", + "format": "", + "content": "TH regrets the EU’s introduction of freedom of movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Research Open", + "year": "2019", + "format": "", + "content": "THW suspend trade union powers and significantly relax labour protection laws in times of economic crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Research Open", + "year": "2019", + "format": "", + "content": "THBT causing deliberate harms to enemy civilians, by the weaker side, is a justified tactic in asymmetrical warfare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Research Open", + "year": "2019", + "format": "", + "content": "TH regrets the idealisation of motherhood.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Research Open", + "year": "2019", + "format": "", + "content": "THW never enter into a relationship with a closeted individual.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Research Open", + "year": "2019", + "format": "", + "content": "THBT female political candidates in liberal democracies should not appeal to traditional female roles in their campaigns.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UDP Open", + "year": "2019", + "format": "", + "content": "THBT European countries should change school syllabuses to disproportionally emphasis Arab and Islamic contributions to European culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UDP Open", + "year": "2019", + "format": "", + "content": "THW hold the Catholic Church legally responsible for sexual abuse, harrasment and grooming committed by clergy members.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UDP Open", + "year": "2019", + "format": "", + "content": "THBT the BDS movement reduces the likelihood of a two state solution to the Israeli-Palestinian conflict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UDP Open", + "year": "2019", + "format": "", + "content": "Given the technology was available, THW allow the sale of personality traits and characteristics (such as IQ, musicality and determination).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UDP Open", + "year": "2019", + "format": "", + "content": "THW grant Maduro and main officials of the Venezuelan regime amnesty in exchange for handing power over to Juan Guadio.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UDP Open", + "year": "2019", + "format": "", + "content": "TH as a Yellow Vest, supports attempts by Les Emergents to run for elections in European and French elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berkeley IV", + "year": "2019", + "format": "", + "content": "THBT housing activists in San Francisco should advocate for the abolition of zoning regulations rather than increased rent control..", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berkeley IV", + "year": "2019", + "format": "", + "content": "For nonviolent infractions (e.g. failure to pay tax or debts, possession of illict substances), THP an individual social credit system over incarceration.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berkeley IV", + "year": "2019", + "format": "", + "content": "THBT liberal media outlets should prioritize sensational reporting (e.g., Daily Kos, Young Turks) over neutral journalism (e.g., CNN, New York Times).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berkeley IV", + "year": "2019", + "format": "", + "content": "THBT environmental activists should reject eco-friendly public-private partnerships and insist on stricter environmental regulations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berkeley IV", + "year": "2019", + "format": "", + "content": "THBT search engine algorithms and results should not be protected by the First Amendment as editorial speech.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berkeley IV", + "year": "2019", + "format": "", + "content": "THBT it is in the interest of Britain to have a second referendum on Brexit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berkeley IV", + "year": "2019", + "format": "", + "content": "THBT capitalism and feminism are fundamentally incompatible.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The PES Debate Open", + "year": "2019", + "format": "", + "content": "This House would allow people raised in isolated communities (e.g. the Amish, Hasidic Jews) to sue their communities for harms caused by their lifestyle.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The PES Debate Open", + "year": "2019", + "format": "", + "content": "TH, as the US Democrats, would give funding for the border wall in order to definitively end the government shutdown.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The PES Debate Open", + "year": "2019", + "format": "", + "content": "This House regrets mainstream media's popularization of Western drag culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The PES Debate Open", + "year": "2019", + "format": "", + "content": "THBT liberal states should fund the hacking of infrastructure designed to limit freedom of speech in authoritarian states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The PES Debate Open", + "year": "2019", + "format": "", + "content": "This House regrets the increasing presence of nihilism in popular culture (eg. BoJack Horseman, Rick and Morty, Nihilist Memes etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The PES Debate Open", + "year": "2019", + "format": "", + "content": "This House prefers a world where everybody believes in the concept of a sleeping God rather than an active God.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The PES Debate Open", + "year": "2019", + "format": "", + "content": "This House would rather be a part of the \"Club 27\" than live an average anonymous life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The PES Debate Open", + "year": "2019", + "format": "", + "content": "This House believes that Tech Giants (e.g. Google, Amazon, Facebook) should NOT be permitted to sue for patent infringement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The PES Debate Open", + "year": "2019", + "format": "", + "content": "This House believes that the world was better 10 years ago #tenyearchallenge.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2019", + "format": "", + "content": "THS universal basic income rather than conditional welfare programs (such as unemployment and food stamps).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2019", + "format": "", + "content": "THBT Scotland should immediately announce a second referendum on independence from the UK.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2019", + "format": "", + "content": "Given political feasibility, TH prefers a carbon tax to cap-and-trade.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2019", + "format": "", + "content": "THBT the LGBTQ+ movement should not have focused on military inclusion as a major policy initiative.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2019", + "format": "", + "content": "THBT states should not publicly subsidize the production or display of art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2019", + "format": "", + "content": "THBT the United States should offer significant military aid, lifting of sanctions, and economic aid to the Venezuelan military if they oust Maduro and support Guaido.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2019", + "format": "", + "content": "TH, as Canada, would not extradite Meng Wanzhou to the United States.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2019", + "format": "", + "content": "THBT the threater and musical community should abandon the \"no-change\" norm.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2019", + "format": "", + "content": "THBT popular referenda should be banned in Western liberal democracies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2019", + "format": "", + "content": "TH, as Canada, would not extradite Meng Wanzhou to the United States.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2019", + "format": "", + "content": "THBT the threater and musical community should abandon the \"no-change\" norm.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2019", + "format": "", + "content": "THBT every billionaire is a policy failure.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Washington University", + "year": "2019", + "format": "", + "content": "The GOP should seek to run an alternate candidate to compete with Trump during the presidential primaries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Washington University", + "year": "2019", + "format": "", + "content": "This House Would hold a second binding referendum on whether the UK should leave the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Washington University", + "year": "2019", + "format": "", + "content": "This House Regrets the feminist movement's devaluation of traditionally feminine roles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Washington University", + "year": "2019", + "format": "", + "content": "This House Regrets the increased prevalence of hostile architecture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Washington University", + "year": "2019", + "format": "", + "content": "This House Would not intervene in the internal affairs of Venezuela.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Washington University", + "year": "2019", + "format": "", + "content": "This House Believes That acts of political protest that intentionally result in the death of an individual protester should not be stopped by others (for example: self immolation, in protest of Tibet).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Washington University", + "year": "2019", + "format": "", + "content": "This House Believes That acts of political protest that intentionally result in the death of an individual protester should not be stopped by others (for example: self immolation, in protest of Tibet).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Washington University", + "year": "2019", + "format": "", + "content": "This House, the US Congress, Should enforce the war powers act by limiting the ability of the executive branch to independently use military force against or within the boundaries of sovereign nations, except when authorized by Congress.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2019", + "format": "", + "content": "THP a world without state-funded news organizations (e.g. BBC, AlJazeera, China Xinuan News, Russia Today (RT), etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2019", + "format": "", + "content": "THW expand the legal definition of a \"false police report\" to include reports made with minimal information, or reports that could reasonably be considered unnecessary.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2019", + "format": "", + "content": "THBT the development of highly realistic virtual reality technology for recreational use does more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2019", + "format": "", + "content": "THP state capitalism over liberal capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2019", + "format": "", + "content": "THS governments donating the organs of an individual after death, even against the wishes of that person or their family.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2019", + "format": "", + "content": "THW require participants of institutions from former colonial powers to pay higher registration fees when attending large-scale international events (such as academic conferences, sporting events, debate tournaments, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2019", + "format": "", + "content": "TH as the OIC would cease business with China (eg freezing assets, boycotting firms, imposing tarrifs, imposing sanctions) until the Uighurs are given safety and religious liberty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2019", + "format": "", + "content": "THBT disruptions of the government (eg fillibusters, civil servant strikes, and government shutdowns) are a legitimate political tool.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2019", + "format": "", + "content": "THBT extreme economic need should be grounds for asylum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2019", + "format": "", + "content": "Given a trade-off, THW direct environmental policy towards mitigation of climate change, rather than prevention.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2019", + "format": "", + "content": "THW make Ulysses contracts legally enforceable.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2019", + "format": "", + "content": "THW require all professional football teams to be majority-owned by their fans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2019", + "format": "", + "content": "TH, as Turkey, would heavily align its foreign policy agenda towards Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2019", + "format": "", + "content": "THW prohibit the media from reporting on the mental illness of those accused of crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campus-Debatte Wien", + "year": "2019", + "format": "", + "content": "This House would abolish prisons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campus-Debatte Wien", + "year": "2019", + "format": "", + "content": "This House regrets the thought of the \"Zero Hour.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campus-Debatte Wien", + "year": "2019", + "format": "", + "content": "This House believes that all states should create and publish a list of those financial institutions that would be saved by Bail-Out in a crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campus-Debatte Wien", + "year": "2019", + "format": "", + "content": "This house would abolish the Womens’ League in chess.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campus-Debatte Wien", + "year": "2019", + "format": "", + "content": "This house prefers the transhumanist world to the current state of humanity in the western world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campus-Debatte Wien", + "year": "2019", + "format": "", + "content": "This house prefers a post-growth society to a society geared towards growth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House, as South Africa, would forcibly break up exclusive Afrikaaner enclaves.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House believes that the protections of international law conventions and treaties should not apply to combatants from terrorist organisations (e.g. prohibition on torture, prisoner of war status, guarantee of post-conflict release).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House opposes the norm that romantic love should be the primary source of fulfilment in a person's life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House believes that the ongoing process of decolonisation should include actively disempowering religions that were imposed on the country during colonialism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House would implement substantial measures to impose long-termism in corporate investment culture (e.g. minimum holding periods for shares, yearly rather than quarterly financial reporting, long-term executive compensation plans).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House supports granting megacities autonomous control over their economic and social policy (e.g. immigration, health, criminal justice) with national taxation policy remaining under the control of the federal government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House would actively encourage women not to have children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House believes that the United States should disengage from Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House believes that developing countries should privatise their State-Owned Enterprises (such as airlines, railway utility companies).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House would grant individuals and organisations open standing to challenge the constitutionality of laws enacted by their government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House believes that it is unjustified to assist evil regimes in systematically persecuting members of their identity group in order to mitigate and moderate the regime's abuses (e.g. Israel Kasztner in Nazi-controlled Hungary, Wang Jingwei in Japan-occupied China).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House would subsidise art that glorifies the working class.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House supports governments significantly increasing their use of big data-based predictive models in decision-making to replace human judgements (e.g. criminal justice policy, allocation of healthcare resources, housing development).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "In the lead up to the 1994 negotiated settlement in South Africa, this house believes that the ANC should have demanded further concessions (e.g. removing the amnesty provision in the TRC, greater land and economic rights) even at the expense of prolonging the conflict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House believes that the WHO should adopt a convention which bans the sell of drugs with high resistance tendencies (e.g. antibiotics) to countries which do not comply with WHO guidelines regarding their medical and agricultural use.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Partial_Double_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House believes that an approach of Political Expansionism on the part of the Chinese state is in the interests of the Chinese people.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House supports a norm of embracing anger in public discourse rather than one of aspiring to dispassionate objectivity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House would impose a narrow banking regulation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town WUDC", + "year": "2019", + "format": "", + "content": "This House believes that the present condition of humanity is preferable to its condition in 100 years time.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2018", + "format": "", + "content": "TH opposes the ownership of pets.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2018", + "format": "", + "content": "TH regrets the romanticisation of art that is pursued for non-material gain (e.g. glorifying the ‘Starving Artist’).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2018", + "format": "", + "content": "THW abandon African Union plans for a single currency.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2018", + "format": "", + "content": "In states with a significant ethnic minority population, TH supports the creation of political parties solely pursuing the interests of an ethnic minority group.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2018", + "format": "", + "content": "TH supports the use of mirroring in popular culture (eg. music videos, movies, art, literature, etc.) (Mirroring is the performance or reversal of stereotypically misogynist actions by women, often for feminist purposes: eg. reverse cat-calling.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2018", + "format": "", + "content": "TH believes that governments should oppose the formation of education hierarchies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2018", + "format": "", + "content": "TH supports the full separation of religious and political activities in Muslim-majority States.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2018", + "format": "", + "content": "TH prefers a world where co-parenting is primarily non-romantic (conducted by consenting partners who have no romantic or sexual relationship, eg. friends).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2018", + "format": "", + "content": "This house would require companies to hire a significant percentage of employees without university degrees across all levels of their organisation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2018", + "format": "", + "content": "THBT the EU should cut structural funds to member states that undermine civil and political rights (e.g. restrict court independence, reduce media and academic freedom, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2018", + "format": "", + "content": "Assuming the existence of empathy enhancement drugs, THW ban such drugs*.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2018", + "format": "", + "content": "THW make the weight of votes proportional to a person’s expected remaining lifespan*.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2018", + "format": "", + "content": "TH prefers a world in which people can’t lie.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2018", + "format": "", + "content": "THBT feminist movements should integrate religious messages and institutions into their advocacy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2018", + "format": "", + "content": "THW ban private military contractors.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2018", + "format": "", + "content": "THW prefer a world where wealth is seen as shameful.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PAUDC Tanzania", + "year": "2018", + "format": "", + "content": "THS the Comprehensive Sexuality Education programme in elementary schools in Africa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PAUDC Tanzania", + "year": "2018", + "format": "", + "content": "THW reallocate revenues from such industries (e.g mining) to exclusively fund Universal basic healthcare for the poor.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PAUDC Tanzania", + "year": "2018", + "format": "", + "content": "THBT Liberal Democracies have an Obligation to declare all Major Cities in their Countries as Sanctuary Cities. #PAUDC2018 #Akofena19.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PAUDC Tanzania", + "year": "2018", + "format": "", + "content": "This House Believes that the AU should exclusively regulate the implementation of the Belt and Road Initiative in Africa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2018", + "format": "", + "content": "THW require all isolated religious communities (eg. Hasidic Jews, Jehovah's Witnesses, etc.) to give all 18-year-olds a 'Rumspringa'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2018", + "format": "", + "content": "THW significantly tax vacant homes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2018", + "format": "", + "content": "THW ban media sources from taking institutional stances on the innocence or guilt of people who have been charged with a crime, but not yet convicted or acquitted.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2018", + "format": "", + "content": "THBT environmental organizations should start a campaign of sabotage and destruction against major pollution companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2018", + "format": "", + "content": "This house regrets South Africa's rainbow nation narrative.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2018", + "format": "", + "content": "THW pay politicians the median wage in their country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2018", + "format": "", + "content": "TH prefers a world in which children are raised to aspire to be single rather than married.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2018", + "format": "", + "content": "This house believes that the southern african development community (SADC) should pursue political union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2018", + "format": "", + "content": "TH regrets art that glorifies gaining material wealth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2018", + "format": "", + "content": "THBT the ACLU should work to maximize civil liberties regardless of ideology.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "After a speaker has been invited, THW allow university students to vote to reject the speaker from coming to campus.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "This house regrets the rise of the gig economy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "THBT LGBT+ Pride campaigns should focus on direct protest rather than celebration.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "THBT it is in the interests of the four central Asian states to establish the CAU.", + "infoSlide": "The Central Asian Union (CAU) was a tentative agreement to establish greater regional cooperation among Kazakhstan, Kyrgyzstan, Tajikistan, and Uzbekistan following the dissolution of the USSR. This included a collective peacekeeping force, closer economic integration (e.g. negotiating as a bloc in international trade agreements, a proposed common currency), and coordinating on foreign policy. The CAU was never fully realized.", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "TH, as a western democracy, would prefer relations with a stable autocracy as opposed to an unstable democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "THW require sporting teams that recruit internationally to pay recruits to compete in domestic leagues for a period of time before leaving to play abroad.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "Assuming the technology to significantly alters the body exists (eg, changing memory capacity, limb reinforcements...) thw recognize a right to morphological freedom.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "THW release the Federal Reserve from the dual mandate.", + "infoSlide": "Since 1977, the US Federal Reserve has operated under a \"dual mandate\" from Congress to pursue full employment and low inflation. Under traditional macroeconomic theory, there is a tradeoff between these states exemplified in the Phillips Curve. Other central banks have different mandates; e.g., the European Central Bank has a singular focus on price stability.", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "TH, as an indvidual, W not consume works produced by immoral artists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "This house would become a scientist.", + "infoSlide": "You are a citizen in a state that issues a mandatory aptitude test. You are not required to pursue a career based on the results of the test. You scored the highest in your country on math and science, you are predicted to be one of the best scientists of your generation. You are also a very talented artist. Your true passion lies in art.", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "Many food ethics movements (local foods, slow foods, farm to table) condemn corporate production. Such as Farm to Table (add examples)\tTHBT food ethics movements should disavow sustainable consumption marketed by large corporations (eg, Starbucks, Chipotle).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "This house would publicly fund all elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "Assuming that no other life existed in the galaxy, THW prefer a humanity that collectively expands and colonizes other planets to one that preserves and adapts to the Earth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "THBT cities should not use investment incentives to attract businesses.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "This house would pardon all deserters at the end of major war campaigns.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "TH, as the UN, would facilitate independence referendums when requested by semi-autonomous regions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "In post-conflict societies, TH prefers the creation of art with an inspirational and unifying message over art that depicts the prior or current suffering.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "You are presented with a choice before you are born. You can be born into this world, or you can be born into a world without any religion or spirituality. Regardless of your choice, once born, you will not remember having made such a choice.\tTHW choose to be born in a world without religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2018", + "format": "", + "content": "This house supports the creation of charter cities in developing nations.", + "infoSlide": " \"Charter Cities\" are tracts of uninhabited land set aside by host nations that would be semi-autonomous and administered by a developing third-party government. Citizens of the host nation could move in and out as they so desire. In recent years, Honduras has explored the option of establishing a charter city administered by the Canadian government.", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2018", + "format": "", + "content": "TH opposes the attempts by the feminist movement to redefine roles and behaviours traditionally associated with women (e.g. wanting to be a housewife, wearing make-up and heels) as empowering.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2018", + "format": "", + "content": "THS countries withdrawing from the International Criminal Court in order to create their own regional replacements (e.g. an African Criminal Court, an InterAmerican Criminal Court).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2018", + "format": "", + "content": "In areas of chronically low academic attainment, THBT the general approach of educational charities should be to focus resources on maximising the potential of exceptional students, over helping the lowest achieving.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2018", + "format": "", + "content": "THS the rise of computational creativity.", + "infoSlide": "Computational Creativity is a scientific field researching AI models that simulate or replicate human creativity. Projects in the field include but are not limited to using AI to script films, compose music, write poetry, and paint.", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2018", + "format": "", + "content": "THW give legislative veto power to a Future Generations Commission.", + "infoSlide": "For the purposes of this debate, a 'Future Generations Commission' is an independent body mandated with mapping the long-term impacts of governmental policy on the young, or unborn generations.", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2018", + "format": "", + "content": "Where resources are significantly limited, THBT states should actively promote religion in areas of high poverty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2018", + "format": "", + "content": "TH prefers a world in which all children are conceived with DNA from a global genetic database.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2018", + "format": "", + "content": "THBT it is immoral for individuals who have met their basic needs to not donate any excess wealth to utility maximising causes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2018", + "format": "", + "content": "Actually, THW rather see one innocent man go to jail than see 100 guilty men walk free.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2018", + "format": "", + "content": "THR 'Operation Car Wash'.", + "infoSlide": "'Operation Car Wash' is a broad investigation conducted in Brazil that revealed extensive corruption. As a result of the operation, the left-leaning Workers' Party have lost power, and far-right candidate Jair Bolsonaro has been elected president.", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2018", + "format": "", + "content": "From behind a veil of ignorance, TH would choose to not be born.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCLA IV", + "year": "2018", + "format": "", + "content": "Ban football for minors.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCLA IV", + "year": "2018", + "format": "", + "content": "Democrats should abandon identity politics as a central tenant of their campaigning strategy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCLA IV", + "year": "2018", + "format": "", + "content": "Ban the use of persistent surveillance systems by police forces.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCLA IV", + "year": "2018", + "format": "", + "content": "Given the technology to grant immortality exists, it would be treated as a positive right.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCLA IV", + "year": "2018", + "format": "", + "content": "The dangers of fat acceptance outweigh the harms of fat shaming.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCLA IV", + "year": "2018", + "format": "", + "content": "The Trump administration should abandon its widespread use of tariffs as a tool to boost the US economy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCLA IV", + "year": "2018", + "format": "", + "content": "The United States should cease all diplomatic and military operations in the Middle East.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCLA IV", + "year": "2018", + "format": "", + "content": "State governments should refuse to uphold mandates from the Supreme Court of the United States.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2018", + "format": "", + "content": "Assuming feasibility, THW ban all research into the possible genetic origins of sex, race and sexuality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2018", + "format": "", + "content": "THBT environmental advocacy groups should prioritise lobbying governments to change environmental policy (e.g. cap and trade policies, banning environmentally harmful chemicals) rather than convincing individuals to take responsibility for their contribution to environmental damage (e.g. reducing/recycling waste, taking public transport).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2018", + "format": "", + "content": "TH, as Israel, would end compulsory military service.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2018", + "format": "", + "content": "THR the depiction of the everyday life of people with disabilities as inspirational.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2018", + "format": "", + "content": "THBT the South African government should incentivize the movement of people out of townships, rather than focus on policies that try to economically develop townships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2018", + "format": "", + "content": "THBT the US should cut all political, economic and military ties with Saudi Arabia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2018", + "format": "", + "content": "THBT social movements should reject the glorification of political violence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2018", + "format": "", + "content": "THBT post-conflict states should actively promote a unifying national narrative in the history curriculum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2018", + "format": "", + "content": "THW allow city and local governments to be held civilly responsible for deaths that can be ascribed to homelessness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2018", + "format": "", + "content": "THBT the use of erotic capital by women does more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2018", + "format": "", + "content": "THP a world where people believe you should maximize productivity to a world where people believe you should maximize leisure.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2018", + "format": "", + "content": "THW eliminate trial by jury and replace it with trial by judge.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2018", + "format": "", + "content": "As an author of a non-colonial language (Inuktitut, isiXhosa, Gikuyu, etc) THW only write in one's native language.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2018", + "format": "", + "content": "Assuming the two are mutually exclusive, THW prefer wage subsidies over a raised minimum wage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2018", + "format": "", + "content": "THW allow for free and open use of CRISPR technology in all medical research.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2018", + "format": "", + "content": "Other than a prospective student's net family income, THW remove all social factors (ie, race, gender, disability status) from university admissions' decision processes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2018", + "format": "", + "content": "thbt the search for new, habitable planets should be prioritized in space exploration.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2018", + "format": "", + "content": "THBT Canada should take the lead in seeking the diplomatic isolation Saudi Arabia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2018", + "format": "", + "content": "THW hold social media companies legally liable for content on their platform.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2018", + "format": "", + "content": "TH prefers a world where romantic relationships are initiated by an algorithm that matches prospective partners to a near-perfect degree.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Penguin Invitational", + "year": "2018", + "format": "", + "content": "This House would create a military space force.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Penguin Invitational", + "year": "2018", + "format": "", + "content": "This House would require all voters to attend civic education classes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Penguin Invitational", + "year": "2018", + "format": "", + "content": "THBT science is the key to human flourishing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Penguin Invitational", + "year": "2018", + "format": "", + "content": "As the US Federal Government, THW significantly increase spending on foreign aid.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Penguin Invitational", + "year": "2018", + "format": "", + "content": "THBT social media is ruining democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Penguin Invitational", + "year": "2018", + "format": "", + "content": "THBT affirmative action should be scrapped.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Penguin Invitational", + "year": "2018", + "format": "", + "content": "TH encourages fluidity in expressions of identity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Penguin Invitational", + "year": "2018", + "format": "", + "content": "THW have elected representatives take an oath to pursue policies only if those policies are supported by a significant majority of their constituents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IUT Professionals", + "year": "2018", + "format": "", + "content": "THW abandon the use of Hierarchical Diversity Targets.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IUT Professionals", + "year": "2018", + "format": "", + "content": "TH as Israel would no longer label itself a Jewish nation state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IUT Professionals", + "year": "2018", + "format": "", + "content": "TH regrets the glorification of the pursuit of meaning of life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IUT Professionals", + "year": "2018", + "format": "", + "content": "TH, as European nations, would grant citizenship to refugees who would sign up for the military.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IUT Professionals", + "year": "2018", + "format": "", + "content": "TH prefers a world in which individuals actively use their sexual equity for personal and professional gain.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IUT Professionals", + "year": "2018", + "format": "", + "content": "THBT governments should require the portfolios of all multinational e-commerce companies (Amazon, Alibaba, Rakuten etc) to constitute of a minimum 50% of local products in value.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IUT Professionals", + "year": "2018", + "format": "", + "content": "TH supports rainbow capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IUT Professionals", + "year": "2018", + "format": "", + "content": "THW ONLY SELECT INDIVIDUALS WITH THE BEST CREDENTIALS IN SCIENCE AND TECHNOLOGY.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2018", + "format": "", + "content": "THR the presence of “career politicians”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2018", + "format": "", + "content": "THBT writers and owners of popular canons* have a moral obligation to follow the general and clear wishes of fans (e.g. JK Rowling (Harry Potter UNiverse), Disney (Star Wars), George RR Martin (Game of Thrones Universe)).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2018", + "format": "", + "content": "TH prefers sports leagues that are financially unregulated.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2018", + "format": "", + "content": "TH embraces the collection by governments and corporate entities of a significant amount of data about individuals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2018", + "format": "", + "content": "THW disestablish all local councils and authorities in developed nations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2018", + "format": "", + "content": "THBT galleries and media outlets should not show content that is “of the time” but now considered offensive (e.g. racist stereotypes in the Simpsons, homophobic works of art).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2018", + "format": "", + "content": "As the democrat party, THW nominate Hillary Clinton (assuming she makes herself available) as the democrat candidate for the 2020 presidential elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Cologne Open", + "year": "2018", + "format": "", + "content": "This House regrets the societal expectation of going to the University.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Cologne Open", + "year": "2018", + "format": "", + "content": "This House would introduce quotas for women in League of Legends Esports teams.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Cologne Open", + "year": "2018", + "format": "", + "content": "This House believes that the West should impose an arms embargo on Saudi Arabia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Cologne Open", + "year": "2018", + "format": "", + "content": "Assuming the technology existed, This House would allow the use of technology X.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Cologne Open", + "year": "2018", + "format": "", + "content": "In states with high rates of violent crime This House supports assassination of individuals credibly accused of participating in organized crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Cologne Open", + "year": "2018", + "format": "", + "content": "This House regrets the demonization of Donald Trump.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Cologne Open", + "year": "2018", + "format": "", + "content": "This House believes that the open immigration policy is not good for Germany.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Cologne Open", + "year": "2018", + "format": "", + "content": "Assuming that a technology exists that can accurately measure and transfer intelligence This House would radically redistribute intelligence among the population.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2018", + "format": "", + "content": "This House would remove quarterly reporting requirements for publicly traded companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2018", + "format": "", + "content": "This House believes that prominent institutions in marginalized communities (churches, schools, community centres, etc.) should practice the politics of respectability.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2018", + "format": "", + "content": "This House supports the US's use of economic warfare (tariffs, targeted sanctions, etc.) against China in order to force compliance with the rules of the global neoliberal economic order (opening up its economy, protecting intellectual property, not engaging in currency manipulation, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2018", + "format": "", + "content": "This House would remove all health restrictions for prospective adoptive parents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2018", + "format": "", + "content": "This House believes that developing countries should never commit to having their sovereign debt disputes settled by courts in foreign countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2018", + "format": "", + "content": "In countries with vigorously contested campaign contribution regulations, this House believes that the political left should not contest the premise that money is speech and should, instead, contest how that speech is regulated.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2018", + "format": "", + "content": "This House believes that the horrors of history are incompatible with a belief in a Judeo-Christian God.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2018", + "format": "", + "content": "In a plurality of cases, this House believes that the \"me too\" movement should, on balance, prioritize a path towards redemption over retribution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2018", + "format": "", + "content": "In legal systems where constitutional courts practice judicial review, this House would apply the \"no precedential effect rule\" to judgments by single judge margins.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2018", + "format": "", + "content": "This House would legalize and train sex workers specifically to work with disabled people.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sofia Open", + "year": "2018", + "format": "", + "content": "THW allow people to sue partners who cheated on them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sofia Open", + "year": "2018", + "format": "", + "content": "THBT Putin is good for Russian power on the international stage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sofia Open", + "year": "2018", + "format": "", + "content": "THBT the Bulgarian government should pay reparations to all those who were subjected to the Revival process.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sofia Open", + "year": "2018", + "format": "", + "content": "THBT the western companies and investors should pull out of the Saudi Arabia's Neom project.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sofia Open", + "year": "2018", + "format": "", + "content": "THR the increasing presence of nihilism in popular culture (eg. BoJack Horseman, Rick and Morty etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sofia Open", + "year": "2018", + "format": "", + "content": "TH prefers to be an averagely intelligent person to a genius.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sofia Open", + "year": "2018", + "format": "", + "content": "THBT it is NOT legitimate to shame public figures for non:criminal actions they did when they were young (eg. partying, alcohol consumption, soft drugs use, political views etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rocky Mountain IV", + "year": "2018", + "format": "", + "content": "THW mandate retirement from Congress at age 65.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rocky Mountain IV", + "year": "2018", + "format": "", + "content": "This house, as a Palestinian, would advocate for a 1-state solution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rocky Mountain IV", + "year": "2018", + "format": "", + "content": "THBT universities that invite controversial speakers should be required, within a reasonable time frame, to invite a speaker that supports the other side of the controversy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rocky Mountain IV", + "year": "2018", + "format": "", + "content": "THBT the feminist movement should actively recruit conservative women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rocky Mountain IV", + "year": "2018", + "format": "", + "content": "Assuming Democratic control of the House, THBT the Democrats should prioritize the impeachment of President Trump.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rocky Mountain IV", + "year": "2018", + "format": "", + "content": "TH supports ANTIFA. Good luck everyone.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rocky Mountain IV", + "year": "2018", + "format": "", + "content": "“The premises of this mission should be inviolable. The agents of the receiving state may not enter them, except with the consent of the head of the mission.” Motion: THW repeal Article 22 Subsection 1 of the 1961 Vienna Convention on Diplomatic Relations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rocky Mountain IV", + "year": "2018", + "format": "", + "content": "THW create specific zones where community members can legally participate in nonviolent, illicit behavior (e.g. sex work, drug use).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joensuu Mini", + "year": "2018", + "format": "", + "content": "THR the decline of tightly integrated families.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joensuu Mini", + "year": "2018", + "format": "", + "content": "THBT governments should actively incentivice people to move away from areas with few viable economic activities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joensuu Mini", + "year": "2018", + "format": "", + "content": "THW take the blue pill.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joensuu Mini", + "year": "2018", + "format": "", + "content": "THBT the United States should return to the policy of pressuring and sanctioning North Korea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joensuu Mini", + "year": "2018", + "format": "", + "content": "THW ban the media from reporting on ongoing sex offence trials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joensuu Mini", + "year": "2018", + "format": "", + "content": "THW welcome the downfall of global capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2018", + "format": "", + "content": "THS an Opinio System of Education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2018", + "format": "", + "content": "THS recall elections for national leaders (i.e. presidents, prime:ministers, ministers).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2018", + "format": "", + "content": "TH as the EU would significantly increase sanctions on Russia as opposed to lifting them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2018", + "format": "", + "content": "THBT parents should teach morality to their underage children through religious context (e.g. “it is a sin to lie”; \"help thy neighbor\" etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2018", + "format": "", + "content": "THW allow workers to sell their rights in exchange for higher pay (e.g. health and safety protections, right to maternity/paternity leave etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2018", + "format": "", + "content": "THO rise of social media influencers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2018", + "format": "", + "content": "THBT music streaming services (e.g. Spotify, Apple etc.) do more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2018", + "format": "", + "content": "Given the choice, THBT US Supreme Court Justices should be elected by a vote among federal judges rather than a popular vote.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GV Debate", + "year": "2018", + "format": "", + "content": "\"In the context of the Brazilian civil-military dictatorship begun in 1964, This House would directly engage in armed struggle.\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GV Debate", + "year": "2018", + "format": "", + "content": "\"This House condemns the rise of the use of social networks as a vehicle for public debate.\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GV Debate", + "year": "2018", + "format": "", + "content": "\"This House would rather live in a world where globalization had not occurred so intensely.\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GV Debate", + "year": "2018", + "format": "", + "content": "\"Thanks to the hierarchy, this House believes that combating \"class oppression\" is more important than combating \"oppression of identities\".\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GV Debate", + "year": "2018", + "format": "", + "content": "\"Forced to vote between Haddad and Bolsonaro, This House would vote for Haddad.\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House Inter-Varsity", + "year": "2018", + "format": "", + "content": "This House Would Not Consume The Art of People Who Have Engaged in Gravely Unethical Behavior.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House Inter-Varsity", + "year": "2018", + "format": "", + "content": "This House Regrets The Belief That Technology Firms Will Solve The Climate Crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House Inter-Varsity", + "year": "2018", + "format": "", + "content": "This House, as the US, would stop all arms sales, military support, and other aid to Saudi Arabia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House Inter-Varsity", + "year": "2018", + "format": "", + "content": "This House would prefer a world where memory is permanent and infallible.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House Inter-Varsity", + "year": "2018", + "format": "", + "content": "This House opposes the continued progress towards deep global economic integration (e.g. very low tariffs and free movement of capital and labour across borders).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House Inter-Varsity", + "year": "2018", + "format": "", + "content": "With the goal of improving representation in media, this House would create original characters who belong to underrepresented groups, rather than re-imagine existing characters.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House Inter-Varsity", + "year": "2018", + "format": "", + "content": "Provided that it wins control of Congress and the White House, this House believes that the Democratic Party should increase the number of justices on the Supreme Court.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House Inter-Varsity", + "year": "2018", + "format": "", + "content": "This House believes that the liberalization of sexual behaviour prompted by the sexual revolution fails women today.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House Inter-Varsity", + "year": "2018", + "format": "", + "content": "This House opposes the propagation of Canadian exceptionalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "China BP", + "year": "2018", + "format": "", + "content": "This House Regrets narratives that glorify the elderly (e.g. \"The old know better\"; \"The old deserve more\" etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "China BP", + "year": "2018", + "format": "", + "content": "This House Believes That Supreme Courts should refrain from making decisions on controversial social issues (e.g. gay rights, abortion).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "China BP", + "year": "2018", + "format": "", + "content": "During economic crises, This House Believes That states should prioritise fiscal stability (i.e. balancing budget) over increasing public spending.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "China BP", + "year": "2018", + "format": "", + "content": "This House Believes That international criminal tribunals should introduce the death penalty for individuals convicted of crimes against humanity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "China BP", + "year": "2018", + "format": "", + "content": "This House Believes That academic journals should not publish articles that characterize colonialism as positive.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "China BP", + "year": "2018", + "format": "", + "content": "Assuming feasibility, in countries with conscription, This House Would forcibly delete all soldiers' memories of combat situations upon their discharge.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "China BP", + "year": "2018", + "format": "", + "content": "This House Believes That the deaf rights movement should disproportionately emphasize the positive experiences associated with being deaf.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "China BP", + "year": "2018", + "format": "", + "content": "This House, as Iran, Would resume its nuclear weapons program.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "China BP", + "year": "2018", + "format": "", + "content": "This House Would allow political parties to make binding electoral promises that, once broken, will immediately trigger reelection.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "China BP", + "year": "2018", + "format": "", + "content": "This House prefers a world with a dominant norm of not expressing strong emotions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "China BP", + "year": "2018", + "format": "", + "content": "This House Would abolish constitutional monarchies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "China BP", + "year": "2018", + "format": "", + "content": "This House opposes the dominant social norm in favor of monogamy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "China BP", + "year": "2018", + "format": "", + "content": "This House Believes That President Vladimir Putin is good for Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "China BP", + "year": "2018", + "format": "", + "content": "This House Believes That the Pope should be elected by Catholics around the world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "China BP", + "year": "2018", + "format": "", + "content": "This House Believes That Asian education systems should actively promote the view that Asian culture is superior to Western Culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denver IV", + "year": "2018", + "format": "", + "content": "THW mandate retirement from Congress at age 65.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denver IV", + "year": "2018", + "format": "", + "content": "TH, as a Palestinian, would advocate for a 1-state solution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denver IV", + "year": "2018", + "format": "", + "content": "TBHT universities that invite congroversial speakers should be required, within a reasonable time frame, to invite a speaker that supports the other side of the controversy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denver IV", + "year": "2018", + "format": "", + "content": "TBHT the feminist movement should actively recruit conservative women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denver IV", + "year": "2018", + "format": "", + "content": "Assuming Democratic control of the House, THBT the Democrats should prioritize the impeachment of President Trump.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denver IV", + "year": "2018", + "format": "", + "content": "THW repeal Article 22 Subsection 1 of the 1961 Vienna Convention on Diplomatic Relations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denver IV", + "year": "2018", + "format": "", + "content": "TH supports ANTIFA.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denver IV", + "year": "2018", + "format": "", + "content": "THW create specific zones where community members can legally participate in nonviolent, illicit behavior (e.g sex work, drug use).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2018", + "format": "", + "content": "This House would consider politicians under oath when making public statements on political issues* (* thus making them criminally liable for perjury if they lie about facts).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2018", + "format": "", + "content": "In countries where compulsory military service for men exists, this House believes that feminists should advocate for the conscription of women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2018", + "format": "", + "content": "This House believes that the LGBT movement should embrace the message that sexuality is a choice.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2018", + "format": "", + "content": "This House believes that United States foreign policy should seek to significantly restrict Iran's influence over Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2018", + "format": "", + "content": "This House opposes Consumerist Culture* (*Consumerist Culture is a culture where consistently purchasing goods is expected and considered a marker of social status).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2018", + "format": "", + "content": "This House believes that in Western states with high rates of unemployment the state should act as an employer of last resort (i.e. the state should directly employ people who are unable to find a job elsewhere).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2018", + "format": "", + "content": "This House would allow communities to reduce the amount of policing employed within their neighborhoods.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2018", + "format": "", + "content": "This House would allow the creation of Savior Siblings* (*a child who is born for the purpose of providing an organ or cell transplant to a sibling who is affected with a fatal disease).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2018", + "format": "", + "content": "This House would allow individuals to sue religious institutions in their community for propagating beliefs that cause them significant harm.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2018", + "format": "", + "content": "This House believes that the Obama administration should have prioritized affordable tertiary education over affordable healthcare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2018", + "format": "", + "content": "This House believes that the state should curb assortative mating* (*the phenomenon of people primarily entering relationships and building families with those of similar social and economic characteristics).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mehran Debating Championship", + "year": "2018", + "format": "", + "content": "TH regrets the USA's decision to leave the UNHRC.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mehran Debating Championship", + "year": "2018", + "format": "", + "content": "TH as Pakistan in 1979 would remain neutral in the Afghan War.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mehran Debating Championship", + "year": "2018", + "format": "", + "content": "THW ban violent video games.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mehran Debating Championship", + "year": "2018", + "format": "", + "content": "THS quotas for women in parliament.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mehran Debating Championship", + "year": "2018", + "format": "", + "content": "THW outlaw plea bargaining.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mehran Debating Championship", + "year": "2018", + "format": "", + "content": "THW abolish private property.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mehran Debating Championship", + "year": "2018", + "format": "", + "content": "THW elect the Chief of Army Staff of the Pakistani Military.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin", + "year": "2018", + "format": "", + "content": "TH supports the symbolized popularization of painful historical events in modern pop culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin", + "year": "2018", + "format": "", + "content": "THW REPEAL ALL NON-COMPETE LEGISLATION.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin", + "year": "2018", + "format": "", + "content": "THW NOT ALLOW MEMBERS OF FAMILIES WITH OVERWHELMING SOCIAL INFLUENCE (e.g, The Adeleke Family in Osun State - Davido's family) TO CONTEST ELECTIONS.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin", + "year": "2018", + "format": "", + "content": "TH AS HOODIE WILL OPT FOR THE PIG’S VALVE.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin", + "year": "2018", + "format": "", + "content": "THW TOTALLY RESTRICT FUTURE COPYRIGHTING OF OPEN SOURCE SOFTWARE.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin", + "year": "2018", + "format": "", + "content": "TH AS NIGERIA WILL PURSUE ISOLATIONIST ECONOMIC POLICIES.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin", + "year": "2018", + "format": "", + "content": "The 2018 FIFA World Cup champions, France, won the tournament with an ethnically diverse team who could trace their origins to Guadeloupe, Algeria, Guinea, Mali, French Guiana, Dr Congo, Martinique, Morocco, and Senegal. Motion:THBT colonial states that directly benefit in sports from the integration of athletes with roots to former colonies, should actively pay dividends to these former colonies, separate from existing financial obligations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin", + "year": "2018", + "format": "", + "content": "THW ABOLISH COMPULSORY REPRESENTATION.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin", + "year": "2018", + "format": "", + "content": "THBT ethnic minorities and movements that seek to break their ceilings(e.g glass, bamboo, black) and eliminate their underrepresentation should prioritize notions of intersectionality over their actual objectives.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin", + "year": "2018", + "format": "", + "content": "THR the practice of banking secrecy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin", + "year": "2018", + "format": "", + "content": "TH as a person appointed as a medical proxy will be held culpable by the patient upon recovery for decisions opposed to their preferred life choices (ideologies, medical choices etc) but crucial to their recovery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Central Novice Championship", + "year": "2018", + "format": "", + "content": "THR the glorification of self-made success.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Central Novice Championship", + "year": "2018", + "format": "", + "content": "THBT state subsidization of art should be distributed through a random lottery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Central Novice Championship", + "year": "2018", + "format": "", + "content": "THW eliminate the government's ability to enact back to work legislation for all education workers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Central Novice Championship", + "year": "2018", + "format": "", + "content": "THBT democratic governments should never be allowed to exercise prior restraint, even in cases of national security.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Central Novice Championship", + "year": "2018", + "format": "", + "content": "In Canada, criminal court judges are appointed. In other countries, such as the US, Japan, and Switzerland, judges are elected. The methods and voting systems used to elect these judges varies based on country and municipality. In the US for example, judges run for local office in the same way as other politicians (eg, mayors, council people, etc.), and sometimes have a party affiliation for campaigning. Motion: THP elected over appointed judges in criminal courts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cedar College Debating Championship", + "year": "2018", + "format": "", + "content": "THBT political representatives should deliberately seek to achieve the best political outcomes for their own local community or constituency, even at the expense of the national interest.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cedar College Debating Championship", + "year": "2018", + "format": "", + "content": "TH prefers bail-ins to bail-outs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cedar College Debating Championship", + "year": "2018", + "format": "", + "content": "THBT feminist movements should mobilise masculinity in service of feminist goals (e.g. \"real men respect women\") rather than deconstruct it (e.g. raising awareness to the issue of toxic masculinity).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cedar College Debating Championship", + "year": "2018", + "format": "", + "content": "THBT India should actively oppose Chinese aggression in Asia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cedar College Debating Championship", + "year": "2018", + "format": "", + "content": "TH does not regret internet piracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cedar College Debating Championship", + "year": "2018", + "format": "", + "content": "THW make rehabilitation the sole criteria for releasing criminals from prison.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cedar College Debating Championship", + "year": "2018", + "format": "", + "content": "TH, as a member of Pakistan's Economic Advisory Council, would resign.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jewell Debate Tournament", + "year": "2018", + "format": "", + "content": "This house regrets the commercialization of social movements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jewell Debate Tournament", + "year": "2018", + "format": "", + "content": "This house would require companies to provide economic compensation & job retraining to those unemployed by the automation of their work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jewell Debate Tournament", + "year": "2018", + "format": "", + "content": "This house believes that the Democratic Party should move toward socialism in candidate selection and policy platform.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jewell Debate Tournament", + "year": "2018", + "format": "", + "content": "Developing countries should ban the entry of charitable organizations that tie aid or services to religious conversion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jewell Debate Tournament", + "year": "2018", + "format": "", + "content": "This house believes that anonymous resistance from inside the Trump administration is a heroic act.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jewell Debate Tournament", + "year": "2018", + "format": "", + "content": "In areas of high crime, this house would impose a curfew on men.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israel's English Cup", + "year": "2018", + "format": "", + "content": "THW exclusively fund African NGOs instead of Western NGOs working in African countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israel's English Cup", + "year": "2018", + "format": "", + "content": "THW strongly subsidize and promote feminist pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israel's English Cup", + "year": "2018", + "format": "", + "content": "TH would forbid western tech companies from accepting chinese standards in order to access the chinese market (e.g. Google accepting censorship, Apple moving servers to china etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israel's English Cup", + "year": "2018", + "format": "", + "content": "THW ban ownership of 3D printers for personal use.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israel's English Cup", + "year": "2018", + "format": "", + "content": "This House Opposes cultural and academic boycott.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2018", + "format": "", + "content": "This house would require all schools in New Zealand to become co-educational.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2018", + "format": "", + "content": "THW replace the Māori seats in Parliament with a Māori upper house.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2018", + "format": "", + "content": "This house regrets that President Obama did not enforce the 'red line' in Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2018", + "format": "", + "content": "TH, as a US Democratic presidential contender, would make repeal of the second amendment part of their core policy platform for 2020.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2018", + "format": "", + "content": "This house, as Inda, would embrace China's One Belt One Road Initiative.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2018", + "format": "", + "content": "You are a relatively successful indie film-maker who has been approached by a major movie studio to direct a major film franchise. THW turn down the offer.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2018", + "format": "", + "content": "This house regrets the Obergefell decision.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2018", + "format": "", + "content": "TH prefers a world where everyone believes in free will.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Nixor College Debating Championship", + "year": "2018", + "format": "", + "content": "THW tear down gated communities in the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Nixor College Debating Championship", + "year": "2018", + "format": "", + "content": "THBT education systems should actively teach sticking it to the man.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Nixor College Debating Championship", + "year": "2018", + "format": "", + "content": "TH, as the international community, would support the BDS Movement in light of the Jewish Nation State Bill.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Nixor College Debating Championship", + "year": "2018", + "format": "", + "content": "THW fabricate evidence in order to prove that historic icons had been gay.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Nixor College Debating Championship", + "year": "2018", + "format": "", + "content": "THW give the Rohingya Arms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Nixor College Debating Championship", + "year": "2018", + "format": "", + "content": "THW require religious establishments to have female clergy in order to qualify for tax breaks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Nixor College Debating Championship", + "year": "2018", + "format": "", + "content": "THBT the discovery of a means to stop the human aging process would be a curse to humanity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll (NZ Prepared Debating Tournament)", + "year": "2018", + "format": "", + "content": "THW require all schools in New Zealand to become co-educational.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll (NZ Prepared Debating Tournament)", + "year": "2018", + "format": "", + "content": "THW replace the Māori seats in Parliament with a Māori upper house.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll (NZ Prepared Debating Tournament)", + "year": "2018", + "format": "", + "content": "TH regrets that President Obama did not enforce the ‘red line’ in Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll (NZ Prepared Debating Tournament)", + "year": "2018", + "format": "", + "content": "TH, as a US Democratic presidential contender, would make repeal of the second amendment part of their core policy platform for 2020.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll (NZ Prepared Debating Tournament)", + "year": "2018", + "format": "", + "content": "TH, as India, would embrace China’s One Belt One Road initiative.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll (NZ Prepared Debating Tournament)", + "year": "2018", + "format": "", + "content": "You are a relatively successful indie film-maker who has been approached by a major movie studio to direct a major film franchise. THW turn down the offer.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll (NZ Prepared Debating Tournament)", + "year": "2018", + "format": "", + "content": "TH regrets the Obergefell decision.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll (NZ Prepared Debating Tournament)", + "year": "2018", + "format": "", + "content": "TH prefers a world where everyone believes in free will.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macau Tournament of Champions BP IV", + "year": "2018", + "format": "", + "content": "This House Would end all state financial support to religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macau Tournament of Champions BP IV", + "year": "2018", + "format": "", + "content": "This House Would create an international court to prosecute leaders adopting disastrous economic policies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macau Tournament of Champions BP IV", + "year": "2018", + "format": "", + "content": "Given a way to measure an individual's empathy, This House Would only allow individuals with high levels of empathy for people beyond their immediate circles, to vote in the election.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macau Tournament of Champions BP IV", + "year": "2018", + "format": "", + "content": "This House Supports the increased presence of the \"intellectual dark web\" on mainstream media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macau Tournament of Champions BP IV", + "year": "2018", + "format": "", + "content": "This House Believes That states formerly under the rule of the Soviet Union should NOT emphasize their history of struggle against Russian imperialism in constructing their national identity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macau Tournament of Champions BP IV", + "year": "2018", + "format": "", + "content": "This House Believes That Supreme Court justices should adopt 'original meaning' theories when interpreting constitutions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macau Tournament of Champions BP IV", + "year": "2018", + "format": "", + "content": "THW allow only women to be the heads of political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macau Tournament of Champions BP IV", + "year": "2018", + "format": "", + "content": "This House Believes That the state should strongly incentivise highly educated individuals to have children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macau Tournament of Champions BP IV", + "year": "2018", + "format": "", + "content": "This House Believes That the EU should employ similar tactics to those Russia used in the 2016 US election in order to undermine the Trump administration.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Macau Tournament of Champions BP IV", + "year": "2018", + "format": "", + "content": "This House regrets the westernisation of the elites in post-colonial countries (e.g. speaking predominantly in English, going to schools/universities in the West, consuming predominantly Western Media).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad EUDC", + "year": "2018", + "format": "", + "content": "This House Believes that the US Democratic Party should move to the left in candidate selection and policy platform.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad EUDC", + "year": "2018", + "format": "", + "content": "This House believes that State Health Services should allow private companies to run hospitals for profit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad EUDC", + "year": "2018", + "format": "", + "content": "This House believes that the State should fund the creation of, and access to, realistic androids that simulate romantic relationships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad EUDC", + "year": "2018", + "format": "", + "content": "This House Regrets the glorification of the immediate postcolonial leaders in Sub-Saharan Africa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad EUDC", + "year": "2018", + "format": "", + "content": "This House Believes That South Korea should abandon the goal of, and all policies which aim at, Korean reunification.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad EUDC", + "year": "2018", + "format": "", + "content": "This House regrets the increasing trend of popular shows featuring neurodivergence* as the central theme. *Neurodivergence refers to those whose psychology is non standard, e.g. for reasons of mental health, mental disability, etc.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad EUDC", + "year": "2018", + "format": "", + "content": "This House, as Colombia, would cease cooperation with the USA in the War Against Drugs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad EUDC", + "year": "2018", + "format": "", + "content": "This House Believes That Artists should not participate in the ongoing interpretation of their art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad EUDC", + "year": "2018", + "format": "", + "content": "This house supports first generation immigrants to Western Europe encouraging their children to fully assimilate and identify with the local culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad EUDC", + "year": "2018", + "format": "", + "content": "THBT the EU should decriminalise human smuggling*. * Human smuggling is the aiding of a willing person to illegally cross a border. It is distinct from human trafficking, in which the person does not consent.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad EUDC", + "year": "2018", + "format": "", + "content": "THR the decline of labour union power in the West.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad EUDC", + "year": "2018", + "format": "", + "content": "This House supports the promotion of collective guilt after large scale crimes against humanity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad EUDC", + "year": "2018", + "format": "", + "content": "THW prefer a religion which preaches that one's fate in the material world is predetermined rather than one which preaches that choices influence it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad EUDC", + "year": "2018", + "format": "", + "content": "THBT the IMF should require direct control over a country's monetary policy as a condition of national bailouts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad EUDC", + "year": "2018", + "format": "", + "content": "THBT liberal democracies should constitutionally enshrine the right of regions to unilaterally secede.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad EUDC", + "year": "2018", + "format": "", + "content": "THR the shift in the #MeToo movement from victims sharing their experiences to holding public figures to account.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Open", + "year": "2018", + "format": "", + "content": "This House would mandate by law that all couples must equally share domestic work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Open", + "year": "2018", + "format": "", + "content": "TH opposes left wing media using mockery to cover the far right e.g. The Daily Show, Last Week Tonight.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Open", + "year": "2018", + "format": "", + "content": "This House would prefer that US Supreme Court Justices were elected by popular vote.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Open", + "year": "2018", + "format": "", + "content": "THBT Croatian Democratic Party (HDZ) should disassociate from Thompson including but not limited to not playing his songs on their rallies, not making public appearance at their rallies etc.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Open", + "year": "2018", + "format": "", + "content": "TH as the UK Conservative Party would hold a second Brexit referendum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Open", + "year": "2018", + "format": "", + "content": "THBT athletes should not be permitted to express political views during major sporting events.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Open", + "year": "2018", + "format": "", + "content": "THW censor any music which promotes derogatory attitudes towards women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Open", + "year": "2018", + "format": "", + "content": "THB the EU should offer automatic membership to any constituent member that leaves the United Kingdom.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Open", + "year": "2018", + "format": "", + "content": "THR the self-commercialisation of indigenous culture. (For example, Maori “village tours”, Aboriginal art fairs, and Native American casinos).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Open", + "year": "2018", + "format": "", + "content": "THW ban all forms of self-incrimination.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Open", + "year": "2018", + "format": "", + "content": "THB that the countries of former Yugoslavia should create a common history curriculum and textbook.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Open", + "year": "2018", + "format": "", + "content": "THR the existence of caste-based political parties in India.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Open", + "year": "2018", + "format": "", + "content": "THW welcome an isolationist America.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL Open", + "year": "2018", + "format": "", + "content": "TH, as the survivor community, would choose not to.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad Open", + "year": "2018", + "format": "", + "content": "This House supports individuals publicizing the identity of people who attend far right protests and gatherings in the USA to their community (coworkers, employers, family etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad Open", + "year": "2018", + "format": "", + "content": "This House supports individuals publicizing the identity of people who attend far right protests and gatherings in the USA to their community (coworkers, employers, family etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad Open", + "year": "2018", + "format": "", + "content": "This House would privatize NASA.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad Open", + "year": "2018", + "format": "", + "content": "This House would privatize NASA.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad Open", + "year": "2018", + "format": "", + "content": "This House opposes Twitch's decision to ban sexually suggestive content on their platform.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad Open", + "year": "2018", + "format": "", + "content": "This House opposes Twitch's decision to ban sexually suggestive content on their platform.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad Open", + "year": "2018", + "format": "", + "content": "This House would allow victims (and families of deceased) of gun violence to sue the sellers of the gun used in the act for compensation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad Open", + "year": "2018", + "format": "", + "content": "This House would allow victims (and families of deceased) of gun violence to sue the sellers of the gun used in the act for compensation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad Open", + "year": "2018", + "format": "", + "content": "This House believes that prominent individuals outside politics (e.g. business leaders, celebrities) from developing countries should emphasize the positive aspects of their country, rather than the negative aspects when speaking on an international platform.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Novi Sad Open", + "year": "2018", + "format": "", + "content": "This House believes that prominent individuals outside politics (e.g. business leaders, celebrities) from developing countries should emphasize the positive aspects of their country, rather than the negative aspects when speaking on an international platform.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "THBT religious institutions should to take custody of children in street situations, even without the consent of their parents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "THBT religious institutions should to take custody of children in street situations, even without the consent of their parents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "If it were discovered during an armed conflict that a population hides terrorists, THW not consider a war crime to attack civilians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "If it were discovered during an armed conflict that a population hides terrorists, THW not consider a war crime to attack civilians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "THBT government must grant economic compensation to those unemployed by the automation of their work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "THBT government must grant economic compensation to those unemployed by the automation of their work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "THBT sovereign debt must be insured with the assets of that country, including, among others, land, natural resources and state enterprises, in case of non-compliance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "THBT sovereign debt must be insured with the assets of that country, including, among others, land, natural resources and state enterprises, in case of non-compliance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "TH, as a public educational institution, would prohibit all school football programs due to the risks of CTE.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "TH, as a public educational institution, would prohibit all school football programs due to the risks of CTE.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "THW punish natural or legal persons who are accused of cultural appropriation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "THW punish natural or legal persons who are accused of cultural appropriation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "THBT human beings must sow terrestrial life forms on other planets even if that destroys endemic life forms of those planets.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "THBT human beings must sow terrestrial life forms on other planets even if that destroys endemic life forms of those planets.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "THS the creation of similar groups to the Gulabi Gang in Latin America.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "THS the creation of similar groups to the Gulabi Gang in Latin America.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "THBT it should be prohibited all acts of election campaign with the exception of public debates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "THBT it should be prohibited all acts of election campaign with the exception of public debates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "THW choose China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "THW choose China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "Assuming it is legal, THW justify that federal states with high rates of violence, hire mercenaries (private armies) to fight organized crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "year": "2018", + "format": "", + "content": "Assuming it is legal, THW justify that federal states with high rates of violence, hire mercenaries (private armies) to fight organized crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MDX Open", + "year": "2018", + "format": "", + "content": "This House would make voting power depreciate with age.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MDX Open", + "year": "2018", + "format": "", + "content": "This House would prevent the development of geoengineering techniques.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MDX Open", + "year": "2018", + "format": "", + "content": "THW abolish juries in all criminal trials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MDX Open", + "year": "2018", + "format": "", + "content": "Given the opportunity THW reject immortality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MDX Open", + "year": "2018", + "format": "", + "content": "This House believes that the Israeli government should grant citizenship to permanent Palestinian residents in Israeli-controlled areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "MDX Open", + "year": "2018", + "format": "", + "content": "This House believes that the pursuit of social mobility is doing more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent Open", + "year": "2018", + "format": "", + "content": "THW take the Blue Pill (to forget).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent Open", + "year": "2018", + "format": "", + "content": "This House believes that the rise in illegal downloading and streaming services has been beneficial to the world of music.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent Open", + "year": "2018", + "format": "", + "content": "This House believes that the Poor of the Developed World are entitled to vote for policies which protect their own economic interests at the expense of those of the Global Poor.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent Open", + "year": "2018", + "format": "", + "content": "This House would make having a women‘s football team a requirement for playing in the English premier league (EPL).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent Open", + "year": "2018", + "format": "", + "content": "Supposing feasibility, This House Supports the establishment of a Queer Republic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens Open", + "year": "2018", + "format": "", + "content": "TH opposes the portrayal of criminal lifestyles as “cool” in popular entertainment (e.g. Narcos, Breaking Bad, Scarface).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens Open", + "year": "2018", + "format": "", + "content": "THBT Greece should ban Sharia law in Western Thrace.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens Open", + "year": "2018", + "format": "", + "content": "THB that it is in China’s interest to not retaliate to the imposition of tariffs by the Trump Administration.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens Open", + "year": "2018", + "format": "", + "content": "THO the buying and selling of emotional services.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens Open", + "year": "2018", + "format": "", + "content": "THBT social media platforms should aggressively prioritise content from the mainstream media over less established media outlets.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens Open", + "year": "2018", + "format": "", + "content": "THP a world in which this machine exists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens Open", + "year": "2018", + "format": "", + "content": "THW ban individuals credibly accused of corruption from running for public office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens Open", + "year": "2018", + "format": "", + "content": "THBT the general approach of states should be to repatriate refugees once they no longer have a well-founded fear of persecution or violence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maynooth Open", + "year": "2018", + "format": "", + "content": "THR The Rise of Far Left Politics in Western Countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maynooth Open", + "year": "2018", + "format": "", + "content": "THR The Rise of Far Left Politics in Western Countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maynooth Open", + "year": "2018", + "format": "", + "content": "THB Women Are Legitimate in Using Erotic Capital.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maynooth Open", + "year": "2018", + "format": "", + "content": "THB Women Are Legitimate in Using Erotic Capital.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maynooth Open", + "year": "2018", + "format": "", + "content": "THBT African states should extend dual citizenship status to members of their diaspora, including the right to vote in elections, and right of return, as part of the AU's diaspora initiative.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maynooth Open", + "year": "2018", + "format": "", + "content": "THBT African states should extend dual citizenship status to members of their diaspora, including the right to vote in elections, and right of return, as part of the AU's diaspora initiative.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maynooth Open", + "year": "2018", + "format": "", + "content": "THW Pull the Switch.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maynooth Open", + "year": "2018", + "format": "", + "content": "THW Pull the Switch.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maynooth Open", + "year": "2018", + "format": "", + "content": "TH, As the EU, would trigger Article 7 if Hungary failed to commit to democratic reform.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maynooth Open", + "year": "2018", + "format": "", + "content": "TH, As the EU, would trigger Article 7 if Hungary failed to commit to democratic reform.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NLUO BPD", + "year": "2018", + "format": "", + "content": "This house prefers leaderless movements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NLUO BPD", + "year": "2018", + "format": "", + "content": "This house would allow plaintiffs to sell their right to sue to third parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NLUO BPD", + "year": "2018", + "format": "", + "content": "This house regrets Oxford University's decision to provide more time in their exams.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NLUO BPD", + "year": "2018", + "format": "", + "content": "This house would disallow the practice of Instantaneously Naturalizing foreign athletes to serve on national sports teams.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NLUO BPD", + "year": "2018", + "format": "", + "content": "This house prefers bail-in over bail-out.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NLUO BPD", + "year": "2018", + "format": "", + "content": "Assuming the switch will never be discovered, this house will tell the poor couple their baby died and hand the surviving baby over to the wealthy couple.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house believes that we should exclusively fund political parties through public funding.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house regrets written constitutions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house believes that, in highly populated urban areas, the government should set a maximum rent that may be charged for residential tenancies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house would abolish income tax in favour of consumption taxes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house would prefer a world where it is commonly believed that free will does not exist.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house supports a movement towards granting human rights to AI.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "A Western democratic nation has recently been the target of a relatively large terrorist attack. That nation has elections scheduled in a week. This house would cancel those elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house believes that social media companies should aggressively exclude extremist political content from their platforms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "You are one of New Zealand's top historians and have been asked by the Waitangi Tribunal to provide a record of harm borne by an iwi. You are confident your report will be accepted as true. This house would alter the historical documents to increase the iwi's likely Treaty settlement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "You are an innkeeper. It is approximately 0BC. The King has issued an edict requiring all newborns to be handed to his soldiers in pain of death. You know of such a newborn, he is in your inn’s stable. You suspect the child may be sacred to your God. This house would hand over the child.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house believes that feminists should criticise decisions made by women that seem to entrench patriarchal norms even where women claim it is their choice (e.g. foregoing careers to raise children, having cosmetic surgery).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house would enforce surrogacy contracts, even if the surrogate mother refuses after giving birth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house regrets the Truth and Reconciliation amnesty process.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house believes that in post colonial countries, land confiscated by colonial powers should be seized by the state without compensation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house believes that the criminal law should not distinguish an attempt to commit a crime from successfully committing a crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house believes that juries, not judges, should be entirely responsible for sentencing decisions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "You are a humanitarian charity operating in a conflict-zone and have been instructed that to remain working in the country you must provide 50% of your donations to the government or else all access to the country will be forcibly cut off. This house would remain in the conflict-zone.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house believes that charities should not accept money from donors they consider immoral.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house supports student unions who disaffiliate controversial student groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house believes that we should recognise a right to be free from intentionally offensive speech.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house believes that Western democratic countries should unilaterally evacuate relics of historical or cultural importance located in unstable countries and take possession of them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2018", + "format": "", + "content": "This house believes that the International Criminal Court should use private military contractors to arrest people wanted by the Court.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KUET IV", + "year": "2018", + "format": "", + "content": "THBT Indigenous Communities should form their own professional sports teams.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KUET IV", + "year": "2018", + "format": "", + "content": "THW abolish out of court settlements for crimes related to sexual harassment of any kind.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KUET IV", + "year": "2018", + "format": "", + "content": "THS the rise of Roseanne in mainstream media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KUET IV", + "year": "2018", + "format": "", + "content": "TH regrets universalization of western liberal values.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shanghai International Debate Open", + "year": "2018", + "format": "", + "content": "THBT states should not prosecute members of terrorist organisations (e.g. ISIS, Al-Qaeda) who surrender to those states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shanghai International Debate Open", + "year": "2018", + "format": "", + "content": "THW anonymize the funding, display, and sale of art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shanghai International Debate Open", + "year": "2018", + "format": "", + "content": "THW, as a billionaire who opposes Artificial Intelligence, fund violent and destructive action against companies that aim to create strong Artificial Intelligence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shanghai International Debate Open", + "year": "2018", + "format": "", + "content": "THBT NATO should end all political, economic, and military support for the Russian Commonwealth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shanghai International Debate Open", + "year": "2018", + "format": "", + "content": "THW ban religious institutions from asking for donations from their followers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shanghai International Debate Open", + "year": "2018", + "format": "", + "content": "THBT former colonial powers should drastically increase the number of immigrants from their ex-colonies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shanghai International Debate Open", + "year": "2018", + "format": "", + "content": "Countries with declining populations should abandon policies that aim to increase the birth rate (ex. incentivising citizens to marry and have children).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shanghai International Debate Open", + "year": "2018", + "format": "", + "content": "THBT environmental advocacy groups should prioritise individual-centric actions (e.g. recycling, not eating meat etc.) at the expense of policy-level changes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shanghai International Debate Open", + "year": "2018", + "format": "", + "content": "THBT WLDs should introduce 'youthocratic' voting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shanghai International Debate Open", + "year": "2018", + "format": "", + "content": "THBT states without the death penalty should never extradite individuals to countries where they may face the death penalty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shanghai International Debate Open", + "year": "2018", + "format": "", + "content": "THBT the IMF should not make financial support conditional on recipient states adopting austerity measures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shanghai International Debate Open", + "year": "2018", + "format": "", + "content": "TH, as a parent, would teach their female children to adopt traditionally masculine personality traits (e.g. self-promotion, assertiveness).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shanghai International Debate Open", + "year": "2018", + "format": "", + "content": "THR the glorification of hard work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Beacon Debating Club", + "year": "2018", + "format": "", + "content": "THW privatise the water supply.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Beacon Debating Club", + "year": "2018", + "format": "", + "content": "THW compensate workers for the loss of jobs resulting out of automation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Beacon Debating Club", + "year": "2018", + "format": "", + "content": "THW ban religious political parties in secular states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Beacon Debating Club", + "year": "2018", + "format": "", + "content": "TH regrets the rise of call out culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Beacon Debating Club", + "year": "2018", + "format": "", + "content": "THBT states should construct data based profiles of their citizens (China social credit for example).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2018 Empire Debates", + "year": "2018", + "format": "", + "content": "THR the choice by gun control activists to focus on mass shootings as the primary consequence of gun violence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2018 Empire Debates", + "year": "2018", + "format": "", + "content": "THP the English Rule to the American Rule.", + "infoSlide": "The English Rule requires that the loser in a lawsuit pays the winner's legal fees, and is observed by nearly every Western democracy. In the United States, however, the both sides pay their own attorney fees unless otherwise specified by the judge (this is rare).", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2018 Empire Debates", + "year": "2018", + "format": "", + "content": "THBT political parties should actively prohibit candidates with radically different beliefs from running under the party name.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2018 Empire Debates", + "year": "2018", + "format": "", + "content": "TH, as a major news agency, would only publish positive reviews of minority-focused media (Queer Eye, Moonlight, Call Me By Your Name).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2018 Empire Debates", + "year": "2018", + "format": "", + "content": "THR the prominence of religious rehabilitation programs in prisons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2018 Empire Debates", + "year": "2018", + "format": "", + "content": "THBT all national economic policy (taxation, monetary policy, tariffs, etc) should be set by an appointed panel of economists rather than by elected officials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2018 Empire Debates", + "year": "2018", + "format": "", + "content": "TH, as an emerging economy, prefers supporting domestically-based banks to the exclusion of multinational financial institutions (for example, providing support to Banco de Mexico and the businesses and individuals who use BdeM in Mexico, but not those who bank at HSBC Mexico).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2018 Empire Debates", + "year": "2018", + "format": "", + "content": "THP a conception of human rights which derives its authority from a divine being rather than a secular source.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North America Womxn's and Gender Minorities' Debate Championship", + "year": "2018", + "format": "", + "content": "THP antiheroes as the dominant female archetype in literature and film.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North America Womxn's and Gender Minorities' Debate Championship", + "year": "2018", + "format": "", + "content": "THBT the left should publicly support the violent suppression of alt-right speech.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North America Womxn's and Gender Minorities' Debate Championship", + "year": "2018", + "format": "", + "content": "THS the seizure and redistribution of land owned by the descendants of former colonizers in post colonial states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North America Womxn's and Gender Minorities' Debate Championship", + "year": "2018", + "format": "", + "content": "THP a world where nobody can lie.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North America Womxn's and Gender Minorities' Debate Championship", + "year": "2018", + "format": "", + "content": "THW nationalize pharmaceutical research.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North America Womxn's and Gender Minorities' Debate Championship", + "year": "2018", + "format": "", + "content": "THBT having children is immoral.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North America Womxn's and Gender Minorities' Debate Championship", + "year": "2018", + "format": "", + "content": "THBT successful minority activists have a duty to donate their effects to schools that represent their community (eg: women's universities, HBCUs, Tribal Colleges, etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North America Womxn's and Gender Minorities' Debate Championship", + "year": "2018", + "format": "", + "content": "THW ban non-disclosure agreements in the private sector.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North America Womxn's and Gender Minorities' Debate Championship", + "year": "2018", + "format": "", + "content": "a 2014 study reported that 19% of trans* people were denied health care by their provider due to their gender identity; 28% experienced harassment in a medical setting; 28% postponed care due to discrimination. Currently,there are approximately 6 doctors in the US and 2 in Canada that perform genital reconstruction surgery. Trans* people may have transition-related needs that create dependency on the healthcare system. Motion: THW establish and fund separate health clinics to provide accessible and comprehensive care to trans*gender people.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North America Womxn's and Gender Minorities' Debate Championship", + "year": "2018", + "format": "", + "content": "THBT the media should portray mass shootings as exclusively the result of social narratives of masculinity and systemic misogyny.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan Pacific Debate Championship", + "year": "2018", + "format": "", + "content": "This house believes that companies should publish compensation information for all employees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan Pacific Debate Championship", + "year": "2018", + "format": "", + "content": "This house supports the brave new world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan Pacific Debate Championship", + "year": "2018", + "format": "", + "content": "This house believes that Hollywood should blacklist anyone credibly accused of sexual misconduct.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan Pacific Debate Championship", + "year": "2018", + "format": "", + "content": "This house would require all debaters to pass a course in geography before debating foreign policy motions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan Pacific Debate Championship", + "year": "2018", + "format": "", + "content": "TH, as the European Union, would create a joint military force.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan Pacific Debate Championship", + "year": "2018", + "format": "", + "content": "This house would criminally prosecute payers and recipients of sports bounties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan Pacific Debate Championship", + "year": "2018", + "format": "", + "content": "This house would regulate Google as if it were a public utility.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pan Pacific Debate Championship", + "year": "2018", + "format": "", + "content": "THW not inform the public.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US Western Regional Championship", + "year": "2018", + "format": "", + "content": "This house prefers a world in which social media costs money to use, but users do not give up the rights to their data, to the current world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US Western Regional Championship", + "year": "2018", + "format": "", + "content": "This house welcomes the production of art by artificial intelligence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US Western Regional Championship", + "year": "2018", + "format": "", + "content": "This house would place a tax on meat.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US Western Regional Championship", + "year": "2018", + "format": "", + "content": "This house believes that the West should engage in covert efforts to overthrow Vladimir Putin.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US Western Regional Championship", + "year": "2018", + "format": "", + "content": "This house believes that Cabinet appointees should be protected from firing once they are approved by Congress.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US Western Regional Championship", + "year": "2018", + "format": "", + "content": "This house believes that comedians should not be held to modern standards of political correctness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US Western Regional Championship", + "year": "2018", + "format": "", + "content": "This house would classify catcalling as a felony.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US Western Regional Championship", + "year": "2018", + "format": "", + "content": "This house believes that Black Lives Matter should push for black separatism rather than inclusion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US Western Regional Championship", + "year": "2018", + "format": "", + "content": "This house would abolish the Second Amendment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US Western Regional Championship", + "year": "2018", + "format": "", + "content": "This house regrets the rise of Saudi Arabian Crown Prince Mohammed bin Salman.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US Western Regional Championship", + "year": "2018", + "format": "", + "content": "This house would abolish the Second Amendment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US Western Regional Championship", + "year": "2018", + "format": "", + "content": "Assuming we had the technology to be able to perfectly simulate physical and psychological pain (without killing someone), this house would allow convicted criminals to choose to feel the pain of their victims rather than serve their prison sentence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2018", + "format": "", + "content": "This house prefers a world in which social media costs money to use, but users do not give up the rights to their data, to the current world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2018", + "format": "", + "content": "This house welcomes the production of art by artificial intelligence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2018", + "format": "", + "content": "This house would place a tax on meat.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2018", + "format": "", + "content": "This house believes that the West should engage in covert efforts to overthrow Vladimir Putin.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2018", + "format": "", + "content": "This house believes that Cabinet appointees should be protected from firing once they are approved by Congress.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2018", + "format": "", + "content": "This house believes that comedians should not be held to modern standards of political correctness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2018", + "format": "", + "content": "This house would classify catcalling as a felony.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2018", + "format": "", + "content": "This house believes that Black Lives Matter should push for black separatism rather than inclusion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2018", + "format": "", + "content": "This house regrets the rise of Saudi Arabian Crown Prince Mohammed bin Salman.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2018", + "format": "", + "content": "This house would abolish the Second Amendment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2018", + "format": "", + "content": "Assuming we had the technology to be able to perfectly simulate physical and psychological pain (without killing someone), this house would allow convicted criminals to choose to feel the pain of their victims rather than serve their prison sentence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2018", + "format": "", + "content": "THS charter schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2018", + "format": "", + "content": "In addition to maternity pay and leave, THW make companies finance their female employees freezing of eggs and in vitro fertilization, if they so wish to.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2018", + "format": "", + "content": "THR the abandonment of the Sunshine Policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2018", + "format": "", + "content": "THW not give religious identity the same level of anti discrimination protection as other protected attributes (race, gender, sexuality).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2018", + "format": "", + "content": "THW ban political opinion polls.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2018", + "format": "", + "content": "THR the decision to let the FARC run as a political party.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2018", + "format": "", + "content": "THS states prioritizing the alleviation of poverty within their own borders at the expense of support of international aid programmes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2018", + "format": "", + "content": "THBT there is no significant moral difference between the life of a human and the life of a pig.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USC IV", + "year": "2018", + "format": "", + "content": "THW make athletes widely believed to have used performance enhancing drugs eligible for their sport's Hall of Fame.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USC IV", + "year": "2018", + "format": "", + "content": "THR the rise of choice feminism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USC IV", + "year": "2018", + "format": "", + "content": "THS the creation of a governing body for the English language.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USC IV", + "year": "2018", + "format": "", + "content": "THBT former colonial powers have an obligation to promote economic development in their former colonies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USC IV", + "year": "2018", + "format": "", + "content": "THBT federal and state governments should prioritize funding for early childhood care to the exclusion of funding for post-secondary education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USC IV", + "year": "2018", + "format": "", + "content": "THP a world in which identity based movements are not compartmentalized.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USC IV", + "year": "2018", + "format": "", + "content": "TH regrets commercialization of counter-cultural or oppositional sub-genres of music.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USC IV", + "year": "2018", + "format": "", + "content": "THR the Arab Spring.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USC IV", + "year": "2018", + "format": "", + "content": "THW grant legal personhood to strong AI.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2018", + "format": "", + "content": "This House Would subsidize large scale geoengineering such as massive carbon sequestration (capture of atmospheric co2 out of the atmosphere and into storage) rather than environmental adaptation (eg: cleaner fossil fuels, ethanol, recycling technology, etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2018", + "format": "", + "content": "This House believes that states should seek to participate in multinational currency unions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2018", + "format": "", + "content": "This House regrets the glorification of entertainers by the LGBTQ+ community.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2018", + "format": "", + "content": "In the event of the development of a technology that makes the recipient unable to knowingly commit any crimes, This House Would ban the research, production, and use of this technology.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2018", + "format": "", + "content": "This House would ban people whose net worth is in more than the 90th percentile from running for office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2018", + "format": "", + "content": "This House believes that the US should make aid to Israel conditional on the establishment of peace talks with Palestine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2018", + "format": "", + "content": "This House believes that regions with extremely high rates of gendered violence should grant amnesty to women for violent crimes they commit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2018", + "format": "", + "content": "In school districts in France where Arabic is the majority language, THW make Arabic the language of primary instruction in schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2018", + "format": "", + "content": "TH supports filial responsibility laws.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2018", + "format": "", + "content": "If sometime in the future the opportunity arose, she'd be the one to run for president. The first woman president, Ivanka entertained, would not be Hillary Clinton; it would be Ivanka Trump.\" Motion: TH, as Ivanka Trump, would publicly distance herself from her father.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2018", + "format": "", + "content": "TH believes that provocation should not be a consideration in legal sentencing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2018", + "format": "", + "content": "TH, as an agnostic, would take the pill.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2018", + "format": "", + "content": "THS the increasing use of technology in the sex industry. (e.g. sex robots, virtual reality porn).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2018", + "format": "", + "content": "THW work for Don-Roberts Holgerrson.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2018", + "format": "", + "content": "THBT South Korea should re-open the Kaesong Industrial Region.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2018", + "format": "", + "content": "THW impose legal obligations on major online media companies (YouTube, Twitter, Reddit, etc.) to censor the Manosphere. (e.g. blocking accounts, taking down content).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2018", + "format": "", + "content": "THW Prefer a world without lying.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2018", + "format": "", + "content": "TH prefers common law legal systems.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2018", + "format": "", + "content": "THB in the right to bear arms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2018", + "format": "", + "content": "This House would not allow serving politicians or their immediate families to use private services where public ones are available (i.e. education, healthcare).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2018", + "format": "", + "content": "This House prefers a world where individuals believe salvation stems from faith alone, rather than a world where individuals believe salvation stems from a combination of faith and good works.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2018", + "format": "", + "content": "This House believes that feminists should not engage in sex strikes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2018", + "format": "", + "content": "This House would lift bans on payday lending.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2018", + "format": "", + "content": "When restoring works of art, this House would restore to appear as close as possible to how they appeared when they were originally produced, rather than appeal to contemporary aesthetic tastes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2018", + "format": "", + "content": "This House believes that prominent individuals outside politics (e.g. business leaders, philanthropists) from emerging market countries with mixed international reputations (e.g. China, India, Iran) should focus on emphasizing the positive aspects of their country, rather than the negative aspects, when speaking on an international platform.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2018", + "format": "", + "content": "This House believes that marginalized groups seeking equal treatment should convey their struggle to the public by emphasizing its similarity to the struggles of more prominent oppressed groups, rather than by emphasizing the unique conditions of their own oppression.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2018", + "format": "", + "content": "This House believes that in wartime, there is no material moral difference between civilian and non-civilian casualties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2018", + "format": "", + "content": "In aging societies, this House would provide extensive financial incentives to couples to have multiple children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2018", + "format": "", + "content": "The House would add a \"notwithstanding\" clause to the Constitution of the United States and allow Congress to override decisions of the U.S. Supreme Court by normal legislative processes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2018", + "format": "", + "content": "Assuming it would be possible to do so, this House would ban the creation of strong artificial intelligence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northams", + "year": "2018", + "format": "", + "content": "This House, as Mexico, would end all security cooperation with the United States aimed at limiting illegal immigration into the US.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house would ban all communication tech companies (such as Google, Apple, Facebook, Whatsapp, etc.) from encrypting their users data, including the content of their communications, in such a way that the company cannot retrieve that data even under a court order.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house supports job security legislation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house would redefine the criterion for excessive force in the US to be any use of beyond what is reasonable given all the facts of the case, including the benefit of hindsight (e.g. whether the individual had a gun, not whether it was reasonable to believe he had a gun).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house would limit the amount of time that a museum can display a given piece of art to 3 months out of every 10 year period, rather than allow museums to display their works as long as they choose.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house would allow citizens to vote on individual bills in place of their representative, with the representative retaining the voting power of those of their constituents who did not directly vote on that specific bill.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house believes that all states should mandate that research on and use of CRISPR technology be exclusively carried out by institutions funded entirely by the state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house, as Iran, would cease all support for military groups in the Middle East (e.g. Hezbollah, Hamas, Houthis, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house prefers a world in which all individuals who have achieved a middle class standard of living choose to pursue the highest level of achievement in their chosen career, rather than a wold in which those individuals priorities day-to-day enjoyment over work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house would not allow out of court settlements for workplace discrimination and harrasment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house believes that Catholic religious officials in Mexico should not make statements in support of governmental policies, political parties, or candidates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house believes that it is better for the general population to be more optimistic about the current and future state of the nation (including societal cohesion, peace processes, the state of the economy) than an objectively accurate judgement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house, as the Chinese Communist Party, would lift all restrictions on foreign investments in China, except restrictions critical to national security.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house prefers a non-adversarial legal system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "In democratic post-colonial states, This house believes that opposition parties to the party of independence should claim and use the legacy of anti-colonial resistance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house believes that ASEAN should negotiate all investment deals with Chinese government entities as a bloc (with decisions made by majority vote of its members), so that no member state can enter into investment deals without the rest of the world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Partial_Double_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house supports the court's decision to acquit Tehlirian.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house, as a parent of a child with ASPD, would enable and support that child given that child’s aims based on their current psychological makeup, instead of trying to make them more empathic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This house would create an international court with the ability to classify national debt as “Odious Debt” at the debtor nation’s request and remove the obligation of that nation to pay.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexico WUDC", + "year": "2018", + "format": "", + "content": "This House would rather save the live of a single child over extending the life of 5 adults by 10 years.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexican Open", + "year": "2017", + "format": "", + "content": "THBT regions with extremely high rates of gendered violence should grant amnesty to women for violent crimes they commit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexican Open", + "year": "2017", + "format": "", + "content": "THBT when systemically important financial institutions are in need of financial assistance during recessions, creditors, rather than the government, should be liable.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mexican Open", + "year": "2017", + "format": "", + "content": "TH, as the US, would make aid to Saudi Arabia contingent on its full withdrawal from Yemen.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UNESCO Hong Kong SDG Debating Tournament", + "year": "2017", + "format": "", + "content": "THBT developed countries should pay developing countries to preserve the rainforests.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UNESCO Hong Kong SDG Debating Tournament", + "year": "2017", + "format": "", + "content": "THW condition development aid on the progress of human rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UNESCO Hong Kong SDG Debating Tournament", + "year": "2017", + "format": "", + "content": "THBT women should pay less income tax than men.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UNESCO Hong Kong SDG Debating Tournament", + "year": "2017", + "format": "", + "content": "THBT English should be the only language of education in developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UNESCO Hong Kong SDG Debating Tournament", + "year": "2017", + "format": "", + "content": "THW melt the polar ice caps if it gave drought-stricken countries drinking water.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Novices' Tournament", + "year": "2017", + "format": "", + "content": "THW ban the publication of electoral polls during the run-up to an election.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Novices' Tournament", + "year": "2017", + "format": "", + "content": "THBT the feminist movement should encourage women to not wear make-up.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Novices' Tournament", + "year": "2017", + "format": "", + "content": "THBT all states should allow single parents to raise their children in prison.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Novices' Tournament", + "year": "2017", + "format": "", + "content": "This house believes that secular democracies with substantial religious communities should create special courts where issues can be settled on the basis of religious law.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2017", + "format": "", + "content": "After a speaker has been invited, THW allow university students to vote to reject the speaker from coming to campus.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2017", + "format": "", + "content": "THBT LGBT+ Pride campaigns should focus on direct protest rather than celebration.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2017", + "format": "", + "content": "TH, as a western democracy, would prefer relations with a stable autocracy as opposed to an unstable democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2017", + "format": "", + "content": "Assuming the technology to significantly alters the body exists (eg, changing memory capacity, limb reinforcements) THW recognize a right to morphological freedom.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2017", + "format": "", + "content": "TH, as an indvidual, W not consume works produced by immoral artists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2017", + "format": "", + "content": "THBT food ethics movements should disavow sustainable consumption marketed by large corporations (eg, Starbucks, Chipotle).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2017", + "format": "", + "content": "THBT cities should not use investment incentives to attract businesses.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2017", + "format": "", + "content": "TH, as the UN, would facilitate independence referendums when requested by semi-autonomous regions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2017", + "format": "", + "content": "THW choose to be born in a world without religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2017", + "format": "", + "content": "THW require universities to use minimum entry requirements which are at least a grade higher for pupils from selective schools (e.g. private or grammar schools).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2017", + "format": "", + "content": "THBT singing-based reality TV shows (e.g. X Factor, American Idol, The Voice) have done more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2017", + "format": "", + "content": "THW make at least 10 years of non-political work experience a prerequisite for standing for national elected office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2017", + "format": "", + "content": "THBT non-LGBT+ people should not play LGBT+ roles in TV/film (e.g. that a lesbian role should only be played by a lesbian).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2017", + "format": "", + "content": "This house regrets the rise of international adoption.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2017", + "format": "", + "content": "This house believes that the UK government should remain silent when Donald Trump makes statements that are contrary to UK values.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund IV", + "year": "2017", + "format": "", + "content": "THW create and enforce filial responsibility laws.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund IV", + "year": "2017", + "format": "", + "content": "THW require all large companies to reserve 51% of shares for employees as equal voting shares.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund IV", + "year": "2017", + "format": "", + "content": "THBT revenue from tourism sites associated with indigenous cultures (e.g. Chichen Itza and related Mayan sites in Mexico) should be distributed directly to those communities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund IV", + "year": "2017", + "format": "", + "content": "THBT the West should lift all sanctions on Zimbabwe and directly engage with the new government on liberal reforms, as opposed to keeping sanctions and working to bolster the opposition.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund IV", + "year": "2017", + "format": "", + "content": "THW ban ownership of land and property by foreigners and foreign-owned corporations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2017", + "format": "", + "content": "TH welcomes the increasing automation of labour.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2017", + "format": "", + "content": "THS the use of extra-legal and illegal methods to provide wider access to knowledge (e.g. sci-hub, hacking Jstor, unauthorised distribution of files and copies).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2017", + "format": "", + "content": "TH, as a progressive individual, would not consume the works of artists who have committed or been accused of serious crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2017", + "format": "", + "content": "TH prefers a higher education system with a large variation in education quality over one in which there is a low variation in education quality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2017", + "format": "", + "content": "This house prefers a world without alcohol.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2017", + "format": "", + "content": "THB the state should lace water supply with a chemical that homogenises people's intelligence to the intelligence level of an average uni graduate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2017", + "format": "", + "content": "TH supports the increasing secularisation of the world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Open", + "year": "2017", + "format": "", + "content": "TH prefers a world without a concept of an afterlife.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Open", + "year": "2017", + "format": "", + "content": "TH supports the inclusion of FARC as a political party in Colombian elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Open", + "year": "2017", + "format": "", + "content": "TH supports the creation of an artificial island for those who do not want to live under the jurisdiction of any state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEAO", + "year": "2017", + "format": "", + "content": "This House Would abolish the statute of limitations for heinous crimes (e.g. murder, sexual assault, grievous bodily harm).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEAO", + "year": "2017", + "format": "", + "content": "This House Believes That progressive movements should not doxx.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEAO", + "year": "2017", + "format": "", + "content": "This House Regrets the narrative that motherhood is an intrinsically fulfilling experience.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEAO", + "year": "2017", + "format": "", + "content": "TH supports South Korea's rejection of the potential trilateral military USA-Korea-Japan alliance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEAO", + "year": "2017", + "format": "", + "content": "“Utility factor” refers to the total, foreseeable impact on society produced by academic research. The utility factor is determined by the universities themselves. Motion:This House Supports the allocation of research funding in universities based purely on the utility factor of the research.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEAO", + "year": "2017", + "format": "", + "content": "This House Would remove all criminal penalties for knowingly exposing partners to HIV.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEAO", + "year": "2017", + "format": "", + "content": "This House Believes That development of infrastructure in developing countries should be led by the state, as opposed to the private sector.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEAO", + "year": "2017", + "format": "", + "content": "- very severe dementia; - vegetative state etc. Advanced directives are irreversible - they remain binding. NON-voluntary euthanasia is NOT INvoluntary euthanasia. It merely means that no EXPLICIT CONSENT is granted at the time. \" Motion: This House Would legalize advanced directives requesting non-voluntary euthanasia for oneself.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEAO", + "year": "2017", + "format": "", + "content": "This House Would impose heavy penalties on planned obsolescence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEAO", + "year": "2017", + "format": "", + "content": "This House Would all movies and TV shows to introduce racial-blind casting for all characters.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NEAO", + "year": "2017", + "format": "", + "content": "This House Believes That 'armies of opinion shapers' should never be a legitimate political tool for states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2017", + "format": "", + "content": "This house would give companies tax breaks on all revenues paid as renumeration (salaries and bonus) to all female employees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2017", + "format": "", + "content": "THR the substitution of digital entertainment (e.g. tv, movies, video games) for written materials (e.g. novels, Kindle, comic books) in the lives of children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2017", + "format": "", + "content": "THBT former human rights activists under dictatorial regimes should not seek elected office (e.g. MP) after the transition to democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2017", + "format": "", + "content": "This house prefers a world in which all religions believe in Universal Salvation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2017", + "format": "", + "content": "This House regrets the rise of Xi Jinping.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2017", + "format": "", + "content": "This house believes that criminal justice systems should never incorporate retribution as an aim in determining criminal punishments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2017", + "format": "", + "content": "This House regrets the use of the term \"moderate muslim\" by Muslims to identify themselves.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2017", + "format": "", + "content": "This house would force all companies worth over $1 billion to list publicly.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2017", + "format": "", + "content": "In cases where a supreme court would currently rule on the compliance of a given law with a constitutional provision, THW hold a public referendum on whether to abandon that constitutional provision.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2017", + "format": "", + "content": "THBT it is always immoral to fight for one's country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pro Ams", + "year": "2017", + "format": "", + "content": "TH regrets the culture of treating death as an extraordinary event.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pro Ams", + "year": "2017", + "format": "", + "content": "TH, as a rohingya Muslim fleeing the Myanmar military, would join the Arakan Rohingya Salvation Army.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pro Ams", + "year": "2017", + "format": "", + "content": "THW prioritize sending oppressed minorities first.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pro Ams", + "year": "2017", + "format": "", + "content": "THW stop romanticizing the 1971 liberation war of Bangladesh.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pro Ams", + "year": "2017", + "format": "", + "content": "THW require the majority of companies' equity to be owned by sub-management level employees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pro Ams", + "year": "2017", + "format": "", + "content": "THBT the LGBT movement should de-emphasize sexualization (e.g. gay pride parades, etc.) in order to prioritize traditional familial values in pursuing their goals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BDC Pro Ams", + "year": "2017", + "format": "", + "content": "TH, as God, would end the human population now.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FinEst 100 Open", + "year": "2017", + "format": "", + "content": "THBT NFL team owners should be allowed to sanction players for political expressions on and off the field.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FinEst 100 Open", + "year": "2017", + "format": "", + "content": "THBT Countries whose native language is not English should adopt English as the main language of governance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FinEst 100 Open", + "year": "2017", + "format": "", + "content": "THR the glorification of soldiers and veterans as heros.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FinEst 100 Open", + "year": "2017", + "format": "", + "content": "THBT true womens liberation is incompatable with the existence of organized religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FinEst 100 Open", + "year": "2017", + "format": "", + "content": "THBT developing countries should heavily disincentivise rural to urban migration.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FinEst 100 Open", + "year": "2017", + "format": "", + "content": "THBT Finland should join NATO.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "FinEst 100 Open", + "year": "2017", + "format": "", + "content": "THBT it is immoral for a country to be a tax haven.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2017", + "format": "", + "content": "THW provide means-tested welfare in the form of basic goods and services (including vouchers), rather than cash payments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2017", + "format": "", + "content": "THBT twitter has done more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2017", + "format": "", + "content": "TH Prefers Asian Values to Western liberalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2017", + "format": "", + "content": "THBT investors should cease purchasing bonds issued by the Venezuelan government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2017", + "format": "", + "content": "THBT minority parents should shelter their children from the existence of racism for as long as possible.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2017", + "format": "", + "content": "THBT that the EU should suspend the voting rights of Poland.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2017", + "format": "", + "content": "THW ban the creation of all artificial conscious beings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2017", + "format": "", + "content": "THW require all sold products to clearly display their price in Dead Children Currency.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2017", + "format": "", + "content": "THR the creation and adoption of cryptocurrencies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2017", + "format": "", + "content": "THBT Mohammed bin Salman's policies are in the interests of the ruling House of Saud.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2017", + "format": "", + "content": "Assuming it could be done peacefully, THW replace all existing governments with a single global democratic government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2017", + "format": "", + "content": "THW ban zoos.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2017", + "format": "", + "content": "THBT when a company conducts any business in a developed nation, that nation should enforce its domestic environmental regulations at all stages of that company's supply chain (including suppliers and sub-contractors).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2017", + "format": "", + "content": "Assuming it was logistically feasible, THW randomly swap all newborn babies at birth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2017", + "format": "", + "content": "THS the continued remilitarisation of Japan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2017", + "format": "", + "content": "THW rank all charities by their Effective Altruism score and remove charitable status from all but the most effective.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2017", + "format": "", + "content": "THBT states should not pursue policies to reduce inequality once all citizens have an acceptable standard living.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2017", + "format": "", + "content": "THR the existence of NATO after the dissolution of the USSR.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2017", + "format": "", + "content": "TH, as the Church of England, would withdraw from the Anglican Communion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2017", + "format": "", + "content": "THBT universities should not be allowed to patent technology they develop.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2017", + "format": "", + "content": "THBT states should incentivize wealthy people to move to economically insolvent cities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2017", + "format": "", + "content": "THBT pro-Palestinian organisations should abandon their support for the BDS movement against Israeli academic institutions and scholars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2017", + "format": "", + "content": "THW Legalize Graffiti.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2017", + "format": "", + "content": "THBT states that are responsible for heavy pollution are morally obligated to sell portions of their land to states under severe threat by climate change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2017", + "format": "", + "content": "Motion: THBT universities should never restrict freedom of expression beyond what is already considered illegal by the state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2017", + "format": "", + "content": "THBT the African Union should pivot toward the global East rather than the global West.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2017", + "format": "", + "content": "THR the decline of Marxist political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2017", + "format": "", + "content": "THW charge prosecutors who withhold or deliberately lie about evidence in cases where the defendant faces the death penalty or life in prison, with attempted murder.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Penguin Invitational at Dominican University", + "year": "2017", + "format": "", + "content": "This House believes that language should, to the greatest extent possible, be stripped of gender references.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Penguin Invitational at Dominican University", + "year": "2017", + "format": "", + "content": "Assuming adequate security vetting, this House would allow individual states to set their own immigration policies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Penguin Invitational at Dominican University", + "year": "2017", + "format": "", + "content": "This House believes that the costs of autonomous technologies outweigh the benefits.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Penguin Invitational at Dominican University", + "year": "2017", + "format": "", + "content": "THW prohibit non-disclosure agreements tied to the settlement of civil lawsuits.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Penguin Invitational at Dominican University", + "year": "2017", + "format": "", + "content": "The U.S. should declare a cyber war against Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Penguin Invitational at Dominican University", + "year": "2017", + "format": "", + "content": "THBT cultural appropriation is a good thing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Penguin Invitational at Dominican University", + "year": "2017", + "format": "", + "content": "THW require post-high school public service.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Penguin Invitational at Dominican University", + "year": "2017", + "format": "", + "content": "THW call a Constitutional Convention to address the problem of gun violence in America.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2017", + "format": "", + "content": "THB that women are justified in lying about their past experiences, abilities and future family plans on job applications or at job interviews.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2017", + "format": "", + "content": "TH, as the Premier League, would require all clubs to field a minimum of 4 English players every match.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2017", + "format": "", + "content": "THBT the EU should ban non-stun religious slaughter of animals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2017", + "format": "", + "content": "THW allow central banks to use quantitative easing for the purpose of government investment as opposed to the support of the financial services.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2017", + "format": "", + "content": "THW assasinate Kim Jong-Un.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2017", + "format": "", + "content": "Assuming there is a drug that increases individuals tendency to pacifism, TH, as the state, would lace the country's water supply with the drug.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2017", + "format": "", + "content": "THS the monetisation of reproduction (e.g. sale of oocysts, commercial surrogacy).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2017", + "format": "", + "content": "either we are alone in the Universe or we are not. Both are equally terrifying.” - Arthur C Clarke Motion: THW rather be alone in the Universe.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2017", + "format": "", + "content": "THBT humanitarian organisations should, and should be allowed to, give funding, resources or services to illegal armed groups when this is made a condition for access to vulnerable civilians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Strathclyde President's Cup", + "year": "2017", + "format": "", + "content": "THBT that Universities should exclusively award scholarships and grants on the basis of financial need.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Strathclyde President's Cup", + "year": "2017", + "format": "", + "content": "THB the state should not recognise marriage (e.g. through special tax breaks, visitation rights, adoption privileges or other forms of differential treatment).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Strathclyde President's Cup", + "year": "2017", + "format": "", + "content": "Cryptocurrencies are digital currencies which operate without central banks or other regulating bodies, the most notable being Bitcoin. Trades can be made anonymously online and have so far proven un-hackable. While Bitcoin has become used for criminal transactions, some institutions have actively invested in it, including certain Swiss banks and the state of Japan. China amounts others, has banned use of Bitcoin. THBT States should criminalise the use and possession of cryptocurrencies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Strathclyde President's Cup", + "year": "2017", + "format": "", + "content": "TH opposes the practice in former colonies of privileging themes of anti colonial resistance over pre colonial-history and notions of indignity when fabricating national identity. Eg. anthems, street names, holidays etc.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Strathclyde President's Cup", + "year": "2017", + "format": "", + "content": "THR the narrative that soldiers are heroes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denver IV", + "year": "2017", + "format": "", + "content": "THW require social media companies to monitor and remove falsehoods.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denver IV", + "year": "2017", + "format": "", + "content": "In states where marijuana is legal, this house would provide reparations to individuals convicted of marijuana-related crimes prior to its legalization.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denver IV", + "year": "2017", + "format": "", + "content": "THW formally recognize an independent Kurdistan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denver IV", + "year": "2017", + "format": "", + "content": "Imagine that you and you alone discover irrefutable proof that there is no afterlife (including reincarnation). Unless you share the proof, the secret dies with you. THW not share the proof.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denver IV", + "year": "2017", + "format": "", + "content": "THW lift sanctions on Venezuela on the condition that they hold new elections overseen by the international community.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denver IV", + "year": "2017", + "format": "", + "content": "THW give judicial leniency to marginalized groups that have committed crimes against privileged groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denver IV", + "year": "2017", + "format": "", + "content": "TH prefers a world without sexual attraction.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denver IV", + "year": "2017", + "format": "", + "content": "THW repeal the Goldwater Rule.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Olimpia di Debate", + "year": "2017", + "format": "", + "content": "This House believes that the European Union should adopt the basic income.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Olimpia di Debate", + "year": "2017", + "format": "", + "content": "This House believes that every European school system should abolish homework to combat school drop-out.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Olimpia di Debate", + "year": "2017", + "format": "", + "content": "This House believes that caloric and fat-rich foods, commonly called junk food, should be taxed more than \"healthy foods\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Olimpia di Debate", + "year": "2017", + "format": "", + "content": "This House believes that Italian high school students should be allowed to choose their own study subjects from those offered by the school.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Olimpia di Debate", + "year": "2017", + "format": "", + "content": "This house believes that social networks have improved our lifestyle.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Olimpia di Debate", + "year": "2017", + "format": "", + "content": "This house believes that the G20 countries, in order to save the planet from global warming, must adopt more ambitious global CO2 emission reduction targets than those of the Paris Accords.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2017", + "format": "", + "content": "THW ban police unions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2017", + "format": "", + "content": "THBT Pharmaceutical companies should be held civilly liable for the opiate crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2017", + "format": "", + "content": "THB the Democratic Party should prioritize/welcome the nomination of candidates at all levels of government who favor more radical changes to existing policies and structures over those who are seen as more \"electable\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2017", + "format": "", + "content": "This house regrets the development of mass tourism at world heritage sites.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2017", + "format": "", + "content": "TH, as a prominent African-American group, would seek to create autonomous spaces of politics, economics etc. rather than integrating with American society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2017", + "format": "", + "content": "THW, as President Trump, fire Robert Mueller.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2017", + "format": "", + "content": "THW, as the US government, recognize the DPRK as a nuclear state and no longer oppose their nuclear program on the condition they discontinue long-range missile development.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2017", + "format": "", + "content": "The United States of Africa is a proposed concept for a federation of some or all of the 55 sovereign states on the African continent. The concept takes its origin from the writing of Marcus Garvey, an influential pan-Africanist leader in the early 20th century.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2017", + "format": "", + "content": "THS the political unification of Africa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2017", + "format": "", + "content": "THBT Truth and Reconciliation Commissions should destroy all collected testimony upon publication of the commissions' reports.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDSU", + "year": "2017", + "format": "", + "content": "THBT the Right to Rest should be upheld in all public spaces.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDSU", + "year": "2017", + "format": "", + "content": "THW require multi-national corporations to adhere to labor and wage standards exceeding those set by ANY individual nation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDSU", + "year": "2017", + "format": "", + "content": "THW stop playing “The Star-Spangled Banner”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDSU", + "year": "2017", + "format": "", + "content": "THW make the provision or sale of junk food and soda to children under the age of consent illegal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDSU", + "year": "2017", + "format": "", + "content": "THBT Canada should allow foreigners to access their right to die policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDSU", + "year": "2017", + "format": "", + "content": "College and professional teams should be held accountable when their competitors or coaches commit sexual assault.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDSU", + "year": "2017", + "format": "", + "content": "THBT China should fix North Korea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDSU", + "year": "2017", + "format": "", + "content": "THR the Generation War (Millennials vs. Baby Boomers).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS North American Universities Debating Championsip", + "year": "2017", + "format": "", + "content": "THBT civil rights legal organizations (e.g. ACLU) should refuse to provide legal resources to white supremacists and other hate groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS North American Universities Debating Championsip", + "year": "2017", + "format": "", + "content": "THW replace existing welfare systems with a universal basic income.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS North American Universities Debating Championsip", + "year": "2017", + "format": "", + "content": "Of religions that promise reward for faithful practice, THW prefer religions that promise reward will come in the afterlife as opposed to those that promise material reward in this life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS North American Universities Debating Championsip", + "year": "2017", + "format": "", + "content": "THBT the U.S. should eliminate all protective measures on the trading and use of green technologies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS North American Universities Debating Championsip", + "year": "2017", + "format": "", + "content": "THBT social movements should emphasize an individual’s capacity to change their circumstances in the face of oppression, as opposed to emphasizing the structures that restrict and determine an individual’s fate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS North American Universities Debating Championsip", + "year": "2017", + "format": "", + "content": "THR the modern high prioritization of sexual compatibility in romantic relationships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS North American Universities Debating Championsip", + "year": "2017", + "format": "", + "content": "THBT, in large metropolitan areas, the government should use eminent domain to create high density housing development.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS North American Universities Debating Championsip", + "year": "2017", + "format": "", + "content": "THBT scholars who study under-represented groups in history should emphasize their contribution to events that are commonly considered historically significant, rather than studying the history of those groups’ contributions to their own societies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Freshers' ProAm", + "year": "2017", + "format": "", + "content": "THW build social housing in high-wealth areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Freshers' ProAm", + "year": "2017", + "format": "", + "content": "THR the narrative that a university education is the primary path to success.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Freshers' ProAm", + "year": "2017", + "format": "", + "content": "THS the development of Artificial General Intelligence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Freshers' ProAm", + "year": "2017", + "format": "", + "content": "THBT majority liberal supreme courts should actively misapply constitutions in order to advance progressive rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IIT Bombay IV", + "year": "2017", + "format": "", + "content": "When casting minority characters, THBT films should only cast actors from that same minority.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IIT Bombay IV", + "year": "2017", + "format": "", + "content": "THBT India should abandon the Make in India policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IIT Bombay IV", + "year": "2017", + "format": "", + "content": "THS the existence of dual-legal systems for minority religious communities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IIT Bombay IV", + "year": "2017", + "format": "", + "content": "THBT the Rohingya should prioritize advocating for an independent state over citizenship and acceptance within Myanmar.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IIT Bombay IV", + "year": "2017", + "format": "", + "content": "THR the commercialization of feminism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IIT Bombay IV", + "year": "2017", + "format": "", + "content": "THR the rise of Antifa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IIT Bombay IV", + "year": "2017", + "format": "", + "content": "THR the Euro.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IIT Bombay IV", + "year": "2017", + "format": "", + "content": "THW dissolve global human rights institutions in favor of regional human rights institutions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2017", + "format": "", + "content": "THW tax religious institutions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2017", + "format": "", + "content": "THW normalize relations with North Korea (including the removal of sanctions).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2017", + "format": "", + "content": "TH, as a theatre, would refuse to run the film \"Dragonfly Eyes.\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2017", + "format": "", + "content": "THR the decline in marriage rates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2017", + "format": "", + "content": "THR the rise of \"global\" languages like English.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2017", + "format": "", + "content": "THBT comedic political commentators (e.g. John Oliver, Stephen Colbert, Samantha Bee, etc.) do more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2017", + "format": "", + "content": "THW ban commercial research and development of CRISPR-Cas9 technology.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2017", + "format": "", + "content": "THBT children have a right to know who their biological parents are (e.g. adoptees, children of reproductive donors, children of estranged parents).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2017", + "format": "", + "content": "THBT Democrats and Republicans should accept a border wall in exchange for full legalization of immigrants currently residing in the United States.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "La Salle IV", + "year": "2017", + "format": "", + "content": "THBT the administration of professional licensure examinations should be in the hands of the private sector instead of the government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "La Salle IV", + "year": "2017", + "format": "", + "content": "TH, as the UN, would give Venezuela humanitarian aid with no strings attached.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "La Salle IV", + "year": "2017", + "format": "", + "content": "THBT the environmental movement should abandon the narrative of personal responsibility in favor of one which emphasizes institutional accountability.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "La Salle IV", + "year": "2017", + "format": "", + "content": "THS Singapore's hiatus-triggered model for the presidential elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "La Salle IV", + "year": "2017", + "format": "", + "content": "THBT it is in China's interest to take the lead in subduing North Korea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "La Salle IV", + "year": "2017", + "format": "", + "content": "THW remove the power of impeachment from the legislature.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "La Salle IV", + "year": "2017", + "format": "", + "content": "In conservative countries, THBT the LGBT movement should actively court religious institutions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "La Salle IV", + "year": "2017", + "format": "", + "content": "TH celebrates the decline of American liberalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hollatz Debates", + "year": "2017", + "format": "", + "content": "THBT the US should abolish the jury system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hollatz Debates", + "year": "2017", + "format": "", + "content": "THBT marginalized communities are better off construction their own economic and social systems than they are assimilating and/or fighting for equality in the traditional systems.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hollatz Debates", + "year": "2017", + "format": "", + "content": "THW preemptively strike North Korea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hollatz Debates", + "year": "2017", + "format": "", + "content": "THBT consumer imaging (eg: TV, commercials, magazines, billboards) is harmful toward women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hollatz Debates", + "year": "2017", + "format": "", + "content": "THW impose a substantially large annual tax on all medical companies who own patents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guangdong Debate Challenge", + "year": "2017", + "format": "", + "content": "THW ban all essential service workers from striking (e.g. firemen, policemen, doctors).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guangdong Debate Challenge", + "year": "2017", + "format": "", + "content": "THW implement blind voting for general elections (For the purposes of this debate, \"blind voting\" refers to a system where voters cast their votes for various policies, and a candidate is matched to them based on their preference).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guangdong Debate Challenge", + "year": "2017", + "format": "", + "content": "THBT activists should abandon the use of doxxing in order to advance their movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guangdong Debate Challenge", + "year": "2017", + "format": "", + "content": "THBT the US should impose sanctions on Myanmar until a safe zone is created in the Rakhine state for Rohingya civilians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guangdong Debate Challenge", + "year": "2017", + "format": "", + "content": "THBT the state should only fund artworks that promote socially desirable values (e.g. multiculturalism, equality).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guangdong Debate Challenge", + "year": "2017", + "format": "", + "content": "THW allocate every adult a single tradable permit to have one child.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guangdong Debate Challenge", + "year": "2017", + "format": "", + "content": "THW impose high property and land taxes on foreign buyers and owners of property.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guangdong Debate Challenge", + "year": "2017", + "format": "", + "content": "THS the existence of a \"social credit system\" (For the purposes of the debate, a \"social credit system\" refers to a system which assigns a rating to every citizen based on government data regarding their economic history (e.g. paying taxes, paying debts) and social behavior. Ratings impact one's ability to carry out economic transactions, such as seeking employment, renting or buying property.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallin EUDC", + "year": "2017", + "format": "", + "content": "This house believes that the US should ban extremist groups (e.g. the KKK and neo-Nazi groups).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallin EUDC", + "year": "2017", + "format": "", + "content": "This house believes that the WTO should allow developing countries to impose policies aimed at protecting domestic industries, even at the expense of harming international trade.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallin EUDC", + "year": "2017", + "format": "", + "content": "THR the rise of “Sharing Culture”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallin EUDC", + "year": "2017", + "format": "", + "content": "This house believes that states should significantly fund female-only tech companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallin EUDC", + "year": "2017", + "format": "", + "content": "This house, as Israel, supports the Jewish People’s Intelligence Services Doctrine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallin EUDC", + "year": "2017", + "format": "", + "content": "This house supports universities treating students as customers (eg by allocating significant resources to improving students lifestyles, and granting students influence over university decisions and the content and delivery of course curricula).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallin EUDC", + "year": "2017", + "format": "", + "content": "This house believes that Western institutions should neither cooperate with, nor use the data produced by, non-Western medical institutions that do not meet Western standards on human clinical trials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallin EUDC", + "year": "2017", + "format": "", + "content": "This house believes that LGBT groups should actively seek to include Side B Christians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallin EUDC", + "year": "2017", + "format": "", + "content": "This house supports the creation and use of Lethal Autonomous Robots (Lethal Autonomous Robots are fully autonomous military weapons that can select and engage targets without human intervention).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallin EUDC", + "year": "2017", + "format": "", + "content": "THB that Western European states at high risk for terror attacks should implement 'state of emergency' laws.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallin EUDC", + "year": "2017", + "format": "", + "content": "THR the mass deregulation of the financial sector.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallin EUDC", + "year": "2017", + "format": "", + "content": "TH as the Kremlin would commemorate the 1917 Russian Revolution as a tradegy rather than a triumph for the nation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "World Schools Debating Championship,", + "year": "2017", + "format": "", + "content": "This House would ban for-profit universities and colleges.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "World Schools Debating Championship,", + "year": "2017", + "format": "", + "content": "This House would impose restrictions on the opening of stores operated by large multinational retail chains (e.g. Tesco, Walmart) in order to protect local businesses.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "World Schools Debating Championship,", + "year": "2017", + "format": "", + "content": "This House would deny tax-exempt status to religious institutions that refuse to appoint female leaders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "World Schools Debating Championship,", + "year": "2017", + "format": "", + "content": "This House believes that states should not erect statues or memorials which commemorate or glorify military campaigns and/or the service of soldiers in war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "World Schools Debating Championship,", + "year": "2017", + "format": "", + "content": "This House would make labour union membership compulsory in large industries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "World Schools Debating Championship,", + "year": "2017", + "format": "", + "content": "This House believes that, when working to preserve rare and endangered species, private entities are more effective than the state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "World Schools Debating Championship,", + "year": "2017", + "format": "", + "content": "This House believes that the NATO Enhanced Forward Presence in Eastern Europe is doing more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "World Schools Debating Championship,", + "year": "2017", + "format": "", + "content": "This House believes that states should be able to prioritize asylum seekers on the basis of cultural similarity with existing populations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "World Schools Debating Championship,", + "year": "2017", + "format": "", + "content": "This House would legalize commercial surrogacy for profit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Partial_Double_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "World Schools Debating Championship,", + "year": "2017", + "format": "", + "content": "This House would impose additional taxes on employers who use automation to replace human workers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "World Schools Debating Championship,", + "year": "2017", + "format": "", + "content": "This House prefers benevolent dictatorship to weak democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "World Schools Debating Championship,", + "year": "2017", + "format": "", + "content": "This House supports military retaliation against cyberattacks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "World Schools Debating Championship,", + "year": "2017", + "format": "", + "content": "This House supports restrictions on free speech to combat the rise of right-wing populism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles", + "year": "2017", + "format": "", + "content": "THW subsidise banks to disproportionately direct loans to historically disadvantaged communities and individuals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles", + "year": "2017", + "format": "", + "content": "THBT Brazil should fully privatise Petrobras.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles", + "year": "2017", + "format": "", + "content": "THW punish attempted and committed crimes equally.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles", + "year": "2017", + "format": "", + "content": "THBT individual feminist women should reject acts of chivalry (e.g. buying drinks for them, holding the door open, \"ladies first\" etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Open", + "year": "2017", + "format": "", + "content": "THW televise criminal trials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Open", + "year": "2017", + "format": "", + "content": "THBT the UK Labour Party should stand candidates in general elections in Northern Ireland.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Open", + "year": "2017", + "format": "", + "content": "TH, as China, would abandon all claims on the Senkaku Islands.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Open", + "year": "2017", + "format": "", + "content": "TH, as Arturo di Modica, would discontinue the loan of the Charging Bull to New York City.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Open", + "year": "2017", + "format": "", + "content": "THBT school systems should build curricula in a way that emphasizes national pride.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "International Competition for Young Debaters, Finals Day,", + "year": "2017", + "format": "", + "content": "This House would ban any treatment, service or ritual from claiming a physical healing effect until it is tested and proven more effective than a placebo by a national regulator.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "International Competition for Young Debaters, Finals Day,", + "year": "2017", + "format": "", + "content": "This House supports hacking as a form of social protest.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "International Competition for Young Debaters, Finals Day,", + "year": "2017", + "format": "", + "content": "This House would prefer a world without religious belief.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "International Competition for Young Debaters, Finals Day,", + "year": "2017", + "format": "", + "content": "This House would not give development aid to corrupt regimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "International Competition for Young Debaters, Finals Day,", + "year": "2017", + "format": "", + "content": "This house would require companies to place images of animal suffering on all products or food whose production harmed or killed animals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THW not allow public schools to expel students - Round 1.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THBT education in the developing world should be conducted primarily in English - Round 1.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THW institute a negative basic income - Round 2.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THS immigration criteria based around culture - Round 2.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THBT the government should have no role in protecting endangered species - Round 3.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THBT future generations should be able to sue the government for damages from the effects of climate change - Round 3.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "You have a machine that allows you to know when you will die. THW use the machine. - Round 4.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "Assuming you have the technology, THW financially reward citizens for good deeds - Round 4.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THW ban tithing - Round 5.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THW require religious organisations to elect their leaders - Round 5.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THBT the European Union should refuse to offer the United Kingdom preferential trade terms - Round 6.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THW place a tax on the labour of robots - Round 6.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THS the publication of the DNC (Democratic National Committee) leaks - Round 7.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "TH regrets the commercialisation of social justice - Round 7.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THW reject women-only spaces - Round 8.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THBT the transgender movement should distance itself from the feminist movement - Round 8.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "TH regrets Treaty settlements - Semi Final 1.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THS granting legal personality to rivers and lakes - Semi Final 1.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THBT inquiries into the misconduct of soldiers should only be conducted by people who have at some point been in active service - Semi Final 2.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THBT the USA should take aggressive military action against the Syrian regime - Semi Final 2.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THBT the media should not ‘out’ authors who publish under a pseudonym - Grand Final.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2017", + "format": "", + "content": "THW not allow authors to copyright characters or worlds that they have created - Grand Final.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2017", + "format": "", + "content": "This house supports the use of “eye in the sky” policing in urban areas with high crime rates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2017", + "format": "", + "content": "This house supports democratic governments using social disgust as a grounds for restricting public speech or display.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2017", + "format": "", + "content": "This house regrets the shift in focus within the academic study of history from studying great figures and institutions to studying cultural forces and the experiences of ordinary people.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2017", + "format": "", + "content": "Given the choice as an individual who is a typical, healthy 30-year-old, THW elect to never again feel the emotion of sorrow.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2017", + "format": "", + "content": "This house believes that the US should issue guest worker visas, under which minimum wage laws would not apply.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2017", + "format": "", + "content": "THBT governments should abandon the strategy of \"decapitation\" in fighting terrorism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PEP IV", + "year": "2017", + "format": "", + "content": "This House Would Fully Subsidize Gender Reassigment Surgery For Pubescent Teenagers Regardless of Parental Consent.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PEP IV", + "year": "2017", + "format": "", + "content": "This House Believes That Israel Should Fine Actors Who Refuse To Perform In Settlements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PEP IV", + "year": "2017", + "format": "", + "content": "This House Believes That the U.S. Should Hack China's \"Credit Social System\" In Order To Disrupt It.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PEP IV", + "year": "2017", + "format": "", + "content": "This House Believes That Republika Srpska Should Be an Independent State.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PEP IV", + "year": "2017", + "format": "", + "content": "This House Believes That Mexico Should Allow Neighbourhoods And Cities In North Mexico To Form Armed Militias In Order To Combat Drug Cartels.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PEP IV", + "year": "2017", + "format": "", + "content": "This House Would Impose Criminal Laws To Crimes Comitted By Users Of Avatars In Virtual Worlds (Such As ’Second Life’).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "PEP IV", + "year": "2017", + "format": "", + "content": "This House Supports the EU Backed Western Balkans Customs Union, Even at the Price of Terminating the Free Trade Agreement With Russia And of Joining the EU Sanctions on Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2017", + "format": "", + "content": "THW ban college entrance exams - for example: ACT, SAT.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2017", + "format": "", + "content": "THW require meat packaging to display images that vividly and accurately reflect the experiences of the animals throughout the manufacturing process.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2017", + "format": "", + "content": "THBT social media companies should factcheck posts by world leaders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2017", + "format": "", + "content": "THBT protesters should sabotage the Dakota Access Pipeline.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2017", + "format": "", + "content": "THBT the international community should regard the USA as a rogue state if it leaves or does not abide by the Paris Climate Agreement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2017", + "format": "", + "content": "THBT the state should pay reparations to women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2017", + "format": "", + "content": "THW abolish all locked facilities - for example: jail, detention centers, correctional facilities - for youth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Colgate Open", + "year": "2017", + "format": "", + "content": "TH, as a Republican member of Congress, would destroy the evidence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Empire Debates", + "year": "2017", + "format": "", + "content": "THW abolish K-12 private schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Empire Debates", + "year": "2017", + "format": "", + "content": "THBT the feminist movement should oppose the rise of commercial products and services aimed at helping women protect themselves from sexual assault and harassment (e.g. nail polish that changes colour around date rape drugs, anti-rape underwear, \"killer tampon\", Pink Cabs).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Empire Debates", + "year": "2017", + "format": "", + "content": "THBT Mexico should pull out of NAFTA.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Empire Debates", + "year": "2017", + "format": "", + "content": "TH, as a parent belonging to a minority religion, would discourage their children from expressing their faith publicly (e.g. wearing yarmulkes, hijabs or other articles of faith, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Empire Debates", + "year": "2017", + "format": "", + "content": "In places with significantly high waiting times for finding appropriate donors, THW legalize the private sale of organs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Empire Debates", + "year": "2017", + "format": "", + "content": "THW withdraw all military aid to Israel.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Empire Debates", + "year": "2017", + "format": "", + "content": "THBT Western countries should cease all direct military intervention in Yemen.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Empire Debates", + "year": "2017", + "format": "", + "content": "THP a world in which all people actively believed in determinism as opposed to a world in which they believed in free will.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2017", + "format": "", + "content": "THW not criticize Melania Trump as a way of protesting the Donald.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2017", + "format": "", + "content": "THW stop teaching children that all opinions are valid.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2017", + "format": "", + "content": "THBT African nations should not allow extraction of their national resources by companies from developed nations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2017", + "format": "", + "content": "THW save the Pandas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2017", + "format": "", + "content": "THBT if NPR and/or PBS cannot survive without government funding, they should be allowed to fail.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2017", + "format": "", + "content": "THW reinstate the Wet Foot, Dry Foot policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2017", + "format": "", + "content": "THBT it can be legitimate for a person to claim to identify as a race other than the one they were born into.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2017", + "format": "", + "content": "THBT South Korea should shifts its focus away from its alliance with the United States to strengthen its ties with China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2017", + "format": "", + "content": "THBT the EU should implement protectionist economic policies targeted towards the UK upon the triggering of 'Brexit\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2017", + "format": "", + "content": "THBT Vladimir Putin is a greater threat to the world than Donald Trump.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Western Regionals", + "year": "2017", + "format": "", + "content": "THW punch a Nazi.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tricity Mini", + "year": "2017", + "format": "", + "content": "THBT universities should not interfere with the choices of topics and guests at events organized by their students.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tricity Mini", + "year": "2017", + "format": "", + "content": "TH, as the EU, would impose sanctions on Poland for breaching democratic principles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tricity Mini", + "year": "2017", + "format": "", + "content": "THW introduce educational system with the selection process based only on geographical location (and not e.g. test results).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tricity Mini", + "year": "2017", + "format": "", + "content": "THR the rise of sharing economy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women & Gender Minorities Debating Championship", + "year": "2017", + "format": "", + "content": "This house supports deaf parents' choice to deafen their children in utero.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women & Gender Minorities Debating Championship", + "year": "2017", + "format": "", + "content": "This house supports the government suing meat producers/distributors to recover health care and environmental costs incurred by meat consumption.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women & Gender Minorities Debating Championship", + "year": "2017", + "format": "", + "content": "This house, as the European Union, would reject Turkey's membership application to the European Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women & Gender Minorities Debating Championship", + "year": "2017", + "format": "", + "content": "This house opposes the presence of external sex characteristics (uterus, vagina, breasts) at pro-women protests (eg, the Women's March on Washington).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women & Gender Minorities Debating Championship", + "year": "2017", + "format": "", + "content": "This house opposes the societal idea that forgiveness is a virtue.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women & Gender Minorities Debating Championship", + "year": "2017", + "format": "", + "content": "This house opposes democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women & Gender Minorities Debating Championship", + "year": "2017", + "format": "", + "content": "This house would prefer a world in which we never found out that Joseph Boyden has no Indigenous heritage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women & Gender Minorities Debating Championship", + "year": "2017", + "format": "", + "content": "This house believes that feminism is incompatible with capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KL Open Challenge", + "year": "2017", + "format": "", + "content": "In cases when economic projects encroach on their land, THBT indigenous communities should strive for compensation over opposing the project altogether.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KL Open Challenge", + "year": "2017", + "format": "", + "content": "THBT newly democratized states should prosecute their fallen dictators.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KL Open Challenge", + "year": "2017", + "format": "", + "content": "THBT feminist groups should reject legal presumptions that are favourable to women (e.g. presumptive custody for women, “women and children first”).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KL Open Challenge", + "year": "2017", + "format": "", + "content": "Given that the technology exists and is enforceable, THS a universally applied birth lottery system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KL Open Challenge", + "year": "2017", + "format": "", + "content": "THBT ASEAN should abandon its principle of non-interference in its member states’ political affairs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KL Open Challenge", + "year": "2017", + "format": "", + "content": "THW prevent wealthy individuals from being able to write off charity as tax-deductible.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KL Open Challenge", + "year": "2017", + "format": "", + "content": "TH, as a liberal-leaning news outlet, would take steps to portray terrorists in a sympathetic light.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KL Open Challenge", + "year": "2017", + "format": "", + "content": "THR the firing of employees who have been found guilty by the court of public opinion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2017 Pan-American Universities Debating Championship", + "year": "2017", + "format": "", + "content": "THW make the directors of major governmental science and technology organizations elected positions (e.g. Director of Environmental Protection Agency, head of National Science Foundation, Minister of Science and Technology).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2017 Pan-American Universities Debating Championship", + "year": "2017", + "format": "", + "content": "THBT governments should depopulate areas with few viable economic activities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2017 Pan-American Universities Debating Championship", + "year": "2017", + "format": "", + "content": "THBT the feminist movement should oppose presumptive custody in favor of women in cases of divorce.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2017 Pan-American Universities Debating Championship", + "year": "2017", + "format": "", + "content": "THBT it is legitimate for states to deny residency to immigrants who openly contradict their predominant values.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2017 Pan-American Universities Debating Championship", + "year": "2017", + "format": "", + "content": "THW institute a \"robot tax\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2017 Pan-American Universities Debating Championship", + "year": "2017", + "format": "", + "content": "THBT minority groups should not reclaim slurs that have been directed against them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2017 Pan-American Universities Debating Championship", + "year": "2017", + "format": "", + "content": "You are a citizen living in today’s world. You have the ability to create a perfect world by picking a random child by global lottery and condemning them to a condition of abject misery. The lottery is unbiased. The child will endure all the world’s extreme suffering in perpetuity (i.e. lack of human contact, torture, starvation, disease). The child’s suffering creates a world without war, famine, disease, or poverty: there is perfect prosperity and happiness. THW do it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2017 Pan-American Universities Debating Championship", + "year": "2017", + "format": "", + "content": "This house believes that the USA should fund military action by private intermediaries (e.g. paramilitary groups, private military contractors, vigilante groups) against drug cartels in other countries in the Americas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "2017 Pan-American Universities Debating Championship", + "year": "2017", + "format": "", + "content": "This house prefers a world where American and Canadian Multi-National Corporations in South America adhere to the environmental and labour standards of their home countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2017", + "format": "", + "content": "THW allow local communities to vote to reduce the amount of policing present within their districts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2017", + "format": "", + "content": "THBT China should remove its restrictions on rural to urban migrants.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2017", + "format": "", + "content": "THP a world where everyone has Highly Superior Autobiographical.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2017", + "format": "", + "content": "Given that private gun ownership is legal, THS the existence of women's gun rights organizations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2017", + "format": "", + "content": "THBT African countries should adopt English as the principal language of instruction in schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2017", + "format": "", + "content": "THO the dominant narrative in popular culture that there exists a soulmate for everyone.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2017", + "format": "", + "content": "In countries that have the death penalty, THW implement execution duty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2017", + "format": "", + "content": "THW allow individuals to sue religious organizations for compensation for the harmful effects of choices made as a result of adherence to religious doctrine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2017", + "format": "", + "content": "THBT it is the Moral Imperative of Liberals within Eastern European countries to stay within their Home Country rather than Emigrate to More Progressive Countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Mini, 2nd edition", + "year": "2017", + "format": "", + "content": "TH Welcomes the live-streaming of war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Mini, 2nd edition", + "year": "2017", + "format": "", + "content": "After the collapse of USSR, Latvia and Estonia, in contrast with many other states, decided not to automatically grant citizenship to its permanent residents who had moved to the countries after the end of World War II, instead offering them an option to naturalize. Citiezenship was one of the promises made the pro-independence movement to encouradge Russian-speaker support. By 2016, 11.75% of Latvian and 6.1% of Estonian population are still non-citizens. Motion: THBT Estonia and Latvia should grant citizenship to non-citizen residents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Mini, 2nd edition", + "year": "2017", + "format": "", + "content": "In the near future, scientist Thomas Harbor has discovered conclusive scientific evidence that afterlife exists. It has also been determined that it is impossible to to find out the specific nature of afterlife. Motion: TH, as Thomas Harbor, would destroy the research.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Mini, 2nd edition", + "year": "2017", + "format": "", + "content": "TH supports the establishment of a gayborhood in Riga.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Mini, 2nd edition", + "year": "2017", + "format": "", + "content": "Assuming Belarus agrees, THBT NATO should grant full membership to Belarus contingent on its pivot towards the West in foreign policy and trade.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2017", + "format": "", + "content": "THBT American news media should cease to invite major Trump surrogates (e.g. Kellyane Conway, Sean Spicer) to comment on news events.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2017", + "format": "", + "content": "This house supports the creation of all-Jewish universities in Europe.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2017", + "format": "", + "content": "This house regrets the social perception that ADHD is an illness, as opposed to a personality trait.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2017", + "format": "", + "content": "THBT the BDS movement does more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2017", + "format": "", + "content": "THBT the West should support the Russian-backed Syrian peace talks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2017", + "format": "", + "content": "THW sell the script.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2017", + "format": "", + "content": "THBT the rise in oil prizes does more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2017", + "format": "", + "content": "In countries with frequent coalition governments, THBT mainstream parties should refuse to include far left parties in coalitions, e.g. Socialist Party ('SP') in the Netherlands, Die Linke ('The Left') in Germany.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GWU Eastern Championships", + "year": "2017", + "format": "", + "content": "THBT every European state should significantly increase military spending.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GWU Eastern Championships", + "year": "2017", + "format": "", + "content": "THR the commodification of indigenous art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GWU Eastern Championships", + "year": "2017", + "format": "", + "content": "Assuming a cap on refugees, THW prioritize admitting refugees who have engaged in armed resistance against oppressive regimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GWU Eastern Championships", + "year": "2017", + "format": "", + "content": "TH opposes common currency.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "cornell novice nationals and tournament of love", + "year": "2017", + "format": "", + "content": "THW prosecute the production and distribution of fake news.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "cornell novice nationals and tournament of love", + "year": "2017", + "format": "", + "content": "Thw not allow revolutionary leaders and their families in post conflict societies to run for political office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "cornell novice nationals and tournament of love", + "year": "2017", + "format": "", + "content": "THW allow the selection of all-female juries in sexual assault cases.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "cornell novice nationals and tournament of love", + "year": "2017", + "format": "", + "content": "thbt public health authorities such as the Centers for Disease Control, should be given the power to quarantine individuals involuntary who they suspect are ill with highly contagious diseases.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "cornell novice nationals and tournament of love", + "year": "2017", + "format": "", + "content": "THBT human shields are legitimate targets in war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "cornell novice nationals and tournament of love", + "year": "2017", + "format": "", + "content": "TH regrets the narrative of college as the primary path to success (not sure if exact wording).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "cornell novice nationals and tournament of love", + "year": "2017", + "format": "", + "content": "TH, as the Catholic church, would sell its cultural artifacts in order to fund poverty alleviation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "cornell novice nationals and tournament of love", + "year": "2017", + "format": "", + "content": "THB trade unions should stop all campaigning and policy work against offshoring.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Galway Open", + "year": "2017", + "format": "", + "content": "Assuming that it was possible, THW abolish internet anonymity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Galway Open", + "year": "2017", + "format": "", + "content": "THW allow major medical charities and providers (e.g. Cancer Research, Alzheimer Society of Ireland, Irish Heart Foundation) to sue media outlets and organisations who share incomplete, incorrect or misleading medical information.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Galway Open", + "year": "2017", + "format": "", + "content": "THBT the USA should militarily intervene in the Philippines.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Galway Open", + "year": "2017", + "format": "", + "content": "THR the rise of the sharing economy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Galway Open", + "year": "2017", + "format": "", + "content": "TH supports the existence of sex and relationship sections in popular media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Galway Open", + "year": "2017", + "format": "", + "content": "THR the Neolithic Revolution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Galway Open", + "year": "2017", + "format": "", + "content": "THW teach children to question and undermine authority.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Galway Open", + "year": "2017", + "format": "", + "content": "THR the idea that life must have meaning.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga mini", + "year": "2017", + "format": "", + "content": "THBT ecoterrorism is legitimate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga mini", + "year": "2017", + "format": "", + "content": "TH, as atheists, W stop ridiculing religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga mini", + "year": "2017", + "format": "", + "content": "THW take down the Victory Monument.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shahjiwana International Debating IV", + "year": "2017", + "format": "", + "content": "This house believes that Pakistani Feminists should campaign for the end of gender segregation in mosques, and the right of female imams to preach in mosques.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shahjiwana International Debating IV", + "year": "2017", + "format": "", + "content": "This house regrets Wikileaks decision to release the DNC emails.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shahjiwana International Debating IV", + "year": "2017", + "format": "", + "content": "This house, as the state of Pakistan, would officially recognise the state of Israel.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shahjiwana International Debating IV", + "year": "2017", + "format": "", + "content": "This house believes members of SAARC should collectively agree to increase labour standards, and environmental standards, rather than engage in a 'race to the bottom'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shahjiwana International Debating IV", + "year": "2017", + "format": "", + "content": "This house regrets the use of the death penalty for crimes against humanity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shahjiwana International Debating IV", + "year": "2017", + "format": "", + "content": "This house believes female chess players should refuse to participate in this years women's world chess championships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shahjiwana International Debating IV", + "year": "2017", + "format": "", + "content": "This house would adopt the Indian Supreme Court decision in Pakistan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Shahjiwana International Debating IV", + "year": "2017", + "format": "", + "content": "This house believes news media in Pakistan, should not invite imans to comment on political issues.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2017", + "format": "", + "content": "This House Would Force All Companies to be 100% Owned by their Workers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2017", + "format": "", + "content": "This House believes that the British Government Should Pay Reparations to Northern Irish Catholics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2017", + "format": "", + "content": "THBT the use of erotic capital by women does more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2017", + "format": "", + "content": "THBT China should join the TPP.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2017", + "format": "", + "content": "THBT post-colonial states should commemorate their war dead who died fighting for their former coloniser.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2017", + "format": "", + "content": "TH believes in God.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2017", + "format": "", + "content": "THBT the European left should promote a hard left agenda, including the nationalisation of major industry, very high tax rates on wealthy, and expansion of the welfare states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "This House believes that post-genocidal regimes should destroy all places of extermination (for example, death camps).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "This House would allow members of the armed forces to form labour unions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "This House believes that sports leagues should significantly tax and redistribute from wealthier teams to poorer teams.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "In areas with rapidly rising property prices, This House would suspend all restrictions on property development that are not health and safety requirements (for example, environmental zoning regulations, building height restrictions, and regulations on the appearance of buildings).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "This House believes that the Netherlands should allow citizens to purchase additional votes from the government at a cost proportional to their wealth (for example, one additional vote for 1% of wealth).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "This House believes that the world would be a better place if women from privileged backgrounds turned down any benefits arising from affirmative action programs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "This House believes that South Korea should produce nuclear weapons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "This House regrets the glamorization of start-up culture that encourages people to start their own companies rather than pursue traditional career paths.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "This House would temporarily and significantly relax minimum labour standards in times of unusually high unemployment, including workplace health and safety standards, minimum wage, working hours restrictions etc.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "THBT the European left should promote a hard left agenda, including the nationalisation of major industry, very high tax rates on wealthy, and expansion of the welfare states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "This House believes that the US government should provide significant campaign funding for US congressmen and senators who score highly on bi-partisan metrics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "This house, as the pope, would abolish the requirement for clerical celibacy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "THW force all news organisations to operate as non-profits.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "This house believes that countries close to conflict zones should only grant long-term asylum to refugees who agree to one year of military service.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Partial_Double_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "This house would ban advocacy for religious belief in public places.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "TH, as the Chinese Communist Party, will allow fair and competitive elections for local elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "This House would apply universal jurisdiction to crimes against the environment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2016", + "format": "", + "content": "This house regrets Disney's use of indigenous characters and settings in their films.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2016", + "format": "", + "content": "This house believes that pro-remain political parties and campaign groups should launch a class action suit against prominent members of the Leave campaign for Fraud.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2016", + "format": "", + "content": "This house believes that the Trump administration should abandon the One-China policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2016", + "format": "", + "content": "In post conflict societies, This house would grant amnesty to perpetrators of crimes rather than seeking prosecutions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2016", + "format": "", + "content": "This house would make membership of Trade Unions compulsory.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2016", + "format": "", + "content": "This house would ban organisations from promoting abstinence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2016", + "format": "", + "content": "This house regrets the inclusion of the People's Mobilization Forces in the war against the Islamic State.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2016", + "format": "", + "content": "This house believes that Eastern European states should destroy monuments from their Soviet Union period.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2016", + "format": "", + "content": "THBT publicly funded universities should be required to reduce enrolment in degree programs within their university that have statistically poor employment outcomes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2016", + "format": "", + "content": "THBT search engines should deprioritise search or autocomplete results with sexist, racist or otherwise offensive content.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2016", + "format": "", + "content": "TH regrets the promotion of religion in countries formerly ruled by communist regimes in Eastern Europe.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2016", + "format": "", + "content": "THBT the US should abandon all military support for and impose economic sanctions on the Philippines.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2016", + "format": "", + "content": "THBT the governments of Brazil and Peru should contact uncontacted Amazonian tribes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2016", + "format": "", + "content": "TH supports the use of referendums when deciding whether to permit same sex marriage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2016", + "format": "", + "content": "THBT governments in the developing world should limit migration to megacities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Partial_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2016", + "format": "", + "content": "THBT Italy should have voted ‘si’ in last week’s referendum on constitutional reform.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga IV", + "year": "2016", + "format": "", + "content": "TH supports the demolition of makeshift refugee camps on the borders between European countries e.g. The Calais Jungle in France, The Idomeni Camp in Greece.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2016", + "format": "", + "content": "THR the existence of religious political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2016", + "format": "", + "content": "THBT the state should not fund blueskies research.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2016", + "format": "", + "content": "TH opposes the popularisation of BDSM.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2016", + "format": "", + "content": "THBT using Human Shield tactics, by the weaker side, is legitimate in asymmetrical wars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2016", + "format": "", + "content": "THBT individuals should only fund charities that follow effective altruism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2016", + "format": "", + "content": "THW prohibit the media from reporting on the mental illness of those accused of crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2016", + "format": "", + "content": "THS ecoterrorism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2016", + "format": "", + "content": "THBT congressional Democrats should support a policy of total obstruction during Trump's term.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2016", + "format": "", + "content": "THP ad hoc tribunals over the ICC.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2016", + "format": "", + "content": "THW subsidize companies who have a 50% share or more owned by a woman or minority.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2016", + "format": "", + "content": "TH, as an university, would take down statues of controversial figures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2016", + "format": "", + "content": "THR the narrative that Americans must \"support\" the troops.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2016", + "format": "", + "content": "THBT the EU has failed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Seattle IV", + "year": "2016", + "format": "", + "content": "THW leave Omelas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2016", + "format": "", + "content": "THW Give Extra Votes to Individuals who Live in Areas with Consistently Low Voter Turnout.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2016", + "format": "", + "content": "This House Believes That the state should pay a salary to stay-at-home parents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2016", + "format": "", + "content": "Given the existence of \"SASP Glasses\" technology, This House Would ban them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2016", + "format": "", + "content": "This House Believes That western tech companies should collectively refuse to comply with the Russian personal information law.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2016", + "format": "", + "content": "This House Believes That developed nations should not recruit high-skilled workers (Such as doctors, engineers, etc.) from developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2016", + "format": "", + "content": "Given the ability to accurately measure the moral track record of a person, This House Would criminalize having a consistently negative moral track record.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2016", + "format": "", + "content": "This House Believes that the Election of Donald Trump Serves the Interests of Russian Citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2016", + "format": "", + "content": "This House Believes That teachers should contradict curriculum that they believe will be harmful to society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2016", + "format": "", + "content": "This House Believes That feminists should actively adopt stereotypically \"male\" traits (such as being assertive, emotionally distant, \"man-spreading\" etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2016", + "format": "", + "content": "This House Would never offer a reduced sentence in return for information relating to other crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2016", + "format": "", + "content": "This House, as the Catholic Church, would sell all wealth (including, but not limited to, art, property, and religious artefacts) to the highest bidder and donate the profit to the alleviation of poverty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2016", + "format": "", + "content": "This House Would give the African Union passport to all citizens of African Union member states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2016", + "format": "", + "content": "THW allow plaintiffs to sell to third parties their right to sue.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2016", + "format": "", + "content": "THR the prominence given to celebrity endorsements of politicians and political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2016", + "format": "", + "content": "THW apply an environmental tax to cheap mass-produced clothing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2016", + "format": "", + "content": "TH, as a female visitor to WestWorld, would choose to wear a black hat.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2016", + "format": "", + "content": "THBT developing nations with ethnically diverse populations should prohibit vernacular schools\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2016", + "format": "", + "content": "THBT NATO should create a 'safe zone' in rebel-held territory within Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2016", + "format": "", + "content": "THR the decision of Clinton supporters in the immediate aftermath of the 2016 US election to frame the Trump victory as the result of misogyny and racism and not opposition to the political establishment and/or neoliberalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "CMS Cambridge Women's Open", + "year": "2016", + "format": "", + "content": "This house prefers secular governments that exclude all religion from public spaces to those that allow all religions in public.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "CMS Cambridge Women's Open", + "year": "2016", + "format": "", + "content": "This house believes that nations should invest in regional human rights institutions at the expense of global institutions (such as the ICC).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "CMS Cambridge Women's Open", + "year": "2016", + "format": "", + "content": "This house regrets the rise of choice feminism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "CMS Cambridge Women's Open", + "year": "2016", + "format": "", + "content": "This house believes that opposition parties in Latin America should seek incremental transitions of power rather than the recall or overthrow of ruling parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2016", + "format": "", + "content": "THBT liberals should refrain from using terms such as bigot, racist, sexist etc to describe people or positions they disagree with.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2016", + "format": "", + "content": "THBT liberals should not use pejorative labels such as racist, bigot, sexist etc to describe people whose beliefs they disagree with.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2016", + "format": "", + "content": "THW transition to a cashless society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2016", + "format": "", + "content": "THW transition to a cash-less society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2016", + "format": "", + "content": "THW greatly reduce economic prosperity, progress and growth in favour of increasing individual’s leisure time.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2016", + "format": "", + "content": "THW significantly increase people’s leisure time at the expense of greater prosperity, progress and growth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2016", + "format": "", + "content": "THW not allow “intersex” female athletes (such as Caster Semenya) to compete in female sporting competitions unless they take hormone suppressants.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2016", + "format": "", + "content": "THW not prosecute former child soldiers for offences committed as adults.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2016", + "format": "", + "content": "THW not prosecute former child soldiers for crimes committed as adults.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2016", + "format": "", + "content": "THW require all companies over a certain size to be fully publicly listed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2016", + "format": "", + "content": "THW force large companies above a certain size to be fully publicly listed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2016", + "format": "", + "content": "This house believes that environmental NGOs should promote genetic engineering.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2016", + "format": "", + "content": "THBT environmental NGOs should promote genetic engineering.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2016", + "format": "", + "content": "This House would abolish all government schemes that provide grants, tax-breaks or loans at preferential terms to home buyers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2016", + "format": "", + "content": "THBT indigenous groups in parliamentary democracies should form independent political parties instead of encouraging their members to vote for, and run on behalf of, existing parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2016", + "format": "", + "content": "This House believes that governments should make available a publicly searchable database containing the income, wealth and taxes paid by all citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2016", + "format": "", + "content": "This House would prohibit the use of predictive algorithms in criminal trials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2016", + "format": "", + "content": "This House, as Israel, opposes a Iran nuclear deal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2016", + "format": "", + "content": "This House believes that membership of the EAEU is in the interests of Central Asian states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2016", + "format": "", + "content": "This House would allow individuals to sue the government when the government has failed to provide a basic standard of living.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2016", + "format": "", + "content": "This House believes that states should focus on negotiating bilateral trade agreements over large, regional agreements such as the TPP and RCEP.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2016", + "format": "", + "content": "This House prefers a world in which Islam is structured around a strong, central governing authority (e.g. The Pope in Catholicism).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2016", + "format": "", + "content": "When police are put on trial for alleged instances of a violent wrongdoing, this House would decrease the burden of proof to the balance of probabilities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2016", + "format": "", + "content": "This House would allow negative voting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2016", + "format": "", + "content": "This House believes that armies should indoctrinate soldiers to take their own lives in the event that they fall captive to the enemy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2016", + "format": "", + "content": "This House believes that the state should promote the norm of the 'single life'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2016", + "format": "", + "content": "This House believes that NATO should expel members that do not meet the organisation's defence spending targets.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chittagong University IV", + "year": "2016", + "format": "", + "content": "THW ban works of art that glorify criminality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chittagong University IV", + "year": "2016", + "format": "", + "content": "TH as Bernie Sanders would run as an independent candidate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chittagong University IV", + "year": "2016", + "format": "", + "content": "THBT westen liberal democracies should withdraw funding from Bangladesh until blogger killers are arrested and tried.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chittagong University IV", + "year": "2016", + "format": "", + "content": "THBT Dalai Lama should urge Tibetans to end their resistance and integrate with China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chittagong University IV", + "year": "2016", + "format": "", + "content": "THW require all visitors to gain entry permission from the tribal community before visiting the region.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Schools Debating Society Chennai Leagues,", + "year": "2016", + "format": "", + "content": "THW permit the use of performance enhancing drugs in sport.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Schools Debating Society Chennai Leagues,", + "year": "2016", + "format": "", + "content": "THBT university students should be required to work in their countries of origin for a temporary period after graduation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Schools Debating Society Chennai Leagues,", + "year": "2016", + "format": "", + "content": "THBT the media should show the full horrors of war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Schools Debating Society Chennai Leagues,", + "year": "2016", + "format": "", + "content": "THBT democracy is on the streets and not on the ballot box.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Schools Debating Society Chennai Leagues,", + "year": "2016", + "format": "", + "content": "THR the rise of slum tourism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Schools Debating Society Chennai Leagues,", + "year": "2016", + "format": "", + "content": "THW ban blood sport.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Schools Debating Society Chennai Leagues,", + "year": "2016", + "format": "", + "content": "TH supports academic tracking in primary and secondary education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Schools Debating Society Chennai Leagues,", + "year": "2016", + "format": "", + "content": "THW abandon nuclear energy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Schools Debating Society Chennai Leagues,", + "year": "2016", + "format": "", + "content": "THW suspend labor laws in times of economic crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Schools Debating Society Chennai Leagues,", + "year": "2016", + "format": "", + "content": "THBT the media should not comment on the electability of politicians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Indian Schools Debating Society Chennai Leagues,", + "year": "2016", + "format": "", + "content": "THW create and enforce filial responsibility laws.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2016", + "format": "", + "content": "THW abolish all occupational licensing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2016", + "format": "", + "content": "THBT western nations fighting the Islamic state should commit to the creation of an independent Kurdish state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2016", + "format": "", + "content": "This house believes that religious officials (e.g. priests, imams, rabbis) should not make statements in support of political policies, parties, or candidates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2016", + "format": "", + "content": "TH supports the continued remilitarization of Japan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2016", + "format": "", + "content": "THB that all museums, galleries, and cultural institutions should offer to return exhibits to their countries/communities of origin.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2016", + "format": "", + "content": "THW nationalize credit rating agencies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2016", + "format": "", + "content": "THBT identity-based social movements should prioritize the majority population's acceptance of that identity over preservation of a distinct culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2016", + "format": "", + "content": "TH fears the development of independent artificial intelligence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2016", + "format": "", + "content": "THBT a rise in global oil prices is in the interest of the West.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2016", + "format": "", + "content": "THS supreme court rulings based on natural rights not enumerated in constitutions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2016", + "format": "", + "content": "TH believes in God.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2016", + "format": "", + "content": "thw implement mandatory paternity leave for new fathers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2016", + "format": "", + "content": "thbt countries should implement strong worker protection laws even at the cost of economic growth (ie, collective bargaining, overtime hours, worker compensation, etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2016", + "format": "", + "content": "thw deny tax-exempt status to religious institutions that restrict women from accessing leadership or teaching roles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2016", + "format": "", + "content": "THBT jewish-americans have a moral obligation to suspend their participation in organizations (hillel, birthright, aipac, etc) that endorses israel’s current settlement program.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2016", + "format": "", + "content": "Thw create an international organization to facilitate private individuals suing foreign governments for causing serious harms to their communities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2016", + "format": "", + "content": "Thw allow voters to repeal legislation using citizen referenda initiated referenda passed by a ⅔ popular vote majority.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2016", + "format": "", + "content": "In regions with severe, widespread violence against women, ths acts of vigilante justice in response to gendered assaults (israel egypt).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2016", + "format": "", + "content": "thbt the kurdish people should abandon attempts to establish an independent state, in favour of seeking greater poliitical inclusion in iraq and in turkey.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Huber Debates", + "year": "2016", + "format": "", + "content": "THR the decline of Black Militant Groups (i.e. the Black Panther Party, the Black Liberation Army.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "JADE College Cup", + "year": "2016", + "format": "", + "content": "TH, as the Ministry of Education, Youth and Information, would significantly reduce summer holidays.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "JADE College Cup", + "year": "2016", + "format": "", + "content": "This House Supports the celebration of Halloween in Jamaica.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "JADE College Cup", + "year": "2016", + "format": "", + "content": "THBT religious institutions should not receive tax exemptions or other legal privileges - Grand Finals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2016", + "format": "", + "content": "THW prosecute violent fouls in sports as criminal assault.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2016", + "format": "", + "content": "THBT ICC should forcefeed detainees going on hunger strike.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2016", + "format": "", + "content": "TH, as China, would allow women, and only women, to marry multiple male partners.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2016", + "format": "", + "content": "THBT Israel should Privatize the West Bank Checkpoints.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2016", + "format": "", + "content": "THR the overwhelming narrative of good triumphing over evil in childrens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2016", + "format": "", + "content": "THW rather be a part of “Club 27” thank live an average anonymous.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2016", + "format": "", + "content": "In retrospect, THW have preferred Truth and Reconciliation Comissions over the ICTY to deal with the aftermath of the Yugoslav Wars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Open", + "year": "2016", + "format": "", + "content": "THW limit the time in office for heads of state to two terms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Open", + "year": "2016", + "format": "", + "content": "THB that the EU should actively support \"Women on Waves\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Open", + "year": "2016", + "format": "", + "content": "THW allow third parties (i.e. individuals or companies) who have been harmed by a workers strike to sue the union(s) for damages.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Open", + "year": "2016", + "format": "", + "content": "TH opposes the Black Lives Matters' endorsement of BDS.\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Open", + "year": "2016", + "format": "", + "content": "In countries with public healthcare, THW not cover life prolonging treatments for the elderly.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Open", + "year": "2016", + "format": "", + "content": "THBT European countries should compel migrants and refugees to attend lessons about the sexual norms prevalent in the country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Munich Open", + "year": "2016", + "format": "", + "content": "THW ban cash in the developed world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The QUB Open", + "year": "2016", + "format": "", + "content": "THW ban essential service workers from striking.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The QUB Open", + "year": "2016", + "format": "", + "content": "THS the creation of Personal Artificially Intelligent Robotic Romantic Partners.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The QUB Open", + "year": "2016", + "format": "", + "content": "THB Violent Protest is Legitimate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The QUB Open", + "year": "2016", + "format": "", + "content": "THBT the South Korean Government should ban propaganda balloons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The QUB Open", + "year": "2016", + "format": "", + "content": "THBT televised debates between the leaders of major parties before general elections do more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The QUB Open", + "year": "2016", + "format": "", + "content": "THS the destruction of historical artifacts seen to glorify atrocities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The QUB Open", + "year": "2016", + "format": "", + "content": "THBT the Northern Irish government should aggressively promote a distinct 'Northern Irish' Identity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Mini", + "year": "2016", + "format": "", + "content": "TH regrets the rise of TV talent shows.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Mini", + "year": "2016", + "format": "", + "content": "THW ban zero-hour contracts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Mini", + "year": "2016", + "format": "", + "content": "THW prohibit people with criminal records from running for political office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Mini", + "year": "2016", + "format": "", + "content": "TH regrets the rise of pop feminism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Mini", + "year": "2016", + "format": "", + "content": "TH believes that it would be in Russia's interest to abandon the goal of becoming a global superpower rivaling the US.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2016", + "format": "", + "content": "TH would ban private healthcare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2016", + "format": "", + "content": "TH would require children, to the extent they are able, to financially support their parents in old age.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2016", + "format": "", + "content": "TH regrets the remilitarisation of Japan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2016", + "format": "", + "content": "TH would ban foreign states from funding religious organisations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2016", + "format": "", + "content": "TH believes that companies have a moral obligation to significantly invest in helping the communities in which they operate, even when it has no benefit to that organisation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trivium Tournament", + "year": "2016", + "format": "", + "content": "TH believes that feminist female students should boycott students’ corps.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trivium Tournament", + "year": "2016", + "format": "", + "content": "TH would prosecute the editor-in-chief when the magazine they are in charge of publishes falsehoods.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trivium Tournament", + "year": "2016", + "format": "", + "content": "TH would disqualify the entire amateur football club for one competition season when there are acts of violence on or around the playing field.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trivium Tournament", + "year": "2016", + "format": "", + "content": "TH would legalise a market for organs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trivium Tournament", + "year": "2016", + "format": "", + "content": "TH would prefer a monocultural society over a multicultural society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Universities Debating Championships", + "year": "2016", + "format": "", + "content": "THP a unified state-dominated public policy research landscape to one dominated by ideologically defined think tanks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Universities Debating Championships", + "year": "2016", + "format": "", + "content": "THBT Kashmir should strive for independence rather than political unification with Pakistan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Universities Debating Championships", + "year": "2016", + "format": "", + "content": "THP a world where the notion of the afterlife is based on karmic balance and not divine mercy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Universities Debating Championships", + "year": "2016", + "format": "", + "content": "THBT when systemically important financial institutions are in need of financial assistance during recessions, the burden should fall upon creditors (eg, via diluting shareholder value by turning debt into equity) rather than the government stepping in.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Universities Debating Championships", + "year": "2016", + "format": "", + "content": "THBT Islamic Authorities in South East Asia should issue a fatwa declaring Wahhabism to be un-Islamic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Universities Debating Championships", + "year": "2016", + "format": "", + "content": "THBT western social justice groups (feminist advocacy groups, LGBT advocacy groups) should have a local agenda, as opposed to a global agenda.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Universities Debating Championships", + "year": "2016", + "format": "", + "content": "THR regrets the market’s erosion of the nation state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Universities Debating Championships", + "year": "2016", + "format": "", + "content": "THR the rise of New Atheism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Universities Debating Championships", + "year": "2016", + "format": "", + "content": "THBT indigenous peoples would be justified in sabotaging (violently or otherwise) economic projects in the event that they are built across or on their land without their democratic consent.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2016", + "format": "", + "content": "As Adopting Parents, TH would tell its child it is adopted only after its teenage years.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2016", + "format": "", + "content": "TH would ban all non-medical research into the genetics of race (For example, the effect of race on intelligence, morality, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2016", + "format": "", + "content": "TH would allow the police to use entrapment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2016", + "format": "", + "content": "TH regrets the rise of the hookup culture (* The hookup culture is one which accepts and encourages casual sexual encounters focused on physical pleasure, without necessarily including emotional bonding).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2016", + "format": "", + "content": "TH believes that developing nations should ban political parties from handing out food and basic necessities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2016", + "format": "", + "content": "TH regrets the Colombian government's decision to hold a referendum on the FARC peace deal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2016", + "format": "", + "content": "THW prefer a world where people cannot lie.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2016", + "format": "", + "content": "As adoptive parents, THW only tell their children they're adopted after their teenage years.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2016", + "format": "", + "content": "THW ban non-medical research into genetics of race.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2016", + "format": "", + "content": "THW allow the police to use entrapment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2016", + "format": "", + "content": "THR the hook-up culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2016", + "format": "", + "content": "THBT developing countries should ban political parties from spreading food and other necessities.", + "infoSlide": "In countries like India and South Africa, particularly around election time, political parties are banned from spreading food and other necessities.", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Novices", + "year": "2016", + "format": "", + "content": "TH supports Tiger Parenting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Novices", + "year": "2016", + "format": "", + "content": "TH regrets the rise of the On-Demand Economy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Novices", + "year": "2016", + "format": "", + "content": "TH would allow teacher unions to veto education policy that is not linked to pay and benefits.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Novices", + "year": "2016", + "format": "", + "content": "TH believes that the United States should militarily intervene (put boots on the ground) in Syria and Iraq.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Novices", + "year": "2016", + "format": "", + "content": "TH would not allow tech companies/social media to target advertising in order to change people's political ideology.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Novices", + "year": "2016", + "format": "", + "content": "TH would let the captured wives and children of former or current Boko Haram soldiers choose to live in open society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2016", + "format": "", + "content": "TH would introduce academic streaming.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2016", + "format": "", + "content": "TH supports voluntourism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2016", + "format": "", + "content": "TH, as the state, would aggressively fund GMO research.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2016", + "format": "", + "content": "TH believes that Japan should acquire nuclear weapons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2016", + "format": "", + "content": "TH regrets the culture of casual sex.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2016", + "format": "", + "content": "TH, as an astronaut, would take part in Mars One (one way trip to Mars).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2016", + "format": "", + "content": "TH believes that the USA should never use the language of American exceptionalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2016", + "format": "", + "content": "TH would allow communities to pay for increased police presence in their area.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2016", + "format": "", + "content": "TH would implement a negative income tax.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2016", + "format": "", + "content": "TH would nationalise SpaceX’s mission to colonise Mars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2016", + "format": "", + "content": "TH supports the privatisation of Saudi Aramco.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2016", + "format": "", + "content": "TH believes that secular states should force the Catholic church to accept the ordination of female bishops.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2016", + "format": "", + "content": "TH believes that the EU should end its commitment to the free movement of people as a core principle of the single market.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2016", + "format": "", + "content": "THW allow the prosecution of news organizations for knowingly publishing false information, even when that information is not defamatory.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2016", + "format": "", + "content": "Assuming they exist, THW prefer not to know the identity of one'a soulmate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2016", + "format": "", + "content": "THBT the government of Colombia should ignore the result of the October 2nd referendum and implement the Peace Deal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2016", + "format": "", + "content": "THW not reveal the identity of authors who choose pseudonymity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2016", + "format": "", + "content": "TH prefers a world without Wikileaks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Pro-Am", + "year": "2016", + "format": "", + "content": "THW abolish the International Statute of Wizarding Secrecy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Pro-Am", + "year": "2016", + "format": "", + "content": "THW require all media organizations hosting major pre-election debates to provide live fact-checking of speakers' claims.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Pro-Am", + "year": "2016", + "format": "", + "content": "THR the negative attitude towards Golddiggers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Pro-Am", + "year": "2016", + "format": "", + "content": "TH, as the Baltic states, would incentivize brain drain from Belarus to the Baltics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Pro-Am", + "year": "2016", + "format": "", + "content": "THBT liberal parties in Europe should abandon their focus on being pro-immigration.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2016", + "format": "", + "content": "TH supports the creation of wethouses.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2016", + "format": "", + "content": "TH believes that major political decisions should be made by parliament rather than a public referendum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2016", + "format": "", + "content": "TH believes that states should make developmental aid contingent on the human rights record of the recipient country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2016", + "format": "", + "content": "TH would impose fines on public acts of climate change denial.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2016", + "format": "", + "content": "TH supports the creation of grammar schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Non_Schools_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2016", + "format": "", + "content": "TH supports Wikileaks continuing to publish the documents it acquires, even if they reveal private information about civilians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2016", + "format": "", + "content": "TH would allow soldiers to opt-out from military missions on the basis of conscience.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD IV", + "year": "2016", + "format": "", + "content": "Except where there is a clear threat to national security TH believes that it is illegitimate for Western states to limit immigration from the the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD IV", + "year": "2016", + "format": "", + "content": "TH would impose a cap on the amount of money parents are allowed to spend on their children (excluding essential healthcare and disability needs).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD IV", + "year": "2016", + "format": "", + "content": "TH believes that Hillary Clinton should put her experience overcoming sexism to the forefront of her campaign.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD IV", + "year": "2016", + "format": "", + "content": "TH regrets this trend.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD IV", + "year": "2016", + "format": "", + "content": "TH believes that progressive parties should advocate and campaign for the introduction of UBI.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD IV", + "year": "2016", + "format": "", + "content": "TH believes that Putin has been good for Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD IV", + "year": "2016", + "format": "", + "content": "TH believes that feminists should oppose capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Novice", + "year": "2016", + "format": "", + "content": "TH believes that the Feminist Movement should rebrand as Egalitarianism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Novice", + "year": "2016", + "format": "", + "content": "TH supports essential services workers rights to strike.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Novice", + "year": "2016", + "format": "", + "content": "TH would prosecute the perpetrators of Bloody Sunday.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Novice", + "year": "2016", + "format": "", + "content": "TH supports the end of the Hannibal Directive.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ISIC", + "year": "2016", + "format": "", + "content": "TH believes that the governments of developing nations should actively encourage slum tourism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ISIC", + "year": "2016", + "format": "", + "content": "TH believes that states should stop identifying citizens by their race or religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ISIC", + "year": "2016", + "format": "", + "content": "TH believes that ASEAN should give up all efforts toward greater political and economic integration.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ISIC", + "year": "2016", + "format": "", + "content": "TH believes that it is in Indonesia’s interests to join the TPP.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aztec Invitational", + "year": "2016", + "format": "", + "content": "THBT the Right to Rest should be upheld in all public spaces.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aztec Invitational", + "year": "2016", + "format": "", + "content": "THW require multi-national corporations to adhere to labor and wage standards exceeding those set by ANY individual nation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aztec Invitational", + "year": "2016", + "format": "", + "content": "THW stop playing “The Star-Spangled Banner”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aztec Invitational", + "year": "2016", + "format": "", + "content": "THW make the provision or sale of junk food and soda to children under the age of consent illegal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aztec Invitational", + "year": "2016", + "format": "", + "content": "THBT Canada should allow foreigners to access their right to die policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aztec Invitational", + "year": "2016", + "format": "", + "content": "THBT College and professional teams should be held accountable when their competitors or coaches commit sexual assault.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aztec Invitational", + "year": "2016", + "format": "", + "content": "THBT China “should fix” North Korea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aztec Invitational", + "year": "2016", + "format": "", + "content": "THR the Generation War (Millennials vs. Baby Boomers).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2016", + "format": "", + "content": "THW allocate scholarships and financial aid exclusively on the basis of financial need.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2016", + "format": "", + "content": "THS the continued consumption of old novels and films that endorse- even tacitly- the beliefs that today would be considered bigoted.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2016", + "format": "", + "content": "THW ban funding by third parties of tortious lltigiation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2016", + "format": "", + "content": "THW sanction the intelligence, military, and political leaders of Pakistan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2016", + "format": "", + "content": "THBT the feminist movement should campaign for the equal sexualization of men in the media as opposed to campaigning against the sexualization of women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2016", + "format": "", + "content": "THR the automation of jobs previously performed by humans (eg self driving cars, self checkouts).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2016", + "format": "", + "content": "THW factor public horror into the punishment of a crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2016", + "format": "", + "content": "THBT the European Union should impose punitive measures on the UK in the Brexit negotiations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2016", + "format": "", + "content": "THR the inculcation of national identity through shared rituals (eg national ceremonies, anthems, pledges of allegiance, etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS IV", + "year": "2016", + "format": "", + "content": "THR the new politics of the campus left.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "year": "2016", + "format": "", + "content": "THW require all public and private schools to teach Darwin’s theory of evolution as a scientific consensus. [Round 1].", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "year": "2016", + "format": "", + "content": "THW cede control of all national parks to indigenous tribes. [Round 2].", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "year": "2016", + "format": "", + "content": "THW impose prohibition on alcohol consumption for all college students. [Round 3].", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "year": "2016", + "format": "", + "content": "Sit back in your seats for a second, close your eyes. Imagine, if you will, that we have developed a virus with the capacity to infect 100% of society, rendering a random 30% of people infertile. This virus passes on inter-generationally, continuing this cycle of randomized 30% infertility for the foreseeable future. For the sake of simplicity, let’s name it the inferno virus. Assuming we have reached a point where the human population on Earth is unsustainable, this house would release the virus. [Round 4].", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "year": "2016", + "format": "", + "content": "THW require all Olympic sponsors to donate equal amounts of money to the Paralympics. [Round 5].", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "year": "2016", + "format": "", + "content": "THS a military coalition between the US and the Syrian government in the fight against ISIS. [Round 6].", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "year": "2016", + "format": "", + "content": "THBT niantic should provide user location from Pokemon Go to the police [Quarters].", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "year": "2016", + "format": "", + "content": "THB the place for athletes’ protests is off the field not on it [Semi’s/Novice Finals].", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "year": "2016", + "format": "", + "content": "THBT the UK should not leave the EU regardless of the referendum [Finals].", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2016", + "format": "", + "content": "TH, as Catholics, would oppose the canonisation of Mother Theresa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2016", + "format": "", + "content": "TH believes that the US Government should provide significant campaign funding for congressmen and senators who score highly on bi-partisan metrics*. *Scores derived from instances of voting with the other party, co-sponsoring bills, etc., calculated by independent bodies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2016", + "format": "", + "content": "TH believes that the life in the cartel is a better life for Tony Montana than a life of following the law.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2016", + "format": "", + "content": "TH believes that the state’s general economic approach should be to promote policies which seek to maximise net economic gain*, even when it comes at the expense of structural unemployment. * For example free trade agreements and the automation of labour.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2016", + "format": "", + "content": "TH believes that Japan should depict the act of Inseki-Jisatsu as cowardly.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2016", + "format": "", + "content": "TH believes that liberal states should provide legal and financial aid to citizens who wish to permanently emigrate from them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2016", + "format": "", + "content": "TH believes that it is within the interest of Tibetans to assimilate with China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2016", + "format": "", + "content": "TH would allow the “Cultural Defence” in all criminal proceedings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Istanbul Meridyen Debating Academy", + "year": "2016", + "format": "", + "content": "THBT governments should strictly regulate construction and renovation in order to preserve historical architecture (buildings, parks, public spaces etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Istanbul Meridyen Debating Academy", + "year": "2016", + "format": "", + "content": "THW ban self-learning sex robots that aim to be highly gratifying and realistic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Istanbul Meridyen Debating Academy", + "year": "2016", + "format": "", + "content": "THW permanently remove from service Imams who are stationed in places where an honour killing has occured.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Istanbul Meridyen Debating Academy", + "year": "2016", + "format": "", + "content": "THW not use scientific data acquired through non-ethical experiments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Istanbul Meridyen Debating Academy", + "year": "2016", + "format": "", + "content": "THW rebuild the Husartsan memorial.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw EUDC", + "year": "2016", + "format": "", + "content": "TH regrets the rise of social media as a primary source of news distribution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw EUDC", + "year": "2016", + "format": "", + "content": "TH supports Barack Obama's statements that emphasise African- Americans taking individual responsibility for improving their own position in life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw EUDC", + "year": "2016", + "format": "", + "content": "THW create state-run centres where individuals can purchase and consume psychedelic* drugs *drugs whose primary effect is to alter cognition and perception e.g. LSD and Magic Mushrooms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw EUDC", + "year": "2016", + "format": "", + "content": "TH supports strong government intervention to prevent gentrification* *process when significant numbers of wealthier people move to a poor area.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw EUDC", + "year": "2016", + "format": "", + "content": "THBT the Israel Philharmonic Orchestra should regularly play the works of Richard Wagner.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw EUDC", + "year": "2016", + "format": "", + "content": "TH regrets the mass commercialisation of football.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw EUDC", + "year": "2016", + "format": "", + "content": "TH supports Sanctuary Cities in the United States.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw EUDC", + "year": "2016", + "format": "", + "content": "THBT Latin American states should provide extensive material support for a military coup against the Venezualan government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw EUDC", + "year": "2016", + "format": "", + "content": "THBT the European Union should fund satirical* publications in its member states that target far-right political parties * the use of humour and exaggeration to criticize.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw EUDC", + "year": "2016", + "format": "", + "content": "THBT Western States should fund the spread of atheism in Iraq through provision of education, health care and welfare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw EUDC", + "year": "2016", + "format": "", + "content": "TH regrets the safe space movement’s attempts to significantly limit speech on university campuses.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw EUDC", + "year": "2016", + "format": "", + "content": "THBT western nations should support breakaway states in former Soviet Union (e.g. East Ukraine or South Ossetia) after free and fair referendum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw EUDC", + "year": "2016", + "format": "", + "content": "TH supports BRICS* countries creating alternatives to the current international economic institutions (i.e. the IMF, the World Bank, and the World Trade Organisation) * Brazil, Russia, India, China, South Africa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Partial_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw EUDC", + "year": "2016", + "format": "", + "content": "THW require the economic policies of political parties to be approved by an independent panel of experts before being used in campaigns.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw EUDC", + "year": "2016", + "format": "", + "content": "TH supports Iran’s extension of the Sharia principle of “an eye for an eye” to the victims of acid attacks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw EUDC", + "year": "2016", + "format": "", + "content": "THW nationalize and provide public access to the Metadata being gathered by online multinational companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Debate Academy", + "year": "2016", + "format": "", + "content": "THW remove all sin taxes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Debate Academy", + "year": "2016", + "format": "", + "content": "THW ban the use of armed unmanned aerial vehicles (armed drones) during warfare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Debate Academy", + "year": "2016", + "format": "", + "content": "THW give parents full access to their children's social media accounts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Debate Academy", + "year": "2016", + "format": "", + "content": "THS vigilantism in areas of severe socio-economic deprivation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Debate Academy", + "year": "2016", + "format": "", + "content": "THW create a standing army for the European Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles", + "year": "2016", + "format": "", + "content": "TH, as a feminist, believes that Kim Kardashian is a force for good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles", + "year": "2016", + "format": "", + "content": "THW not give development aid to authoritarian countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles", + "year": "2016", + "format": "", + "content": "TH, as the UK government, would remove charitable status from religious institutions that teach socially regressive ideas (e.g. that women belong in the home, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles", + "year": "2016", + "format": "", + "content": "THW remove the executive's ability to grant pardons (i.e. to cancel the legal consequences of a conviction).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles", + "year": "2016", + "format": "", + "content": "THR The rise of \"clean living\" gurus.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles", + "year": "2016", + "format": "", + "content": "THW Partition Syria into 3 countries; Kurds, Sunnis and Alawites.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol Open", + "year": "2016", + "format": "", + "content": "THW financially incentivise businesses to diversify their boards.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol Open", + "year": "2016", + "format": "", + "content": "THS the objectification of men by women in popular media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol Open", + "year": "2016", + "format": "", + "content": "THBT individuals should have the right to remove photos of themselves published without their permission, and sue for damages.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol Open", + "year": "2016", + "format": "", + "content": "THW ban footballers who commit racist actions for life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Mace 2016 (The Netherlands)", + "year": "2016", + "format": "", + "content": "TH supports ‘direct action’.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Mace 2016 (The Netherlands)", + "year": "2016", + "format": "", + "content": "TH supports a system of blind voting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Mace 2016 (The Netherlands)", + "year": "2016", + "format": "", + "content": "THW support indigenous people to be trialed, convicted and punished in accordance with the customs of their community as opposed to through the system of the national court.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Mace 2016 (The Netherlands)", + "year": "2016", + "format": "", + "content": "THBT Jitse Akse should not be punished for his fight in Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2016", + "format": "", + "content": "THW allow the police and intelligence agencies unrestricted access to the internet history and online communications of all citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2016", + "format": "", + "content": "THB that artists from dominant cultural groups should not seek to portray minority cultures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2016", + "format": "", + "content": "THW remove exemptions from anti-discrimination law for religious organisations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2016", + "format": "", + "content": "THW require all teams participating in international football competitions to have an equal representation of both sexes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2016", + "format": "", + "content": "TH supports minority ethnic parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2016", + "format": "", + "content": "TH, as a wealthy individual, would use that wealth to become a vigilante (e.g. Batman) in areas of high crime and a corrupt police force (e.g. Mexico City).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Baillie Gifford Oxford Women's Open", + "year": "2016", + "format": "", + "content": "THR the presence of heterosexual cisgender politicians at Pride parades.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Baillie Gifford Oxford Women's Open", + "year": "2016", + "format": "", + "content": "THW allow companies to include a clause in their employment contracts for women where that woman legally agrees not to get pregnant.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Baillie Gifford Oxford Women's Open", + "year": "2016", + "format": "", + "content": "THW remove the UK's exemption from the refugee quota penalty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Baillie Gifford Oxford Women's Open", + "year": "2016", + "format": "", + "content": "TH as a school teacher would not refer children to child protection services in the case of concerns about their radicalisation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Baillie Gifford Oxford Women's Open", + "year": "2016", + "format": "", + "content": "THW allow individuals to nominate a charity of their choosing to receive all inheritance tax that would be otherwise paid to the state upon their death.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Baillie Gifford Oxford Women's Open", + "year": "2016", + "format": "", + "content": "THBT white authors should not publish their reviews on Beyonce's album.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maastricht Open", + "year": "2016", + "format": "", + "content": "THBT the Mexican govenment should retroactively legalise the production and distribution of drugs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maastricht Open", + "year": "2016", + "format": "", + "content": "TH prefers governments to make cash transfers to individuals in recipient countries over government-to-government development aid.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maastricht Open", + "year": "2016", + "format": "", + "content": "TH supports the recasting of male action heroes and superheroes as female.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maastricht Open", + "year": "2016", + "format": "", + "content": "THW terminate the special relationship between the US and Saudi Arabia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maastricht Open", + "year": "2016", + "format": "", + "content": "THR the rise of anti-establishment candidates within mainstream parties (e.g. Donald Trump, Bernie Sanders, Jeremy Corbyn).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maastricht Open", + "year": "2016", + "format": "", + "content": "TH regrets the idolization of soldiers and veterans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maastricht Open", + "year": "2016", + "format": "", + "content": "THBT the UN should hire private military corporations to carry out its peacekeeping operations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Maastricht Open", + "year": "2016", + "format": "", + "content": "THW require all 18-year-olds (in Western Liberal Democracies) to go on a Rumspringa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Open", + "year": "2016", + "format": "", + "content": "THW require all news media organisations to select and publicly state a political affiliation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Open", + "year": "2016", + "format": "", + "content": "THBT Western Liberal Democracies should drastically reallocate funds from development aid budgets to research into Neglected Tropical Diseases.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Open", + "year": "2016", + "format": "", + "content": "THBT the International Monetary Fund should require states in need of Bailouts to provide collateral (e.g. Mining rights, land, shares in privatised assets).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Open", + "year": "2016", + "format": "", + "content": "THBT Norway should back off from oil drilling in the Arctic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Open", + "year": "2016", + "format": "", + "content": "THW prohibit all research aiming to create sentient artificial intelligences.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Open", + "year": "2016", + "format": "", + "content": "THW prefer Afterlife A over Afterlife B.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GUU Womens", + "year": "2016", + "format": "", + "content": "THBT governments should not fund reconstruction in areas prone to natural disasters.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GUU Womens", + "year": "2016", + "format": "", + "content": "THW reinstate bussing in the US.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GUU Womens", + "year": "2016", + "format": "", + "content": "THW pay stay at home parents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GUU Womens", + "year": "2016", + "format": "", + "content": "THBT both elected and unelected party leaders should not play a role in the nomination process (through super delegates or brokered conventions).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GUU Ancients", + "year": "2016", + "format": "", + "content": "THBT all European Football Associations should aggressively redistribute income from successful to less successful clubs within their own country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GUU Ancients", + "year": "2016", + "format": "", + "content": "THW abolish the distinction between an attempted and a completed crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GUU Ancients", + "year": "2016", + "format": "", + "content": "THW introduce a binding direct democracy app.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GUU Ancients", + "year": "2016", + "format": "", + "content": "THW break up banks deemed \"too big to fail\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GUU Ancients", + "year": "2016", + "format": "", + "content": "TH, as the SNP, would never vote on UK legislation which does not extend territorially to Scotland.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GUU Ancients", + "year": "2016", + "format": "", + "content": "THBT people of colour activist groups, such as the NAACP, should pursue a race-blind society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GUU Ancients", + "year": "2016", + "format": "", + "content": "THBT civilians are a legitimate target in conflict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2016", + "format": "", + "content": "THW require the use of a draft by lottery when engaged in extended military intervention.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2016", + "format": "", + "content": "THS filial responsibility laws.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2016", + "format": "", + "content": "THBT criminal defendants who hire private counsel should not be afforded the right against self-incrimination at trial.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2016", + "format": "", + "content": "THP a world with memory writing technology.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2016", + "format": "", + "content": "THBT Israel should set aside a certain percentage of seats in the Knesset to be elected by diaspora Jews.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2016", + "format": "", + "content": "THS health insurance companies offering terminally ill patients the option of a lump sum payment to forgo expensive life-extending treatments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "This house believes that European media outlets should refrain from reporting on crimes committed by refugees - Round 1.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "This house would compel media to declare a political bias - Round 1.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "THS former colonial states involvement in propping up autocratic, but stable, regimes in Africa - Round 2.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "Sam Childers, the “Machine Gun Preacher” is an American citizen who travelled to Sudan in order to take up arms against the Lords Resistance Army (a terrorist organsation). Childers has set up a local resistance network that does not co-ordinate with the Sudanese state and employs violent methods to resist the LRA. THS Sam Childers - Round 2.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "THS protesters who protest at political gatherings with the aim of causing them to be cancelled - Round 3.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "This house would set term limits for MPs in Parliament. - Round 3.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "You are a research scientist working for a large pharmaceutical corporation. You accidentally discover a drug which indefinitely delays the aging process for as long as it is taken (and produces gold). No-one else is aware of what you have done. THW destroy all evidence of your discovery - Round 4.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "TH, as an embattled ruler (in Westeros), would arm religious fanatics in order to bolster your rule - Round 4.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "TH, as an embattled ruler (in Westeros), would arm religious fanatics in order to bolster your rule - Round 4.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "In 49BC, the general Julius Caesar attempted to return from a successful campaign in Gaul to Rome. The Roman Senate, fearing Caesar’s popularity with his army and the people, issued an ultimatum that Caesar was to not cross the border marked by the River Rubicon, else he would be named a traitor and spark a civil war. TH, as Caesar, would cross the Rubicon - Round 5.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "Following the total defeat of the French army in 1940, the British Government received an offer of peace from Nazi Germany. Any terms would have left Hitler in control of continental Europe, but would have prevented (at least in the short-term) an attack on Britain. The Cabinet of new Prime Minister Winston Churchill was divided over whether to enter into negotiations. TH, as Winston Churchill, would argue against peace - Round 5.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "In 49BC, the general Julius Caesar attempted to return from a successful campaign in Gaul to Rome. The Roman Senate, fearing Caesar’s popularity with his army and the people, issued an ultimatum that Caesar was to not cross the border marked by the River Rubicon, else he would be named a traitor and spark a civil war. TH, as Caesar, would cross the Rubicon - Round 5.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "Following the total defeat of the French army in 1940, the British Government received an offer of peace from Nazi Germany. Any terms would have left Hitler in control of continental Europe, but would have prevented (at least in the short-term) an attack on Britain. The Cabinet of new Prime Minister Winston Churchill was divided over whether to enter into negotiations. TH, as Winston Churchill, would argue against peace - Round 5.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "THB that South Korea should develop nuclear weapons - Round 6.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "The South China Sea is the cause of several territorial and resource-based disputes between several surrounding nations. China has been a particularly aggressive claimant of rights to resources and territory within the area. The United States publicly disagrees with China’s claims and has deployed military vessels into the area to “by monitor the situation”. THB the United States should end all involvement in the dispute - Round 6.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "THB that South Korea should develop nuclear weapons - Round 6.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "The South China Sea is the cause of several territorial and resource-based disputes between several surrounding nations. China has been a particularly aggressive claimant of rights to resources and territory within the area. The United States publicly disagrees with China’s claims and has deployed military vessels into the area to “by monitor the situation”. THB the United States should end all involvement in the dispute - Round 6.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "THW give conscientious objectors equal status to veterans in government memorialisation of war - Round 7.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "THS white progressives criticising illiberal practices in non-Western and/or minority cultures - Round 7.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "THW give conscientious objectors equal status to veterans in government memorialisation of war - Round 7.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "THS white progressives criticising illiberal practices in non-Western and/or minority cultures - Round 7.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "This house, as the GOP establishment, would prevent Donald Trump from receiving the nomination in a contested convention even if he receives the largest share of delegates - Round 8.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "This house, as the GOP senate leadership, would support Merrick Garland’s nomination for the Supreme Court - Round 8.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "This house, as the GOP establishment, would prevent Donald Trump from receiving the nomination in a contested convention even if he receives the largest share of delegates - Round 8.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "This house, as the GOP senate leadership, would support Merrick Garland’s nomination for the Supreme Court - Round 8.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "THB progressives should refrain from criticising Caitlyn Jenner’s endorsement of Ted Cruz - Semi Final 1.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "THR the reliance on land settlements as reparation for colonial injustices - Semi Final 2.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "THR that cultural identities and practices are primarily bound to racial heritage- Semi Final 2.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "THB progressives should refrain from criticising Caitlyn Jenner’s endorsement of Ted Cruz - Semi Final 1.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "THR the reliance on land settlements as reparation for colonial injustices - Semi Final 2.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "THR that cultural identities and practices are primarily bound to racial heritage- Semi Final 2.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "Cecil Rhodes was the creator of the Rhodes scholarship for Oxford. He was also a British imperialist known for beginning enforced racial segregation in South Africa and for his belief in the superiority of the Anglo-Saxon race. He is commemorated in a number of ways at Oxford University, including through a prominent statute. A student movement called “Rhodes must fall” is campaigning for the university to remove all references to him from the campus. THBT Rhodes must fall - Grand Final.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "TH, as a police officer in the United States who witnesses a minor non-violent crime being committed by an African American individual, would refrain from arresting that individual - Grand Final.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "Cecil Rhodes was the creator of the Rhodes scholarship for Oxford. He was also a British imperialist known for beginning enforced racial segregation in South Africa and for his belief in the superiority of the Anglo-Saxon race. He is commemorated in a number of ways at Oxford University, including through a prominent statute. A student movement called “Rhodes must fall” is campaigning for the university to remove all references to him from the campus. THBT Rhodes must fall - Grand Final.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NZ Easters", + "year": "2016", + "format": "", + "content": "TH, as a police officer in the United States who witnesses a minor non-violent crime being committed by an African American individual, would refrain from arresting that individual - Grand Final.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That we should tax and redistribute wealth contained in university endowment funds.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That universities should make use of quotas for ideological groups (e.g. conservatives) for teaching and research staff.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That the state should employ more non university graduates and use tax penalties to encourage other employers to do the same.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That the EU should require member states to set common rules and rates for corporate taxation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That investors should divest from fossil fuel companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That the US should have aggressively pushed for the inclusion of China in the TPP.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That as the Catholic church we should deny communion to politicians who vote contrary to its teachings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That we should have a truth and reconciliation commission for Catholic church abuse.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That the West should seek to fund moderate Islamic religious groups in the Middle East.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That Pacific Rim countries should make Australian participation in future trade agreements contingent on the abandonment of their asylum seeker detention policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That Australia should automatically trigger an election when the governing party replaces the prime minister.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That despite the opposition of the Myanmar government the international community should set up a safe haven for the Rohingyas in Myanmar.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That we should apply the same criminal sanctions to late term abortions and infanticide.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That we should replace the institution of the family with well run state child raising facilities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That we should allow individuals to enter contracts specifying conditions on their relationship e.g. salary level, weight limits, frequency of sex.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That we regret the possibility of jury nullification.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That we should implement Good Samaritan laws (legally obliging bystanders to assist those in danger, unless doing so would place them at serious risk).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That illegally gathered evidence should be admissible in court.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis_3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That state level affiliates of the Democratic Party in conservative states should disaffiliate and establish a new party.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That US presidential primaries in all states should be run on the same date.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Australs", + "year": "2016", + "format": "", + "content": "That the West should select and train local activists to oppose 'third termist' leaders (those trying to subvert or remove term limits) in Sub-Saharan Africa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals_3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian BP Nationals", + "year": "2016", + "format": "", + "content": "This House would provide free, safe drugs to individuals with addictions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian BP Nationals", + "year": "2016", + "format": "", + "content": "This House prefers collective parenting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian BP Nationals", + "year": "2016", + "format": "", + "content": "This House believes that major social media platforms (e.g. Facebook, Twitter) should censor bigotry.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian BP Nationals", + "year": "2016", + "format": "", + "content": "This House, as the United States, would engage in cyber-attacks against Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian BP Nationals", + "year": "2016", + "format": "", + "content": "This House would grant legal personhood to land.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian BP Nationals", + "year": "2016", + "format": "", + "content": "This House believes that it is unethical to bring a new child into this world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian BP Nationals", + "year": "2016", + "format": "", + "content": "This House would program the robots to hide the existence of past human life on Earth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2016", + "format": "", + "content": "THW make the number of votes an individual has inversely proportional to their wealth (i.e. the more wealth an individual has the fewer votes in an election).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2016", + "format": "", + "content": "TalkToys are dolls with Artificial Intelligence (AI) and speech recognition software that enable them to engage in an actual conversation with children (they have a lexicon of thousands of prescript responses). TalkToys are meant to serve as a companion to the child, and they are in the late stages of development. Prominent examples of toys that will be able to talk include Barbie, G.I Joe and Star Wars and Action Figures. THW Ban TalkToys.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2016", + "format": "", + "content": "The NRA, National Rifle Association of America, is a lobbying group in Washington. Its notable actions include influencing legislation aimed to deregulate gun ownership laws, initiating lawsuits against municipalities that have banned or have placed strict regulations on firearm laws, and endorsing candidates mainly of the Republican Party. THBT the US should require the NRA to pay reparations to victims of gun violence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2016", + "format": "", + "content": "THW suspend trade unions and labour protection laws in times of economic crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2016", + "format": "", + "content": "Conscription is mandatory in Egypt for males of ages between 18 to 30. The service obligation is between 12 to 36 months and is followed by a 9-year reserve duty. THBT Egypt Should Conscript Women to Female-Only Units.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2016", + "format": "", + "content": "THBT Sex Education Classes in Schools Should Teach Techniques For Pure Sexual Gratification (including, but not limited to, anal sex, oral sex, mutual gratification and masturbation).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2016", + "format": "", + "content": "THW release inmates from jail solely on the basis of their rehabilitation and not upon the completion of a predetermined period of time.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2016", + "format": "", + "content": "During the first centuries AD there was no religious law demanding clerical celibacy in the Catholic sect of Christianity, and there is no direct mentioning of such a requirement in the New Testament. Celibacy is being thought to have been universally adopted by Catholiscm after a decision made by a council in 12th century. TH, as Pope Francis, would remove the requirement of catholic priests to take a vow of celibacy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2016", + "format": "", + "content": "THBT jobs that are deemed to be of moral value or societal importance should have their wages set by the state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Erasmus Rotterdam Open", + "year": "2016", + "format": "", + "content": "THBT using Human Shield tactics, by the weaker side, can be justified in a-symmetrical wars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Liverpool IV", + "year": "2016", + "format": "", + "content": "THBT schools should aggressively stream students, according to their ability, from a young age.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Liverpool IV", + "year": "2016", + "format": "", + "content": "TH prefers a criminal justice system that pursues criminal and civil charges against individuals within companies, rather than fines against the entire company.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Liverpool IV", + "year": "2016", + "format": "", + "content": "THBT Western States should support and engineer coups in militarily weak states they identify as having authoritarian leaders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Liverpool IV", + "year": "2016", + "format": "", + "content": "THW compel news media to give coverage to all demonstrations proportionate to the size of that demonstration.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Liverpool IV", + "year": "2016", + "format": "", + "content": "THW remove all legal restrictions on categories of weapons which can be used in war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Liverpool IV", + "year": "2016", + "format": "", + "content": "THBT the Gotham City Police Force should seek to offer Wayne employment as an officer within their force.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "This House believes that Western States should irrevocably remove citizenship of citizens who join the so-called Islamic State.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "This House would weight shareholder votes in line with the length of time their shares have been held.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "This House believes that voters should always vote on policy and principles regardless of electability in all elections (general, local, or party leadership).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "This House believes that film studios should seek to select racially diverse casts when converting books into films even if it differs from the author's original character description.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "This House believes that welfare and pensions policy should be determined by a panel of experts selected by their peers, not accountable to government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "This House, as a feminist, would adopt traditionally masculine traits and behaviours.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "This House believes that the US-led coalition should no longer insist on Assad stepping down as part of their negotiations with Russia over Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "This House would prefer a world without sexual attraction.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "In a minimal state, a government's role is exclusively to protect property rights and people's physical security. Beyond this, such a state would not intervene in people's lives, or provide any public services. THBT a minimal state is justified.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "THBT Western States should irrevocably remove citizenship of citizens who join the so-called Islamic State.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "Shareholders have the right to vote on various important issues pertaining to a company (e.g. hiring and firing executives, mergers and acquisitions, budgets, and major changes in corporate strategy). THW weight shareholder votes in line with the length of time their shares have been held.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "THBT voters should always vote on policy and principles regardless of electability in all elections (general, local, or party leadership).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "THBT film studios should seek to select racially diverse casts when converting books into films even if it differs from the original character descriptions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "THBT welfare and pensions policy should be determined by a panel of experts selected by their peers, not accountable to government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "TH, as a feminist, would adopt traditionally masculine traits and behaviours.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "THBT the US-led coalition should no longer insist on Assad stepping down as part of their negotiations with Russia over Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "THW prefer a world without sexual attraction.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL Clifford Chance IV", + "year": "2016", + "format": "", + "content": "THBT a minimal state is justified.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2016", + "format": "", + "content": "THW ban private political donations, and fund all political parties and campaigns from general taxation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2016", + "format": "", + "content": "THW ban private political donations, and fund all political parties and campaigns from general taxation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2016", + "format": "", + "content": "THW not allow workers to renounce their employment rights (e.g. holiday pay, defined working hours, sick pay, minimum wage) in return for work experience or financial benefit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2016", + "format": "", + "content": "THW not allow workers to renounce their employment rights (e.g. holiday pay, defined working hours, sick pay, minimum wage) in return for work experience or financial benefit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2016", + "format": "", + "content": "THBT Oskar Gröning should not have been prosecuted.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2016", + "format": "", + "content": "Oskar Gröning chose to join the SS during the 1940s, and was positioned at Auschwitz concentration camp as a financial clerk. After the end of the war, he remained silent about his experiences for forty years. In response to Holocaust denial by a number of authoritative and well-known individuals, he spoke about his experiences and actions, highlighting the horrors that occurred. This contributed to a decision of the German government to prosecute him as an accessory to murder in 300,000 cases. THBT Oskar Gröning should not have been prosecuted.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2016", + "format": "", + "content": "THBT European Leaders should not have agreed to renegotiate the terms of Britain's EU membership.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2016", + "format": "", + "content": "THBT European Leaders should not have agreed to renegotiate the terms of Britain's EU membership.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2016", + "format": "", + "content": "THBT it is legitimate to release the unpublished personal memoirs of deceased public figures, even when this is against the express wishes of the individual or their family.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2016", + "format": "", + "content": "THBT it is legitimate to release the unpublished personal memoirs of deceased public figures, even when this is against the express wishes of the individual or their family.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2016", + "format": "", + "content": "This House supports the French government's decision to dismantle the \"Calais jungle.\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2016", + "format": "", + "content": "THBT Barack Obama should nominate an individual considered to be a moderate conservative by US citizens to the Supreme Court.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2016", + "format": "", + "content": "THBT Barack Obama should nominate an individual considered to be a moderate conservative by US citizens to the Supreme Court.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2016", + "format": "", + "content": "THW ban all further research into artificial intelligence that can independently learn and develop.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2016", + "format": "", + "content": "THW ban all further research into artificial intelligence that can independently learn and develop.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Surrey IV", + "year": "2016", + "format": "", + "content": "THBT Britain should leave the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Surrey IV", + "year": "2016", + "format": "", + "content": "THW abolish private home ownership.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Surrey IV", + "year": "2016", + "format": "", + "content": "Tiger parenting is a strict or demanding style of parenting focused on pushing children to high levels of achievement. It is characterised by a strong routine (e.g. compulsory homework time), high expectations and physiological control through both positive (e.g. praise/encouragement) and negative (e.g. threats, criticism) means. TH supports Tiger Parenting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Surrey IV", + "year": "2016", + "format": "", + "content": "THBT the United States should abolish political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Surrey IV", + "year": "2016", + "format": "", + "content": "THBT Saudi Arabia should privatise Saudi Aramco and list it on the NY Stock Exchange.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2016", + "format": "", + "content": "TH welcomes the proliferation of porn online.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2016", + "format": "", + "content": "THW remove 'Gone with The Wind' from the National Film Registry.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2016", + "format": "", + "content": "THBT the UN Should unilterally recognise Catalan independence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2016", + "format": "", + "content": "THW Ban research on genome editing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2016", + "format": "", + "content": "As a democratic state that has come under unprovoked nuclear attack from another democratic state THW launch a nuclear counter-attack.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2016", + "format": "", + "content": "THS the extra-judicial killing of a state's citizens, by that state, where there is reason to suspect they are involved in the planning or carrying out of terrorist activities, and arrest is not possible.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2016", + "format": "", + "content": "THS People's Quantitative Easing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2016", + "format": "", + "content": "Superior Orders is a plea in a court of law that a person not be held guilty for actions that were ordered by a superior officer, but are criminal. It cannot be applied to actions that are manifestly unlawful (e.g. genocide or crimes against humanity). TH Accepts the defense of Superior Orders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2016", + "format": "", + "content": "THW replace means tested welfare with a regular, unconditional and Universal Basic Income paid by the State to all residents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2016", + "format": "", + "content": "THW Allow convicts who are parents to raise their children in prison.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2016", + "format": "", + "content": "THB School History curricula should teach a unanimously and graphically negative account of the impacts of Western colonialism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2016", + "format": "", + "content": "The Pirate bay is a website where users illegally download copyrighted material such as music, films and video games. Attempts have been made by numerous governments to shut it down. TH Supports the Pirate Bay.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2016", + "format": "", + "content": "THW Ban all advertising.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2016", + "format": "", + "content": "THW Celebrate Furiosa from Mad Max: Fury Road as a feminist Icon.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2016", + "format": "", + "content": "TH rejects the right to privacy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2016", + "format": "", + "content": "THW ban fortune telling.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2016", + "format": "", + "content": "THW directly elect the members of the US Supreme Court.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2016", + "format": "", + "content": "THBT schools should motivate children to believe that anyone can succeed through hard work regardless of their background.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2016", + "format": "", + "content": "THW grant those diagnosed with terminal illnesses the right to access treatments that have not completed clinical testing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2016", + "format": "", + "content": "THBT post conflict governments should recruit rebel soldiers into state armies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2016", + "format": "", + "content": "THW would allow the armed forces to unionise, strike, and collectively bargain.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2016", + "format": "", + "content": "THW allow individuals to sell their right to sue to a third party.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2016", + "format": "", + "content": "THW enact an immediate democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women's (@ Hart House)", + "year": "2016", + "format": "", + "content": "THR the rise of dating apps (e.g. Tinder, Grindr, Hitch, Hinge,etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women's (@ Hart House)", + "year": "2016", + "format": "", + "content": "THBT continued membership in the UN should be contingent on countries opting into universal jurisdiction.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women's (@ Hart House)", + "year": "2016", + "format": "", + "content": "TH, as a minority parent in North America, would teach their kids not to trust the justice system, or figures of legal authority (e.g. police, judges, state prosecutors, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women's (@ Hart House)", + "year": "2016", + "format": "", + "content": "TH would prefer the reclamation of disputed monuments (e.g. the Rhodes Status at Oxford, Voertrekker Monuments in South Africa, Yakusuni Shrine in Japan, etc.) to their destruction.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women's (@ Hart House)", + "year": "2016", + "format": "", + "content": "THS legal abortions for men.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women's (@ Hart House)", + "year": "2016", + "format": "", + "content": "THW preference a strong social media over a physical presence in protest culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women's (@ Hart House)", + "year": "2016", + "format": "", + "content": "TH, as the Nicaraguan people, opposes the construction of the Nicaraguan Canal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women's (@ Hart House)", + "year": "2016", + "format": "", + "content": "THW prefer a world in which people are sedated to experience only mild emotions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2016", + "format": "", + "content": "This House would ban essential service providers from striking.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2016", + "format": "", + "content": "This House believes that the music press should publish unrepresentatively negative reviews of the music of artists whose conduct they view as reprehensible.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2016", + "format": "", + "content": "This House believes that supreme/constitutional courts should not have the power to strike down legislation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2016", + "format": "", + "content": "To proselytise means to attempt to convert others to your beliefs. This House believes that atheists should proselytise.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2016", + "format": "", + "content": "This House, as the West, would immediately end all sanctions against Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2016", + "format": "", + "content": "This House believes that the British Museum should give all artifacts to the nations where they originated.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2016", + "format": "", + "content": "For the purposes of this debate, the American Dream refers to the socially widespread belief that individuals can improve their circumstances through hard work, and that one can become successful regardless of their background. This House regrets the American Dream.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Queen’s Annual TRUST IV", + "year": "2016", + "format": "", + "content": "THBT websites such as Sci-Hub cause more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Queen’s Annual TRUST IV", + "year": "2016", + "format": "", + "content": "THW allow companies to buy the rights to govern economically failing cities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Queen’s Annual TRUST IV", + "year": "2016", + "format": "", + "content": "The U.S. Kill list is a highly classified list of primarily terrorist target. Targets, include both US and non-US citizens, that the US Government seeks to assassinate using covert operations, drone strikes and other means. TH supports the aims of the U.S. “Kill list”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Queen’s Annual TRUST IV", + "year": "2016", + "format": "", + "content": "In Northern Ireland same sex marriage is illegal. Northern Ireland only permits abortions if the continuance of the pregnancy is proven to threaten the life of the mother. THW automatically extend Westminster Policies on Human Rights and anti-discrimination issues to Northern Ireland. This includes, but is not limited to, same sex marriage and abortion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Queen’s Annual TRUST IV", + "year": "2016", + "format": "", + "content": "You are a working class voter in a swing seat constituency between high-welfare, high-taxation party and a low-welfare, low-taxation party. THW vote for low-wlfare, low-taxation party.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Queen’s Annual TRUST IV", + "year": "2016", + "format": "", + "content": "THW abolish state primaries in US presidential elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Queen’s Annual TRUST IV", + "year": "2016", + "format": "", + "content": "TH supports western feminists wearing the headscarf in solidarity with Muslim women who wear the hijab who have faced islamophobia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kyiv Open", + "year": "2016", + "format": "", + "content": "THBT Ukraine should introduce mandatory military service.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kyiv Open", + "year": "2016", + "format": "", + "content": "THW democratically elect members of constitutional courts (sometimes called \"Supreme Courts\").", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kyiv Open", + "year": "2016", + "format": "", + "content": "THBT mainstream media should stop reporting on information from wikileaks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kyiv Open", + "year": "2016", + "format": "", + "content": "THW ban alchocol in all former soviet states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kyiv Open", + "year": "2016", + "format": "", + "content": "THBT the Nobel prize in literature should be decided by members of the public rather than a panel of experts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kyiv Open", + "year": "2016", + "format": "", + "content": "THBT the EU should grant Ukraine membership and the necessary funding in exchange for hosting all refugees seeking asylum in the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kyiv Open", + "year": "2016", + "format": "", + "content": "THBT the state should criminalize the seeking of mail-order brides.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2016", + "format": "", + "content": "THBT the governments of Europe should censor media from publishing articles, videos or cartoons which promote racist views or stereotypes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2016", + "format": "", + "content": "This house believes that parliamentary electoral systems should include constituency links.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2016", + "format": "", + "content": "THB that MGM Studios should cast a male as the sexual interest of the next Bond film.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2016", + "format": "", + "content": "TH would begin writing only in your first language.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2016", + "format": "", + "content": "THB that Western states should engage in covert cyber-attacks against infrastructure designed to limit freedom of speech* in authoritarian states. *e.g., the Great Firewall of China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2016", + "format": "", + "content": "TH supports climate change activists engaging in acts, regardless of legality, which cause mass disruption to carbon-intensive infrastructure networks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2016", + "format": "", + "content": "THW only allow the media to publish or broadcast government produced releases on suspected terrorist attacks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2016", + "format": "", + "content": "THBT the Brazillian government should encourage and facilitate the integration of uncontacted peoples into wider society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2016", + "format": "", + "content": "THW create and fund schools that exclusively admit children from ethnic minorities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2016", + "format": "", + "content": "TH Supports the proliferation of free schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2016", + "format": "", + "content": "THIS HOUSE WOULD require all government ministers to have majority approval from the professional bodies their department has legislative responsibility for. (For example, the UK Minister for Health would need majority approval from the British Medical Association).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2016", + "format": "", + "content": "Assuming there are actors who fit the criteria: THIS HOUSE BELIEVES That film directors have a moral obligation to cast actors who share key lived experiences with the characters they play.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2016", + "format": "", + "content": "THIS HOUSE BELIEVES That western liberal democracies should cease all direct military action in Iraq, Syria, Libya and Yemen.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2016", + "format": "", + "content": "THIS HOUSE WOULD Make corporation tax proportional to company wage ratios.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2016", + "format": "", + "content": "THW Introduce a system of tradable quotas for asylum seekers in the European Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL Semifinal", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2016", + "format": "", + "content": "THW Prefer to live in A Brave New World.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2016", + "format": "", + "content": "THW Introduce a system of tradable quotas for asylum seekers in the European Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open Quarterfinal", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2016", + "format": "", + "content": "THBT The USA should adopt a parliamentary democracy rather than a presidential one.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open Semifinal", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2016", + "format": "", + "content": "THW Allow individuals to sign contracts which cede future rights of theirs to other individuals (for example, to sell themselves into slavery).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Swansea Open", + "year": "2016", + "format": "", + "content": "THW ban religious or faith-based rehabilitation programmes in prison.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Swansea Open", + "year": "2016", + "format": "", + "content": "THW provide financial incentives (e.g. tax breaks) to companies that require skilled labour who hire non-graduates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Swansea Open", + "year": "2016", + "format": "", + "content": "THBT characters with disabilities in film and television should always be played by individuals with disabilities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Swansea Open", + "year": "2016", + "format": "", + "content": "THR the criminalization of the reckless transmission of sexual infections (e.g. HIV, herpes and gonorrhoea) in England and Wales.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Swansea Open", + "year": "2016", + "format": "", + "content": "Your 'one true soulmate' exists. There is a test that allows you to determine whether someone is your one true soulmate. You are in love with the person you have been dating for a while.\r\nTHW take the test to determine whether the person you are in love with is your 'soulmate'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ICYD- Oxford Round", + "year": "2016", + "format": "", + "content": "This House Would introduce Proportional Representation in UK general elections.\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace - English Leg", + "year": "2016", + "format": "", + "content": "This House would allow offenders serving a prison term of ten or more years to opt to remain in prison indefinitely beyond their court appointed release date.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace - English Leg", + "year": "2016", + "format": "", + "content": "This House believes that the US and UK should cease selling arms to Saudi Arabia until they withdraw from Yemen.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace - English Leg", + "year": "2016", + "format": "", + "content": "This House believes that LGBT+ advocacy groups and lobbyists should publicly fight for reparations for the victims, and the families of victims, of the AIDS epidemic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace - English Leg", + "year": "2016", + "format": "", + "content": "This House regrets Aung San Suu Kyi's declaration of intention to control the National League of Democracy (NLD) despite being constitutionally barred from running for president.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace - English Leg", + "year": "2016", + "format": "", + "content": "This House prefers a world where the conception of the afterlife is based on karmic balance, rather than divine mercy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace - Scottish Finals", + "year": "2016", + "format": "", + "content": "This house would not wear a poppy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace - Scottish Finals", + "year": "2016", + "format": "", + "content": "This house supports the Boycott, Divestment, Sanctions movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace - Scottish Finals", + "year": "2016", + "format": "", + "content": "This house regrets South Africa's Rainbow Nation narrative (long prep).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace - Scottish Finals", + "year": "2016", + "format": "", + "content": "This House Believes the Eurozone should adopt a policy of fiscal union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace - Scottish Finals", + "year": "2016", + "format": "", + "content": "This House supports the Lean In movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace - Scottish Finals", + "year": "2016", + "format": "", + "content": "This House believes that the Britain Stronger in Europe campaign should pursue a 'Project Fear' strategy of negative campaigning similar to Better Together* in the upcoming referendum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace - Scottish Finals", + "year": "2016", + "format": "", + "content": "This House would welcome a resurgence of Pink Tide Values in Latin American Politics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warwick IV", + "year": "2016", + "format": "", + "content": "THBT government authorities, being the police, should preserve illegal art as evidence for prosecution of the artists responsible.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warwick IV", + "year": "2016", + "format": "", + "content": "THBT, in developing nations with an ineffectual state school system, the government should financially incentivise (e.g through tax breaks) the creation of private schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warwick IV", + "year": "2016", + "format": "", + "content": "THBT it is never a legitimate economic strategy for a state to become a tax haven.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2016", + "format": "", + "content": "This House Would Ban All Lobbying Activity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2016", + "format": "", + "content": "THW Allow Deaf Parents to Refuse Treatment for Deafness On Behalf of their Children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2016", + "format": "", + "content": "THBT strong dictatorships in the Middle East are better than weak democracies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2016", + "format": "", + "content": "This House as the LGBTQIA Community Would Oppose Pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2016", + "format": "", + "content": "This House Opposes Laicité.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2016", + "format": "", + "content": "THB in the use of fear to instill values in children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2016", + "format": "", + "content": "TH Supports Hacking as a Form of Protest.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2016", + "format": "", + "content": "There exists a drug that increases empathy in individuals. TH, as the state, would lace their country's water supply with that drug.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2016", + "format": "", + "content": "THW Welcome the End of American Intervention.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Women's Open", + "year": "2016", + "format": "", + "content": "THW actively reward the use of Hiberno-English in schoolwork and examinations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Women's Open", + "year": "2016", + "format": "", + "content": "THW make Ulysses contracts enforceable by the courts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Women's Open", + "year": "2016", + "format": "", + "content": "THW genetically engineer major meat animals not to feel pain.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Women's Open", + "year": "2016", + "format": "", + "content": "THS the concept of orgasm intervention.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity Women's Open", + "year": "2016", + "format": "", + "content": "TH, as an individual with strong and deeply held convictions, would die for their cause.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Queen Mary IV", + "year": "2016", + "format": "", + "content": "TH Supports Voluntourism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Queen Mary IV", + "year": "2016", + "format": "", + "content": "THBT it is in the UK's interest to leave the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Queen Mary IV", + "year": "2016", + "format": "", + "content": "THW ban boarding schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Queen Mary IV", + "year": "2016", + "format": "", + "content": "THW introduce mixed-gender low security prisons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Queen Mary IV", + "year": "2016", + "format": "", + "content": "THBT student unions should not take political positions that do not directly pertain to tertiary education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "University of Latvia Open", + "year": "2016", + "format": "", + "content": "THBT the Cultural Trend Of \"Selfies\" Has Been Good For Women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "University of Latvia Open", + "year": "2016", + "format": "", + "content": "THS The Depiction Of The USSR as Absolutely Evil.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "University of Latvia Open", + "year": "2016", + "format": "", + "content": "THW Only Direct European Investment Fund Money to States That Agree to Take a Share of Refugees Proportional to Their Share of EU GDP.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "University of Latvia Open", + "year": "2016", + "format": "", + "content": "THBT Governments Ought To Use The Technology To Detect The “Criminal Gene”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "University of Latvia Open", + "year": "2016", + "format": "", + "content": "THW Permit The Cloning Of Genius And Extraordinary Individuals For The Good Of The Society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "University of Latvia Open", + "year": "2016", + "format": "", + "content": "TH Prefers a Multipolar World To US Hegemony.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "University of Latvia Open", + "year": "2016", + "format": "", + "content": "THBT All Countries Should Forcibly Redistribute Land Ownership So That at Least 50% Of It Is Owned By Women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2016", + "format": "", + "content": "This house would allow people to opt into religious structures with the power to punish them in this life (e.g., Beth Din courts, or Sharia courts) for infractions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2016", + "format": "", + "content": "THW pay reparations to women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2016", + "format": "", + "content": "This house believes that young, educated people in Western countries should focus their charitable efforts (e.g., volunteering, donations, etc.) towards benefiting the disadvantaged in their own country, as opposed to in the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2016", + "format": "", + "content": "This house believes that the Labour Party should have worked to rehabilitate Tony Blair’s image in its campaigning, prior to the 2015 General Election.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2016", + "format": "", + "content": "This house believes that governments should promote, support, and incentivise students to attend MOOCs instead of Universities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2016", + "format": "", + "content": "This house believes that the global Anglican church should split into two churches, rather than maintain a single communion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2016", + "format": "", + "content": "THW ban TV programmes and entertainment media from portraying convicted criminals as innocent.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2016", + "format": "", + "content": "THW trigger a general election when a country goes into recession.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2016", + "format": "", + "content": "THW exclusively fund domestic NGOs in developing countries as opposed to western NGOs working in developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2016", + "format": "", + "content": "TH, as a progressive female candidate, would not use conventional gender roles (e.g. marketing oneself as a mother or a wife) as a tactic in political campaign.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2016", + "format": "", + "content": "TH supports the introduction of bystander laws.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2016", + "format": "", + "content": "Semi-Final: THBT the USA should make Taiwanese independence a major foreign-policy aim.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2016", + "format": "", + "content": "Open Final: THW conscientiously object in situations of war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms", + "year": "2016", + "format": "", + "content": "THW require that companies with >15 employees give 50% of their voting rights to employees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms", + "year": "2016", + "format": "", + "content": "THS Chris Rock’s continued commitment to host the Oscars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms", + "year": "2016", + "format": "", + "content": "THR the Arab Spring.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms", + "year": "2016", + "format": "", + "content": "THW ban eminent domain rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms", + "year": "2016", + "format": "", + "content": "THW prefer a world without pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms", + "year": "2016", + "format": "", + "content": "THBT developing nations should enshrine legally actionable socioeconomic rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms", + "year": "2016", + "format": "", + "content": "THBT unconditional cash transfer charities are preferable to project based charities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms", + "year": "2016", + "format": "", + "content": "Given the technological capability to disable their nuclear weapons, THW invade North Korea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms", + "year": "2016", + "format": "", + "content": "THW break up the eurozone.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms", + "year": "2016", + "format": "", + "content": "THW ban savior siblings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms", + "year": "2016", + "format": "", + "content": "TH regrets campaigns by feminists to shut down female empowerment events exclusively for cis women, like Michfest.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms", + "year": "2016", + "format": "", + "content": "You have invented a pill that would compel the user to tell the truth. THW destroy it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "London Pro-Am", + "year": "2016", + "format": "", + "content": "This House Would Not Provide State Funding for Art Based Higher Education, eg. art, music, drama.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "London Pro-Am", + "year": "2016", + "format": "", + "content": "This House Supports Politicians Passing Progressive Legislation, Even When it is Contrary to the Wishes of the Democratic Electorate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "London Pro-Am", + "year": "2016", + "format": "", + "content": "THBT it is in the interest of the Conservative Government to impose a travel ban on Donald Trump.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "London Pro-Am", + "year": "2016", + "format": "", + "content": "THW make the use of armed drones a war crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2016", + "format": "", + "content": "THW significantly reduce funding for schools that perpetuate inaccuracies in their teachings of indigenous history.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2016", + "format": "", + "content": "THBT social movements should abandon the tactic of publicly shaming individuals in order to accomplish change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2016", + "format": "", + "content": "THP a tech industry characterized by multiple smaller firms rather than one dominated by a few large players (e.g. Google Amazon Facebook in status quo).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2016", + "format": "", + "content": "TH, as the US, would re-impose sanctions on Myanmar until the Rohingyas receive political representation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2016", + "format": "", + "content": "THW require news websites and publications to provide opposing points of view on all politically contested issues.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2016", + "format": "", + "content": "THBT governments should provide significant financial incentives for urban citizens to move to rural areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2016", + "format": "", + "content": "THS unfettered free trade.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2016", + "format": "", + "content": "THR South Africa's withdrawal from the ICC.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2016", + "format": "", + "content": "THBT minority comedians should not play up stereotypes based upon their own identity within performances.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2016", + "format": "", + "content": "THW delicense corporations that do not engage in social responsibility proportional to their profit margins (e.g. campaigns to end hunger in a community, giving away portion of profit to charity, implementing more environmentally friendly business operations etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "THW allow states to use mercenary forces in combat roles in active military operations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "THW prohibit private ownership of art deemed to be culturally or historically significant.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "THBT all states should collectively aggregate and evenly distribute all revenue from mineral wealth globally on a per capita basis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "THBT governments with racially diverse populations should never record the ethnic or racial background of their residents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "THBT the US should withdraw from East Asia and cede regional hegemony to China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "THBT states should adopt sunset clauses that legally force them to review and either re-authorize or revise their constitutions every generation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "TH supports stronger collective bargaining rights and protections rather than legislated labor market regulations (e.g., wage levels and working conditions).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "THBT the creation of feminist icons and their cults of personality are good for the feminist movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "THBT criminal punishments should be based only on the offenders' culpability rather than the damages caused by the criminal act or other outcomes derived from the punishment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "TH would retrospectively criminalise excessively risky management practises for economically significant corporations and prosecute the executives responsible for them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "THBT campaigners for refugee protection should not use pictures displaying the graphic suffering of refugees as part of their advocacy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "THW prefer a world in which extremely wealthy people in Western liberal states donate excess money to their governments rather than to charities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "THB the West should prioritize stability over exporting democracy in foreign policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "TH supports the decline of the nations-state's power in an increasingly globalized world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "Assuming the technology to do so easily and safely exists, THW force everyone in society to undergo periodic sex changes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Masters_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "THW kill baby Hitler.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Masters_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "TH regrets mainstream, commercial films that depict historical subjugation and/or crimes against humanity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Partials", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "TH would nationalize all systemically important financial institutions, such as banks and insurance companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "TH supports the establishment of a Black secessionary state within the territory of the United States, the founding of which is supported by the American government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "THBT non-western countries who were once colonized, when fabricating the material culture of national identity (anthems, street names, holidays, flag, etc.) should privilege pre colonial history and notions of indigeneity over themes of anti colonial resistance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki WUDC", + "year": "2016", + "format": "", + "content": "THBT the world's poor would be justified in pursuing complete Marxist revolution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2015", + "format": "", + "content": "THW allow the trophy hunting of endangered animals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2015", + "format": "", + "content": "THW programme self-driving cars to prioritise the number of lives saved when faced with unavoidable collisions as opposed to prioritising the safety of the driver.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2015", + "format": "", + "content": "THW ban the Orange Walk.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2015", + "format": "", + "content": "THBT LGBTQ+ campaigns should criticise the nuclear family.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2015", + "format": "", + "content": "THBT African Union states should withdraw from the International Criminal Court and set up an African alternative.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2015", + "format": "", + "content": "THBT when faced with the choice between spending discretionary income on non-essentials or giving to charity, individuals should always choose to give to charity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2015", + "format": "", + "content": "THW allow mental health charities to sue media outlets for the defamation of the mentally ill.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2015", + "format": "", + "content": "THBT the Parliamentary Labour Party should immediately depose Jeremy Corbyn by a vote of no confidence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2015", + "format": "", + "content": "THBT the USA should publicly apologise for the bombing of Hiroshima and Nagasaki.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2015", + "format": "", + "content": "THR the Narrative of the American Dream.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2015", + "format": "", + "content": "THB The State Should Not Attach any Legal or Fiscal Privileges to the Family Unit (e.g tax breaks, spousal exemptions etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2015", + "format": "", + "content": "THR The Fall of the Galactic Empire.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2015", + "format": "", + "content": "THW Introduce an Excise Tax on Tabloids to Finance a Subsidy of Broadsheet.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2015", + "format": "", + "content": "THW exclude Turkey from NATO if it Continues Bombing Kurdish Troops in Syria and Iraq.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2015", + "format": "", + "content": "THR the Narrative of Having one Great Calling or Purpose in Life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2015", + "format": "", + "content": "THR the Negative Connotations Surrounding Creating Art for the Primary Purpose of Profit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Partial_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2015", + "format": "", + "content": "THW Ban Mens’ Rights Activist Groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2015", + "format": "", + "content": "TH as the Republican National Committee Would Literally Kick Donald Trump out of the Republican Party.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2015", + "format": "", + "content": "THW ban plea bargaining.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2015", + "format": "", + "content": "THS the use of coercive economic and diplomatic measures against states in which serious environmental damange to natural resources of share global importance is occurring.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2015", + "format": "", + "content": "THW ban surgical genital alteration procedures for minors that are not strictly medically necessary for bodily or sexual function.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2015", + "format": "", + "content": "TH welcomes the rise of for-profit education in developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2015", + "format": "", + "content": "THW ban the use of religious rhetoric and symbols in political campaigns.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2015", + "format": "", + "content": "TH supports a three-state solution to the Israeli-Palestinian conflcit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2015", + "format": "", + "content": "THBT retribution should not be a part of the criminal justice system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2015", + "format": "", + "content": "THB abortions that are based on the fetus showing signs of non-fatal physical and developmental disabilities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2015", + "format": "", + "content": "THS universal jurisdiction for crimes against humanity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian British Parliamentary Championships (@ York University)", + "year": "2015", + "format": "", + "content": "THS the rise of homeschooling among minority communities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian British Parliamentary Championships (@ York University)", + "year": "2015", + "format": "", + "content": "THBT environmental refugees should be granted citizenship in countries that have contributed most heavily to global pollution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian British Parliamentary Championships (@ York University)", + "year": "2015", + "format": "", + "content": "THBT minority groups seeking public support for equal rights should emphasize distinct cultures over similarity to the mainstream.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian British Parliamentary Championships (@ York University)", + "year": "2015", + "format": "", + "content": "THW financially assist inner-city neighbourhoods in order to prevent gentrification, for instance by subsidizing mixed-income housing over public housing projects.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian British Parliamentary Championships (@ York University)", + "year": "2015", + "format": "", + "content": "THBT all democracies should ban relatives of past office holders from running for election.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian British Parliamentary Championships (@ York University)", + "year": "2015", + "format": "", + "content": "THS genderless parenting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian British Parliamentary Championships (@ York University)", + "year": "2015", + "format": "", + "content": "THBT the Association of Southeast Asian Nations (ASEAN) should have its own regional peacekeeping force.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian British Parliamentary Championships (@ York University)", + "year": "2015", + "format": "", + "content": "THBT private education institutions should facilitate student demands for spaces of protest to be kept free of media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Women's Open", + "year": "2015", + "format": "", + "content": "THBT governments should place no restrictions on how welfare payments, excluding child benefit, are spent.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Women's Open", + "year": "2015", + "format": "", + "content": "THBT social disgust is sufficient justification for censoring art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Women's Open", + "year": "2015", + "format": "", + "content": "THW legally permit soldiers to refuse to participate in military actions or missions on the basis of conscience.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Women's Open", + "year": "2015", + "format": "", + "content": "THBT states should take high numbers of refugees, even when faced with strong democratic opposition.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Women's Open", + "year": "2015", + "format": "", + "content": "THBT Britain should pay reparations to its former colonies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Women's Open", + "year": "2015", + "format": "", + "content": "THR the Rise of the Rom-Com Genre.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2015", + "format": "", + "content": "THW abolish all rent control laws.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2015", + "format": "", + "content": "THBT no media should ever be allowed to endorse any candidates in democratic elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2015", + "format": "", + "content": "THW ban religious proselytization in prisons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2015", + "format": "", + "content": "THBT all self-driven cars must use the same government-mandated algorithm to solve the \"trolley problem.\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2015", + "format": "", + "content": "THW prefer the creation of class-based affirmative action programs over race-based affirmative action programs at higher education institutions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2015", + "format": "", + "content": "This house prefers direct intervention of Western nations over backing of non-state actors in armed conflicts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2015", + "format": "", + "content": "THW abolish all publicly accessible sex offender registries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brad Smith Debate Tournament", + "year": "2015", + "format": "", + "content": "THS a single-payer healthcare system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "JADE College Cup", + "year": "2015", + "format": "", + "content": "This house believes that standardized testing, as a requirement for admission to universities, does more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "JADE College Cup", + "year": "2015", + "format": "", + "content": "This house would institute a mandatory retirement age for politicians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "JADE College Cup", + "year": "2015", + "format": "", + "content": "This house believes that Britain should pay reparations to Jamaica.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2015", + "format": "", + "content": "This house believes that medical staff should be able to opt out of providing treatments on religious or ethical grounds.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2015", + "format": "", + "content": "This house regrets the eastward expansion of the European Union during and since 2004.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2015", + "format": "", + "content": "This house would prefer a world without religious beliefs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2015", + "format": "", + "content": "This house believes that Israel should have continued the occupation of Gaza.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2015", + "format": "", + "content": "This house believes that educational institutions should never attempt to restrict the freedom of expression of students or staff (except when mandated by law).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2015", + "format": "", + "content": "This House Regrets the perception that soldiers are heroes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2015", + "format": "", + "content": "THBT Saudi Arabia should limit participation in the Hajj to the citizens of countries that are committed to taking direct action against IS.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2015", + "format": "", + "content": "THR the partition of India.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2015", + "format": "", + "content": "TH Opposes the Sharing Economy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2015", + "format": "", + "content": "THBT the international community should pay countries near to conflict zones to process, settle and restrict the further movement of refugees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2015", + "format": "", + "content": "TH, as an individual feminist, would boycott tinder.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2015", + "format": "", + "content": "THW publish all salaries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2015", + "format": "", + "content": "THW pay direct reparations to the descendants of slaves in the United States.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2015", + "format": "", + "content": "TH, with the exception of news reporting, would not allow anyone to publish or profit off accounts of violent criminals' crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2015", + "format": "", + "content": "TH opposes the search for a cure to autism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2015", + "format": "", + "content": "You are a female Democratic candidates running in the general election for President of the U.S. The results are extremely close going into the vote. One of your staffers tells you, with certainty, that they can right the election of your favour with little chance of detection. THW do it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2015", + "format": "", + "content": "TH prefers a world where memories and accurately recorded and available for external playback.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham ESL Novice Mini", + "year": "2015", + "format": "", + "content": "THW impose gender and racial quotas in government cabinets.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham ESL Novice Mini", + "year": "2015", + "format": "", + "content": "Assuming we live in a world where superheroes exist, THW require superheroes to publicly reveal their identities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham ESL Novice Mini", + "year": "2015", + "format": "", + "content": "THW pay a living wage to stay-at-home parents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham ESL Novice Mini", + "year": "2015", + "format": "", + "content": "THBT environmentalists should launch violent campaigns against major polluting companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham ESL Novice Mini", + "year": "2015", + "format": "", + "content": "THW dramatically reduce the patent life on life saving drugs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Practice Tournament", + "year": "2015", + "format": "", + "content": "THBT India should discourage arranged marriages.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Practice Tournament", + "year": "2015", + "format": "", + "content": "THW only invest in those African countries that put adequate effort into the protection of biological diversity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Practice Tournament", + "year": "2015", + "format": "", + "content": "(Open motion) THW sacrifice anything for safety.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Practice Tournament", + "year": "2015", + "format": "", + "content": "THW offer temporary tax relief to Baltic emigrants coming back home.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Practice Tournament", + "year": "2015", + "format": "", + "content": "TH, as NATO, W not offer assistance in case of the armed forces of Russia entering any of the Baltic states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2015", + "format": "", + "content": "THW aggressively prioritize women for military leadership positions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2015", + "format": "", + "content": "THW provide a universal basic income.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2015", + "format": "", + "content": "THS the Animal Liberation Front.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2015", + "format": "", + "content": "THW regularly publish the proposed content of international trade deals throughout the entire negotiation process.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2015", + "format": "", + "content": "THW remove tax-exempt status from religious institutions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2015", + "format": "", + "content": "Assuming a low probability of detection, THS scientists who falsify data in order to exagerrate the harms of climate change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2015", + "format": "", + "content": "TH, as Taiwan, would cease efforts to develop deeper economic, cultural, and diplomatic ties with mainland China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2015", + "format": "", + "content": "THW enforce Ulysses contracts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2015", + "format": "", + "content": "This House Would Ban Religious Primary and Secondary Schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2015", + "format": "", + "content": "This house believes US immigration policy should only prioritise merit-based standards of acceptance over the reunification of families.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2015", + "format": "", + "content": "This house would end penalty enhancements for hate crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2015", + "format": "", + "content": "This House believes that Western Liberal Democracies should boycott the 2018 FIFA World Cup in Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2015", + "format": "", + "content": "This house would allow opponents of abortion to sign legally-binding contracts with pregnant women, in which they pay those pregnant women not to have an abortion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2015", + "format": "", + "content": "THW accept 'I was only following orders' as a defence in war crimes trials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2015", + "format": "", + "content": "THR the institutions of marriage and civil partnership.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2015", + "format": "", + "content": "THW create and enforce filial responsibility laws (mandating that people take care of their parents)\" - or words to that effect.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2015", + "format": "", + "content": "THR the rise of mega-cities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2015", + "format": "", + "content": "THBT after 50 years of ownership the state should have the right to repossess all works of painting or sculpture for the purpose of public display.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2015", + "format": "", + "content": "A new planet has been discovered identical to Earth. 1 of 2 systems can be implemented on this planet (or words to that effect). THW implement communism over capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Open", + "year": "2015", + "format": "", + "content": "THW ban cosmetic surgery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Open", + "year": "2015", + "format": "", + "content": "THBT African countries should adopt English as the principal language of instruction in schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Open", + "year": "2015", + "format": "", + "content": "THW only fund medicine based on its impact on Quality Adjusted Life Years.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Open", + "year": "2015", + "format": "", + "content": "TH, as the West, would cooperate with Russia in its military intervention in Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Open", + "year": "2015", + "format": "", + "content": "THBT the media should not report on the private lives of politicians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Open", + "year": "2015", + "format": "", + "content": "THBT female game designers should prioritise over everything else the creation of female characters.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Open", + "year": "2015", + "format": "", + "content": "THW ban scientific research into the genetics of race.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2015", + "format": "", + "content": "THW fine news organisations who consistently fail to meet a standard of fair and balanced reporting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2015", + "format": "", + "content": "THW require gaming companies to offer their products free of charge to women, in cases where there is a significant gender disparity in consumption.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2015", + "format": "", + "content": "THW abolish and ban all agricultural subsidies in the European Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2015", + "format": "", + "content": "Assuming you would not be found out, in the event of a terrorist attack on EU soil committed by Islamist extremists, THW fabricate evidence that the attack was committed by the dominant ethnic and socio-economic group, e.g. white Anglo-Saxons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2015", + "format": "", + "content": ".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2015", + "format": "", + "content": "THW impose sanctions on Erdogan's AKP government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2015", + "format": "", + "content": "THBT the concept of \"safe spaces\" has no place in any academic activity or environment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2015", + "format": "", + "content": "That academic social science departments should make active efforts to hire faculty that do not have progressive beliefs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2015", + "format": "", + "content": "This house would restrict the benefits of the schengen agreement to citizens of the EU only.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2015", + "format": "", + "content": "That the government should regulate automated driving systems (e.g. google driverless cars), so that in the event of a potential accident, the programme makes decisions that prioritise the safety of those outside of the vehicle over that of the passengers within.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2015", + "format": "", + "content": "That non-white actors shouldn’t pursue roles where characters they would portray are based on ethnic stereotypes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2015", + "format": "", + "content": "That governments in democracies should not control the school history curriculum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2015", + "format": "", + "content": "That people who currently choose to be vegetarian on the grounds of animal welfare should instead consume products where the production process treats animals well.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2015", + "format": "", + "content": "That technology companies should refuse to provide governments information about their customers, even if that would mean breaking the law.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2016", + "format": "", + "content": "THW compel colleges to pay athletes as professionals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2016", + "format": "", + "content": "THBT the EU should enforce freedom of movement within current Schengen countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2016", + "format": "", + "content": "TH supports Lean In feminism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2016", + "format": "", + "content": "THW ban adoption agencies which select families on religious grounds.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2016", + "format": "", + "content": "THBT states should strive to reduce inequality even after everyone has enough for an acceptable quality of life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2016", + "format": "", + "content": "THW allow students to vote on the curriculum they are taught in schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2015", + "format": "", + "content": "THW require a turnout quota be met to legitimize elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2015", + "format": "", + "content": "THBT prominent female athletes should reject offers to play in professional male leagues.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2015", + "format": "", + "content": "THW suspend the domestic operations of companies that actively conceal violations of major environmental regulations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2015", + "format": "", + "content": "TH regrets the decline of formal participation in religious institutions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2015", + "format": "", + "content": "TH, as Japan, would remove Article 9 from its constitution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2015", + "format": "", + "content": "THW privatize Petrobras.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2015", + "format": "", + "content": "Given the existence of a drug that eliminates fear with minimal to no side effects, THW let soldiers opt into using it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Fall Classic", + "year": "2015", + "format": "", + "content": "THBT developed nations should abolish all protectionist trade policies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Fall Classic", + "year": "2015", + "format": "", + "content": "THBT sports leagues with systems of promotion and relegation are good for fans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Fall Classic", + "year": "2015", + "format": "", + "content": "THBT the transgender movement should leave the LGBTQ movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Fall Classic", + "year": "2015", + "format": "", + "content": "Deaf culture is the set of social beliefs, behaviours, art, literary traditions, history, values and shared institutions of communities that are influenced by deafness and which use sign languages as the main means of communication. As a hearing parent of a deaf child, THW choose to mainstream your child to the exclusion of participation in deaf culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Fall Classic", + "year": "2015", + "format": "", + "content": ".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Fall Classic", + "year": "2015", + "format": "", + "content": ".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Fall Classic", + "year": "2015", + "format": "", + "content": "THW abolish all US military aid to Saudi Arabia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2015", + "format": "", + "content": "THW give women two votes in political elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2015", + "format": "", + "content": "THBT law enforcement organisations should never provide incentives to gang members to inform on their superiors (e.g. plea bargains or monetary rewards).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2015", + "format": "", + "content": "TH regrets the decline in oil prices over the last 18 months.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2015", + "format": "", + "content": "THBT Donald Trump’s presidential campaign is good for America.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2015", + "format": "", + "content": "THW allow countries to pay other countries to settle refugees who reach their borders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2015", + "format": "", + "content": "THBT countries, like Switzerland, that were neutral in WW II should pay financial reparations to states occupied by the Nazis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2015", + "format": "", + "content": "THBT the state should reclaim a fixed proportion of all charitable giving and redistribute it to other charities on the basis of their effectiveness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2015", + "format": "", + "content": "THBT the trans movement should actively seek to separate themselves, their issues and their collective identity from the LGBTQ movement in their campaigns and in the public consciousness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2015", + "format": "", + "content": "THW prefer a world in which there are no extreme emotions such as boiling rage, falling madly in love, extreme grief etc.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2015", + "format": "", + "content": "THW cap every company's highest salary at 10x the lowest salary within that company.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2015", + "format": "", + "content": "In countries with few female politicians, THBT it is good to have a politically active First Lady.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2015", + "format": "", + "content": "THW introduce a tax on \"low brow\" entertainment in order to subsidise \"high brow\" art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2015", + "format": "", + "content": "THBT criminal justice policy should be outsourced to technocrats instead of elected representatives.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2015", + "format": "", + "content": "TH as Western Countries ( EU, US, Canada, Australia) would stop selling arms to Saudi Arabia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2015", + "format": "", + "content": "THBT militaries should aggressively engage in the genetic and bionic enhancement of consenting soldiers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2015", + "format": "", + "content": "THBT the US and it's allies should announce Intentions to capture and try, as opposed to assassinate the leaders of Da'esh (IS).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2015", + "format": "", + "content": "THW ban companies from using fear as a tactic in advertising.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2015", + "format": "", + "content": "THBT the police should work with hacktivists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2015", + "format": "", + "content": "THO the notion that marriage is meant to be long-lasting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2015", + "format": "", + "content": "Assuming Russia agrees to help fight ISIS, TH, as the US, would cease funding to Syrian rebel groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2015", + "format": "", + "content": "THO films/TV shows that depict a minority narrative through a white heteronormative lense.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2015", + "format": "", + "content": "THR the rise of the sharing economy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2015", + "format": "", + "content": "THBT treasure hunters should have possession of any artefacts they find.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2015", + "format": "", + "content": "THBT individuals should not share their political views on social media platforms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Claremont", + "year": "2015", + "format": "", + "content": "Disinviting college and university speakers does more good than harm.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Claremont", + "year": "2015", + "format": "", + "content": "Low-level offenders shopuld have their fates determined by neighbors rather than traditional courts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Claremont", + "year": "2015", + "format": "", + "content": "There should be no space missions without United Nations scientific approval.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Claremont", + "year": "2015", + "format": "", + "content": "The sharing economy does more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Claremont", + "year": "2015", + "format": "", + "content": "Government should create public space on the Internet for social protest and political free speech.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Claremont", + "year": "2015", + "format": "", + "content": "This House would establish a universal passport.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Claremont", + "year": "2015", + "format": "", + "content": "The US federal government should bail out states and cities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Claremont", + "year": "2015", + "format": "", + "content": "This House supports a permanent seat with veto power on the UN Security Council for Africa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Claremont", + "year": "2015", + "format": "", + "content": "Colonial powers should pay reparations for the Atlantic slave trade.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Claremont", + "year": "2015", + "format": "", + "content": "The US federal government should rewrite its constitution every 25 years.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD IV", + "year": "2015", + "format": "", + "content": "THW require approval from local referenda for all major land development decisions (e.g stadiums, airport extensions, railways etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD IV", + "year": "2015", + "format": "", + "content": "THS the July 2015 decision of the UK government to deny a visa to Tyler the Creator.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD IV", + "year": "2015", + "format": "", + "content": "THBT the West should abandon its foreign policy aim of removing Assad from power.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD IV", + "year": "2015", + "format": "", + "content": "THW allow asylum seekers to work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD IV", + "year": "2015", + "format": "", + "content": "THBT the government should only fund further education courses that have high graduate employment rates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD IV", + "year": "2015", + "format": "", + "content": "THBT political parties’ Cabinets and Shadow Cabinets should be elected by the members of that party.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD IV", + "year": "2015", + "format": "", + "content": "THR the overwhelming narrative of good triumphing over evil in children’s entertainment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2015", + "format": "", + "content": "THW ban religious K-12 schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2015", + "format": "", + "content": "THBT voters should be able to override the votes of their elected representatives on individual bills by two-thirds or greater referendum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2015", + "format": "", + "content": "THBT developed nations should pay reparations to developing nations that have experienced significant adverse consequences from climate change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2015", + "format": "", + "content": "TH rejects the media's intentional humanization of those responsible for heinous acts or crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2015", + "format": "", + "content": "THBT the US should join the Asian Infrastructure Investment Bank.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2015", + "format": "", + "content": "Given the existence of a drug that dramatically increases mental capacity, THBT universities should ban and test for student use of the drug.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2015", + "format": "", + "content": "THBT American feminists have an obligation to vote for a female presidential candidate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2015", + "format": "", + "content": "THW not vote for protest candidates in primary elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2015", + "format": "", + "content": "THW legalize graffiti in public spaces.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2015", + "format": "", + "content": "THBT the EU should offer Greece full debt relief in exchange for its housing at least 200,000 Syrian refugees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2015", + "format": "", + "content": "THW prioritize support of domestic reporters in areas of conflict over the use of Western reporting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2015", + "format": "", + "content": "THW ban private schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2015", + "format": "", + "content": "THS government collection of private information as a security measure.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2015", + "format": "", + "content": "THW abolish industry awards (i.e. the Oscars, the Emmys, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2015", + "format": "", + "content": "THW only give aid to devleoping countries that have good environmental policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2015", + "format": "", + "content": "THW enforce a Cap and Trade system for refugee quotas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2015", + "format": "", + "content": "THS the use of feminist narratives in advertising for beauty products.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2015", + "format": "", + "content": "THR the prominence of professional sports in American pop culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2015", + "format": "", + "content": "This house believes that President Obama should pardon those convicted of low level drug possession charges en masse.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2015", + "format": "", + "content": "This house supports the establishment of zero rating platforms in the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2015", + "format": "", + "content": "This house believes that socially progressive organisations and institutions should aggressively pursue policies to accommodate underprivileged groups, such as mandatory preferred gender pronoun introductions, trigger warnings prior to discussion on sensitive topics and the creation of autonomous spaces.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2015", + "format": "", + "content": "This house believes that Greece is better outside the Euro.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2015", + "format": "", + "content": "You are an incredibly respected art critic. You own a private art gallery which the rich, famous, and influential fly from around the world to visit. Recently a photograph has come to prominence among elite art circles, and as a consequence has become incredibly sought after - hailed for its gritty realism. It is a graphic photograph of a woman killed and raped by her husband, taken by police as evidence. You have been offered the original photograph for your collection. This house would refuse.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2015", + "format": "", + "content": "This house believes that presidential primaries in the United States should be placed on the same day.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2015", + "format": "", + "content": "This house believes that developing countries should employ western professionals to run their courts and police forces.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens Open", + "year": "2015", + "format": "", + "content": "THW tax religious institutions at the same levels as for-profit businesses.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens Open", + "year": "2015", + "format": "", + "content": "TH welcomes the rise of Anti-Establishment Candidates, such as Bernie Sanders, Donald Trump, and Jeremy Corbyn.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens Open", + "year": "2015", + "format": "", + "content": "THS the leaking of Ashley Madison data.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens Open", + "year": "2015", + "format": "", + "content": "THW prohibit the transfer of football players outside their home leagues until the age of 26.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens Open", + "year": "2015", + "format": "", + "content": "TH, as Iran, would covertly continue developing its nuclear weapons program.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens Open", + "year": "2015", + "format": "", + "content": "THBT Serbia and FYR Macedonia should immediately close their borders to asylum seekers and undocumented migrants.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Athens Open", + "year": "2015", + "format": "", + "content": "THBT Greece should return to the Drachma.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna EUDC", + "year": "2015", + "format": "", + "content": "This House would pay all elected politicians the median wage in their country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna EUDC", + "year": "2015", + "format": "", + "content": "This House believes that when multi-national corporations conduct any business in Western states, these nations should enforce their environmental standards at all stages of production.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna EUDC", + "year": "2015", + "format": "", + "content": "This House believes that Western states should not use private military contractors in combat.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna EUDC", + "year": "2015", + "format": "", + "content": "This House would ban any treatment, service or ritual from claiming a physical healing effect until it is tested and proven more effective than a placebo by a national regulator.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna EUDC", + "year": "2015", + "format": "", + "content": "This House believes that the European Union should lift its arms embargo on China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna EUDC", + "year": "2015", + "format": "", + "content": "This House would only allow the media and campagning organisations to depict or publish information about the deceased in a tragedy with the explicit permission of the family.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna EUDC", + "year": "2015", + "format": "", + "content": "TH believes that the West should stop all attempts to gather information or intelligence by deception and/or coercion of foreign citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna EUDC", + "year": "2015", + "format": "", + "content": "TH believes that it is legitimate for individuals to punish people they deem to have committed online harassment by revealing their identity online.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna EUDC", + "year": "2015", + "format": "", + "content": "THW introduce a 100% inheritance tax.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna EUDC", + "year": "2015", + "format": "", + "content": "TH would legalise surrogacy for profit in Western Liberal Democracies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna EUDC", + "year": "2015", + "format": "", + "content": "TH would introduce a mandatory term of at least 1 year of non-military national service for 18year olds.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna EUDC", + "year": "2015", + "format": "", + "content": "TH would allow EU citizens to donate to political parties in any EU state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis_Aborted", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna EUDC", + "year": "2015", + "format": "", + "content": "TH believes that parents of a musical child genius have a moral obligation to push that child to maximise their musical potential.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna EUDC", + "year": "2015", + "format": "", + "content": "TH would prohibit businesses from taking a public position on social issues.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna EUDC", + "year": "2015", + "format": "", + "content": "TH would require all defendants in criminal cases to be represented only by state-employed lawyers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna EUDC", + "year": "2015", + "format": "", + "content": "TH would treat the deaths of soldiers as regrettable losses of lives rather than examples of heroism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2015", + "format": "", + "content": "THBT the media should not report on the personal lives of politicians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2015", + "format": "", + "content": "THS the use of Sanctuary City Policies by US cities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2015", + "format": "", + "content": "THW Require all school history curricular to focus 50% of their time and resources on women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2015", + "format": "", + "content": "THBT the South Korean Government should break up Chaebol conglomerates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2015", + "format": "", + "content": "THBT, in new democracies, military leaders should not be allowed to run for public office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2015", + "format": "", + "content": "TH, as Dr Bob Hare, would not make the pyschopathy checklist publicly available.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2015", + "format": "", + "content": "THW use NATO forces to defend sites of significant cultural and historical importance from permanent destruction.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rijeka Open", + "year": "2015", + "format": "", + "content": "THW criminalize the buyer and not the seller of sexual services.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rijeka Open", + "year": "2015", + "format": "", + "content": "THBT western liberal democracies should replace their aid programs with an \"effective altruism\" tax, and give revenue to the most effective available non-governmental organisations or charities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rijeka Open", + "year": "2015", + "format": "", + "content": "THW allow victims to significantly reduce the sentence of their wrongdoers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rijeka Open", + "year": "2015", + "format": "", + "content": "THW prefer a world in which all art were anonymous over a world where it were always attributed to the artist.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rijeka Open", + "year": "2015", + "format": "", + "content": "The European Council comprises the heads of state of the member states of the EU, along with the council’s own president and the president of the commission M.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rijeka Open", + "year": "2015", + "format": "", + "content": "THBT states should provide citizens with an unconditional income that ensures a lower-middle class standard of living, regardless of their employment status.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rijeka Open", + "year": "2015", + "format": "", + "content": "Assuming that the technology existed, THW erase history from our collective memory.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS Open", + "year": "2015", + "format": "", + "content": "This House would heavily financially incentivise companies to take current prisoners as interns or apprentices.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS Open", + "year": "2015", + "format": "", + "content": "This House, as a vegan, would actively and persistently seek to convert those around you to veganism or vegetarianism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS Open", + "year": "2015", + "format": "", + "content": "This House regrets the large number of UN resolutions issued against Israel.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS Open", + "year": "2015", + "format": "", + "content": "This House would disproportionately hire African Americans in the US police force.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS Open", + "year": "2015", + "format": "", + "content": "This House opposes the commodification of feminism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCT 150th Year Open", + "year": "2015", + "format": "", + "content": "Assuming the owners of Ashley Madison refuse to shut down the website, TH as the Impact Team would release the user data.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 0, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCT 150th Year Open", + "year": "2015", + "format": "", + "content": "THW Create Special School for LGBT+ Youths.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCT 150th Year Open", + "year": "2015", + "format": "", + "content": "THBT democracies should give migrant workers a vote in national elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCT 150th Year Open", + "year": "2015", + "format": "", + "content": "THBT leaders of minority religions within Europe should strongly encourage their congregations to refrain from overt public displays of their faith (assuming theologically possible.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCT 150th Year Open", + "year": "2015", + "format": "", + "content": "THW grant artists a percentage of the resale value of their artwork (the amount the art is sold on for if and when the initial inquirer decides to sell it on.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCT 150th Year Open", + "year": "2015", + "format": "", + "content": "THBT the NAACP should have encouraged Rachel Dolezal to stay on as the Spokane chapter President.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCT 150th Year Open", + "year": "2015", + "format": "", + "content": "TH Regrets that South Africa did not turn Omar Al-Bashir over to the International Criminal Court.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCT 150th Year Open", + "year": "2015", + "format": "", + "content": "THBT the International Monetary Fund should require collateral for national bailouts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCT 150th Year Open", + "year": "2015", + "format": "", + "content": "THBT South Africa should ban apartheid symbols and flags, along with those of other oppressive regimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EuroDebate", + "year": "2015", + "format": "", + "content": "THW heavily subsidize art that glorifies the working class.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EuroDebate", + "year": "2015", + "format": "", + "content": "THW assess pupils on individual academic development instead of standardized examination results.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EuroDebate", + "year": "2015", + "format": "", + "content": "THBT social media should remove content it deems to be offensive to religions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EuroDebate", + "year": "2015", + "format": "", + "content": "THR SCOTUS’s decision to legalize same sex marriage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BBU Open", + "year": "2015", + "format": "", + "content": "THS the use of signature strikes as part of American military policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BBU Open", + "year": "2015", + "format": "", + "content": "THW require that all international debt bailout agreements are approved by a referendum of the country receiving that bailout.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BBU Open", + "year": "2015", + "format": "", + "content": "THW tax low-brow entertainment (e.g WWE wrestling, Keeping Up with The Kardashians, mainstream popular music) in order to subsidise high-brow art (e.g. Shakespeare, Bach, some arthouse film).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BBU Open", + "year": "2015", + "format": "", + "content": "THBT a simple majority of the legislature of an established democracy should be able to change or overturn any piece of legislation (including constitutions).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BBU Open", + "year": "2015", + "format": "", + "content": "THW ban working more than 35 hours a week (with no exceptions).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BBU Open", + "year": "2015", + "format": "", + "content": "THW give control over all aspects education policy to local authorities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BBU Open", + "year": "2015", + "format": "", + "content": "THR the perception of soldiers as heroes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallinn Tech Open", + "year": "2015", + "format": "", + "content": "THW only give unemployment benefits to individuals if they agreed to relocate to areas where employment is significantly more likely.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallinn Tech Open", + "year": "2015", + "format": "", + "content": "THW require superheroes to publicly reveal their identities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallinn Tech Open", + "year": "2015", + "format": "", + "content": "TH, as a Jeff Gordon, would publicly come out.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallinn Tech Open", + "year": "2015", + "format": "", + "content": "TH, as Harry Potter, would have used The Imperius Curse on Voldemort and control him to do good for the society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallinn Tech Open", + "year": "2015", + "format": "", + "content": "THW criminalize the use of deep web regardless of the content it is used for.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallinn Tech Open", + "year": "2015", + "format": "", + "content": "THR the glorification of startup culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallinn Tech Open", + "year": "2015", + "format": "", + "content": "This House as the President of the United States would opt to destroy the alien ship.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "English Open", + "year": "2015", + "format": "", + "content": "TH, as police forces, would accept applicants with a criminal record.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "English Open", + "year": "2015", + "format": "", + "content": "THBT a referendum on Scotland’s independence should include all UK citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "English Open", + "year": "2015", + "format": "", + "content": "TH, as the WW2 Allies, would emphasize the contribution of the Red Army to defeat the Nazis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "English Open", + "year": "2015", + "format": "", + "content": "This house would rather declaration of inconsistency than judicial supremacy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "English Open", + "year": "2015", + "format": "", + "content": "This house believes that every vote in parliament (EU, State…) should be behind the veil of ignorance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Debate Academy", + "year": "2015", + "format": "", + "content": "THW require men to take paternity leave.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Debate Academy", + "year": "2015", + "format": "", + "content": "THW ban strikes in times of economic instability.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Debate Academy", + "year": "2015", + "format": "", + "content": "THBT states should ban their citizens from travelling as tourists to countries with poor human rights record.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Debate Academy", + "year": "2015", + "format": "", + "content": "THW ban convicted criminals from holding elected office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Debate Academy", + "year": "2015", + "format": "", + "content": "THW introduce mandatory military service.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tech Open", + "year": "2015", + "format": "", + "content": "THW compel all students returning from educational tours in the Nazi extermination camps to participate in an educational tour with the organization “Breaking Silence” (An organization which criticizes IDF actions).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tech Open", + "year": "2016", + "format": "", + "content": "THW compel large companies with paid internship programs (Such as McKinsey and Google) to accept a quota of אוכלוסיות מוחלשות as interns.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tech Open", + "year": "2017", + "format": "", + "content": "THW give higher primates protections similar to those given to refugees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tech Open", + "year": "2018", + "format": "", + "content": "THW accept Intel’s proposal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tech Open", + "year": "2019", + "format": "", + "content": "THW, as Japan, ban geishas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BRAC Bank Great Gender Debates", + "year": "2015", + "format": "", + "content": "TH supports the decision of female athletes to use their sexuality to market themselves.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BRAC Bank Great Gender Debates", + "year": "2015", + "format": "", + "content": "THW publicly flog the perpetrators of minor sexual misconduct such as harassment and eve teasing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BRAC Bank Great Gender Debates", + "year": "2015", + "format": "", + "content": "THS international commercial surrogacy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BRAC Bank Great Gender Debates", + "year": "2015", + "format": "", + "content": "THBT the T should leave the LGB.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BRAC Bank Great Gender Debates", + "year": "2015", + "format": "", + "content": "THW ban rape pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BRAC Bank Great Gender Debates", + "year": "2015", + "format": "", + "content": "THBT states should prosecute sexist or misogynistic comments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BRAC Bank Great Gender Debates", + "year": "2015", + "format": "", + "content": "THBT true women's liberation can never coexist with organized religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Drishty English Debate Championships", + "year": "2015", + "format": "", + "content": "THW deny all government subsidized health benefits for individuals who choose to lead an unhealthy lifestyle.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Drishty English Debate Championships", + "year": "2015", + "format": "", + "content": "THW ban all youth wings of political parties in developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Drishty English Debate Championships", + "year": "2015", + "format": "", + "content": "THW give less punishment to the poor for petty crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Drishty English Debate Championships", + "year": "2015", + "format": "", + "content": "THW not allow countries undertaking military intervention abroad to harvest natural resources while they are there.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Drishty English Debate Championships", + "year": "2015", + "format": "", + "content": "Assuming the technology exists, THW remove aggression from human behaviour.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Drishty English Debate Championships", + "year": "2015", + "format": "", + "content": "THW grant protesters the right to use non-lethal weapons to violently, but proportionately retaliate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Open Championship", + "year": "2015", + "format": "", + "content": "THBT monogamy is outdated (Long term exclusive relationships).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Open Championship", + "year": "2015", + "format": "", + "content": "TH prefers that European Jews immigrate to Israel.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Open Championship", + "year": "2015", + "format": "", + "content": "THW give the Commission of Future Generations a veto over legislation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Open Championship", + "year": "2015", + "format": "", + "content": "THW found a state for African Americans, as the 51st American state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Open Championship", + "year": "2015", + "format": "", + "content": "TH regrets the classification of human behaviors (Such as depression, eating disorders, etc.) as diseases.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sabanci University International Debate Open", + "year": "2015", + "format": "", + "content": "THW legalise squatting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sabanci University International Debate Open", + "year": "2015", + "format": "", + "content": "THBT FIFA should comply with the demand that they suspend Israel’s membership of FIFA until Israel allows Palestine to freely compete in international football.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sabanci University International Debate Open", + "year": "2015", + "format": "", + "content": "THBT the Turkish government should actively encourage Turkish migrants living in Europe to return to Turkey.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sabanci University International Debate Open", + "year": "2015", + "format": "", + "content": "THBT the State should pay for the education of all students at all levels.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sabanci University International Debate Open", + "year": "2015", + "format": "", + "content": "THW remove all legal barriers on the selection of embryo’s (including but not limited to selecting on gender, physical or mental disability, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sabanci University International Debate Open", + "year": "2015", + "format": "", + "content": "THBT newlyweds should take a Rumspringa after one year of marriage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sabanci University International Debate Open", + "year": "2015", + "format": "", + "content": "THW renationalise essential services that were previously privatised (such as water, electricity and gas).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sabanci University International Debate Open", + "year": "2015", + "format": "", + "content": "THW produce a telenovella about Ataturk’s life that seeks to glorify Kemalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2015", + "format": "", + "content": "THW give development aid only to countries which commit to and demonstrate the implementation of humanitarian values consistent with that of the donor country (for example LGBT rights, women´s rights).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2015", + "format": "", + "content": "THW ban the display of art created with the intented purpose or reasonably likely outcome of creating offence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2015", + "format": "", + "content": "Assuming that a minimum standard of welfare has been achieved, THBT states should make no further attempt to reduce inequality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2015", + "format": "", + "content": "THBT it is in the interest of the European Union that the United Kingdom leaves.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2015", + "format": "", + "content": "TH regrets the approach taken by prominent business women of giving advice on succeeding in the business world as it is rather than highlighting the need to drastically change that world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2015", + "format": "", + "content": "THW weight the votes of people within demographic groupings to represent the relative size of each grouping within the general population, not just those who vote (Demographic groupings are characteristics such as race, gender, wealth, age).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2015", + "format": "", + "content": "Assuming a technology exists which causes people contemplating committing violent crimes to feel nausea and pain, rendering them unable to think about or commit a crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2015", + "format": "", + "content": "In an ideal feminist world, this house prefers a societal norm of having stay at home dads to a societal norm of having both parents working.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2015", + "format": "", + "content": "This house supports a heavy-handed military response to xenophobic violence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2015", + "format": "", + "content": "TH regrets the rise of the certified artist (as certified through official art schools, degrees, or programmes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2015", + "format": "", + "content": "As a black middle-class South African, this house would vote ANC.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2015", + "format": "", + "content": "Assuming that technology existed that would allow one to transfer years of their natural life (the time one would live, if not cut down unnaturally by disease or accident.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2015", + "format": "", + "content": "This house would not use images of gratuitous violence as means for political mobilisation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2015", + "format": "", + "content": "This house believes that foreign mercenaries, employed by the West, should unionise.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2015", + "format": "", + "content": "THBT nearby mens and womens prisons should set up regularly scheduled inter-prison activities, including the provision of private rooms for sexual intercourse.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2015", + "format": "", + "content": "THW grant independence to [OG picks].", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vidzeme Open", + "year": "2015", + "format": "", + "content": "THW abolish the use of referenda.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vidzeme Open", + "year": "2015", + "format": "", + "content": "THBT the former Eastern bloc countries should not emphasize their history of struggle against Russian imperialism in constructing their national identity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vidzeme Open", + "year": "2015", + "format": "", + "content": "THW ban private & public initiatives to search for extra-terrestial intelligence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vidzeme Open", + "year": "2015", + "format": "", + "content": "THBT the introduction of the Euro was not in Germany’s interest.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vidzeme Open", + "year": "2015", + "format": "", + "content": "THW force all universities to make their lectures free for all and available online.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vidzeme Open", + "year": "2015", + "format": "", + "content": "THR the creation of the Western canon.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vidzeme Open", + "year": "2015", + "format": "", + "content": "THW allow countries to pay other countries to settle asylum-seekers who reach their borders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2015", + "format": "", + "content": "THS establishing an independent state of Kurdistan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2015", + "format": "", + "content": "THW measure gross national happiness and base policy decisions on those measurements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2015", + "format": "", + "content": "THW disallow exclusive private arbitration for contracts between corporations and individuals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2015", + "format": "", + "content": "Setting aside infectious diseases, THW work to prevent interaction with tribes who have not had contact with the modern world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2015", + "format": "", + "content": "THW prohibit religious institutions from considering applicants’ religious affiliation for any position whose primary function is not the performance of religious rites (e.g., administrators, teachers, fundraisers, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2015", + "format": "", + "content": "THBT prominent civil society activists should choose not to run for public office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2015", + "format": "", + "content": "THBT social media companies (like Google, Facebook or Twitter) should self-censor their content in order to be permitted by authoritarian countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2015", + "format": "", + "content": "THBT national sporting associations should give a lifetime ban to any player convicted of a serious violent crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2015", + "format": "", + "content": "THBT The LGBT movement should abandon the born this way rhetoric.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2015", + "format": "", + "content": "THBT videos of graphic terrorist atrocities should not be broadcast.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2015", + "format": "", + "content": "THBT developing countries should refuse to sign any trade treaty which contains ISDS.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2015", + "format": "", + "content": "THR The Use of Medical Data From Nazi Experiments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2015", + "format": "", + "content": "TH as US goverment prefers low oil prices (paraphrased).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2015", + "format": "", + "content": "THS establishing an independent state of Kurdistan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2015", + "format": "", + "content": "THW measure gross national happiness and base policy decisions on those measurements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2015", + "format": "", + "content": "THW disallow exclusive private arbitration for contracts between corporations and individuals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2015", + "format": "", + "content": "Setting aside infectious diseases, THW work to prevent interaction with tribes who have not had contact with the modern world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2015", + "format": "", + "content": "THW prohibit religious institutions from considering applicants' religious affiliation for any position whose primary function is not the performance of religious rites (e.g. administrators, teachers, fundraisers, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2015", + "format": "", + "content": "THB prominent civil society activists should choose not to run for public office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Open", + "year": "2015", + "format": "", + "content": "THBT the EU should guarantee membership to seceding regions of member states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Open", + "year": "2015", + "format": "", + "content": "THW grant prison wardens the right to extend prison sentences as a punishment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Open", + "year": "2015", + "format": "", + "content": "THBT the USA should publicly cease its efforts to prevent Iran from developing Nuclear Weapons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Open", + "year": "2015", + "format": "", + "content": "THW force fathers to take paternity leave.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Open", + "year": "2015", + "format": "", + "content": "THW aggressively stream children from an early age, according to academic ability.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Open", + "year": "2015", + "format": "", + "content": "THBT political parties' electoral campaigns should only be funded by the state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Open", + "year": "2015", + "format": "", + "content": "THW introduce correct porn viewing lessons in schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Open", + "year": "2015", + "format": "", + "content": "THW create a Pan Scandinavian-Baltic military alliance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Open", + "year": "2015", + "format": "", + "content": "TH, as a Jew, would leave Europe for Israel.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Open", + "year": "2015", + "format": "", + "content": "THW allow long-time cheated spouses to sue the third party for damages.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Open", + "year": "2015", + "format": "", + "content": "THBT the amount of clothes a person can own should be capped.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Open", + "year": "2015", + "format": "", + "content": "THBT European officials should not have released the fact that the downing of flight 4U9525 was deliberate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "National Maidens", + "year": "2015", + "format": "", + "content": "Assuming a deal were offered, TH as Edward Snowden would take a short prison sentence in order to return to the US.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "National Maidens", + "year": "2015", + "format": "", + "content": "THR the Valorisation of the 1916 Rising.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "National Maidens", + "year": "2015", + "format": "", + "content": "THB former colonial powers should pay reparations to their former colonies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "National Maidens", + "year": "2015", + "format": "", + "content": "THW posthumously strip Kevin Carter of the Pulitzer Prize.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "National Maidens", + "year": "2015", + "format": "", + "content": "THB African countries with AIDS crises should sue the Catholic church.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "National Maidens", + "year": "2015", + "format": "", + "content": "Assuming some willingly do this already, TH as a super-powered individual would unmask and register.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "National Maidens", + "year": "2015", + "format": "", + "content": "Assuming the land and resources are available, THW establish an independent state for women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ Ithaca College)", + "year": "2015", + "format": "", + "content": "THB existing welfare programs should be replaced by unconditional cash transfers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ Ithaca College)", + "year": "2015", + "format": "", + "content": "THB political polling and major election analytics do more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ Ithaca College)", + "year": "2015", + "format": "", + "content": "THW not let cities use public funds to construct stadiums for professional sports teams.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ Ithaca College)", + "year": "2015", + "format": "", + "content": "THB the U.S. should impose substantial tarriffs on Chinese goods until China ceases all currency manipulation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ Ithaca College)", + "year": "2015", + "format": "", + "content": "THR the success of white artists who co-opt minority dominated music subcultures (e.g. Rap, jazz, hip-hop, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ Ithaca College)", + "year": "2015", + "format": "", + "content": "THW hold govrenment officials criminally responsible for severe harm to citizens resulting from grossly negligent public policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ Ithaca College)", + "year": "2015", + "format": "", + "content": "THR the rise of Choice Feminism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ Ithaca College)", + "year": "2015", + "format": "", + "content": "THB the EU should revoke membership status of any state that withdraws from the Schengen Agreement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ Ithaca College)", + "year": "2015", + "format": "", + "content": "THR \"True Crime\" entertainment. (e.g. Making a Murderer, American Crime Story: The People vs. OJ Simpson, Serial, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Schools", + "year": "2015", + "format": "", + "content": "THW allow single parents convicted of crimes to raise their children in prison.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Schools", + "year": "2015", + "format": "", + "content": "THW broadcast a welcome message to the alien spacecraft.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Schools", + "year": "2015", + "format": "", + "content": "THBT all schools in Wales should teach subjects through the medium of\r\nWelsh.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Schools", + "year": "2015", + "format": "", + "content": "THW not give awards to music or film stars who have committed violent crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2015", + "format": "", + "content": "This House would allow euthanasia for consenting adults and children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2015", + "format": "", + "content": "This House believes that democratic countries should not allow family members of recent presidents to run for office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2015", + "format": "", + "content": "This House believes that the EU should introduce a unified tax system for companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2015", + "format": "", + "content": "This House would ban the provision of amnesties for serious crimes commited during wartime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2015", + "format": "", + "content": "This House opposes organised religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2015", + "format": "", + "content": "This House would cut all benefits from those able but unwilling to work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2015", + "format": "", + "content": "This House would make soldiers, upon return from the battlefield, take a pill that lets them forget about the war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2015", + "format": "", + "content": "This House believes that capitalism is absolutely incompatible with long term peace.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DWF Manchester IV", + "year": "2015", + "format": "", + "content": "THBT the EU should openly fund secular, pro-democracy and pro-human rights political parties and civil society groups in countries with oppressive regimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DWF Manchester IV", + "year": "2015", + "format": "", + "content": "THBT the NAACP should publicly condemn white artists who appropriate black culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DWF Manchester IV", + "year": "2015", + "format": "", + "content": "THW require companies that produce pornography to be run by a co-operative of their female performers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DWF Manchester IV", + "year": "2015", + "format": "", + "content": "THW transfer complete strategic control of the NHS to a body of experts, appointed by experienced medical practitioners and not accountable to Parliament.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DWF Manchester IV", + "year": "2015", + "format": "", + "content": "THBT Gov'ts should not publicly discuss anti-terror laws and state security in the wake of terrorist attacks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DWF Manchester IV", + "year": "2015", + "format": "", + "content": "THBT even if human life could be extended indefinitely, society should choose to end their lives at 100 years.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DWF Manchester IV", + "year": "2015", + "format": "", + "content": "THBT that states should not commemorate the veterans of conflicts that are now considered to be unjustified.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DWF Manchester IV", + "year": "2015", + "format": "", + "content": "TH, as an up and coming female artist, would publically decline a leading role in a Roman Polanski film.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DWF Manchester IV", + "year": "2015", + "format": "", + "content": "THW criminalise the use and creation of unauthorised anonymous communication providers and network browsers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DWF Manchester IV", + "year": "2015", + "format": "", + "content": "TH welcomes the rise of the far left in continental Europe (e.g. Syriza in Greece & Podemos in Spain).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Norton Rose Fulbright Warwick IV", + "year": "2015", + "format": "", + "content": "THW nationalise all pharmaceutical companies in countries with a national health service.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Norton Rose Fulbright Warwick IV", + "year": "2015", + "format": "", + "content": "TH, as the LGBT+ movement, regrets the decline of \"gay areas\" e.g. Soho, le marais and Chelsea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Norton Rose Fulbright Warwick IV", + "year": "2015", + "format": "", + "content": "THW (partially) staff the police through a rotating National Service.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Norton Rose Fulbright Warwick IV", + "year": "2015", + "format": "", + "content": "THBT states should aggressively pursue housing policy which promotes racial integration. e.g. through council housing allocations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Norton Rose Fulbright Warwick IV", + "year": "2015", + "format": "", + "content": "THBT states when constructing tax policies should prioritise equality rather than economic growth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Norton Rose Fulbright Warwick IV", + "year": "2015", + "format": "", + "content": "TH regrets the rise of the nation state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "AIB Trinity IV", + "year": "2015", + "format": "", + "content": "THW grant the unqualified right to assisted suicide to all mentally sound adults.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "AIB Trinity IV", + "year": "2015", + "format": "", + "content": "THW create public housing for the poor in wealthy areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "AIB Trinity IV", + "year": "2015", + "format": "", + "content": "THBT US citizens should select Option B i.e. they should vote to publicly subject the kidnapped officials to enhanced interrogation techniques.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "AIB Trinity IV", + "year": "2015", + "format": "", + "content": "THBT States Should Destroy All Contemporary Works of Art (including but not limited to music, films and paintings) Created by Artists Convicted of Heinous Crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "AIB Trinity IV", + "year": "2015", + "format": "", + "content": "THBT Western States Should Create LGBTQ* Schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "AIB Trinity IV", + "year": "2015", + "format": "", + "content": "TH, as the human population of planet X, would choose communism over capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "AIB Trinity IV", + "year": "2015", + "format": "", + "content": "THBT low oil prices are good for the West (may not have been the exact wording).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "AIB Trinity IV", + "year": "2015", + "format": "", + "content": "THS the Creation of Feminist Parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "AIB Trinity IV", + "year": "2015", + "format": "", + "content": "THBT Western States Should Ban Depictions of the Prophet Muhammad (Peace be upon him).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms (@ NYU)", + "year": "2015", + "format": "", + "content": "THBT men's and women's prisons that are close to each other should have co-ed activity time including sex rooms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms (@ NYU)", + "year": "2015", + "format": "", + "content": "THBT the Palestinian movement should abandon its claim for the right to return in exchange for significant financial reparations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms (@ NYU)", + "year": "2015", + "format": "", + "content": "TH regrets the alliance of liberal political parties with large businesses and financial interests.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms (@ NYU)", + "year": "2015", + "format": "", + "content": "THBT minority artists should create street art and other art in public spaces rather than art intended for display in galleries and traditional artistic venues.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms (@ NYU)", + "year": "2015", + "format": "", + "content": "THBT on balance, the influence of the internet on journalism has been harmful to society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms (@ NYU)", + "year": "2015", + "format": "", + "content": "THS the rise of Syriza.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms (@ NYU)", + "year": "2015", + "format": "", + "content": "THBT the norm of having stay-at-home dads is better for the women's rights movement than that of both parents working.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms (@ NYU)", + "year": "2015", + "format": "", + "content": ".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms (@ NYU)", + "year": "2015", + "format": "", + "content": "THBT, on balance, the rapid fall of oil prices has been beneficial to the West.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms (@ NYU)", + "year": "2015", + "format": "", + "content": "THBT on balance, the international human rights regime has done more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam Open", + "year": "2015", + "format": "", + "content": "THW ban religious and ideological schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam Open", + "year": "2015", + "format": "", + "content": "THW run simultaneously in or out referenda in all EU member states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam Open", + "year": "2015", + "format": "", + "content": "THW ban Zwarte Piet (Black Pete).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam Open", + "year": "2015", + "format": "", + "content": "TH, as the WTO, would allow poor countries to establish trade barriers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam Open", + "year": "2015", + "format": "", + "content": "TH, as the USA, would put boots on the ground in Iraq.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam Open", + "year": "2015", + "format": "", + "content": "(paraphrased) THW ban automation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THR the decline of tightly integrated families.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THBT environmental movements should support climate engineering that fundamentally alters the environment in an attempt to combat global warming.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THBT in areas of socio-economic deprivation, schools should train students in vocational skills to the exclusion of the liberal arts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THW prohibit the media from reporting on the mental illness of those accused of crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THBT the international community should cut off internet access in Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THBT developing countries should adopt economic development policies that heavily disincentivise urbanisation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THW ban the research and production of moral enhancement drugs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THBT the US and EU should seek to promote peace by heavily subsidising Israeli businesses who invest in the Palestinian territories.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "TH, as a medical professional employed by the US military or security sevices, would, and would encourage others, to refuse orders to provide medical treatment to individuals undergoing 'enhanced interrogation techniques'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THW ban its citizens from visiting illiberal states whose economies depend on tourism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THBT progressive politicians in conservative societies should pander to bigots, racists, hardline conservatives and others with regressive views in attempting to win elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THBT the African-American community should actively oppose 'broken windows policies'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THW strictly limit the replacement of workers with technology by companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THBT liberal democracies that overthrow the governments of other states should impose power-sharing, even when this severely overrides or delays democratic representation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "TH regrets the rise of art that celebrates gaining material wealth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Masters_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THBT judges should deliberately misinterpret constitutions to protect important liberties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Masters_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THW allow corporations to use hackers to retaliate against cyberattacks where the state seems unwilling or unable to do so.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Partials", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THBT disadvantaged groups should emphasise their conformity with, rather than distinctiveness from, dominant culture, as a strategy for improving their social position.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "TH regrets the decline of secular pan-Arab nationalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THBT all states should create special economic zones in cities, where all economic activities (except the purchase of goods and services) are carried out by women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Malaysia WUDC", + "year": "2015", + "format": "", + "content": "THBT humanitarian organisations should, and should be allowed to, give funding, resources or services to illegal armed groups when this is made a condition for access to vulnerable civilians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2014", + "format": "", + "content": "TH, as the Dutch government, would ban all depictions, and the impersonating, of Zwarte Piet.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2014", + "format": "", + "content": "THW Extend the UK DNA Database to the entire population.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2014", + "format": "", + "content": "THR the Rise of the Women's Magazine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2014", + "format": "", + "content": "TH supports the rise of Social Impact Bonds to fund public projects.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2014", + "format": "", + "content": "THW, as the Indian Gov't, Cease the Naxalite Surrender and Rehabilitation Policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2014", + "format": "", + "content": "THBT President Obama should prosecute officials that authorised and ordered torture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2014", + "format": "", + "content": "In countries where the right to an abortion has been achieved... THBT the right to abortion is no longer a legitimate debate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2014", + "format": "", + "content": "THW not allow skilled workers to migrate to the EU from the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2014", + "format": "", + "content": "THW require all film companies to practice socially representative film making.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2014", + "format": "", + "content": "THBT US citizens should select Option B i.e. they should vote to publicly subject the kidnapped officials to enhanced interrogation techniques.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2014", + "format": "", + "content": "TH supports the creation of feminist political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2014", + "format": "", + "content": "THBT the Baltic states should ban Russian state-backed TV channels.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2014", + "format": "", + "content": "TH supports African Americans who choose to violently protest in response to police brutality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2014", + "format": "", + "content": "THBT universities and student groups should not ban speakers with offensive political views.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2014", + "format": "", + "content": "THBT education systems should indoctrinate children to believe they are personally culpable for the death and suffering in the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Open", + "year": "2014", + "format": "", + "content": "THW base monetary criminal fines primarily on the income of the perpetrator rather than the severity of the crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Open", + "year": "2014", + "format": "", + "content": "THBT the EU should abandon its commitment to the principle of open borders between member states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Open", + "year": "2014", + "format": "", + "content": "THBT feminists should support the HeForShe movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Open", + "year": "2014", + "format": "", + "content": "THBT it is in ASEAN's long term best interests to seek closer ties with China rather than the U.S.A.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Open", + "year": "2014", + "format": "", + "content": "THBT the music press should aggressively negatively depict the work of artists, such as John Lennon and Jimmy Page who commit morally reprehensible acts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Open", + "year": "2014", + "format": "", + "content": "THW ban religious charities from proselytising in the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Open", + "year": "2014", + "format": "", + "content": "THS the decision of pop stars such as Lily Allen and Adele to not take part in Band Aid.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster Open", + "year": "2014", + "format": "", + "content": "THW grant an amnesty to those who commit crimes during US race riots so long as they meet the following criteria: 1. They were motivated by a desire to fight social injustice, 2. If property is targeted, it belongs to the apparatus of the state (for example, police cars and government buildings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian British Parliamentary Championships (@ Western University)", + "year": "2014", + "format": "", + "content": "THW allow individuals in prison to serve their sentences in the armed forces.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian British Parliamentary Championships (@ Western University)", + "year": "2014", + "format": "", + "content": "THW not allow sexual assault victims to give up their right to testify in criminal proceedings as part of a civil settlement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian British Parliamentary Championships (@ Western University)", + "year": "2014", + "format": "", + "content": "THBT the EU should automatically re-admit regions that secede from member states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian British Parliamentary Championships (@ Western University)", + "year": "2014", + "format": "", + "content": "THW require pornography producers to be run by a collective of their female employees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian British Parliamentary Championships (@ Western University)", + "year": "2014", + "format": "", + "content": "THW ban the purchase of urban, residential real estate by foreign investors.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian British Parliamentary Championships (@ Western University)", + "year": "2014", + "format": "", + "content": "THBT police officers on regular patrol should not carry firearms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian British Parliamentary Championships (@ Western University)", + "year": "2014", + "format": "", + "content": "THBT Israel should unilaterally withdraw to the 1967 borders and respect them regardless of future Palestinian actions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian British Parliamentary Championships (@ Western University)", + "year": "2014", + "format": "", + "content": "THW allow the Children's Aid Society to force chemotherapy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2014", + "format": "", + "content": "THBT laws about abortion should be decided in women-only referenda.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2014", + "format": "", + "content": "TH prefers a world in which people do not believe in the existence of God or a divine being.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2014", + "format": "", + "content": "THBT Putin's interventionist role in global geopolitics is contrary to the interests of the Russian people.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2014", + "format": "", + "content": "This House Supports the use of tiger parenting techniques.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2014", + "format": "", + "content": "THBT celebrities should not act as spokespeople for humanitarian issues.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2014", + "format": "", + "content": "THW if it was technologically possible erase memory of the idea and events caused by Nazism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2014", + "format": "", + "content": "THBT a state's primary obligation is towards its own citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2014", + "format": "", + "content": "THBT Western Liberal Democracies and their citizens should never pay ransom for those kidnapped by terrorist groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2014", + "format": "", + "content": "THW end the use of jailhouse informants.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2014", + "format": "", + "content": "THBT minority groups should not appropriate or reappropriate terms that have been used against them as slurs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2014", + "format": "", + "content": "THW allow individuals to opt out of employment provisions and regulations relating to health and safety in return for increased pay.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2014", + "format": "", + "content": "THW give parents an additional vote for each of their underage children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2014", + "format": "", + "content": "THBT Japan should re-develop offensive military capabilities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2014", + "format": "", + "content": "THW financially incentivize vegetarianism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Women’s", + "year": "2014", + "format": "", + "content": "THW legalise the buying and selling of sexual services.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Women’s", + "year": "2014", + "format": "", + "content": "THBT football fans should boycott the 2022 world cup in Qatar.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Women’s", + "year": "2014", + "format": "", + "content": "THBT the US and Iran should ally to fight ISIS.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Women’s", + "year": "2014", + "format": "", + "content": "THW aggressively financially incentivise the enrollment of female students in areas with low female enrollment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Women’s", + "year": "2014", + "format": "", + "content": "THBT developed countries should grant an amnesty to illegil immigrants.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Women’s", + "year": "2014", + "format": "", + "content": "THBT individuals have a right to a basic income regardless of capacity or willingness to work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Women’s", + "year": "2014", + "format": "", + "content": "THW allow individuals to sue religious organisations for making decisions that harm them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yorkshire Novice Cup", + "year": "2014", + "format": "", + "content": "THW replace all sin taxes with an increase in income tax.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yorkshire Novice Cup", + "year": "2014", + "format": "", + "content": "THBT the EU should issue a directive to all its member states to legalise gay marriage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yorkshire Novice Cup", + "year": "2014", + "format": "", + "content": "THW abolish all non-comprehensive schools and require children to attend their geographically closest school.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yorkshire Novice Cup", + "year": "2014", + "format": "", + "content": "THBT sexually assertive female pop stars identifying as feminists is harmful for feminism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yorkshire Novice Cup", + "year": "2014", + "format": "", + "content": "THBT Western nations should not attend sporting events in countries with bad human rights records.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2014", + "format": "", + "content": "This House would grant an additional vote to families with children for national elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2014", + "format": "", + "content": "THW hide the diagnosis of pseudo-epilepsy from the patient.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2014", + "format": "", + "content": "THW submit religious organisations to the full extent of anti-discrimination laws.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2014", + "format": "", + "content": "THW nationalise social media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2014", + "format": "", + "content": "THW show a more prominent role for women in history books.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2014", + "format": "", + "content": "TH disapproves of movements that aim to further the acceptation of obesity in society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2014", + "format": "", + "content": "THW never target civilians in a total war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2014", + "format": "", + "content": "THBT it is justified for society to demand of migrants that they accept the dominance of existing norms and values.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2014", + "format": "", + "content": "TH opposes slum tourism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2014", + "format": "", + "content": "THBT student unions should never campaign for the censorship of controversial speakers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2014", + "format": "", + "content": "THW tax low-brow art to subsidize high-brow art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2014", + "format": "", + "content": "TH prefers regional trade agreements to the WTO.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2014", + "format": "", + "content": "THW allow terminally ill patients to access experimental treatments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2014", + "format": "", + "content": "TH prefers religions that teach that people are inherently good to religions that teach that people are inherently evil.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2014", + "format": "", + "content": "THBT the US should sell arms to Nigeria to fight Boko Haram.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2014", + "format": "", + "content": "TH regrets the prominence of pop culture celebrities in feminist discourse.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2014", + "format": "", + "content": "THW not punish those who live below the poverty line for economic crimes, e.g. theft.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2014", + "format": "", + "content": "TH, as a superhero, would agree to use their powers solely in service of the democratic state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2014", + "format": "", + "content": "THS the objectification of men in popular culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2014", + "format": "", + "content": "THW require that any houses or apartments left vacant for six months or more be surrendered to the State.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2014", + "format": "", + "content": "THBT Western foreign policy should abandon attempts to universalise liberal values.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2014", + "format": "", + "content": "THBT Google should inform the authorities about suicide searches.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2014", + "format": "", + "content": "Assuming the existence of a gay gene, THW disproportionately favour embryos that possess it in IVF.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2014", + "format": "", + "content": "THW prohibit all research aiming to create sentient artificial intelligences.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2014", + "format": "", + "content": "THS the New Atheism movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2014", + "format": "", + "content": "THBT unpaid domestic workers should strike for state pay.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2014", + "format": "", + "content": "THBT in order for a law to be enacted, it should have to be passed by the legislature and then by a body chosen at random from eligible voters.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2014", + "format": "", + "content": "THBT press agencies should not purchase or publish the work of freelance war reporters.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2014", + "format": "", + "content": "THBT the EU should suspend Hungary’s membership rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2014", + "format": "", + "content": "This house, as the gay community, regrets the existence of Grindr.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2014", + "format": "", + "content": "This house would deny public funding to parties with explicitly ethnic-based membership or platforms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW ban religious organizations from providing rehabilitation services to drug and alcohol addicts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THBT democracies should extend voting rights to migrant workers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "TH, as a feminist, would oppose products marketed to help women protect themselves from date rape.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THBT Arab-Israelis who successfully seek election to the Knesset should opt not to take up that seat.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THBT the state should construct false historical narratives that promote social cohesion (e.g. racial and religious tolerance).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "There is a potion which can stop you falling in love. TH, as an 18 year old, would take the potion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THBT true women’s liberation is incompatible with the existence of organized religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THBT FB should manipulate users’ newsfeeds in order to promote progressive content.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Skopje Open", + "year": "2014", + "format": "", + "content": "THBT the interests of the ethnic Albanians in Macedonia is best served through participation in ethnic Macedonian parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Skopje Open", + "year": "2014", + "format": "", + "content": "THW ban all medical procedures intended to change an individual's racial appearance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Skopje Open", + "year": "2014", + "format": "", + "content": "TH supports the US's use of drones to eliminate terrorist targets.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Skopje Open", + "year": "2014", + "format": "", + "content": "THBT homosexual football players from top western leagues should publicly declare their sexuality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Skopje Open", + "year": "2014", + "format": "", + "content": "TH supports the radical redistribution of wealth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Skopje Open", + "year": "2014", + "format": "", + "content": "This House Would suspend the right of free movement of people in the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House", + "year": "2014", + "format": "", + "content": "THBT the EU should send a single unified team to the next world cup.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House", + "year": "2014", + "format": "", + "content": "THW criminalise all forms of high school bullying (including physical, verbal, written, cyber bullying and boycotting).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House", + "year": "2014", + "format": "", + "content": "THBT donations to disease charities should be redistributed among these disease charities according to the number of people affected by each disease.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House", + "year": "2014", + "format": "", + "content": "THS the use of feminist catch phrases about freedom, empowerment and choice in advertisement of fashion and beauty products.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House", + "year": "2014", + "format": "", + "content": "THBT governments should tax individual income out of labour (paid salary) significantly less than individual's income generated out of capital (which includes inheritance, real estate, stock portfolios, etc.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House", + "year": "2014", + "format": "", + "content": "THBT the German government should significantly fund films and tv shows that sympathetically depict the narratives of non-Jewish German civilians under the Nazi regime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House", + "year": "2014", + "format": "", + "content": "This house would ban anti EU parties from participating in the EU elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2014", + "format": "", + "content": "THW abolish all corporate income tax.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2014", + "format": "", + "content": "THS affirmative action for male educators.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2014", + "format": "", + "content": "THW legalize entrapment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2014", + "format": "", + "content": "THS substantial corporate funding for university research.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2014", + "format": "", + "content": ".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2014", + "format": "", + "content": "THBT international news organizations should report equally on all geographic regions to all audiences.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2014", + "format": "", + "content": "THS the use of private military contractors in the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2014", + "format": "", + "content": "THW limit private land ownership.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2014", + "format": "", + "content": "THW abolish prisons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2014", + "format": "", + "content": "TH regrets the concept of an afterlife.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2014", + "format": "", + "content": "THW allow private entities to discriminate on grounds that are forbidden for the state to discriminate on (or words to that effect).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2014", + "format": "", + "content": "THBT western media should refuse to publicise videos or events designed to generate terror.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2014", + "format": "", + "content": "THW allow retired parents to seek support payments from their adult children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki Open", + "year": "2014", + "format": "", + "content": "THB that states should no longer fund or own public broadcasters, such as the BBC, NERIT or PBS.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki Open", + "year": "2014", + "format": "", + "content": "TH welcomes the rise of art that celebrates a lack of economic wealth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki Open", + "year": "2014", + "format": "", + "content": "THBT Google, Youtube and social media platforms should remove content which is deemed as insulting to religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki Open", + "year": "2014", + "format": "", + "content": "TH supports Greek youth violently protesting against Trojka mandated austerity measures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki Open", + "year": "2014", + "format": "", + "content": "THW lift all limits on international migration.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki Open", + "year": "2014", + "format": "", + "content": "THBT international courts should punish states with the capacity to prevent crimes against humanity, but do not do so.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Thessaloniki Open", + "year": "2014", + "format": "", + "content": "THW significantly lower labour regulations for youth in EU areas with high youth unemployment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Novices", + "year": "2014", + "format": "", + "content": "THW ban all political donations by corporations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Novices", + "year": "2014", + "format": "", + "content": "THBT Miley Cyrus' sexualised performances (such as Wrecking Ball) are a victory for feminism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Novices", + "year": "2014", + "format": "", + "content": "THW unconditionally lift non-arms related sanctions on North Korea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Novices", + "year": "2014", + "format": "", + "content": "TH Supports Vigilanteism in high crime areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Novices", + "year": "2014", + "format": "", + "content": "THBT the UK should unilateraly remove all restrictions on immigration from its former colonies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall (SSDC Novices)", + "year": "2014", + "format": "", + "content": "THW force companies to pay their interns.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall (SSDC Novices)", + "year": "2014", + "format": "", + "content": "THW out closeted LGBT sports stars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall (SSDC Novices)", + "year": "2014", + "format": "", + "content": "THW allocate votes inversely proportional to wealth (where everyone gets at least one vote).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall (SSDC Novices)", + "year": "2014", + "format": "", + "content": "THW allow single parents to raise their children in prison.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall (SSDC Novices)", + "year": "2014", + "format": "", + "content": "THBT the West should use ground troops against the Islamic State.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall (SSDC Novices)", + "year": "2014", + "format": "", + "content": "THW require British political parties to field 50% female candidates in national elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2014", + "format": "", + "content": "THW allow individuals to grant amnesty to criminals for crimes they committed against them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2014", + "format": "", + "content": "THW break up banks that are deemed too big to fail.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2014", + "format": "", + "content": "THBT the LGBTQ lobby should make up evidence that prominent anti-LGBTQ rights campaigners are, themselves LGBTQ.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2014", + "format": "", + "content": "THBT developing nations should hold the Catholic Church financially liable for the medical expenses of Catholic HIV/AIDS victims in areas where the church campaigns against condom use.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2014", + "format": "", + "content": "THW ban dating services built around matching rich men/women with younger men/women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2014", + "format": "", + "content": "THBT Serbia should immediately cut off political and economic ties with the Russian Federation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2014", + "format": "", + "content": "THW immediately evacuate all relics off cultural or historical import currently located in unstable countries to stable Western nations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2014", + "format": "", + "content": "THW require parents to vaccinate their children, except where doing so is not in the child's medical interest.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2014", + "format": "", + "content": "THW ban the paying of ransom insurance in the case of kidnapping.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2014", + "format": "", + "content": "THW impose very high taxes on the rich, even when doing so will not increase total tax revenues.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2014", + "format": "", + "content": "THBT feminist campaigns directed specifically at men are harmful to the feminist cause.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2014", + "format": "", + "content": "THBT the IMF and the World Bank should not make debt relief for highly indebted poor countries conditional on trade liberalisation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2014", + "format": "", + "content": "THW offer full amnesty to any European citizen currently fighting on behalf of ISIL as long as they immediately return to Europe.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2014", + "format": "", + "content": "THBT the state has a duty to provide the long term unemployed with lasting employment which pays at least the minimum wage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2014", + "format": "", + "content": "THR Lara Croft.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2014", + "format": "", + "content": "THS a federal UK.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Strathclyde Cup", + "year": "2014", + "format": "", + "content": "THBT retired parents should be allowed to seek alimony payments from their adult children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Strathclyde Cup", + "year": "2014", + "format": "", + "content": "THBT western media outlets should collectively decline to cover any ISIS actions primarily intended to attract western attention (e.g. Hostage takings/executions).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Strathclyde Cup", + "year": "2014", + "format": "", + "content": "THBT copyright of photographic art featuring individuals or communities of people should belong to those people, not the artist.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Strathclyde Cup", + "year": "2014", + "format": "", + "content": "THBT the trans movement should actively seek to separate themselves, their issues and their collective identity from the LGBTQ movement in their campaigns and in the public consciousness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Strathclyde Cup", + "year": "2014", + "format": "", + "content": "THBT military conscription should be regarded as a war crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2014", + "format": "", + "content": "THW prioritise dealing with the consequences of climate change rather than preventing it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2014", + "format": "", + "content": "THW set the burden of proof in criminal trials to \"balance of probabilities\" rather than \"beyond reasonable doubt\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2014", + "format": "", + "content": "THR that companies such as Facebook and Apple have offered to pay for elective egg freezing for their employees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2014", + "format": "", + "content": "THBT companies like H&M and Primark should hire half as many factory workers in the developing world but pay them twice as much.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2014", + "format": "", + "content": "THBT people who go bankrupt should have their finances managed by the state for five years.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2014", + "format": "", + "content": "THW only allow those who pass a political awareness exam to vote.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2014", + "format": "", + "content": "THW impose the death penalty for pretty crime, if we knew that it would be 100% effective in deterring pretty crime and would never be used.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Open", + "year": "2014", + "format": "", + "content": "THBT the EU should abandon its aim to establish an \"ever closer union\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Turku Open", + "year": "2014", + "format": "", + "content": "THBT the EU should make English the primary language of instruction for all students above the age of 14.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Turku Open", + "year": "2014", + "format": "", + "content": "TH supports violent revolution in countries with severe economic inequality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Turku Open", + "year": "2014", + "format": "", + "content": "THW ban religious practices that cause cruelty to animals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Turku Open", + "year": "2014", + "format": "", + "content": "ΤΗΒΤ on balance the invention of nuclear weapons was beneficial for the world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Turku Open", + "year": "2014", + "format": "", + "content": "TH would make bidding to host major sporting events conditional on winning a local public referendum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Turku Open", + "year": "2014", + "format": "", + "content": "THBT parents should push their kids to achieve, even if that comes at the expense of their child’s happiness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Turku Open", + "year": "2014", + "format": "", + "content": "THW take the red pill.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2014", + "format": "", + "content": "THW transfer all state funding for elite sportspersons to youth academies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2014", + "format": "", + "content": "THBT war journalists should be forced to reveal their sources in international criminal tribunals (including the International Criminal Court) trying cases of war crimes, crimes against humanity or genocide.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2014", + "format": "", + "content": "THW publicly disclose all salaries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2014", + "format": "", + "content": "THW create separate schools for LGBTQ youth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2014", + "format": "", + "content": "THW consider senior politicians under oath when making public statements on political issues, thus making them criminally liable for perjury if they lie.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2014", + "format": "", + "content": "THB the media should show images of Islamic State attrocities in their full brutality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2014", + "format": "", + "content": "THBT democratic states dominated by hegemonic political parties should forcibly break up those parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2014", + "format": "", + "content": "THR the way that brutal antiterrorism tactics have been portrayed in Western film and television media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hart House IV", + "year": "2014", + "format": "", + "content": "TH, as Turkey, would intervene militarily in the Syrian civil war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2014", + "format": "", + "content": "THW impose a tax on unhealthy foods.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2014", + "format": "", + "content": "TH believes that animal rights activists should launch a campaign of sabotage and property destruction to further the cause of animal rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2014", + "format": "", + "content": "THW legalise the buying and selling of sexual services.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2014", + "format": "", + "content": "TH, as a parent with the financial means to do so, would not send their child to private school.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2014", + "format": "", + "content": "THW make voting compulsory.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2014", + "format": "", + "content": "THW only imprison individuals who have committed violent crimes and pose a continuing threat to society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2014", + "format": "", + "content": "TH regrets the characterisation of soldiers as heroes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2014", + "format": "", + "content": "THO the American charter school movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2014", + "format": "", + "content": "THW cooperate with any leader or regime to defeat non-state actors that systematically violate human rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2014", + "format": "", + "content": "THR the rise of dating and other websites that allow individuals to rate others based on past romantic interactions (e.g. Lulu).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2014", + "format": "", + "content": "THBT institutional art credentials are bad for art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2014", + "format": "", + "content": "TH, as an emerging democracy, would suppress domestic media providers in favour of international media providers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2014", + "format": "", + "content": "THBT universities and other stakeholders should primarily consider teaching ability rather than research outputs when awarding tenure and allocating academic funding.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2014", + "format": "", + "content": "THW facilitate religious prosletysation in areas of high socio-economic deprivation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2014", + "format": "", + "content": "THS the use of forced population transfers that create separate, ethnically homogenous states as a solution to prolonged ethnic conflict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2014", + "format": "", + "content": "THBT, in the face of police repression, protesters have a right to non-lethal, but violent, proportional retaliation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2014", + "format": "", + "content": "THBT governments should negotiate with terrorists when their citizens are taken hostage by terrorist groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2014", + "format": "", + "content": "THW allow international commercial surrogacy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2014", + "format": "", + "content": "THS “No Platform” policies in student unions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2014", + "format": "", + "content": "THW pay reparations to former mining communities in the UK.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2014", + "format": "", + "content": "THBT government regulation agencies should be allowed to break up banks, like Goldman Sachs, JP Morgan Chase and HSBC, that are deemed ’too big to fail’.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2014", + "format": "", + "content": "THBT governments should prioritise economically productive public spending over investing in arts, humanities, etc. when deciding on their budget.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2014", + "format": "", + "content": "TH, as the UK Labour party, would participate in a cross party initiative to reform the Human Rights Act.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2014", + "format": "", + "content": "THW legalize the sale of organs, blood and marrow.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2014", + "format": "", + "content": "THW never arm or finance rebel groups as a tactic of war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2014", + "format": "", + "content": "THBT universities should abolish all committees that deal with sexual crimes against their students and defer to the Police.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2014", + "format": "", + "content": "THBT FIFA should revoke the 2018 World Cup from Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2014", + "format": "", + "content": "THBT police forces should accurately reflect the racial demographic of the population they protect.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2014", + "format": "", + "content": "THBT men should not hold leadership postitions within women's rights and feminist organizations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2014", + "format": "", + "content": "THBT United States would suspend all foreign aid to Israel unless they withdraw from the West Bank.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2014", + "format": "", + "content": "THBT individuals have an obligation not to consume artwork from artists that have committed highly immoral actions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2014", + "format": "", + "content": "This house, as a justice of the US Supreme Court, would not use their position to push their own social agenda.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2014", + "format": "", + "content": "This house believes that efforts to include characters with mental illnesses in popular media actively harms people with those conditions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2014", + "format": "", + "content": "This house believes New Zealand should implement a tax on carbon emissions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2014", + "format": "", + "content": "This house believes that Iran should adopt a pro-Western foreign policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2014", + "format": "", + "content": "This house would delegate authority over the preservation of te reo to iwi.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2014", + "format": "", + "content": "This house would prohibit research into human augmentation designed to facilitate transhumanism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb EUDC", + "year": "2014", + "format": "", + "content": "This house would pay additional benefits to families on welfare according to their child’s performance in school.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb EUDC", + "year": "2014", + "format": "", + "content": "This house supports two-party political systems over multi-party political systems.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb EUDC", + "year": "2014", + "format": "", + "content": "This house would ban international aid charities from using senational, graphic, or overly-emotional images of suffering in fundraising and advertising campaigns.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb EUDC", + "year": "2014", + "format": "", + "content": "This house believes that EU member states should nationalise all their oil and gas resources in order to surrender total ownership and control of them to an EU-run energy agency.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb EUDC", + "year": "2014", + "format": "", + "content": "This house believes that states of the former Yugoslavia should not commemorate the events of the Yugoslav Wars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb EUDC", + "year": "2014", + "format": "", + "content": "This house would introduce blind voting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb EUDC", + "year": "2014", + "format": "", + "content": "This house would require of police departments that the ethnic composition of their arrests match the ethnic composition of the population in their jurisdiction.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb EUDC", + "year": "2014", + "format": "", + "content": "This house believes that micro-finance organisations (including, but not limited to: NGOs, charities and development banks) should offer micro-finance loans in developing nations exclusively to women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb EUDC", + "year": "2014", + "format": "", + "content": "This house believes that states should hold binding national referendums on major peace agreements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb EUDC", + "year": "2014", + "format": "", + "content": "This house would make membership in a labour union compulsory for every worker.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Tiebreak", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb EUDC", + "year": "2014", + "format": "", + "content": "This house would require companies to place images of animal suffering on all products or food whose production harmed or killed animals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb EUDC", + "year": "2014", + "format": "", + "content": "This house believes that leaders of minority religions in Europe should strongly encourage their congregations to refrain from public displays of their faith.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb EUDC", + "year": "2014", + "format": "", + "content": "THW, assuming it was technically feasible, remove the ability of soldiers to feel fear.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb EUDC", + "year": "2014", + "format": "", + "content": "This house believes that supreme/constitutional courts should not have the power to strike down legislation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb EUDC", + "year": "2014", + "format": "", + "content": "This house believes that the United States of America should invade, and forcibly partition Iraq.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zagreb EUDC", + "year": "2014", + "format": "", + "content": "This House believes that feminist movement should oppose military interventions which claim to further women's rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2014", + "format": "", + "content": "THBT countries with booming populations should allocate every adult a single, tradable permit to have a child.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2014", + "format": "", + "content": "THW launch a ground invasion to fight the Islamic State (ISIS) in Iraq.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2014", + "format": "", + "content": "THBT states should seek to prioritise reducing income inequality over GDP growth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2014", + "format": "", + "content": "THBT states should pay reparations to minorities, who are citizens, that the state has previously oppressed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2014", + "format": "", + "content": "THBT the EU member states should sanction any state that ignores ECJ rulings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2014", + "format": "", + "content": "TH belives that militaries are justified in directing their troops to use the Hannibal procedure.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Ljubljana IV", + "year": "2014", + "format": "", + "content": "TH regrets the increased mechanization of manual labor.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rijeka Open", + "year": "2014", + "format": "", + "content": "THBT the media should show the full horrors of war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rijeka Open", + "year": "2014", + "format": "", + "content": "TH supports Nicki Minaj's \"Anaconda\" album cover.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rijeka Open", + "year": "2014", + "format": "", + "content": "THW take away the right to host the 2018 World Cup from Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rijeka Open", + "year": "2014", + "format": "", + "content": "THW enforce affirmative action of the poor, rather than minorities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rijeka Open", + "year": "2014", + "format": "", + "content": "TH, as the USA, would withdraw all of its financial and military aid from Israel.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rijeka Open", + "year": "2014", + "format": "", + "content": "THW prosecute women whose lifestyle severely endangers their future child’s quality of life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rijeka Open", + "year": "2014", + "format": "", + "content": "TH regrets the rise of consumerism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster IV", + "year": "2014", + "format": "", + "content": "THBT state health care providers should offer and fund faith-based treatment options.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster IV", + "year": "2014", + "format": "", + "content": "THW allow the homeless to seize long-term unoccupied properties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster IV", + "year": "2014", + "format": "", + "content": "TH supports the recasting of male action heroes and superheroes as female.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster IV", + "year": "2014", + "format": "", + "content": "TH believes that populist parties (such as UKIP, theTea Party Movement and the 5 Star movement) are good for democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster IV", + "year": "2014", + "format": "", + "content": "TH would implement the death penalty for crimes against humanity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Westminster IV", + "year": "2014", + "format": "", + "content": "TH as an Israeli would refuse to join the Israel Defence Force.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bielefeld Religion debate tournament", + "year": "2014", + "format": "", + "content": "THBT, without religion, there are basically no values.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bielefeld Religion debate tournament", + "year": "2014", + "format": "", + "content": "THW follow the prophet (m/f).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bielefeld Religion debate tournament", + "year": "2014", + "format": "", + "content": "THW not take the drug.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bielefeld Religion debate tournament", + "year": "2014", + "format": "", + "content": "TH, as the Evangelical Church in Germany, would not baptise children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bielefeld Religion debate tournament", + "year": "2014", + "format": "", + "content": "THW in this religiously conservative society actively engage in religious activities and events (attend worshop ceremonies, share blessings, say prayers).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bielefeld Religion debate tournament", + "year": "2014", + "format": "", + "content": "THW not offer theology at state universities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial IV", + "year": "2014", + "format": "", + "content": "THBT developing countries should never hold major international sporting events.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial IV", + "year": "2014", + "format": "", + "content": "THR the rise of internet piracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial IV", + "year": "2014", + "format": "", + "content": "THW require quotas of female and minority candidates for judicial appointments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial IV", + "year": "2014", + "format": "", + "content": "THW Ban any public commemoration of the centenary of WW1.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial IV", + "year": "2014", + "format": "", + "content": "THR the rise of hookup apps.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial IV", + "year": "2014", + "format": "", + "content": "THBT Elizabeth Warren should aggressively challenge Hilary Clinton for the presidency.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial IV", + "year": "2014", + "format": "", + "content": "THBT The British Government should publish the communications in their entirety.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NCH International Relations Open", + "year": "2014", + "format": "", + "content": "THB the EU should allow freedom of movement within its borders to Syrian refugees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NCH International Relations Open", + "year": "2014", + "format": "", + "content": "THB the EU and other western powers should join the US embargo against Cuba until it transitions to a multi party democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NCH International Relations Open", + "year": "2014", + "format": "", + "content": "THBT it is legitimate for Israel to unilaterally strike Iranian nuclear facilities if current talks fail.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NCH International Relations Open", + "year": "2014", + "format": "", + "content": "THW replace the ICC with regional courts to prosecute crimes against humanity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NCH International Relations Open", + "year": "2014", + "format": "", + "content": "THBT NATO should militarily intervene to assist the Ukrainian government in suppressing the separatist rebels in the eastern province.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "year": "2014", + "format": "", + "content": "THBT people have a moral duty to stop chanting words like “puto” or “maricón” (faggot) at sporting events.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "year": "2014", + "format": "", + "content": "THBT we should prohibit public hospitals to proscribe alternative treatments (like homeopathic treatments, accupuncture or Bach flower remedies).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "year": "2014", + "format": "", + "content": "THW ban the use of circus animals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "year": "2014", + "format": "", + "content": "THW ban the sales of complex financial products.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "year": "2014", + "format": "", + "content": "THW penalise a person who knows they have HIV and has sexual contacts with others without informing them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "year": "2014", + "format": "", + "content": "THBT smokers should cover the costs of their medical treatments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "year": "2014", + "format": "", + "content": "THBT the Mexican government (and others in military situations) should take steps to prevent people travelling in life-threatening ways like \"La Bestia\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "year": "2014", + "format": "", + "content": "THW eliminate migration barriers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "year": "2014", + "format": "", + "content": "TH, if presented with a choice between holding the FIFA World Cup 2022 in Qatar or not holding the World Cup at all that year, would choose not to hold the World Cup in 2022.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "year": "2014", + "format": "", + "content": "THW eliminate the minimum wage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "year": "2014", + "format": "", + "content": "esta casa dejaría en manos de los ciudadanos, a través del voto directo en referendos.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "year": "2014", + "format": "", + "content": "THB it is just that citizens create their own armed groups when the state fails to protect them from organised crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Boddencup", + "year": "2014", + "format": "", + "content": "THBT, western democracies should send military ground forces against the organisation ISlamic State (formerly ISIS).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Boddencup", + "year": "2014", + "format": "", + "content": "THW not invest in research and development that has the delay of the aging process as its sole purpose.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Boddencup", + "year": "2014", + "format": "", + "content": "THW welcome the worldwide introduction of soylent or similar mixtures as a nutritional standard or staple food.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Boddencup", + "year": "2014", + "format": "", + "content": "THBT you should use the beliefs of your fellow human beings to promote and establish socially progressive norms in society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Boddencup", + "year": "2014", + "format": "", + "content": "THW temporarily suspend Hungary’s EU membership.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Boddencup", + "year": "2014", + "format": "", + "content": "THW impose extra (penalty) taxes on products that cannot be proven to have been produced under fair-trade conditions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Boddencup", + "year": "2014", + "format": "", + "content": "THBT the United Nations as an idea have failed by now (auf mittelbare Zeit).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Earlsfort Open", + "year": "2014", + "format": "", + "content": "THW Prosecute The Parents/Guardians of Obese Children For Neglect.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Earlsfort Open", + "year": "2014", + "format": "", + "content": "THB States Should Ensure That Their Police Forces are Roughly Proportionally Representative of the Diversity of Race & Religion of the Local Population.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Earlsfort Open", + "year": "2014", + "format": "", + "content": "THB The European Union Should Immediately And Aggressively Accelerate The Accession of Ukraine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Earlsfort Open", + "year": "2014", + "format": "", + "content": "THW Allow Formula 1 Teams to Race a Third Car, Provided at Least 1 of the Drivers is Female.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Earlsfort Open", + "year": "2014", + "format": "", + "content": "THB Religious Institutions Should Not be Entitled to Any Exemption From Anti-Discrimination Laws.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Earlsfort Open", + "year": "2014", + "format": "", + "content": "THB one should not be entitled to seek removal of any links to any data irrespective of their being ‘‘inadequate, irrelevant or excessive“.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Earlsfort Open", + "year": "2014", + "format": "", + "content": "THB the state should provide no further services beyond those of basic law and order.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HeidelBÄM", + "year": "2014", + "format": "", + "content": "Should parents’ votes carry more weight in elections?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HeidelBÄM", + "year": "2014", + "format": "", + "content": "Should cultural institutes be self-sufficient?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HeidelBÄM", + "year": "2014", + "format": "", + "content": "Should combat sports/martial arts be forbidden?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HeidelBÄM", + "year": "2014", + "format": "", + "content": "Should development aid only be given in the form of knowledge transfer?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bulgaria Open", + "year": "2014", + "format": "", + "content": "This House believes men should have the right to refuse paternal financial obligations towards pregnancies they did not consent to.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bulgaria Open", + "year": "2014", + "format": "", + "content": "This House believes individuals have the right to be forgotten.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bulgaria Open", + "year": "2014", + "format": "", + "content": "This House would abandon the use of economic sanctions as a tool for achieving political aims.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bulgaria Open", + "year": "2014", + "format": "", + "content": "This House discredits portrayal of Disney princesses.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bulgaria Open", + "year": "2014", + "format": "", + "content": "This House would allow 3rd World countries to choose to be reinstated as a colony.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bulgaria Open", + "year": "2014", + "format": "", + "content": "THW not tell anyone.", + "infoSlide": "You have the ability to know when and how people are going to die. .", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bulgaria Open", + "year": "2014", + "format": "", + "content": "This House would allow drug addicts to file class action suits against their state, for their condition.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bulgaria Open", + "year": "2014", + "format": "", + "content": "This House would disband the Vatican as a state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BBU Open", + "year": "2014", + "format": "", + "content": "This house would ban schools from catering to a specific religion (such as Catholic schools, Hebrew schools or Muslim schools).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BBU Open", + "year": "2014", + "format": "", + "content": "This house believes that Brazilian footballers should have boycotted the entire 2014 World Cup.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BBU Open", + "year": "2014", + "format": "", + "content": "THW allow inmates to pay for substantially better prison conditions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BBU Open", + "year": "2014", + "format": "", + "content": "THW revoke the citizenship of Western citizens who travel to the Middle East to join Jihadi groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BBU Open", + "year": "2014", + "format": "", + "content": "THBT western European states should adopt the eastern European ban on all Communist symbols.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BBU Open", + "year": "2014", + "format": "", + "content": "Assuming the technology to do so safely and easily exist, THW force everyone to undergo periodical sex changes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BBU Open", + "year": "2014", + "format": "", + "content": "You are a scientist. You have discovered absolute conclusive proof that God does not exist. This house would destroy the information.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Methusalem Cup", + "year": "2014", + "format": "", + "content": "Should the Catholic Church make its members to elect the new pope?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Methusalem Cup", + "year": "2014", + "format": "", + "content": "Should debaters who win their first ZEIT DEBATTE stop participating in these tournaments as speakers?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Methusalem Cup", + "year": "2014", + "format": "", + "content": "Should wearing national symbols like flags, colours, make up, costumes and sports shirts be banned during international sport events?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Methusalem Cup", + "year": "2014", + "format": "", + "content": "Should journalists be banned from participating actively (as speakers or writers) in political or scientific events?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heart of Europe BP", + "year": "2014", + "format": "", + "content": "THW allow the use of nootropics for academic and professional purposes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heart of Europe BP", + "year": "2014", + "format": "", + "content": "Given the rise of the Islamic State, THW support military intervention in Syria and Iraq.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heart of Europe BP", + "year": "2014", + "format": "", + "content": "THBT newly industrialized countries should not host international sporting events.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heart of Europe BP", + "year": "2014", + "format": "", + "content": "TH supports the implementation of Liquid Democracy via digital voting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heart of Europe BP", + "year": "2014", + "format": "", + "content": "THW push the button (to end all life on earth).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heart of Europe BP", + "year": "2014", + "format": "", + "content": "THW give up on climate change prevention and would instead focus on climate change adaptation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW have scientists make environmental policies, not politicians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THBT humanism should disassociate from atheism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW nationalise porn.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THBT LGBT should split into its constituent parts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 10.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW teach sex positions explicitly for pleasure in sex education lessons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 10.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THBT the US should assassinate the five Taliban prisoners released in return for Bowe Bergdahl so that the US will never negotiate with terrorists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 10.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "TH, as the US government, would create a separate Kurdish state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW only show films that pass the Bechdel test.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW give equal coverage to mens’ and womens’ sport.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THBT the Mexican government should support vigilante groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW remove the 9th clause from the Japanese constitution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW require all photoshopped images to be labelled.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW reallocate names randomly.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW allow simulated child pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW reduce US cultural domination.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW decrease womens’ income tax.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW aggressively hire ex-soldiers as teachers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THBT Palestinians should accept demilitarisation in exchange for US recognition as a state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW ban private schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW continue to drill the Arctic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW give house arrest for non-violent offenders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW not have set up the ICTY after the dissolution of Yugoslavia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THBT Greece should immediately default and leave the Euro.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW get councils to put out tenders for all NHS services in a local area.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THB liberal and progressive groups should stop saying “Check your privilege”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW prevent guilty nations of human rights violations from hosting sporting events.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW abolish government funding of art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW send female diplomats to gender inequality countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THBT Mossad should covertly assassinate Syrian rebel leaders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "TH regrets the commercialisation of indigenous cultures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THW abolish Oxbridge.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THB that the UN should ban impartial small arms embargos.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham Open", + "year": "2014", + "format": "", + "content": "THB that the Iraqi government should issue oil dividends to its citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eloquentiatoernooi (Eloquence tournament)", + "year": "2014", + "format": "", + "content": "Paternity leave should be equal to maternity leave.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eloquentiatoernooi (Eloquence tournament)", + "year": "2014", + "format": "", + "content": "Students should get their basic study grant back.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eloquentiatoernooi (Eloquence tournament)", + "year": "2014", + "format": "", + "content": "Large banks should be split into smaller ones.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eloquentiatoernooi (Eloquence tournament)", + "year": "2014", + "format": "", + "content": "We should prosecute homegrown Jihadis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eloquentiatoernooi (Eloquence tournament)", + "year": "2014", + "format": "", + "content": "More financial support for students is preferable over travel subsidies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eloquentiatoernooi (Eloquence tournament)", + "year": "2014", + "format": "", + "content": "The state should get a monopoly on prostitution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eloquentiatoernooi (Eloquence tournament)", + "year": "2014", + "format": "", + "content": "We should get a European army.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eloquentiatoernooi (Eloquence tournament)", + "year": "2014", + "format": "", + "content": "The Netherlands should impose a maximum wage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eloquentiatoernooi (Eloquence tournament)", + "year": "2014", + "format": "", + "content": "We should add the P of paedophilia to the LGBT movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eloquentiatoernooi (Eloquence tournament)", + "year": "2014", + "format": "", + "content": "Women older than forty should not have children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eloquentiatoernooi (Eloquence tournament)", + "year": "2014", + "format": "", + "content": "The Dutch people should select the coach of the national football team.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eloquentiatoernooi (Eloquence tournament)", + "year": "2014", + "format": "", + "content": "A (very) high tax on inheritance would be just.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Eloquentiatoernooi (Eloquence tournament)", + "year": "2014", + "format": "", + "content": "Greenpeace should be banned.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jena Frauenturnier (Women’s tournament)", + "year": "2014", + "format": "", + "content": "THW abolish all limitations on freedom of speech.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jena Frauenturnier (Women’s tournament)", + "year": "2014", + "format": "", + "content": "THW ignore the snake and not eat from the fruit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jena Frauenturnier (Women’s tournament)", + "year": "2014", + "format": "", + "content": "TH welcomes double nationalities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jena Frauenturnier (Women’s tournament)", + "year": "2014", + "format": "", + "content": "TH condemns the progressive marketisation of our health care system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jena Frauenturnier (Women’s tournament)", + "year": "2014", + "format": "", + "content": "THW boycott the football World Cup in Brasil.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles Open", + "year": "2014", + "format": "", + "content": "THW ban all procedures to alter one's racial appearance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles Open", + "year": "2014", + "format": "", + "content": "THW require all licenses for ethically controversial scientific experiments to be approved by a majority of a randomly selected group of citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles Open", + "year": "2014", + "format": "", + "content": "THW legalise commercial surrogacy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles Open", + "year": "2014", + "format": "", + "content": "THBT sex education in schools should teach techniques for pure sexual gratification (including but not limited to: anal sex, oral sex, mutual gratifcation, and masturbation).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles Open", + "year": "2014", + "format": "", + "content": "THW provide disproportionate financial incentives to make life choices which directly conflict with traditional gender roles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles Open", + "year": "2014", + "format": "", + "content": "THW require that religious organisations and leaders remain politically neutral.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle Mixed Doubles Open", + "year": "2014", + "format": "", + "content": "THW privatise the distribution of welfare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monroe Cup", + "year": "2014", + "format": "", + "content": "THW criminalise the purchase of sex.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monroe Cup", + "year": "2014", + "format": "", + "content": "THBT seats in the UK Parliament should be based on competitive, merit-based, examinations rather than elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monroe Cup", + "year": "2014", + "format": "", + "content": "THBT The Palestinian people should abandon claims to independent statehood and publicly demand the merger of Palestine and Israel into a single democratic state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monroe Cup", + "year": "2014", + "format": "", + "content": "THW remove the exemption for religious organisations from anti-discrimination legislation (such as the Equalities Act 2010).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Monroe Cup", + "year": "2014", + "format": "", + "content": "THBT the United States Government should pay reparations to the descendants of former slaves.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol Open", + "year": "2014", + "format": "", + "content": "THW publicly designate men's rights movements as hate groups and monitor them accordingly.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol Open", + "year": "2014", + "format": "", + "content": "THW act now to prevent quantum computing becoming a reality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol Open", + "year": "2014", + "format": "", + "content": "TH, as Israel and the USA, would extend heavy military and economic aid to (only) Syrian rebel groups who publicly endorse immediate peace with Israel.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol Open", + "year": "2014", + "format": "", + "content": "THW, as Ed Milliband, ignore the referendum result, and remain in the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol Open", + "year": "2014", + "format": "", + "content": "TH supports Kanye West‘s use of the Confederate flag.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "year": "2014", + "format": "", + "content": "THW abolish Gesinnungsstrafrecht (additional attitude/mindset penalties for crimes commited, e.g. hate crimes).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "year": "2014", + "format": "", + "content": "THW give citizens the right to change their identities without giving justification.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "year": "2014", + "format": "", + "content": "THBT Putin’s conduct of the Crimea crisis was in Russia’s strategic interest.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "year": "2014", + "format": "", + "content": "TH is a citizen of a western liberal democracy that rejects discrimination on the basis of religion, gender, sexual orientation or ethnicity. TH would boycott works from artists (painters, musicians, movie directors, etc.) that personally hold discriminatory views, even when you like their art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "year": "2014", + "format": "", + "content": "TH regrets the increasing classification of human behaviour as illnesses.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "year": "2014", + "format": "", + "content": "THW, as part of awareness campaigns about rape and sexual violence, inform women of potentially risky behaviour (like alcohol consumption or choice of clothing).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "year": "2014", + "format": "", + "content": "TH, as the European Union, would introduce defence mechanisms agains anti-EU parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "year": "2014", + "format": "", + "content": "THBT it is time for Germany to take more on miiltary responsibility in the world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "year": "2014", + "format": "", + "content": ": THBT liberal democracies should not treat disclosure of information to the public as treason.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "year": "2014", + "format": "", + "content": ": THW temporarily recolonise former colonies that have developed into “failed states”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "year": "2014", + "format": "", + "content": "THBT current day’s political correctness does more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Novice", + "year": "2014", + "format": "", + "content": "This house would ban religious schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Novice", + "year": "2014", + "format": "", + "content": "This house believes France and Britain should support a permanent common EU seat in the UN Security Council in exchange for their seats.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Novice", + "year": "2014", + "format": "", + "content": "Assuming it is technologically possible, this house would require individuals in liberal democracies to reveal their actual identity when communicating on the internet.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Novice", + "year": "2014", + "format": "", + "content": "This house supports an unconditional basic income.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House Novice", + "year": "2014", + "format": "", + "content": "This house believes a healthy democracy needs term limits for heads of government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Debate Academy", + "year": "2014", + "format": "", + "content": "This house would fund cosmetic plastic surgery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Debate Academy", + "year": "2014", + "format": "", + "content": "This House Believes that juries should only include individuals that are from the same socio-economic class as the defendant.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Debate Academy", + "year": "2014", + "format": "", + "content": "This house believes that international sporting events, such as the Olympics or Football World Cup, should not be held in countries with poor human rights records.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Debate Academy", + "year": "2014", + "format": "", + "content": "This house applauds the rise of pop songs by female artists that glorify assertive female sexuality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "TechOpen", + "year": "2014", + "format": "", + "content": "THW implement a full ban on burqas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "TechOpen", + "year": "2014", + "format": "", + "content": "TH, as the European Union, would suspend Hungary's EU-membership if they do not reform within a set period of time.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "TechOpen", + "year": "2014", + "format": "", + "content": "THW create Hamsterdams in cities with a high level of drug use.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "TechOpen", + "year": "2014", + "format": "", + "content": "THW allow virtual child pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "TechOpen", + "year": "2014", + "format": "", + "content": "THW Implement the Prime Directive.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "TechOpen", + "year": "2014", + "format": "", + "content": "TH, as the Palestinian people, would launch a Third Intifada.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Neckarwiesen Cup", + "year": "2014", + "format": "", + "content": "Should we introduce diversity quota, rather than women’s quota?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Neckarwiesen Cup", + "year": "2014", + "format": "", + "content": "(inkl.Factsheet) Should we reserve prostheses and implants for people with physical deficiencies?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Neckarwiesen Cup", + "year": "2014", + "format": "", + "content": "Should companies have to justify the labour conditions of their suppliers in their yearly financial reports?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Neckarwiesen Cup", + "year": "2014", + "format": "", + "content": "Should the European Court of Justice be given the power to annul national laws that violate European values upon request of the European Parliament?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trivium Debattoernooi", + "year": "2014", + "format": "", + "content": "THW allow family members of drug addicts to force the addicts to go into rehab.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trivium Debattoernooi", + "year": "2014", + "format": "", + "content": "THW rather invest in nuclear energy than in “green” (renewable) energy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trivium Debattoernooi", + "year": "2014", + "format": "", + "content": "THBT criminal law should not take retribution into account as a criteria for punishment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trivium Debattoernooi", + "year": "2014", + "format": "", + "content": "THBT the west should put heavy sanctions on Russia until Putin abdicates and democratic elections are held.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trivium Debattoernooi", + "year": "2014", + "format": "", + "content": "TH, as the Catholic Church, would use elections to select its next pope.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2014", + "format": "", + "content": "THBT parents should monitor the electronic communications of their children, for example by installing spyware, requiring their children to give them their passwords, or reading browser histories.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2014", + "format": "", + "content": "THW take away essential service givers' (such as policemen, firemen and doctors) right to strike.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2014", + "format": "", + "content": "TH regrets the campaign to remove Brendan Eich from office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2014", + "format": "", + "content": "THW allow the parliament to pass retroactive laws with a 2/3 majority.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2014", + "format": "", + "content": "THBT developing countries should ban aid organizations from religious proselytizing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2014", + "format": "", + "content": "THBT The death of newspapers and news print media would be a net good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Open", + "year": "2014", + "format": "", + "content": "THBT the education system should stream children according to their abilities from a young age.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Language World Championships Debating", + "year": "2014", + "format": "", + "content": "THW prohibit works of art that undermine/go against morality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Language World Championships Debating", + "year": "2014", + "format": "", + "content": "THW make participating in sports activities mandatory.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 10, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Language World Championships Debating", + "year": "2014", + "format": "", + "content": "THW permit the state discretionary eavesdropping on its citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 11, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Language World Championships Debating", + "year": "2014", + "format": "", + "content": "THW put a cap on the salaries of top athletes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 12, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Language World Championships Debating", + "year": "2014", + "format": "", + "content": "THW make the payment of family allowances conditional on school attendance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 13, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Language World Championships Debating", + "year": "2014", + "format": "", + "content": "THW resist the supremacy of English by any means available.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 14, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Language World Championships Debating", + "year": "2014", + "format": "", + "content": "THW ban commercials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Language World Championships Debating", + "year": "2014", + "format": "", + "content": "THW introduce a “capability vote”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Language World Championships Debating", + "year": "2014", + "format": "", + "content": "THW prohibit sex changes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Language World Championships Debating", + "year": "2014", + "format": "", + "content": "THW ban pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Language World Championships Debating", + "year": "2014", + "format": "", + "content": "THW impose a DNA database.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Language World Championships Debating", + "year": "2014", + "format": "", + "content": "THW prohibit all motor vehicles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Language World Championships Debating", + "year": "2014", + "format": "", + "content": "THW grant legal personality to animals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Language World Championships Debating", + "year": "2014", + "format": "", + "content": "THW ban online dating sites.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Frishlingscup", + "year": "2014", + "format": "", + "content": "Should grades be abolished?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Frishlingscup", + "year": "2014", + "format": "", + "content": "Should E-sports be recognised, promoted and valued as equals to other sports?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Frishlingscup", + "year": "2014", + "format": "", + "content": "Should news media be banned from reporting on threats of terrorist attacks?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Frishlingscup", + "year": "2014", + "format": "", + "content": "Should kindergartens actively combat gender roles?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kalliope Debattoernooi", + "year": "2014", + "format": "", + "content": "THW put high taxes on unhealthy products.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kalliope Debattoernooi", + "year": "2014", + "format": "", + "content": "THW ban TV shows that objectify women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kalliope Debattoernooi", + "year": "2014", + "format": "", + "content": "THBT regions should always be able to call a referendum for independence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kalliope Debattoernooi", + "year": "2014", + "format": "", + "content": "THB in a state that only provides the most basic services.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kalliope Debattoernooi", + "year": "2014", + "format": "", + "content": "TH, as the EU, would force its member states to rcognise gay marriages.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kalliope Debattoernooi", + "year": "2014", + "format": "", + "content": "THW give highly advanced artificial intelligence the same rights as humans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2014", + "format": "", + "content": "In instances where utterances of a minor amount to hate speech, THS the public shaming of the parent rather than the minor.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2014", + "format": "", + "content": "THBT developing countries should hold the Catholic church financially liable for the medical expenses of AIDS victims in areas where the church campaigns against condom use.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2014", + "format": "", + "content": "As the South African government, THW explicity oppose the use of the word \"apartheid\" in describing the Israeli/Palestinian conflict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2014", + "format": "", + "content": "THW, by worker referendum, allow employees to set the salaries of their top executives.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2014", + "format": "", + "content": "THW create an age-restricted rating that warns the audience when a film has failed the Bechdel Test.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2014", + "format": "", + "content": "THBT gay judges or legal experts who meaningfully contribute to legalizing gay marriage are morally obligated to publicly reveal their sexual orientation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2014", + "format": "", + "content": "THW ban all private campaign contributions and instead implement a voucher system, wherein every citizen of voting age would receive a R600 voucher that can only be used to finance political campaigns of the citizen's choosing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2014", + "format": "", + "content": "THW require universities to write-off the student debt of any student who graduates in good academic standing but is unable to find a job despite actively seeking employment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cape Town Open", + "year": "2014", + "format": "", + "content": "THR Americans' recent and unprecedented opposition to military intervention.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA League of Young Voters European Cup", + "year": "2014", + "format": "", + "content": "THW substantially lower labour regulations for young people in areas with high youth unemployment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA League of Young Voters European Cup", + "year": "2014", + "format": "", + "content": "THBT internet piracy has done more good than harm.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA League of Young Voters European Cup", + "year": "2014", + "format": "", + "content": "THBT the European Union should guarantee membership to regions of member states that secede from their parent state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA League of Young Voters European Cup", + "year": "2014", + "format": "", + "content": "TH supports hydraulic fracturing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA League of Young Voters European Cup", + "year": "2014", + "format": "", + "content": "THW implement tradable quotas for asylum seekers within the European Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA League of Young Voters European Cup", + "year": "2014", + "format": "", + "content": "TH supports Athletic Bilbao's cantera policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA League of Young Voters European Cup", + "year": "2014", + "format": "", + "content": "THW create a common history curricula for the entire European Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Open", + "year": "2014", + "format": "", + "content": "THW legalise the sale and purchase of human organs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Open", + "year": "2014", + "format": "", + "content": "THW allocate public housing and use financial incentives (e.g. rent subsidies) to maintain a minimum quota of ethnic groups in all areas of the country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Open", + "year": "2014", + "format": "", + "content": "THW ban the use of photoshop in magazines and advertising.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Open", + "year": "2014", + "format": "", + "content": "THBT the USA should withdraw from NATO.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Open", + "year": "2014", + "format": "", + "content": "THW lower income tax and impose higher wealth taxes (e.g. on inheritance, property and other assets) instead.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Open", + "year": "2014", + "format": "", + "content": "THW build Dostoevsky's edifice.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Mainz", + "year": "2014", + "format": "", + "content": "Should universities stop giving out honours or titles for which no scientific labour or standards were met (e.g. honourary doctors title)?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Mainz", + "year": "2014", + "format": "", + "content": "Should Spartengewerkschaften (craft unions) be abolished? Spartengewerkschaften abgeschafft werden?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Mainz", + "year": "2014", + "format": "", + "content": "Should providing arms to the citizens of another state be outlawed under international law?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Mainz", + "year": "2014", + "format": "", + "content": "Should landowners be the owners of all natural resources (Bodenschätze) in their ground?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Mainz", + "year": "2014", + "format": "", + "content": "Should media be banned from publishing information about the sexual preferences or orientations of public figures without their consent?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Mainz", + "year": "2014", + "format": "", + "content": "It is mandatory in Germany to reserve one percent of your public building budget for art projects. Motion: Should we stop the mandatory art requirement for public building projects?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Mainz", + "year": "2014", + "format": "", + "content": "Should politicians be liable for policy decisions with their private assets (mutatis mutandis)?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hull Open", + "year": "2014", + "format": "", + "content": "THW require all advertising to be gender neutral.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hull Open", + "year": "2014", + "format": "", + "content": "A Computer Operated Police (or C.O.P) Machine is a non-autonomous humanoid domestic drone currently being developed by the State to carry out operations deemed to be too dangerous for human officers. They are remote operated and fully armed. Motion: TH supports the deployment, throughout the Police Force, of C.O.P.s.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hull Open", + "year": "2014", + "format": "", + "content": "THW aggressively promote scientific rationalism in schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hull Open", + "year": "2014", + "format": "", + "content": "THW, as the West, invade Syria with the objectives to depose the Assad regime and oversee a transition to democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hull Open", + "year": "2014", + "format": "", + "content": "THW decriminalise the intentional and negligent transmission of HIV.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North-East German Regional Championships", + "year": "2014", + "format": "", + "content": "THW ban commercial expeditions to the top of the Mount Everest.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North-East German Regional Championships", + "year": "2014", + "format": "", + "content": "THW award state funding for the arts through lottery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North-East German Regional Championships", + "year": "2014", + "format": "", + "content": "THW apply the technology as an alternative to regular imprisonment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North-East German Regional Championships", + "year": "2014", + "format": "", + "content": "THW falsify history in post-war societies in order to ensure peace.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North-East German Regional Championships", + "year": "2014", + "format": "", + "content": "THW replace the state pension with a state disability insurance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North-East German Regional Championships", + "year": "2014", + "format": "", + "content": "THW require companies to make the salaries of all their employees publicly available.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "South German Regional Championships", + "year": "2014", + "format": "", + "content": "THBT liberal democratic states should add citizens duties as well as citizens rights in their constitutions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "South German Regional Championships", + "year": "2014", + "format": "", + "content": "THW rewrite sexist, racist or otherwise discriminating passages in opera libretti.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "South German Regional Championships", + "year": "2014", + "format": "", + "content": "THW allow parents to decide to let their severally mentally handicapped children be operated or treated with hormones so that they will not enter physical puberty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "South German Regional Championships", + "year": "2014", + "format": "", + "content": "THW ban money from Saudi Arabia to promote Islam in the EU, as long as other religions are banned from that country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "South German Regional Championships", + "year": "2014", + "format": "", + "content": "THW require popular sports that generate high profits to share a portion of their gains with marginal/fringe sports.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "South German Regional Championships", + "year": "2014", + "format": "", + "content": "THW require companies to make the salaries of all their employees publicly available.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VUAS Debate tournament", + "year": "2014", + "format": "", + "content": "THW require elected politicians and their families to use only services provided by the state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VUAS Debate tournament", + "year": "2014", + "format": "", + "content": "THW grant the Roma the right to settle in self governing autonomous communities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VUAS Debate tournament", + "year": "2014", + "format": "", + "content": "THBT states should grant unconditional asylum to all Syrians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VUAS Debate tournament", + "year": "2014", + "format": "", + "content": "TH, as Latvia, would ban Legion Day parades.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VUAS Debate tournament", + "year": "2014", + "format": "", + "content": "THW would classify crimes directed against sub-cultures as hate crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VUAS Debate tournament", + "year": "2014", + "format": "", + "content": "In countries where gay marriage is legal THW abolish tax exemptions and cease funding of religious organisations that refuse to conduct same sex marriage or ban homosexuals from their services.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VUAS Debate tournament", + "year": "2014", + "format": "", + "content": "Given the consent of Ukraine's government, THBT the West should assist in maintaining peace and territorial integrity in Eastern Ukraine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "West German Regional Championships", + "year": "2014", + "format": "", + "content": "THW ban beauty pageants for minors.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "West German Regional Championships", + "year": "2014", + "format": "", + "content": "THW ban political contributions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "West German Regional Championships", + "year": "2014", + "format": "", + "content": "TH, as a woman, would make targeted use of her feminine charms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "West German Regional Championships", + "year": "2014", + "format": "", + "content": "THBT all borders should be opened at once.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "West German Regional Championships", + "year": "2014", + "format": "", + "content": "THW replace the Bundestag by permanent “delegated voting”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "West German Regional Championships", + "year": "2014", + "format": "", + "content": "THW require companies to make the salaries of all their employees publicly available.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Open", + "year": "2014", + "format": "", + "content": "THBT it is immoral to donate to animal welfare charities while there are charities which aim to alleviate human suffering still in need.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Open", + "year": "2014", + "format": "", + "content": "THW guarantee military veterans jobs for life (through civilian state sector employment or/and state subsidy of private sector employment).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Open", + "year": "2014", + "format": "", + "content": "THBT feminists should not oppose dating sites which seek to romantically link rich men and physically attractive women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Open", + "year": "2014", + "format": "", + "content": "THBT western nations should require companies seeking to sell products within their borders to abide by national worker’s rights legislation, regardless of where the goods were manufactured and at all stages of the production process.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Open", + "year": "2014", + "format": "", + "content": "THW determine income tax based on the relative privilege of an individuals’ upbringing.(Privilege includes such things as private education, parental wealth, childhood home).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Open", + "year": "2014", + "format": "", + "content": "THW offer citizenship to illegal immigrants in exchange for meaningful information on their traffickers and illegal employers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Open", + "year": "2014", + "format": "", + "content": "THW, as NATO, send troops to protect the Ukrainian border (not including the Crimea).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Open", + "year": "2014", + "format": "", + "content": "THS the unlimited use of war-time propaganda which aims to dehumanise the enemy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aberdeen Open", + "year": "2014", + "format": "", + "content": "THW legalize the sale, production and consumption of drugs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aberdeen Open", + "year": "2014", + "format": "", + "content": "THW expand baby hatches in China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aberdeen Open", + "year": "2014", + "format": "", + "content": "THW partially link development aid to developing countries commitment to female equality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aberdeen Open", + "year": "2014", + "format": "", + "content": "TH welcomes the downfall of global capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aberdeen Open", + "year": "2014", + "format": "", + "content": "THBT the states should pay reparations to ethnic minorities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HSE Open", + "year": "2014", + "format": "", + "content": "THW ban presidential pardon.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HSE Open", + "year": "2014", + "format": "", + "content": "TH, as LGBT community, would out closeted politicians who are gays and publicly express homophobic views.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kent IV", + "year": "2014", + "format": "", + "content": "This House Regrets the rise of televised talent shows.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kent IV", + "year": "2014", + "format": "", + "content": "THBT national central banks should set limits on government spending.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kent IV", + "year": "2014", + "format": "", + "content": "THW ban the orange march in the UK.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kent IV", + "year": "2014", + "format": "", + "content": "THBT developing democracies with a history of ethnic tensions should have ethnic quotas in government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kent IV", + "year": "2014", + "format": "", + "content": "THBT black civil rights groups should condemn contemporary hip hop.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2014", + "format": "", + "content": "THS the “No Platform” practice towards far-right and fascist public figures in advance of the EU elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2014", + "format": "", + "content": "THBT history curricula should feature the same proportion of male and female historical figures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2014", + "format": "", + "content": "THW allow assisted suicide for terminally ill children with the consent of their parents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2014", + "format": "", + "content": "THBT Western states should substantially support the Bill and Melinda Gates Foundation in its efforts in the developing world to promote birth control that is undetectable by men.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2014", + "format": "", + "content": "THW make voting mandatory.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2014", + "format": "", + "content": "THW abolish the prison system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2014", + "format": "", + "content": "THBT the EU should force member states to adopt socially progressive legislation (e. g. same-sex marriage, abortion rights, ethnic and religious minority rights).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2014", + "format": "", + "content": "THW create a separate athletics league for athletes that choose to take performance enhancing substances.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2014", + "format": "", + "content": "THW impose quotas that ensure at least half of a company’s board of directors is composed of women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2014", + "format": "", + "content": "THBT the gay rights movement should abandon the claim that sexuality is not a choice.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2014", + "format": "", + "content": "THW allow individuals to enter into pre-nuptial agreements where infidelity is punishable by prison sentences.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2014", + "format": "", + "content": "THS the creation and use of Autonomous Killing Robots. Info: Autonomous Killing Robots are a form of military technology which when activated, can identify and engage targets* without further human intervention. *targets include humans and light armoured vehicles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2014", + "format": "", + "content": "THW give the public the power, via referendum, to pardon whistleblowers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2014", + "format": "", + "content": "THBT the EU should offer membership to Middle Eastern and North African states that achieve successful democratic transition.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2014", + "format": "", + "content": "In a parallel universe, there is a planet X which resembles Earth as it existed in the early days of humanity. Their human population face a choice of implementing one of two political systems. Motion: TH, as the human population of planet X, would choose communism over capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "2014", + "format": "", + "content": "THW, radically tax the rich and give all citizens a basic income without a requirement to work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "2014", + "format": "", + "content": "THBT, rather than protecting endangered species the animal rights movement should prioritize maximizing the total welfare of the animal population.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "2014", + "format": "", + "content": "THBT the Church should not take positions on issues which are not explicitly within the doctrine of the church.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "2014", + "format": "", + "content": "THBT self proclaimed feminists should not alter themselves(e.g. cosmetic surgery, make-up).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "2014", + "format": "", + "content": "THW charge distribution and downloading of leaked sex tapes & nude pictures as sexual assault.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aberystwyth Open", + "year": "2014", + "format": "", + "content": "THW officially recognise Scientology as a religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aberystwyth Open", + "year": "2014", + "format": "", + "content": "TH regrets the popularisation and commercialisation of counter-cultural or oppositional sub-genres of music (e.g Gangsta Rap or Punk music).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aberystwyth Open", + "year": "2014", + "format": "", + "content": "1. A robot may not injure a human being or, through inaction, allow a human being to come to harm. 2. A robot must obey the orders given to it by human beings, except where such orders would conflict with the First Law. 3. A robot may not injure its own kind and defend its own kind unless it is interfering with the first or second rule This is a suggestion, based on systems proposed in the past. Feel free to use other moral frameworks, provided this is made clear in the first minute of the PM's speech Motion: Upon the creation of strong AI, THW hardwire AI units with an unassailable and unalterable moral code.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aberystwyth Open", + "year": "2014", + "format": "", + "content": "This House Would ban gay conversion therapy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aberystwyth Open", + "year": "2014", + "format": "", + "content": "In a world where the technology exists, This House Would erase all the memories of individuals who have committed serious crimes and replace them with a fabricated set of memories, instead of sending them to prison.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren (Dutch National Championships)", + "year": "2014", + "format": "", + "content": "THBT landowners should become the automatic owners of everything on and in the ground they own.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren (Dutch National Championships)", + "year": "2014", + "format": "", + "content": "THBT all schools in the Westbank become integrated schools (mixing up children of different backgrounds to enhance integration and understanding).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren (Dutch National Championships)", + "year": "2014", + "format": "", + "content": "THW ban research into the genetic origins of homosexuality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren (Dutch National Championships)", + "year": "2014", + "format": "", + "content": "THW offer NATO membership to all former Soviet Union states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren (Dutch National Championships)", + "year": "2014", + "format": "", + "content": "TH, as the parent of a child diagnosed with ADHD would conceal the diagnosis from the child and its school.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren (Dutch National Championships)", + "year": "2014", + "format": "", + "content": "THW ban women older than 40 from having children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren (Dutch National Championships)", + "year": "2014", + "format": "", + "content": "THW legally define rape as sex without explicit consent.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren (Dutch National Championships)", + "year": "2014", + "format": "", + "content": "THBT no mayor should have participated in the protest marches against Wilders’ statements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northumbria Open", + "year": "2014", + "format": "", + "content": "THW hold football clubs criminally liable for the actions of their fans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northumbria Open", + "year": "2014", + "format": "", + "content": "THBT developing countries should create constitutionally guaranteed minimum standards of living.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northumbria Open", + "year": "2014", + "format": "", + "content": "THW establish vocational schools and aggressively stream academically underperforming children into them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northumbria Open", + "year": "2014", + "format": "", + "content": "TH regrets the centralisation of organised religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Northumbria Open", + "year": "2014", + "format": "", + "content": "THBT the government should nationalise all land and buildings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2014", + "format": "", + "content": "THW measure the efficacy of charities and strip those with comparatively low social value of their charitable status.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2014", + "format": "", + "content": "THBT a world without organized religion would be a better world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2014", + "format": "", + "content": "THS the boycotting of Israeli academics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2014", + "format": "", + "content": "THBT full gender emancipation requires the end of monogamy as a dominant social norm.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2014", + "format": "", + "content": "THW permit parents to stunt physical development of their severely mentally disabled children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2014", + "format": "", + "content": "THBT, within broad budgetary constraints, environmental policy should be decided by unelected scientific experts selected by their peers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V French Debating Association Tournament final", + "year": "2014", + "format": "", + "content": "THBT \"All's well that ends well\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Open", + "year": "2014", + "format": "", + "content": "THW prioritise the funding of grassroots over elite sports.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Open", + "year": "2014", + "format": "", + "content": "THBT large Eurozone states should openly oppose Britain's attempts to renegotiate its duties and relationship with the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Open", + "year": "2014", + "format": "", + "content": "TH supports the televisation of trials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Open", + "year": "2014", + "format": "", + "content": "THW make development aid contingent on recipient countries maintaining substantial redistributive taxes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff Open", + "year": "2014", + "format": "", + "content": "THW make failure to render reasonable assistance to a person in distress a criminal offence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Mini Open", + "year": "2014", + "format": "", + "content": "THW ban unpaid internships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Mini Open", + "year": "2014", + "format": "", + "content": "THW establish and monitor centres for animal prostitution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Mini Open", + "year": "2014", + "format": "", + "content": "THW heavily increase taxes on meat.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Copenhagen Mini Open", + "year": "2014", + "format": "", + "content": "Given that a trade-off is required, THBT history education in post-conflict societies should focus on reconciliation at the cost of truth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heriott Watt Open", + "year": "2014", + "format": "", + "content": "THBT the death of newspapers and print news media would be good for journalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heriott Watt Open", + "year": "2014", + "format": "", + "content": "TH regrets hookup apps.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heriott Watt Open", + "year": "2014", + "format": "", + "content": "in these cases MPs might be expelled from their party or denied promotion if they vote against the party. Occasionally a party will have a 'free vote' and MPs can vote as they like. Examples in the UK include the ban on fox hunting with dogs, votes on abortion, and the legalisation of same-sex marriage. Labour had a whipped vote in favour of same-sex marriage, whereas the Conservatives had a free vote. Motion: TH regrets free votes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heriott Watt Open", + "year": "2014", + "format": "", + "content": "Murray Edwards, Newnham and Lucy Cavendish. 1,100 out of 17 000 students in women-only colleges (6%). In the university as a whole, the ratio of women to men is roughly 50:50. Motion: This house, as the University of Cambridge, would abolish women-only colleges.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heriott Watt Open", + "year": "2014", + "format": "", + "content": "The Conservative Party is the main centre-right party in the UK. The Conservative Party is wildly unpopular in Scotland with just one seat in Westminster Parliament, despite winning many seats in England. Polls of Scottish voters see them expressing economic and social views generally in line with the majority of UK voters. It has been proposed that the Conservative Party in Scotland split with UK Conservative Party. The new party would have an independent policy platform. Motion: In the event of a 'no' vote in the independence referendum, THBT the Scottish Conservative Party should split from the UK Conservative Party.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "National Maiden’s", + "year": "2014", + "format": "", + "content": "THW ban commercial surrogacy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "National Maiden’s", + "year": "2014", + "format": "", + "content": "THW abandon the search for extraterrestrial life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "National Maiden’s", + "year": "2014", + "format": "", + "content": "THW welcome a political union of Latin American states based on the ideals of the Bolivarian revolution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "National Maiden’s", + "year": "2014", + "format": "", + "content": "THBT artists accrue no additional responsibilities/duties by virtue of becoming famous.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "National Maiden’s", + "year": "2014", + "format": "", + "content": "THW make ratification of peace agreements conditional on approval by a popular vote of women affected by the conflict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "National Maiden’s", + "year": "2014", + "format": "", + "content": "TH is a police officer operating in a democracy with a functional judicial system. THW use extra-legal methods in the investigation and apprehension of serious criminals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "National Maiden’s", + "year": "2014", + "format": "", + "content": "In Margaret Atwood's novel Oryx and Crake there is a pill, which: (a) Protects the user against all sexually transmitted diseases (b) Provides unlimited libido and sexual prowess, along with a general sense of energy and well being (c) Acts as a 100% effective male and female birth control pill. All of the effects are irreversible and there are no other side effects. THW take the pill.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Wien", + "year": "2014", + "format": "", + "content": "Should media be banned from speculative or evaluative (judgmental) reporting during court cases?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Wien", + "year": "2014", + "format": "", + "content": "Should war memorials for fallen soldiers also offer equal recognition to soldiers from the other side?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Wien", + "year": "2014", + "format": "", + "content": "Should it be a duty to report recognised injustices committed by fellow citizens (Sollen es eine Pflicht geben, erkanntes Unrecht seiner Mitbürger zur Anzeige zu bringen?).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Wien", + "year": "2014", + "format": "", + "content": "Should Fracking be stimulated?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Wien", + "year": "2014", + "format": "", + "content": "(inkl. Factsheet) Should Austria counteract its Declaration of Neutrality?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Wien", + "year": "2014", + "format": "", + "content": "Should state marriage be open for all relations between people?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Wien", + "year": "2014", + "format": "", + "content": "Should we accept the incorporation of Crimea into Russia?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Southampton Open", + "year": "2014", + "format": "", + "content": "THW offer drug and alcohol addicts substantial cash payments in return for agreeing to undergo sterilisation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Southampton Open", + "year": "2014", + "format": "", + "content": "THBT major news-media organisations should not interview people with views outside the consensus of the scientific community.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Southampton Open", + "year": "2014", + "format": "", + "content": "THBT men should take no active role in the womens liberation movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Southampton Open", + "year": "2014", + "format": "", + "content": "TH, as a developing state, would ignore all international patent and copyright treaties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Southampton Open", + "year": "2014", + "format": "", + "content": "A person's self-image is the mental picture, generally of a kind that is quite resistant to change, that depicts not only details that are potentially available to objective investigation by others (height, weight, hair colour, biological sex, race etc.), but also items that have been learned by that person about himself or herself, either from personal experiences or by internalizing the judgments of others (gender, sexual orientation, ethnicity etc.) Motion: TH regrets the concept of self-image.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Exeter Open", + "year": "2014", + "format": "", + "content": "THW bring back the Assisted Places Scheme (info).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Exeter Open", + "year": "2014", + "format": "", + "content": "THBT the feminist movement should actively participate in the production, distribution and consumption of pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Exeter Open", + "year": "2014", + "format": "", + "content": "TH regrets the rise of atheism as promoted by Richard Dawkins (in, for example, The God Delusion in which he argues that tolerance of religion damages society and individuals).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Exeter Open", + "year": "2014", + "format": "", + "content": "THW aggressively harass those who post online anonymous abuse.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Exeter Open", + "year": "2014", + "format": "", + "content": "There is a city called Omelas where all the citizens live perfectly fulfilled and happy lives. Buildings are beautiful, crops are plentiful, there is no disease, no crime, and no sorrow of any kind. On the day they reach adulthood, every citizen is taken into the citadel, to a room in the basement. There, in the deepest dungeon, they find a child, malnourished and sick, chained against the wall, in the utmost misery a human being can endure. They know that if the child were comforted, if it were allowed to enjoy a solitary moment of happiness, that the beauty of the city above would crumble, and disease, crime and want would become a part of the peoples lives. For that reason, the child will never be allowed to leave by the city. Every citizen in Omelas knows it is there, and they have all agreed to live with it. Occasionally, a citizen, man or woman, young or old, will walk through the gate on the edge of the city. They will venture into the desert that surrounds the city for as far as can be seen, walk over the horizon, and never be seen or heard from again.They are known only as The Ones who Walk Away from Omelas. Motion: THW walk away.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Liverpool IV", + "year": "2014", + "format": "", + "content": "THBT schools should actively seek to instill a strong sense of patriotism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Liverpool IV", + "year": "2014", + "format": "", + "content": "THBT Western states should maintain travel bans on Modi in the event of his ascension to Prime Minister.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Liverpool IV", + "year": "2014", + "format": "", + "content": "THW impose a quota ensuring that more than half of the London Metropolitan Police Service, across all ranks, is composed of people from ethnic minorities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Liverpool IV", + "year": "2014", + "format": "", + "content": "THW compel doctors to facilitate the deaths of consenting and competent patients.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Liverpool IV", + "year": "2014", + "format": "", + "content": "You are a Western Liberal democracy in a four-year long brutal and bloody war of attrition against an imperialistic dictatorship. Every Christmas, there is a football match between the two sides and a ceasefire. Attending the match are high ranking political and military persons of both sides, the killing of which would benefit greatly the other side. Motion: THW violate the ceasefire and kill the leaders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Liverpool IV", + "year": "2014", + "format": "", + "content": "THBT Judges should take into account the socioeconomic circumstances of defendants.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Beleidsdebatteren (Dutch Policy Debate Championships)", + "year": "2014", + "format": "", + "content": "Secondary schools should have a mandatory course in etiquette.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Beleidsdebatteren (Dutch Policy Debate Championships)", + "year": "2014", + "format": "", + "content": "The Netherlands should give everyone over 14 the right to vote.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Beleidsdebatteren (Dutch Policy Debate Championships)", + "year": "2014", + "format": "", + "content": "Dutch mayors should be elected.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Beleidsdebatteren (Dutch Policy Debate Championships)", + "year": "2014", + "format": "", + "content": "Only people with a teaching degree should teach at universities in the Netherlands.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Beleidsdebatteren (Dutch Policy Debate Championships)", + "year": "2014", + "format": "", + "content": "We should stop giving development aid.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Beleidsdebatteren (Dutch Policy Debate Championships)", + "year": "2014", + "format": "", + "content": "Polygamie should be legalised in the Netherlands.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Beleidsdebatteren (Dutch Policy Debate Championships)", + "year": "2014", + "format": "", + "content": "Growing and selling cannabis should be made legal in the Netherlands.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Arandjelovac Open", + "year": "2014", + "format": "", + "content": "In countries where prostitution is legal, THBT national health systems should cover services of sex workers for the disabled.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Arandjelovac Open", + "year": "2014", + "format": "", + "content": "THBT feminists should not campaign against polygamy in the Islamic world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Arandjelovac Open", + "year": "2014", + "format": "", + "content": "THBT countries like Switzerland, that were neutral in WW II should pay financial reparations to states occupied by the Nazis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Arandjelovac Open", + "year": "2014", + "format": "", + "content": "THW criminalise the public denial of evolution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Arandjelovac Open", + "year": "2014", + "format": "", + "content": "THBT the Western World should not portray ‘’The Great Explorers’’ (e.g. Christoph Columbus, Vasco da Gama) as heroes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Arandjelovac Open", + "year": "2014", + "format": "", + "content": "THBT the US should covertly manipulate election results in South and Central America, in order to prevent the emergence of left wing governments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Arandjelovac Open", + "year": "2014", + "format": "", + "content": "THB in right to bear arms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2014", + "format": "", + "content": "This House Would Ban All Political Donations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2014", + "format": "", + "content": "This House Would Establish Brothels on Military Bases.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2014", + "format": "", + "content": "This House Believes That it is Legitimate for Nations to Rewrite History Books in their Favour After a Time of War.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2014", + "format": "", + "content": "That This House, as Barack Obama, would use inception to plant socially progressive ideas in Vladimir Putin's dreams.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2014", + "format": "", + "content": "This House Believes That liberal states with sexually conservative communities should subsidise hymenoplasty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2014", + "format": "", + "content": ".THW Support the Bill.", + "infoSlide": "Disgruntled with NSA spying on US citizens, two senators from opposing parties have introduced a bill banning companies in California from providing essential utility services to the agency – including cutting off its computer-cooling water supply.", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2014", + "format": "", + "content": "TH Welcomes the advent of extreme genetic advancements for humans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "TH, as the North of England, would violently secede from the UK.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THW allow people to ascertain their lifespan via the 'Bethesda' device.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "In a Battlestar Galactica-themed scenario (where humanity is drifting in space), THW ban abortion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "TH supports feminist vigilante groups in India.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THBT when secession referenda are called, the nation that is being seceded from should get a chance to vote the smaller country out.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THW create a market in internal organs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THBT all erroneous information used in debates should be penalised by judges.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "TH, as a wizard, would create a horcrux.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THW force countries to invest in a global space program.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THW require all businesses to be owned and run as cooperatives.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THW ban the production, sale, and use of Poké Balls.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THW enter the Matrix.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "TH supports unmanned aerial vehicles in warfare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THW introduce a UK constitution giving courts more power.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THBT parents should advise daughters against heavy drinking to avoid sexual assault.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THW eliminate copyright and patenting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "TH, as Germany, would ban all emission vehicles by 2020.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THW disproportionately teach colonialism in schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "TH regrets the rise of drinking initiations in universities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "TH supports the marriage of Ron and Hermione.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THW allow \"Just following orders\" as a defence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THW ban advertising.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THW forcibly plug everyone into Nozick's experience machine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "TH does not regret internet piracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "It is 2017. This house is the Out campaign. THW spread hyperbolised information and lies about the EU in order to win the referendum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THBT colonialism caused more good than harm.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THW force men and women to take equal maternity and paternity leave.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "TH, as Marcus Brutus, would participate in the conspiracy to kill Caesar.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "TH prefers 'an eye for an eye' in modern society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "TH welcomes the advent of emerging genetic enhancements on the human body.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THBT feminists should oppose global capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "It is 1951, during the Korean War. TH, as the US, would aggressively nuke China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THW tie minimum wage increases to increases in the income of the 1%.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "THW institute a lottery system whereby Olympic ticket purchasers may be drafted in as athletes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "In a world with superheroes, THW institute a superhero register.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "There is a zombie outbreak where 1% of the world is infected. They are all kept in a pen at great expense. We have a vaccination, and the other 99% are vaccinated - they will not be zombified, but the 1% are still dangerous, and there is no cure. Motion: THW kill the 1%.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2014", + "format": "", + "content": "TH prefers the abolition of pornography to the nationalisation of pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bucharest Cup", + "year": "2014", + "format": "", + "content": "THBT criminal defendants should only be allowed to use a state-funded attorney.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bucharest Cup", + "year": "2014", + "format": "", + "content": "THW not grant lifetime achievement awards to artists when their morality is significantly put into question.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bucharest Cup", + "year": "2014", + "format": "", + "content": "THW phase out fractional reserve banking.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bucharest Cup", + "year": "2014", + "format": "", + "content": "TH opposes the popular trend which encourages people to “be themselves” despite the opinions of others.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bucharest Cup", + "year": "2014", + "format": "", + "content": "THW support a vigilante terrorist organisation combatting violence against women in African and the Middle East.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bucharest Cup", + "year": "2014", + "format": "", + "content": "TH supports compulsory fully privatised healthcare for people living above the poverty line.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Reedhoven Cup", + "year": "2014", + "format": "", + "content": "Should the state provide drug checking options in all areas with higher than average drug use?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Reedhoven Cup", + "year": "2014", + "format": "", + "content": "Should all people be required to take a vaccination against human gene mutation (of the X-men variety) after birth?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Reedhoven Cup", + "year": "2014", + "format": "", + "content": "Should professional sports clubs be prohibited to seek national and international transfers of minors that are still in youth programs?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Reedhoven Cup", + "year": "2014", + "format": "", + "content": "Should closed prisons be abolished for all crimes in juvenile justice system?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Reedhoven Cup", + "year": "2014", + "format": "", + "content": "Should there be an unconditional basic income?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Reedhoven Cup", + "year": "2014", + "format": "", + "content": "Should killing and feeding (Verfüttern) zoo animals for population control and consolidation of genetic diversity be banned?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL IV", + "year": "2014", + "format": "", + "content": "TH regrets the creation of shows like 'teen mom' and '16 and pregnant'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL IV", + "year": "2014", + "format": "", + "content": "TH supports Israel’s targeted assassinations of prominent members of Hamas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL IV", + "year": "2014", + "format": "", + "content": "THW suspend trade unions and labour protection laws at times of economic crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL IV", + "year": "2014", + "format": "", + "content": "THW require all isolated communities to have a rumspringa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL IV", + "year": "2014", + "format": "", + "content": "TH welcomes the rise of anarcho-populism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL IV", + "year": "2014", + "format": "", + "content": "On the condition that gangs fulfil basic social needs (such as basic healthcare, education and sanitation), THW cease to combat the gangs and their trade in favelas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ HWS College)", + "year": "2014", + "format": "", + "content": "THW abolish spousal privilege.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ HWS College)", + "year": "2014", + "format": "", + "content": "THBT authors who belong to historically oppressed peoples should only write in their native languages.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ HWS College)", + "year": "2014", + "format": "", + "content": "THBT the feminist movement should campaign to deconstruct masculinity rather than mobilize masculinity to serve feminist goals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ HWS College)", + "year": "2014", + "format": "", + "content": "THBT states should not hold prisoners of war after a conflict's cessation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ HWS College)", + "year": "2014", + "format": "", + "content": "THR the rise of pop-cultural authories on what constitutes good sex.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ HWS College)", + "year": "2014", + "format": "", + "content": "THW consider an academic's publicly stated political positions (e.g. blogs, tweets, editorials) in hiring, tenure and promotion decisions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ HWS College)", + "year": "2014", + "format": "", + "content": "THBT all media organizations should be owned and run by journalists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ HWS College)", + "year": "2014", + "format": "", + "content": "TH supports the prominence of the American Dream in the national American discourse.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (@ HWS College)", + "year": "2014", + "format": "", + "content": "TH, as the United States, would actively foment democratic unrest in China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V French Debating Association Tournament Open_Semis", + "year": "2014", + "format": "", + "content": "THBT the relationship between Britain and France is indeed a \"Dear Conjunction\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V French Debating Association Tournament Open_Semis", + "year": "2014", + "format": "", + "content": "THBT \"Action is Eloquence\" (Coriolanus).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pre-Pristina Open", + "year": "2014", + "format": "", + "content": "THW ban advertising targeted at children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pre-Pristina Open", + "year": "2014", + "format": "", + "content": "THW assassinate North Korean nuclear scientists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Pre-Pristina Open", + "year": "2014", + "format": "", + "content": "TH, as a high profile Kosovar football player, would choose to play for a national team fully recognised by FIFA instead of Kosovo.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leeds Open", + "year": "2014", + "format": "", + "content": "THW legally require the consent of artists for the resale and use of their art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leeds Open", + "year": "2014", + "format": "", + "content": "TH supports The RMT's decision to strike (in protest at ticket office closures).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leeds Open", + "year": "2014", + "format": "", + "content": "THBT the US and EU should apply economic sanctions to Russia unless there is a full withdrawal of troops from territorial Ukraine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leeds Open", + "year": "2014", + "format": "", + "content": "THW replace all means-tested benefits with a Universal Basic Income.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leeds Open", + "year": "2014", + "format": "", + "content": "THW abolish Oxford and Cambridge Universities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mainzer Debütanten Cup", + "year": "2014", + "format": "", + "content": "Should religious education at school be abolished?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mainzer Debütanten Cup", + "year": "2014", + "format": "", + "content": "Should we introduce mandatory quotas for media products from Europe in film, tv and radio?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mainzer Debütanten Cup", + "year": "2014", + "format": "", + "content": "Should men be allowed to protest their legal duty to pay child support in writing if their partners decide against getting their written permission for abortion?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mainzer Debütanten Cup", + "year": "2014", + "format": "", + "content": "Should the West cut all economic ties with Russia as long as it occupies Crimea?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2014", + "format": "", + "content": "THW legalise all drugs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2014", + "format": "", + "content": "THW ban all political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2014", + "format": "", + "content": "THB that in times of war, the state should conscript a military by means of a draft lottery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2014", + "format": "", + "content": "THW abolish the welfare state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2014", + "format": "", + "content": "THW open all borders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2014", + "format": "", + "content": "TH regrets the demise of the Soviet Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2014", + "format": "", + "content": "THB in the virtue of a disproportionate response.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2014", + "format": "", + "content": "THBT NGOs/charities should not accept donations from organizations that contradict their aims.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2014", + "format": "", + "content": "In situations where it's not possible to achieve both aims and the decision lies with the doctor, THBT doctors should prioritize prolonging life over the quality of that life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2014", + "format": "", + "content": "Ottakring is a neighbourhood with a high percentage of immigrants, particularly from former Yugoslavia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2014", + "format": "", + "content": "THBT the US and the EU should support a Russian annexation of Crimea in exchange for an otherwise independent Ukraine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2014", + "format": "", + "content": "Assuming participants have consented freely and in full knowledge of the risks and possible consequences, THW allow its citizens to participate in the “Thirst Games”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2014", + "format": "", + "content": "TH supports nations marketing themselves as destinations for ‘good time tourism’ (for the purpose of this debate, good time tourism refers to every form of tourism that satisfies human desires and is generally forbidden in the West (prostitution, drugs).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2014", + "format": "", + "content": "Given a machine that can predict a person's life 95% accurately, THW not use it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2014", + "format": "", + "content": "THBT media aimed at children should reject the \"happily ever after\" model and show a more realistic picture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2014", + "format": "", + "content": "THBT no state, in any situation, has the right to demand, encourage or promote its citizen to fight or die for their country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Women’s", + "year": "2014", + "format": "", + "content": "THW abolish trial by jury.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Women’s", + "year": "2014", + "format": "", + "content": "THW allow UK broadcasters to be politically partisan in the reporting of current events.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Women’s", + "year": "2014", + "format": "", + "content": "THW allow parents to remove their children from specific classes at school (such as sports, religious studies, sex education and science) on moral, religious or political grounds.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Women’s", + "year": "2014", + "format": "", + "content": "THW never subject international treaties to popular referenda.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Women’s", + "year": "2014", + "format": "", + "content": "TH supports Barack Obama's 'Kill List'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Ancients", + "year": "2014", + "format": "", + "content": "THW compel doctors to report suspected cases of domestic abuse to the police.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Ancients", + "year": "2014", + "format": "", + "content": "THBT football associations should require clubs to be majority owned by their fans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Ancients", + "year": "2014", + "format": "", + "content": "THW legalise entrapment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Ancients", + "year": "2014", + "format": "", + "content": "THBT the EU should give automatic membership to states that have seceded from current member states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Ancients", + "year": "2014", + "format": "", + "content": "THW not afford religious identity the same level of anti-discrimination protection as inborn traits (such as race, gender and sexuality).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Ancients", + "year": "2014", + "format": "", + "content": "THBT that the UN Security Council should sanction companies that buy 'booty futures' from rebel movements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Ancients", + "year": "2014", + "format": "", + "content": "TH supports the rise of online communities that aggressively police ideological purity within the feminist movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Mini", + "year": "2014", + "format": "", + "content": "THBT feminists should endorse conscripting women in the Finnish army rather than abolishing conscription.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Mini", + "year": "2014", + "format": "", + "content": "TH as Russia supports partitioning Ukraine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Helsinki Mini", + "year": "2014", + "format": "", + "content": "THW ban male circumcision.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Marburger Geschichte Turnier (History Tournament)", + "year": "2014", + "format": "", + "content": "It is 5 July 1914. THW, as the German Reich, issue the Austrian-Hungarian empire a “blank check” on how to deal with the conflict with Serbia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Marburger Geschichte Turnier (History Tournament)", + "year": "2014", + "format": "", + "content": "It is the end of the year 1862. THW, as Abraham Lincoln, give up on the demand to abolish slavery, provided it would help end the Civil War.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Marburger Geschichte Turnier (History Tournament)", + "year": "2014", + "format": "", + "content": "It is February of the year 44 before Christ. THW, as Brutus, join the conspiracy group of Cassius that aims to murder Caesar.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Marburger Geschichte Turnier (History Tournament)", + "year": "2014", + "format": "", + "content": "It is the beginning of 1961. THW, as the USA, seek a mutual neutrality pact with Cuba.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Marburger Geschichte Turnier (History Tournament)", + "year": "2014", + "format": "", + "content": "It is the fall of 1923. THW, as the Western allied forced, let Germany repay ful reparations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Marburger Geschichte Turnier (History Tournament)", + "year": "2014", + "format": "", + "content": "It is 1990 shortly before German reunification. THW, as the Bundesrepublik Deutschland, select the DDR anthem “Auferstanden aus Ruinen” (Risen from Ruins) as the new national anthem for a reunited Germany.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2014", + "format": "", + "content": "THW ban the screening and production of films depicting current or recent conflicts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2014", + "format": "", + "content": "TH supports the Iraqi Government’s policy of paying citizens rewards to kill jihadist insurgents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2014", + "format": "", + "content": "TH regrets the rise and dominance of social media (such as Facebook and Twitter) in Western Liberal Democracies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2014", + "format": "", + "content": "THBT developing countries should establish Charter Cities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2014", + "format": "", + "content": "THBT the ICC should hire mercenaries to capture indicted individuals and put them on trial at The Hague.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2014", + "format": "", + "content": "THBT convicted criminals should be allowed to raise their children in prison.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallaight IV", + "year": "2014", + "format": "", + "content": "THW legalise simulated child pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallaight IV", + "year": "2014", + "format": "", + "content": "THW, when casting minority characters (e.g. racial minorities, LGBTs, people with disabilities etc.) would only cast actors from that same minority.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallaight IV", + "year": "2014", + "format": "", + "content": "TH, when testing life-extending treatments for terminally ill patients, would not use control groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallaight IV", + "year": "2014", + "format": "", + "content": "THBT Pakistan should not engage in peace talks with the Taliban.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tallaight IV", + "year": "2014", + "format": "", + "content": "You are a scientist working at CERN. Working alone one night, you make an accidental breakthrough in your research that will allow humanity to travel through time. You are alone in the lab and the odds of someone else making the same accidental breakthrough are non-existent. Motion: THW destroy its research.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2014", + "format": "", + "content": "THW prohibit religious organizations from speaking out against homosexuality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2014", + "format": "", + "content": "THBT states should take active measures to limit the spread of American pop culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2014", + "format": "", + "content": "THBT it is in Russia's interest to annex the Crimea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2014", + "format": "", + "content": "THBT the Black Rights Movement should oppose the appropriation of the Confederate flag by black public figures.", + "infoSlide": "Kanye West recently released a clothing line which featured the Confederate flag. The Confederate flag was the flag used by the pro-slavery southern US states in the American Civil War. The American Civil War was a conflict over the use of black slaves. The flag is still used by various groups, including white supremacists in the US.", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2014", + "format": "", + "content": "THBT developing countries should support commercial surrogacy.", + "infoSlide": "Surrogacy is an arrangement in which a woman carries a child for another person or couple.", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2014", + "format": "", + "content": "TH opposes the sympathetic and humanizing portrayal of Nazi soldiers in popular media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2014", + "format": "", + "content": "THW suspend elections in countries with very high levels of government debt.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Final", + "year": "2014", + "format": "", + "content": "THBT the Irish Political System has served the People well.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leubke Cup (@ Brock University)", + "year": "2014", + "format": "", + "content": "THW not allow religious proselytization in the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leubke Cup (@ Brock University)", + "year": "2014", + "format": "", + "content": "TH, as the US, would grant amnesty to Edward Snowden.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leubke Cup (@ Brock University)", + "year": "2014", + "format": "", + "content": "THW not allow athletes who commit violent crimes to return to their sport upon the ending of their sentence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leubke Cup (@ Brock University)", + "year": "2014", + "format": "", + "content": "TH opposes embedded journalists in the military.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leubke Cup (@ Brock University)", + "year": "2014", + "format": "", + "content": "TH supports the rise of sexually assertive female pop stars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leubke Cup (@ Brock University)", + "year": "2014", + "format": "", + "content": "THS the public outing of gay public figures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leubke Cup (@ Brock University)", + "year": "2014", + "format": "", + "content": "TH, with hindsight, support the 2003 invasion of Iraq.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2014", + "format": "", + "content": "THBT the governments of developing nations should actively encourage slum tourism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2014", + "format": "", + "content": "TH, as a critic, would advise the public not to consume works of music, film and art produced by artists that you deem morally reprehensible, regardless of the artistic merit of their work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2014", + "format": "", + "content": "There have been successful experiments with citizens actively involved in the rehabilitation process of ex-convicts by, for example, hosting them in their house, or building supportive relationships with them. In these programmes, the state ensured adequate financial and professional assistance. The participation in these programmes by citizens and ex-convicts has always been voluntary. Motion: THW randomly select citizens to actively assist in the rehabilitation process of ex-convicts, and make participation mandatory for those citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2014", + "format": "", + "content": "THBT the state should make funding for political parties proportionate to the number of members from low-income brackets in those parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2014", + "format": "", + "content": "THW nationalise prostitution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2014", + "format": "", + "content": "Some awards in literature, theater, film, sports, etc. are granted only to people from specific minorities (NAACP awards) Motion: TH as a nominee of such an award would not accept it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2014", + "format": "", + "content": "Some academic and cultural institutions have a practice of awarding prizes that recognise the achievements of members of minority groups. For example, “Muslim Student Achievement Award” or “African American Writer of the Year”. Motion:THB it is legitimate for states to deny residence or asylum to immigrants who openly contradict their predominant values.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2014", + "format": "", + "content": "THBT the Catholic church should make absolution for those who have committed a crime conditional upon them handing themselves into the police.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2014", + "format": "", + "content": "THBT US media should not report any details about school shootings beyond the fact that they happened.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2014", + "format": "", + "content": "THBT all international peacekeeping operations in Africa should be carried out solely by African troops.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2014", + "format": "", + "content": "TH supports menstrual activism.", + "infoSlide": "Menstrual activism is a movement which seeks to examine social attitudes towards menstruation through artistic performances such as wearing menstrual blood.", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2014", + "format": "", + "content": "THW ban holocaust denial.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2014", + "format": "", + "content": "THW support a strict disciplinarian education system, as long as it makes students perform better.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2014", + "format": "", + "content": "TH regrets the use of nationalism by colonial liberation movements (e.g. the Indian National Congress, Sinn Fein).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2014", + "format": "", + "content": "TH supports the creation of women only economic zones in Saudi Arabia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2014", + "format": "", + "content": "THB African-American civil rights organisations should condemn capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2014", + "format": "", + "content": "The technology exists to allow people to selectively erase their memories without any physical side effects. Motion: THW allow individuals to selectively erase their own memories.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tornadu", + "year": "2014", + "format": "", + "content": "THBT the LGBT movement should stop using the concept of “gay pride”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters_Partial", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tornadu", + "year": "2014", + "format": "", + "content": "THBT the international community has a duty to protect human rights, if necessary by military means, even in violation of the principle of national sovereignty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tornadu", + "year": "2014", + "format": "", + "content": "TH applauds the social pressure on teenage girls to initiate promiscuous sexual activity;.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tornadu", + "year": "2014", + "format": "", + "content": "THW create a small network of public schools accessible only to students with outstanding academic backgrounds.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tornadu", + "year": "2014", + "format": "", + "content": "When father of a fetus favours abortion and this is not carried out, THW allow him to excuse himself from any responsibility for the child;.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tornadu", + "year": "2014", + "format": "", + "content": "THW reduce VAT tax on goods and services provided for by small businesses in order to combat the black (parallel) economy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tornadu", + "year": "2014", + "format": "", + "content": "THB in the primacy of serving others as opposed to seeking one’s own happiness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tornadu", + "year": "2014", + "format": "", + "content": "THBT young Portuguese should recognize the existence of a generational struggle (with divergent and conflicting interests between generations) and prepare to win.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bonapartiaans Debattoernooi", + "year": "2014", + "format": "", + "content": "THW allow adoption agencies to guarantee to biological parents that their child will not be adopted by a same-sex couple.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bonapartiaans Debattoernooi", + "year": "2014", + "format": "", + "content": "THW allow euthanasia for patients suffering from dementia (and therefore legally incapable) who have signed an advance directive (request for euthanasia) Info.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bonapartiaans Debattoernooi", + "year": "2014", + "format": "", + "content": "THW provide all citizens a basic income at the poverty line without setting any requirements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bonapartiaans Debattoernooi", + "year": "2014", + "format": "", + "content": "THW require all schools that teach religion to discuss militant atheism at an equal footing with all major religions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bonapartiaans Debattoernooi", + "year": "2014", + "format": "", + "content": "THW make the exploitation of brothels a state monopoly.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bonapartiaans Debattoernooi", + "year": "2014", + "format": "", + "content": "THW split Belgium into separate parts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bonapartiaans Debattoernooi", + "year": "2014", + "format": "", + "content": "THW choose its Prime Minister through direct elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bonapartiaans Debattoernooi", + "year": "2014", + "format": "", + "content": "THW liberate slaves in Mauritania with a military intervention.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bonapartiaans Debattoernooi", + "year": "2014", + "format": "", + "content": "THW take Dutch citizenship away from any criminal with a double nationality and would extradite these criminals to the other country they hold citizenship of.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates Open_Semis", + "year": "2014", + "format": "", + "content": "THW commemorate the First World War.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates Open_Semis", + "year": "2014", + "format": "", + "content": "THW condemn the Academic and Cultural Boycott of Israel.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates Open_Semis", + "year": "2014", + "format": "", + "content": "THBT the Constitution of Ireland has served the country well.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates Open_Semis", + "year": "2014", + "format": "", + "content": "THW introduce Mandatory Organ Donation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2014", + "format": "", + "content": "THBT Governments should not assist in the rebuilding of disaster prone areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2014", + "format": "", + "content": "TH regrets the existence of critic or professionally determined film awards, including the Academy Awards, Palme D'Or, and Sight and Sound's Top 10.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2014", + "format": "", + "content": "THBT it is the West's interest for long term Brent Crude Oil prices to fall below US$60 per barrel. Info.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2014", + "format": "", + "content": "THBT the LGBT movement should abandon the claim that sexuality is not a choice.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2014", + "format": "", + "content": "THB European Football leagues should aggressively redistribute income from successful to less successful domestic clubs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2014", + "format": "", + "content": "THBT the states of the Western Balkans should ban positive depictions of indicted or convicted war criminals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2014", + "format": "", + "content": "THW financially incentivise interracial and interfaith marriage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2014", + "format": "", + "content": "THW criminalise its citizens from fighting in foreign conflicts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2014", + "format": "", + "content": "THB that majority liberal supreme courts should actively misapply constitutions in order to advance progressive rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2014", + "format": "", + "content": "TH regrets Jiyas use of the Burka (info video).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish National Law Debates", + "year": "2014", + "format": "", + "content": "THW directly elect public representatives by random lottery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish National Law Debates", + "year": "2014", + "format": "", + "content": "THW remove all restrictions on sexual activities between mutually consenting adults.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish National Law Debates", + "year": "2014", + "format": "", + "content": "THW abolish trial by jury in criminal cases.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish National Law Debates", + "year": "2014", + "format": "", + "content": "THBT former colonial powers should not be involved in peacekeeping and nation-building in their former colonies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish National Law Debates", + "year": "2014", + "format": "", + "content": "THW choose to believe in a god or gods.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish National Law Debates", + "year": "2014", + "format": "", + "content": "THBT when awarding artistic achievement, all aspects of the artist's personal lives should be ignored.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish National Law Debates", + "year": "2014", + "format": "", + "content": "THBT the use of violence to advance the cause of disenfranchised sexual minorities and women in Russia is legitimate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women's (@ McGill University)", + "year": "2014", + "format": "", + "content": "THW ban religious and ethnic parties from running for election in developing democracies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women's (@ McGill University)", + "year": "2014", + "format": "", + "content": "TH regrets the commercialization and mainstream popularization of grafitti.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women's (@ McGill University)", + "year": "2014", + "format": "", + "content": "THBT NATO should maintain a standing army to which all members must commit a minimum number of troops.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women's (@ McGill University)", + "year": "2014", + "format": "", + "content": "The “court of public opinion” refers to situations in which individuals are accused of wrongdoing, defended, and informally tried within public discourse rather than a court of law, and are subsequently treated differently based on society’s verdict(s). For example, Woody Allen is currently being tried within the court of public opinion. TH prefers a society with an active court of public opinion to one without.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women's (@ McGill University)", + "year": "2014", + "format": "", + "content": "THW ban employers from creating contracts which prohibit employees from expressing their political views publicly.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women's (@ McGill University)", + "year": "2014", + "format": "", + "content": "THBT it is in the interest of minority rights groups (e.g. LGBTQ, women, racial minorities) to join forces in common protest rather than separately advocate for the individual interests.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "North American Women's (@ McGill University)", + "year": "2014", + "format": "", + "content": "Through NSA spy networks, this House - being the US gov't - has determined that the largest of several Ukrainian opposition groups (USAR) is imminently launching a violent coup against the Ukrainian government. THW warn the Ukrainian government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Reading No-Notes Open", + "year": "2014", + "format": "", + "content": "THW Prevent men from running for elected office for a period of two terms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Reading No-Notes Open", + "year": "2014", + "format": "", + "content": "THW Ban any and all participation in faith healing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Reading No-Notes Open", + "year": "2014", + "format": "", + "content": "THW Allow and enforce prenuptial agreements that punish infidelity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Reading No-Notes Open", + "year": "2014", + "format": "", + "content": "TH, as the Conservative party, would condemn the portrayal of Romanians and Bulgarians in the tabloids.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Reading No-Notes Open", + "year": "2014", + "format": "", + "content": "This House Believes that NATO Should Launch a Retaliatory Nuclear Strike.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Mace", + "year": "2014", + "format": "", + "content": "THW allow companies to pay higher wages to employees who agree not to have children during their term of employment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Mace", + "year": "2014", + "format": "", + "content": "THW only give out scholarships on the basis of academic potential.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Mace", + "year": "2014", + "format": "", + "content": "THB the West should make use of its imperialist power.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Mace", + "year": "2014", + "format": "", + "content": "THW ban such a machine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Scotland", + "year": "2014", + "format": "", + "content": "THW allow employees to sign a contract to give up their right to have children in exchange for a higher salary.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Scotland", + "year": "2014", + "format": "", + "content": "THBT developing nations should no longer sell land to foreign companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Scotland", + "year": "2014", + "format": "", + "content": "THW make the weight of votes proportional to a person’s expected remain lifespan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Scotland", + "year": "2014", + "format": "", + "content": "TH supports the use of violent protest to topple oppressive regimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Scotland", + "year": "2014", + "format": "", + "content": "THW restrict CEOs from annually earning more than 12 times the salary of his or her lowest-paid employee.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Scotland", + "year": "2014", + "format": "", + "content": "TH, as the Catholic Church, would vote in the Pope through a referendum amongst all Church-going Catholics when electing a new Pope, rather than amongst Cardinals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Scotland", + "year": "2014", + "format": "", + "content": "THBT the State should pay to each and every citizen 15,000 pounds per year unconditionally.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2014", + "format": "", + "content": "THBT schools should prioritise the teaching of modern literature over classical literature.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2014", + "format": "", + "content": "THBT the west should give substantial extra non-conditional aid packages to countries that have large illegal narcotics exports.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2014", + "format": "", + "content": "TH, as Edward Snowden, regrets publishing the NSA files.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2014", + "format": "", + "content": "THBT celebrities should be banned from making political statements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2014", + "format": "", + "content": "TH, as a scientist who has developed a compound which when ingested causes a person to become bisexual, would infect the global water supply with the compound.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms (@ Carleton University)", + "year": "2014", + "format": "", + "content": "THW make voting power depreciate with age.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms (@ Carleton University)", + "year": "2014", + "format": "", + "content": "THBT signatories to the Kyoto protocol should institute economic sanctions against nations that refuse to sign.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms (@ Carleton University)", + "year": "2014", + "format": "", + "content": "THBT art depicting historical atrocities should depict them in their full brutality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NorthAms (@ Carleton University)", + "year": "2014", + "format": "", + "content": "THW ban advertising that objectifies women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warwick IV", + "year": "2014", + "format": "", + "content": "THW require those claiming Job Seekers' Allowance to undertake community service.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warwick IV", + "year": "2014", + "format": "", + "content": "TH supports public funding of blasphemous art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warwick IV", + "year": "2014", + "format": "", + "content": "THW abolish academic journals and make all academic research freely available to the public online.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warwick IV", + "year": "2014", + "format": "", + "content": "TH supports the formation of vigilante groups in high crime areas of Mexico.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warwick IV", + "year": "2014", + "format": "", + "content": "THBT Barack Obama should issue an executive order suspending all state bans on gay marriage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warwick IV", + "year": "2014", + "format": "", + "content": "TH, as a wealthy individual, rather than paying the full rate of tax, would avoid taxation in order to donate to charity, according to his/her own moral preferences.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brabants Debattoernooi", + "year": "2014", + "format": "", + "content": "We should be able to fire (Rabobank) Board members that were responsible for fraud, without a severance bonus.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brabants Debattoernooi", + "year": "2014", + "format": "", + "content": "Bitcoins should become the official currency in the Netherlands.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brabants Debattoernooi", + "year": "2014", + "format": "", + "content": "Health insurances should be allowed to refuse medicines on the basis of their costs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brabants Debattoernooi", + "year": "2014", + "format": "", + "content": "The availability/sales of pyrotechnics/fireworks should be limited (This article and this one give appropriate background info).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brabants Debattoernooi", + "year": "2014", + "format": "", + "content": "Assad should win.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brabants Debattoernooi", + "year": "2014", + "format": "", + "content": "Dutch athletes should boycott the Sochi Winter Olympics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brabants Debattoernooi", + "year": "2014", + "format": "", + "content": "People in Groningen should stop complaining (probably referring to gas drilling in the province).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2014", + "format": "", + "content": "THW create drug provison centres to provide all adults with unlimited quantities of free heroin and cocaine, exclusively for on site consumption.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2014", + "format": "", + "content": "In a world in which the Z-gene exists, THW require that mutants be constantly monitored by the state from birth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2014", + "format": "", + "content": "THBT the Labour Party should end its affiliation with trade unions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2014", + "format": "", + "content": "THBT schools should attempt to indoctrinate school children with the belief that they are personally culpable for death, poverty and abject misery in the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2014", + "format": "", + "content": "THBT the Syrian National Coalition and the Free Syrian Army should offer to end the Syrian Civil War and share power in a short term transitional government led by Bashar al-Assad.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2014", + "format": "", + "content": "THBT comedians who cross the line of public offence do more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2014", + "format": "", + "content": "THBT feminists should condemn the practice of monogamy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2014", + "format": "", + "content": "THBT resource-rich developing nations should severely restrict the extraction and sale of natural resources.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2014", + "format": "", + "content": "THBT Japanese leaders are legitimate in visiting the Yasukuni Shrine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2014", + "format": "", + "content": "THB the NAACP should not seek a post-racial society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2014", + "format": "", + "content": "THB the Irish state should pay reparations to all female citizens who lived during the period in which Magdalene Laundries were operational.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2014", + "format": "", + "content": "THW teach children to question authority, even if it undermines discipline in the classroom.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2014", + "format": "", + "content": "TH rejects the legitimacy of the state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THW stop state funding of the arts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THW \"Live as if you were to die tomorrow\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THW use force to make peace.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THBT the bare necessities are enough.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THBT we should fear Google.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THBT privacy is an illusion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THW not have children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2.4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THBT anything good in life is either illegal, immoral or fattening.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2.5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THW always choose style over substance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THBT bad government comes from too much government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THBT men have become the tools of their tools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THBT science will save us.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THW emigrate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THW tell the whole truth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THBT work is overrated.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THB in free speech.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THBT parents are corrupted by children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THBT imagination is better than knowledge.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4.4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris V", + "year": "2014", + "format": "", + "content": "THBT whenever you find yourself on the side of the majority it is time to pause and reflect.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4.5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates Round 2", + "year": "2014", + "format": "", + "content": "TH condemns the actions of Edward Snowden.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates Round 2", + "year": "2014", + "format": "", + "content": "THW remove all restrictions on freedom of speech.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "London Pro-Am IV", + "year": "2014", + "format": "", + "content": "If the tech to do so were available, THW allow disabled parents to ensure their children are born with their disabilities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "London Pro-Am IV", + "year": "2014", + "format": "", + "content": "TH, as the Pope and the Vatican council, would liquidate all the Vatican's assets and distribute them to charity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "London Pro-Am IV", + "year": "2014", + "format": "", + "content": "THW create a scheme to aggressively encourage university graduates to marry and reproduce.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "London Pro-Am IV", + "year": "2014", + "format": "", + "content": "TH regrets the 'fat pride' movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent Open", + "year": "2014", + "format": "", + "content": "THW require that government ministers be highly qualified and experienced experts in their policy areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent Open", + "year": "2014", + "format": "", + "content": "THBT the EU should lift its ban on exporting sedatives used in lethal injections to the USA.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent Open", + "year": "2014", + "format": "", + "content": "THBT the Conservative Party should form an electoral pact with the UK Independence Party for the 2015 general election.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent Open", + "year": "2014", + "format": "", + "content": "THBT hacking is a legitimate form of protest against large corporations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent Open", + "year": "2014", + "format": "", + "content": "THBT all states should adopt the Flemish system of university admissions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent Open", + "year": "2014", + "format": "", + "content": "THBT the British education system should aim to give students from all backgrounds a high level of familiarity with the cultural knowledge prized by white, upper and middle class elites.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Dresden", + "year": "2014", + "format": "", + "content": "THW make graduates of state universities, who become stay-at-home “parents” (Hausfrauen oder Hausmänner), retrospectively pay their study fees (normally free).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Dresden", + "year": "2014", + "format": "", + "content": "THW offer immigrants who cannot claim welfare benefits in Germany a loan for “livelihood/existence costs” that they would have to repay after five years.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Dresden", + "year": "2014", + "format": "", + "content": "THBT parents should monitor the electronic communications of their children, for example by installing spyware, requiring their children to give them their passwords, or reading browser histories.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Dresden", + "year": "2014", + "format": "", + "content": "THW provide strong financial support to families who decide to bring a foetus with Down syndrom to term and raise it by themselves.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Dresden", + "year": "2014", + "format": "", + "content": "THBT attacks on military targets, in which many civilian victims can be expected, are legitimate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Dresden", + "year": "2014", + "format": "", + "content": "THW allow people to insure themselves against fines.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Dresden", + "year": "2014", + "format": "", + "content": "TH, as an athlete with sight on a medal at the Olympic Games in Sotchi, would publicly promote LGBT rights during the Games.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2014", + "format": "", + "content": "THR the commercialization of religious holidays.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2014", + "format": "", + "content": "THBT universities should ban all fraternities and sororities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2014", + "format": "", + "content": "TH, as the Mexican government, would end its war against the drug cartels.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2014", + "format": "", + "content": "THR the use of feminism as an advertising tactic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2014", + "format": "", + "content": "THW ban all youth wings of political parties in developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2014", + "format": "", + "content": "THBT protesters should not use memorials as sites for protest.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2014", + "format": "", + "content": "THS a lower income tax for women than men.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2014", + "format": "", + "content": "THP Facebook's policy of only removing content that users report as objectionable to a policy where Facebook itself independently determines restrictions on content.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2014", + "format": "", + "content": "THBT all information marked as classified by governments should become available to the public within 50 years.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2014", + "format": "", + "content": "THW allow communities to vote to suspend police supervision.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THBT the United States of America should fund moderate Madrassas (schools of Islamic study) throughout the Islamic world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THW allow first-time offenders to, with the consent of the victims, pay compensation to them in place of a prison sentence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "TH regrets the rise of a 'hookup culture' (one which accepts and encourages casual sexual encounters focused on physical pleasure, without necessarily including emotional bonding).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THBT developing countries should ban members of political dynasties from standing for elected office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THBT the Trans-Pacific Partnership is in the interests of the small and medium-sized negotiating countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THW make the receipt of welfare payments to raise children conditional on the use of long-term, but reversible, contraception.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THBT government agencies that regulate drugs should only test whether a drug is safe, not whether it is effective, before approving it for public use.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THBT NATO should unconditionally offer membership to the states of the former Soviet Union, excluding Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "TH regrets the commodification of indigenous cultures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THBT the gay rights movement should abandon the claim that sexuality is not a choice.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THBT multinational companies should be liable for human rights abuses that occur anywhere in their supply chain.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THW remove all copyright protection for material deemed to be morally objectionable.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THBT Pope Francis should publicly encourage Catholics to support radically redistributive government policies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THW allow countries to pay other countries to settle asylum-seekers who reach their borders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THW abolish gated communities in the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Partial_Double_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THBT Japan should shame its soldiers who participated in WWII, including those who did not commit war crimes themselves.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THW auction off the long-term right to govern bankrupt cities for profit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THBT women should reject practices that alter the appearance of their genitalia, such as waxing and labiaplasty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chennai WUDC", + "year": "2014", + "format": "", + "content": "THBT India should adopt aggressive free market policies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Decemberac (beginners tournament)", + "year": "2013", + "format": "", + "content": "THW include children with special needs into regular school classes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Decemberac (beginners tournament)", + "year": "2013", + "format": "", + "content": "TH, as a former communist state, would remove the monuments of the former regime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Decemberac (beginners tournament)", + "year": "2013", + "format": "", + "content": "THBT holding the Olympics is not worth it for the host country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Decemberac (beginners tournament)", + "year": "2013", + "format": "", + "content": "THBT sanctions are a good way of implementing democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Decemberac (beginners tournament)", + "year": "2013", + "format": "", + "content": "THW not undress.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Decemberac (beginners tournament)", + "year": "2013", + "format": "", + "content": "In today’s world, THW choose a craft rather than the university education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Decemberac (beginners tournament)", + "year": "2013", + "format": "", + "content": "THW not read fairy tales to children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2013", + "format": "", + "content": "THW financially compensate children who fail to achieve employable grades at school.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2013", + "format": "", + "content": "THW establish quotas for immigrants on national sports teams.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2013", + "format": "", + "content": "THB the European Union should lower the entry requirements and fast-track accession procedures for the Ukraine and other nations in the Caucasus.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2013", + "format": "", + "content": "THB the USA should withdraw from its defensive pact with Japan in the East China Sea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2013", + "format": "", + "content": "THBT lack of Intent should not be considered a legitimate defence in hate speech trials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2013", + "format": "", + "content": "THBT governments should take public steps to disrupt and discredit the use of cryptocurrencies (e.g. Bitcoin).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2013", + "format": "", + "content": "THBT South Africans should engage in a frank and critical discussion of the life achievements and legacy of Nelson Mandela, rather than continue to uncritically revere him.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jerusalem Open", + "year": "2013", + "format": "", + "content": "THBT foreign Western governments should stop attempting to resolve the Israel-Palestine conflict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jerusalem Open", + "year": "2013", + "format": "", + "content": "THBT First Ladies/Gentlemen should not publicly advocate for policies or political positions during their partner's term in office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jerusalem Open", + "year": "2013", + "format": "", + "content": "THBT schools should avoid instilling a sense of patriotism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jerusalem Open", + "year": "2013", + "format": "", + "content": "THW allow jury nullification.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jerusalem Open", + "year": "2013", + "format": "", + "content": "THW charge George W. Bush with war crimes for the CIA's actions in his terms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jerusalem Open", + "year": "2013", + "format": "", + "content": "THBT policy pertaining to religion in the public sphere in Israel should be set on a local level.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tournament without a name (Macedonian-Greek exchange tournament)", + "year": "2013", + "format": "", + "content": "THW ban international adoption.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tournament without a name (Macedonian-Greek exchange tournament)", + "year": "2013", + "format": "", + "content": "THW organise Alternative Olympics to the Sochi 2014 Winter Olympics in order to protest anti-LGBT laws in Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tournament without a name (Macedonian-Greek exchange tournament)", + "year": "2013", + "format": "", + "content": "THBT Pope Francis I should openly endorse radical left political parties and candidates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tournament without a name (Macedonian-Greek exchange tournament)", + "year": "2013", + "format": "", + "content": "THW ban re-election of politicians that did not fulfil their promises.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2013", + "format": "", + "content": "THBT foster children should be placed into families with similar backgrounds (race, religion, etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2013", + "format": "", + "content": "THBT politicians should not have public profiles on twitter and other social networking sites.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2013", + "format": "", + "content": "You are an immigrant (asylum seeker?) from a non-Western country. You are offered full and immediate citizenship of the EU and the US. The offers are the only two that you have and are mutually exclusive. You do not know where you will live in either union. Your native and only language is spoken in neither. Motion: THW opt for the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2013", + "format": "", + "content": "TH supports soldier-run free schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2013", + "format": "", + "content": "THBT the US should overturn its blanket ban on negotiating with terrorists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2013", + "format": "", + "content": "As an atheist, THW proselytise.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Novice Tournament", + "year": "2013", + "format": "", + "content": "THW stop streaming children in secondary schools based on intelligence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Novice Tournament", + "year": "2013", + "format": "", + "content": "THW make parents legally responsible for their children's crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Novice Tournament", + "year": "2013", + "format": "", + "content": "This house believes that governments should never pay ransoms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Novice Tournament", + "year": "2013", + "format": "", + "content": "THW ban all media (such as music, films and videogames) which glorify misogyny.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Streitkultur Cup", + "year": "2013", + "format": "", + "content": "Do we need a third vote (Die Drittstimme).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Streitkultur Cup", + "year": "2013", + "format": "", + "content": "Should natural disasters and extreme weather in the future be named after politicians that are against combatting climate change?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Streitkultur Cup", + "year": "2013", + "format": "", + "content": "Should the state treat all religions equally?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Streitkultur Cup", + "year": "2013", + "format": "", + "content": "Should Germany boycott the Sochi Olympics?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BGU IV", + "year": "2013", + "format": "", + "content": "THBT Times Magazine should have chosen Miley Cyrus to be person of the year.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BGU IV", + "year": "2013", + "format": "", + "content": "TH, as the US, would abandon the Israeli-Palestinian Cause.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BGU IV", + "year": "2013", + "format": "", + "content": "THW wage war using only games fought via computers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BGU IV", + "year": "2013", + "format": "", + "content": "THBT governments should not regulate the use of any new currency.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BGU IV", + "year": "2013", + "format": "", + "content": "In memory of Nelson Mandela: The year is 1985, THS Paul Simon in breaking the cultural boycott of Apartheid South Africa (for the making of the future Graceland album in collaboration with black musicians).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BGU IV", + "year": "2013", + "format": "", + "content": "THBT Pope Francis as the head of the Catholic Church will end up causing more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2013", + "format": "", + "content": "THW forcibly relocate indigenous peoples where their presence prevents the extraction/utilization of valuable resources.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2013", + "format": "", + "content": "TH supports private ownership of 3D printers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2013", + "format": "", + "content": "TH regrets the branding of Burka Avenger as a feminist icon.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2013", + "format": "", + "content": "TH, as Pope Francis, would allow women to become priests.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2013", + "format": "", + "content": "THB, in times of economic crisis, economic bodies should (strategically) withhold information that may damage market confidence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2013", + "format": "", + "content": "TH welcomes the rise of art, music and film that celebrates lack of economic wealth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Welsh leg", + "year": "2013", + "format": "", + "content": "THW legalise euthanasia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Welsh leg", + "year": "2013", + "format": "", + "content": "THW provide financial incentives to individuals leading a vegetarian lifestyle.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Welsh leg", + "year": "2013", + "format": "", + "content": "THBT FIFA should reallocate the 2022 World Cup from Qatar to a country with a superior human rights record.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Welsh leg", + "year": "2013", + "format": "", + "content": "THBT major Hollywood studios should increase the number of lead roles for female villains substantially in their blockbuster films.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Welsh leg", + "year": "2013", + "format": "", + "content": "THBT the media should fabricate and publish positive economic stories during prolonged periods of economic recession.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2013", + "format": "", + "content": "THW aggressively fund art in public places, which depicts struggles on which there is no consensus and of which there are continuing consequences.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2013", + "format": "", + "content": "THW cut off development aid to countries which willfully neglect to combat terrorism within their own borders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2013", + "format": "", + "content": "THW freeze membership of sporting federations of nations that boycott sporting competitions (events, matches, tournaments etc.) for political reasons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2013", + "format": "", + "content": "THW end the prosecution of Troubles-related killings in Northern Ireland.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sheffield IV", + "year": "2013", + "format": "", + "content": "TH, as the United States, does not regret the dropping of the atomic bomb.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tournament of Champions", + "year": "2013", + "format": "", + "content": "This House would legalize the use of baby-boxes all around the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tournament of Champions", + "year": "2013", + "format": "", + "content": "THBT a world in which there is no more sexual instinct and reproduction is only in vitro and through similar technologies is a better world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tournament of Champions", + "year": "2013", + "format": "", + "content": "This House would grant immediate EU admission to regions like Scotland or Catalonia who choose to declare independence from countries that are already in the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tournament of Champions", + "year": "2013", + "format": "", + "content": "THW eliminate any legal or ethical limitations from the field of genetic research on improving the human body.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tournament of Champions", + "year": "2013", + "format": "", + "content": "THBT Romania should strengthen its relationship with China, even if that impacts its relationship with the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2013", + "format": "", + "content": "THBT children should be banned from attending religious services.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2013", + "format": "", + "content": "THBT the use of chemical weapons in a defensive capacity against enemy combatants should not be a war crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2013", + "format": "", + "content": "THW criminalize the possession and use of Bitcoins.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2013", + "format": "", + "content": "THW make government assistance to historically marginalized cultural groups contingent on policies to combat traditional gender inequality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2013", + "format": "", + "content": "THBT all universities should create separate career tracks for teaching and research.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2013", + "format": "", + "content": "THBT the NFL should issue automatic lifetime bans to players convicted of domestic violence or sexual assault.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2013", + "format": "", + "content": "THW require the state to compensate individuals who face criminal prosecution but are not found guilty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2013", + "format": "", + "content": "THBT Germany should renew the ban on the publication of Mein Kampf.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brandeis IV", + "year": "2013", + "format": "", + "content": "THBT the LGBT movement should not take a position on whether sexual preferences are a choice.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Centrale IV", + "year": "2013", + "format": "", + "content": "THW Allow athletes to compete in the gender category they self identify with.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Centrale IV", + "year": "2013", + "format": "", + "content": "THBT Hamid Karzai should sign the Bilateral Security Agreement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Centrale IV", + "year": "2013", + "format": "", + "content": "This house would allow the Roma to settle in autonomous communities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Centrale IV", + "year": "2013", + "format": "", + "content": "This house believes that developing countries should ban the entry of foreign supermarkets chains [added by me] into their markets.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Centrale IV", + "year": "2013", + "format": "", + "content": "Given that a trade off is required, THBT history education in post-conflict societies should focus on cohesion at the cost of truth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Centrale IV", + "year": "2013", + "format": "", + "content": "TH supports FEMEN.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund IV", + "year": "2013", + "format": "", + "content": "THBT Facebook, Google+,and other social media platforms should remove all content produced by extremist political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund IV", + "year": "2013", + "format": "", + "content": "TH welcomes the presence of gender-neutral schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund IV", + "year": "2013", + "format": "", + "content": "THBT is in China’s interest to shoot down foreign military aircrafts that violate the ADIZ.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund IV", + "year": "2013", + "format": "", + "content": "Assuming that the death penalty is in use, THW make all executions public.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund IV", + "year": "2013", + "format": "", + "content": "THBT Schools should raise the expectations of children beyond what they can realistically achieve.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund IV", + "year": "2013", + "format": "", + "content": "THBT the EU should materially support anti-Russian political movements in Eastern Europe and the former Soviet Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund IV", + "year": "2013", + "format": "", + "content": "TH supports armed vigilante groups in high crime areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2013", + "format": "", + "content": "THW ban the fur industry.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2013", + "format": "", + "content": "TH as Ukraine would join Russia led economic bloc rather than the EU free trade account.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2013", + "format": "", + "content": "THW in the countries that have laws prohibiting discriminatory and hateful language against various groups based on certain characteristics they have, grant overweight people the same protection like other vulnerable groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2013", + "format": "", + "content": "THW require police to wear miniature video cameras at all times whilst on duty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2013", + "format": "", + "content": "THBT decisions to allocate funding to scientific research programs should be taken solely by a group of professional scientists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2013", + "format": "", + "content": "TH, as a Russian woman, would rather live in the Soviet Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2013", + "format": "", + "content": "THBT Western Liberal Democracies should boycott the Russian Winter Olympics 2014 in Sochi.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw Open", + "year": "2013", + "format": "", + "content": "THW eject national sports teams from international competitions if their fans or players are found to have committed racist or fascist acts during matches.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw Open", + "year": "2013", + "format": "", + "content": "THBT in developed countries the minimum wage should guarantee a middle class lifestyle.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw Open", + "year": "2013", + "format": "", + "content": "THW stop all research into differences between the male and female brain.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw Open", + "year": "2013", + "format": "", + "content": "THBT Pope Francis should openly endorse radical left political parties and candidates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw Open", + "year": "2013", + "format": "", + "content": "THW only hold gay pride parades with the consent of the local community.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warsaw Open", + "year": "2013", + "format": "", + "content": "THW immediately lift all sanctions on Iran.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "English Cup", + "year": "2013", + "format": "", + "content": "THW classify all organized crime as terrorist organizations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "English Cup", + "year": "2013", + "format": "", + "content": "THBT the education system should promote expectations according to the students’ realistic potential, ability and social status.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "English Cup", + "year": "2013", + "format": "", + "content": "This house would hire police personnel in proportion to society’s demography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "English Cup", + "year": "2013", + "format": "", + "content": "THW, as a western liberal democracy, legalize paid surrogacy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "English Cup", + "year": "2013", + "format": "", + "content": "This house, as China, would legalize gay marriage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol ProAM", + "year": "2013", + "format": "", + "content": "THW not allow governments to electronically intercept communications without a warrant.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol ProAM", + "year": "2013", + "format": "", + "content": "THW prevent the media from publishing any personal details (such as race or social class) of criminals and suspects.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol ProAM", + "year": "2013", + "format": "", + "content": "TH, as the USA, would destroy its stockpile of smallpox.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol ProAM", + "year": "2013", + "format": "", + "content": "In proportion to under 30s population, THW reserve seats in parliament for 18-30 year olds.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol ProAM", + "year": "2013", + "format": "", + "content": "THW, as David Icke, dedicate the rest of its life to exposing the lizard people. (Info).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol ProAM", + "year": "2013", + "format": "", + "content": "THBT western liberal democracies should use any effective means at their disposal to uphold the human rights of women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2013", + "format": "", + "content": "THW allow individuals to sell their non-vital organs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2013", + "format": "", + "content": "THW legalise online child chat simulations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2013", + "format": "", + "content": "THW apply the same standards to the sale of mass surveillance technology as it does to the sale of arms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2013", + "format": "", + "content": "THS affirmative action policies targeted at women in business.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2013", + "format": "", + "content": "THBT Miley Cyrus is bad for feminism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nikolausturnier", + "year": "2013", + "format": "", + "content": "THW convicted criminals the options to choose corporal punishments over imprisonment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nikolausturnier", + "year": "2013", + "format": "", + "content": "You are a young, liberal, Turkish man in Turkey. Motion: THBT the ban on Islamic veils in public buildings should be abolished.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nikolausturnier", + "year": "2013", + "format": "", + "content": "It is Christmas. In otherwise pristine snow, the trackmarks of Santa Claus’ sleigh are visible. A policeman is walking around the field to savour the Christmas spirit and suddenly discovers a small booklet. It is Santa Claus’ list with no less than a complete list of all transgressions of everyone on the planet. The policeman immediately recognises the potential power of such a list. In the back of the booklet is Santa Claus’ address. Motion: THW destroy the list.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nikolausturnier", + "year": "2013", + "format": "", + "content": "THW introduce a 30-hour work week.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schroeter Cup", + "year": "2013", + "format": "", + "content": "THW set one common minimum wage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schroeter Cup", + "year": "2013", + "format": "", + "content": "THW ban circumcision of minors.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schroeter Cup", + "year": "2013", + "format": "", + "content": "THW ban pornography and would make it taboo (verb tabuisieren).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schroeter Cup", + "year": "2013", + "format": "", + "content": "THW only allow European firms to sell weapons in the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schroeter Cup", + "year": "2013", + "format": "", + "content": "THW create a film rating for movies that do not pass the Bechdel-Test.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2013", + "format": "", + "content": "THW introduce a sin tax on all meat products.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2013", + "format": "", + "content": "THBT governments should not provide rebuilding funds to citizens above the poverty line in known natural disaster areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2013", + "format": "", + "content": "THW establish an easily performed procedure for individuals to delete the entirety of their internet and social media footprint.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2013", + "format": "", + "content": "TH supports the Ukrainian government’s decision to make a trade deal with Russia rather than seek integration with the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2013", + "format": "", + "content": "THW return all ill-gotten artworks and valuable historical artefacts to the communities of their origin.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2013", + "format": "", + "content": "THW not give jail time to criminals who do not pose an ongoing violent threat to society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2013", + "format": "", + "content": "THBT violent protest is a legitimate strategy in democratic societies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2013", + "format": "", + "content": "TH support unlimited human body enhancement in all areas of life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2013", + "format": "", + "content": "THBT once artists earn enough to constitute a comfortable wage, they have a duty to make their work freely available.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2013", + "format": "", + "content": "THBT Libya should repeal its ban on senior members of the Gaddaffi Regime (military and civil) from holding positions in government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2013", + "format": "", + "content": "THW force violent offenders to undergo the Ludovico technique.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2013", + "format": "", + "content": "THBT developing countries should use policies such as permits to restrict rural to urban migration.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2013", + "format": "", + "content": "THW allow Pro-Life organisations to pay women currently considering having an abortion to carry the pregnancy to term.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2013", + "format": "", + "content": "TH supports the actions of Anonymous and other such vigilante groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2013", + "format": "", + "content": "Assuming you would not be found out, in the event of a terrorist attack on US soil, committed by Islamist extremists THW fabricate evidence that attack was committed by dominant ethnic and socio-economic group, e.g. white Anglo-Saxons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament", + "year": "2013", + "format": "", + "content": "THW impose a tax on men to reduce the gender pay gap.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament", + "year": "2013", + "format": "", + "content": "THBT EU nations should stop cooperating with the USA on intelligence matters.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament", + "year": "2013", + "format": "", + "content": "THW not watch pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament", + "year": "2013", + "format": "", + "content": "THW pay reparations to European Roma.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament", + "year": "2013", + "format": "", + "content": "THBT all corporations should become cooperatives owned and operated by the workers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament", + "year": "2013", + "format": "", + "content": "THB the dead are the property of the state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament", + "year": "2013", + "format": "", + "content": "THW not tax \"bitcoin\" transactions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament", + "year": "2013", + "format": "", + "content": "THW apply universal jurisdiction to crimes against the environment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament", + "year": "2013", + "format": "", + "content": "THB that the recent Geneva agreement with Iran will fail.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Iron Man tournament", + "year": "2013", + "format": "", + "content": "THBT our legal system should neither regulate nor judge behaviour that takes place solely in virtual online worlds like “Second Life” and leave the making of rules to their manufacturers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Iron Man tournament", + "year": "2013", + "format": "", + "content": "THBT China should prioritise social justice over economic growth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Iron Man tournament", + "year": "2013", + "format": "", + "content": "THW allow businesses to pay employees who agree not to have children more in wages.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Iron Man tournament", + "year": "2013", + "format": "", + "content": "THW allow sodomie (intercourse with animals).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Iron Man tournament", + "year": "2013", + "format": "", + "content": "A ship sinks at the high seas. Three sailors and the cabin boy survive in a lifeboat. There is no land in sight and the men are exhausted. To stay alive, the sailors kill and eat the cabin boy against his will. Days later, the lifeboat is found and brought to land. The sailors survived thanks to the reinforcement brought by eating the cabin boy. The authorities hear of the tale and the sailors are brought before a court where a jury will give a verdict. Motion: TH, as the jury, would vote against a conviction.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2013", + "format": "", + "content": "THW, assuming it were feasible to enforce, support a global inheritance tax of 100% on all cash and assets beyond the first €5000 (and substantial taxes on high-value gifts during one's lifetime).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2013", + "format": "", + "content": "THBT the citizens of countries under military occupation of a western liberal democracy should be granted the right to vote in the elections of that occupying state!.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2013", + "format": "", + "content": "THW give men more paid parental leave than women and force them to take it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2013", + "format": "", + "content": "THW allow people (including companies) to give the police money in exchange for new or increased efforts in a specified area of legitimate law enforcement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2013", + "format": "", + "content": "THW place a sin tax to low-brow entertainment in order to subsidize high-brow art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2013", + "format": "", + "content": "THW appoint a group of relevant charities (e.g. Environmental charities) to cast votes in general elections on behalf of future citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2013", + "format": "", + "content": "You are a dutch person. THBT you should campaign against Zwarte Piet and should routinely condemn it as a racist institution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork Invitational", + "year": "2013", + "format": "", + "content": "THBT foreign visitors to Islamic countries should dress and act according to local sensibilities in public even if not obliged to by law.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork Invitational", + "year": "2013", + "format": "", + "content": "THW never allow prisons to force-feed detainees on hunger strike.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork Invitational", + "year": "2013", + "format": "", + "content": "TH supports targeted advertising based on gender.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork Invitational", + "year": "2013", + "format": "", + "content": "THBT suicide bombing is a legitimate tactic of warfare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Toernooi", + "year": "2013", + "format": "", + "content": "THW remove all restrictions on euthanasia (such as “hopeless and unbearable” suffering).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Toernooi", + "year": "2013", + "format": "", + "content": "THW abolish the right to remain silent (verschoningsrecht) for clergy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Toernooi", + "year": "2013", + "format": "", + "content": "THW impose strong political and economic sanctions on tax havens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Toernooi", + "year": "2013", + "format": "", + "content": "TH, as parents, would raise its children non-gendered.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Toernooi", + "year": "2013", + "format": "", + "content": "THW, as the US, continue to gather information about non-citizens on a large scale.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Toernooi", + "year": "2013", + "format": "", + "content": "THW not admit immigrants who actively (strongly?) oppose the norms of the host society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ProAm_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Toernooi", + "year": "2013", + "format": "", + "content": "THW replace all income taxes with consumption taxes that become proportionally higher as the purchased goods become less essential.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Toernooi", + "year": "2013", + "format": "", + "content": "TH would create a substantial salary for those who take on caretaker roles for family, friends or neighbours (DK vervangt het mantelzorgcompliment door een substantieel salaris).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "THW ban the advertising of financial products that entail an obligation of consumer debt.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "THBT domestically, Margaret Thatcher’s premiership did more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "THW allow pro-immigration charities to sue politicians and media outlets that defame ’immigrants’.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "THW tax earnings over £1million by 75% but allow individuals to decide how the government spends the additional revenue generated by this income.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "TH welcomes the decline of US-led humanitarian interventions without international consensus.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "THBT all main political parties should implement a cross party political scheme to use all-women shortlists to get more women into parliament until gender parity is reached.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tübingen Herbst Debatten", + "year": "2013", + "format": "", + "content": "Should private kindergartens and schools be abolished?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tübingen Herbst Debatten", + "year": "2013", + "format": "", + "content": "Should participants in the Olympics be allowed to publicly express their political opinions?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tübingen Herbst Debatten", + "year": "2013", + "format": "", + "content": "Should the morning after pill be available without doctor’s recipe?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tübingen Herbst Debatten", + "year": "2013", + "format": "", + "content": "Should Edward Snowden get asylum in Germany?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yorkshire Novices", + "year": "2013", + "format": "", + "content": "THBT it is legitimate for environmental campaign groups to use ecoterrorism to achieve their goals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yorkshire Novices", + "year": "2013", + "format": "", + "content": "TH regrets the annual commemoration of past wars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yorkshire Novices", + "year": "2013", + "format": "", + "content": "THW implement total surveillance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yorkshire Novices", + "year": "2013", + "format": "", + "content": "THBT artists, entertainers, and musicians should not comment on politics outside of their artistic creations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yorkshire Novices", + "year": "2013", + "format": "", + "content": "THBT Western liberal democracies have a duty to militarily intervene in conflicts where large scale human rights abuses are occurring.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yorkshire Novices", + "year": "2013", + "format": "", + "content": "THW fabricate and publicise evidence that high ranking religious figures that claim homosexuality to be a sin engage in homosexual acts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Frankfurt", + "year": "2013", + "format": "", + "content": "THW make purchasing sexual services punishable by law. Info: Adults over 18 are allowed to prostitute themselves, get social security and sue for compensations. Bans can be imposed against prostitution in specific areas or at specific times. Pimping is not illegal as long as the work environment offered is suitable and the prostitute is not exploited.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Frankfurt", + "year": "2013", + "format": "", + "content": "THBT religion is redundant.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Frankfurt", + "year": "2013", + "format": "", + "content": "THW return artworks stolen or expropriated by the Nazis, without regard to property rights, laws and statutes of limitation that might block such a return (info and here).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Frankfurt", + "year": "2013", + "format": "", + "content": "THW go on a treasure hunt.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Frankfurt", + "year": "2013", + "format": "", + "content": "THW ban temp agency contracting (Leiharbeit, Arbeitnehmerüberlassung, Zeitarbeit, Mitarbeiterüberlassung oder Personalleasing).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Frankfurt", + "year": "2013", + "format": "", + "content": "THW spread asylum seekers over EU countries on the basis of their relative population sizes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Frankfurt", + "year": "2013", + "format": "", + "content": "THW abolish the federalist system in Germany.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian BP Championships (@ McMaster University)", + "year": "2013", + "format": "", + "content": "THW implement a lower rate of income tax for women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian BP Championships (@ McMaster University)", + "year": "2013", + "format": "", + "content": "THW make it a criminal offence to materially and substnatially enable the substance abuse problems of an addict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian BP Championships (@ McMaster University)", + "year": "2013", + "format": "", + "content": "THBT Canada should have boycotted the Commonwealth meeting in Sri Lanka.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian BP Championships (@ McMaster University)", + "year": "2013", + "format": "", + "content": "THO prenatal testing for mental disabilities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian BP Championships (@ McMaster University)", + "year": "2013", + "format": "", + "content": "THBT Walmart is good for America.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian BP Championships (@ McMaster University)", + "year": "2013", + "format": "", + "content": "THW enact good Samaritan laws.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Tiebreaker_Top", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian BP Championships (@ McMaster University)", + "year": "2013", + "format": "", + "content": "THBT the ICC should not have pursued any charges related to the 2006 post-election violence in Kenya.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Canadian BP Championships (@ McMaster University)", + "year": "2013", + "format": "", + "content": "TH regrets the fat pride movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Novice finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schwarzwald Cup", + "year": "2013", + "format": "", + "content": "THW ban all polls (predicting election results).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schwarzwald Cup", + "year": "2013", + "format": "", + "content": "TH rejects any policy that punishes families for having more than one child.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schwarzwald Cup", + "year": "2013", + "format": "", + "content": "THW subsidise sex workers visits for severely handicapped persons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schwarzwald Cup", + "year": "2013", + "format": "", + "content": "THW always execute those sentenced to death publicly.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schwarzwald Cup", + "year": "2013", + "format": "", + "content": "As a homosexual person in a very homophobic country, THW emigrate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schwarzwald Cup", + "year": "2013", + "format": "", + "content": "THBT too many high school graduates study (go on to university).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall", + "year": "2013", + "format": "", + "content": "THBT the (same-sex couples) Marriage Bill 2013 should remove the right of religious institutions to refuse to perform same-sex marriages.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall", + "year": "2013", + "format": "", + "content": "THBT past colonial empires should pay reparations to their former colonies who are still classed as developing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall", + "year": "2013", + "format": "", + "content": "THBT feminist political activists should form a separate political party based on feminist ideology, rather than joining existing parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall", + "year": "2013", + "format": "", + "content": "THW Pay Additional Benefits to Families on Welfare Whose Children are Excelling in School.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall", + "year": "2013", + "format": "", + "content": "THBT America should refuse to engage with any attempts to end cyber warfare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall", + "year": "2013", + "format": "", + "content": "TH, as Sherlock Holmes, Would accept the henchman’s offer.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2013", + "format": "", + "content": "THW give primates and cetaceans the same rights to life, freedom from physical harm and freedom of movement as humans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2013", + "format": "", + "content": "THBT developed countries should set maximum rents for residential properties in large urban centres.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2013", + "format": "", + "content": "THBT despite the expressed wishes of the Pakistani government, the United States should continue to target the leaders of Tehrik-i-Talibani (Pakistani Taliban).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2013", + "format": "", + "content": "THW break up banks like Goldman Sachs, JP Morgan Chase and HSBC, that are deemed \"too big to fail\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2013", + "format": "", + "content": "THW ban religious charities from engaging in proselytisation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2013", + "format": "", + "content": "THW prevent those who deny climate change from seeking political office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2013", + "format": "", + "content": "THBT it should be the policy of the US to conduct all of its military interventions unilaterally.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2013", + "format": "", + "content": "THBT the Republican and Democratic parties should select congressional, senate and presidential candidates through a vote by the party leadership rather than through primaries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2013", + "format": "", + "content": "Instead of creating a Jewish state in the British Mandate of Palestine, with the benefit of hindsight THW have created a Jewish state in Germany.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2013", + "format": "", + "content": "THBT it is in the West's interests for Assad to decisively win the Syrian civil war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2013", + "format": "", + "content": "THW provide mobile teachers for the compulsory education of children in travelling communities (e.g. Roma and Irish travellers).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2013", + "format": "", + "content": "THBT developing countries should collectivelly agree to radically redistributive tax policies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2013", + "format": "", + "content": "THW ban the gender testing of athletes in sports.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2013", + "format": "", + "content": "THW require major polluters to open their borders to environmental refugees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2013", + "format": "", + "content": "THBT national war memorials should commemorate the casualties on all sides of the conflict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2013", + "format": "", + "content": "THBT political parties should adopt non-hierarchical organisational structures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2013", + "format": "", + "content": "THBT liberal democracies should cut all economic and military ties with the Kingdom of Saudi Arabia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2013", + "format": "", + "content": "THBT when courts sentence offenders, they should give considerable weight to the views of the victims.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2013", + "format": "", + "content": "THW, as a liberal democracy, restrict coverage of small-scale terrorist attacks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2013", + "format": "", + "content": "THBT identity-based social movements should not include in their movements allies who are not part of the identity group in question.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2013", + "format": "", + "content": "THBT the US should dissolve its military capabilities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UK Debate Challenge", + "year": "2013", + "format": "", + "content": "THBT feminists should oppose restrictions on the wearing of the burkha and the hijab.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UK Debate Challenge", + "year": "2013", + "format": "", + "content": "THW remove all non-military sanctions on Iran.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UK Debate Challenge", + "year": "2013", + "format": "", + "content": "TH regrets the portrayal of the developing world in the fundraising campaigns of charitable organisations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UK Debate Challenge", + "year": "2013", + "format": "", + "content": "THBT state schools should instil in children the belief that anyone can succeed through hard work, regardless of their background.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UK Debate Challenge", + "year": "2013", + "format": "", + "content": "THBT artists from dominant cultural majorities should not seek to portray minority cultures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UK Debate Challenge", + "year": "2013", + "format": "", + "content": "You are a government employee who has found evidence that your state is carrying out actions you personally believe to be gravely immoral. You have no cause to believe these actions are illegal. Motion: THW leak the evidence directly to the press.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UK Debate Challenge", + "year": "2013", + "format": "", + "content": "THW abolish private property.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UK Debate Challenge", + "year": "2013", + "format": "", + "content": "THBT The US should end the War on Terror.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Debatijada Open", + "year": "2013", + "format": "", + "content": "THBT parents should not tell their adopted children that they are adopted.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Debatijada Open", + "year": "2013", + "format": "", + "content": "THBT every student living in the EU should spend one year studying in the country other than the one he or she is born or is a national of.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Debatijada Open", + "year": "2013", + "format": "", + "content": "THW show only movies that pass the bechdel test (with info).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Debatijada Open", + "year": "2013", + "format": "", + "content": "THBT animal suffering should not be an obstacle for satisfying societal needs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Debatijada Open", + "year": "2013", + "format": "", + "content": "THW ban political parties that use ethnicity as basis for their political agenda.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2013", + "format": "", + "content": "THW legalize all drugs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2013", + "format": "", + "content": "THBT it is an acceptably policy for the U.S. to spy on leaders of allied states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2013", + "format": "", + "content": "THBT the LGBT movement should oppose gay bars that ban entrance to straight customers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2013", + "format": "", + "content": "THBT the world should focus on adapting to the effects of climate change instead of trying to avert it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2013", + "format": "", + "content": "TH regrets the creation of the Eurozone.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2013", + "format": "", + "content": "THW prevent people from signing up for a one-way mission to Mars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2013", + "format": "", + "content": "THW ban cosmetic surgery designed to alter one's racial appearance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Partial_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2013", + "format": "", + "content": "THBT the state should aggressively discourage university attendance and promote college.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Guindon Cup (University of Ottawa)", + "year": "2013", + "format": "", + "content": "THBT a person of super genius intelligence should transform themselves into someone of average intelligence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna Freshers", + "year": "2013", + "format": "", + "content": "THW not publicly fund universities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna Freshers", + "year": "2013", + "format": "", + "content": "THBT individuals with bad personal lifestyles (that influence their health) should pay more for their health insurance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna Freshers", + "year": "2013", + "format": "", + "content": "In the European Union, asylum seekers can only apply for asylum in the country they first enter. They cannot reapply nor be reallocated to another EU country. Motion: THBT the EU should divide up asylum seekers amongst its member states proportional to member states' GDP per cap.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna Freshers", + "year": "2013", + "format": "", + "content": "THBT women activists in Saudi Arabia should not drive cars in their protest against the ban.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna Freshers", + "year": "2013", + "format": "", + "content": "THBT individuals should pass a parenting test before having children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna Freshers", + "year": "2013", + "format": "", + "content": "TH supports the US continuing its surveillance practices on global political leaders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2013", + "format": "", + "content": "THBT in criminal court cases the jury should be comprised of individuals from the same racial and socio-economic background as the defendant.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2013", + "format": "", + "content": "THW give the public the power to pardon whistleblowers through a referendum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2013", + "format": "", + "content": "THBT that the International Criminal Court should not issue indictments against individuals involved in ongoing conflicts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2013", + "format": "", + "content": "THW not allow individuals to opt into a one-way mission to Mars with the Mars One Project.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2013", + "format": "", + "content": "THBT energy security is a legitimate reason for military action.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2013", + "format": "", + "content": "THW hold parents criminally liable for the repeat offences of their children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2013", + "format": "", + "content": "THW pay drug addicts to be permanently sterilised.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2013", + "format": "", + "content": "TH regrets the creation of a moral and legal distinction between the use of chemical weapons and conventional weapons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Welsh Novices", + "year": "2013", + "format": "", + "content": "THW Legalise licensed brothels.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Welsh Novices", + "year": "2013", + "format": "", + "content": "THW, as the EU, suspend the membership of any nation that elects extremist parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Welsh Novices", + "year": "2013", + "format": "", + "content": "THW ban all resit exams.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Welsh Novices", + "year": "2013", + "format": "", + "content": "The Russian state systematically oppresses its LGBTQI+ community: Homosexual couples can be prosecuted for displaying their sexuality and the police often refuse to prevent violence towards LGBTQI+ people. Motion: TH, as a heterosexual winter Olympian, would not attend the Sochi Winter Olympics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Welsh Novices", + "year": "2013", + "format": "", + "content": "THBT the police should have unrestricted access to the personal online data of everybody, including email, web history and private content on social media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2013", + "format": "", + "content": "THS medical tourism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2013", + "format": "", + "content": "THBT conscription should be a war crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2013", + "format": "", + "content": "THS the actions of the Gulabi gang.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2013", + "format": "", + "content": "THW not assign a sex to babies born with ambiguous genitalia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2013", + "format": "", + "content": "THW abolist Canadian content requirements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2013", + "format": "", + "content": "In states with persistent ethnic conflict, THB governments should censor works of historical fiction that portray oppressed minority groups in a negative way.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2013", + "format": "", + "content": "THB the state should stop incentivizing monogamous relationships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Chancellor's Cup (Queen's University)", + "year": "2013", + "format": "", + "content": "In 1947, Otto Frank subimtted his daughter's diary for publication. Particularly personal passages wherein Anne discussed her emerging sexuality were removed from the original manuscript. The diary was later published in its complete form. THW not have published Anne Frank's unabridged diary.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2013", + "format": "", + "content": "THW ban intl (cross border) commercial surrogacy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2013", + "format": "", + "content": "THW, as a parent of a young woman, advise her to drink responsibly to reduce the risk of them being sexually assaulted.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2013", + "format": "", + "content": "That college athletes in the Us should be paid as professionals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2013", + "format": "", + "content": "THW only give funding to indigenous groups that are democratically organised.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2013", + "format": "", + "content": "This house would not prosecute individuals for pirating entertainment media for their own use.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2013", + "format": "", + "content": "This house believes that the west should forgive debt owed by governments of developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Open", + "year": "2013", + "format": "", + "content": "THBT same sex couples should be allowed to adopt children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Open", + "year": "2013", + "format": "", + "content": "THW ban smoking.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Open", + "year": "2013", + "format": "", + "content": "THW resolve the Syrian refugee crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Open", + "year": "2013", + "format": "", + "content": "THB in the market economy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Open", + "year": "2013", + "format": "", + "content": "THW remove unemployment benefits.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Open", + "year": "2013", + "format": "", + "content": "THB in international military intervention in foreign countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Open", + "year": "2013", + "format": "", + "content": "THB in the student protests.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2013", + "format": "", + "content": "THW provide free heroin for heroin addicts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2013", + "format": "", + "content": "THW allow legislatures to override constitutional bills of rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2013", + "format": "", + "content": "THBT the Palestininan authority should concede.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2013", + "format": "", + "content": "THS austerity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2013", + "format": "", + "content": "THW pay developing countries to not exploit natural resources in environmentally sensitive regions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2013", + "format": "", + "content": "THBT Greece should ban the Golden Dawn.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC IV", + "year": "2013", + "format": "", + "content": "THBT colonial powers should pay reparations for colonialism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Novice Competition", + "year": "2013", + "format": "", + "content": "THW allow those convicted of non-violent, -sexual, -serious crimes to serve sentences in the military, rather than prison.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Novice Competition", + "year": "2013", + "format": "", + "content": "THBT Facebook and other social media should not host images off beheadings and acts of brutal violence on their sites.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Novice Competition", + "year": "2013", + "format": "", + "content": "THW prohibit tourism to countries with a poor record of protecting human rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Novice Competition", + "year": "2013", + "format": "", + "content": "TH regrets the existence of \"men in power\" or \"men’s rights\" groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SDA Novice Competition", + "year": "2013", + "format": "", + "content": "THBT the beauty industry has done more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Masters", + "year": "2013", + "format": "", + "content": "THBT governments should make children’s vaccinations obligatory.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Masters", + "year": "2013", + "format": "", + "content": "THBT former colonising countries should pay substantial reparations to the countries they colonised.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Masters", + "year": "2013", + "format": "", + "content": "THBT the state should financially incentivise higher-educated citizens to have children before their 25th birthday.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Masters", + "year": "2013", + "format": "", + "content": "THBT members of parliament should be appointed by lottery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2013", + "format": "", + "content": "THW ban unpaid internships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2013", + "format": "", + "content": "THW boycott the FIFA World Cup in Qatar.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2013", + "format": "", + "content": "TH, as the Roman Catholic Church, would excommunicate political leaders who fail to advocate nuclear disarmament.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2013", + "format": "", + "content": "THW construct brothels on military bases.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2013", + "format": "", + "content": "THB schools in the USA should teach rap lyrics as part of their core English literature curricula.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Middle Man tournament", + "year": "2013", + "format": "", + "content": "THW not allow players born outside of the state to play for the national teams of that state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Middle Man tournament", + "year": "2013", + "format": "", + "content": "THW remove all sanctions against Iran.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Middle Man tournament", + "year": "2013", + "format": "", + "content": "Granted that technology exist, THW not use technology to get superpowers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Middle Man tournament", + "year": "2013", + "format": "", + "content": "THW use public referendum to decide whether to give amnesty to whistleblowers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Middle Man tournament", + "year": "2013", + "format": "", + "content": "THW only subsidise art that is understandable to average voter.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Middle Man tournament", + "year": "2013", + "format": "", + "content": "THBT its legitimate for women to use sex as a tool for advancing in life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Middle Man tournament", + "year": "2013", + "format": "", + "content": "The year is 1389, THW not go to Kosovo.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Middle Man tournament", + "year": "2013", + "format": "", + "content": "THBT revolution is inevitable.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAMDA Novice Cup", + "year": "2013", + "format": "", + "content": "In countries with a state alternative, THW ban private healthcare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAMDA Novice Cup", + "year": "2013", + "format": "", + "content": "THW replace income tax with a wealth tax.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAMDA Novice Cup", + "year": "2013", + "format": "", + "content": "THW abolish all immigration restrictions other than those required for national security.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAMDA Novice Cup", + "year": "2013", + "format": "", + "content": "THW ban the production and consumption of pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAMDA Novice Cup", + "year": "2013", + "format": "", + "content": "THW make conscription a war crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAMDA Novice Cup", + "year": "2013", + "format": "", + "content": "THW ban the slaughter and consumption of non-human animals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Strathclyde Presidents Cup", + "year": "2013", + "format": "", + "content": "THBT party nominees for UK general elections should be selected through open primaries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Strathclyde Presidents Cup", + "year": "2013", + "format": "", + "content": "THBT the feminist movement should support monogamy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Strathclyde Presidents Cup", + "year": "2013", + "format": "", + "content": "TH: supports the integration of armed rebel groups into the DRC army.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Strathclyde Presidents Cup", + "year": "2013", + "format": "", + "content": "THBT the entire UK housing stock should be owned by the state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Strathclyde Presidents Cup", + "year": "2013", + "format": "", + "content": "TH: as Nick Clegg (with the benefit of hindsight) would not have joined a coalition with the Conservatives in 2010.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2013", + "format": "", + "content": "THW make casinos and bookmakers liable for the debt of problem gamblers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2013", + "format": "", + "content": "THW Allow prisoners to run for elected office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2013", + "format": "", + "content": "This House would force the media to display, promote and report women’s sport equally to men’s sport.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2013", + "format": "", + "content": "THBT the government should assist physically healthy people in the act of committing suicide.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2013", + "format": "", + "content": "THBT Western governments should renounce democratization of developing states as a foreign policy objective.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2013", + "format": "", + "content": "THBT, on balance, the internet has been harmful to journalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McMaster Pro-Am", + "year": "2013", + "format": "", + "content": "THW allow violent offenders to opt in, at a judges discretion, to the Ludovico technique as a substitution for jail time.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Turku Open", + "year": "2013", + "format": "", + "content": "THW make welfare payments conditional on recipients engaging in full-time community service.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Turku Open", + "year": "2013", + "format": "", + "content": "THW forcibly remove the children of Roma parents who refuse to integrate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Turku Open", + "year": "2013", + "format": "", + "content": "THBT professional football clubs should be forced to field the majority of players from their local community.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Turku Open", + "year": "2013", + "format": "", + "content": "THBT Syria would be better off if Assad won the civil war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Turku Open", + "year": "2013", + "format": "", + "content": "THW replace parliamentary elections with a lottery system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Turku Open", + "year": "2013", + "format": "", + "content": "THBT the Spanish Central Government should allow Catalonia a referendum for independence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Turku Open", + "year": "2013", + "format": "", + "content": "TH supports the falsification of historical textbooks in order to teach moral outcomes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Vice President’s Cup", + "year": "2013", + "format": "", + "content": "THW, assuming it was technologically possible, replace all human soldiers on the battlefield with robots.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Vice President’s Cup", + "year": "2013", + "format": "", + "content": "THW create quotas for male workers in female-dominated professions such as teaching and nursing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Vice President’s Cup", + "year": "2013", + "format": "", + "content": "THBT that the EU should impose sanctions on Hungary if the Jobbik party takes office after the upcoming national election.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Vice President’s Cup", + "year": "2013", + "format": "", + "content": "THW support the use of violent protest.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Vice President’s Cup", + "year": "2013", + "format": "", + "content": "THBT the Black rights movement should promote black superiority.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Vice President’s Cup", + "year": "2013", + "format": "", + "content": "TH, as the ICC, would never bring cases against incumbent heads of states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Vice President’s Cup", + "year": "2013", + "format": "", + "content": "THW ban all religions from actively seeking to convert non-believers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Novice Cup", + "year": "2013", + "format": "", + "content": "THW only imprison criminals who pose a continuing threat to society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Novice Cup", + "year": "2013", + "format": "", + "content": "THW boycott the 2014 Sochi Winter Olympics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Novice Cup", + "year": "2013", + "format": "", + "content": "THB the state should fund free access to museums, art exhibitions and other cultural attractions for social welfare recipients.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Novice Cup", + "year": "2013", + "format": "", + "content": "THBT countries should ensure that their militaries are roughly proportionally representative of the diversity of religion, income & race of their populations and that they should, where necessary, use conscription to achieve this.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Novice Cup", + "year": "2013", + "format": "", + "content": "THBT Rolling Stone should not have portrayed Dzhokhar Tsarnaev in a sympathetic manner.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Simpsons Open", + "year": "2013", + "format": "", + "content": "THB there are no good wars with the following exceptions: the American Revolution, World War 2 and the Star Wars Trilogy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Simpsons Open", + "year": "2013", + "format": "", + "content": "TH, deep down, secretly longs for a cold hearted Republican to lower taxes, brutalise criminals and rule you like a king.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Simpsons Open", + "year": "2013", + "format": "", + "content": "THBT it can trust the President of Cuba.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Simpsons Open", + "year": "2013", + "format": "", + "content": "THBT God has no place within these walls - just like facts have no place within organised religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Simpsons Open", + "year": "2013", + "format": "", + "content": "TH can't seriously want to ban alcohol. It tastes great, makes women appear more attractive and makes a person virtually invulnerable to alcohol.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2013", + "format": "", + "content": "THW ban anyone with a criminal record worth 2+ years in prison from running for political office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2013", + "format": "", + "content": "THBT city-states are a better political unit than nation-states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2013", + "format": "", + "content": "THW ban conversion therapy to \"cure\" homosexuality (assuming the therapy has a 10% chance of success).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2013", + "format": "", + "content": "THBT no further research should be done on the creation of Lethal Autonomous Robots.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2013", + "format": "", + "content": "THBT copyright should expire on the death of the author/artist.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2013", + "format": "", + "content": "THBT the European Union should prioritise unemployment over further austerity measures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2013", + "format": "", + "content": "TH, as Malala, would kill him.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2013", + "format": "", + "content": "TH supports the reclamation of the word “slut”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2013", + "format": "", + "content": "THBT it is legitimate to kill civilians to reach military objectives.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Debates de Lisboa", + "year": "2013", + "format": "", + "content": "THW close the military academy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Debates de Lisboa", + "year": "2013", + "format": "", + "content": "THBT it is better for Egypt to get secular authoritarian leadership than a democratic government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Debates de Lisboa", + "year": "2013", + "format": "", + "content": "TH, being a single woman, would sleep with their boss if they knew it would lead to a career rise.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Debates de Lisboa", + "year": "2013", + "format": "", + "content": "TH regrets the Portuguese decolonisation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Debates de Lisboa", + "year": "2013", + "format": "", + "content": "In light of the right to representative democracy, TH defends the fact that independent candidates compete.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US National Open", + "year": "2013", + "format": "", + "content": "THW bail out Detroit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US National Open", + "year": "2013", + "format": "", + "content": "THS the force feeding of incarcerated hunger strikers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US National Open", + "year": "2013", + "format": "", + "content": "THW eliminate adoption preference based on race and ethnicity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US National Open", + "year": "2013", + "format": "", + "content": "THBT the government should not promote home ownership.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US National Open", + "year": "2013", + "format": "", + "content": "THBT US elected officials should not be subject to recall elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US National Open", + "year": "2013", + "format": "", + "content": "THBT individuals displaced by a conflict should have a right to emigrate to any country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US National Open", + "year": "2013", + "format": "", + "content": "THBT individuals should not be permitted to represent themselves at trial.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US National Open", + "year": "2013", + "format": "", + "content": "THBT governments should establish methods to provide unconditional cash transfers to the poor.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US National Open", + "year": "2013", + "format": "", + "content": "THBT jury trials do more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "US National Open", + "year": "2013", + "format": "", + "content": "THW eliminate inheritance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EBS Open", + "year": "2013", + "format": "", + "content": "THW make EU voting compulsory.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EBS Open", + "year": "2013", + "format": "", + "content": "You are a 19 year old boy who just finished his Abitur. As this boy, THW join the Bundeswehr.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EBS Open", + "year": "2013", + "format": "", + "content": "THW ban private Universities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EBS Open", + "year": "2013", + "format": "", + "content": "THW grant all ethnic Germans a full right of return.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EBS Open", + "year": "2013", + "format": "", + "content": "THW place pictures of poverty on all luxury goods.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Academy Open", + "year": "2013", + "format": "", + "content": "THW no longer arrest or prosecute individual members of drug gangs operating in highly violent areas if gang leaders agree to halt all turf wars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Academy Open", + "year": "2013", + "format": "", + "content": "THW suspend all regulation regarding environmental protection laws and policies during prolonged periods of economic recession.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Academy Open", + "year": "2013", + "format": "", + "content": "TH regrets that in the case of SGP vs. The Netherlands the European Court of Human Rights ruled in favour of The Netherlands (forcing the SGP to allow women to take office within the party).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Academy Open", + "year": "2013", + "format": "", + "content": "THBT the International Criminal Court should hire private military contractors to arrest individuals who refuse to surrender after an indictment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Academy Open", + "year": "2013", + "format": "", + "content": "TH Welcomes the rise of online news media at the expense of traditional journalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Academy Open", + "year": "2013", + "format": "", + "content": "THBT schools should instill unrealistically high expectations in students from lower-socio economic backgrounds.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Academy Open", + "year": "2013", + "format": "", + "content": "THBT the Israeli LBGT-movement should oppose pink-washing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Academy Open", + "year": "2013", + "format": "", + "content": "THBT \"I was just following orders\" is a legitimate defence in cases of war crimes and crimes against humanity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2013", + "format": "", + "content": "THB that teachers of history should deliberately overemphasize the contributions of marginalized groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2013", + "format": "", + "content": "THBT for certain criminal offenses, torture is a just punishment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2013", + "format": "", + "content": "THBT oil exporting Islamic states should enact embargoes against states that pass laws discriminating against Muslims.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2013", + "format": "", + "content": "THW require all low wage employees of large corporations to be unionized.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2013", + "format": "", + "content": "THS the overthrow of democratically elected, authoritarian heads of state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2013", + "format": "", + "content": "THBT individuals should experiment with mind altering hallucinogenic drugs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2013", + "format": "", + "content": "THBT it would be principally just for a state that is unable to provide a social safety net to allow a greatly impoverished individual to sell themselves into slavery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2013", + "format": "", + "content": "THBT countries should be required to post territory as collateral to receive IMF bailout funds.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Yale IV", + "year": "2013", + "format": "", + "content": "In cases where individuals are convicted of leaking state secrets, THW allow their convictions to be nullified by a national referendum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2013", + "format": "", + "content": "THW boycott the Russian Winter Olympics 2014 in Sochi.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2013", + "format": "", + "content": "THBT British national curricula should portray a unanimously and graphically negative account of the impact of British colonialism on its foreign subjects.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2013", + "format": "", + "content": "THBT Rockstar Games should make the lead protagonist of the next instalment of the GTA series female.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2013", + "format": "", + "content": "TH supports aggressive Palestinian protest (such as property destruction) in illegal Israeli settlements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2013", + "format": "", + "content": "THB President Obama should grant Chelsea Manning a presidential pardon.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2013", + "format": "", + "content": "THW restrict the press from all speculation and reporting on the mental health of criminals and suspected criminals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2013", + "format": "", + "content": "THB that feminists should adopt the cause of anti-capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gutenberg Cup", + "year": "2013", + "format": "", + "content": "Should the Gauls end their resistance to the Romans?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gutenberg Cup", + "year": "2013", + "format": "", + "content": "Should we create a common sanctuary/reservation for hipsters, zombies, former FDP politicians and stranded aliens?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gutenberg Cup", + "year": "2013", + "format": "", + "content": "Should sex become olympic?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gutenberg Cup", + "year": "2013", + "format": "", + "content": "Should the long-term unemployed be reemployed for energy production?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gutenberg Cup", + "year": "2013", + "format": "", + "content": "Should Sauron become US president?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2013", + "format": "", + "content": "THW ban unpaid internships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2013", + "format": "", + "content": "THW punish bullies through the courts instead of through schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2013", + "format": "", + "content": "THW ban international marriage agencies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2013", + "format": "", + "content": "THW create power-sharing with the Taliban in exchange for disarmament.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2013", + "format": "", + "content": "THW ban any group or program that seeks to change someone's sexual identity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2013", + "format": "", + "content": "THW give harsher sentences to military of police officers who engage in sexual assault.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2013", + "format": "", + "content": "THW create a nation for X, where X is defined by OG as a specific demographic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "McGill Novice", + "year": "2013", + "format": "", + "content": "THW never, ever ban books.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DDG Masters Cup", + "year": "2013", + "format": "", + "content": "THBT the world has become better through Facebook.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DDG Masters Cup", + "year": "2013", + "format": "", + "content": "THW impose the Working Time Act on politicians as well.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DDG Masters Cup", + "year": "2013", + "format": "", + "content": "THW relentlessly impose cyberwars on dictatorships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DDG Masters Cup", + "year": "2013", + "format": "", + "content": "THW create an age limit for public appearances.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DDG Masters Cup", + "year": "2013", + "format": "", + "content": "TH (as debate couple) would encourage its kids to debate competitively.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DDG Masters Cup", + "year": "2013", + "format": "", + "content": "THW reinstitute the Gold Standard.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DDG Masters Cup", + "year": "2013", + "format": "", + "content": "THW, as the CDU, pursue a minority government in the Bundestag.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2013", + "format": "", + "content": "THW ban the circumcision of males under the age of 18.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2013", + "format": "", + "content": "THBT Germany should grant asylum to Edward Snowden.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2013", + "format": "", + "content": "THBT the jury in all medical malpractice trials should consist solely of medical professionals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2013", + "format": "", + "content": "TH supports the creation of a new country, open to all where the only functions of the government are to provide security and to protect property rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2013", + "format": "", + "content": "TH Supports the actions of the Gulabi Gang.", + "infoSlide": "The Gulabi Gang “the Pink gang” are a collection of women in North India that wear pink saris and engage in violent, non-lethal acts of vigilantism. They target men who they have reason to believe have gone unpunished for acts of violence against women.", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2013", + "format": "", + "content": "TH, upon discovering irrefutable proof that God does NOT exist, would use a fail safe system to destroy the proof and hide it from any human’s knowledge.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2013", + "format": "", + "content": "THBT the discovery of a means of stopping the aging process would be a bad thing for society. (Clarifying information: For this debate ‘stopping the aging process’ means that bodies would stop aging after the age of 35; it does NOT mean that people would stop dying of things unrelated to the process of aging).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2013", + "format": "", + "content": "TH, as the Israeli Debating League, would refuse to accept a debating society from Ariel as a member. (Clarifying information: Ariel is an Israeli settlement in the West Bank.).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2013", + "format": "", + "content": "This House supports the introduction of a two-tier education system, that places non-academic students in separate schools that cater towards vocational qualifications and practical skills.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2013", + "format": "", + "content": "This House believes that the Kingitanga should be disestablished.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2013", + "format": "", + "content": "This House believes that if humanity becomes capable of interstellar travel, it should implement and enforce the \"Prime Directive\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2013", + "format": "", + "content": "This House believes that the modern NZ Labour party should not regret the reforms of the fourth Labour Government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2013", + "format": "", + "content": "This House condemns televisions shows that glorify the rich.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2013", + "format": "", + "content": "This House believes that political Islam is incompatible with democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2013", + "format": "", + "content": "This House believes that if technology permitted us to identify people who are genetically predisposed to commit crimes, it would be appropriate for the state to monitor them and limit their activities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2013", + "format": "", + "content": "This House believes that it is time for the LGBTQIA movement to break up.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "THS SOPA (Stop Online Piracy Act).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "Assuming efficacy, THW prefer an internet of no anonimity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "THBT it is only justifiable to leak classified information when that information details clearly illegal government conduct.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "THW remove the image of Mohammed from the US surpreme court building.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "THO the instititution of petitionary prayer.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "TH prefers a religion that believes thaat people are inherently good to one that believes they are inherently flawed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "THW not punish professional sports athletes for off-field behaviour.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "As a gay athlete qualified for the Sochi olympics, THW boycott those Olympics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "THBT coaches should be held liable for players which they choose to play with the knowledge that those players were already injured.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "THW allow jurors to pose questions to anyone testifying.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4.1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "As a juror, this house would in no circumstances consider nullification.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4.2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "THBT lawyers should not be involved in jury selection.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4.3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "THW prioritize women in international university applications.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "TH prefers a society which prioritizes global poverty reduction over domestic poverty initiatives.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "THBT Western governments should renounce democratization of other states as a foreign policy objective.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters_3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "THW prefer to experience art knowing nothing of the artist.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "TH has received incontrovertible proof that the Mona Lisa is a forgery. THW not reveal that information.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "THS the right of an artist to absolute posthumour control of their work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis_3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "THS a federal European state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "THBT a democratic world government is a worthwhile long-term human project.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Commonwealth Open (Australs style)", + "year": "2013", + "format": "", + "content": "THS a people's enshrined right to a binding secession referenda.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals_3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester EUDC", + "year": "2013", + "format": "", + "content": "THW ban video games in which the player engages in brutal and immoral violence in a realistic setting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester EUDC", + "year": "2013", + "format": "", + "content": "THW require international development aid budgets to be approved by popular referenda.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester EUDC", + "year": "2013", + "format": "", + "content": "TH, as the Muslim Brotherhood, would sincerely offer to cease resistance, participate in elections and respect a liberal constitution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester EUDC", + "year": "2013", + "format": "", + "content": "THW permit government agencies to conduct automated surveillance without court authorisation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester EUDC", + "year": "2013", + "format": "", + "content": "THBT Israel should allow members of the Jewish diaspora to vote in elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester EUDC", + "year": "2013", + "format": "", + "content": "TH applauds the rise of songs by female pop artists that glorify assertive female sexuality. For example: Nothing on, I strut around; I do it big, I shut it down; I wonder if you’ll be able to handle me; Rita Ora – R.I.P.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester EUDC", + "year": "2013", + "format": "", + "content": "THBT it is in China’s strategic interest to cease all non-humanitarian assistance to North-Korea until it verifiably ends its nuclear programme.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester EUDC", + "year": "2013", + "format": "", + "content": "THBT Barack Obama should not have granted legal immunity to officials who ordered the use of torture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester EUDC", + "year": "2013", + "format": "", + "content": "THW provide welfare in the form of basic goods and services rather than cash payments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester EUDC", + "year": "2013", + "format": "", + "content": "THBT men should consistently call out and correct chauvinistic claims by colleagues and co-workers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester EUDC", + "year": "2013", + "format": "", + "content": "THBT environmental agencies should start a campaign of sabotage and destruction against major pollution companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester EUDC", + "year": "2013", + "format": "", + "content": "THBT the state should not fund any works of art or performances that the average citizen would not recognize as having artistic merit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester EUDC", + "year": "2013", + "format": "", + "content": "THBT African countries should adopt English as the principle language of instruction.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester EUDC", + "year": "2013", + "format": "", + "content": "TH regrets that Western Media demonised Islamist Terrorists rather than portraying them as criminals with legitimate grievances.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester EUDC", + "year": "2013", + "format": "", + "content": "THW give more votes to citizens according to their performance on a current affairs test.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DAPDI", + "year": "2013", + "format": "", + "content": "THW legalise assisted suicide for any reason.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DAPDI", + "year": "2013", + "format": "", + "content": "THBT politicians have a right to a private life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DAPDI", + "year": "2013", + "format": "", + "content": "THW require corporations which operate in both the developed and developing worlds to apply the same labour rights to both.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DAPDI", + "year": "2013", + "format": "", + "content": "TH, as a woman, would sleep her way to the top.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DAPDI", + "year": "2013", + "format": "", + "content": "THW invade North Korea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DAPDI", + "year": "2013", + "format": "", + "content": "This House believes that the media, including but not limited to journalists and photographers, have a duty to portray racist public figures in a negative light.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DAPDI", + "year": "2013", + "format": "", + "content": "This House, given the technology, would allow medical procedures which endow human beings with superpowers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS invitational", + "year": "2013", + "format": "", + "content": "THBT new democracies should prevent revolutionary leaders from standing for elected office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS invitational", + "year": "2013", + "format": "", + "content": "THBT increased female participation in violent sports (such as boxing) is good for women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS invitational", + "year": "2013", + "format": "", + "content": "THBT the WTO should allow developing countries to impose tariffs on developed countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS invitational", + "year": "2013", + "format": "", + "content": "THBT the USA should pay $1 trillion in war reparations to North Korea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS invitational", + "year": "2013", + "format": "", + "content": "THW give the public the power, via referendum, to pardon whistleblowers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS Open", + "year": "2013", + "format": "", + "content": "THBT the LGBT movement should oppose gay bars that ban entrance to straight customers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS Open", + "year": "2013", + "format": "", + "content": "THBT the government should subsidise private home ownership.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS Open", + "year": "2013", + "format": "", + "content": "THBT in the event of Scotland voting for independence in 2014, the governmental authorities of the North of England should petition the Scottish government for membership of the new Scottish state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS Open", + "year": "2013", + "format": "", + "content": "THBT the Church of England should not take official stances on social, political and economic issues not directly related to items of doctrine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS Open", + "year": "2013", + "format": "", + "content": "THBT the Norwegian Nobel Prize commitee should retrospectively remove Barrack Obama's peace prize.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heart of Europe British Parliamentary Debate track", + "year": "2013", + "format": "", + "content": "THW legalize prostitution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heart of Europe British Parliamentary Debate track", + "year": "2013", + "format": "", + "content": "THBT immigration from developing countries should be made illegal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heart of Europe British Parliamentary Debate track", + "year": "2013", + "format": "", + "content": "THBT abortions are morally justifiable.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heart of Europe British Parliamentary Debate track", + "year": "2013", + "format": "", + "content": "THW not cooperate with international financial institutions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heart of Europe British Parliamentary Debate track", + "year": "2013", + "format": "", + "content": "THBT national states should not support minority cultures to the detriment of the majority culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heart of Europe British Parliamentary Debate track", + "year": "2013", + "format": "", + "content": "THBT free sharing of copyrighted information should be tolerated.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bodden Cup", + "year": "2013", + "format": "", + "content": "THW grant prisoners their right to vote back as soon as they are released.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bodden Cup", + "year": "2013", + "format": "", + "content": "THW support separatist movements in the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bodden Cup", + "year": "2013", + "format": "", + "content": "THW employ asylum seekers as porters in train stations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bodden Cup", + "year": "2013", + "format": "", + "content": "TH, which is Brazil, regrets its bid for hosting the 2014 World Cup.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bodden Cup", + "year": "2013", + "format": "", + "content": "THW abolish the separation period (Trennungsfristen) for marriages - (i.e. create quick ends to marriage?).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bodden Cup", + "year": "2013", + "format": "", + "content": "THW limit the amount for new leases to a maximum of 10% above the local rent index.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bodden Cup", + "year": "2013", + "format": "", + "content": "TH welcomes medical progress that enables women to have children after the menopause.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Patras Open", + "year": "2013", + "format": "", + "content": "THW ban the Golden Dawn.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Patras Open", + "year": "2013", + "format": "", + "content": "THBT the state should not give religious institutions any financial benefits.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Patras Open", + "year": "2013", + "format": "", + "content": "THBT the United Kingdom should abolish its monarchy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Patras Open", + "year": "2013", + "format": "", + "content": "TH regrets Disney's continuation of the Star Wars film saga.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Patras Open", + "year": "2013", + "format": "", + "content": "THW abolish national sports teams.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Patras Open", + "year": "2013", + "format": "", + "content": "THBT the City of Thessaloniki should name one of its major avenues after Kemal Atatürk.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Patras Open", + "year": "2013", + "format": "", + "content": "TH as Socrates would not have drunk the hemlock.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "year": "2013", + "format": "", + "content": "THW punish parents for the crimes their minor children commit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "year": "2013", + "format": "", + "content": "THW give the death penalty to government officials that engage in acts of corruption.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "year": "2013", + "format": "", + "content": "TH regrets welfare policies promoted by Eurozone countries currently immersed in a debt crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "year": "2013", + "format": "", + "content": "THW pay poor people to not have children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "year": "2013", + "format": "", + "content": "THW prohibit in financial settlements lawsuits against pharmaceutical companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "year": "2013", + "format": "", + "content": "THW allow organ donation only to those individuals who are donors.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "year": "2013", + "format": "", + "content": "THW help/support snitches (informants, informers).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "year": "2013", + "format": "", + "content": "THBT developing countries should nationalise companies that extract their national resources.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "year": "2013", + "format": "", + "content": "TH supports media censorship during times of political crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "year": "2013", + "format": "", + "content": "TH regrets that Brazil is the host of the football World Cup 2014.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "year": "2013", + "format": "", + "content": "TH would eliminate the Catholic Church on a global level (the Church’s global governing level?).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "year": "2013", + "format": "", + "content": "TH repents of the Spanish colonisation of Latin America.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Earlsfort Open", + "year": "2013", + "format": "", + "content": "THW require all welfare recipients to take drug tests, and if they fail, cut off all monetary benefits and replace with non-monetary benefits such as food/clothing vouchers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Earlsfort Open", + "year": "2013", + "format": "", + "content": "THBT post-conflict societies should set a history curriculum that emphasises the wrongs done by their own community during that conflict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Earlsfort Open", + "year": "2013", + "format": "", + "content": "THBT juries should be of the same demographic as the accused and victim in each case.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Earlsfort Open", + "year": "2013", + "format": "", + "content": "THBT the overthrow of Egypt's President, Mohammed Morsi, is a setback to the goals of the Arab Spring.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Earlsfort Open", + "year": "2013", + "format": "", + "content": "THW hold companies to a higher ethical standard than the law imposes on them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Earlsfort Open", + "year": "2013", + "format": "", + "content": "Presuming the technology existed to alter people's sexual orientation, THW make that technology available on the national health service.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Earlsfort Open", + "year": "2013", + "format": "", + "content": "TH, as President Obama, would grant a presidential pardon to Edward Snowden.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Frischlingscup", + "year": "2013", + "format": "", + "content": "Do we need mandatory voting?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Frischlingscup", + "year": "2013", + "format": "", + "content": "Should modes of energy production that significantly alter the Umweltnieschen (surrounding/environment?) be banned?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Frischlingscup", + "year": "2013", + "format": "", + "content": "Should there no longer be a possibility of early release in case of life sentences?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Frischlingscup", + "year": "2013", + "format": "", + "content": "Should we decide to categorically deny foreign missions for our army?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial No Notes Open", + "year": "2013", + "format": "", + "content": "THBT in areas where there is a high level of drug-related crime, that laws surrounding the sale and use of drugs should not be enforced.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial No Notes Open", + "year": "2013", + "format": "", + "content": "TH, as a parent in a western liberal democracy, would teach its child to respect authority.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial No Notes Open", + "year": "2013", + "format": "", + "content": "THBT comedians should not use racist, sexist, or homophobic language, even for the purposes of satire.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial No Notes Open", + "year": "2013", + "format": "", + "content": "TH, as Prometheus, would snub mankind.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial No Notes Open", + "year": "2013", + "format": "", + "content": "as a promising young graduate, you are offered two jobs. One with a charity that you would enjoy working for (\"First Teach\"), with reasonable pay. The other with a large multinational firm (DelcentureMG) that provides higher pay, and better long term career prospects. Motion: THW sell out to the man.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "English Open", + "year": "2013", + "format": "", + "content": "THW ban international adoption.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "English Open", + "year": "2013", + "format": "", + "content": "TH supports state capitalism over liberal capitalism.", + "infoSlide": "State capitalism is an economic model in which companies are privately owned and compete in a free market of consumers, yet the state often intervenes by investing heavily in favored firms, forcing managerial changes, and making other decisions aimed at stabilizing and strengthening the economy. Famous state-capitalist nations include Singapore, China and Russia.", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "English Open", + "year": "2013", + "format": "", + "content": "THBT The US should continue its nation building efforts after it has left Afghanistan militarily.", + "infoSlide": "The US is currently involved in major nation building projects in Afghanistian, including funding and support of democratic institutions, empowerment of local leaders and investment in education.", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "English Open", + "year": "2013", + "format": "", + "content": "THBT educators should abandon the \"pitiful bully\" approach.", + "infoSlide": "In recent decades, many educational institutions have instructed their teachers that bullying is a result of low self-esteem and other personal problems.", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "English Open", + "year": "2013", + "format": "", + "content": "THBT citizens should be more worried about Google and Facebook's access to their data, than the governments' access.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mix Team (pro-am tournament)", + "year": "2013", + "format": "", + "content": "THW introduce special schools for LGBTQI.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mix Team (pro-am tournament)", + "year": "2013", + "format": "", + "content": "THB that overthrowing Mohamed Morsi was a mistake.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mix Team (pro-am tournament)", + "year": "2013", + "format": "", + "content": "THW legally permit soldiers to refuse to participate in military actions or missions on the basis of conscience.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mix Team (pro-am tournament)", + "year": "2013", + "format": "", + "content": "THW introduce inheritance tax of 100%.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mix Team (pro-am tournament)", + "year": "2013", + "format": "", + "content": "THW provide parents access to their children profiles on social networks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mix Team (pro-am tournament)", + "year": "2013", + "format": "", + "content": "THW privatise all education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ULU Westminster IV", + "year": "2013", + "format": "", + "content": "THBT Greece should ban the Golden Dawn party.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ULU Westminster IV", + "year": "2013", + "format": "", + "content": "THW force universities to make all their lectures available for free online.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ULU Westminster IV", + "year": "2013", + "format": "", + "content": "TH regrets the rise of mega-rich football clubs (such as Chelsea, Manchester City, PSG, Monaco, Anzhi M. etc).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ULU Westminster IV", + "year": "2013", + "format": "", + "content": "THBT Barack Hussein Obama should call off the prosecution of NSA whistleblower Edward Snowden.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ULU Westminster IV", + "year": "2013", + "format": "", + "content": "THW give extra votes to young adults.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ULU Westminster IV", + "year": "2013", + "format": "", + "content": "THW offer EU membership to Middle Eastern and North African states that achieve successful democratic transition.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Essex IV", + "year": "2013", + "format": "", + "content": "TH supports the use of child labour in the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Essex IV", + "year": "2013", + "format": "", + "content": "THBT Beyonce is good for feminism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Essex IV", + "year": "2013", + "format": "", + "content": "THBT community vigilante groups have been a force for good in the fight against gangs and gang crime in Mexico.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Essex IV", + "year": "2013", + "format": "", + "content": "TH regrets the rise and dominance of Facebook (and other social media sites like Twitter) in Western liberal democracies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Essex IV", + "year": "2013", + "format": "", + "content": "THBT the African Union should refuse to cooperate with the ICC and instead pursue their own means of justice.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna Mini", + "year": "2013", + "format": "", + "content": "THW privatise healthcare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna Mini", + "year": "2013", + "format": "", + "content": "THBT that Australia should replace its current flag with the aboriginal one.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna Mini", + "year": "2013", + "format": "", + "content": "THW eliminate standardised testing for university admission.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna Mini", + "year": "2013", + "format": "", + "content": "THBT Pixar's next animated motion picture should have a same-sex couple as protagonists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna Mini", + "year": "2013", + "format": "", + "content": "As Quadriga, THW not have retracted Putin's award (info).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Elbe Open", + "year": "2013", + "format": "", + "content": "THW grant patients the full right to inspect records of their own treatment from psychotherapists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Elbe Open", + "year": "2013", + "format": "", + "content": "THB the continuing European Central Bank Policy of low interest rate focus is wrong.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Elbe Open", + "year": "2013", + "format": "", + "content": "TH does not want a society in which people are immortal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Elbe Open", + "year": "2013", + "format": "", + "content": "THW force theatres that are funded by public money to allow the public to determine its programming.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Elbe Open", + "year": "2013", + "format": "", + "content": "THW remove the 5% election threshold for Islamic parties in all parliamentary elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Elbe Open", + "year": "2013", + "format": "", + "content": "THW promote pornography that challenges gender cliches.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2013", + "format": "", + "content": "THW forbid the Supreme Court to annul legislation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2013", + "format": "", + "content": "THW ban fortune-telling for profit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2013", + "format": "", + "content": "As an emerging nation, THW allow the manufacture and sale of generic drugs even in cases where patents or international treaties are infringed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2013", + "format": "", + "content": "THW give security services total and unrestricted access to citizens’ data on social media and webmail services.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2013", + "format": "", + "content": "THW introduce an immediate democracy.", + "infoSlide": "Immediate democracy is a method in which citizens can change their vote at any time. The number of MPs given to each party is allocated on a daily basis and represents the current support percentage of the population. In this system there are no elections, but the number of MPs from each party can change every day.", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2013", + "format": "", + "content": "THW support popular uprisings against dictators even in cases they are lead by Islamist extremist.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GDPPC Open", + "year": "2013", + "format": "", + "content": "THBT tech companies should never share user information with governments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GDPPC Open", + "year": "2013", + "format": "", + "content": "In fighting prostitution, THW criminalize only the demand.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GDPPC Open", + "year": "2013", + "format": "", + "content": "THBT Stark Industries should have open-sourced the Iron man suit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GDPPC Open", + "year": "2013", + "format": "", + "content": "THBT IMF should pay reparations to Greece.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GDPPC Open", + "year": "2013", + "format": "", + "content": "THBT The New York Post shouldn't have published the photo (edit: showing a man about to be overrun by a metro and die).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GDPPC Open", + "year": "2013", + "format": "", + "content": "THW restart the Esperanto project.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GDPPC Open", + "year": "2013", + "format": "", + "content": "THBT offenders with drug dependency should be sent into treatment rather than to prison.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol Open", + "year": "2013", + "format": "", + "content": "THW prosecute attempted murder and murder as the same crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol Open", + "year": "2013", + "format": "", + "content": "THBT the disappearance of marriage from society will be more beneficial for LGBT individuals than their inclusion in it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol Open", + "year": "2013", + "format": "", + "content": "THBT the USA should fund Private Military Companies (PMCs) to fight the war on drugs in Mexico.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol Open", + "year": "2013", + "format": "", + "content": "TH regrets the use of extreme tactics by feminist groups in countries with poor equalities records (like Femen, Pussy Riot and their supporters).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol Open", + "year": "2013", + "format": "", + "content": "Where a suitable job is available in an individual's country of origin, THW require anyone wishing to emigrate to first repay the state the cost of any government services they have received to that point.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Debate Academy", + "year": "2013", + "format": "", + "content": "THW remove the right to vote upon retirement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Debate Academy", + "year": "2013", + "format": "", + "content": "THBT the targeting of religious sites is a legitimate tool of war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Debate Academy", + "year": "2013", + "format": "", + "content": "THW make fines relative to wealth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Debate Academy", + "year": "2013", + "format": "", + "content": "TH, as a Russian-speaking Latvian, would not vote for a Russian party in Latvian elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Riga Debate Academy", + "year": "2013", + "format": "", + "content": "THW require couples that intend to enter into official partnerships to be informed of their partners full genetic profile and other health issues.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutschsprachige Debattiermeisterschaft", + "year": "2013", + "format": "", + "content": "Should bullfighting be forbidden?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutschsprachige Debattiermeisterschaft", + "year": "2013", + "format": "", + "content": "Should teams be excluded from sports matches when one of their team members has taken doping?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutschsprachige Debattiermeisterschaft", + "year": "2013", + "format": "", + "content": "Seed companies seek out strong-yielding plants and sterilise the seeds. The plants cannot produce fertile seeds and the companies protect their license rights. Motion: Should plant sterilisation be banned?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutschsprachige Debattiermeisterschaft", + "year": "2013", + "format": "", + "content": "Assume the technical possibility of a manned flight to Mars, without the possibility to survive there on a long-term basis, or to return: Should we send a manned spacecraft to Mars?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutschsprachige Debattiermeisterschaft", + "year": "2013", + "format": "", + "content": "Should we abolish adding to wages until the income reaches the poverty line?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutschsprachige Debattiermeisterschaft", + "year": "2013", + "format": "", + "content": "After a civil war, should the ethnic groups involved be separated, even through forced resettlement?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutschsprachige Debattiermeisterschaft", + "year": "2013", + "format": "", + "content": "Should commuter allowances be abolished?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutschsprachige Debattiermeisterschaft", + "year": "2013", + "format": "", + "content": "Servicemen and women are equal before the law in the Armed Forces. In practice, women are not used on the frontline (as special commandos for example). Motion: should women be employed in the frontline?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutschsprachige Debattiermeisterschaft", + "year": "2013", + "format": "", + "content": "Should prisoners on hungerstrike be forcefed?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Deutschsprachige Debattiermeisterschaft", + "year": "2013", + "format": "", + "content": "When the Bundestag votes on matters of conscience, the members can vote without party discipline. Should the People decide on matters of conscience instead of the Parliament?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "History Tournament", + "year": "2013", + "format": "", + "content": "TH is Martin Luther. THW not publish the Theses.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "History Tournament", + "year": "2013", + "format": "", + "content": "During WWII: THBT the Western Allies should under no circumstances cooperate with Stalin.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "History Tournament", + "year": "2013", + "format": "", + "content": "In the middle of the 19th century: THW stop export of food products from Ireland until the Great Famine ends.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "History Tournament", + "year": "2013", + "format": "", + "content": "TH is Gandhi. THW declare war on the English occupation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brüder Grimm Cup", + "year": "2013", + "format": "", + "content": "Should self-incriminating reports for tax evasion no longer lead to amnesty/ower punishment?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brüder Grimm Cup", + "year": "2013", + "format": "", + "content": "Should Members of Parliaments be allowed to have family members as employees?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brüder Grimm Cup", + "year": "2013", + "format": "", + "content": "Should works of art no longer be restored?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brüder Grimm Cup", + "year": "2013", + "format": "", + "content": "Should genetic testing right after birth be made mandatory?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brüder Grimm Cup", + "year": "2013", + "format": "", + "content": "Should Telecommunications providers be required by law to ensure net neutrality?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brüder Grimm Cup", + "year": "2013", + "format": "", + "content": "Should there be a quota for young people in top political offices?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2013", + "format": "", + "content": "THBT Djokar Tsarnev, the Boston Marathon bomber, should be given the death penalty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2013", + "format": "", + "content": "THW take the children of Roma who live traditional lifestyles into state care.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2013", + "format": "", + "content": "THW reverse austerity measures in Europe.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2013", + "format": "", + "content": "THW allow voters to dismiss their government during its term through citizen initiated referenda.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2013", + "format": "", + "content": "THBT EU should offer Middle Eastern and North African states membership in exchange for successful democratic transformation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2013", + "format": "", + "content": "Additive manufacturing or 3D printing is the process of making a three-dimensional solid object of almost any shape from a downloadable design. Currently, they can be used to create shoes, electronic devises, guns and even houses. In future, their uses are likely to grow. Motion: THW ban the sale of 3D printers to households.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade Open", + "year": "2013", + "format": "", + "content": "THW replace the national sport teams of Ex-Yugoslavian republics with new unified teams.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kalliope Debattoernooi", + "year": "2013", + "format": "", + "content": "THW make membership of a political party mandatory.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kalliope Debattoernooi", + "year": "2013", + "format": "", + "content": "TH celebrates (approves of) the existence of religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kalliope Debattoernooi", + "year": "2013", + "format": "", + "content": "THW pay male teachers in primary school more than female teachers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kalliope Debattoernooi", + "year": "2013", + "format": "", + "content": "TH regrets the founding of the state of Israel.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kalliope Debattoernooi", + "year": "2013", + "format": "", + "content": "THW ban media from publishing graphic depictions of terrorist attacks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kalliope Debattoernooi", + "year": "2013", + "format": "", + "content": "THW ban private companies from choosing political positions and promoting them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kalliope Debattoernooi", + "year": "2013", + "format": "", + "content": "THW make fathers responsible for children, in financial and other terms, only if they have given explicit permission for their birth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denny Crane", + "year": "2013", + "format": "", + "content": "THW require all politicians who are running for election to do a test of general knowledge whose results would then be made ​​public.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denny Crane", + "year": "2013", + "format": "", + "content": "THW require from companies to share their annual profit to all employees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denny Crane", + "year": "2013", + "format": "", + "content": "THW abolish gender categories for the awards in culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denny Crane", + "year": "2013", + "format": "", + "content": "THW not punish offenders for non-violent crimes with prison sentence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denny Crane", + "year": "2013", + "format": "", + "content": "Humanity has found an alien species of an unknown level of technological development. Motion: THW not make first contact with an alien.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denny Crane", + "year": "2013", + "format": "", + "content": "THBT on October 5th blood should have been spilled.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Denny Crane", + "year": "2013", + "format": "", + "content": "THW censor art that desecrates religious symbols.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford Women’s Open", + "year": "2013", + "format": "", + "content": "THW ban religious preachers in the public sphere.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford Women’s Open", + "year": "2013", + "format": "", + "content": "THBT the USA should give South Korea independent control of a nuclear arsenal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford Women’s Open", + "year": "2013", + "format": "", + "content": "TH, as a professional female athlete, would not pose in a sexualised manner for magazines and commercials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford Women’s Open", + "year": "2013", + "format": "", + "content": "In areas where hostage taking is a tactic, THW require soldiers to kill squad mates who are about to be captured.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford Women’s Open", + "year": "2013", + "format": "", + "content": "THW subsidise art that glorifies the working class.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Stockholm IV", + "year": "2013", + "format": "", + "content": "THW completely abolish all subsidies and preferential treatment to the farming industry in the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Stockholm IV", + "year": "2013", + "format": "", + "content": "You are a poor 19-year old woman living in a former Soviet state. You have little education, no obvious career prospects, and few opportunities for economic advancement in your own country. THW register as a mail order bride.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Stockholm IV", + "year": "2013", + "format": "", + "content": "TH, which is the EU, would sue any individual who speaks untrue of or defames the European Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Stockholm IV", + "year": "2013", + "format": "", + "content": "TH as Israel would immediately intervene in Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Stockholm IV", + "year": "2013", + "format": "", + "content": "THBT billionaires have a moral obligation to donate their money to the US government instead of charities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Stockholm IV", + "year": "2013", + "format": "", + "content": "You are Arnold Schwarzenegger, You are presented a script in which you are asked to portray a SS Nazi Officer who is presented in a positive humane light. THW take on the role.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Stockholm IV", + "year": "2013", + "format": "", + "content": "THBT the EU should adopt the formation of a constitutional anti-theistic atheist society as one of its declared goals.", + "infoSlide": "The current stated goal of the european union, as stipulated in the treaty of rome, is an \"ever closer union\" Anti-theistic atheism society is a society that while still allowing religions to exist,more than just being secular actively seeks to eliminate religion from state institutions, laws and actively promotes atheism to the general public.", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Aachen", + "year": "2013", + "format": "", + "content": "THW make organ donations after death mandatory.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Aachen", + "year": "2013", + "format": "", + "content": "THW not export any weapons out of the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Aachen", + "year": "2013", + "format": "", + "content": "THW replace the three-tiered education system with one common high school.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Aachen", + "year": "2013", + "format": "", + "content": "THW check all Doctorate theses of living persons for plagiarism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Aachen", + "year": "2013", + "format": "", + "content": "THW welcome a UK exit out of the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Aachen", + "year": "2013", + "format": "", + "content": "THW ban alternative medicine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Aachen", + "year": "2013", + "format": "", + "content": "THW not have introduced a common European currency.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kyiv Open", + "year": "2013", + "format": "", + "content": "THBT racial profiling is a legitimate tool in fighting crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kyiv Open", + "year": "2013", + "format": "", + "content": "THW prohibit the military from embedding journalists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kyiv Open", + "year": "2013", + "format": "", + "content": "THBT all state funding of the art should be allocated to artists through a random and equal lottery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kyiv Open", + "year": "2013", + "format": "", + "content": "THW introduce a statute of limitation on murder.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kyiv Open", + "year": "2013", + "format": "", + "content": "THB the US should unilaterally intervene in Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kyiv Open", + "year": "2013", + "format": "", + "content": "THBT police force should have quotas of proportional representation of races.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kyiv Open", + "year": "2013", + "format": "", + "content": "THW forgive the group of young people who blew up a monument of Stalin in Ukraine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Invitational", + "year": "2013", + "format": "", + "content": "THW prosecute (in western courts) anyone who buys people out of slavery in the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Invitational", + "year": "2013", + "format": "", + "content": "THB that the Church of England should not allow the singing of Jerusalem in its services.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Invitational", + "year": "2013", + "format": "", + "content": "THW require that all marginal increases in funding for healthcare technology be spent on whatever NICE believes most cost effectively maximises Quality Adjusted Life Years.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge Invitational", + "year": "2013", + "format": "", + "content": "THW create: 1) an obligation on western powers to militarily intervene in conflicts where chemical weapons are being used (regardless of UN approval), and 2) a right if major humanitarian organisations to sue governments for failure to fulfil this obligation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jacobs Open", + "year": "2013", + "format": "", + "content": "THW remove all \"sin taxes\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jacobs Open", + "year": "2013", + "format": "", + "content": "TH, as US President, would grant Chinese Christian refugees asylum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jacobs Open", + "year": "2013", + "format": "", + "content": "THBT Governments should fund and public display of art which viscerally portrays the suffering of victims created by state policies/actions (eg war, failure to go to war, poverty at home and abroad).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jacobs Open", + "year": "2013", + "format": "", + "content": "THW only allow election campaigns to be funded by a fixed budget provided by the state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jacobs Open", + "year": "2013", + "format": "", + "content": "TH, as the gay community, regrets the rise of Grindr in western liberal democracies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jacobs Open", + "year": "2013", + "format": "", + "content": "In the event of a terrorist attack by radical Islamists, THW fabricate evidence (which wouldn't be found out to be untrue) that the attack was committed by someone from the dominant (religious/ethnic) group in that society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jacobs Open", + "year": "2013", + "format": "", + "content": "TH, as 2 atheist parents, raising their child in a homogeneous religious rural community (e.g. in Texas) would raise their child to be religious.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Minho", + "year": "2013", + "format": "", + "content": "THW exhibit the Ten Commandments in all public schools of the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Minho", + "year": "2013", + "format": "", + "content": "THW aplaude that the Member States of the EU would participate in the Olympics under only one flag.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Open", + "year": "2013", + "format": "", + "content": "In cases of politically motivated terrorist attacks, THW ban the press from disclosing any information regarding the name, background or the political motivation of the attackers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Open", + "year": "2013", + "format": "", + "content": "You are a single woman in her twenties. Sleeping with your boss would probably significantly advance your career. THW do it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Open", + "year": "2013", + "format": "", + "content": "THW force elected politicians and their families to use only public health and education services.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Open", + "year": "2013", + "format": "", + "content": "THBT any form of conscription is a war crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Open", + "year": "2013", + "format": "", + "content": "THB Croatia should stop all special treatment of the Catholic religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Open", + "year": "2013", + "format": "", + "content": "Assuming the existence of the Biblical God, THW never praise him.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SdDUP Debate changing Europe round 1", + "year": "2013", + "format": "", + "content": "TH applaudes that the representatives of the Member States on the European Council and on European Parliament adopt as criteria for decisions what is best for the citizens of their own countries and not what is best for the European citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SdDUP Debate changing Europe round 1", + "year": "2013", + "format": "", + "content": "TH (as the EU) would offer visas for residence to all immigrants and their families that have proven to have found means of subsistence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch National Championships", + "year": "2013", + "format": "", + "content": "THW ban all beauty pageants.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch National Championships", + "year": "2013", + "format": "", + "content": "THW abolish all exceptions to the military draft on the basis of religion, sexual orientation or gender in democratic countries that have a compulsory military draft.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch National Championships", + "year": "2013", + "format": "", + "content": "THW abolish the statute of limitations for serious crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch National Championships", + "year": "2013", + "format": "", + "content": "THW use military force to destroy North Korea’s nuclear facilities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch National Championships", + "year": "2013", + "format": "", + "content": "THW bring the Greek debt back to healthy European standards by a one-off wealth taxation of Greek’s rich.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch National Championships", + "year": "2013", + "format": "", + "content": "THBT Dutch labour unions should agree to a structural decrease in pay for older employees.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch National Championships", + "year": "2013", + "format": "", + "content": "THW offer all citizens, upon request, a second chance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch National Championships", + "year": "2013", + "format": "", + "content": "After a military intervention to bring down a dictator, THW put a new dictator in place who is the best possible candidate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships North-East", + "year": "2013", + "format": "", + "content": "Should we allow the police to use racial profiling?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships North-East", + "year": "2013", + "format": "", + "content": "Should we put a limit to the time parties can be in parliament?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships North-East", + "year": "2013", + "format": "", + "content": "Should selfishness be proscribed?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships North-East", + "year": "2013", + "format": "", + "content": "It is 1952. Should the Bundersrepublik Deutschland agree to the Stalin-Note?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships North-East", + "year": "2013", + "format": "", + "content": "Should the country grant bravery medals to drone soldiers?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships North-East", + "year": "2013", + "format": "", + "content": "Should same-sex couples receive full adoption rights?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships South (Austria and Switzerland)", + "year": "2013", + "format": "", + "content": "Should exile be reinstated as a form of punishment?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships South (Austria and Switzerland)", + "year": "2013", + "format": "", + "content": "Should we abolish all family (welfare) benefits in exchange for a one-off children premium of 100.000 Euros?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships South (Austria and Switzerland)", + "year": "2013", + "format": "", + "content": "Should all Members of Parliament be selected, not through elections, but through a lottery from among all citizens?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships South (Austria and Switzerland)", + "year": "2013", + "format": "", + "content": "Should journalists hand the Offshore-Leaks data to the competent authorities?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships South (Austria and Switzerland)", + "year": "2013", + "format": "", + "content": "Should same-sex couples receive full adoption rights?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships West", + "year": "2013", + "format": "", + "content": "Should we abolish the balancing of federal budgets (Länderfinanzausgleich)?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships West", + "year": "2013", + "format": "", + "content": "Should the candidate for Chancellor of a party be elected by all party members?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships West", + "year": "2013", + "format": "", + "content": "Do we need the meatfree Monday?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships West", + "year": "2013", + "format": "", + "content": "Should Germany disarm completely?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships West", + "year": "2013", + "format": "", + "content": "Should the special status of churches under labour law be abolished?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Regional Championships West", + "year": "2013", + "format": "", + "content": "Should same-sex couples receive full adoption rights?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hull Open", + "year": "2013", + "format": "", + "content": "THW ban industrial action in time of economic recession.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hull Open", + "year": "2013", + "format": "", + "content": "THW ban all media (such as music, films and video games) which glorify misogyny.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hull Open", + "year": "2013", + "format": "", + "content": "THW end the use of armed drones in counter-terrorism operations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hull Open", + "year": "2013", + "format": "", + "content": "THBT in emerging democracies with a history of female oppression, women should be granted two votes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Hull Open", + "year": "2013", + "format": "", + "content": "THBT western governments should cease all diplomatic,economic and military ties with the Bahrain government and support the opposition movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace International Final", + "year": "2013", + "format": "", + "content": "This House Would Make the Use of Unmanned Military Attack Vehicles a War Crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nordic Debating Championships", + "year": "2013", + "format": "", + "content": "THW criminalise adultery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nordic Debating Championships", + "year": "2013", + "format": "", + "content": "THW have a standing policy of conducting air strikes on government buildings of states which are implicated in the massacre of their own citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nordic Debating Championships", + "year": "2013", + "format": "", + "content": "THW set up an online voting system for citizens to directly choose the distribution of a specified portion of the national budget.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nordic Debating Championships", + "year": "2013", + "format": "", + "content": "THW offer terminally ill patients the option of a cash grant if they forgo treatment and consent to early euthanasia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nordic Debating Championships", + "year": "2013", + "format": "", + "content": "THW make development aid conditional on recipient states adopting a one-child policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nordic Debating Championships", + "year": "2013", + "format": "", + "content": "THW ban the publication of images of terrorist atrocities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nordic Debating Championships", + "year": "2013", + "format": "", + "content": "THW impose a tax on men to reduce the gender pay gap.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Coimbra Debate changing Europe round", + "year": "2013", + "format": "", + "content": "THW give a higher child subsidies to couples composed by persons from different Member States of the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Coimbra Debate changing Europe round", + "year": "2013", + "format": "", + "content": "THW make mandatory that all European treaties would be submitted to a referendum under only one electoral cycle.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UTAD Debate changing Europe round", + "year": "2013", + "format": "", + "content": "THW give a higher child subsidies to couples composed by persons from different Member States of the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UTAD Debate changing Europe round", + "year": "2013", + "format": "", + "content": "THBT the Common Agricultural Policy harmed the national agricultures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HSE Open", + "year": "2013", + "format": "", + "content": "THW legally bind children to take care of their parents once the parents reach old age.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HSE Open", + "year": "2013", + "format": "", + "content": "This house would erect a memorial statue for President Ronald Reagan in the red Square.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HSE Open", + "year": "2013", + "format": "", + "content": "TH, as a feminist, would marry a closeted homosexual in order to help him keep his sexual identity secret.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HSE Open", + "year": "2013", + "format": "", + "content": "THW, as Russia, offer all Western European millionaires a low tax asylum and full Citizenship in the Russian federation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HSE Open", + "year": "2013", + "format": "", + "content": "THW abolish NATO.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HSE Open", + "year": "2013", + "format": "", + "content": "THBT the state should never ever fund the arts or cultural activities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HSE Open", + "year": "2013", + "format": "", + "content": "You are a member of the Pussy Riots. You are presented with a fail safe plan to runaway from prison and start a relatively comfortable life in the west. THW stay in prison.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2013", + "format": "", + "content": "THW provide the disabled access to sex workers as part of national health care.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2013", + "format": "", + "content": "THW pay mercenaries to assassinate Kim Jong-un.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2013", + "format": "", + "content": "THBT governments should actively discourage consumerist lifestyles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2013", + "format": "", + "content": "TH regrets the EU Troika’s reliance on mainly austerity measures as a solution for at risk Eurozone economies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2013", + "format": "", + "content": "THW make failure to render reasonable assistance to a person in distress a criminal offence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2013", + "format": "", + "content": "THBT feminist organisations should not use nudity as a tactic for pursuing their aims.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Open", + "year": "2013", + "format": "", + "content": "TH Regrets the strong social norms in favour of lifelong monogamy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Potsdam Puls Punk", + "year": "2013", + "format": "", + "content": "Should we teach beggars profitable street arts?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Potsdam Puls Punk", + "year": "2013", + "format": "", + "content": "Should HIV-infected people be forced to take a pill that would kill them within three days?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Potsdam Puls Punk", + "year": "2013", + "format": "", + "content": "Should the state give up on shrinking villages?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Potsdam Puls Punk", + "year": "2013", + "format": "", + "content": "Should sexual acts with robots be banned, as soon as these are physically comparable to human beings?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Potsdam Puls Punk", + "year": "2013", + "format": "", + "content": "Should people with more children be allowed to enter retirement earlier?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Potsdam Puls Punk", + "year": "2013", + "format": "", + "content": "Should scientific writings be freely available?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Potsdam Puls Punk", + "year": "2013", + "format": "", + "content": "Should the internet be closed on Sundays?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Transatlantic Debating Championships", + "year": "2013", + "format": "", + "content": "THBT French millionaires should escape to England.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Transatlantic Debating Championships", + "year": "2013", + "format": "", + "content": "THB America has no culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Transatlantic Debating Championships", + "year": "2013", + "format": "", + "content": "THB France should be more German.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Transatlantic Debating Championships", + "year": "2013", + "format": "", + "content": "THB Germany should let Europe die.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Open", + "year": "2013", + "format": "", + "content": "TH, as commissioner Gordon, would never use the bat signal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Open", + "year": "2013", + "format": "", + "content": "TH, as the French Parliament, would not have recognised the Armenian Genocide.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Open", + "year": "2013", + "format": "", + "content": "THW choose a comprehensive education system where the only selection process is geographical location and NOT intelligence, ability or talent.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Open", + "year": "2013", + "format": "", + "content": "TH welcomes the anglicization of the French language.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Open", + "year": "2013", + "format": "", + "content": "It is 1945. THW create a Jewish state in Western Europe instead of the Middle East.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Open", + "year": "2013", + "format": "", + "content": "Given the technology, THW, as a genius, use this technology to reduce its intelligence to become “normal”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2013", + "format": "", + "content": "THW allow individuals to opt out of employment provisions relating to health and safety in return for increased pay.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2013", + "format": "", + "content": "THW allow sex offenders to choose to undergo castration in return for a considerably shorter sentence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2013", + "format": "", + "content": "THW ban serving military generals from talking to the media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2013", + "format": "", + "content": "THBT children in the West Bank should be educated in integrated schools (integrated school is one where students sit in the same classroom and share all facilities irrespective of background (including religion, culture or ethnicity)).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2013", + "format": "", + "content": "THBT in reducing its budget deficit, Ireland should prioritise cutting welfare to an absolute minimum rather than increasing taxes and cutting services.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2013", + "format": "", + "content": "TH,as the US Republican Party,would end the use of primaries to select their presidential nominee.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2013", + "format": "", + "content": "TH supports Belfast City Council's decision to restrict the flying of the Union Jack outside Belfast City Hall.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2013", + "format": "", + "content": "THW allow legislation through voter initiated referenda.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2013", + "format": "", + "content": "THW establish a US federal court with the authority to approve targeted killings of unlawful combatants.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2013", + "format": "", + "content": "THW prohibit provincial and local governments from offering tax incentives to lure corporations to open business in their domain.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2013", + "format": "", + "content": "THBT the discovery of a means to stop the human aging process would be a curse to humanity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2013", + "format": "", + "content": "THBT governments should use corporal punishment instead of incarceration for a significant number of crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HWS Round Robin", + "year": "2013", + "format": "", + "content": "THS diversity quotas for university admissions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heriot Watt Open", + "year": "2013", + "format": "", + "content": "THBT the salaries and the continuation of employment of teachers should be dependent on the academic performance of their students.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heriot Watt Open", + "year": "2013", + "format": "", + "content": "THBT: The international community should support a one-state solution to the Israel-Palestine conflict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heriot Watt Open", + "year": "2013", + "format": "", + "content": "THW: Ban Political Opinion Polls.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heriot Watt Open", + "year": "2013", + "format": "", + "content": "“to secure for the workers by hand or by brain the full fruits of their industry and the most equitable distribution thereof that may be possible upon the basis of the common ownership of the means of production, distribution and exchange and the best attainable system of popular administration and control of each industry or service” (clause 4, part 4)Clause 4 as a whole was the symbol of the Labour Party’s commitment to “public ownership” and the Party’s principled opposition to market capitalism. Clause 4 was abolished under the leadership of Tony Blair at a special party conference in Easter 1995. Motion: THBT the Labour party should not have revoked Clause 4.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heriot Watt Open", + "year": "2013", + "format": "", + "content": "THBT the Democratic Party should give up their attempts to regulate firearms and openly seek the complete abolition of firearms (approximate wording).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kent IV", + "year": "2013", + "format": "", + "content": "THBT all corporations should become workers' co-operatives.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kent IV", + "year": "2013", + "format": "", + "content": "THW require the consent of the subjects before publishing photographs of celebrities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kent IV", + "year": "2013", + "format": "", + "content": "THBT feminists should support free markets in the developing world/.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kent IV", + "year": "2013", + "format": "", + "content": "THW vote to acquit and attempt to persuade other jurors to do the same.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "St Petersburg Debating Open", + "year": "2013", + "format": "", + "content": "THBT parents of underaged children should not drink alcohol.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "St Petersburg Debating Open", + "year": "2013", + "format": "", + "content": "THW set up brothels in military bases.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "St Petersburg Debating Open", + "year": "2013", + "format": "", + "content": "THW Make US military aid to Israel dependent on Israel accepting the two-state solution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "St Petersburg Debating Open", + "year": "2013", + "format": "", + "content": "THW force state officials to keep all their financial assets in domestic banks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "St Petersburg Debating Open", + "year": "2013", + "format": "", + "content": "THBT police officers should pose as children on social networking sites to entrap paedophiles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "St Petersburg Debating Open", + "year": "2013", + "format": "", + "content": "THW ban all individuals who have advocated or used violence in order to further a political cause in emerging democratic states, from standing for future elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "St Petersburg Debating Open", + "year": "2013", + "format": "", + "content": "THBT the state has no responsibility in protecting intellectual property rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Final", + "year": "2013", + "format": "", + "content": "This House Still Believes in \"Liberty, Equality, Fraternity\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian BP Championships", + "year": "2013", + "format": "", + "content": "THW arm Syrian rebels.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian BP Championships", + "year": "2013", + "format": "", + "content": "THBT the state should support home ownership.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian BP Championships", + "year": "2013", + "format": "", + "content": "THBT the International Olympic Committee should ban all athletes who express hostile views towards racial, ethnic or sexual minorities from participating.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian BP Championships", + "year": "2013", + "format": "", + "content": "THW stop funding all space programs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian BP Championships", + "year": "2013", + "format": "", + "content": "THBT parents have a moral obligation not to consume alcohol.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian BP Championships", + "year": "2013", + "format": "", + "content": "THBT that extraordinary taxation of saving deposits in times of crisis is justified.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian BP Championships", + "year": "2013", + "format": "", + "content": "THBT people should only be allowed to work in state or local government agencies for a maximum of 5 years.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Exeter Open", + "year": "2013", + "format": "", + "content": "THBT Western liberal democracies should ban unpaid internships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Exeter Open", + "year": "2013", + "format": "", + "content": "TH supports the decision to stop British development aid to India.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Exeter Open", + "year": "2013", + "format": "", + "content": "THBT states should never protect dying languages.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Exeter Open", + "year": "2013", + "format": "", + "content": "THBT the use of violence can be legitimate in political protest.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Exeter Open", + "year": "2013", + "format": "", + "content": "TH supports the creation of a feminist political party.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mykolas Romeris University (MRU) IV", + "year": "2013", + "format": "", + "content": "THW require all social networks that offer services to minors to offer parents full unlimited access to their children's accounts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mykolas Romeris University (MRU) IV", + "year": "2013", + "format": "", + "content": "THBT the entire European Union should adopt the ban on communist symbols.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mykolas Romeris University (MRU) IV", + "year": "2013", + "format": "", + "content": "THBT Lithuania should recognise Polish as an official language in municipalities with significant populations of ethnic Poles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mykolas Romeris University (MRU) IV", + "year": "2013", + "format": "", + "content": "TH, which is China, would cease all political and economic support to North Korea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mykolas Romeris University (MRU) IV", + "year": "2013", + "format": "", + "content": "THW force employers to allow their employees to work from home whenever physically possible.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mykolas Romeris University (MRU) IV", + "year": "2013", + "format": "", + "content": "THW allow the deliberate targeting of civilians in war, where it would significantly reduce casualties in the long term.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mykolas Romeris University (MRU) IV", + "year": "2013", + "format": "", + "content": "TH, as Cyprus, would ask Russia for its bailout.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish National Maidens", + "year": "2013", + "format": "", + "content": "THB the pope should be elected by all members of the Catholic Church.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish National Maidens", + "year": "2013", + "format": "", + "content": "THW introduce ethnic and gender quotas for film and television programs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish National Maidens", + "year": "2013", + "format": "", + "content": "THW not grant amnesty to people who commit atrocities in conflicts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish National Maidens", + "year": "2013", + "format": "", + "content": "THW allow soldiers to volunteer for experimental genetic and physical modifications.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish National Maidens", + "year": "2013", + "format": "", + "content": "THW prosecute the perpetrators of domestic violence without the victim's consent.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish National Maidens", + "year": "2013", + "format": "", + "content": "THW die for a cause.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish National Maidens", + "year": "2013", + "format": "", + "content": "THBT celebrating housewives impedes the feminist movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2013", + "format": "", + "content": "THW criminalize gang membership.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2013", + "format": "", + "content": "THBT adoption agencies should seek to place children in families with a similar culture to that of their biological parents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2013", + "format": "", + "content": "THW require re-ratification of all international treaties, including the EU, by popular referenda every decade.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2013", + "format": "", + "content": "THBT the international community should treat espionage as a justification for military retaliation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2013", + "format": "", + "content": "THBT the news media should also represent the criminal’s point of view when reporting on criminal convictions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2013", + "format": "", + "content": "THBT the LGBT rights movement should abandon the ‘born this way’ campaign. (Info: ‘Some people believe that they were born LGBT, some LGBT people believe that it is a choice that they made. Currently, the LGBT movement uses being ‘Born this way’ as a way of legitimising equal rights.’).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leiden Open", + "year": "2013", + "format": "", + "content": "In times of war, THBT relatives of civilians killed by the military occupation, should be able to sue the soldiers responsible for their relative’s death in civilian court.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zalgiris Cup", + "year": "2013", + "format": "", + "content": "THW give only temporary marriage lines.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zalgiris Cup", + "year": "2013", + "format": "", + "content": "THW require all isolated religious communities (eg. Hasidic Jews, Jehova's Witnesses) to give all 18-year-olds a 'Rumspringa' [Amish tradition of sending off 18-y.-olds to live in outside world for 1 year, after which they may chose to return or not].", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zalgiris Cup", + "year": "2013", + "format": "", + "content": "THBT South Korea should have nuclear weapon.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zalgiris Cup", + "year": "2013", + "format": "", + "content": "THW make companies pay taxes equal to their influence on the environment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zalgiris Cup", + "year": "2013", + "format": "", + "content": "THW allow police to provoke citizens for committing crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zalgiris Cup", + "year": "2013", + "format": "", + "content": "THW give citizens negative votes on general elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zalgiris Cup", + "year": "2013", + "format": "", + "content": "THBT organized religion causes more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Marburg", + "year": "2013", + "format": "", + "content": "THW allow the use of bounty hunters.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Marburg", + "year": "2013", + "format": "", + "content": "THBT Cuba should prioritise the implementation of capitalism over the implementation of democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Marburg", + "year": "2013", + "format": "", + "content": "THW not give out separate art prizes (like the Oscars) for men and women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Marburg", + "year": "2013", + "format": "", + "content": "THBT patriotism is a virtue.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Marburg", + "year": "2013", + "format": "", + "content": "THB in a human right to suicide.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Marburg", + "year": "2013", + "format": "", + "content": "THW abolish all limits on the heights of buildings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Marburg", + "year": "2013", + "format": "", + "content": "THW abolish all anonymity for sperm donation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Feminism and Gender Tournament", + "year": "2013", + "format": "", + "content": "THW ban marriage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Feminism and Gender Tournament", + "year": "2013", + "format": "", + "content": "TH, which is a woman, would not make any cosmetic changes to her appearance, including but not limited to makeup, shaving, and plastic surgeries .", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Feminism and Gender Tournament", + "year": "2013", + "format": "", + "content": "THW ban all presentations of the 10th commandment in all Israeli School systems.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Feminism and Gender Tournament", + "year": "2013", + "format": "", + "content": "TH, which is a female debater, would participate in next year's Glasgow Ancients.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW ban teenagers from using Facebook.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW choose immortality over fertility.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THBT Simba should not go back.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THBT Bilbo should have killed Gollum when he had the chance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THBT all politicians should be celibate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW ban advertising.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THBT charity is immoral.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW kill its best friend when s/he is about to become a zombie.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW build a second Deathstar.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THBT children under 18 with close relatives who are victims of FGM should not be allowed to travel outside the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW ban Google Glasses.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW discourage people with genetic diseases from having children and prioritise them in terms of adoption.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW replace juries with panels of philosophers who will decide cases purely on utilitarian grounds.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW not give aliens the vote (aliens live alongside humans 1 year from now).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THB feminists should oppose capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THBT the feminist movement should oppose the banning of the burqa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THBT the Pope Francis should make an ex-cathedra statement to the effect that all Catholics must support socialism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW give the Roma a homeland.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW build a deathstar.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "As an omipotent, omniscient god, THW smite people who commit serious crimes and who we know will feel no remorse.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW bring back public corporal punishment for smaller crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW make higher education free.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW abolish the speaker tab.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW fully replace agriculture and fishing with stem cell production to produce food.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW require priests to report confessions that lead to criminal convictions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "You are an Israeli nuclear submarine commander. You learn that Israel has been wiped out by an iranian nuclear strike. THW return Fire.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW link Job Seekers Allowance to previous income.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW not become a superhero.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW encourage replacing human body parts with advanced robotic counterparts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW build 500,000 social homes in the London Greenbelt.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW wipe the memories of those convicted very serious crimes and replace them with more positive memories.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "THW require universities to increase funding for classics and deprioritise funding for popular culture choices.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Royal Holloway Open", + "year": "2013", + "format": "", + "content": "In world that has eradicated racism, THW prefer that people were/were not able to recognise differences in physical appearance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin-Brandenburgischen-Meisterschaften (Championships)", + "year": "2013", + "format": "", + "content": "Should corporations be forced, in case of layoffs, to always lay off those workers with the best chances on the labour market?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin-Brandenburgischen-Meisterschaften (Championships)", + "year": "2013", + "format": "", + "content": "Should the prosecution and defence in criminal cases no longer be able to make deals?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin-Brandenburgischen-Meisterschaften (Championships)", + "year": "2013", + "format": "", + "content": "Should a word, that one group feels is discriminating, no longer be used by that same group either?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin-Brandenburgischen-Meisterschaften (Championships)", + "year": "2013", + "format": "", + "content": "Should secret services produce pictures of despots that change their reputation and distribute those in the countries of these despots?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin-Brandenburgischen-Meisterschaften (Championships)", + "year": "2013", + "format": "", + "content": "Should a state be excluded from the EU when its politics go against the basic values of the EU?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bucharest Universities Debating Cup", + "year": "2013", + "format": "", + "content": "THBT the Romanian state should cut all ties to all churches.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bucharest Universities Debating Cup", + "year": "2013", + "format": "", + "content": "THW abolish the institution of the criminal record.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bucharest Universities Debating Cup", + "year": "2013", + "format": "", + "content": "In a run-off for the Romanian Presidency, HW rather vote for Gigi Becali than Corneliu Vadim Tudor (Romanian extremist politicians).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bucharest Universities Debating Cup", + "year": "2013", + "format": "", + "content": "THW fight for the reunification of Romania with the Republic of Moldova.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bucharest Universities Debating Cup", + "year": "2013", + "format": "", + "content": "Given easily accessible technology to choose the sex of a future child, THW give financial stimulants to parents that choose to have girls.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bucharest Universities Debating Cup", + "year": "2013", + "format": "", + "content": "THW ban the popular vote in talent shows:.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bucharest Universities Debating Cup", + "year": "2013", + "format": "", + "content": "THW pardon Bashar al-Assad for all his crimes in exchange for him stepping down from power.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bucharest Universities Debating Cup", + "year": "2013", + "format": "", + "content": "THBT in times of economic recession, European states, don't spend enough.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Czech and Slovak Championships", + "year": "2013", + "format": "", + "content": "THW reinstitute the Czecho-Slovak federation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Czech and Slovak Championships", + "year": "2013", + "format": "", + "content": "THW send top teachers to weakest schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Czech and Slovak Championships", + "year": "2013", + "format": "", + "content": "THW constitutionally cap the government deficit at 3% of GDP.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Czech and Slovak Championships", + "year": "2013", + "format": "", + "content": "THW ban pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Czech and Slovak Championships", + "year": "2013", + "format": "", + "content": "THW let Iran develop nuclear weapons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Czech and Slovak Championships", + "year": "2013", + "format": "", + "content": "THW enable directly elected heads of state to, at their own initiative, dismiss government cabinets or their individual members.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Open_Final", + "year": "2013", + "format": "", + "content": "THW not have children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL IV", + "year": "2013", + "format": "", + "content": "THW legalise the private sale of organs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL IV", + "year": "2013", + "format": "", + "content": "TH, as a feminist parent, would deliberately undermine its child's gender.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL IV", + "year": "2013", + "format": "", + "content": "TH welcomes the creation of strong forms of artificial intelligence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL IV", + "year": "2013", + "format": "", + "content": "THB that it is morally permissible to target civilians in times of war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL IV", + "year": "2013", + "format": "", + "content": "THBT American politicians should not use the language of American Exceptionalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL IV", + "year": "2013", + "format": "", + "content": "TH Regrets the rise of Reality Television.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VUAS Debate Tournament", + "year": "2013", + "format": "", + "content": "THW make the Internet a public good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VUAS Debate Tournament", + "year": "2013", + "format": "", + "content": "THW prohibit underaged from entering religious organizations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VUAS Debate Tournament", + "year": "2013", + "format": "", + "content": "THW ban professors/teachers from communicating with students/schoolchildren in social networks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VUAS Debate Tournament", + "year": "2013", + "format": "", + "content": "THW allow the use of negative competitor image in advertisement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VUAS Debate Tournament", + "year": "2013", + "format": "", + "content": "THW include debating into school curriculum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VUAS Debate Tournament", + "year": "2013", + "format": "", + "content": "THW allow to participate in general election only those people with IQ above a certain level.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "VUAS Debate Tournament", + "year": "2013", + "format": "", + "content": "THBT the government should be blamed for slow economic growth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (also Hart House IV)", + "year": "2013", + "format": "", + "content": "THW require all criminal defendants to use a government-provided lawyer.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (also Hart House IV)", + "year": "2013", + "format": "", + "content": "THW withhold government funding from indigenous bands or tribal councils that do not have a democratic form of government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (also Hart House IV)", + "year": "2013", + "format": "", + "content": "THW aggressively prioritize the posting of female diplomats to countries with poor women's rights records.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (also Hart House IV)", + "year": "2013", + "format": "", + "content": "THBT Pakistan should sincerely pursue peace talks with the Pakistani Taliban.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (also Hart House IV)", + "year": "2013", + "format": "", + "content": "THW not grant developing countries the right to host major sporting events.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (also Hart House IV)", + "year": "2013", + "format": "", + "content": "THW extend the right to vote in Israeli elections to all Jews everywhere, including those who live outside of Israel.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (also Hart House IV)", + "year": "2013", + "format": "", + "content": "THBT white entertainers should refrain from using cultural modes of expression that come from minority cultures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (also Hart House IV)", + "year": "2013", + "format": "", + "content": "THBT all major daily newspapers and TV news channels should be required to treat all controversial issues with due accuracy and impartiality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAUDC (also Hart House IV)", + "year": "2013", + "format": "", + "content": "THBT religious leaders should not endorse candidates for political office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Finals", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leeds Open", + "year": "2013", + "format": "", + "content": "THW require internet users to disclose their identities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leeds Open", + "year": "2013", + "format": "", + "content": "On the 10th Anniversary, TH does not regret the decision to invade Iraq.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leeds Open", + "year": "2013", + "format": "", + "content": "TH, as the board of Zenit St. Petersburg, would preference players with Slavic ethnicity, in order to respect the wishes of the fans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leeds Open", + "year": "2013", + "format": "", + "content": "THBT Conservative MPs should not have been given a free vote on the Marriage (same sex couples) Bill.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leeds Open", + "year": "2013", + "format": "", + "content": "THW require individuals to donate 75% of their annual income above £1 million to charity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leeds Open", + "year": "2013", + "format": "", + "content": "THW sentence repeat offenders to life imprisonment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leeds Open", + "year": "2013", + "format": "", + "content": "In post-conflict societies, THBT that justice is better served by TRCs (Truth and Reconciliation Committees) than by prosecution of perpetrators of attrocities other than the leaders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Leeds Open", + "year": "2013", + "format": "", + "content": "TH regrets the acceptance of Atheism in the form promoted by Richard Dawkins in The God Delusion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Southampton Open", + "year": "2013", + "format": "", + "content": "THW put a high minimum price on meat.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Southampton Open", + "year": "2013", + "format": "", + "content": "THBT schools should teach sex positive sex education (ie techniques for sexual gratification) in secondary schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Southampton Open", + "year": "2013", + "format": "", + "content": "TH regrets the rise of Marxism in Latin America.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Southampton Open", + "year": "2013", + "format": "", + "content": "THW make the next James Bond gay.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Southampton Open", + "year": "2013", + "format": "", + "content": "THBT Israel should give East Jerusalem to the Palestinians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2013", + "format": "", + "content": "THBT juries should only include individuals that are from the same socio-economic class as the defendant.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2013", + "format": "", + "content": "TH, in hindsight, would still have fought the 2003 war in Iraq.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2013", + "format": "", + "content": "THW, as an atheist, join an atheist church (definition: an atheist church is a congregation of non-religious people, who engage in singing, lectures and other activities. It also promotes the Manifesto for Atheists, which lists atheist virtues).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2013", + "format": "", + "content": "THBT school children in the UK should be taught that their country engaged in war crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2013", + "format": "", + "content": "TH, as the heir to any European throne, would refuse to become a monarch.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2013", + "format": "", + "content": "THBT women are morally justified in lying about their past experiences, abilities and future family plans at a job interview or application.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2013", + "format": "", + "content": "You are an emigrant from a poor and collapsing unnamed country. You are offered full and immediate citizenship from the United States and the European Union. The offers are the only two options you have and are mutually exclusive. You do not know where you will live in either Union. Your native and only language is not spoken in either. Motion: THW emigrate to the European Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2013", + "format": "", + "content": "THW hold a referendum among all churchgoing Catholics to elect the new Pope rather than having Cardinals elect him.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Open_Semiss", + "year": "2013", + "format": "", + "content": "THBT youth is wasted on the young.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Open_Semiss", + "year": "2013", + "format": "", + "content": "THBT you can't plan the future by the past.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace (Ireland Open_Semis)", + "year": "2013", + "format": "", + "content": "TH regrets the rise of globalisation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace (Ireland Open_Semis)", + "year": "2013", + "format": "", + "content": "THBT individualism has failed us.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2013", + "format": "", + "content": "THW give more votes to those who live in areas with high levels of political apathy and low voter turnout.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2013", + "format": "", + "content": "THW would allow parents to microchip their children without the child's consent.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2013", + "format": "", + "content": "THW allow individuals to contract out of all basic employment provisions in their contracts (such as health & safety, unfair dismissal etc) in return for compensation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2013", + "format": "", + "content": "THW allow individuals to sue religious organisations for compensation for the harmful effects of choices made as a result of adherence to religious doctrine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2013", + "format": "", + "content": "THW require the creators of artistic works which depict negative stereotypes of disenfranchised groups to give a portion of their profits to those groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2013", + "format": "", + "content": "THW Prosecute Irish politicians of the era for failing to take action over the abuses of the Magdalene Laundries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Open", + "year": "2013", + "format": "", + "content": "In a possible near future world, a computer chip has been developed which can painlessly be implanted in the brain, preventing all sexual desire. At the same time, technology has advanced to the point where completely asexual human reproduction is possible. THW prefer that world to this one.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2013", + "format": "", + "content": "TH regrets the turn away from socialism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 0, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2013", + "format": "", + "content": "THW create separate state schools for those who are LGBTQ.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2013", + "format": "", + "content": "THBT former colonial powers should never intervene militarily in their former colonies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2013", + "format": "", + "content": "THBT in order to continue to eat meat individuals should personally slaughter a major meat animal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2013", + "format": "", + "content": "THW abolish all term limitations for elected officials in high offices.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2013", + "format": "", + "content": "THW require all isolated religious communities to give all 18-year-olds a Rumspringa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2013", + "format": "", + "content": "THBT an EU institution should block websites in EU member states that use negative racial/ethnic/religious stereotypes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Ancients", + "year": "2013", + "format": "", + "content": "TH, as the academic and debating communities of the UK, would not invite George Galloway to our public debates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Ancients", + "year": "2013", + "format": "", + "content": "THW ban unpaid internships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Ancients", + "year": "2013", + "format": "", + "content": "THW would ban the use of unarmed domestic surveillance drones.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Ancients", + "year": "2013", + "format": "", + "content": "THW assassinate Iranian and North Korean nuclear scientists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Ancients", + "year": "2013", + "format": "", + "content": "THBT governments have no legal or moral obligation to respond with proportionate force to armed attacks on their citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Ancients", + "year": "2013", + "format": "", + "content": "THB the ICC should not issue warrants for suspects during ongoing conflicts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Glasgow Ancients", + "year": "2013", + "format": "", + "content": "TH regrets the centralisation of organised religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2013", + "format": "", + "content": "THW allow parents of children with Klüver-Bucy syndrome to sterilise those children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2013", + "format": "", + "content": "THW make access to museums art exhibitions concerts etc. attractions free for people earning less than a certain wage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2013", + "format": "", + "content": "THW prohibit films about historical or political events,or those of a biographical nature, unless produced as documentaries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2013", + "format": "", + "content": "THB former colonial powers should maintain a presence in former colonies,in the interest of benefiting those colonies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UL Open", + "year": "2013", + "format": "", + "content": "THB emphasis on the depiction of the \"normal\" female body is no more empowerment than equal emphasis on the \"perfect\" female body.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2013", + "format": "", + "content": "THBT single parents sent to prison should be able to raise their children in prison.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2013", + "format": "", + "content": "TH, as Israel, would grant exemptions from compulsory military service to all and only those citizens that give up their right to vote.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2013", + "format": "", + "content": "TH approves of the New York Post's decision to publish the subway photograph 'Doomed'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2013", + "format": "", + "content": "TH approves of the USA's policy of extra-judicial killing of terrorists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2013", + "format": "", + "content": "THBT at least 50% of the Legislature (Parliament) should be appointed by a socially representative random draw from the general population.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2013", + "format": "", + "content": "THBT states should disband their armed forces and use PMCs as and when necessary.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2013", + "format": "", + "content": "THBT the unemployed, living in areas of high unemployment and low private investment, should relocate to areas where their employment is more likely in order to keep their benefits.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2013", + "format": "", + "content": "THBT David Cameron was wrong to offer the British electorate a referendum on EU membership.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Polish Parliamentary Debating Championships", + "year": "2013", + "format": "", + "content": "THW officially register Pastafarianism as a religion in Poland.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Polish Parliamentary Debating Championships", + "year": "2013", + "format": "", + "content": "THW introduce tax cuts for qualified foreigners who want to settle in Poland.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Polish Parliamentary Debating Championships", + "year": "2013", + "format": "", + "content": "THW supplement Polish Constitution with the civil right of access to the Internet.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Polish Parliamentary Debating Championships", + "year": "2013", + "format": "", + "content": "THW ban advertising that invoke polishness as a value.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Polish Parliamentary Debating Championships", + "year": "2013", + "format": "", + "content": "THBT Poland should join the Eurozone as soon as possible.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Polish Parliamentary Debating Championships", + "year": "2013", + "format": "", + "content": "THBT political parties should be subject to anti-monopoly laws.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "THW ban the use of artificial human augmentation, either by surgical or genetic therapy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "THB that people who attend mass are morally responsible for the actions of the Catholic Church.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "THW allow prisoners to choose death over life sentence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter_3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "THW ban domestic drones.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter_4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh IV", + "year": "2013", + "format": "", + "content": "THW withdraw all state benefits including healthcare from the voluntarily unemployed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh IV", + "year": "2013", + "format": "", + "content": "THBT Student Unions should not take an explicit policy on abortion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh IV", + "year": "2013", + "format": "", + "content": "THB that independent states in the developing world should be allowed to unilaterally opt to become overseas territories of their former colonial powers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh IV", + "year": "2013", + "format": "", + "content": "THW ban all individuals who have advocated or used violence in order to further a political cause in a liberal democratic state, from standing for future elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh IV", + "year": "2013", + "format": "", + "content": "THW Not Shoot the Naked Soldier.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA-DTU", + "year": "2013", + "format": "", + "content": "THW ban the production and consumption of tobacco in the European Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA-DTU", + "year": "2013", + "format": "", + "content": "THW make lying by politicians punishable by law.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA-DTU", + "year": "2013", + "format": "", + "content": "TH hopes the United Kingdom will leave the European Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA-DTU", + "year": "2013", + "format": "", + "content": "THW not pursue income redistribution beyond poverty reduction (armoedebestrijding, i.e. combatting poverty).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA-DTU", + "year": "2013", + "format": "", + "content": "THW make the punishment for drunk driving equal to manslaughter, even if the driver caused no accident.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA-DTU", + "year": "2013", + "format": "", + "content": "THW set a public ultimatum: if the next pope does not implement radical reforms, the Roman Catholic church will be disbanded.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2013", + "format": "", + "content": "THBT Western Liberal Democracies should institute bans on their citizens visiting illiberal states whose economies depends on tourism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2013", + "format": "", + "content": "THW require prospective owners or large shareholders of sport clubs / teams to gain majority support from season ticket holders or other representatives of the fan base to complete their acquisition.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2013", + "format": "", + "content": "THW make conscription a war crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2013", + "format": "", + "content": "THW require close relatives of the homeless to pay their welfare costs to the extent that they can afford to do so.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2013", + "format": "", + "content": "THW allocate state funding for the arts exclusively to new and original work, and never to reproductions of ‘great works’ or other old plays, opera, music, films or art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2013", + "format": "", + "content": "This House would allow pro-life organisations to offer to pay women considering abortions to carry the baby to term (assuming adequate child support services exist).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2013", + "format": "", + "content": "THBT the International Criminal Court should focus on indicting and prosecuting larger numbers of middle-to-low ranking suspects for war crimes, crimes against humanity, or genocide, rather than smaller numbers of high ranking suspects.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2013", + "format": "", + "content": "This House believes that the civil and criminal legal system has no business considering or regulating behaviour that exclusively occurs in online virtual worlds such as ‘Second Life’.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2013", + "format": "", + "content": "This House would support policies of ‘ever increasing political union’ – i.e. progressive political integration aimed at the distant goal of federal unification – amongst members of the League of Arab States.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Galway Open (Irish National Law Debates)", + "year": "2013", + "format": "", + "content": "TH supports the legislation (legalisation?) of sex work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Galway Open (Irish National Law Debates)", + "year": "2013", + "format": "", + "content": "THBT every member of the NRA is morally culpable for the level of gun crime in the US.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Galway Open (Irish National Law Debates)", + "year": "2013", + "format": "", + "content": "THBT the government should access private electronic communications to predict and tackle crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Galway Open (Irish National Law Debates)", + "year": "2013", + "format": "", + "content": "THBT artists from privileged groups should not depict characters from underprivileged groups in their work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Galway Open (Irish National Law Debates)", + "year": "2013", + "format": "", + "content": "THBT the UN should recruit a standing army.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Galway Open (Irish National Law Debates)", + "year": "2013", + "format": "", + "content": "a pill exists to prevent you falling in love, THW take that pill.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The Galway Open (Irish National Law Debates)", + "year": "2013", + "format": "", + "content": "THW abolish private property.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Österreichischen Debattier Meisterschaft (Austrian Debate Championships)", + "year": "2013", + "format": "", + "content": "Should we intervene in Mali?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Österreichischen Debattier Meisterschaft (Austrian Debate Championships)", + "year": "2013", + "format": "", + "content": "Should the water supply be nationalised all over Europe?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Österreichischen Debattier Meisterschaft (Austrian Debate Championships)", + "year": "2013", + "format": "", + "content": "Should Incest be allowed?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Österreichischen Debattier Meisterschaft (Austrian Debate Championships)", + "year": "2013", + "format": "", + "content": "Should the possibility to revoke a PhD degree be under a statute of limitation?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Österreichischen Debattier Meisterschaft (Austrian Debate Championships)", + "year": "2013", + "format": "", + "content": "Should we, who are technically capable of it, seek contact with extraterrestrials?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Österreichischen Debattier Meisterschaft (Austrian Debate Championships)", + "year": "2013", + "format": "", + "content": "Should we ban the import of goods that were not produced under the social and ecological standards of the EU?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Österreichischen Debattier Meisterschaft (Austrian Debate Championships)", + "year": "2013", + "format": "", + "content": "Should we buy armed drones?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sciences Po Open", + "year": "2013", + "format": "", + "content": "THW return all national treasures to their countries of origin, provided they sincerely commit to preserve and display them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sciences Po Open", + "year": "2013", + "format": "", + "content": "THW end the search for extraterrestrial intelligence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sciences Po Open", + "year": "2013", + "format": "", + "content": "THBT, in the event of an immediate and unprovoked Israeli strike against Iran's nuclear facilities, the USA should make a credible pledge to support Israel in any resulting conflict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sciences Po Open", + "year": "2013", + "format": "", + "content": "THW set maximum rents for residential property in the city of Paris.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sciences Po Open", + "year": "2013", + "format": "", + "content": "THW legalise polygamy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sciences Po Open", + "year": "2013", + "format": "", + "content": "THBT Pakistan should end all cooperation with America’s War on Terror.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Sciences Po Open", + "year": "2013", + "format": "", + "content": "THBT Socrates should not have drunk the hemlock.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warwick IV", + "year": "2013", + "format": "", + "content": "THW stop all efforts to cease the international drug trade and put all funding into education and rehab.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warwick IV", + "year": "2013", + "format": "", + "content": "TH, as a progressive, would oppose the awarding of hosting rights for major international sporting competitions to 'Unprogressive' countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warwick IV", + "year": "2013", + "format": "", + "content": "THBT Advocates for Trans* people should not campaign within the feminist movement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warwick IV", + "year": "2013", + "format": "", + "content": "THBT opposition movements in countries with repressive regimes should never use violent tactics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Warwick IV", + "year": "2013", + "format": "", + "content": "TH (As the EU) would make development aid conditional upon developing countries using it for renewable energy generation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2013", + "format": "", + "content": "THW abolish trial by jury.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2013", + "format": "", + "content": "THBT, when and where gay marriage is legal, religious institutions should be compelled to conduct gay wedding ceremonies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2013", + "format": "", + "content": "THBT all policy on drugs, alcohol, tobacco and other controlled substances should be made by expert scientific panels and not elected officials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2013", + "format": "", + "content": "THBT the Arab Spring has been bad for Egypt.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2013", + "format": "", + "content": "THW punish illegal tax avoidance (evasion) by the deprivation of citizenship.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2013", + "format": "", + "content": "THBT it is impossible to be a pro-life feminist.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Inner Temple IV", + "year": "2013", + "format": "", + "content": "TH regrets that Lance Armstrong got caught.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Open_Semis", + "year": "2013", + "format": "", + "content": "THW introduce graduate tax.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Open_Semis", + "year": "2013", + "format": "", + "content": "THW ban tobacco.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Open_Semis", + "year": "2013", + "format": "", + "content": "THB freedom of speech should never be curtailed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "THW criminalise doping in sport.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "THW ban any technology that can delete or alter a person's memory.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "A pill exists that ensures \"moral behaviour\", THW ban the morality pill.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "THB that abortion referendums should be open to women voters only.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "THB countries should cease trying to prevent climate change and focus resources on preparing for its consequences.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "THB social media companies have a duty to prevent far-right or hate groups from using their platforms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "TH supports a Palestinian right of return.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2013", + "format": "", + "content": "THBT former colonial powers should never intervene militarily or economically in favour of one side in a civil war or rebellion in a former colony.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beginner Tournament Mainz (DCJG)", + "year": "2013", + "format": "", + "content": "Should the government leader at federal and state level be directly elected?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beginner Tournament Mainz (DCJG)", + "year": "2013", + "format": "", + "content": "Should employees of energy and transport companies be banned from striking?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beginner Tournament Mainz (DCJG)", + "year": "2013", + "format": "", + "content": "Should Bilbo stay home?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Beginner Tournament Mainz (DCJG)", + "year": "2013", + "format": "", + "content": "Should we create a public newspaper?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP toernooi", + "year": "2013", + "format": "", + "content": "TH, being the US, would oblige the Amish to send their children to public high schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP toernooi", + "year": "2013", + "format": "", + "content": "THW ban meat consumption.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP toernooi", + "year": "2013", + "format": "", + "content": "THW ban cosmetic/plastic surgery aimed to change racial features.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP toernooi", + "year": "2013", + "format": "", + "content": "THW introduce corporal punishment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP toernooi", + "year": "2013", + "format": "", + "content": "THW abolish the UN Security Council.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP toernooi", + "year": "2013", + "format": "", + "content": "THW make abortion mandatory in cases of severe medical conditions that lead to short and painful lives.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2013", + "format": "", + "content": "THBT student societies and newspapers should have a 'no platform' policy for extremist political figures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2013", + "format": "", + "content": "TH, as Tottenham Hotspur, would ban fans found chanting 'Yid Army'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2013", + "format": "", + "content": "THBT parents, where concerned, should install spyware to monitor their children's online activity and communications.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2013", + "format": "", + "content": "THW ban religious proselytising and faith-based rehabilitation programmes in prisons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2013", + "format": "", + "content": "THBT states should place constitutional limits on regressive taxation policies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2013", + "format": "", + "content": "TH regrets the societal acceptance of promiscuity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP Toernooi", + "year": "2013", + "format": "", + "content": "THW force pregnant minors to have an abortion or give their child up for adoption.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP Toernooi", + "year": "2013", + "format": "", + "content": "THW introduce trial by jury.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP Toernooi", + "year": "2013", + "format": "", + "content": "THBT Mexican state should create a list of known members of drug cartels and outlaw everyone on it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP Toernooi", + "year": "2013", + "format": "", + "content": "THBT CDA should vote with the ruling coalition if proposed laws satisfy the Senate criteria of redelijkheid (reasonableness, judiciousness, fairness) and samenhang (congruence with other laws) (addendum: instead of for other political criteria).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP Toernooi", + "year": "2013", + "format": "", + "content": "THW split up banks until none are “too big to fail”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP Toernooi", + "year": "2013", + "format": "", + "content": "THW only drill for gas in areas where the population has consented through a local referendum (inspired by recent opposition to gas drilling in Groningen).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2013", + "format": "", + "content": "THW not prosecute victims of domestic violence for crimes committed as a result of their abuse.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2013", + "format": "", + "content": "THBT the marketing strategies of Western NGOs have hindered the development of the global South.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2013", + "format": "", + "content": "THW ban the teaching of Romeo and Juliet in schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2013", + "format": "", + "content": "THB the campaign for marriage equality is a waste of the gay community's resources.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2013", + "format": "", + "content": "THW hold Islam accountable for the actions of Islamists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2013", + "format": "", + "content": "THBT allowing women on front lines is a victory for feminism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2013", + "format": "", + "content": "TH as an Israeli Arab would boycott Israeli elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2013", + "format": "", + "content": "THW restrict media coverage of school shootings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THW rather die before they get old.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "A1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THBT we are clever enough to engineer our doom but not to prevent it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "A2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THBT limitation nurtures creativity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "A3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THBT peace is only an illusion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "A4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THBT we should not let our schooling interfere with our education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "B1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THBT technology is killing our work ethic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "B2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THBT we should strive for immortality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "B3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THW sooner befriend an evil genius than a dull hero.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "B4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THBT Art is the highest achievement of humanity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "C1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THBT change is not progress.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "C2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THBT life is nasty, brutish and short.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "C3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THBT uncle Sam is not a member of the family.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "C4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THBT books are obsolete.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "D1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THBT it is better to learn than to be taught.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "D2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THBT true friends stab you in the front.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "D3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THBT peace depends on fear.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "D4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debating Association Tournament", + "year": "2013", + "format": "", + "content": "THBT banking institutions are more dangerous to our liberties than armies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "D5", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kingsmill Moore Invitational", + "year": "2013", + "format": "", + "content": "THBT social disgust is a sufficient justification for censoring art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kingsmill Moore Invitational", + "year": "2013", + "format": "", + "content": "THW federalise the European Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kingsmill Moore Invitational", + "year": "2013", + "format": "", + "content": "THBT the state should never negotiate with hostage takers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Regents’ IV", + "year": "2013", + "format": "", + "content": "THB the west should not recruit doctors from the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Regents’ IV", + "year": "2013", + "format": "", + "content": "THB student unions should not campaign on geo-political issues.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Regents’ IV", + "year": "2013", + "format": "", + "content": "THW ban religious based rehabilitation programs, regardless of how effective they may be.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Regents’ IV", + "year": "2013", + "format": "", + "content": "THW hold a referendum on the death penalty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Regents’ IV", + "year": "2013", + "format": "", + "content": "TH regrets the existence of mankind.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent IV", + "year": "2013", + "format": "", + "content": "THBT all components of the welfare state should be means tested.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent IV", + "year": "2013", + "format": "", + "content": "THBT feminists should support the death penalty for crimes of severe sexual assault in countries with extreme gender inequality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent IV", + "year": "2013", + "format": "", + "content": "THW ban the practice and use of all alternative therapies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent IV", + "year": "2013", + "format": "", + "content": "TH, as the USA, no longer supports the right to bear arms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent IV", + "year": "2013", + "format": "", + "content": "THW not teach vocational subjects at universities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nottingham Trent IV", + "year": "2013", + "format": "", + "content": "THW compel HIV infected people to disclose their HIV status to their sexual partners.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Hamburg", + "year": "2013", + "format": "", + "content": "Do we need to abolish public broadcasting?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Hamburg", + "year": "2013", + "format": "", + "content": "Should doping be allowed in professional sport (Leistungssport)?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Hamburg", + "year": "2013", + "format": "", + "content": "Should throw our principles away (over board)?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Hamburg", + "year": "2013", + "format": "", + "content": "Do we need schocking pictures of the slaughter and processing of meat and sausage products?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Hamburg", + "year": "2013", + "format": "", + "content": "To hell with extortionate rent prices: do we need housing socialism?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Hamburg", + "year": "2013", + "format": "", + "content": "Should we give up on climate protection?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Hamburg", + "year": "2013", + "format": "", + "content": "Should large infrastructural projects be subject to democratic control?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THW create public housing for the poor in wealthy areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THBT Japan should acquire nuclear weapons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THW only imprison individuals who pose a direct and continuing threat to society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THBT International development institutions (such as the World Bank) should not finance natural resource extraction projects in corrupt states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THBT self described progressive males of dominant ethnicities are morally obliged to refrain from taking positions of responsibility where there is a qualified alternative candidate from a historically disadvantaged group who would otherwise receive the post.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THW legally permit soldiers to refuse to participate in military actions or missions on the basis of conscience.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THBT European Union nations should forgive Greece’s sovereign debt.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THBT countries with booming populations should allocate every adult a single tradable permit to have a child.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THW ban political parties and require all candidates for national public office to seek election as independents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THBT publicly funded universities should be required to reduce enrolment in degree programs within their university that have statistically poor employment outcomes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THBT policies that may have significant environmental consequences should be subject to a veto by a 'supreme court' of scientific experts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "TH welcomes the decline of the USA as the sole global super power.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THBT publicly funded universities should be required to reduce enrolment in degree programs within their university that have statistically poor employment outcomes (same as EFL_Quarters).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THBT the feminist movement should actively promote norms of stable monogamous relationships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THBT representative democracies with large numbers of foreigners living in their territory (on a temporary or permanent basis) should create specific seats to represent them in parliament.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THBT universities should never prohibit research or teaching on the grounds of sexist, racist or otherwise discriminatory implications.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Partial_Double_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THBT the US should cut off military aid to Egypt.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THW ban all advertising of consumer goods and services.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "TBHT the WTO should never allow nations to place export restrictions on food, rare-earth metals, and other non-oil commodities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin WUDC", + "year": "2013", + "format": "", + "content": "THW not allow religious communities to expel members on the basis of views or actions that contradict doctrinal teachings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA European Cup", + "year": "2012", + "format": "", + "content": "THBT all professional football clubs should be majority owned by their supporters.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA European Cup", + "year": "2012", + "format": "", + "content": "THW ban children from participating in religious activities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA European Cup", + "year": "2012", + "format": "", + "content": "THBT emerging democracies should ban the election of close family members of current or previous office-holders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA European Cup", + "year": "2012", + "format": "", + "content": "the Greek left wing party Syriza has promised to renegotiate the current bailout, and turn back a number of austerity measures, such as lowering of pension and welfare benefits. Motion: As a Greek voter, THW vote for Syriza.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2012", + "format": "", + "content": "THBT the state should subsidise news media outlets.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2012", + "format": "", + "content": "THBT the government of the DRC should hire private military companies to defeat rebels in North and South Kivu.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2012", + "format": "", + "content": "TH supports citizen-initiated referendums*.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2012", + "format": "", + "content": "THBT the Japanese government should renounce pacifism and rearm.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2012", + "format": "", + "content": "TH supports the legalisation of the production, sale, purchase and consumption of All recreational drugs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2012", + "format": "", + "content": "THW alter World Trade Organisation rules to allow poor countries to erect protectionist barriers against rich countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Birmingham IV", + "year": "2012", + "format": "", + "content": "THW, as the UK, give up its nuclear arsenal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Centrale Open", + "year": "2012", + "format": "", + "content": "THBT all criminal trials should be decided by a jury verdict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Centrale Open", + "year": "2012", + "format": "", + "content": "THW allow employers to offer a contract to their female employees giving up their right to become pregnant.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Centrale Open", + "year": "2012", + "format": "", + "content": "This House believes that governments should end all direct international aid, and donate money to Non Governmental Organizations (e.g. Oxfam, Médicins Sans Frontièrs) instead.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Centrale Open", + "year": "2012", + "format": "", + "content": "THW remove bylines from individual newspaper articles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Centrale Open", + "year": "2012", + "format": "", + "content": "THW rather spend the money on subsidised housing and living costs for migrants in the centre of Paris than investment in the Banlieues.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Centrale Open", + "year": "2012", + "format": "", + "content": "TH, as a draftee, would dodge the draft.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Centrale Open", + "year": "2012", + "format": "", + "content": "The Twin Towers were a recognizable part of the famous New York skyline. On the 11th of September on 2001 they were destroyed by a terrorist attack. In 2011 the New York City Office commissioned the building of the Freedom Tower on Ground Zero. Motion: THW have instead rebuilt the world trade centre to original specifications, but one floor higher.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The English Cup", + "year": "2012", + "format": "", + "content": "THW ban homeschooling.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The English Cup", + "year": "2012", + "format": "", + "content": "TH, which is the US, would stop the use of armed military drones in pakistan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The English Cup", + "year": "2012", + "format": "", + "content": "THW offer financial incentives for bringing in elusive criminals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The English Cup", + "year": "2012", + "format": "", + "content": "THW require all companies to publish salaries to the entire public.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "The English Cup", + "year": "2012", + "format": "", + "content": "THW obligate newly formed states that were formed through violent resistance to pay reparations for harms and casualties which were caused by their struggle.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Baden-Württemberg", + "year": "2012", + "format": "", + "content": "Should people who have lived a healthy life be given preferential access to donated organs?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Baden-Württemberg", + "year": "2012", + "format": "", + "content": "Should we establish worker participation (unternehmerische Mitbestimmung) in corporations in all of Europe?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Baden-Württemberg", + "year": "2012", + "format": "", + "content": "Should public television give all sexual variations (sexuellen Spielarten) proportionally equal representation?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Baden-Württemberg", + "year": "2012", + "format": "", + "content": "Should the UN make the knowledge of how to build an atomic weapon available upon request?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2012", + "format": "", + "content": "THBT the expansion in the proportion of the population attending university has done more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2012", + "format": "", + "content": "THW punish poachers of endangered species in the same way as murderers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2012", + "format": "", + "content": "THBT developing countries should ban non citizens from purchasing real estate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2012", + "format": "", + "content": "THBT MGM studios should cast a woman as the next Bond.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2012", + "format": "", + "content": "THBT the United States Should fund Madrassas in Pakistan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2012", + "format": "", + "content": "THBT the Mexican government should offer immunity for economic crimes to drug cartels in exchange for not targeting the police, military or civilians.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lancaster IV", + "year": "2012", + "format": "", + "content": "THS the reappropriation of the word 'nigger.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga & LMT IV", + "year": "2012", + "format": "", + "content": "THW ban sports, where the main purpose is to inflict pain (e.g. boxing, martial arts).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga & LMT IV", + "year": "2012", + "format": "", + "content": "THBT the state should fund the identity change, including changing their legal name and physical appearance, of infamous prisoners upon their release.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga & LMT IV", + "year": "2012", + "format": "", + "content": "THBT Western countries should offer to immediately cancel all debts owed by any authoritarian country upon its transition to democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga & LMT IV", + "year": "2012", + "format": "", + "content": "THBT the gay rights movement should campaign for the abolition of marriage, rather than marriage equality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga & LMT IV", + "year": "2012", + "format": "", + "content": "THW ban all political polls before any election.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga & LMT IV", + "year": "2012", + "format": "", + "content": "THW make the use of conscripts in active combat a war crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga & LMT IV", + "year": "2012", + "format": "", + "content": "THBT from kindergarten onwards all education should be gender neutral.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol IV", + "year": "2012", + "format": "", + "content": "THS state-provision of cosmetic surgery and surgical enhancements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol IV", + "year": "2012", + "format": "", + "content": "THBT South Korea should provide unconditional humanitarian aid and assistance to North Korea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol IV", + "year": "2012", + "format": "", + "content": "THW allow victims of miscarriages of justice to sue expert witnesses for incompetence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol IV", + "year": "2012", + "format": "", + "content": "THW subsidise feminist pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol IV", + "year": "2012", + "format": "", + "content": "THW fabricate evidence in order to create the impression that historical national heroes had been gay.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol IV", + "year": "2012", + "format": "", + "content": "THS the creation of a Black Players' Union in the English Premier League.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bristol IV", + "year": "2012", + "format": "", + "content": "TH regrets the popular veneration of Che Guevara.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2012", + "format": "", + "content": "THW only release prisoners if they are rehabilitated.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2012", + "format": "", + "content": "THBT slacktivism has harmed activism more than it has benefited it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2012", + "format": "", + "content": "TH supports a technocratic government in times of dire financial crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2012", + "format": "", + "content": "THW ban all lobbyist activity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2012", + "format": "", + "content": "THBT matchmaking is a better system than dating.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2012", + "format": "", + "content": "THW allow parents to sell their babies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Tilbury House IV", + "year": "2012", + "format": "", + "content": "THBT a society in which charity and donations are prevalent is preferable to a society with a state run welfare system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates", + "year": "2012", + "format": "", + "content": "TH welcomes the government’s proposed fat tax.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates", + "year": "2012", + "format": "", + "content": "TH regrets the demise of the Green Party.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates", + "year": "2012", + "format": "", + "content": "THB Enda deserved his place on the cover of TIME.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates", + "year": "2012", + "format": "", + "content": "THW abolish the minimum wage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates", + "year": "2012", + "format": "", + "content": "THB the diaspora should b‘The Gathering’.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates", + "year": "2012", + "format": "", + "content": "THW not negotiate with Hamas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates", + "year": "2012", + "format": "", + "content": "THB it can no longer support the ‘Barclays Premier League’.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates", + "year": "2012", + "format": "", + "content": "THB feminism has run its course in Ireland.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "King’s College IV", + "year": "2012", + "format": "", + "content": "THBT Bert and Ernie should get married.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "King’s College IV", + "year": "2012", + "format": "", + "content": "TH regrets the 2001 Afghanistan invasion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "King’s College IV", + "year": "2012", + "format": "", + "content": "THBT NASA should fund suicide missions to Mars.", + "infoSlide": "Hypothetically, in 10 years, it would be possible to send a manned mission to Mars. However, the crew wouldn't be able to return alive.", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "King’s College IV", + "year": "2012", + "format": "", + "content": "THBT Governments should not assist in the rebuilding of disaster prone areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "King’s College IV", + "year": "2012", + "format": "", + "content": "THBT feminist christians should leave the Church of England.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nikolausturnier", + "year": "2012", + "format": "", + "content": "THW force insurance companies to have equal insurance premiums for men and women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nikolausturnier", + "year": "2012", + "format": "", + "content": "THW give the members of every political party the right to determine the voting behaviour of their deputies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nikolausturnier", + "year": "2012", + "format": "", + "content": "THW offer Maria its own bed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Nikolausturnier", + "year": "2012", + "format": "", + "content": "THW make all the proceeds that a professors earns with their books and other academic work available to their universities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BGU IV", + "year": "2012", + "format": "", + "content": "TH supports a preference for mothers in custody trials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BGU IV", + "year": "2012", + "format": "", + "content": "THW grant high ranking army officers the right to veto government decisions regarding security.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BGU IV", + "year": "2012", + "format": "", + "content": "THW abolish intellectual property rights over music.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BGU IV", + "year": "2012", + "format": "", + "content": "THW abolish mandatory retirement age.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BGU IV", + "year": "2012", + "format": "", + "content": "TH prefers a strong dictatorship to a weak democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "BGU IV", + "year": "2012", + "format": "", + "content": "THBT Marx would have approved of the internet.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2012", + "format": "", + "content": "THW require prospective parents to obtain parenting licences prior to having children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2012", + "format": "", + "content": "THW require all news media to graphically depict under-reported armed conflicts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2012", + "format": "", + "content": "THBT the EU should suspend the membership rights of countries if they elect extremist parties to government (for example, Greece's Golden Dawn or the UK's British National Party).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2012", + "format": "", + "content": "THB artists should not set out to sympathetically portray characters who hold morally repugnant world views.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2012", + "format": "", + "content": "THW ban all medical procedures intended to change an individual's racial appearance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2012", + "format": "", + "content": "THW introduce blind voting in national elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2012", + "format": "", + "content": "THB the ICC should open an investigation on war crimes in Palestine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2012", + "format": "", + "content": "THBT citizens have no moral obligation to obey laws which they personally believe may be unjust.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2012", + "format": "", + "content": "TH supports direct elections of governors in Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2012", + "format": "", + "content": "THW only allow pornography produced and directed by Women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2012", + "format": "", + "content": "THBT consumer electronics firms should not be allowed to patent technologies which are not essential to the working of their product.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2012", + "format": "", + "content": "TH, as Germany, would leave the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2012", + "format": "", + "content": "THW remove all special legal privileges from religious organisations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2012", + "format": "", + "content": "THBT Russia should immediately withdraw all support from the Assad regime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Münster Ironman", + "year": "2012", + "format": "", + "content": "THBT separate sports competitions for women harm the feminist cause.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Münster Ironman", + "year": "2012", + "format": "", + "content": "THW set up Christian mission schools in Pakistan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Münster Ironman", + "year": "2012", + "format": "", + "content": "THW ban transport of persons and goods by beaming.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Münster Ironman", + "year": "2012", + "format": "", + "content": "THW not want a German Europe.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Münster Ironman", + "year": "2012", + "format": "", + "content": "THW set up brothels in military bases abroad.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA Debate@Europe final event", + "year": "2012", + "format": "", + "content": "THBT the European Union should ban art, including literature or film, that directly insults any religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA Debate@Europe final event", + "year": "2012", + "format": "", + "content": "THBT the EU should oblige its member states to include positive references to LGBT individuals and issues in their high school textbooks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA Debate@Europe final event", + "year": "2012", + "format": "", + "content": "THBT the European Union should guarantee membership to regions of existing EU member states, such as Catalonia or Scotland, that secede.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA Debate@Europe final event", + "year": "2012", + "format": "", + "content": "THB that Europe should weaken its austerity measures to guarantee its citizens greater social support.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDEA Debate@Europe final event", + "year": "2012", + "format": "", + "content": "THW ban far-right parties from competing in elections in European countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2012", + "format": "", + "content": "THW force universities to create stricter entrance requirements, even if this would lead to fewer students.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2012", + "format": "", + "content": "THW ban the publication of any photographic and film material that portrays crime suspects.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2012", + "format": "", + "content": "TH, being a teenager, would not open a Facebook account.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2012", + "format": "", + "content": "THW force schools to offer students intensive interaction with different worldviews.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2012", + "format": "", + "content": "THW allow the Supreme Court to reject laws if they contradict the constitution (this is not SQ in the Netherlands).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2012", + "format": "", + "content": "THW grant the ECB the right to limit member country’s sovereign debt.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2012", + "format": "", + "content": "THW subsidise genetical modification on humans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace England Leg", + "year": "2012", + "format": "", + "content": "THW Abolish National School Curriculums.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace England Leg", + "year": "2012", + "format": "", + "content": "THBT in Times of High Unemployment, Governments Should Remove all Minimum Standard Regulations in the Labour Market.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace England Leg", + "year": "2012", + "format": "", + "content": "THB India should not allow Tesco or Walmart into their national market.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace England Leg", + "year": "2012", + "format": "", + "content": "THW Punish Parents when Their Children Bully Others at School.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace England Leg", + "year": "2012", + "format": "", + "content": "TH Regrets the Rise of the Career Politician.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace England Leg", + "year": "2012", + "format": "", + "content": "THBT, where resources are scare, minority campaign groups should fund minority art, literature and films rather than funding lobbying for legislative change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace England Leg", + "year": "2012", + "format": "", + "content": "THB that the Press Cannot be Trusted to Regulate Itself :.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS tournament", + "year": "2012", + "format": "", + "content": "THBT access to the internet is a human right.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS tournament", + "year": "2012", + "format": "", + "content": "THW penalise politicians who break pre-election pledges.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS tournament", + "year": "2012", + "format": "", + "content": "THB that online activism is counterproductive.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS tournament", + "year": "2012", + "format": "", + "content": "TH regrets the rapid expansion of online education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS tournament", + "year": "2012", + "format": "", + "content": "TH supports censorship of pornography on the internet.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS tournament", + "year": "2012", + "format": "", + "content": "THBT in the era of the Internet we should adopt a global hate speech law.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS tournament", + "year": "2012", + "format": "", + "content": "THBT hacktivism is a legitimate tool of protest against multinational corporations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS tournament", + "year": "2012", + "format": "", + "content": "THBT an unregulated Internet does more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund Debate Challenge", + "year": "2012", + "format": "", + "content": "THW decriminalize incest between consenting adults.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund Debate Challenge", + "year": "2012", + "format": "", + "content": "THB enterprises and charities are more effective for development than official development assistance (ODAs).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund Debate Challenge", + "year": "2012", + "format": "", + "content": "THW collect DNA of every newborn child in order to prevent and solve future crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund Debate Challenge", + "year": "2012", + "format": "", + "content": "THW refuse American statehood to Puerto Rico.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Lund Debate Challenge", + "year": "2012", + "format": "", + "content": "THW forbid universities from accepting donations earmarked for the pseudo-sciences.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Tübingen", + "year": "2012", + "format": "", + "content": "Should prisoners temporarily lose their right to vote?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Tübingen", + "year": "2012", + "format": "", + "content": "Should punishment for use of doping be subject to a statute of limitation?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Tübingen", + "year": "2012", + "format": "", + "content": "Should people who are in a relationship with an enemy of the constitution (Verfassungsfeinden) be considered enemies of the constitution too?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Tübingen", + "year": "2012", + "format": "", + "content": "Should people have the right to erase/block the autocomplete for their names in search engines?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Tübingen", + "year": "2012", + "format": "", + "content": "Should James Bond retire?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Tübingen", + "year": "2012", + "format": "", + "content": "Should citizens be forced to borrow money to the state in times of crisis? (Should it become mandatory for citizens).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Tübingen", + "year": "2012", + "format": "", + "content": "Should corporate sponsorship of dangerous (life-threatening) sports and stunts?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2012", + "format": "", + "content": "THW create a permanent seat for the Travelling Community in the Dáil.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2012", + "format": "", + "content": "THW create a constituency for the Irish abroad.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2012", + "format": "", + "content": "THW allow Asylum Seekers to work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2012", + "format": "", + "content": "THW compel parents to take equal paternity and maternity leave.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2012", + "format": "", + "content": "THW require the unemployed to participate in community work to be eligible for social welfare.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2012", + "format": "", + "content": "THW re-introduce the punishment of banishment for serious crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2012", + "format": "", + "content": "THW grant the police the ability to stop and search without reasonable suspicion in designated areas and times.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace", + "year": "2012", + "format": "", + "content": "THB the US Federal Government should continue to enforce the national prohibition on drugs in states which legalise the personal use of cannabis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Iasi BP Open", + "year": "2012", + "format": "", + "content": "THW not make state health care available to smokers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Iasi BP Open", + "year": "2012", + "format": "", + "content": "TH regrets the influence of computer games on the next generation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Iasi BP Open", + "year": "2012", + "format": "", + "content": "THW ban pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Iasi BP Open", + "year": "2012", + "format": "", + "content": "THBT the European Union should open its borders to all immigrants.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Iasi BP Open", + "year": "2012", + "format": "", + "content": "THW give all animals capable of respecting all citizen obligations equal rights to humans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2012", + "format": "", + "content": "The state should pay a living wage to stay at home parents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2012", + "format": "", + "content": "THB all donor countries should freeze aid to Rwanda.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2012", + "format": "", + "content": "THW hold the senior executives of major banks and rating agencies criminally liable for the actions of their companies that led to the Global Financial Crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2012", + "format": "", + "content": "THBT democratic reform is more important than economic growth for China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2012", + "format": "", + "content": "THBT prosecutors should never offer reduced sentences in exchange for testifying against others.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2012", + "format": "", + "content": "THBT that Japan should not abandon nuclear power.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2012", + "format": "", + "content": "TH regrets the rise of 24 hour news culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2012", + "format": "", + "content": "THBT all companies should be at least 75% owned by their workforce, in equal shares.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2012", + "format": "", + "content": "THBT Egypt should provide a military security guarantee against the invasion of Gaza.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brno Open", + "year": "2012", + "format": "", + "content": "THW adopt life sentences without parole.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brno Open", + "year": "2012", + "format": "", + "content": "THW not read fairytales which contain gender stereotypes to children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brno Open", + "year": "2012", + "format": "", + "content": "THW grant tax cuts to large foreign investors.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brno Open", + "year": "2012", + "format": "", + "content": "THW cancel permanent membership and veto power in the UN Security Council.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brno Open", + "year": "2012", + "format": "", + "content": "THBT all regionally concentrated ethnic minorities should be granted territorial autonomy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Brno Open", + "year": "2012", + "format": "", + "content": "THBT the European Union should open its borders for immigrants from third world countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ESCP Debating Open", + "year": "2012", + "format": "", + "content": "THBT states in the developing world should invest in sex tourism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ESCP Debating Open", + "year": "2012", + "format": "", + "content": "THW allow all doping in professional sports.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ESCP Debating Open", + "year": "2012", + "format": "", + "content": "THW choose immortality over the opportunity to have children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Debates da Sociedade de Debates da Universidade de Coimbra (SDUC)", + "year": "2012", + "format": "", + "content": "TH supports lifting the celibacy of the Catholic Church.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Debates da Sociedade de Debates da Universidade de Coimbra (SDUC)", + "year": "2012", + "format": "", + "content": "THW ban the German Chancellor, Angela Merkel, from adopting children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Debates da Sociedade de Debates da Universidade de Coimbra (SDUC)", + "year": "2012", + "format": "", + "content": "THW require all Portuguese to spend 25 € per month on local products.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Debates da Sociedade de Debates da Universidade de Coimbra (SDUC)", + "year": "2012", + "format": "", + "content": "THBT all children should have location chips.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Debates da Sociedade de Debates da Universidade de Coimbra (SDUC)", + "year": "2012", + "format": "", + "content": "THBT Wikipedia should be put on the UNESCO World Heritage list.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Debates da Sociedade de Debates da Universidade de Coimbra (SDUC)", + "year": "2012", + "format": "", + "content": "TH defends that austerity is the solution to the (economic) crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna Freshers", + "year": "2012", + "format": "", + "content": "THW ban smoking entirely.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna Freshers", + "year": "2012", + "format": "", + "content": "THBT there should be obligatory equal parental leave for women and men.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna Freshers", + "year": "2012", + "format": "", + "content": "THW prosecute violent fouls as criminal assault.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna Freshers", + "year": "2012", + "format": "", + "content": "THBT testing on animals is immoral.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna Freshers", + "year": "2012", + "format": "", + "content": "THBT state funded space programs are a waste of tax payers' money.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2012", + "format": "", + "content": "THBT Google, YouTube, & social media websites should remove content which it deems to insult religions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2012", + "format": "", + "content": "THB the ANC should nationalize all mines.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2012", + "format": "", + "content": "THBT Western governments should buy the freedom of slaves.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2012", + "format": "", + "content": "THBT the Greek military should suspend democratic government until economic recovery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2012", + "format": "", + "content": "THBT companies should not take public stance in gay right issues.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2012", + "format": "", + "content": "THB governments should actively discourage consumerist lifestyles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2012", + "format": "", + "content": "THW give extra votes to youths over the age of 18.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2012", + "format": "", + "content": "THBT Emily's list should fund pro-choice male candidates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2012", + "format": "", + "content": "THBT States should forcibly reverse the transmigration policies of their former dictators.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2012", + "format": "", + "content": "THB in the right to bear arms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UK Debate Challenge", + "year": "2012", + "format": "", + "content": "THW abolish all political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UK Debate Challenge", + "year": "2012", + "format": "", + "content": "THW allow workers to sell employment rights back to their employers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UK Debate Challenge", + "year": "2012", + "format": "", + "content": "THBT the right to decide the timing and manner of one's death is a fundamental component of liberty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UK Debate Challenge", + "year": "2012", + "format": "", + "content": "THBT the Myanmar NLD should actively support a pro-democracy campaign of civil disobedience.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UK Debate Challenge", + "year": "2012", + "format": "", + "content": "THW remove immunity from prosecution from holders of high political office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UK Debate Challenge", + "year": "2012", + "format": "", + "content": "THBT the works of hip hop legends such as Tupac Shakur, the Wu Tang Clan and JayZ should be taught in schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UK Debate Challenge", + "year": "2012", + "format": "", + "content": "THBT the capitalist system is incompatible with a just society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2012", + "format": "", + "content": "THW ban male circumcision for Under 18s, except for medical reasons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2012", + "format": "", + "content": "TH wants the USA to lead a Coalition of the Willing to intervene militarily in Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2012", + "format": "", + "content": "THBT developed countries should not retaliate to protectionist measures by developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2012", + "format": "", + "content": "THW publicly shame persons found guilty of committing hate speech.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2012", + "format": "", + "content": "THBT Britain should seek issue based coalitions rather than a further integration into the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2012", + "format": "", + "content": "This House would ban extremist political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2012", + "format": "", + "content": "This House would allow prospective mothers to take the pill.\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2012", + "format": "", + "content": "This House would support the partition of nation-states along their ethnic lines.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Welsh Novices", + "year": "2012", + "format": "", + "content": "THW not allow anybody under the age of 18 to leave school without first having passed all of their exams.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Welsh Novices", + "year": "2012", + "format": "", + "content": "THW institute gender and racial quotas in all government cabinets.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Welsh Novices", + "year": "2012", + "format": "", + "content": "THW only intervene in arab uprisings if guaranteed preferential economic agreements in return.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Welsh Novices", + "year": "2012", + "format": "", + "content": "THW Make it a criminal offence to know of a crime and not report it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Welsh Novices", + "year": "2012", + "format": "", + "content": "THBT pieces of major social legislation, notably gay marriage, should be passed only by referendum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2012", + "format": "", + "content": "THBT the media should not report on a terrorist attack immediately after the event.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2012", + "format": "", + "content": "THW introduce irreversible laws to be programmed into robots.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2012", + "format": "", + "content": "THW take charitable status away from religious institutions that do not teach comprehensive sexual education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2012", + "format": "", + "content": "THBT it is legitimate for nations to destabilise the governments that are complicit in the production of hardcore narcotics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Newcastle IV", + "year": "2012", + "format": "", + "content": "THBT state education should purposely undermine the normal gender roles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2012", + "format": "", + "content": "THW Remove All UEFA's Limits on Football Club Spending (which includes transfer and salaries).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2012", + "format": "", + "content": "THBT the European Union should guarantee membership to regions of member states that secede from their parent state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2012", + "format": "", + "content": "THW fund hymen reconstruction.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2012", + "format": "", + "content": "TH Regrets the 2001 invasion of Afghanistan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2012", + "format": "", + "content": "THBT MGM Film Studios should cast a woman as the next James Bond.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2012", + "format": "", + "content": "THBT Japanese Leaders are justified in honouring the Yasukuni War Shrines.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2012", + "format": "", + "content": "You are a Liberal leaning journalist covering the White House, you have received exclusive and indisputable evidence that during his college years Barack Obama had an active gay sexual life, THW Publish the Story.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2012", + "format": "", + "content": "THBT the West should support a power-sharing deal between the Afghan government and the Taliban.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2012", + "format": "", + "content": "THBT Latin American countries should use private military contractors to police high crime areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2012", + "format": "", + "content": "THBT the feminist movement should renounce the title of \"Feminism\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Open", + "year": "2012", + "format": "", + "content": "THBT in order to be eligible for public funding, art must be subject to a double-blind test, in which it is judged anonymously by an art critic, and by members of the public against the work of a 5-year-old.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Namda Novices", + "year": "2012", + "format": "", + "content": "THW, ban national football teams who fans use racist or homophobic chants, from international competition.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Namda Novices", + "year": "2012", + "format": "", + "content": "THW require local councils to provide sufficient plots for gypsies in spite of local opposition.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Namda Novices", + "year": "2012", + "format": "", + "content": "THW allow law enforcement agencies to monitor the phones, emails, internet activity and text messages of anyone who has been convicted of a crime linked to organised crime (as opposed to a hypothetical status quo where permission is granted on a case by case basis, where a judge must approve it based on evidence that the person is currently committing a crime).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Namda Novices", + "year": "2012", + "format": "", + "content": "THW force clinically obese children to attend residential weight loss and education camps during the summer holidays.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Namda Novices", + "year": "2012", + "format": "", + "content": "THBT western nations should launch pre-emptive air strikes against Iranian nuclear facilities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Namda Novices", + "year": "2012", + "format": "", + "content": "THBT in order for full gender equality to be achieved, all images designed to even slightly sexually attract or arouse the viewer must be banned.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Vice-President’s Cup", + "year": "2012", + "format": "", + "content": "THW allow people in developing countries to sell themselves into slavery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Vice-President’s Cup", + "year": "2012", + "format": "", + "content": "THW require artists to obtain permission from the subject/muse of a work of art prior to its release.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Vice-President’s Cup", + "year": "2012", + "format": "", + "content": "THW give the ECB a veto over all national budgets within the Eurozone.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Vice-President’s Cup", + "year": "2012", + "format": "", + "content": "As a Parent, THIW Raise its Child Gender Neutral.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Vice-President’s Cup", + "year": "2012", + "format": "", + "content": "THBT it is not the role of a Government to reduce the relative poverty of its citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Vice-President’s Cup", + "year": "2012", + "format": "", + "content": "THBT the state should, were possible, teach children in their vernacular language.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Vice-President’s Cup", + "year": "2012", + "format": "", + "content": "THBT the UCI should establish a truth and reconciliation commission to deal with doping in cycling.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Novice IV", + "year": "2012", + "format": "", + "content": "THBT the right to bear arms is the right to be free.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Novice IV", + "year": "2012", + "format": "", + "content": "THBT the world would be a better place if nobody believed in God.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Novice IV", + "year": "2012", + "format": "", + "content": "THW ban private healthcare and replace it with a comprehensive public system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Novice IV", + "year": "2012", + "format": "", + "content": "THB corrupt, benevolent and capable dictatorship is preferable to corrupt and inept democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD Novice IV", + "year": "2012", + "format": "", + "content": "THW Require the Public Registration of All Psychics and the Suppression of their Abilities with Drugs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall (SSDC Novices)", + "year": "2012", + "format": "", + "content": "THW legalise polygamy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall (SSDC Novices)", + "year": "2012", + "format": "", + "content": "THW financially incentivise voting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall (SSDC Novices)", + "year": "2012", + "format": "", + "content": "THBT the West should impose sanctions on Israel until it disbands its nuclear programme and relinquishes control of all nuclear weapons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall (SSDC Novices)", + "year": "2012", + "format": "", + "content": "THW ban protests at any event connected to a military funeral.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall (SSDC Novices)", + "year": "2012", + "format": "", + "content": "TH supports Scottish independence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall (SSDC Novices)", + "year": "2012", + "format": "", + "content": "THW out closeted LGBT public figures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Debate Masters", + "year": "2012", + "format": "", + "content": "THW abolish ethical checks on social science experiments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Debate Masters", + "year": "2012", + "format": "", + "content": "THBT Turkey should intervene militarily in Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Debate Masters", + "year": "2012", + "format": "", + "content": "THW set a maximum amount to be spent on health care per QUALY (Quality Adjusted Life Year).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Debate Masters", + "year": "2012", + "format": "", + "content": "THBT the judges in Supreme Court should be elected directly by the American people.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gutenberg Cup", + "year": "2012", + "format": "", + "content": "Should Robin be allowed to drive the Batmobil too?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gutenberg Cup", + "year": "2012", + "format": "", + "content": "Does Snowhite need only one Dwarf?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gutenberg Cup", + "year": "2012", + "format": "", + "content": "Do we need a women’s quota in prison?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gutenberg Cup", + "year": "2012", + "format": "", + "content": "Do we need an ECO-label for organs?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Gutenberg Cup", + "year": "2012", + "format": "", + "content": "Should the Dönertier be placed under environmental protection?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2012", + "format": "", + "content": "TH regrets the criminalisation of squatting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2012", + "format": "", + "content": "THW allow high-ranked army officials, when in agreement, to reverse decisions made by democratic governments regarding military missions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2012", + "format": "", + "content": "THW fund research into the existence of a violent gene.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2012", + "format": "", + "content": "THB that LGBTQI activism in countries with strong anti-gay policies does more harm than good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2012", + "format": "", + "content": "THW abolish all term-limits on the service of elected heads of state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2012", + "format": "", + "content": "THW not allow members of the royal family to serve in active combat.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2012", + "format": "", + "content": "THB that European States should end all funding for the arts until everyone lives above the national poverty level.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2012", + "format": "", + "content": "THB it is legitimate for states to deny residence or asylum to immigrants who openly contradict their predominant values.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2012", + "format": "", + "content": "You are the British government. You have full guarantee that SAS (special air service) can enter the prison which currently holds the Pussy Riot Girls in Russia and you can remove them safely. THW enter Russia and remove the Pussy Riot Girls from their cells.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2012", + "format": "", + "content": "THB the state should actively prosecute sexist and misogynist remarks..", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Alternative Open", + "year": "2012", + "format": "", + "content": "THW ban memory erasing technology (Eternal Sunshine of the Spotless Mind).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Alternative Open", + "year": "2012", + "format": "", + "content": "THBT it is legitimate for Replicants to destroy any and all means of replicant production (Bladerunner).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Alternative Open", + "year": "2012", + "format": "", + "content": "THW establish an independent 'prawn' state (District 9).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Alternative Open", + "year": "2012", + "format": "", + "content": "something about clones being happier if they didn't know they were clones. (Never Let Me Go).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Alternative Open", + "year": "2012", + "format": "", + "content": "THW give the 4-5-6 the 10% of children from the bottom of the league tables (Or, THW implement PLEB) (Torchwood: Children of the Earth).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2012", + "format": "", + "content": "THBT adults who are not on the organ donor list should not be eligible to receive organ transplants.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2012", + "format": "", + "content": "THBT players who are found to have racially abused their fellow competitors should be banned for life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2012", + "format": "", + "content": "THW ban the depiction of the Prophet Muhammad (Peace Be Upon Him).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2012", + "format": "", + "content": "THW prefer US Presidential candidates to be selected exclusively by party elites.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCL President’s Cup", + "year": "2012", + "format": "", + "content": "THBT the LGBT Movement Should Not Out Homosexual Politicians That Publicly Profess Homophobic Views.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2012", + "format": "", + "content": "THBT the State should pay for university education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2012", + "format": "", + "content": "THW abolish all hate crime laws and instead prosecute according to criminal law.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2012", + "format": "", + "content": "THS eco-terrorism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2012", + "format": "", + "content": "THBT the identity of the artist should be obscured from those who buy and display the art (approximation).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2012", + "format": "", + "content": "THW financially incentivize drug and alcohol addicts not to have children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2012", + "format": "", + "content": "THBT in the event of a Syrian border attack on Turkey, NATO should come to the aid of Turkey.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2012", + "format": "", + "content": "TH welcomes the death of god at the hands of science.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Lisboa", + "year": "2012", + "format": "", + "content": "THW prohibit the grievance of religious beliefs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Lisboa", + "year": "2012", + "format": "", + "content": "THW defend that universities give preference to disadvantaged students.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Lisboa", + "year": "2012", + "format": "", + "content": "THBT illegal downloading is not criminal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Lisboa", + "year": "2012", + "format": "", + "content": "THW allow private companies to resort to openly discriminatory hiring practices.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Lisboa", + "year": "2012", + "format": "", + "content": "THW recognise the independence of Catalunia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Open de Lisboa", + "year": "2012", + "format": "", + "content": "THB in revolution as a solution to the country’s problems.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DDG Master’s Cup", + "year": "2012", + "format": "", + "content": "THB in the right of bodily integrity of children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DDG Master’s Cup", + "year": "2012", + "format": "", + "content": "THW out homosexual football players (or forcibly out those it knows about).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DDG Master’s Cup", + "year": "2012", + "format": "", + "content": "THW abolish the Beamtenstatus (i.e. a body of exceptions to the laws governing all citizens of the state granted to some categories of civil servants).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DDG Master’s Cup", + "year": "2012", + "format": "", + "content": "TH chooses immortality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DDG Master’s Cup", + "year": "2012", + "format": "", + "content": "TH declares the war on drugs a failure.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DDG Master’s Cup", + "year": "2012", + "format": "", + "content": "THBT it is (fully) sufficient to combat the symptoms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Academy Open (RA Open)", + "year": "2012", + "format": "", + "content": "THW abolish referenda.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Academy Open (RA Open)", + "year": "2012", + "format": "", + "content": "THW not allow immigrants with illiberal values, such as homophobia, to settle in the country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Academy Open (RA Open)", + "year": "2012", + "format": "", + "content": "THW vote for Obama.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Academy Open (RA Open)", + "year": "2012", + "format": "", + "content": "THBT western countries should criminalize depictions of the Prophet Muhammed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Academy Open (RA Open)", + "year": "2012", + "format": "", + "content": "THBT sport's governing bodies, such as IOC and FIFA, should allow performance enhancing pharmaceuticals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Academy Open (RA Open)", + "year": "2012", + "format": "", + "content": "THB the EU should not pay rural subsidies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Roosevelt Academy Open (RA Open)", + "year": "2012", + "format": "", + "content": "THW not use prison to punish non-violent offenders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2012", + "format": "", + "content": "This house, as Germany, would immediately cease all reparations to the State of Israel.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2012", + "format": "", + "content": "THW incentivize employers to hire non-college graduates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2012", + "format": "", + "content": "THBT decisions on the legalisation, banning, or limiting of substances, including, but not limited to narcotics, tobacco & alcohol should be left to panels of experts rather than to elected representatives.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2012", + "format": "", + "content": "THW require any journalist working for a print,TV or radio news organization to have a government.-issued license.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2012", + "format": "", + "content": "THW force anyone suspected of being a 'stolen child' [under the Argentinian military junta 1976-1983] to undergo DNA testing to establish whether they are indeed stolen children and then make the results public.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2012", + "format": "", + "content": "THW require all isolated religious communities (eg. Hasidic Jews, Jehova's Witnesses) to give all 18-year-olds a 'Rumspringa' [Amish tradition of sending off 18-y.-olds to live in outside world for 1 year, after which they may chose to return or not].", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2012", + "format": "", + "content": "THBT all Government Policy Should Follow the Strict Logic of Maximizing Total Happiness.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2012", + "format": "", + "content": "THBT the State of Israel should immediately and publicly end all attempts to capture or kill Nazi war criminals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2012", + "format": "", + "content": "This house would ban sports, where the main purpose is to inflict pain (e.g. boxing, martial arts).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2012", + "format": "", + "content": "This house believes that the state should fund the identity change, including changing their legal name and physical appearance, of infamous prisoners upon their release.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2012", + "format": "", + "content": "This house believes that Western countries should offer to immediately cancel all debts owed by any authoritarian country upon its transition to democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2012", + "format": "", + "content": "This house believes that the gay rights movement should campaign for the abolition of marriage, rather than marriage equality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2012", + "format": "", + "content": "This house would ban all political polls before any election.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2012", + "format": "", + "content": "This house would make the use of conscripts in active combat a war crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2012", + "format": "", + "content": "This house believes that from kindergarten onwards all education should be gender neutral.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade EUDC", + "year": "2012", + "format": "", + "content": "THBT Parents Should Choose Not To Send their Children to Private Schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade EUDC", + "year": "2012", + "format": "", + "content": "THW Give First Nations Peoples (eg. Native Americans and Aboriginal Australians) Complete Autonomous Self-Government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade EUDC", + "year": "2012", + "format": "", + "content": "THBT The Music Industry Should Not Facilitate the Comebacks of Artists Who Commit Violent Crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade EUDC", + "year": "2012", + "format": "", + "content": "THBT The Mexican Government Should Lift All Limits on the Military and Law Enforcement in the Fight Against Organised Crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade EUDC", + "year": "2012", + "format": "", + "content": "THBT The ECB Should Unconditionally Buy Government Debt from Struggling Eurozone Economies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade EUDC", + "year": "2012", + "format": "", + "content": "THW Cap the Amount Corporations Can Spend in Any One Course of Litigation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade EUDC", + "year": "2012", + "format": "", + "content": "THW Require the Military to Recruit Soldiers in Direct Proportion to the Socio-Economic Make-up of the Country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade EUDC", + "year": "2012", + "format": "", + "content": "THBT The Palestinians Should Accept Complete Demilitarisation in Immediate Return for A Sovereign State.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade EUDC", + "year": "2012", + "format": "", + "content": "THW Let Anyone Take Up Residence in Any Country, Provided They Can Show that They Will Not be an Economic Burden on that Country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade EUDC", + "year": "2012", + "format": "", + "content": "TH Supports Life Sentences Without the Possibility of Parole For Serial Serious Re-Offenders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade EUDC", + "year": "2012", + "format": "", + "content": "THBT The Militaries of Newly Democratised Arab Countries Should Act as Guardians of Secularism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade EUDC", + "year": "2012", + "format": "", + "content": "THW Retrospectively Remove Amnesties Granted to Those Who Committed Crimes As Part of Oppressive Regimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade EUDC", + "year": "2012", + "format": "", + "content": "THBT Republika Srpska Should Secede from Bosnia and Herzegovina.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade EUDC", + "year": "2012", + "format": "", + "content": "THBT Schools Should Aggressively Stream Students According to their Ability From An Early Age.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Belgrade EUDC", + "year": "2012", + "format": "", + "content": "THW Amend the US Constitution To Prohibit Any Involvement by Religious Organisation in the Electoral Process.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mediterranean Universities Debating Championships (Koc University)", + "year": "2012", + "format": "", + "content": "THB the state should send all underage overweight children to a summer far camp.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mediterranean Universities Debating Championships (Koc University)", + "year": "2012", + "format": "", + "content": "THBT all EU countries should set the bar of entry to their parliament in such a way that would ensure a two party system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mediterranean Universities Debating Championships (Koc University)", + "year": "2012", + "format": "", + "content": "THBT Amercia is justified in keeping the Second Amendment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mediterranean Universities Debating Championships (Koc University)", + "year": "2012", + "format": "", + "content": "You are a western reporter covering the Middle East. You received indisputable and exclusive evidence that Israel is about to launch an attack on Iranian nuclear facilities in the next 24 hours. THW not publish the story.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mediterranean Universities Debating Championships (Koc University)", + "year": "2012", + "format": "", + "content": "THB Turkey should abandon all efforts to join the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mediterranean Universities Debating Championships (Koc University)", + "year": "2012", + "format": "", + "content": "You are a CEO of a major clothing company and currently pay workers in your factory 1 dollar a day. You are presented with a plan that would give your employees a dignified living wage. This would significantly increase production costs but would not put you out of business. THW implement the plan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mediterranean Universities Debating Championships (Koc University)", + "year": "2012", + "format": "", + "content": "THBT posing for Playboy is immoral.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mediterranean Universities Debating Championships (Koc University)", + "year": "2012", + "format": "", + "content": "THW heavily incentivise Bosnians, Croats and Serbs in Bosnia and Hercegovina that move to areas where dominant ethnicity is other than their own.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mediterranean Universities Debating Championships (Koc University)", + "year": "2012", + "format": "", + "content": "Given the technology, THW burn obedience to criminal law in the brains of all humans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDC Porto Debate Camp and Open", + "year": "2012", + "format": "", + "content": "THW end all govt funding of the arts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDC Porto Debate Camp and Open", + "year": "2012", + "format": "", + "content": "THBT the media should out gay public figure.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDC Porto Debate Camp and Open", + "year": "2012", + "format": "", + "content": "THBT the state should not pay any university students tuition fee.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDC Porto Debate Camp and Open", + "year": "2012", + "format": "", + "content": "THBT if he is deemed to be fully rehabilated, Ander Brevik should ultimately be released.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDC Porto Debate Camp and Open", + "year": "2012", + "format": "", + "content": "THBT people should not get married.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDC Porto Debate Camp and Open", + "year": "2012", + "format": "", + "content": "TH supports the use of racial profiling in law enforcement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDC Porto Debate Camp and Open", + "year": "2012", + "format": "", + "content": "THBT capitalism has failed the worker.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS Open", + "year": "2012", + "format": "", + "content": "THW ban religious schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS Open", + "year": "2012", + "format": "", + "content": "THBT Western countries should commit to cancel all debts owed by any authoritarian country upon its transition to democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS Open", + "year": "2012", + "format": "", + "content": "THW put Jeremy Deller's piece (of a bombed car) on the plinth ( on Trafalgar Square).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS Open", + "year": "2012", + "format": "", + "content": "TH supports a fiscal union for the eurozone.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS Open", + "year": "2012", + "format": "", + "content": "TH regrets the bombing of Japan in Worldwar II.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Boddencup", + "year": "2012", + "format": "", + "content": "THBT general education (wide promotion) is better than education/promotion of excellence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Boddencup", + "year": "2012", + "format": "", + "content": "THW accept Iran as a nuclear power.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Boddencup", + "year": "2012", + "format": "", + "content": "THBT Vorrunde: Dieses Haus glaubt, der demolition of the Palasts der Republik (DDR Parliament) was a mistake.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Boddencup", + "year": "2012", + "format": "", + "content": "THW use only masculine word forms for women and men.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Boddencup", + "year": "2012", + "format": "", + "content": "THW give parliament power to decide over weapons exports.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Boddencup", + "year": "2012", + "format": "", + "content": "THW charge a (prohibitively) high customs duty on imports of solar cells from China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Boddencup", + "year": "2012", + "format": "", + "content": "TH, being Socrates, would not drink the cup of poison.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Summer IV", + "year": "2012", + "format": "", + "content": "THW allow companies to pay a higher salary to employees who contractually agree not to have children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Summer IV", + "year": "2012", + "format": "", + "content": "THW not imprison people when racist remarks cause offense on social media forums.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial Summer IV", + "year": "2012", + "format": "", + "content": "THW prosecute toppled dictators for crimes against humanity in the ICC rather than in a national court or tribunal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2012", + "format": "", + "content": "THW assasinate Bashar al Assad.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2012", + "format": "", + "content": "THBT schools should teach children from first-generation immigrants in the language of their parents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2012", + "format": "", + "content": "THBT developing countries should limit rural to urban migration.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2012", + "format": "", + "content": "THW compel the Catholic Church to allow women to serve as priests.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2012", + "format": "", + "content": "TH regrets South Africa’s decision to use Truth and Reconciliation Commisions rather than prosecuting perpetrators of crimes under Apartheid.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin IV", + "year": "2012", + "format": "", + "content": "TH regrets the decline of socialism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Nationals", + "year": "2012", + "format": "", + "content": "THW compel citizens to vote in national elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Nationals", + "year": "2012", + "format": "", + "content": "THW exempt from mandatory military service any Hasid who chooses to work rather than study in a Yeshiva.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Nationals", + "year": "2012", + "format": "", + "content": "TH, which is the Hamas movement, would lay down its arms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Nationals", + "year": "2012", + "format": "", + "content": "THW decriminalize squatting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Nationals", + "year": "2012", + "format": "", + "content": "THW introduce mandatory minimum sentences.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Nationals", + "year": "2012", + "format": "", + "content": "THW ban student parties who are backed by national political parties from participating in elections for student unions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Nationals", + "year": "2012", + "format": "", + "content": "THW stop providing tactical training and equipment to \"neighbourhood watch\" groups in Israeli settlements in the West Bank.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Nationals", + "year": "2012", + "format": "", + "content": "TH, which is the Iranian regime, would develop nuclear weapons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Language Championships", + "year": "2012", + "format": "", + "content": "THW oblige pharmaceutical companies to spend half of their research budgets on illnesses that occur primarily in developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Language Championships", + "year": "2012", + "format": "", + "content": "THW forbid domestic security services to monitor Members of Parliaments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Language Championships", + "year": "2012", + "format": "", + "content": "THW continue the European Football Championships with 16 participating teams.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Language Championships", + "year": "2012", + "format": "", + "content": "TH, which is technically capable to do so, would clone Neandertalers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Language Championships", + "year": "2012", + "format": "", + "content": "THW create Eurobonds.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Language Championships", + "year": "2012", + "format": "", + "content": "THW not perform any plays of Thomas Bernhard in Austria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Language Championships", + "year": "2012", + "format": "", + "content": "TH supports the foundation of an independent Kurdic state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Language Championships", + "year": "2012", + "format": "", + "content": "TH condemns the use of unmanned weapon systems (drones) against human targets.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Language Championships", + "year": "2012", + "format": "", + "content": "THW use geo-engineering to combat climate change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "German Language Championships", + "year": "2012", + "format": "", + "content": "TH supports large-scale migration from poor to rich regions in the European Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Iron Man BP Tournament", + "year": "2012", + "format": "", + "content": "THBT there should be no restrictions on political donations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Iron Man BP Tournament", + "year": "2012", + "format": "", + "content": "THW predicate any humanitarian aid on efforts limiting birth-rates where there’s a risk of overpopulation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Iron Man BP Tournament", + "year": "2012", + "format": "", + "content": "THBT, rather than after the fact, the judicial system should be able to take pre-emptive measures when there’s a suspicion of hate-speech.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Iron Man BP Tournament", + "year": "2012", + "format": "", + "content": "THBT that the Turkish military should stop enforcing the separation between church & state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Iron Man BP Tournament", + "year": "2012", + "format": "", + "content": "THW practice investment over austerity in times of economic crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Iron Man BP Tournament", + "year": "2012", + "format": "", + "content": "THW undertake military action against the Syrian government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bruder Grimm Cup", + "year": "2012", + "format": "", + "content": "THW make football clubs pay for the costs of police surveillance during league matches.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bruder Grimm Cup", + "year": "2012", + "format": "", + "content": "THW block the Security Council as long as the veto power remains available.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bruder Grimm Cup", + "year": "2012", + "format": "", + "content": "THW Vorrunde: THW rewrite the Grimm fairytales in a gender neutral way (Dieses Haus würde die Grimmschen Märchen gendergerecht umschreiben).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bruder Grimm Cup", + "year": "2012", + "format": "", + "content": "THW require candidates for public office to be psychologically evaluated during their trial period rather than making their psychological illness history public.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bruder Grimm Cup", + "year": "2012", + "format": "", + "content": "THW allow defendants to choose between a judge or a jury.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bruder Grimm Cup", + "year": "2012", + "format": "", + "content": "THW allow doctors treating terminally ill patients patients to offer them treatments that are still in the experimental stages.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Mace", + "year": "2012", + "format": "", + "content": "THW allow companies to pay more salary to its employees in exchange for not having children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Mace", + "year": "2012", + "format": "", + "content": "TH, which is Mabel Wisse Smit (of Orange), would end the life of Prince Friso.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Mace", + "year": "2012", + "format": "", + "content": "TH welcomes the end of American hegemony.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Mace", + "year": "2012", + "format": "", + "content": "THW die for its country (literally: die for nation and fatherland).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Union Open", + "year": "2012", + "format": "", + "content": "THW ban single sex schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Union Open", + "year": "2012", + "format": "", + "content": "THW disband NATO.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Union Open", + "year": "2012", + "format": "", + "content": "THW make votes public.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Union Open", + "year": "2012", + "format": "", + "content": "THW allow pharmaceutical companies to advertise prescription drugs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Split Union Open", + "year": "2012", + "format": "", + "content": "THW create ethnic diversity in neighborhoods by introducing housing quotas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Debate Academy", + "year": "2012", + "format": "", + "content": "THW ban single sex schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Debate Academy", + "year": "2012", + "format": "", + "content": "THW not participate in international sporting events held in countries that abuse human rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Debate Academy", + "year": "2012", + "format": "", + "content": "THBT crimes committed by police officers should be punished more severely.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Debate Academy", + "year": "2012", + "format": "", + "content": "THBT women should pay a lower rate of income tax than men.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Debate Academy", + "year": "2012", + "format": "", + "content": "THW ban treatments that claim to cure homosexuality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Debate Academy", + "year": "2012", + "format": "", + "content": "THBT NATO members should not sell weapons to non NATO members.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "“Denny Crane” Faculty of Political Science", + "year": "2012", + "format": "", + "content": "This House prefers Guantanamo Bay rather than the current practice of the war against terrorism with unmanned aerial vehicles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "“Denny Crane” Faculty of Political Science", + "year": "2012", + "format": "", + "content": "In the case of a contact with extra-terrestrial beings, this House would send a woman as a negotiator.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "“Denny Crane” Faculty of Political Science", + "year": "2012", + "format": "", + "content": "This House would grant one seat in the Parliament to all more significant religions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "“Denny Crane” Faculty of Political Science", + "year": "2012", + "format": "", + "content": "This House would make a number of votes of one voter inversely proportional to his/her personal wealth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "“Denny Crane” Faculty of Political Science", + "year": "2012", + "format": "", + "content": "This House believe that only people who take the law into their hands can save us.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "“Denny Crane” Faculty of Political Science", + "year": "2012", + "format": "", + "content": "This House would never restore the buildings destroyed in the bombing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Munster", + "year": "2012", + "format": "", + "content": "THW ban broadcasting of boxing matches from TV.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Munster", + "year": "2012", + "format": "", + "content": "THW adjust development aid to countries where gay rights are violated.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Munster", + "year": "2012", + "format": "", + "content": "THW include paintings by Wolfgang Beltracchis in the collectinos of leading German art museums.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Munster", + "year": "2012", + "format": "", + "content": "THW declare a trade war against China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Munster", + "year": "2012", + "format": "", + "content": "THW instate a public service (öffentlich-rechtliches) system for newspapers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Munster", + "year": "2012", + "format": "", + "content": "THW ban the defamation of religious symbols or authorities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Munster", + "year": "2012", + "format": "", + "content": "TH supports the targeted/deliberate killing of Iranian scientists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zionism Begin Tournament", + "year": "2012", + "format": "", + "content": "THBT the Israeli MoD museum department should stop all it's funding for sites and museums commemorating the Etzel and Lechi groups.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zionism Begin Tournament", + "year": "2012", + "format": "", + "content": "THW rather marry a Zionist Shiksa than an Anti-Zionist Jew.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zionism Begin Tournament", + "year": "2012", + "format": "", + "content": "TH regrets \"Aloni Mora\" (euphemism for the settlements).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zionism Begin Tournament", + "year": "2012", + "format": "", + "content": "THW will move the Israeli Capital from Jerusalem to Tel-Aviv.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zionism Begin Tournament", + "year": "2012", + "format": "", + "content": "THW pay monetary compensation to Sephardi Jews.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "International John Smith Memorial Mace Final", + "year": "2012", + "format": "", + "content": "This house believes the ICC should use bounty hunters to capture and, if necessary, kill indicted war criminals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Saggsn- Masders", + "year": "2012", + "format": "", + "content": "THW make Saxon a mandatory foreign language on Saxon colleges (hochschulen).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Saggsn- Masders", + "year": "2012", + "format": "", + "content": "THW swap all children after birth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Saggsn- Masders", + "year": "2012", + "format": "", + "content": "TH calls for a culture flat tax.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Saggsn- Masders", + "year": "2012", + "format": "", + "content": "THW give Parliament the right to initiate foreign deployment of the army.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Saggsn- Masders", + "year": "2012", + "format": "", + "content": "THW grant an amnesty to illegal immigrants.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Open", + "year": "2012", + "format": "", + "content": "TH, which is the West, would sanction China.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Open", + "year": "2012", + "format": "", + "content": "TH, which is the ministry of health, will withhold any information regarding a drug that will ensure the birth of heterosexual children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Open", + "year": "2012", + "format": "", + "content": "THW enact an Immediate Democracy.", + "infoSlide": "Immediate Democracy is a system in which the voter may change their vote at any given time, thus changing the composition of the parliament on a daily basis according to public support.", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Open", + "year": "2012", + "format": "", + "content": "THW release inmates from jail solely on the basis of their rehabilitation and not upon the completion of a predetermined period of time.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Israeli Open", + "year": "2012", + "format": "", + "content": "THW use its influence to disseminate socially progressive values supported by faith.", + "infoSlide": "You are a young man living in the Galilee 2,000 years ago. You are smart and charismatic. You are capable of collecting and leading a fold of followers. People believe you are the son of God and can do miracles such as healing and food replication.", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mitteldeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "THW abolish state imposed heritage protection.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mitteldeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "There are states which prescribe quota for the number of women in Boards of companies. THW prohibit companies from other states that do not fill the required quota in their Board to participate in public tenders in states with quotas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mitteldeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "THW limit media coverage of shootings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mitteldeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "When a ship threatens to breach a UN weapons embargo, THW allow all states to stop the ship with the use of force.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mitteldeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "THBT every person has the right to take pictures of works of art or performances and publish them as their own works of art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mitteldeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "THW allow audio and video recording of court procedures and the public dissemination of the recordings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren", + "year": "2012", + "format": "", + "content": "THBT political parties should not take gender into account when selecting candidates for voting lists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren", + "year": "2012", + "format": "", + "content": "You call the internet provider to take down the filter, while your children are present.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren", + "year": "2012", + "format": "", + "content": "THW abolish the tax rebate on mortgage interest.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren", + "year": "2012", + "format": "", + "content": "THW allow the Reclame Code Commissie (Dutch Advertising Standards Authority) to ban advertisements which affirm gender roles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren", + "year": "2012", + "format": "", + "content": "You lie to Albert Speer and tell him the atomic bomb cannot be built.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren", + "year": "2012", + "format": "", + "content": "THW abolish the income criteria for family reunification (when bringing family members to the Netherlands for permanent settlement, the applicant must have an income significantly higher than the minimum wage).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren", + "year": "2012", + "format": "", + "content": "THBT in countries where abortion is illegal, no exceptions should be made for cases of incest or rape.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren", + "year": "2012", + "format": "", + "content": "THBT, upon death, every person’s body should revert to the state for scientific use or for organ donation depending on necessity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NK Debatteren", + "year": "2012", + "format": "", + "content": "THBT every Dutch family with an average or higher income has a moral obligation to take in a foster child (child from foster care).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Norddeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "TH calls for a common European army.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Norddeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "THW lift the ban on dancing (Tanzverbot, probably more a general celebration ban) on the “quiet holidays” (Good Friday, Memorial Day and Remembrance Sunday (Totensonntag)).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Norddeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "THW make the ‘morning after pill’ available without doctor’s recipe.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Norddeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "THW cancel the exemption on the 5% vote threshold for national minorities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Norddeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "THBT the Olympic Idea has outlived itself.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Norddeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "THW allow audio and video recording of court procedures and the public dissemination of the recordings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Süddeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "TH calls for a constitutional right to Internet.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Süddeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "THW mandate the use of condoms in pornoggaphic movies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Süddeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "THBT a stable dictatorship is better than an unstable democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Süddeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "In case of a zombie-epidemic, THBT zombies have a right to a humane life in special zombie-habitats.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Süddeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "THBT it would be good for the Catholic Chuch to let the next pope be elected by a vote by all Catholics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Süddeutschen Regionalmeisterschaft", + "year": "2012", + "format": "", + "content": "THW allow audio and video recording of court procedures and the public dissemination of the recordings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonia Open", + "year": "2012", + "format": "", + "content": "THW abandon the single European monetary currency.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonia Open", + "year": "2012", + "format": "", + "content": "TH condems racially provocative art.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonia Open", + "year": "2012", + "format": "", + "content": "THW defend Anders Breivik.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonia Open", + "year": "2012", + "format": "", + "content": "THW choose only non religious soldiers to serve in international conflicts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonia Open", + "year": "2012", + "format": "", + "content": "THW only teach gender neutral pronouns in school.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonia Open", + "year": "2012", + "format": "", + "content": "THBT current Generation Germans should not pay taxes or any other form of reparations for Nazi atrocities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonia Open", + "year": "2012", + "format": "", + "content": "THW reject a Western conception of property rights in favour of collective ownership.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jacobs Open", + "year": "2012", + "format": "", + "content": "When paying teachers, THW take into account their students' academic performance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jacobs Open", + "year": "2012", + "format": "", + "content": "TH regrets joining Facebook.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jacobs Open", + "year": "2012", + "format": "", + "content": "THW encourage its citizens to break laws in other countries that violate human rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jacobs Open", + "year": "2012", + "format": "", + "content": "THW pay spouses who stay at home a salary.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jacobs Open", + "year": "2012", + "format": "", + "content": "TH supports the US's use of military drones in Pakistan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Jacobs Open", + "year": "2012", + "format": "", + "content": "TH supports campaigns like \"Kony 2012”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Science Po Le Havre IV", + "year": "2012", + "format": "", + "content": "THW ban racist and extreme nationalist political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Science Po Le Havre IV", + "year": "2012", + "format": "", + "content": "THW lift all sanctions on North Korea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Science Po Le Havre IV", + "year": "2012", + "format": "", + "content": "THBT the ICC should offer Joseph Kony an amnesty from prosecution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Science Po Le Havre IV", + "year": "2012", + "format": "", + "content": "THW impose a 75% rate of tax on all earnings over €100000.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Science Po Le Havre IV", + "year": "2012", + "format": "", + "content": "THBT all State Schools should actively promote the religion of the majority.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Science Po Le Havre IV", + "year": "2012", + "format": "", + "content": "THBT state policies should actively discourage a consumerist lifestyle.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Science Po Le Havre IV", + "year": "2012", + "format": "", + "content": "TH regrets the founding of the European Union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USU Open", + "year": "2012", + "format": "", + "content": "THW legalize multi-partner marriages for both men and women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USU Open", + "year": "2012", + "format": "", + "content": "THW ban private financing of election campaigns.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USU Open", + "year": "2012", + "format": "", + "content": "TH regrets the Arab Spring.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USU Open", + "year": "2012", + "format": "", + "content": "THW abolish prison sentences for all non-violent crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USU Open", + "year": "2012", + "format": "", + "content": "THBT the creation of the Eurozone has done more harm than good.", + "infoSlide": "The Eurozone is a currency union consisting of EU member states who have adopted the Euro as their common currency. Its monetary policy is administered by the European Central Bank.", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USU Open", + "year": "2012", + "format": "", + "content": "THBT the West Should cease using attack drones in counter-insurgency operations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USU Open", + "year": "2012", + "format": "", + "content": "THW lift all sanctions on Iran that target its nuclear program.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USU Open", + "year": "2012", + "format": "", + "content": "TH regrets the declIne of labor unions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USU Open", + "year": "2012", + "format": "", + "content": "THBT governments should systematically use subconscious manipulation to nudge citizens towards socially desirable choices.", + "infoSlide": "There is growing evidence from behavioral economics that seemingly trivial alterations in the way decisions are presented can substantially affect choices. For instance, printing smiley faces on the electricity bills of low-usage households decreases their future electricity consumption. As another example, consumers presented with a list of financial choices are more likely to choose items placed near the middle of the list.", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "USU Open", + "year": "2012", + "format": "", + "content": "THBT coming cuts in USA military spending will make the world a better place.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HSE Open", + "year": "2012", + "format": "", + "content": "THBT all teachers should openly declare their sexuality to their pupils.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HSE Open", + "year": "2012", + "format": "", + "content": "THW set legally binding minimal physical parameters for fashion models.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HSE Open", + "year": "2012", + "format": "", + "content": "THW treat cyber attacks as acts of war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HSE Open", + "year": "2012", + "format": "", + "content": "THW legalize all drugs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HSE Open", + "year": "2012", + "format": "", + "content": "THW not use public money on life-extending medical care for people over a certain age.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HSE Open", + "year": "2012", + "format": "", + "content": "HBT change comes through molotov cocktails, not with a voting ballot.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "HSE Open", + "year": "2012", + "format": "", + "content": "In the case where human space exploration efforts locate an inhabitable planet, THBT the settlers of that planet should construct a society without private property.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris IV", + "year": "2012", + "format": "", + "content": "THW remove all constraints on companies firing workers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris IV", + "year": "2012", + "format": "", + "content": "THW make sportןמע teams whose fans performed violence or severe disorderly behaviour, play their matches in front of a crowd of women and children only.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris IV", + "year": "2012", + "format": "", + "content": "TH, as Aljazeera, would have broadcasted the videos of the Toulouse attacks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris IV", + "year": "2012", + "format": "", + "content": "THBT retribution should not be a part of the criminal justice system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris IV", + "year": "2012", + "format": "", + "content": "THBT the state should subsidize feminist porn.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris IV", + "year": "2012", + "format": "", + "content": "HW make assimilation the primary goal of legislation related to immigrants.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris IV", + "year": "2012", + "format": "", + "content": "THW ban all research into the genetic origins of homosexuality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris IV", + "year": "2012", + "format": "", + "content": "thw allow the deliberate (!) targeting of civilians in war, where it would significantly reduce casualties in the long term.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schwarzwald Cup", + "year": "2012", + "format": "", + "content": "THW found one European elite university.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schwarzwald Cup", + "year": "2012", + "format": "", + "content": "THW tax meat products (approximation).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schwarzwald Cup", + "year": "2012", + "format": "", + "content": "THW take away the special protection of marriage from the law.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schwarzwald Cup", + "year": "2012", + "format": "", + "content": "THW drink more milk.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schwarzwald Cup", + "year": "2012", + "format": "", + "content": "THW oblige all ministeries (state departments) to use only open source software.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schwarzwald Cup", + "year": "2012", + "format": "", + "content": "THW shrink/make smaller the Eurozone.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Schwarzwald Cup", + "year": "2012", + "format": "", + "content": "THW save Schlecker (a drugstore chain that is bankrupt).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Open", + "year": "2012", + "format": "", + "content": "THW forcibly relocate indigenous peoples where their presence prevents the extraction of valuable resources.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Open", + "year": "2012", + "format": "", + "content": "HB that sex education classes should include sexual fetishes with the aim of normalising them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Open", + "year": "2012", + "format": "", + "content": "THW not allow pre-nuptial agreements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Open", + "year": "2012", + "format": "", + "content": "THB that developing countries should disregard intellectual property rights on life saving/preserving medicine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Open", + "year": "2012", + "format": "", + "content": "This House Would covertly fabricate evidence that politicians who promote demonisation or criminalisation of homosexuality are gay (approximation).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Open", + "year": "2012", + "format": "", + "content": "THW make the punishment for crimes of theft inversely proportional to the wealth of the victim (approximation).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Open", + "year": "2012", + "format": "", + "content": "THW create country quotas for the acceptance of refugees and allow for trade of these obligations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Open", + "year": "2012", + "format": "", + "content": "THW create a Supreme Court to protect future generations from current lawmakers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Final", + "year": "2012", + "format": "", + "content": "THBT Science Is Holding Back Humanity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Final", + "year": "2012", + "format": "", + "content": "THBT our technology has exceeded our humanity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heriot-Watt Open", + "year": "2012", + "format": "", + "content": "THW allow corporations to pay higher salaries to employees who agree not to have children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heriot-Watt Open", + "year": "2012", + "format": "", + "content": "THBT the congressional black caucus should admit non-black members.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heriot-Watt Open", + "year": "2012", + "format": "", + "content": "THW establish as a norm of international law that reparations should not be paid after wars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heriot-Watt Open", + "year": "2012", + "format": "", + "content": "THW replace income tax with a tax on wealth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Heriot-Watt Open", + "year": "2012", + "format": "", + "content": "THBT the Scottish Government should allow England to vote in the referendum on Scottish Independence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mykolas Romeris IV", + "year": "2012", + "format": "", + "content": "THW ban beauty pageants for under 16-year olds.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mykolas Romeris IV", + "year": "2012", + "format": "", + "content": "THBT the media should not publish news on suicides.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mykolas Romeris IV", + "year": "2012", + "format": "", + "content": "THW require that Roma children be sent to state boarding schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mykolas Romeris IV", + "year": "2012", + "format": "", + "content": "THW ban the use of religious rhetoric in political campaigns.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mykolas Romeris IV", + "year": "2012", + "format": "", + "content": "TH supports the use of bounty hunters in law enforcement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mykolas Romeris IV", + "year": "2012", + "format": "", + "content": "TH regrets the influence of YouTube on popular culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Mykolas Romeris IV", + "year": "2012", + "format": "", + "content": "THW grant asylum to those fleeing from persecution on grounds of sexual violence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2012", + "format": "", + "content": "THBT it is morally wrong for companies to base hiring/firing/promotion decisions on info taken from social networking sites.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2012", + "format": "", + "content": "THW place police in schools that protect them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2012", + "format": "", + "content": "THW not (as the USA) support Israel in a pre-emptive strike on Iraq.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2012", + "format": "", + "content": "THW require companies to have the same environmental and working standards in foreign countries as in their home states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2012", + "format": "", + "content": "TH supports the right of parents of mentally disabled children to medically slow or prevent their physical growth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "DCU Open", + "year": "2012", + "format": "", + "content": "A zombie infection has broken out, THBT it is morally legitimate to kill uninfected humans to increase your own chances of survival.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Open_Semiss", + "year": "2012", + "format": "", + "content": "THBT Feminist Groups Should Campaign for a Complete Overhaul of the Economic System.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Open_Semiss", + "year": "2012", + "format": "", + "content": "THBT Feminist Groups Should Actively Recruit Male Spokespeople.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Debattoernooi Utrecht (DTU)", + "year": "2012", + "format": "", + "content": "THW give parliaments the right to appoint an absolute dictator for a limited period of time.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Debattoernooi Utrecht (DTU)", + "year": "2012", + "format": "", + "content": "THBT women in the Netherlands are emancipated enough.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Debattoernooi Utrecht (DTU)", + "year": "2012", + "format": "", + "content": "TH, being an Italian judge, would convict Berlusconi of abuse of power, corruption and gross negligence and take away all his personal belongings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Debattoernooi Utrecht (DTU)", + "year": "2012", + "format": "", + "content": "THW assume the suspect of a crime to be guilty when the witness(es) in a court case are intimidated or physically abused (approximation).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Debattoernooi Utrecht (DTU)", + "year": "2012", + "format": "", + "content": "THW not punish people who live below the poverty line for economic crimes they have committed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Debattoernooi Utrecht (DTU)", + "year": "2012", + "format": "", + "content": "TH, being MTV, would publicly denounce acts with lyrics that degrade women or gays and/or glorify violence (approximation).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Magdeburg", + "year": "2012", + "format": "", + "content": "Should there be a minimum BMI for models?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Magdeburg", + "year": "2012", + "format": "", + "content": "Should tax returns (Steuererklärungen) be made public?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Magdeburg", + "year": "2012", + "format": "", + "content": "Should we consider the DDR an unjust state?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Magdeburg", + "year": "2012", + "format": "", + "content": "Should private pensions be abolished?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Magdeburg", + "year": "2012", + "format": "", + "content": "Should buildings that have been empty/unused for over a year be made freely available for general use?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Magdeburg", + "year": "2012", + "format": "", + "content": "Should politicians and diplomats in general no longer hold immunity status?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2012", + "format": "", + "content": "THW introduce mandatory trips to Nazi concentration camps for Austrian elementary school students.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2012", + "format": "", + "content": "This House supports the use of charity rather than state welfare systems.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2012", + "format": "", + "content": "This House believes that Russia was justified in vetoing intervention in Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2012", + "format": "", + "content": "This House believes that Facebook is justified to censor any of its users' content for any reason it sees fit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2012", + "format": "", + "content": "This House supports the appointment of technocratic governments in Eurozone countries suffering fiscal crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2012", + "format": "", + "content": "THB the Israeli Army should adopt a policy of shooting to kill their own comrades where they are likely to be captured.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2012", + "format": "", + "content": "THBT EU countries should promote Christianity and not other religions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Vienna IV", + "year": "2012", + "format": "", + "content": "Given the ability to carry a full term pregnancy in an incubator. THBT humankind should seek to abolish natural pregnancy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Open_Semiss", + "year": "2012", + "format": "", + "content": "THBT a man who dies rich is a man who dies disgraced.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Open_Semiss", + "year": "2012", + "format": "", + "content": "THBT whoever controls the past controls the future.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Open_Semiss", + "year": "2012", + "format": "", + "content": "THBT the NAACP should publicly condemn Chris Brown.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Open_Semiss", + "year": "2012", + "format": "", + "content": "THW ban “My Big Fat Gypsy Wedding”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Open_Semiss", + "year": "2012", + "format": "", + "content": "THW abolish the two categories for Best Actor/Actress and Best Supporting Actor/Actress at the Academy Awards and award only gender neutral Oscars for Best Acting and Best Supporting Acting.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter_3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Mace Open_Semiss", + "year": "2012", + "format": "", + "content": "THBT notable LGB figures should not describe their sexuality as a choice.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter_4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2012", + "format": "", + "content": "THW not imprison those convicted of non-violent crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2012", + "format": "", + "content": "THW make development aid conditional upon the improvement of women’s rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2012", + "format": "", + "content": "THW lift the ban on Communist symbols in all post-communist EU member states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2012", + "format": "", + "content": "THW only provide state pension to those mentally or physically unable to work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2012", + "format": "", + "content": "THW ban medicine designed to erase human memories.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Budapest Open", + "year": "2012", + "format": "", + "content": "THBT violent activities to achieve anti-capitalist aims in Western societies are justified.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2012", + "format": "", + "content": "THB India should remove its ban on 'The Satanic Verses'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2012", + "format": "", + "content": "THW invest in big casinos to rejuvenate economically disadvantaged areas.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2012", + "format": "", + "content": "THB the Greek Government should reject the latest EU, ECB & IMF bailout agreement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2012", + "format": "", + "content": "THB the Gay Rights Movement should oppose Gay Pride Parades in Western Liberal Democracies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2012", + "format": "", + "content": "THBT the states of former Yugoslavia should create a unified football league.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2012", + "format": "", + "content": "THBT the Media should not show images of police brutality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2012", + "format": "", + "content": "THW grant automatic asylum to women from countries under sharia law.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2012", + "format": "", + "content": "THBT Vladmir Putin should make a credible public offer to the United States for joint decommissioning of their entire nuclear arsenal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2012", + "format": "", + "content": "THBT film stars, music stars & other popular entertainers should be prohibited from participating in political campaigns.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Manchester IV", + "year": "2012", + "format": "", + "content": "THBT Western European countries should teach an overwhelmingly negative version of their imperial histories.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aberdeen Open", + "year": "2012", + "format": "", + "content": "THBT the Gay Rights Movement Should Campaign For The Abolition of Marriage, Rather Than Marriage Equality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aberdeen Open", + "year": "2012", + "format": "", + "content": "THBT the UK Should Leave The EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aberdeen Open", + "year": "2012", + "format": "", + "content": "THBT Journals Should Not Publish The Research.", + "infoSlide": "Scientific research has found evidence that a particular race has an increased genetic risk of developing psychiatric disorders.", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aberdeen Open", + "year": "2012", + "format": "", + "content": "THBT The Image Of Female Sexuality Depicted By Female RnB Artists In Songs Like, But Not Limited To, Rihanna's Rude Boy Are Empowering.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aberdeen Open", + "year": "2012", + "format": "", + "content": "THBT It Is Immoral To Vote Republican.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Final Irish Times", + "year": "2012", + "format": "", + "content": "THW Abolish Prisons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2012", + "format": "", + "content": "THW legalise all forms of assisted suicide for mentally sound people.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2012", + "format": "", + "content": "TH regrets the strong social norms in favour of lifelong monogamy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2012", + "format": "", + "content": "THBT western countries should invest primarily in air power rather than ground troops for future military interventions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2012", + "format": "", + "content": "THBT the education system should promote equality of outcomes over equality of opportunities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2012", + "format": "", + "content": "TH welcomes the advent of extreme genetic enhancements for human beings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2012", + "format": "", + "content": "THBT national governments should aim to depopulate rather than regenerate areas with few viable economic activities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2012", + "format": "", + "content": "THBT the state should systematically use subconscious manipulation to nudge citizens towards good choices.", + "infoSlide": "There is growing evidence from behavioral economics that seemingly trivial alterations in the way decisions are presented can substantially affect choices. For instance, printing smiley faces on the electricity bills of low-usage households decreases their future electricity consumption. As another example, consumers presented with a list of financial choices are more likely to choose items placed near the middle of the list.", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2012", + "format": "", + "content": "THBT Western foreign policy should seek to prevent China's acquisition of Africa's natural land and resources.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "LSE Open", + "year": "2012", + "format": "", + "content": "TH regrets the decline of Marxism in liberal Western democracies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Third Round", + "year": "2012", + "format": "", + "content": "THW allow the families of victims of war crimes to sue the country responsible for reparations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Third Round", + "year": "2012", + "format": "", + "content": "THW grant amnesty to dictators who voluntarily leave office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Third Round", + "year": "2012", + "format": "", + "content": "THW Make the directors of multi-national companies criminally responsible for any environmental damage caused by their company in the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Third Round", + "year": "2012", + "format": "", + "content": "THW refuse to extradite criminals to countries with the death penalty.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Third Round", + "year": "2012", + "format": "", + "content": "THW Never hold major sporting events in countries with ongoing human rights violations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Third Round", + "year": "2012", + "format": "", + "content": "THW allow the global free movement of people.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Third Round", + "year": "2012", + "format": "", + "content": "THW believes that it is legitimate for parliaments to delegate sovereignty to the EU without any need for referendum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Third Round", + "year": "2012", + "format": "", + "content": "THW use military force to deliver aid in humanitarian crises.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bonapartiaans Debattoernooi Amsterdam (BDT)", + "year": "2012", + "format": "", + "content": "THW fire civil servants who refuse to wed same-sex couples.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bonapartiaans Debattoernooi Amsterdam (BDT)", + "year": "2012", + "format": "", + "content": "THW ban Martijn, a paedophile association (vereniging).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bonapartiaans Debattoernooi Amsterdam (BDT)", + "year": "2012", + "format": "", + "content": "THW transform the EU into a United States of Europe.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bonapartiaans Debattoernooi Amsterdam (BDT)", + "year": "2012", + "format": "", + "content": "THW abolish deposit guarantee schemes everywhere.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bonapartiaans Debattoernooi Amsterdam (BDT)", + "year": "2012", + "format": "", + "content": "THW ban imports from countries where workers do not have the liberty to form unions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bonapartiaans Debattoernooi Amsterdam (BDT)", + "year": "2012", + "format": "", + "content": "THW abolish patents on computer software.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bonapartiaans Debattoernooi Amsterdam (BDT)", + "year": "2012", + "format": "", + "content": "THW instate a general pardon to asylum seekers who have lived in the Netherlands for five years as a minor, and for their parents/legal guardians if they are currently still a minor.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff IV", + "year": "2012", + "format": "", + "content": "THW create a separate league for athletes who choose to take performance enhancing substances.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff IV", + "year": "2012", + "format": "", + "content": "THW require all video games that ostensibly depict realistic combat to adhere to the rules of war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff IV", + "year": "2012", + "format": "", + "content": "THW abolish the concept of limited liability.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff IV", + "year": "2012", + "format": "", + "content": "THW create a separate state where all women and only women can claim citizenship.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cardiff IV", + "year": "2012", + "format": "", + "content": "THW use the influences gained from these abilities and beliefs to propagate socialist values that are justified through faith.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Galway Open", + "year": "2012", + "format": "", + "content": "THB It is Illegitimate for the State to Attempt to Instill Morals or Values in Children in Schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Galway Open", + "year": "2012", + "format": "", + "content": "THW Prosecute Barack Obama for War Crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Galway Open", + "year": "2012", + "format": "", + "content": "TH Regrets the Existence of Valentine's Day.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Galway Open", + "year": "2012", + "format": "", + "content": "from the view of Iran: THW Build a Nuclear Weapon.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Galway Open", + "year": "2012", + "format": "", + "content": "THB the State Should Impose a Maximum Income of €50000, inc benefits, commissions, bonuses, etc.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Galway Open", + "year": "2012", + "format": "", + "content": "THW ban all technology in the pursuit of the genetic enhancement of humanity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Galway Open", + "year": "2012", + "format": "", + "content": "in the context of The Matrix: THW take the Blue Pill.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aghveryan IV", + "year": "2012", + "format": "", + "content": "THW punish sports teams for the criminal and violent behaviour of their fans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aghveryan IV", + "year": "2012", + "format": "", + "content": "THW ban foreign citizens from adopting Armenian children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aghveryan IV", + "year": "2012", + "format": "", + "content": "THW add a right to internet access to the Armenian constitution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aghveryan IV", + "year": "2012", + "format": "", + "content": "THB that the Armenian media does not adequately represent the views and concerns of Armenian society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Aghveryan IV", + "year": "2012", + "format": "", + "content": "THB that journalism is more effective than political protest in holding governments responsible for their actions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Open_Semiss", + "year": "2012", + "format": "", + "content": "“THB the Protection of National Identity is a Legitimate Reason to Restrict Immigration”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Open_Semiss", + "year": "2012", + "format": "", + "content": "“THB in a State of Anarchy”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Open_Semiss", + "year": "2012", + "format": "", + "content": "“THB Feminism has Run it's Course”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Open_Semiss", + "year": "2012", + "format": "", + "content": "“THW Vote for Mitt Romney to be the Next President of the United States of America”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi_4", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2012", + "format": "", + "content": "THW disclose the ethnicity of a sperm/egg donor to the prospective parent.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2012", + "format": "", + "content": "THBT goverments should only fund bailouts of other countries if they get permission to do so in a referendum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2012", + "format": "", + "content": "THBT the US should give South Korea weapons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2012", + "format": "", + "content": "THBT the feminist groups should not campaign against abortion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2012", + "format": "", + "content": "THBT the US should pay reparations to its Muslim population for policies carried out in the aftermath of 9/11.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2012", + "format": "", + "content": "THBT Boston College should release the IRA tapes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2012", + "format": "", + "content": "TH whishes that Barack Obama had faced a primary challenge.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Trinity IV", + "year": "2012", + "format": "", + "content": "THW welcome the downfall of global capitalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2012", + "format": "", + "content": "THW force broadcasters to display, promote and report women’s sport equally to men’s sport.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2012", + "format": "", + "content": "THW allow people to opt in to drugs that have not yet passed clinical trials.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2012", + "format": "", + "content": "THW make Georgia a NATO member.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2012", + "format": "", + "content": "THW ban the private production of pornography and replace it with state-produced pornography that promotes respect and good treatment for women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2012", + "format": "", + "content": "THW prevent foreign ownership of significant domestic companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "York IV", + "year": "2012", + "format": "", + "content": "THW treat the desecration and destruction of sites of historical or cultural value as a crime against humanity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THBT we live in a mediaocracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THBT If You Are Not In Fashion, You Are Nobody.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 10, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THBT science has replaced philosophy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 11, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THBT men build too many walls and not enough bridges.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 12, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THBT if it isn't broken, break it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 13, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THW look back in anger.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 14, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THBT greed is good.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 15, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THBT If It's Not Fun, You're Not Doing It Right.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 16, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THBT the best is yet to come.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 17, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THBT stale, pale males still rule.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 18, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THB in the Holy Trinity: Apple, Google and Facebook.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THBT life begins at 25.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THBT politicians should retire at 65 like everybody else.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THB in freedom at all costs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THB in a three-day week-end.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THW blow the whistle.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THBT physical appearance is a fundamental criterion for good leadership.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "French Debate Association Tournament Preliminary Rounds", + "year": "2012", + "format": "", + "content": "THB politicians should have a sense of humor.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Debates Round 2", + "year": "2012", + "format": "", + "content": "THW remove all hate speech laws.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Debates Round 2", + "year": "2012", + "format": "", + "content": "THW, in countries where the death penalty is in use, not allow anyone to watch the execution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 10, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Debates Round 2", + "year": "2012", + "format": "", + "content": "THW take socio-economic background into account when sentencing criminals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 11, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Debates Round 2", + "year": "2012", + "format": "", + "content": "TTHW prosecute domestic violence without the consent of the victim.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 12, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Debates Round 2", + "year": "2012", + "format": "", + "content": "THBT post-revolution states should delegate all trials and sentencing of former rulers and high ranking officials to the international community.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 13, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Debates Round 2", + "year": "2012", + "format": "", + "content": "THW Elect its Judges Democratically.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 14, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Debates Round 2", + "year": "2012", + "format": "", + "content": "THW publish a list of convicted sex offenders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 15, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Debates Round 2", + "year": "2012", + "format": "", + "content": "THW ban alcohol.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 16, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Debates Round 2", + "year": "2012", + "format": "", + "content": "THW allow “religious duty/compulsion” as a mitigating defense for crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Debates Round 2", + "year": "2012", + "format": "", + "content": "THW ban media reporting on violent crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Debates Round 2", + "year": "2012", + "format": "", + "content": "THW hold parents responsible for the crimes of their kids.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Debates Round 2", + "year": "2012", + "format": "", + "content": "THW make rehabilitation the sole criteria for releasing criminals from prison.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Debates Round 2", + "year": "2012", + "format": "", + "content": "THW ban works of literature/film/music that glorify criminality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Debates Round 2", + "year": "2012", + "format": "", + "content": "THW compel priests to report a crime which they learn of through confession.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Debates Round 2", + "year": "2012", + "format": "", + "content": "TTHW abolish the practice of plea bargaining.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Mace Debates Round 2", + "year": "2012", + "format": "", + "content": "THW end the use of prisons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin Punk", + "year": "2012", + "format": "", + "content": "THW make the use of public transport free.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin Punk", + "year": "2012", + "format": "", + "content": "THW forbid celebrities to present their children in the media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin Punk", + "year": "2012", + "format": "", + "content": "THBT education is a federal matter.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin Punk", + "year": "2012", + "format": "", + "content": "THBT the EU should impose an embargo on countries where child labour exists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin Punk", + "year": "2012", + "format": "", + "content": "THBT endangered animal species should not be actively protected.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin Punk", + "year": "2012", + "format": "", + "content": "THBT judges should have the option to sentence people to human trials (medical trials?).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP Tournament", + "year": "2012", + "format": "", + "content": "THW allow ‘Fight Clubs’ to be founded.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP Tournament", + "year": "2012", + "format": "", + "content": "THW give police the same investigative powers as under the anti-terrorism framework when dealing with ‘loverboys’ (men who trick young women into becoming prostitutes).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP Tournament", + "year": "2012", + "format": "", + "content": "THBT the EU should focus all its efforts on the Common Market (should only strive for a Common Market).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP Tournament", + "year": "2012", + "format": "", + "content": "THW oblige prospective parents with a genetic disease to use embryo selection.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP Tournament", + "year": "2012", + "format": "", + "content": "THW suspend all sanctions on North Korea.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Rotterdam BP Tournament", + "year": "2012", + "format": "", + "content": "THW impose a legal duty of care on adult children for their parents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin New Year’s Invitational", + "year": "2012", + "format": "", + "content": "THBT the Brasilian state should prosecute a murder that happens among one of the uncontacted peoples in the rainforest.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin New Year’s Invitational", + "year": "2012", + "format": "", + "content": "THBT in states where cloning is allowed for research purposes, it should be possible to purchase Chimären (a copy body? genetic material?).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin New Year’s Invitational", + "year": "2012", + "format": "", + "content": "THW prohibit missionary work that pronounces abstention as the only godly way against the spread of HIV.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin New Year’s Invitational", + "year": "2012", + "format": "", + "content": "THBT the State should put freedom over security in case of doubt.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Berlin New Year’s Invitational", + "year": "2012", + "format": "", + "content": "THBT fathers have the right to get a fatherhood test even against the explicit wish of the mother.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford Women’s Open", + "year": "2012", + "format": "", + "content": "THBT religious organisations should be subject to all aspects of civilian law (including, but not limited to: employment practice, adoption policy,...).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford Women’s Open", + "year": "2012", + "format": "", + "content": "THW require military training to include extensive ethical and philosophical study.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford Women’s Open", + "year": "2012", + "format": "", + "content": "THW vote Republican.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford Women’s Open", + "year": "2012", + "format": "", + "content": "THW legalise S&M.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford Women’s Open", + "year": "2012", + "format": "", + "content": "THB it is legitimate to use violence to defend private property.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford Women’s Open", + "year": "2012", + "format": "", + "content": "TH, as the UN, would use only private military companies for peace keeping operations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford Women’s Open", + "year": "2012", + "format": "", + "content": "THW raise its child without gender.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Hamburg", + "year": "2012", + "format": "", + "content": "Should pensioners be obliged to do voluntary work?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Hamburg", + "year": "2012", + "format": "", + "content": "Should the 9th of November be Germany’s national holiday?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Hamburg", + "year": "2012", + "format": "", + "content": "Do we need a common European asylum and migration policy?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Hamburg", + "year": "2012", + "format": "", + "content": "Should the debt limit on Länder be abolished?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Hamburg", + "year": "2012", + "format": "", + "content": "Should people with prostheses be allowed to participate in regular sports competitions, even when the prostheses could be considered advantageous?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Hamburg", + "year": "2012", + "format": "", + "content": "Should research in all German universities exclusively serve civil and peaceful purposes?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Hamburg", + "year": "2012", + "format": "", + "content": "Should the position of national president be abolished?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "THW make fathers take paternity leave.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "THW prevent politicians from making fact claims that, while not technically lies, are substantially misleading to voters.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "THW force large companies who leave an area to pay the costs of any resulting structural unemployment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "THW require individuals to use all their wealth beyond USD 5 million for philanthropic projects.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "THW require deaf parents to send their children (whether deaf or hearing) to mainstream schools for their primary and secondary education.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "TH supports politicians who pass progressive legislation, even where this is contrary to the wishes of the democratic electorate.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "TH supports the free movement of labour worldwide.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "THW exempt academic disputes from defamation law.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "THW ban all private healthcare in favour of a comprehensive public healthcare system.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "THBT when doctors discover a patient has STDs, they should reveal that info to the patient’s partner.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "THBT public education systems should raise the aspirations of children from disadvantaged backgrounds beyond that which is realistic to expect them to achieve.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "THW limit government ministers’ standard of living to that of someone on the current median wage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "In countries with few female politicians, THB it is good to have a politically active ‘first lady’.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "TH supports scientists who fabricate evidence exaggerating the certainty of man-made climate change, where there is a low likelihood to be caught.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "THW not allow a single media company to own multiple TV channels or newspapers (whether in print or online).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "THBT “Western” consultants advising dictatorships have a moral duty to sabotage them.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "THBT images designed to even slightly sexually attract/aroused viewer should be restricted to specialist adult shot/xxx domain.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "De La Salle WUDC", + "year": "2012", + "format": "", + "content": "TH supports nationalism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Novice Cup", + "year": "2011", + "format": "", + "content": "THW enable people to sue their partner for compensation in case of infedility.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Novice Cup", + "year": "2011", + "format": "", + "content": "THW abolish political parties and only allow election of individuals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Novice Cup", + "year": "2011", + "format": "", + "content": "THW set ethnic quota per school.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Novice Cup", + "year": "2011", + "format": "", + "content": "You would make your discovery public.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Stuttgart IV", + "year": "2011", + "format": "", + "content": "THW make the right to vote contingent on basic knowledge about political issues.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Stuttgart IV", + "year": "2011", + "format": "", + "content": "THBT the EU should limit the amount of energy individuals are allowed to consume.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Stuttgart IV", + "year": "2011", + "format": "", + "content": "As a parent, THW not lie to its children about the existence of Santa Claus.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Stuttgart IV", + "year": "2011", + "format": "", + "content": "THW allow young boys to undergo chemical castration to preserve their singing voices.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Stuttgart IV", + "year": "2011", + "format": "", + "content": "This house would militarily intervene in Syria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Stuttgart IV", + "year": "2011", + "format": "", + "content": "THW make Drion’s pill publicly available.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2011", + "format": "", + "content": "THBT Western nations should make development aid conditional on the protection of LGBT (Lesbian, gay, bisexual, transsexual) rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2011", + "format": "", + "content": "THBT governments should lie to their populations in time of economic crisis, where the lies are deemed likely to improve the economy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2011", + "format": "", + "content": "THW make any language which is spoken by at least 5% of the population an official state language and offer all state service in that language.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2011", + "format": "", + "content": "THBT the US military should destroy Iran's nuclear program.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2011", + "format": "", + "content": "THW require all media aimed at children to undermine traditional gender roles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2011", + "format": "", + "content": "THW make the US pay reparations to its Muslim citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2011", + "format": "", + "content": "THBT the time for the United States of Europe has come.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Streitcultur Cup", + "year": "2011", + "format": "", + "content": "Fake or Real: Should photoshopped (retouched) images be banned in advertisement?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Streitcultur Cup", + "year": "2011", + "format": "", + "content": "Should states that financially support other states in crisis situations get a say in that country’s internal politics?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Streitcultur Cup", + "year": "2011", + "format": "", + "content": "Should the concept of household income be abolished for taxation purposes? (Soll das Ehegattensplitting abgeschafft werden?).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Streitcultur Cup", + "year": "2011", + "format": "", + "content": "In the name of the people: do we need jury panels in our courts?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Pro-Am Tournament", + "year": "2011", + "format": "", + "content": "THBT the Russian language should be an official language of Estonia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Pro-Am Tournament", + "year": "2011", + "format": "", + "content": "THW ban pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Pro-Am Tournament", + "year": "2011", + "format": "", + "content": "THBT political assassination is a legitimate tool for foreign policy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Pro-Am Tournament", + "year": "2011", + "format": "", + "content": "THW have a maximum wage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Estonian Pro-Am Tournament", + "year": "2011", + "format": "", + "content": "THW stop all measures to prevent suicides.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Finnish National Championships", + "year": "2011", + "format": "", + "content": "THW break the state monopoly on alcohol.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Finnish National Championships", + "year": "2011", + "format": "", + "content": "THW not fund public service broadcasters (like YLE or BBC).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Finnish National Championships", + "year": "2011", + "format": "", + "content": "THBT free health care should cover cosmetic surgery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Finnish National Championships", + "year": "2011", + "format": "", + "content": "THBT Finland should unilaterally pull out of the Euro.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Finnish National Championships", + "year": "2011", + "format": "", + "content": "THW create a common European defence force.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Finnish National Championships", + "year": "2011", + "format": "", + "content": "THW appoint the parliament by lottery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2011", + "format": "", + "content": "THBT High Schools should not award the titles Prom King and Prom Queen at the Senior Prom.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2011", + "format": "", + "content": "THW Make Substantial Military Service a Condition for Running for the Presidency of the United States.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2011", + "format": "", + "content": "THBT Facebook, Google, and Yahoo should take active steps to prevent the formation of \"filter bubbles\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2011", + "format": "", + "content": "THW allow individuals to legally occupy any building that has been unused for more than 6 months.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2011", + "format": "", + "content": "THBT the Japanese Government should allow its citizens to form leagues of masked vigilantes to fight the Yakuza.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "KCL IV", + "year": "2011", + "format": "", + "content": "THBT Courts in Emerging Democracies should break up persistently dominant political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2011", + "format": "", + "content": "THBT all bail-out packages should be approved by a popular referendum in the recipient party.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2011", + "format": "", + "content": "THBT the Arab League should impose an oil embargo on the EU until the EU member states lift their ban on the Islamic Veil.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2011", + "format": "", + "content": "THBT it would be better if Sinn Fein took their seats (in the UK parliament).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2011", + "format": "", + "content": "THBT Virginia Tech should remember Seung-Hui Cho, the shooter, along with his victims in its memorials … and launch 33 balloons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2011", + "format": "", + "content": "THW allow defendants in criminal trials to ask the judge to be acquitted on the grounds that the law they broke was unjust, and would instruct all juries to take this defense into account.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2011", + "format": "", + "content": "THBT the State should have no role in the recognition of marriage.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2011", + "format": "", + "content": "THBT the State should give everyone an equal salary, paid for by the government, even if they are unemployed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork IV", + "year": "2011", + "format": "", + "content": "THW refuse war veterans the right to vote.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Centrale IV", + "year": "2011", + "format": "", + "content": "THBT parenthood should be by license only.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Centrale IV", + "year": "2011", + "format": "", + "content": "THBT states should actively try to break down internet censorship of foreign regimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Centrale IV", + "year": "2011", + "format": "", + "content": "THBT gay professional sportspeople have a duty to come out.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Centrale IV", + "year": "2011", + "format": "", + "content": "THBT the European Union should have direct powers of taxation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Centrale IV", + "year": "2011", + "format": "", + "content": "THW legalize opium production in Afghanistan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Centrale IV", + "year": "2011", + "format": "", + "content": "THBT serial marital infidelity should be a bar to seeking high political office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Paris Centrale IV", + "year": "2011", + "format": "", + "content": "THW partition Belgium.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2011", + "format": "", + "content": "THBT American political parties should hold their primaries nation-wide on one day.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2011", + "format": "", + "content": "THBT immigration is a good solution to counter an aging population.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2011", + "format": "", + "content": "THW nationalise the banking sector.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2011", + "format": "", + "content": "(In 2050 scientists have localised the gen that causes paedophilic tendencies. The gen can be surgically removed/”turned off” without major impact) THW require everyone with the gen to undergo surgery, even if they have never been convicted of a crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2011", + "format": "", + "content": "THW ban all advertising.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2011", + "format": "", + "content": "THBT large-scale land redistribution are a legitimate way to combat poverty in the third world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cicero Debattoernooi", + "year": "2011", + "format": "", + "content": "THW require the ICC to prosecute Netanyahu.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ESU England Mace", + "year": "2011", + "format": "", + "content": "THW allow gifted students to skip years in primary and secondary school.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ESU England Mace", + "year": "2011", + "format": "", + "content": "THBT all countries should abandon the fight against climate change and should just seek to adapt to its consequences.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ESU England Mace", + "year": "2011", + "format": "", + "content": "(Pre-released motion) THBT all US primary elections should be held on the same day.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ESU England Mace", + "year": "2011", + "format": "", + "content": "THB the EU should centrally govern all vital aspects of the economies of heavily indebted eurozone nations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ESU England Mace", + "year": "2011", + "format": "", + "content": "THBT single parents in prison should be provided with special treatment to allow them to raise their young children from behind bars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ESU England Mace", + "year": "2011", + "format": "", + "content": "THBT Pakistan should cease all assistance to the United States in the fight against the Taliban.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "ESU England Mace", + "year": "2011", + "format": "", + "content": "THW criminalise all forms of racist speech and behaviour, even where it falls short of directly inciting racial hatred or violence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2011", + "format": "", + "content": "THW ban the smacking of children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2011", + "format": "", + "content": "THBT one party's maximum share in the parliament should be limited to 50% + 1 place.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2011", + "format": "", + "content": "THBT eurozone countries that are in danger of default should be forced to give up control over taxation and budget spending in addition to receiving a bail-out.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2011", + "format": "", + "content": "THBT legislators should not take the will of the people into consideration, when the reason behind it is religious.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2011", + "format": "", + "content": "THBT countries should use political leverage to influence judicial proceedings involving their citizens in other countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2011", + "format": "", + "content": "THBT Russia along with the EU & US should implement a complete trade ban with Iran.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Moscow Open", + "year": "2011", + "format": "", + "content": "THBT society would be better if the primary duty of companies were to their workers and not to their shareholders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Karlsruhe", + "year": "2011", + "format": "", + "content": "Should appeal procedures (Einspruchsmöglichkeiten) against construction projects for renewable energy be cancelled?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Karlsruhe", + "year": "2011", + "format": "", + "content": "Should the inclusion of disabled children in German schools be stopped?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Karlsruhe", + "year": "2011", + "format": "", + "content": "Should the NPD be banned?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Karlsruhe", + "year": "2011", + "format": "", + "content": "Should human rights be cancelled for those persons who violate human rights?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Karlsruhe", + "year": "2011", + "format": "", + "content": "Should news be censored when it could shake the confidence in the public finances of a Eurozone member?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Karlsruhe", + "year": "2011", + "format": "", + "content": "Should the West support the uprising in Syria militarily?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Zeit Debatte Karlsruhe", + "year": "2011", + "format": "", + "content": "Do we need a United States of Europe?.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS", + "year": "2011", + "format": "", + "content": "THW make voting a use it or lose it right.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 0, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS", + "year": "2011", + "format": "", + "content": "THBT state has an obligation to fund the arts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS", + "year": "2011", + "format": "", + "content": "THBT newly democratised Arab countries should not allow religious parties to participate in elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 10, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS", + "year": "2011", + "format": "", + "content": "THBT all countries’ education systems should focus on the teaching of English.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS", + "year": "2011", + "format": "", + "content": "THW allow abortion only in the case of both parents’ consent.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS", + "year": "2011", + "format": "", + "content": "THBT the European experiment has failed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS", + "year": "2011", + "format": "", + "content": "THBT media in liberal Western democracies is not independent and free.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS", + "year": "2011", + "format": "", + "content": "THW give every citizen a positive and a negative vote in elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS", + "year": "2011", + "format": "", + "content": "TH supports the implementation of a global Robin Hood tax.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS", + "year": "2011", + "format": "", + "content": "TH regrets the undemocratic election of Italy’s and Greece’s president.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS", + "year": "2011", + "format": "", + "content": "THBT the EU should make Serbian membership conditional upon Serbia’s acceptance of gay rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament II", + "year": "2011", + "format": "", + "content": "This House believes that the media should show the full horror of war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament II", + "year": "2011", + "format": "", + "content": "This House approves of \"hacktivism\" against misbehaving corporations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament II", + "year": "2011", + "format": "", + "content": "THW give transnational EU citizenship to Roma.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament II", + "year": "2011", + "format": "", + "content": "THBT there will be no peace in the Middle East without an independent Palestine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament II", + "year": "2011", + "format": "", + "content": "THBT war criminals should be put on trial in their home countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament II", + "year": "2011", + "format": "", + "content": "THBT states should guarantee legally enforceable socio-economic rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament II", + "year": "2011", + "format": "", + "content": "HBT Greece should go bankrupt.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament II", + "year": "2011", + "format": "", + "content": "THBT companies should be held liable in their home countries for environmental damage in other countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "IDAS Tournament II", + "year": "2011", + "format": "", + "content": "THBT the feminist movement should seek a ban on pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Round 2", + "year": "2011", + "format": "", + "content": "\"THW Remove all State Funding from RTE\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Round 2", + "year": "2011", + "format": "", + "content": "\"THB if Josef Mengele had Discovered a Cure for Cancer, it'd be morally Acceptable to use it\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Round 2", + "year": "2011", + "format": "", + "content": "\"THW Remove Equal State Suffrage in the United States Senate\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Round 2", + "year": "2011", + "format": "", + "content": "\"TH Supports 'The Right to be Forgotten' (in relation to internet privacy)\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Round 2", + "year": "2011", + "format": "", + "content": "\"THB Enda Kenny's first 9 months as Taoiseach have been a success\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Round 2", + "year": "2011", + "format": "", + "content": "\"THW Allow Organised Fight Clubs\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Round 2", + "year": "2011", + "format": "", + "content": "\"THW Introduce Sex-Affirmative Action for Corporate Executives\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Round 2", + "year": "2011", + "format": "", + "content": "\"THW Abolish Libel\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall", + "year": "2011", + "format": "", + "content": "This house would ban under 18's from appearing on reality TV shows.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall", + "year": "2011", + "format": "", + "content": "This house would ban all space exploration for the foreseeable future.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall", + "year": "2011", + "format": "", + "content": "This house would globally create a tax on financial transactions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall", + "year": "2011", + "format": "", + "content": "This house would apply all libel law to content produced on social networking sites.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Bogwall", + "year": "2011", + "format": "", + "content": "This house would euthanise all people on their 80th brithday.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2011", + "format": "", + "content": "THW allow family members to forcibly commit proven alcoholics and drug addicts to rehabilitation clinics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2011", + "format": "", + "content": "THBT all research organizations should institute codes of conduct that forbid the creation of strong Artificial Intelligence.", + "infoSlide": "A ‘Weak’ Artificial Intelligence is only capable of solving narrowly defined problems. A ‘Strong’ AI is capable of all the same kinds of intellectual tasks as human beings. A Strong AI would be able to reason, plan, learn, adapt, and communicate in natural language. Researchers at major universities have made significant progress towards the creation of Strong AI.", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2011", + "format": "", + "content": "THW provide financial assistance to inner city communities to prevent gentrification.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2011", + "format": "", + "content": "THBT China should make extracting a full apology for Japan’s war crimes a top strategic priority.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2011", + "format": "", + "content": "THBT feminism should not campaign against polygamy in poor countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2011", + "format": "", + "content": "THW take the children of the Amish into care.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2011", + "format": "", + "content": "THB that it is morally legitimate for Occupy Movement to use violence to undermine capitalist institutions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2011", + "format": "", + "content": "THW consider the use of conscripts a war crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2011", + "format": "", + "content": "TH regrets the rise of a distinct African American culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cambridge IV", + "year": "2011", + "format": "", + "content": "THW break Google’s search monopoly.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2011", + "format": "", + "content": "THBT sexual education classes in schools should teach techniques or pure sexual gratification (including but not limited to ...list follows).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2011", + "format": "", + "content": "THBT in developing countries aid organisations should be banned from religious proselytyzing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2011", + "format": "", + "content": "THW suspend trade unions and labour protection laws in times of economic crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2011", + "format": "", + "content": "THBT Israel should Materially Support Arab Pro-Democratic Movements.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2011", + "format": "", + "content": "THW place a special tax on successful artists in order to fund new and developing artists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2011", + "format": "", + "content": "THBT the LBGT movement should not support Gay Pride marches.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2011", + "format": "", + "content": "THBT the leaders of big world corporations should be democratically chosen by national elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2011", + "format": "", + "content": "THBT international law should allow states which accept refugees to sue the states they come from for compensation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2011", + "format": "", + "content": "THW establish brothels on military bases.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Oxford IV", + "year": "2011", + "format": "", + "content": "THW establish geographical zones in which the sale, possession, and use of drugs is legal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW positively discriminate for women in the armed forces.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW abolish all laws prohibiting cruelty to animals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 10, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW allow parents to remove their children from sex education classes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 11, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THBT news outlets should not have shown images of Gaddafi’s corpse.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 12, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW dismantle power sharing in the North and elect the Stormont Assembly by PR STV.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 13, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW ban the use, in schools, of literature that reinforces traditional gender roles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 14, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW Not outsource the running of hospitals to private companies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 15, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW allow police to temporarily suspend social networking sites in the interest of restoring law and order.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 16, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW publicly fund research into paranormal phenomena.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 17, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW Occupy Dame Street.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 18, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW impose a moratorium on home foreclosures.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 19, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW introduce a salary cap for European footballers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW prohibit the release of previously unpublished artistic works, after the death of the creator, author or musician.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 20, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "TH regrets the popularity of the Twilight series.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 21, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW Would Reintroduce Hard Labour in Prisons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 22, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW not lie to its children about Santa Claus.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 23, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THB that it is in the interests of women’s equality to campaign against maternity leave.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 24, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW require internet subscribers to opt in in order to be able to view pornorgraphic websites.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 25, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "That military officers should be allowed to publicly criticise the government.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 26, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "This House would allow the defendants that belong to a minority group to choose to be judged by a jury composed exclusively of other members of their same minority group.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 27, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW (assuming the technology existed) implant irremovable tracking chips in its citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 28, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THBT Trade Unions do more harm than good for workers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 29, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THB The state should financially support newspapers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THBT destruction of private property is a legitimate tool for environmental campaigners.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 30, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW End All State Funding For The Arts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 31, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW Allow People To Sell Their Organs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 32, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW only hire disabled actors to play disabled characters.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW abolish JobBridge.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW set a cap on pay for all chief executives and other high level employees of chartities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW abolish geographical constituencies and hold only national elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW allow people to sell their organs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "John Smith Memorial Irish Mace Round 1", + "year": "2011", + "format": "", + "content": "THW give social welfare in the form of vouchers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2011", + "format": "", + "content": "THB the police should not create perp walks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2011", + "format": "", + "content": "THW teach boys those aspects of subjects which are thought to be most interesting to them, such as military history.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2011", + "format": "", + "content": "THW require all newspapers to be constituted as cooperatives, owned and run by journalists.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2011", + "format": "", + "content": "Insofar as it is cost effective, THBT authorities should routinely gather and access as much information, including private and personal information, that may conceivably be useful in solving or preventing crime, as possible.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2011", + "format": "", + "content": "THW punish NHS workers who do not blow the whistle on malpractice, corruption or negligence, of which they know, as if they had carried out the act themselves.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2011", + "format": "", + "content": "This house believes it is illegitimate for governments to prevent any peaceful protest in public space.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2011", + "format": "", + "content": "This house would not prosecute people living below the poverty line for purely acquisitive crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Durham IV", + "year": "2011", + "format": "", + "content": "This house believes that the media should not use the phrase 'big society' uncritically.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2011", + "format": "", + "content": "THBT the USA should stop its military support of Taiwan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2011", + "format": "", + "content": "THBT the state has a duty to provide free, unlimited and uncensored access to the Internet at every home.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2011", + "format": "", + "content": "THW legalise all forms of hatespeech.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2011", + "format": "", + "content": "THW still pronounce a verdict for civil cases which have been settled out of court.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2011", + "format": "", + "content": "THBT each country has a duty to limit population growth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2011", + "format": "", + "content": "You are the commander of an Israeli submarine in the Persian Gulf. It is the day after Israel was annihilated in a surprise Iranian nuclear attack: THW not use Israel's second strike capabilities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCU Open", + "year": "2011", + "format": "", + "content": "THW halt all state-sponsored efforts to integrate immigrants into society.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2011", + "format": "", + "content": "THW ban child beauty pageants.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2011", + "format": "", + "content": "THBT Israel should unilaterally preemptively strike Iran.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2011", + "format": "", + "content": "THBT individuals should be required by governments to invest a defined portion of their salary for their retirement.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2011", + "format": "", + "content": "THW forcibly remove the homeless from the streets and place them in mental institutions or rehabilitation.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2011", + "format": "", + "content": "THW consign the European Union to the dustbin of history.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2011", + "format": "", + "content": "THS comprehensive parental leave paid for by employers.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2011", + "format": "", + "content": "THW camp out in solidarity with the “Occupy” protestors.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2011", + "format": "", + "content": "THBT newly democratised Arab nations should not allow religious parties to run for office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates First Round", + "year": "2011", + "format": "", + "content": "“THW cut all foreign aid in times of recession”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates First Round", + "year": "2011", + "format": "", + "content": "“THW Introduce Mandatory Paternity Leave”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 10, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates First Round", + "year": "2011", + "format": "", + "content": "“THB Norris was/is the Right Choice for President of Ireland”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 11, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates First Round", + "year": "2011", + "format": "", + "content": "“THB Wireless Internet Access Should be a Right not a Privilege”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 12, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates First Round", + "year": "2011", + "format": "", + "content": "“THW Force People to take a Mandatory Civics Test before Voting in National Elections/Referendas”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 13, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates First Round", + "year": "2011", + "format": "", + "content": "“THB the IOC Should Ban Drug Cheats for Life”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 14, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates First Round", + "year": "2011", + "format": "", + "content": "“TH Regrets the Demise of the Green Party”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 15, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates First Round", + "year": "2011", + "format": "", + "content": "“THW Remove all Catholic Control of Public Education by the End of the School Year”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 16, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates First Round", + "year": "2011", + "format": "", + "content": "“TH is Disgusted by 'Toddlers and Tiaras' and other Child Beauty Pagants”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates First Round", + "year": "2011", + "format": "", + "content": "“THB it's High Time the Monarchy was Abolished”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates First Round", + "year": "2011", + "format": "", + "content": "“THB Manchester City and Teams of their Ilk are Ruining Football”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates First Round", + "year": "2011", + "format": "", + "content": "“THW give Extra Leaving Cert Points for Extra Curricular Activities”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates First Round", + "year": "2011", + "format": "", + "content": "“THW use Military Force to Remove Kim Jong Il from Power Immediately”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates First Round", + "year": "2011", + "format": "", + "content": "“THB that Barack Obama's Presidency has been a Success”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates First Round", + "year": "2011", + "format": "", + "content": "“THW Abolish the Minimum Wage”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Irish Times Debates First Round", + "year": "2011", + "format": "", + "content": "“THB it's Abhorrent for Western Countries to Employ Doctors from the Third World”.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial College Open", + "year": "2011", + "format": "", + "content": "THBT the media should not report the declared motivations of protesters who use violence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial College Open", + "year": "2011", + "format": "", + "content": "THBT emerging democracies should limit their presidents to a single term in office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial College Open", + "year": "2011", + "format": "", + "content": "THW not contact, trade or otherwise engaging with uncontacted Yanomami communities in the Amazon forest.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial College Open", + "year": "2011", + "format": "", + "content": "THW disband the BBC.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Imperial College Open", + "year": "2011", + "format": "", + "content": "The House does not regret the invasion of Iraq.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAMDA Novices", + "year": "2011", + "format": "", + "content": "THW Only Imprison Criminals Who Threaten the Safety of Citizens.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAMDA Novices", + "year": "2011", + "format": "", + "content": "THW End Fiscal Austerity and Increase Government Security on Education, Health and Infrastructure.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAMDA Novices", + "year": "2011", + "format": "", + "content": "THBT Israel was Right to Negotiate the Release of Gilad Shilat.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAMDA Novices", + "year": "2011", + "format": "", + "content": "THW Ban the Production and Consumption of Meat.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAMDA Novices", + "year": "2011", + "format": "", + "content": "THW Allow Doctors to Lie to Patients in Order to Use the Placebo Effect (not sure of wording).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "NAMDA Novices", + "year": "2011", + "format": "", + "content": "THW Ban Porn.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD VP", + "year": "2011", + "format": "", + "content": "THW outsource the capture of elusive criminals to bounty-hunters.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD VP", + "year": "2011", + "format": "", + "content": "THBT Ireland should create constituencies, elected by people who emigrate from Ireland.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD VP", + "year": "2011", + "format": "", + "content": "THW grant aboriginal peoples copyrights over depictions of their culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD VP", + "year": "2011", + "format": "", + "content": "THW allow the families of dead people to sue for libel on their behalf.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD VP", + "year": "2011", + "format": "", + "content": "THBT it is legitimate for politicians to lie to the electorate about their real views.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD VP", + "year": "2011", + "format": "", + "content": "THW grant minors the right to euthanasia regardless of parental consent.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UCD VP", + "year": "2011", + "format": "", + "content": "Regardless of the relative efficiency of various economic systems, THBT meritocracy is a just way of allocating resources.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2011", + "format": "", + "content": "THW give harsher punishments to those who commit crimes during riots.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2011", + "format": "", + "content": "THW have minimum quotas for different ethnic groups living in public housing estates.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2011", + "format": "", + "content": "THBT serving military generals should be prohibited from talking to the Media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2011", + "format": "", + "content": "THBT the Indian Government Should Ban marriage between Members of the Same Caste.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2011", + "format": "", + "content": "THW create a free market for the sale of babies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2011", + "format": "", + "content": "THW allow constituents to recall their elected representatives.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2011", + "format": "", + "content": "THBT the countries of former Yugoslavia should create a common history curriculum and textbooks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2011", + "format": "", + "content": "THBT Mexico Should Legalise the Sale, Production and Transit of all Drugs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2011", + "format": "", + "content": "THW end all subsidies for small farms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SOAS IV", + "year": "2011", + "format": "", + "content": "TH regrets the extra judicial killing of Colonel Gaddafi.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Masters", + "year": "2011", + "format": "", + "content": "THW give Parliament the right to determine the moment a monarch steps down.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Masters", + "year": "2011", + "format": "", + "content": "THW deny Greece the Euro (or: THW kick Greece out of the Eurozone).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Masters", + "year": "2011", + "format": "", + "content": "THW remove the right to religious freedom from the constitution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Masters", + "year": "2011", + "format": "", + "content": "THW help countries with the death penalty to implement it humanely.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2011", + "format": "", + "content": "THW ban nuclear energy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2011", + "format": "", + "content": "THW abolish the British Monarchy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2011", + "format": "", + "content": "THB the UN should immediately recognise and independent state of Palestine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2011", + "format": "", + "content": "THW cease all austerity measures in favour of a massive increase in government spending.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2011", + "format": "", + "content": "THW start a marxist revolution.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Edinburgh Cup", + "year": "2011", + "format": "", + "content": "THB the world is a safer place since the collapse of the USSR.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Pro-Am Tournament", + "year": "2011", + "format": "", + "content": "THW make parents pass a test before having children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Pro-Am Tournament", + "year": "2011", + "format": "", + "content": "THW halt all development aid to countries that punish homosexuality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Pro-Am Tournament", + "year": "2011", + "format": "", + "content": "THW allow the police full and unrestricted access to Facebook and other social media.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Pro-Am Tournament", + "year": "2011", + "format": "", + "content": "THW ban corporate sponsorship of academic research.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch Pro-Am Tournament", + "year": "2011", + "format": "", + "content": "THW allow convicted criminals the choice between their sentence and the same number of years of weekly corporal punishment.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kiev Open", + "year": "2011", + "format": "", + "content": "THBT there should be no limit on self-defence against violent crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kiev Open", + "year": "2011", + "format": "", + "content": "THW ban parades and demonstrations that could incite a violent response.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kiev Open", + "year": "2011", + "format": "", + "content": "THBT the UN should offer large bounties for the capture of pirates and the destruction of pirate ships.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kiev Open", + "year": "2011", + "format": "", + "content": "THW ban all religions from actively seeking conversions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kiev Open", + "year": "2011", + "format": "", + "content": "THBT America and the EU should cease all financial, political and military aid to both Israel and the Palestinian Authority until they reach a peace deal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kiev Open", + "year": "2011", + "format": "", + "content": "THW ban political parties that propagate racism and xenophobia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Kiev Open", + "year": "2011", + "format": "", + "content": "THBT even in an oppressive state, citizens should not turn to violence as a means of opposition.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EU-China Youth Debate Tournament", + "year": "2011", + "format": "", + "content": "THBT EU membership should not be determined on the basis of geographic criteria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EU-China Youth Debate Tournament", + "year": "2011", + "format": "", + "content": "THBT media company owners have the right to influence the nature of news.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EU-China Youth Debate Tournament", + "year": "2011", + "format": "", + "content": "THBT China should abolish the “Gaokao” in favour of allowing universities to establish their own (admission) criteria.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EU-China Youth Debate Tournament", + "year": "2011", + "format": "", + "content": "THBT during riots it is legitimate for governments to deny access to social networks.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EU-China Youth Debate Tournament", + "year": "2011", + "format": "", + "content": "THBT a Chinese Marshall Plan should be initiated to save the Euro.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EU-China Youth Debate Tournament", + "year": "2011", + "format": "", + "content": "THW demand international corporations operating in China to uphold the same environmental standards required in their home country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "EU-China Youth Debate Tournament", + "year": "2011", + "format": "", + "content": "THBT Mandarin should be taught as the primary second language in all EU schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2011", + "format": "", + "content": "THW ban the payment of ransoms.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2011", + "format": "", + "content": "THW force elected politicians and their families to use only public health and education services.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2011", + "format": "", + "content": "THW mandate the use of condoms in porn.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2011", + "format": "", + "content": "THW prosecute violent fouls in sports as criminal assault.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2011", + "format": "", + "content": "Actually, THW rather see one innocent man go to jail than a 100 guilty men walk free.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2011", + "format": "", + "content": "THBT natural resources should belong to the world and not to any individual country.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2011", + "format": "", + "content": "THBT a universal minimum standard of education is a prerequisite for democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Red Sea Open", + "year": "2011", + "format": "", + "content": "THBT consent is not a source of moral legitimacy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This house believes that national sporting teams should reflect the diversity of the national population.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This house believes that all states have a right to nuclear weapons.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This house believes that governments should not provide benefits on the basis of marital status.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This house believes that central banks should set limits on government spending.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This wouse would prioritise asylum Seekers who have engaged in armed struggle against oppressive regimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This wouse would allow teachers unions the right to strike.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This wouse would require individuals to reveal their actual identity when communicating on the internet.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This house believes that the southern african development community (SADC) should pursue political union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This house believes that social movements should use the courts rather than the legislature to advance social change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This house supports a one state solution for the Israeli-Palestinian conflict.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This wouse would give more votes to the poor.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This house believes that domestic courts should try foreign nationals who commit war crimes abroad.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This wouse would prefer that the children of racial minorities be adopted by parents of that race.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This house believes that the courts should break up consistently dominant political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This wouse would buy local.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Masters_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This house prefers a philosopher King to a tyrannical democracy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Masters_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This wouse would buy countries votes in international organizations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This house believes that courts should not enforce wills that discriminate on the basis of race.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This house opposes organised religion.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Botswana WUDC", + "year": "2011", + "format": "", + "content": "This wouse would invade Zimbabwe.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2010", + "format": "", + "content": "THW criminalize women that drink alcohol during pregnancy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2010", + "format": "", + "content": "THBT English should be the only language of education in developing countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2010", + "format": "", + "content": "THW forcibly settle the Roma.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2010", + "format": "", + "content": "THBT the US should stop all support (including military) until Israel unilaterally withdraws from illegal settlements in Palestine.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2010", + "format": "", + "content": "THW introduce quotas of poor and rich in all schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2010", + "format": "", + "content": "THBT the state should approve all loans.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2010", + "format": "", + "content": "THBT emergent democracies should ban all political rallies and other large public gatherings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "This house would ban labour unions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "This house believes that developing nations should pay for the full tuition of female university students.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "This house would financially incentivize both inter-faith and inter-ethnic marriages.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "THW prohibit high-ranking members of the Sri Lankan military and the Tamil Tigers from participation in the election.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "THW abolish taxes on alcohol and cigarettes that go beyond normal sales taxes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "THW prosecute communities for complicity in honour killings.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "THW grant those diagnosed with terminal illnesses the right to access treatments that have not completed clinical testing.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "THW partition Sudan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "THW ban all pornography.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "This House would use faith based rehabilitation in prison.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "This House believes that democratic states should own their own broadcasting corporations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "This House would ban any scheme intended to cure homosexuality.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "This house would allow prisoners to raise their babies behind bars.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "This house would prohibit expression that portrays convicted war criminals in a positive light.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "This house believes the West should recognise the Dalai Lama.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "This house would ban all procedures to alter one's racial appearance.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "THB that the United States government should subsidize Twitter to liberalize oppressed societies.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Koc WUDC", + "year": "2010", + "format": "", + "content": "THB that the media should show the full horror of war.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2009", + "format": "", + "content": "This house would destroy the results of unethical research,.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2009", + "format": "", + "content": "This house believes that the European Union should be an economic union, not a political union.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2009", + "format": "", + "content": "This house would ban cosmetic surgery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2009", + "format": "", + "content": "THW pay for the return of hostages.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2009", + "format": "", + "content": "THBT groups should have to give up their weapons in order to stand for political office.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2009", + "format": "", + "content": "THW end all censorship apart from age restrictions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2009", + "format": "", + "content": "This House would legalise the baby trade.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2009", + "format": "", + "content": "This House would prevent criminals from publishing accounts of their crimes.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2009", + "format": "", + "content": "THW admit Turkey into the EU.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2009", + "format": "", + "content": "This House would abolish the concept of intellectual property.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2009", + "format": "", + "content": "This House would allow minors to have sex change operations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2009", + "format": "", + "content": "This House would place a constitutional limit on the size of government as a percentage of GDP.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2009", + "format": "", + "content": "This House Would refuse to buy Fair Trade.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2009", + "format": "", + "content": "This House would allow the judiciary to strike down laws that breach the New Zealand Bill of Rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Joynt Scroll", + "year": "2009", + "format": "", + "content": "This House Would let endangered languages die.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork WUDC", + "year": "2009", + "format": "", + "content": "This house would ban all forms of gambling.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork WUDC", + "year": "2009", + "format": "", + "content": "This house would fire the senior managements of all corporations which receive government bailouts.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork WUDC", + "year": "2009", + "format": "", + "content": "This house would allow soldiers to sue their government for negligence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork WUDC", + "year": "2009", + "format": "", + "content": "This house would force the religious desegregation of Northern Irish schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork WUDC", + "year": "2009", + "format": "", + "content": "This house believes that China and India should bear the same obligations as the West in fighting climate change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork WUDC", + "year": "2009", + "format": "", + "content": "This house would criminalise adultery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork WUDC", + "year": "2009", + "format": "", + "content": "This house believes that the west should recognise the independence of Abkhazia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork WUDC", + "year": "2009", + "format": "", + "content": "This house would apply a lower rate of income tax to women.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork WUDC", + "year": "2009", + "format": "", + "content": "This house would ban the publication of political opinion polls.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork WUDC", + "year": "2009", + "format": "", + "content": "This house would prohibit all private health care.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork WUDC", + "year": "2009", + "format": "", + "content": "This house would implement quotas for domestic players in national football leagues.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork WUDC", + "year": "2009", + "format": "", + "content": "This house would arm local militia to fight the taliban in Afghanistan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork WUDC", + "year": "2009", + "format": "", + "content": "This house believes that the international criminal court should prosecute crimes against the democratic process.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork WUDC", + "year": "2009", + "format": "", + "content": "This house believes governments should subsidise private home ownership.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Cork WUDC", + "year": "2009", + "format": "", + "content": "This house would ban abortion at all stages of pregnancy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2008", + "format": "", + "content": "This house believes that the gay community should “out” gay celebrities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2008", + "format": "", + "content": "This house believes that the military should overthrow governments which have lost popular legitimacy.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2008", + "format": "", + "content": "This house would criminalise individuals and organisations who do not recycle.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2008", + "format": "", + "content": "This house would abolish all forms of affirmative action.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2008", + "format": "", + "content": "This house would allow parents to cast proxy votes on behalf of their children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2008", + "format": "", + "content": "\\ This house believes that the Palestinians should give up the Right of Return.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2008", + "format": "", + "content": "This house would make insulting religion a crime.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2008", + "format": "", + "content": "This House believes freer markets, rather than more government intervention, are the solution to the current economic crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "This House would allow the use of torture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "This House believes that Taiwan should declare independence now.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "THW not allow local government to pay for the relocation of homeless people.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "This House believes that the European Union should only direct aid to nations that pursue environmentally sustainable development.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "This House believes that every criminal defendant should be required to use a government provided defense lawyer.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "THW subject foreign political contributions to greater restrictions than domestic contributions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "This House would assassinate Vladimir Putin.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "THB that governments should never rescue failing private industry.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "This House would deny scarce medical resources to terminally ill patients.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "This house would eliminate all non state-run schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "This House would support the use of mercenaries by the United Nations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "This House would force religious adoption agencies to place children with homosexual couples.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "This House would require doctors to report all cases of suspected domestic violence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "This house believes that the Turkish military should stop enforcing the separation of church (mosque) and state.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "This house regrets the passing of Bhutto.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Masters_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "This house would stop the search for the gay gene.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Masters_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "This house would let them eat whale.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Masters_3", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "This house would put an age limit on debating.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Masters_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "THB that governments in the developing world should invest in sex tourism.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "This House would force religious adoption agencies to place children with homosexual couples.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "THB that extreme economic need should be grounds for asylum.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Assumption WUDC", + "year": "2008", + "format": "", + "content": "THB that people who give HIV to others must pay drug support.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2007", + "format": "", + "content": "This house would force single parents receiving welfare to seek work.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2007", + "format": "", + "content": "This house would use quotas to desegregate Northern Ireland religious schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2007", + "format": "", + "content": "This house believes that the First World should prohibit the immigration of doctors and nurses from the Third World.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2007", + "format": "", + "content": "This house would allow juries to decide on sentences.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2007", + "format": "", + "content": "This house would build power stations in ex-Soviet states to reduce their dependence on Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2007", + "format": "", + "content": "This house would ban the broadcast and dissemination of terrorist videos.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2007", + "format": "", + "content": "This house would immediately establish a Palestinian state in the Fatah-controlled West Bank.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "New Zealand BP Debating Championships", + "year": "2007", + "format": "", + "content": "This House believes Amnesty International should campaign for abortion rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2007", + "format": "", + "content": "THW make people pay for private car ownership (not exact wording).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2007", + "format": "", + "content": "THW make voting in European Parliament Elections mandatory (not exact wording).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2007", + "format": "", + "content": "THW put a tax on the number of foreign players in a sports teams (not exact wording).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house would ban government funding of religious schools.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house believes that the UK should abolish it’s nuclear arsenal.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This House supports accelerated land redistribution in South Africa.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house would criminalize the payment of ransom.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house supports independence for Quebec.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house would abolish all taxes on inherited wealth.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 6, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house would support regime change in Myanmar/Burma.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 7, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house would ban Cosmetic Surgery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 8, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house would grant citizenship in exchange for military service.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 9, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house would lift sanctions on Iran.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "EFL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house believes all serious crimes should be trialed by Jury.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house believes that politicians have a right to a private life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house would designate one city to permanently host the Olympics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Masters_1", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house believes that governments should provide heroin addicts with safe injection facilities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Masters_2", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house supports a 35 hour working week.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Masters_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house believes that developing nation should nationalize their energy resources.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Octos", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house believes that people sentenced to life imprisonment should be allowed to choose the death penalty instead.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house would ban websites that glorify eating disorders.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "UBC WUDC", + "year": "2007", + "format": "", + "content": "This house believes that economic growth is the solution to climate change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2006", + "format": "", + "content": "THW legalise euthanasia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2006", + "format": "", + "content": "THBT multinational companies are friends of the developing world.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2006", + "format": "", + "content": "THW impose environmental tax on airlines.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2006", + "format": "", + "content": "THW change the constitution of Japan allowing them to have offensive forces.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2006", + "format": "", + "content": "THW introduce national quotas for accepting immigrants for EU member states.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2006", + "format": "", + "content": "THW allow the sale of organs.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2006", + "format": "", + "content": "THW compel prisoners to be subject to medical experiments.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2005", + "format": "", + "content": "THW place tax on fast food.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2005", + "format": "", + "content": "THW tie foreign aid to environmental standards.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2005", + "format": "", + "content": "THBT torture is justified.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2005", + "format": "", + "content": "THBT there are no more heros.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2005", + "format": "", + "content": "THW ban extremist political parties.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2005", + "format": "", + "content": "THBT sporting boycotts are a legitimate political tool.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2005", + "format": "", + "content": "THW declare sex with a trafficked prostitue rape.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semis", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga IV", + "year": "2005", + "format": "", + "content": "THW ban the reporting of hostage taking.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THBT it is the duty of any state to grant political asylum to whistleblowers from other countries.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THW allow the use of performance enhancing drugs in competitive sports.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THBT the Baltic states should not provide any development aid.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THW cap prices for vitally important goods like bread and milk.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THW give parents proxy votes for their children.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THW use all dead human bodies for the benefit of those waiting for organ transplants.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "TH condemns the use of military drones in all military operations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THW create a state-run monopoly of porn and use it for social engineering.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THBT parties with overdue debts should not be allowed to participate in elections.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THW give North Korea unconditional food aid.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THW suspend all regulation regarding environmental protection laws and policies during prolonged periods of economic recession.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THW forbid testing on all animals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THW ban any religious influence on people below the age of 18.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THB in visa freedom with Russia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THW allow surrogate motherhood for profit.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THBT the Pope should be elected by all Catholics.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THW ban all art that offends religious communities.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THW gradually stop paying old age pensions.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THW criminalize the payment of ransom.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THW ban equality movements focusing on one group only.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THBT intelligence agencies should be allowed to monitor all people without their consent.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THBT that the European Union has failed.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THW legalize duels in cases of adultery.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THBT the EU should approve member countries budget deficit sides.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "SSE Riga Practice Tournament", + "year": "1999", + "format": "", + "content": "THW tie the liabilities of borrowers to the value of their provided collateral.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "21st SSE Riga IV", + "year": "", + "format": "", + "content": "THR the glorification of startup culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "21st SSE Riga IV", + "year": "", + "format": "", + "content": "THP a world where significant minority groups (e.g. Maori and Aboriginal populations in New Zealand and Australia; Catalonians in Spain; Nations within Great Britain) form their own sports teams rather than partake in the national teams of their country of residence.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "21st SSE Riga IV", + "year": "", + "format": "", + "content": "THS the decline of American influence in East Asia.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "21st SSE Riga IV", + "year": "", + "format": "", + "content": "TH believes that climate change movements should prioritize the mitigation of climate change rather than the prevention of climate change.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "21st SSE Riga IV", + "year": "", + "format": "", + "content": "THW significantly censor the depiction of alcohol in popular culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "21st SSE Riga IV", + "year": "", + "format": "", + "content": "THR the narrative that love should be unconditional.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Novice_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "21st SSE Riga IV", + "year": "", + "format": "", + "content": "Assuming a mechanism exists, THBT NATO should expel Turkey.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "21st SSE Riga IV", + "year": "", + "format": "", + "content": "THBT governments should significantly invest in social impact bonds to address social problems.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "21st SSE Riga IV", + "year": "", + "format": "", + "content": "THP the governance of the 'The One State'.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "TH would establish English as primary language for education in China (inexact).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "ESL_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "Dutch WUDC", + "year": "2017", + "format": "", + "content": "THBT all governments should designate and publicly announce a list of financial institutions that they would bail out in the event of a crisis.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarters", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "This House Regrets the tradition of parents not living with and being cared for by their children in old age.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THBT fear is a legitimate tool for instilling moral values.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THBT minority parents should shelter their children from the existence of racism for as long as possible.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 1, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THW tie World Bank aid to women's rights.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THBT government programmes should only be upscaled after successful impact evaluations.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "TH (as Marxists) R the rise of automation of jobs previously performed by humans (e.g., self-driving cars, self-checkouts).", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 2, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THR the rise of self-help books.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THR the role of modern medicines in over-emphasizing prolonged life.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THR the fetishization of athletic success in popular culure.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 3, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THS the trending of pairing differently-abled people.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THBT Peta should use the surge in human depression rates during the great lockdown, to rally for ending animal captivity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "This house believes that charities and humanitarian aid organizations should not use images of graphics suffering in their advertising campaigns.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 4, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "TH as Japan would actively dissociate from the tradition of \"Wa\".", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THW establish a formal embassy in Taiwan.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THBT cartographical asymmetries should be resolved using mechanisms of local referendums of bonafide residents.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": 5, + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THBT DINOs do more harm than good to the Democratic Party.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "This House Prefers protests with clearly identifiable leaders and defined goals to leaderless movements with disparate goals.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THBT identity based social movements should prioritise the majority populations acceptance of that identity over preservation of a distinct culture.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Quarter", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THW remove all patents on green technology.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THW focus on adapting to the consequences of climate change rather than trying to prevent it.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THW not cut funding for research that seeks to deal with Climate Change, even in the wake of austerity.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Semi", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THS the conception of morality as a scientifically determined innate characteristic.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "TH celebrates self interest as one of the dominant guiding moral principles.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + }, + { + "tournament": "GGDSD PDC", + "year": "2020", + "format": "", + "content": "THS Zobrist's means of population control.", + "infoSlide": "", + "division": "", + "language": "English", + "link": "", + "round": "Open_Final", + "topic": {}, + "tournamentID": "" + } +] \ No newline at end of file diff --git a/src/core/constants/motionsFromDatabase.json b/src/core/constants/motionsFromDatabase.json new file mode 100644 index 0000000..e094755 --- /dev/null +++ b/src/core/constants/motionsFromDatabase.json @@ -0,0 +1 @@ +[{"division":"","topic":{},"link":"","content":"THBT the world would be a better place if nobody believed in God.","round":"2","tournamentID":"jdV8jBuLPUpb2I5gYBQc","infoSlide":"","language":"English","id":"007Fkge3cQFOdwIwdukj"},{"round":"4","language":"English","division":"","infoSlide":"","tournamentID":"RKQT9j6jX9NRbleAmjmy","content":"THBT the USA should pay $1 trillion in war reparations to North Korea.","topic":{},"link":"","id":"00DQfBF1iEvn91IxigiS"},{"division":"","round":"5","topic":{},"tournamentID":"NBT7RwLHeAApXuOtrQpt","content":"THW ban religious institutions from asking for donations from their followers.","infoSlide":"","language":"English","link":"","id":"00pJJQq2BqEte8BJUR06"},{"division":"","link":"","tournamentID":"ZpOi9wuiFrLbKo4ygC2p","language":"English","infoSlide":"","topic":{},"content":"THW remove tax-exempt status from religious institutions.","round":"5","id":"014S4vWMhlOseKiDG95K"},{"content":"THW require police to wear miniature video cameras at all times whilst on duty.","tournamentID":"EWgHoIX1nWCnY5U0tfPp","language":"English","division":"","round":"4","link":"","infoSlide":"","topic":{},"id":"02P7GSfpKwwrFZABdBkB"},{"infoSlide":"","content":"THW ban commercial expeditions to the top of the Mount Everest.","language":"English","division":"","tournamentID":"44zszGOLcUfUSx7uRJTD","link":"","topic":{},"round":"1","id":"02SoouT3XeOdqXbjwPTU"},{"infoSlide":"","division":"","language":"English","round":"3","tournamentID":"dYmkkVK8aVn1dCgd4UDy","content":"Should the NPD be banned?.","link":"","topic":{},"id":"02XqTB631Oxu2CKPOTRM"},{"content":"THO prenatal testing for mental disabilities.","division":"","language":"English","tournamentID":"lFdTm9Bd7AxKRkVImhbS","round":"4","topic":{},"link":"","infoSlide":"","id":"03KwgEIaDb7i0ceF9CoI"},{"topic":{},"content":"THBT the US should abandon complete denuclearization as a prerequisite to easing sanctions on NK.","tournamentID":"SGpBjVPnJkFrJB0hnxYv","link":"","infoSlide":"","round":"1","language":"English","division":"","id":"04FytkL2SaTLgVAlBBLn"},{"tournamentID":"o83Oqm9vDtGaG6SVldke","link":"","division":"","round":"5","language":"English","content":"THW allocate state funding for the arts exclusively to new and original work, and never to reproductions of ‘great works’ or other old plays, opera, music, films or art.","topic":{},"infoSlide":"","id":"05RfoKjASzBb0qJMh6qo"},{"topic":{},"language":"English","infoSlide":"A stan is an extremely or excessively enthusiastic or devoted fan. Stan culture is defined as a global phenomenon in which celebrities have massive “stan” - basses, characterized by a culture of intense social media following and idolization. Notable examples include the BTS Army, Taylor Swift’s Swifties, and Beyonce’s Beyhive.","round":"Highschool Semifinals","content":"THR the rise of stan culture.","tournamentID":"IXq1CdgyiKmkyEDJURrV","division":"","link":"","id":"05dh6HBLJupyQqQ8S0aP"},{"link":"","language":"English","division":"","infoSlide":"","topic":{},"tournamentID":"yDUOVgl6qLMa2DH8lCD5","round":"3","content":"TH regrets the EU’s introduction of freedom of movement.","id":"05gvGLYs1ISiPfmZWf4Q"},{"link":"","content":"THS the buying and selling of physical traits.","division":"","topic":{},"language":"English","tournamentID":"IXq1CdgyiKmkyEDJURrV","round":"Open High School Final","infoSlide":"","id":"05piIIzd7Eqm60gjxVip"},{"link":"","infoSlide":"","content":"The westminster model is a form of government in which the executive is drawn from the elected parliament (ie. Canada, UK, Australia ect.) The prime minister is the head of the largest party or coalition, and all the cabinet ministers are Members of Parliament. In a Presidential Executive only the President (and Vice President) are elected by the population and all cabinet positions (executive) are appointed by the President (ie. the United States, France). The President also normally does not have direct control over the legislature. Motion: THS the presidential executive over the westminster model.","division":"","tournamentID":"ZClJskShp09gm6WCITGC","topic":{},"language":"English","round":"Open_Quarters","id":"05vi3MP61C3HMwJD27Ay"},{"language":"English","content":"Ban football for minors.","round":"1","tournamentID":"9yZPq4vkPBjWs9gMF8AS","link":"","division":"","topic":{},"infoSlide":"","id":"062LgbNbi3FPoyzUaSoy"},{"division":"","infoSlide":"","link":"","tournamentID":"KMM87DnmWFjc4UzTdkjp","round":"Open_Final","content":"THR the Generation War (Millennials vs. Baby Boomers).","topic":{},"language":"English","id":"06btOyl9eOW7kGfOHrcn"},{"tournamentID":"DvsGvQWaYzshd3lSsDGu","language":"English","content":"THW remove all legal barriers on the selection of embryo’s (including but not limited to selecting on gender, physical or mental disability, etc.).","topic":{},"division":"","round":"5","link":"","infoSlide":"","id":"079czweqWRjeUvYY3zNe"},{"topic":{},"round":"Open_Semis","division":"","tournamentID":"68SrKFb9XtsQrLtqLtjO","content":"THBT the use of erotic capital by women does more harm than good.","language":"English","infoSlide":"","link":"","id":"07mgcgkGjy5SQ9lWv1sd"},{"infoSlide":"","round":"3","tournamentID":"lpOfAtUfJZtb1VnGzV0G","content":"THW permanently remove from service Imams who are stationed in places where an honour killing has occured.","division":"","language":"English","topic":{},"link":"","id":"08IFRaoaCUPubUczxVBI"},{"content":"Assuming a nuclear non-proliferation treaty is offered by Joe Biden, This House, as Iran, Would choose to accept the offer.","topic":{},"round":"Quarterfinals","infoSlide":"","division":"","tournamentID":"ruG3JCf2Mh62VDkchi11","language":"English","link":"","id":"08vOY5ZBXH4n7ADX3oTa"},{"division":"","topic":{},"language":"English","link":"","tournamentID":"6KzwZLwpFJv7ICEsknpO","round":"Open_Semis","content":"THR the mass deregulation of the financial sector.","infoSlide":"","id":"09Aqxnvj9SrVA9wgwfbA"},{"infoSlide":"","language":"English","topic":{},"tournamentID":"YRWxNK3sQq47UacBwpjn","division":"","content":"THBT general education (wide promotion) is better than education/promotion of excellence.","link":"","round":"1","id":"09szX06SgdEzmTfq4iSb"},{"link":"","topic":{},"infoSlide":"","division":"","round":"2","content":"THBT the police should work with hacktivists.","tournamentID":"xik6XdvZ0JGG1hySfuwC","language":"English","id":"0AbHsshh0A5KIorgGSPs"},{"tournamentID":"ovqKzpSVsRvBQDmmn1yj","topic":{},"infoSlide":"","content":"THW allow audio and video recording of court procedures and the public dissemination of the recordings.","round":"Open_Final","language":"English","division":"","link":"","id":"0Bhy12D83Lm5k8sLvetx"},{"tournamentID":"6tyiq2GnlmVmI452js6u","round":"2","division":"","language":"English","topic":{},"infoSlide":"","link":"","content":"This House believes that the Kingitanga should be disestablished.","id":"0D2IiIhmP4GBk6mdeBPk"},{"round":"Open_Semi","content":"This house believes that developing countries should employ western professionals to run their courts and police forces.","language":"English","division":"","link":"","tournamentID":"AbrZ6leGJBXAmv4md2Zw","topic":{},"infoSlide":"","id":"0HYE2kXEW8mnTaC8HpBr"},{"link":"","content":"TH would legalise a market for organs.","language":"English","infoSlide":"","division":"","topic":{},"round":"5","tournamentID":"2puDg94cQDrpdSauuA78","id":"0Io6NjySczsaknCsKsfB"},{"infoSlide":"","language":"English","round":"","division":"","tournamentID":"3B01KdqnCVzQEVjKcHiT","content":"Chúng tôi ủng hộ quan niệm con người nên tôn trọng sự khác biệt giữa bản thân với những người xung quanh, thay vì cố gắng tìm các điểm tương đồng.","link":"","topic":{"hr":{"check":true,"title":"Human Relationships"}},"id":"0IxEEm66C9tJ7YbgavZm"},{"content":"TH supports the rapid global elimination of both tariff and non-tariff barriers to free trade.","language":"English","link":"","division":"","tournamentID":"K6vtfx7dBNzsAtTkNiF1","topic":{},"infoSlide":"","round":"1","id":"0J291lWsfMVEeJPheAfe"},{"language":"English","division":"","tournamentID":"9mfNKBqpq9HzOZ9GltTe","topic":{},"link":"","content":"This House would ban the provision of amnesties for serious crimes commited during wartime.","round":"4","infoSlide":"","id":"0JYm4DwiIUTn5TBGi5rB"},{"language":"English","tournamentID":"vY2MtSrfiAgUKzGbzzMm","topic":{},"round":"5","infoSlide":"","content":"This House supports the appointment of technocratic governments in Eurozone countries suffering fiscal crisis.","division":"","link":"","id":"0JbQpSCNvx8m5sykCuFF"},{"round":"3","content":"TH supports Lean In feminism.","topic":{},"division":"","link":"","tournamentID":"PULmrzx6k00EzEt7BxfG","infoSlide":"","language":"English","id":"0KAzbx7VetqWJexigJed"},{"infoSlide":"","tournamentID":"ZetjyvhBc3exk1eBvmTd","round":"2","language":"English","division":"","content":"After the collapse of USSR, Latvia and Estonia, in contrast with many other states, decided not to automatically grant citizenship to its permanent residents who had moved to the countries after the end of World War II, instead offering them an option to naturalize. Citiezenship was one of the promises made the pro-independence movement to encouradge Russian-speaker support. By 2016, 11.75% of Latvian and 6.1% of Estonian population are still non-citizens. Motion: THBT Estonia and Latvia should grant citizenship to non-citizen residents.","link":"","topic":{},"id":"0KK79s579mmfgyVi8e52"},{"tournamentID":"3NTAi2gNk5Uyy3NuACO5","round":"3","content":"THBT the feminist movements in Central Asian states should also focus on gender issues that affect men (toxic masculinity etc.) rather than exclusively focus on the issues that affect only women.","language":"English","topic":{},"division":"","link":"","infoSlide":"","id":"0KillGn79FtOWhPp5C6C"},{"tournamentID":"OqQWJjNQBpGOYwMntw3z","division":"","language":"Vietnamese","link":"","infoSlide":"","topic":{"education":{"title":"Education","check":true}},"round":"","content":"Chúng tôi sẽ xoá bỏ việc tính điểm chuyên cần của học sinh.","id":"0KshdhDP34w5FLOKMViF"},{"tournamentID":"EK7bkCOLaLHjVsqCcikk","infoSlide":"","language":"English","content":"THBT men should not hold leadership postitions within women's rights and feminist organizations.","division":"","topic":{},"round":"6","link":"","id":"0Kx6AgELuMU6eWqFOsQv"},{"link":"","tournamentID":"tKXlShZl2vec49jC1bif","content":"THW break-up large social media companies.","infoSlide":"","round":"6","division":"","language":"English","topic":{},"id":"0KzEtJ9qPxjJuiQUTLRQ"},{"round":"2","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","content":"That, as the queer (LGBTQIA+) community, we would reject the ‘born this way’ narrative.","link":"","infoSlide":"","division":"","topic":{},"language":"English","id":"0LmqAEdTxQAmNAf8Vjzq"},{"round":"3","content":"THBT Governments should fund and public display of art which viscerally portrays the suffering of victims created by state policies/actions (eg war, failure to go to war, poverty at home and abroad).","infoSlide":"","link":"","language":"English","division":"","topic":{},"tournamentID":"FaBy9PfDE8gfy5w00VdM","id":"0MNITdu5HldWcLYdBwTY"},{"topic":{},"content":"THW allow people to opt in to drugs that have not yet passed clinical trials.","round":"2","infoSlide":"","tournamentID":"tPdF4vGV6F0ucJaSF5md","division":"","language":"English","link":"","id":"0MOdjvZqflDxUS7ZiqI2"},{"link":"","tournamentID":"sv4AWOKZYbl1PfCObw21","division":"","round":"4","infoSlide":"","language":"English","topic":{},"content":"THR the glorification of youth.","id":"0N2X5shpTyNAjgEnhb1s"},{"language":"English","link":"","topic":{},"tournamentID":"DTutOgCItM4x30SyVavv","infoSlide":"","round":"5","division":"","content":"THW transfer the majority ownership of professional sporting clubs to non-profit organizations managed by elected members within their local communities.","id":"0N62UP5kgE7FHPvSXOzq"},{"infoSlide":"","topic":{},"link":"","round":"4","division":"","language":"English","tournamentID":"MKOx1AvBmfWL7cHrRXg2","content":"This House Believes That international criminal tribunals should introduce the death penalty for individuals convicted of crimes against humanity.","id":"0NErAH1tlzrkB60xkZQZ"},{"infoSlide":"","topic":{},"round":"Open_Final","language":"English","tournamentID":"2fNmUq1mfr7IP3WAvr0Q","link":"","division":"","content":"Should same-sex couples receive full adoption rights?.","id":"0NThH7AJ8XKv325lHEA8"},{"infoSlide":"","tournamentID":"q7pvo4zkG31lg89ofmeq","round":"2","language":"English","topic":{},"link":"","division":"","content":"THBT environmental movements should support climate engineering that fundamentally alters the environment in an attempt to combat global warming.","id":"0NsP6fXZOAe0ixTus5hg"},{"link":"","round":"Open_Final","tournamentID":"gaW3hl0mF758MDm7UkNs","topic":{},"infoSlide":"","language":"English","content":"THBT an EU institution should block websites in EU member states that use negative racial/ethnic/religious stereotypes.","division":"","id":"0OEl5LVG4zaIceacoKwD"},{"topic":{},"division":"","tournamentID":"DTutOgCItM4x30SyVavv","link":"","content":"THBT individuals convicted for crimes that were later legalised should be retrospectively cleared of those charges and released from prison if applicable.","language":"English","infoSlide":"","round":"Junior_Final","id":"0Oe6JGfYHIYA8nKnbn1o"},{"content":"THW allow the families of dead people to sue for libel on their behalf.","topic":{},"division":"","link":"","tournamentID":"miNjiX9yX5Oq25V4yWeo","language":"English","round":"4","infoSlide":"","id":"0PlhB1AdiVLgctiFhPIC"},{"tournamentID":"5YRD8EoL8wrQu3pTfkUI","content":"TH, as the EU, would pass a binding resolution to impose significant economic sanctions on Israel in the event that Israel unilaterally annexes any part of the West Bank.","topic":{},"infoSlide":"","link":"","division":"","language":"English","round":"Open_Semi","id":"0Q062a0WJV0GDMnzt6dq"},{"link":"","topic":{},"division":"","content":"Actually, THW rather see one innocent man go to jail than see 100 guilty men walk free.","round":"Open_Quarters","language":"English","infoSlide":"","tournamentID":"ChiU8yMbLI2Y2q5rwURP","id":"0QBtucYsX5i2R5KJKlIp"},{"tournamentID":"BXqPhfwak2R1kYHV48bp","division":"","content":"THW have scientists make environmental policies, not politicians.","link":"","language":"English","round":"1.1","infoSlide":"","topic":{},"id":"0QaHtHxhgOfbwYzCAKOq"},{"language":"Vietnamese","division":"","link":"","round":"3","content":"Chúng tôi phản đối sự lãng mạn hóa những phản anh hùng trong văn hóa đại chúng.","tournamentID":"KncW7pH1nDIom3xK89VG","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"infoSlide":"Phản anh hùng là một nhân vật chính thiếu những phẩm chất anh hùng, như là đạo đức, lòng trắc ẩn, và dũng cảm. VD: Severus Snape (Harry Potter), Loki (Marvel Cinematic Universe), và Bakugou Katsuki (My Hero Academia).","id":"0R797V4UV5KwPX5W1QbV"},{"content":"THW ban the use of fully autonomous weapons in warfare.","round":"1","link":"","tournamentID":"ltPXjwYNooGAx72v9bz6","division":"","infoSlide":"","language":"English","topic":{},"id":"0R9rpGyQZ7KnKfIJQ37g"},{"round":"","division":"","infoSlide":"","content":"Chúng tôi tin rằng các trường nên thay thế các tác phẩm văn học cổ điển (Tắt đèn, Số đỏ, 1984, Đồi gió hú, Tội ác và hình phạt) trong chương trình ngữ văn của mình bằng các tiểu thuyết tuổi teen (Những chàng trai năm ấy, Khi lỗi thuộc về những vì sao, Series Chạng vạng).","tournamentID":"KE7jdAyW9az9nKVb9FMV","link":"","language":"Vietnamese","topic":{"education":{"title":"Education","check":true}},"id":"0S4KRoSTMSpUViJrihBj"},{"content":"THBT liberal media organisations should actively glorify democratic candidates of color.","topic":{},"link":"","language":"English","tournamentID":"8DernPpRwzBf2YIkESEX","round":"5","infoSlide":"","division":"","id":"0SCfqI8n8C4tjlHYGXlT"},{"link":"","tournamentID":"OLVGf3rE3KKirerr2vyk","content":"Chúng tôi tin rằng các quốc gia đang phát triển nên ưu tiên chính sách bảo hộ mậu dịch hơn tự do thương mại.","language":"Vietnamese","division":"","topic":{},"infoSlide":"Bảo hộ mậu dịch là việc áp đặt thuế xuất nhập khẩu cao hoặc áp dụng các biện pháp phi thuế quan (nâng cao tiêu chuẩn về chất lượng, vệ sinh, an toàn, môi trường...) lên một số mặt hàng nhập khẩu từ nước ngoài nhằm bảo hộ thị trường nội địa. Tự do thương mại là các biện pháp xóa bỏ hàng rào thuế quan và phi thuế quan để thúc đẩy giao lưu hàng hóa và dịch vụ giữa các quốc gia trên thế giới.","round":"2","id":"0STVDQ3XLlq4G1jX9Fib"},{"language":"English","content":"THBT the EU should limit the amount of energy individuals are allowed to consume.","round":"2","tournamentID":"GwkssAj8zxpqlXlKBDqa","division":"","link":"","infoSlide":"","topic":{},"id":"0SgcmgfpGwRZYSAhvgBZ"},{"content":"THW accept 'I was only following orders' as a defence in war crimes trials.","topic":{},"language":"English","round":"ESL_Semi","division":"","tournamentID":"QZvopTthxxEkyvHXmzp3","link":"","infoSlide":"","id":"0TXHtCvWG3J8kPdL9HCs"},{"round":"Open_Semis","language":"English","division":"","link":"","infoSlide":"","tournamentID":"axWwnyCM8L14pVHljukt","content":"THW choose China.","topic":{},"id":"0TdyL0M64qD3vIgU9f7W"},{"tournamentID":"cTxMF0myfwbQDPdL8Ral","infoSlide":"","topic":{},"round":"4","content":"THBT the Pope should excommunicate Rodrigo Duterte.","division":"","language":"English","link":"","id":"0UZaU8XRBbPROAONrHAK"},{"language":"English","topic":{},"division":"","tournamentID":"kwsuFgaQ5lYbaXVGrGal","round":"2","link":"","infoSlide":"","content":"THBT Indigenous/Metis peoples should be guaranteed a middle-class income as reparations for past injustices.","id":"0VPSUtO8oVWkxrTcKgxp"},{"infoSlide":"","topic":{},"content":"THW compel all social media companies to offer multi-tiered paid subscription services instead of free for all access.","link":"","tournamentID":"vOzlUiodV5GoF1ZtM5Tt","division":"","round":"ProAm_Final","language":"English","id":"0VW1uWJ78oHJTDBWsFau"},{"infoSlide":"","round":"1","link":"","topic":{},"tournamentID":"EkR93MYW52GdWTuVsaKa","division":"","language":"English","content":"TH supports the legislation (legalisation?) of sex work.","id":"0VcKUq12BVZwzImE0ltq"},{"link":"","division":"","infoSlide":"","language":"English","tournamentID":"nALUKfkpmOnWnQCzecru","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"round":"","content":"THW ban media content that denies the efficacy of COVID-19 vaccines without substantial evidence.","id":"0W4TCMacW3GHhXtAYDZV"},{"content":"THW enforce a Cap and Trade system for refugee quotas.","division":"","round":"6","topic":{},"tournamentID":"N6GD6E8q4Mbzt8Xexnyy","infoSlide":"","link":"","language":"English","id":"0X1bVpjKAyvnzOiAi4Om"},{"division":"","language":"English","topic":{},"tournamentID":"NHUypnZQCfkPD98j8TYR","round":"3","content":"THW prefer a religion which preaches that one's fate in the material world is predetermined rather than one that preaches that one's choices influence it.","link":"","infoSlide":"","id":"0ZF9ndSkN8R5QMVWp02k"},{"division":"","topic":{},"round":"2","link":"","language":"English","content":"In states where marijuana is legal, this house would provide reparations to individuals convicted of marijuana-related crimes prior to its legalization.","tournamentID":"OJi1hwkxrfVjCOf6ZDRH","infoSlide":"","id":"0aSFsBV5R3FbmGt60qy7"},{"content":"Chúng tôi tin rằng lực lượng giữ gìn hòa bình của Liên Hợp Quốc nên có khả năng can thiệp quân sự vào các xung đột, bất chấp sự cho phép của nước sở tại.","language":"Vietnamese","infoSlide":"Lực lượng gìn giữ hòa bình của Liên Hợp Quốc (biệt danh: mũ nồi xanh) hoạt động với ba nguyên tắc chính: 1, chỉ đưa quân vào khi có sự cho phép của nước sở tại. 2, Chỉ có chức năng bảo vệ các nhóm không vũ trang và không can thiệp vào xung đột. 3, Được sự thông qua của Hội đồng Bảo an Liên Hợp Quốc.","link":"","round":"Quarterfinals","tournamentID":"i00RSzvK4b1TDEgnpFJd","topic":{},"division":"","id":"0aYlnddq0lA67wlq82oz"},{"round":"2","topic":{},"language":"English","tournamentID":"lzwPRjjdpUi2iKUXkOjp","division":"","infoSlide":"","content":"This House believes that the US and UK should cease selling arms to Saudi Arabia until they withdraw from Yemen.","link":"","id":"0aztlFeq3rC1yjsrSUN0"},{"round":"7","infoSlide":"","link":"","content":"This house would classify catcalling as a felony.","division":"","language":"English","topic":{},"tournamentID":"mXeF4ypkhHofmXrxLWxA","id":"0b7TnNLHLrwYrHqnRZmQ"},{"link":"","content":"This House believes that the pursuit of social mobility is doing more harm than good.","tournamentID":"lWGI0B8QpTMEA8NW8UYQ","division":"","language":"English","round":"Open_Final","infoSlide":"","topic":{},"id":"0bWPik4Z3PW0LaxscFEs"},{"tournamentID":"o85wPSMfUIKlsHQtkpnr","round":"Open_Final","language":"English","link":"","topic":{},"content":"THBT the general approach of states should be to repatriate refugees once they no longer have a well-founded fear of persecution or violence.","infoSlide":"","division":"","id":"0berjpCGWaBb9XzaEpRd"},{"language":"English","round":"3","link":"","infoSlide":"","tournamentID":"uUwIAKIDo0apui0AqOxG","topic":{},"content":"TH, as the state, would aggressively fund GMO research.","division":"","id":"0bgNPptyHC5L0bFLlYPK"},{"content":"THW abolish the institution of the criminal record.","division":"","infoSlide":"","language":"English","topic":{},"tournamentID":"PNpMzinCvz3Z9bTJfV9t","round":"2","link":"","id":"0bm7iUvqKGoXPdYwMXhN"},{"content":"TH AS THIRD WORLD COUNTRIES WOULD OFFER ITS ELECTED OFFICIALS THE GRAFT LEEWAY.","infoSlide":"","division":"","round":"4","language":"English","tournamentID":"M23yN5DieB5FwQ5wfjDl","topic":{},"link":"","id":"0bnzz3qhrhiHjwu8S08S"},{"language":"English","link":"","topic":{},"division":"","infoSlide":"","round":"2","tournamentID":"OQmCXCvJatQN0zG3lklx","content":"THW not grant lifetime achievement awards to artists when their morality is significantly put into question.","id":"0bqdO45CyOi8iAE0cnuj"},{"content":"THR the rise of rainbow capitalism.","link":"","division":"","infoSlide":"","round":"4","topic":{},"tournamentID":"WcNueZiJXeg9z82dijdL","language":"English","id":"0cKQK4XuRNHnpKCw7Ydp"},{"content":"THW constitutionally cap the government deficit at 3% of GDP.","link":"","tournamentID":"iFjWzR2mR3mBo4zzvGeZ","language":"English","infoSlide":"","round":"3","division":"","topic":{},"id":"0czCGPxugMWeESdw0Qd5"},{"division":"","language":"English","infoSlide":"","content":"THBT media aimed at children should reject the \"happily ever after\" model and show a more realistic picture.","tournamentID":"lM9u9z6CfHfA9HPucSIT","round":"Open_Semis","link":"","topic":{},"id":"0d5MC0YPn8D8DzzmA6es"},{"content":"THW decrease the weightage of a voter's ballot as they age.","division":"","language":"English","round":"1","topic":{},"link":"","tournamentID":"AhKyFYR1ZI0UjUmZnaXu","infoSlide":"","id":"0dpRNmmGAozZFGzAnycF"},{"round":"Novice_Semi","language":"English","infoSlide":"","content":"THBT social movements should prioritize calling-in problematic inividuals and behaviours rather than calling them out.","division":"","topic":{},"link":"","tournamentID":"S2mG18EWYdh2bPEadyd9","id":"0dpqY7hDJmydxM3gCBAG"},{"link":"","infoSlide":"","language":"English","tournamentID":"4NEhQx2m4XcXy6SxnoqS","content":"THW create Eurobonds.","round":"5","division":"","topic":{},"id":"0eUfLSd0hHX2Ruwo5ZbR"},{"content":"THW, as part of awareness campaigns about rape and sexual violence, inform women of potentially risky behaviour (like alcohol consumption or choice of clothing).","division":"","tournamentID":"VAfi19aZTAIKaUuELBL1","link":"","infoSlide":"","language":"English","round":"6","topic":{},"id":"0f9vf0DoZMmDeOUgd4xk"},{"tournamentID":"zngB1WF8viOW2uGu6swZ","language":"English","link":"","round":"2","topic":{},"division":"","content":"THW prevent politicians from making fact claims that, while not technically lies, are substantially misleading to voters.","infoSlide":"","id":"0fNfzL7uSMs9edFi9v8T"},{"link":"","round":"Open_Finals","topic":{},"division":"","language":"English","content":"THB prominent civil society activists should choose not to run for public office.","tournamentID":"HlR3H86XBK4mqvL9v5HT","infoSlide":"","id":"0fP0cwGQiZamxOBS9asL"},{"division":"","infoSlide":"","tournamentID":"HI456ixwVeFxETFg4P5i","link":"","round":"3","topic":{},"language":"English","content":"This House would force the media to display, promote and report women’s sport equally to men’s sport.","id":"0fPYeMUDhqskyiplrBUU"},{"link":"","content":"THW start a marxist revolution.","infoSlide":"","language":"English","division":"","tournamentID":"9PjiZBOUlI39GMCrggZs","topic":{},"round":"Open_Semis","id":"0fa04vEpe2EfSEHu5Dbj"},{"tournamentID":"DV29K6gIIl6nTiYeWo2j","link":"","division":"","content":"THR the romanticization of staying productive while working from home amidst the pandemic.","infoSlide":"","round":"4","topic":{},"language":"English","id":"0fdhIKRvAgrcDrwlAq4o"},{"tournamentID":"SPjgjrpUBIPs6H9gmx9P","topic":{},"content":"That we regret the idolization (of individuals) who do not follow traditional education paths (Bill Gates, Mark Zuckerberg, Warren Buffet, etc.).","language":"English","infoSlide":"","round":"Preliminary","link":"","division":"","id":"0gA3osralbK3g2oX2X3U"},{"topic":{},"division":"","content":"Chúng tôi tin rằng phụ huynh từ các gia đình thuộc nhóm thiểu số nên dạy con cái của họ rằng làm người thành công quan trọng hơn làm người tốt.","infoSlide":"","link":"","tournamentID":"znXRdnU2llK8fXmHlci5","language":"Vietnamese","round":"1","id":"0gbdsfjDQQkliyLHilEr"},{"topic":{},"content":"A new planet has been discovered identical to Earth. 1 of 2 systems can be implemented on this planet (or words to that effect). THW implement communism over capitalism.","round":"Open_Final","infoSlide":"","division":"","link":"","language":"English","tournamentID":"QZvopTthxxEkyvHXmzp3","id":"0giTZcXAjUBJRbQieHDi"},{"infoSlide":"","division":"","round":"","link":"","language":"Vietnamese","tournamentID":"OqQWJjNQBpGOYwMntw3z","topic":{"irw":{"title":"International Relations/War","check":true}},"content":"Chúng tôi tin rằng ASEAN nên thiết lập quan hệ đối tác gần với Trung Quốc hơn là Mỹ.","id":"0gsvjYkReCoBwVobw6Ke"},{"link":"","division":"","infoSlide":"","language":"English","content":"This house regrets the development of mass tourism at world heritage sites.","round":"4","topic":{},"tournamentID":"hrSRQu49cq5gHsXJLBgQ","id":"0h9H9BNsw3YjeI5uJ3iY"},{"content":"THW prefer a world in which extremely wealthy people in Western liberal states donate excess money to their governments rather than to charities.","division":"","link":"","language":"English","infoSlide":"","round":"ESL_Quarters","tournamentID":"92dIEXeOXUVvlcFeGCIr","topic":{},"id":"0hFKtZdcwSRBVxPuIVhu"},{"infoSlide":"","language":"English","content":"THBT the Cultural Trend Of \"Selfies\" Has Been Good For Women.","topic":{},"division":"","tournamentID":"i4XbygF4ZWUtQg8NFKqw","link":"","round":"1","id":"0j8bodJ5lMmjFFkgMRUp"},{"infoSlide":"","link":"","language":"English","round":"Highschool Quarterfinals","content":"THBT youth leaders should form youth-based political parties instead of joining established political parties.","division":"","tournamentID":"IXq1CdgyiKmkyEDJURrV","topic":{},"id":"0jYAxylfvP8P4rDieH32"},{"tournamentID":"5Qomv7BFHTKmY4PchwDr","topic":{},"round":"4","content":"That we regret the Trump-Taliban peace deal agreement.","division":"","infoSlide":"","language":"English","link":"","id":"0jew4q6SE0wZ3qshRZ41"},{"content":"THW gives the youth extra votes.","round":"","division":"","infoSlide":"","tournamentID":"nALUKfkpmOnWnQCzecru","topic":{"politics":{"title":"Politics","check":true}},"language":"English","link":"","id":"0jfbr1xnmfY1VKTujbJq"},{"round":"ESL_Quarters","topic":{},"tournamentID":"t1jiRXU99xeGdoIkTeyF","language":"English","content":"This House believes that the US government should provide significant campaign funding for US congressmen and senators who score highly on bi-partisan metrics.","division":"","infoSlide":"","link":"","id":"0kC6PnP6Z0QzfX6K3Y7a"},{"tournamentID":"oaIuwyOX7NBIwaiSaVJ8","topic":{},"content":"That in times of a global pandemic, standard research ethics should be suspended as long as the subject consents.","language":"English","link":"","division":"","round":"Open_Quarter","infoSlide":"","id":"0lDA5YQCzCepNx698yJu"},{"division":"","link":"","topic":{},"tournamentID":"YAsriFfh4M2kLN2FBQPq","infoSlide":"","language":"English","round":"Open_Semis","content":"This House believes that the US should make aid to Israel conditional on the establishment of peace talks with Palestine.","id":"0lJCwBI2m7Q4eEDQgJho"},{"tournamentID":"yplVU35a69J2hHBBmAJC","link":"","language":"English","infoSlide":"","content":"THW open all borders.","round":"5","division":"","topic":{},"id":"0lbEpjs5523Omj5pSrhm"},{"infoSlide":"","link":"","round":"4","tournamentID":"4BdwKPHB1LrpVYqE4E51","topic":{},"division":"","language":"English","content":"THBT developing countries should prohibit using the principal of petroleum funds to finance social and welfare programs.","id":"0ltHp9gfTGBI8zxHtIq6"},{"language":"English","tournamentID":"9PjiZBOUlI39GMCrggZs","topic":{},"division":"","round":"2","content":"THW abolish the British Monarchy.","infoSlide":"","link":"","id":"0nUWKWZpnivgzF7ugli5"},{"topic":{},"content":"Chúng tôi, với tư cách phong trào nữ quyền, phản đối việc khai thác các tính cách xấu của các nhân vật nữ trong phim Little Women.","tournamentID":"FiF24Yc0spiBkvTxiYwD","link":"","division":"","infoSlide":" Little Women xoay quanh câu chuyện của 4 chị em gái trong gia đình. Mỗi người có một ước mơ riêng, hoài bão riêng. Tác giả nguyên tác lẫn nhà sản xuất đã tôn trọng tất cả các ước mong của các nhân vật nữ trong phim. Tuy nhiên, một số tính cách được xã hội xem là tính cách xấu đặc trưng của phụ nữ được khai thác rất rõ trong phim như tính đố kỵ, ham chưng diện, ...","round":"3","language":"Vietnamese","id":"0nXcSomISjMrrwUSE6jU"},{"content":"It is 1945. THW create a Jewish state in Western Europe instead of the Middle East.","round":"Open_Semis","link":"","division":"","infoSlide":"","tournamentID":"MqWoP2HpVv77T14aPCqR","language":"English","topic":{},"id":"0naliMFcGxTuTDy6tNB3"},{"round":"3","language":"English","link":"","topic":{},"tournamentID":"sFRIEYyxie6GRmJwElmF","infoSlide":"","content":"THR the negative attitude towards Golddiggers.","division":"","id":"0oxQEjhyZft7LjyIWqo7"},{"topic":{},"round":"Open_Semis","division":"","link":"","infoSlide":"","content":"THW ban ownership of 3D printers for personal use.","language":"English","tournamentID":"aEZUJtwNrlKTdARVPZNh","id":"0p7QUvusRSjGHWEG0h7o"},{"link":"","content":"Do we need to abolish public broadcasting?.","round":"1","language":"English","division":"","tournamentID":"vRdckCLdD0l2Rjc63y5T","topic":{},"infoSlide":"","id":"0pgIPJBiQOTeikJOG176"},{"infoSlide":"","link":"","content":"THBT western countries should criminalize depictions of the Prophet Muhammed.","round":"4","language":"English","division":"","topic":{},"tournamentID":"Y9leM2xAYiRjIMMIqgfX","id":"0qqSqVDTat8BvgRy5sJ3"},{"division":"","infoSlide":"","topic":{},"link":"","tournamentID":"1hlmlrX6In8aTapDJoTu","content":"THBT the United States should return to the policy of pressuring and sanctioning North Korea.","round":"4","language":"English","id":"0rkeH9YrexApA3iWqdFm"},{"link":"","round":"5","topic":{},"division":"","language":"English","content":"THW force all universities to make their lectures free for all and available online.","infoSlide":"","tournamentID":"ZQbHv8rs6yqxtH8VBbkr","id":"0sQ0cRsdSIYfgm8tgHem"},{"division":"","infoSlide":"The trope \"unlike any other girls\" is a popular plot in movies or books, etc. In this trope, the female lead is described as special or extraordinary (e.g. extremely smart, persistent, independent, unaffected by emotional changes) compared to other girls.","language":"English","link":"","round":"","tournamentID":"CJKUeBIUibEtZYahoUQV","topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"content":"TH, as a feminist movement, would oppose the trope \"unlike any other girl\".","id":"0smcA9huzdXVcrROs7un"},{"topic":{},"link":"","round":"Novice_Final","content":"This House would allow the creation of Savior Siblings* (*a child who is born for the purpose of providing an organ or cell transplant to a sibling who is affected with a fatal disease).","division":"","tournamentID":"9WoIT6ofG5A9j3MeLxh4","infoSlide":"","language":"English","id":"0t8ut5B9c9l6NacrDkJm"},{"link":"","tournamentID":"j4lF8rhbFUyC0UTwoz2G","language":"English","infoSlide":"","division":"","content":"THW charge distribution and downloading of leaked sex tapes & nude pictures as sexual assault.","round":"Open_Final","topic":{},"id":"0thomvojQfpCdAUV4IaK"},{"language":"English","topic":{},"link":"","content":"This House believes that feminist movement should oppose military interventions which claim to further women's rights.","tournamentID":"NYyJaJXo1SigW6G8Y1Lm","infoSlide":"","round":"Open_Finals","division":"","id":"0tioL4xlQTjOZs6pmWGU"},{"link":"","topic":{},"round":"3","content":"THBT the transgender movement should leave the LGBTQ movement.","division":"","tournamentID":"mBBGfJmUYufw4KNTlYoR","infoSlide":"","language":"English","id":"0u3NiDGVAEeZX6MnUb3K"},{"content":"TH Prefers Asian Values to Western liberalism.","link":"","division":"","topic":{},"language":"English","round":"3","tournamentID":"rEUwN5dFZYjeXBNtp4NG","infoSlide":"","id":"0usN23GsvzhE0VaPigND"},{"round":"4","tournamentID":"U2WbXKmpxuh7OC6qZ1zX","content":"TH regrets Disney's continuation of the Star Wars film saga.","infoSlide":"","link":"","division":"","language":"English","topic":{},"id":"0vlpUhooodtixsumuPKx"},{"language":"English","division":"","link":"","round":"3","content":"THBT the EU should ban non-stun religious slaughter of animals.","tournamentID":"xUGmMsj95M2w5CV6WYVA","infoSlide":"","topic":{},"id":"0xzvqp3Y2PSMKn2qFeCm"},{"tournamentID":"Vis5yhSVMHubvgdJTwP1","round":"3","infoSlide":"","division":"","language":"English","content":"TH as the EU would significantly increase sanctions on Russia as opposed to lifting them.","topic":{},"link":"","id":"0z4H3CdKTA4xvT8fEnKq"},{"infoSlide":"","language":"English","content":"THW ban beauty pageants for under 16-year olds.","topic":{},"division":"","link":"","tournamentID":"ODzhGSyV71DaUGhZEWGT","round":"1","id":"0zlbLH1Lnt1qn7NQix9p"},{"link":"","infoSlide":"Itachi is part of the Uchiha clan, who are feared by the broader Konoha village for their powers and are also treated disrespectfully as a minority, living on the outskirts of the village. Itachi works as an assassin for the village and finds out his clan is planning to revolt in a coup d'etat. In addition to potentially weakening the village, which might make it vulnerable to encroachments from other antagonistic villages, it would also likely be a very deadly coup. Itachi's boss instructs him to kill his clan, including his parents and love interest, with the guarantee that Itachi's little brother Sasuke could be spared by Itachi and would be taken in by the village afterwards. In the anime, Itachi decides to genocide his clan.","content":"TH, as Itachi, would not have massacred his clan.","tournamentID":"Z9WBfg1yDJgSR34BGYp1","round":"2","division":"","language":"English","topic":{},"id":"10lLNtxu6Cc5dh5i01RC"},{"topic":{},"link":"","tournamentID":"48Ba3dAlJxoct1Z9f7GA","infoSlide":"","language":"English","round":"Open_Semis","content":"THW never target civilians in a total war.","division":"","id":"127rTsUcqbpu06Mlw2IX"},{"division":"","tournamentID":"Ef5RtQo9Rr0nt7Nnhncq","link":"","content":"When the Bundestag votes on matters of conscience, the members can vote without party discipline. Should the People decide on matters of conscience instead of the Parliament?.","round":"Open_Final","topic":{},"infoSlide":"","language":"English","id":"127xPS7sRwZOiLlxNDCQ"},{"content":"THW only show films that pass the Bechdel test.","round":"2.2","language":"English","division":"","link":"","infoSlide":"","topic":{},"tournamentID":"BXqPhfwak2R1kYHV48bp","id":"12brOS10zmEnpwyJmT7Y"},{"infoSlide":"","language":"English","tournamentID":"3puXPIrnWCPTSNlOtl3R","link":"","division":"","topic":{},"content":"TH (As the EU) would make development aid conditional upon developing countries using it for renewable energy generation.","round":"Open_Semis","id":"12hD27FGiNUE2NrZ2olO"},{"link":"","content":"Should landowners be the owners of all natural resources (Bodenschätze) in their ground?.","tournamentID":"QjQ9aMJIggiNR9zYImnN","round":"4","division":"","infoSlide":"","language":"English","topic":{},"id":"12kRESBnxqW4EuLO9sci"},{"content":"THR the glorification of the concept of genius.","topic":{},"tournamentID":"DIDaTQVu3sv4iXbqf3eE","link":"","infoSlide":"","language":"English","round":"Open_Quarter","division":"","id":"13TXRcjI7Tr6FVl4arSJ"},{"tournamentID":"8ayi1XeWc8ZG8jPzG8bt","division":"","round":"2","topic":{},"language":"English","infoSlide":"","content":"THW force universities to make all their lectures available for free online.","link":"","id":"13Zbi2YEpQLbX4NGD20c"},{"link":"","content":"THBT all nations should take active steps to eliminate all borders.","tournamentID":"s6w7WZApDWnBBmzeKY4h","round":"Open_Final","topic":{},"infoSlide":"","division":"","language":"English","id":"13kzqxYoEsy9aY4p2bwL"},{"division":"","round":"3","link":"","content":"THW Make the directors of multi-national companies criminally responsible for any environmental damage caused by their company in the developing world.","tournamentID":"4gQdvZTMKBCThKxmhfmU","language":"English","infoSlide":"","topic":{},"id":"13zHGGptCr9FMNDZT2la"},{"link":"","content":"THW ban all pornography.","topic":{},"infoSlide":"","tournamentID":"t2juKb62UT5HJ0kruUAw","division":"","language":"English","round":"9","id":"1408obdHGX5Xo8PTUepD"},{"tournamentID":"Wb0k9XSEirfd7kuffEGF","topic":{},"link":"","content":"TH believes that companies have a moral obligation to significantly invest in helping the communities in which they operate, even when it has no benefit to that organisation.","division":"","language":"English","round":"5","infoSlide":"","id":"14n4loA1bbeGh5Mf1lIr"},{"topic":{},"tournamentID":"qA0UqqN9np2leDGCNcck","infoSlide":"","division":"","round":"1","language":"English","content":"THW boycott the Russian Winter Olympics 2014 in Sochi.","link":"","id":"14w7Jeu0G8bkhwFvGp1v"},{"language":"English","infoSlide":"","round":"3","content":"THBT schools should avoid instilling a sense of patriotism.","link":"","division":"","topic":{},"tournamentID":"MSkvKRc0Dq8mooTLp6T8","id":"15KEidyBRYdxUXGvbOmT"},{"tournamentID":"zngB1WF8viOW2uGu6swZ","infoSlide":"","topic":{},"language":"English","content":"THBT “Western” consultants advising dictatorships have a moral duty to sabotage them.","link":"","round":"Open_Quarters","division":"","id":"15Y5Hm02INhgms2L7Ze9"},{"content":"This house would allow parents to cast proxy votes on behalf of their children.","topic":{},"division":"","infoSlide":"","link":"","language":"English","tournamentID":"ZKj5YfRQe4wJF8bx4fLp","round":"5","id":"16FSgQ4KGt4Ghq1qyJ31"},{"infoSlide":"","round":"Open_Octos","division":"","tournamentID":"1dEXZTvvRtTWhdBLmzFt","link":"","language":"English","topic":{},"content":"THW prefer a religion which preaches that one's fate in the material world is predetermined rather than one which preaches that choices influence it.","id":"16qRl7cizxIaOCZHrezp"},{"language":"English","topic":{},"round":"1","tournamentID":"pvKZkg6sqicG5nXA2mvY","infoSlide":"","content":"THBT the United States of America should fund moderate Madrassas (schools of Islamic study) throughout the Islamic world.","link":"","division":"","id":"17HsoMK8ORnaaK1s8zYM"},{"topic":{},"content":"THW accept Intel’s proposal.","round":"4","division":"","tournamentID":"jFJV7RlRveuMvy9xk7UP","link":"","language":"English","infoSlide":"","id":"17V4ieMMTgoHXvJ9giqD"},{"language":"English","topic":{},"tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","round":"Open_Semis_2","content":"That we should implement Good Samaritan laws (legally obliging bystanders to assist those in danger, unless doing so would place them at serious risk).","link":"","infoSlide":"","division":"","id":"17ZzmCjpsduL69NK09R4"},{"infoSlide":"","content":"THBT the state should subsidise news media outlets.","division":"","language":"English","link":"","round":"1","tournamentID":"9l3qvCwMUUUzEdTVXCoM","topic":{},"id":"17wPKMrLb93q6xgd242k"},{"topic":{},"round":"2","content":"Should war memorials for fallen soldiers also offer equal recognition to soldiers from the other side?.","tournamentID":"mveJVSu6tAxKx2Vp4IB0","infoSlide":"","language":"English","link":"","division":"","id":"17zGQg6FlghRrUlJ9eU9"},{"content":"THW provide welfare in the form of basic goods and services rather than cash payments.","topic":{},"division":"","tournamentID":"BtqBGdAUsTtPKorZOcBX","round":"9","link":"","infoSlide":"","language":"English","id":"18mj9n675oEQHOUbfnOw"},{"round":"4","content":"TH welcomes the rise of for-profit education in developing countries.","tournamentID":"8umdzosR2LakbIpLGOan","infoSlide":"","division":"","link":"","topic":{},"language":"English","id":"19gxDhc0HvEuhlD336jW"},{"division":"","tournamentID":"Jy8kbmlTXWgf8pRg3dUy","language":"English","content":"Given that a trade off is required, THBT history education in post-conflict societies should focus on cohesion at the cost of truth.","link":"","topic":{},"round":"5","infoSlide":"","id":"1BIlw6NyRsDvzofCpqM0"},{"link":"","infoSlide":"","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"division":"","content":"Chúng tôi tin rằng các quốc gia Châu Phi nên chấp nhận \"giải pháp mượn lại\" cổ vật thay vì đấu tranh đòi hoản trả.","tournamentID":"CbtTNoNzLTvfNvRWmMc2","round":"","language":"Vietnamese","id":"1CQ3OP9bUezhZWfeOlFQ"},{"tournamentID":"m6JzV67uYJSVBRpAbgL7","topic":{},"language":"English","round":"2","content":"THS excess profit taxes on corporations that derived significant profits from a pandemic.","link":"","division":"","infoSlide":"","id":"1CochRIuLavSsesQDhaM"},{"round":"ESL_Final","content":"THBT the countries of former Yugoslavia should create a common history curriculum and textbooks.","infoSlide":"","tournamentID":"Te8RVa4tAIQJaY0sFp5C","language":"English","link":"","topic":{},"division":"","id":"1D0uFaJeNzObXh6UpjRH"},{"tournamentID":"DWR60IgakRS9N3GeNemc","content":"When casting minority characters, THBT films should only cast actors from that same minority.","round":"1","language":"English","topic":{},"infoSlide":"","link":"","division":"","id":"1D2PypELN0ZQ84MXAvnw"},{"link":"","infoSlide":"","content":"TH regrets the glorification of the pursuit of meaning of life.","tournamentID":"myGQJSUNqcxcCjm3bONn","division":"","topic":{},"round":"3","language":"English","id":"1D6uoeT3VHNmJt1NNxfr"},{"round":"","content":"Assuming technology allows, in countries with compulsory military service, THW force troops to erase all memories of the battles they participated in before they were discharged.","division":"","infoSlide":"","language":"English","topic":{"technology":{"title":"Technology","check":true}},"link":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","id":"1Db042IxrRRu3BAokc26"},{"language":"English","tournamentID":"1bHNYzF6GWRqdpr3f5vt","topic":{},"round":"4","division":"","content":"That ASEAN should negotiate all investment deals with Chinese government entities as a bloc (with decisions made by majority vote of its members), so that no member state can enter into investment deals without the consent of the majority of ASEAN.","infoSlide":"","link":"","id":"1DpwzeMhWnVD7X0r4xnM"},{"topic":{},"division":"","round":"3","infoSlide":"","link":"","language":"English","tournamentID":"p3EOrIRx2qBcnN8fXbHh","content":"THBT the feminist movement should campaign to deconstruct masculinity rather than mobilize masculinity to serve feminist goals.","id":"1Dslb0rKKziKCrFzY2mq"},{"tournamentID":"Bx1uUqHBcAJ7qAZcUwyz","link":"","infoSlide":"","division":"","content":"TH, as a Palestinian, would advocate for a 1-state solution.","language":"English","round":"2","topic":{},"id":"1DxobDiAT8n3O6BhBdZK"},{"content":"THBT feminist christians should leave the Church of England.","language":"English","infoSlide":"","division":"","round":"Open_Final","link":"","topic":{},"tournamentID":"6CH8DHWUbQKOjMDFTgFX","id":"1E1dNwjaai5WV2roBToa"},{"round":"EFL_Final","topic":{},"infoSlide":"","language":"English","link":"","tournamentID":"kFpM1KUkMmDded3L4Zmm","content":"This house would prohibit all private health care.","division":"","id":"1F7HMhj8pPfRvF20KZ2N"},{"link":"","tournamentID":"3KT5cUfqBjWrhC0DWPAs","infoSlide":"","language":"English","content":"TH, which is a female debater, would participate in next year's Glasgow Ancients.","division":"","round":"Open_Final","topic":{},"id":"1FAe864GuwYoZbAshZYo"},{"link":"","round":"7","topic":{},"infoSlide":"Settler-states are post-colonial countries where the population descended from colonists is the largest ethnic group. Eg the United States, Canada, New Zealand, and Australia.","language":"English","content":"THBT settler-states should pursue immigration policies that lead to no cultural or racial group being a majority of the population.","division":"","tournamentID":"CBVZREYhjV5bhCHOuWjU","id":"1FBLOlwVeKLOpuNc4Aj5"},{"division":"","language":"English","link":"","infoSlide":"","round":"4","content":"In post conflict societies, This house would grant amnesty to perpetrators of crimes rather than seeking prosecutions.","tournamentID":"PhJT1xhigiWcZot2PdLn","topic":{},"id":"1GPGpZ7wCmr6hJt6f5Tb"},{"link":"","language":"English","tournamentID":"dL45ZXh9u0IhHmAuaa0r","division":"","topic":{},"infoSlide":"","round":"4","content":"THBT artists accrue no additional responsibilities/duties by virtue of becoming famous.","id":"1Ge1CeamtnwuBjnOcR50"},{"tournamentID":"yhJgdE0VFcsqlvWffep1","topic":{},"infoSlide":"","content":"TH supports a Palestinian right of return.","language":"English","link":"","round":"7","division":"","id":"1GzbDfhviJC3BiZyieyn"},{"language":"English","tournamentID":"DYYa510cEyzz1viLavRR","topic":{},"round":"1","division":"","infoSlide":"","link":"","content":"THW remove all sin taxes.","id":"1IF4DJwQNQtfvgBb3WgG"},{"language":"English","division":"","tournamentID":"37eWQ7OoHqsPgaN53lHV","link":"","infoSlide":"","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"content":"Assuming cybersecurity is ensured, THW use social media accounts instead of ID.","round":"","id":"1IU0QnG1owqbHsbaUVDd"},{"round":"","language":"Vietnamese","link":"","division":"","topic":{"education":{"title":"Education","check":true}},"content":"Chúng tôi tin rằng Việt Nam không nên dạy lịch sử theo cách chú trọng ca ngợi các thắng lợi của quốc gia.","infoSlide":"","tournamentID":"CJKUeBIUibEtZYahoUQV","id":"1IhES6DE1odA9IQQJUKH"},{"tournamentID":"bkOT9pwqHsKTlwricRHY","content":"THW replace all income taxes with consumption taxes that become proportionally higher as the purchased goods become less essential.","round":"Open_Semis","link":"","division":"","infoSlide":"","language":"English","topic":{},"id":"1IirHu3r67vmHVYOeAvq"},{"language":"English","link":"","topic":{},"round":"2","division":"","infoSlide":"","content":"THBT the government of the DRC should hire private military companies to defeat rebels in North and South Kivu.","tournamentID":"9l3qvCwMUUUzEdTVXCoM","id":"1JCwMlS902nsLupLJbkB"},{"tournamentID":"NE3BXrt6CASI2EExAgUk","division":"","content":"THW allow voters to dismiss their government during its term through citizen initiated referenda.","topic":{},"round":"4","language":"English","infoSlide":"","link":"","id":"1JiR5q3Ggmo4qHvb3jIK"},{"tournamentID":"4gQdvZTMKBCThKxmhfmU","division":"","content":"THW allow the families of victims of war crimes to sue the country responsible for reparations.","round":"1","link":"","infoSlide":"","language":"English","topic":{},"id":"1KWqoLOWXscUYr0MlJYK"},{"round":"5","content":"THBT celebrities should not act as spokespeople for humanitarian issues.","topic":{},"language":"English","link":"","tournamentID":"gmusL4yQ3HD8FyegVRpk","division":"","infoSlide":"","id":"1KdvMFmb6jC2Yl8wRK3S"},{"infoSlide":"","division":"","topic":{},"link":"","content":"THW only give aid to devleoping countries that have good environmental policy.","tournamentID":"N6GD6E8q4Mbzt8Xexnyy","language":"English","round":"5","id":"1Kxhtx70MEo5ZX4nzeGw"},{"division":"","infoSlide":"","language":"English","topic":{},"tournamentID":"Z9WBfg1yDJgSR34BGYp1","link":"","content":"TH, as a fledgling anime studio, would choose to produce cheap and easy to produce romcoms rather than focusing on more niche arthouse anime.","round":"Semifinals","id":"1KxpT0KDuZcMIndFNHto"},{"division":"","language":"English","link":"","topic":{},"tournamentID":"nMUJTA4Krf9MyO7MGVzA","round":"3","infoSlide":"","content":"THW introduce a “capability vote”.","id":"1KzUb2kh1GG8wOUM7n0G"},{"topic":{},"round":"1","language":"English","infoSlide":"","content":"THBT Djokar Tsarnev, the Boston Marathon bomber, should be given the death penalty.","link":"","tournamentID":"NE3BXrt6CASI2EExAgUk","division":"","id":"1LDlxbUw74OYBPXwIJNg"},{"language":"English","topic":{},"infoSlide":"","link":"","division":"","tournamentID":"MIEMFyC8nYMlqXU4wtOC","round":"1","content":"THBT video games should regularly reassign random gender and race identity to player avatars.","id":"1LpCNso2LSAGd0Kbi5Bi"},{"division":"","topic":{},"language":"English","round":"Open_Final","link":"","tournamentID":"rTCB6GUTIjymEKsbO01i","content":"THBT the judges in Supreme Court should be elected directly by the American people.","infoSlide":"","id":"1LsplPCifHYNqlpKJylc"},{"content":"THW accept Iran as a nuclear power.","round":"2","tournamentID":"YRWxNK3sQq47UacBwpjn","topic":{},"division":"","language":"English","link":"","infoSlide":"","id":"1MNEzmqNlK7stNn39Bex"},{"tournamentID":"5oYH1K5oILZA6OqwhGhz","link":"","round":"Open_Final","division":"","language":"English","topic":{},"infoSlide":"","content":"THB trade unions should stop all campaigning and policy work against offshoring.","id":"1Ma9jXiVebS1OikT0y01"},{"language":"English","infoSlide":"","division":"","link":"","tournamentID":"jTIGk8DeHHGFQRpsk85j","content":"THBT the Nobel prize in literature should be decided by members of the public rather than a panel of experts.","round":"5","topic":{},"id":"1NMqignuvDPndUmcUDAE"},{"content":"There exists a drug that increases empathy in individuals. TH, as the state, would lace their country's water supply with that drug.","division":"","language":"English","topic":{},"tournamentID":"nDjxmwMznw4ZJasK7Taj","round":"Open_Semis","link":"","infoSlide":"","id":"1OCvpqbssFIZqZFJfFNJ"},{"topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"round":"","infoSlide":"","division":"","language":"Vietnamese","content":"Chúng tôi tin rằng tất cả các quốc gia nên thay chỉ số GDP bằng chỉ số GNH.","tournamentID":"CbtTNoNzLTvfNvRWmMc2","link":"","id":"1PTMoiEXpV80d9umxzBy"},{"content":"THBT governments should significantly invest in social impact bonds to address social problems.","tournamentID":"kaKFVFzhrgSOIPlruLU6","infoSlide":"","link":"","round":"Open_Semi","topic":{},"language":"English","division":"","id":"1QRvjWIbx0ziRP5nXOGJ"},{"round":"ESL_Final","infoSlide":"","link":"","content":"THW ban the creation of all artificial conscious beings.","language":"English","tournamentID":"rEUwN5dFZYjeXBNtp4NG","topic":{},"division":"","id":"1R5v5porDEFzpHf75rpM"},{"infoSlide":"International implications can be exclusion from international organizations, embargoes, military intervention, etc.","content":"THBT the fight against climate change should include international implications against nations that have allowed or have been indifferent to actions directly affecting the environment.","round":"","tournamentID":"FZTHJ19pUWQG2SZNeOvr","topic":{"environment":{"title":"Environment","check":true}},"link":"","division":"","language":"English","id":"1RLhGwXnjp1BnYW2qddL"},{"language":"English","topic":{},"content":"THW legalize betting on electoral processes.","round":"Open_Quarter","tournamentID":"S2mG18EWYdh2bPEadyd9","infoSlide":"","link":"","division":"","id":"1RQwu19sAN3vcz14Kbx3"},{"link":"","round":"1","topic":{},"content":"THBT all politicians should be celibate.","division":"","tournamentID":"7lMrN2aiwSzD5rzPFwHz","language":"English","infoSlide":"","id":"1Rfp1srH5B7IGoGyRAXm"},{"round":"Open_Semis","language":"English","tournamentID":"vURFmLn4wdqX6ZbK0ini","content":"THW hold social media companies legally liable for content on their platform.","division":"","infoSlide":"","topic":{},"link":"","id":"1SYJuxljNObycQWWQeh5"},{"topic":{},"division":"","link":"","tournamentID":"9akG27VqSvbqsF3kGa1l","content":"This House, as the Iranian government, would fulfill its obligations under the JCPOA.","round":"5","infoSlide":"","language":"English","id":"1Sgppwx2FneIgrswPxIA"},{"tournamentID":"9JqIpRhRkA8gulRio4t9","language":"English","topic":{},"link":"","round":"4","content":"This House would remove all health restrictions for prospective adoptive parents.","infoSlide":"","division":"","id":"1SoCRJjeAt4hnKxt61Lr"},{"infoSlide":"","language":"English","topic":{},"tournamentID":"NtnveNmZosTMD9TU0qA8","division":"","content":"THBT the educational system should portray drug use in an objective way (with all pros and cons), rather than in an solely negative light.","link":"","round":"3","id":"1SwzfAamlRWegQjQ9B7n"},{"division":"","content":"THR the partition of India.","round":"Open_Quarters","tournamentID":"DFNWZhapl7SHDFBrFsMi","topic":{},"infoSlide":"","language":"English","link":"","id":"1T3mslqBx717NuRRSFd1"},{"link":"","infoSlide":"","round":"5","tournamentID":"Hk8f1ASR1JhJdfu9tmfK","division":"","language":"English","topic":{},"content":"THB that all museums, galleries, and cultural institutions should offer to return exhibits to their countries/communities of origin.","id":"1TVBaV28olxWrgSFojrr"},{"round":"5","division":"","topic":{},"content":"THW not prosecute former child soldiers for crimes committed as adults.","language":"English","infoSlide":"","tournamentID":"KpispxU2MtVt41R9j5bV","link":"","id":"1V8mrU39dDMJClNE3vVg"},{"round":"Open_Semi","infoSlide":"","topic":{},"link":"","tournamentID":"XL594Q2oZbvHmfmYKFvT","content":"That we would abolish the Goldwater Rule.","language":"English","division":"","id":"1VF80kInMziN87I0knpp"},{"link":"","content":"This House would make labour union membership compulsory in large industries.","language":"English","topic":{},"infoSlide":"","round":"5","division":"","tournamentID":"0mv3ToZPy0AwAsRnpZBN","id":"1VUjz6N7N44cI0FLaYFA"},{"content":"THW give parents full access to their children's social media accounts.","tournamentID":"DYYa510cEyzz1viLavRR","round":"3","topic":{},"language":"English","infoSlide":"","division":"","link":"","id":"1W9qMeD14JQm1hFVd452"},{"topic":{},"round":"Open_Semis","tournamentID":"N8WiUFJpvPmLaaYYsbsD","division":"","language":"English","content":"Should citizens be forced to borrow money to the state in times of crisis? (Should it become mandatory for citizens).","infoSlide":"","link":"","id":"1WKXYakoaW4cARNyj48R"},{"topic":{},"language":"English","tournamentID":"UHsyrV6WVu0fgh5gHyPf","division":"","link":"","content":"TH (as the EU) would offer visas for residence to all immigrants and their families that have proven to have found means of subsistence.","infoSlide":"","round":"2","id":"1WYGoWCxJCt0V9IBIEAD"},{"round":"Quarterfinals","topic":{},"infoSlide":"The US recently carried out an airstrike in Syria, in the first military action undertaken by the Biden administration. It targeted the facilities used by a number of Iran-backed militia groups, including Hezbollah, who are allied with the current Syrian government. The strike was ordered after a Folopo civilian contractor with the American led coalition was killed in a rocket attack in early February. A US service member and five other US contractors were also injured when the rocket hit sites including a base used by a US-led coalition.","division":"","content":"As the US, THR the Biden administration’s decision to launch an airstrike in Syria.","tournamentID":"KTeMrrauFpZYvjtBUkLJ","link":"","language":"English","id":"1WwR4fclAA9rc2p1MJrc"},{"round":"2","language":"English","infoSlide":"","tournamentID":"Pt1Z2dTdUinRviVucbZA","content":"That it is in the interest of the Sith (circa 35 BBY) to abolish the Rule of Two.","link":"","division":"","topic":{},"id":"1XMMWkfU9j71rSsigxQO"},{"tournamentID":"jhyT1LK3YdR0do1cosc6","topic":{},"content":"THB the Gay Rights Movement should oppose Gay Pride Parades in Western Liberal Democracies.","infoSlide":"","division":"","language":"English","round":"4","link":"","id":"1XYFXpuOP3ooiOyOUlnd"},{"link":"","infoSlide":"","division":"","topic":{},"round":"4","content":"THBT film studios should seek to select racially diverse casts when converting books into films even if it differs from the original character descriptions.","tournamentID":"jpLuasMJYB40s1bJk2Ia","language":"English","id":"1XYUaORGA62UPviY5Wiz"},{"division":"","content":"THR the secularisation of religious literary works (e.g. Rumi, Firdousi).","topic":{},"round":"National Quarterfinals","tournamentID":"IXq1CdgyiKmkyEDJURrV","language":"English","link":"","infoSlide":"The secularization of a text is a process that involves taking explicitly religious text (philosophical or literary) and removing the elements that tie into the original religious context. This is often done through the process of translation or explicit removal of religious references. A prominent example is the work of the 13th Century Persian poet, Rumi, (Mowlana Jalal ad-din Muhammad Rumi) such as the “Masnafi”, which were intended as explanations of the Koran having all references to the Koran removed.","id":"1Y9DO7vFfqsH9HP9FVSF"},{"content":"THBT developed countries should grant an amnesty to illegil immigrants.","round":"ESL_Final","infoSlide":"","topic":{},"link":"","language":"English","division":"","tournamentID":"gDONpxWgr0bu13hZzxYr","id":"1YYiSneKUFvu8WvVY8UU"},{"division":"","topic":{},"tournamentID":"dqyYdikn4cY0oz6DCMkq","link":"","infoSlide":"","round":"2","content":"THBT that Australia should replace its current flag with the aboriginal one.","language":"English","id":"1ZXrG07dByR6AKLi7yPx"},{"division":"","tournamentID":"h373wn3dFw9UcWDcJpyy","content":"A (very) high tax on inheritance would be just.","infoSlide":"","language":"English","link":"","round":"Open_Semi_2","topic":{},"id":"1ZmNTtpqMyZ2dmN8GCFy"},{"link":"","content":"THW require popular sports that generate high profits to share a portion of their gains with marginal/fringe sports.","division":"","topic":{},"infoSlide":"","language":"English","round":"Open_Semis","tournamentID":"9sZiZ9uPaGSIYSFdM4VZ","id":"1aD2PFX381MPqGyjS2M1"},{"topic":{},"content":"THR the Rise of the Rom-Com Genre.","infoSlide":"","language":"English","link":"","tournamentID":"Mi4A41wAaOQFffgxIvSR","round":"Open_Final","division":"","id":"1ac7UWy1ZKbLcPhJCHh1"},{"topic":{},"division":"","infoSlide":"","link":"","language":"English","content":"THW only provide state pension to those mentally or physically unable to work.","tournamentID":"JvpXQ1DYmWydXXgsnZ74","round":"4","id":"1cBILPF2QYOXSKgo1vEo"},{"content":"THBT the West Should cease using attack drones in counter-insurgency operations.","round":"6","tournamentID":"9wxPRUMGICTUrE7xSaCG","topic":{},"division":"","language":"English","link":"","infoSlide":"","id":"1ck3sCIWLfTtqM1iKUc0"},{"topic":{},"division":"","round":"3","language":"English","tournamentID":"roH9ICCjwscIePFGM61P","content":"TH regrets the rise of the certified artist (as certified through official art schools, degrees, or programmes.","infoSlide":"","link":"","id":"1cmJGpyhojgvHRPj8N3S"},{"language":"English","topic":{},"link":"","division":"","infoSlide":"","content":"This house believes that the interests of the Chinese people would be better served by a peaceful transition into a democracy, rather than a continuation of one party rule.","round":"Open_Final","tournamentID":"2D1SBKQDFgG0zGjX4oHP","id":"1dP50JT6CAjxI3ZeB3ij"},{"division":"","content":"THBT publicly funded universities should be required to reduce enrolment in degree programs within their university that have statistically poor employment outcomes.","round":"EFL_Quarters","tournamentID":"0bpNzjTgN71TZQEkHTak","language":"English","topic":{},"infoSlide":"","link":"","id":"1dVVCELwuDibXiJBQCF9"},{"link":"","tournamentID":"FaBy9PfDE8gfy5w00VdM","language":"English","topic":{},"round":"4","division":"","infoSlide":"","content":"THW only allow election campaigns to be funded by a fixed budget provided by the state.","id":"1e7NKg4RiUXepEhDYpbG"},{"infoSlide":"","link":"","round":"4","topic":{},"tournamentID":"UFyGWwwkKkZKyD4oHYoI","division":"","language":"English","content":"TH regrets the rise of pop feminism.","id":"1eRHKX2OujAr5bCmXawF"},{"link":"","content":"THW pay monetary compensation to Sephardi Jews.","tournamentID":"epYFKCbv9IIbdGwlLvYy","language":"English","topic":{},"division":"","round":"Open_Final","infoSlide":"","id":"1eWeXbASksmmkZiDh2kO"},{"link":"","infoSlide":"","division":"","content":"THW force countries to invest in a global space program.","language":"English","topic":{},"tournamentID":"KErVXbqRahyWD7ZB1Q1m","round":"1","id":"1eXAFCFZKw2nEla0qwup"},{"tournamentID":"m97biSF63NO9Jn1yenBI","division":"","content":"THW determines the teacher’s pay rate based on students’ feedback.","round":"1","link":"","infoSlide":"","topic":{},"language":"English","id":"1ehDndBxuU2EvtEjqSGO"},{"link":"","language":"English","content":"TH as an Israeli Arab would boycott Israeli elections.","tournamentID":"0FjoYPaEyMvQKDhX7FzX","infoSlide":"","round":"Open_Semis","division":"","topic":{},"id":"1en8lJkX8k5j6sEowrmw"},{"round":"Open_Quarters","tournamentID":"0vUzx1fMW06W65BNi8Wn","topic":{},"language":"English","content":"This House Believes That Joe Biden should pick Elizabeth Warren as his Vice President running mate.","infoSlide":"","division":"","link":"","id":"1eo2cOhrCJbFFhwa1kpk"},{"tournamentID":"nFeuKMAFpK6Amwi6OMai","link":"","infoSlide":"","content":"Should the special status of churches under labour law be abolished?.","division":"","round":"Open_Semis","topic":{},"language":"English","id":"1fi02zWyhZcni54ivnW1"},{"language":"English","link":"","content":"THR the self-commercialisation of indigenous culture. (For example, Maori “village tours”, Aboriginal art fairs, and Native American casinos).","round":"3","infoSlide":"","tournamentID":"Gx29hnXeBrSjBZrrDKx8","division":"","topic":{},"id":"1g169Baf6kWLsC0oynD6"},{"tournamentID":"jVtcrR58DYEPrz6PXM17","link":"","round":"4","topic":{},"content":"This House would make a number of votes of one voter inversely proportional to his/her personal wealth.","infoSlide":"","division":"","language":"English","id":"1gGafwdq2zXtonr4hpi1"},{"tournamentID":"Er03o2M51g3s6dYyUHHm","topic":{},"round":"5","language":"English","infoSlide":"","content":"TH, as Germany, would leave the EU.","link":"","division":"","id":"1gIL8Rl2D6RXXMgn35MT"},{"language":"English","division":"","content":"THBT white authors should not publish their reviews on Beyonce's album.","tournamentID":"tKaZ8QEH0Hjz3Oiknfdr","topic":{},"round":"Open_Final","infoSlide":"","link":"","id":"1goHjSXDOIdzO5m8OkWa"},{"language":"English","topic":{},"tournamentID":"V6eoj3ztq5t3sX9oPVue","content":"THBT at least 50% of the Legislature (Parliament) should be appointed by a socially representative random draw from the general population.","infoSlide":"","round":"5","division":"","link":"","id":"1h5XVSeceKsKvJbBdtfy"},{"content":"THBT states should take high numbers of refugees, even when faced with strong democratic opposition.","infoSlide":"","tournamentID":"Mi4A41wAaOQFffgxIvSR","language":"English","division":"","topic":{},"link":"","round":"4","id":"1h9iUgNfltzC9hIFqVyS"},{"topic":{},"round":"4","tournamentID":"YRWxNK3sQq47UacBwpjn","link":"","division":"","language":"English","content":"THW use only masculine word forms for women and men.","infoSlide":"","id":"1hYe8yhFN1T9YEN4bIIT"},{"link":"","division":"","language":"English","tournamentID":"db8a4cSMVYVFuxZgcf0y","topic":{},"content":"In states with high rates of violent crime This House supports assassination of individuals credibly accused of participating in organized crime.","round":"5","infoSlide":"","id":"1jEAu72uksm09o5kQuKo"},{"infoSlide":"","topic":{},"link":"","tournamentID":"MgpFX31hoBasrUiOV7Eu","round":"6","language":"English","division":"","content":"THW pay known gang members to not commit violent crimes.","id":"1jSEnqt32NY8jHIaw0Jw"},{"language":"English","link":"","content":"THB in the student protests.","infoSlide":"","tournamentID":"STaEp3vuXBuTT2bP0vgU","round":"Open_Final","topic":{},"division":"","id":"1kL5oLwOiafp3cu4gB2N"},{"content":"Many food ethics movements (local foods, slow foods, farm to table) condemn corporate production. Such as Farm to Table (add examples)\tTHBT food ethics movements should disavow sustainable consumption marketed by large corporations (eg, Starbucks, Chipotle).","division":"","infoSlide":"","round":"6","tournamentID":"PGbz2bx1wifAEJU64jdo","language":"English","link":"","topic":{},"id":"1kqG0zbFMmfFEwZhWeIN"},{"division":"","round":"Open_Final","content":"TH as the Republican National Committee Would Literally Kick Donald Trump out of the Republican Party.","tournamentID":"qLVUbjlIT84ro50ixBwk","topic":{},"link":"","language":"English","infoSlide":"","id":"1mYK7JjvgEC7slIkxXnC"},{"language":"English","content":"THBT Mexico should pull out of NAFTA.","division":"","tournamentID":"TpCKtGVry2w5xrgb90jZ","topic":{},"link":"","round":"3","infoSlide":"","id":"1mwo8G9tizztaTJAxPVp"},{"topic":{},"content":"Chúng tôi tin rằng Wakanda nên theo đuổi một chính sách toàn cầu hóa (trao đổi với tất cả các quốc gia kể cả không cùng gốc gác châu Phi) thay vì chính sách ưu đãi riêng cho các quốc gia châu Phi.","round":"Quarterfinals","link":"","division":"","infoSlide":"Wakanda là một quốc gia được dựng nên bởi 1 nhóm người cổ đại tại châu Phi. Nhờ sở hữu 1 loại kim loại quý có tên gọi là Vibranium, Wakanda có công nghệ vượt trội so với thế giới, vì vậy Wakanda đã tự che giấu mình khỏi thế giới suốt 1 thời gian dài. Hiện nay, công nghệ vô cùng tiên tiến của Wakanda đã được thế giới biết tới.","language":"Vietnamese","tournamentID":"OLVGf3rE3KKirerr2vyk","id":"1myOU20fI8gRbnwsZZEk"},{"infoSlide":"","round":"Open_Semis","content":"THBT the EU has failed.","tournamentID":"zZRXGDm7RC8LjYJKzubm","topic":{},"language":"English","division":"","link":"","id":"1n3jKOIpHUjn9hBGSfMM"},{"content":"THW abolish the right to remain silent (verschoningsrecht) for clergy.","topic":{},"link":"","infoSlide":"","round":"2","tournamentID":"bkOT9pwqHsKTlwricRHY","language":"English","division":"","id":"1oIyyL9UkL8az2KjxEow"},{"link":"","division":"","tournamentID":"MKOx1AvBmfWL7cHrRXg2","infoSlide":"","topic":{},"round":"Novice_Final","language":"English","content":"This House Would abolish constitutional monarchies.","id":"1oJjKeynbn2OzJ6d6f8I"},{"tournamentID":"GwkssAj8zxpqlXlKBDqa","division":"","topic":{},"link":"","round":"4","infoSlide":"","content":"THW allow young boys to undergo chemical castration to preserve their singing voices.","language":"English","id":"1oOnfpQdMUzLhBEu2jIr"},{"language":"English","content":"THBT the International Olympic Committee should ban all athletes who express hostile views towards racial, ethnic or sexual minorities from participating.","infoSlide":"","division":"","tournamentID":"d0CBbRAyIQhiX69bWaKA","round":"3","link":"","topic":{},"id":"1oTBTYaaHNjdZN2Sdhkh"},{"content":"THW not allow sellers and service-providers to advertise their products beyond showing information and images that reveal technical product details.","topic":{},"round":"6","language":"English","tournamentID":"XnmecTVfWWNVfWZaANER","link":"","infoSlide":"","division":"","id":"1ot7p5VicpZ8SrlttGhm"},{"link":"","division":"","infoSlide":"","round":"5","tournamentID":"WcNueZiJXeg9z82dijdL","topic":{},"language":"English","content":"THBT criminal law should not distinguish an attempt to commit a crime from successfully committing a crime.","id":"1p2kCnryz9ulA6bqThkg"},{"content":"THBT it is an acceptably policy for the U.S. to spy on leaders of allied states.","topic":{},"division":"","link":"","language":"English","round":"2","infoSlide":"","tournamentID":"RautsrmlhwL2BBMyTRVG","id":"1p2wUiDzzgM1WM6yZSqG"},{"language":"English","division":"","tournamentID":"kReIJGsf14VAB0aHbDhJ","infoSlide":"","content":"Given a trade-off, THW direct environmental policy towards mitigation of climate change, rather than prevention.","topic":{},"link":"","round":"1","id":"1pSw0yhJtoUofjafo2T6"},{"language":"Vietnamese","topic":{"hr":{"check":true,"title":"Human Relationships"}},"infoSlide":"","content":"Chúng tôi tin rằng các cặp đôi nên chia tay khi đi du học thay vì cố gắng yêu xa.","tournamentID":"37eWQ7OoHqsPgaN53lHV","round":"","link":"","division":"","id":"1q6lLDXXg7Mc3Ltdym6M"},{"round":"4","link":"","language":"English","content":"THBT state schools should instil in children the belief that anyone can succeed through hard work, regardless of their background.","tournamentID":"0zMaoLN7qmzWGSYIzhjh","infoSlide":"","topic":{},"division":"","id":"1qvF3dAK26xZK0et5hHS"},{"content":"THW not have introduced a common European currency.","tournamentID":"EdTnzchhKzipTBRxQvXJ","division":"","round":"Open_Final","topic":{},"infoSlide":"","language":"English","link":"","id":"1rozWcWrkXD2J0nxajCn"},{"division":"","content":"THO the use of scientific discoveries obtained through unethical means.","language":"English","infoSlide":"","round":"Open_Final","topic":{},"tournamentID":"m6JzV67uYJSVBRpAbgL7","link":"","id":"1sItrt0qK7HXry7h2A5w"},{"division":"","content":"THBT African countries should adopt English as the principal language of instruction in schools.","round":"5","tournamentID":"WnH3YWwA4xB4HPfqIqea","infoSlide":"","topic":{},"language":"English","link":"","id":"1sROBgMQJas5EkZCstE9"},{"language":"English","division":"","round":"1","link":"","tournamentID":"3KT5cUfqBjWrhC0DWPAs","topic":{},"content":"THW ban marriage.","infoSlide":"","id":"1sjZW0YribGyMM9GCXwh"},{"division":"","topic":{},"tournamentID":"eypKKJZLZblnh6KffyC5","content":"This House Would refuse to buy Fair Trade.","language":"English","infoSlide":"","link":"","round":"5","id":"1tmQ7k6VrdjWUwQbrHR9"},{"infoSlide":"","topic":{},"division":"","link":"","round":"1","content":"THW ban religious schools.","tournamentID":"JA7aghUhZy7G7yhivxxG","language":"English","id":"1tqsf0KkyFXCh0bPXDIt"},{"topic":{},"tournamentID":"s6w7WZApDWnBBmzeKY4h","division":"","link":"","language":"English","infoSlide":"","content":"THR the increasing professionalization of youth athletics.","round":"1","id":"1tzpCi4a6yhzVcZuPO0B"},{"link":"","round":"ESL_Semis","language":"English","infoSlide":"","content":"Where resources are significantly limited, THBT states should actively promote religion in areas of high poverty.","division":"","tournamentID":"ChiU8yMbLI2Y2q5rwURP","topic":{},"id":"1uHyMBj0SNKYTjR2eX1Z"},{"division":"","content":"Assuming we are living in a world with superheroes, THW require all superheroes to obey the law.","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"tournamentID":"37eWQ7OoHqsPgaN53lHV","language":"English","infoSlide":"","link":"","round":"","id":"1uvkFaPe3xJ9ZDDRSMqY"},{"content":"THW out closeted LGBT sports stars.","topic":{},"tournamentID":"eBNO1FMsif7tzOa9LlnU","division":"","link":"","round":"2","language":"English","infoSlide":"","id":"1vCbAheO5whdtGMLdhB2"},{"division":"","topic":{},"tournamentID":"WcTEqzk0ckiyLGdszyy6","infoSlide":"","content":"THBT the international community has a duty to protect human rights, if necessary by military means, even in violation of the principle of national sovereignty.","link":"","round":"Open_Semis","language":"English","id":"1vJqC7roE4XZcXRsfKOv"},{"content":"“Utility factor” refers to the total, foreseeable impact on society produced by academic research. The utility factor is determined by the universities themselves. Motion:This House Supports the allocation of research funding in universities based purely on the utility factor of the research.","tournamentID":"1MV3spmbrmWLKhisZDU8","language":"English","link":"","division":"","round":"5","topic":{},"infoSlide":"","id":"1vcQufmgfEDz4xgKFQeQ"},{"tournamentID":"Wb0k9XSEirfd7kuffEGF","topic":{},"link":"","language":"English","infoSlide":"","division":"","content":"TH would ban private healthcare.","round":"1","id":"1vdHcgmezuWX0a3fWSmM"},{"topic":{},"infoSlide":"","link":"","division":"","tournamentID":"DfdqiFdfgcruP1pBNiHK","round":"9","content":"THBT the EU should make Serbian membership conditional upon Serbia’s acceptance of gay rights.","language":"English","id":"1wUi4pVmkJeFj6koAWEw"},{"infoSlide":"","link":"","tournamentID":"81tUVTFSIzBinbpptw4G","topic":{},"round":"4","content":"Assuming you lived a middle class life, THW choose to upload their consciousness to this technology.","division":"","language":"English","id":"1wg0Mtg7dKoNpMb0DmZU"},{"infoSlide":"","tournamentID":"9MaCpfb2p23wkk8OOSBf","topic":{},"division":"","round":"2","language":"English","content":"THBT progressives are justified in refusing to endorse Joe Biden until he adopts significantly more progressive policies in his campaign platform.","link":"","id":"1wuF3BNcljJdDt8eZII3"},{"link":"","content":"This House as the President of the United States would opt to destroy the alien ship.","infoSlide":"","tournamentID":"pp2oK2CPkxitjQPpwO4o","round":"Open_Final","topic":{},"division":"","language":"English","id":"1xRK22dkjgnKiztnHPNH"},{"tournamentID":"MqWoP2HpVv77T14aPCqR","content":"TH, as commissioner Gordon, would never use the bat signal.","round":"1","language":"English","infoSlide":"","division":"","link":"","topic":{},"id":"1xlPksdlZD2qrYqH7g7d"},{"content":"THW establish an independent 'prawn' state (District 9).","tournamentID":"UPn4syqdx9T0fJyHm2Ej","link":"","round":"3","topic":{},"division":"","language":"English","infoSlide":"","id":"1y4l0GE59bpmBfpYdfhZ"},{"link":"","language":"English","tournamentID":"Z9WBfg1yDJgSR34BGYp1","topic":{},"infoSlide":"In the universe of My Hero Academia, every person is born with a single, random superpower. The superpowers generally cannot be changed, transferred, nor removed, and vary in strength and utility from person to person.","division":"","round":"1","content":"THP a world where individuals are born with random superpowers to a world where no one has superpowers.","id":"1yrfGDZ1V163obpefBO5"},{"round":"3","tournamentID":"1lhrrHzfpU4TfWb63MLz","division":"","language":"English","link":"","infoSlide":"","topic":{},"content":"Should Incest be allowed?.","id":"1zSDeQEArCSKsVBV3mIN"},{"content":"In the case a human destroys the robots beyond repair, THW charge murder instead of property damage.","infoSlide":"In 2050, AI robots are able to replicate their appearance, conversation, and reaction to emotions of human beings. However, their intelligence still does not allow them to sense emotions and feelings such as pain, happiness and joy, etc.","division":"","link":"","language":"English","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"round":"","tournamentID":"nALUKfkpmOnWnQCzecru","id":"21EdoST3eD0SIqMDBYbb"},{"division":"","infoSlide":"","language":"English","topic":{},"link":"","tournamentID":"Ef5RtQo9Rr0nt7Nnhncq","round":"1","content":"Should bullfighting be forbidden?.","id":"21PQtxCNKXt4jhb5BKJ5"},{"link":"","round":"8","division":"","content":"This House, as Iran, Would resume its nuclear weapons program.","topic":{},"language":"English","tournamentID":"MKOx1AvBmfWL7cHrRXg2","infoSlide":"","id":"21TJ44bxNM827WoVS9hy"},{"division":"","infoSlide":"","round":"5","topic":{},"link":"","content":"THW ban any group or program that seeks to change someone's sexual identity.","tournamentID":"AZDyYLAFE8Mh41BShv5m","language":"English","id":"22AEd8z3r8NpRgnJwLgR"},{"link":"","topic":{},"tournamentID":"RPKNKQNkycR35T4aIzhw","content":"THW push the button (to end all life on earth).","infoSlide":"","language":"English","division":"","round":"5","id":"23cqhCEbXs25oL2uErad"},{"topic":{},"tournamentID":"u39lMiqXE91heMDxEgQe","content":"Chúng tôi phản đối trẻ vị thành niên tham gia các chương trình truyền hình thực tế.","division":"","link":"","language":"Vietnamese","infoSlide":"","round":"Grand Final","id":"23h8l76U9o4LmlrFEqhB"},{"topic":{},"language":"English","content":"This House would legalize commercial surrogacy for profit.","tournamentID":"0mv3ToZPy0AwAsRnpZBN","division":"","link":"","infoSlide":"","round":"Open_Partial_Double_Octos","id":"23mjRgCl3o9h5Cul2xsb"},{"infoSlide":"","content":"THBT religions should promise reward in the afterlife as opposed to promising material reward in this life, with both outcomes contingent on faithful practice.","round":"ProAm_Quarter","division":"","language":"English","link":"","tournamentID":"Pr7RhJp1TWbTZsqRvQt4","topic":{},"id":"24agU5KW4oazfEFiyAEf"},{"division":"","content":"It is February of the year 44 before Christ. THW, as Brutus, join the conspiracy group of Cassius that aims to murder Caesar.","round":"3","tournamentID":"NDBMTXQSiGk8gHdwlPou","infoSlide":"","language":"English","link":"","topic":{},"id":"24bqiaUENMAGgNWCGuyx"},{"round":"5","topic":{},"language":"English","division":"","link":"","tournamentID":"SGpBjVPnJkFrJB0hnxYv","infoSlide":"","content":"TH, as the Pope, would abolish the concept of Hell.","id":"24dEFPPDbI57iWd6b5bJ"},{"content":"THW break up Amazon.com, Inc.","round":"4","language":"English","infoSlide":"","division":"","topic":{},"tournamentID":"OyqUfVFCTQ5A8iecmNK1","link":"","id":"25yzOBlAnKygCR0p6VLV"},{"topic":{},"round":"3","tournamentID":"0bOkf8RbGJTfzpOQVOgY","content":"THBT states should never protect dying languages.","language":"English","division":"","link":"","infoSlide":"","id":"26a7w638SAZ52YQuK72I"},{"division":"","topic":{},"content":"THW require the use of a draft by lottery when engaged in extended military intervention.","infoSlide":"","tournamentID":"7bcIb5yS1YVpFE3hzoDf","round":"1","link":"","language":"English","id":"26mqIEkndxxofxtEJUPz"},{"topic":{},"tournamentID":"h373wn3dFw9UcWDcJpyy","infoSlide":"","round":"1.2","link":"","content":"Students should get their basic study grant back.","division":"","language":"English","id":"2732R8Hk3NkA4GvbVqv7"},{"division":"","infoSlide":"‘Gritty’ teen media describes TV shows, movies and other media aimed at teenagers, which have more adult themes (such as violence, sexual content, portrayal of mental health issues, etc.) than typical teen shows. It has become popular in recent years to reboot franchises previously aimed at children with these mature themes.","link":"","language":"English","round":"Junior Quarterfinals","content":"TH regrets the prominence of ‘gritty’ teen media (eg. Riverdale, the Winx Saga etc).","topic":{},"tournamentID":"JHo8pIpzQxzUKHUwVDFf","id":"27KM8gDCDDYcswVY9yCx"},{"round":"1","division":"","content":"Chúng tôi lấy làm tiếc việc những người trẻ như Greta Thunberg, Malala Yousfzai, ... trở thành biểu tượng của các phong trào xã hội.","infoSlide":"","topic":{},"tournamentID":"fBPBbh32BZ2p0Y1Fy5Yi","language":"Vietnamese","link":"","id":"27ZMXNToxvRZmlpFyUOo"},{"content":"THW use force to make peace.","language":"English","round":"1.3","infoSlide":"","link":"","tournamentID":"1leOvfvlbNAIDzW6UnkK","division":"","topic":{},"id":"27syK90dQDE08NYquzpL"},{"content":"THW forgive the group of young people who blew up a monument of Stalin in Ukraine.","infoSlide":"","tournamentID":"z4fwjDZ02juoVx4MeEih","round":"Open_Final","link":"","division":"","topic":{},"language":"English","id":"28EHVUlfWqqwiYeiAW2s"},{"division":"","round":"1","content":"THW abolish all corporate income tax.","language":"English","tournamentID":"PRCVo2dP9UPdRU9tVW31","topic":{},"link":"","infoSlide":"","id":"29ApZj4EKV6mO1uB38Vz"},{"content":"THR the humanisation of villains in film and media (eg Joker, Maleficient, Gru, Megamind, etc).","tournamentID":"DTutOgCItM4x30SyVavv","link":"","language":"English","division":"","topic":{},"round":"Open_Quarter","infoSlide":"","id":"29f1vL7P99E1KLzBLgYK"},{"link":"","topic":{},"round":"Open_Final","infoSlide":"","tournamentID":"uUwIAKIDo0apui0AqOxG","language":"English","content":"TH believes that the USA should never use the language of American exceptionalism.","division":"","id":"29hDPG72Hg2lI6ecFNW0"},{"topic":{},"content":"THW, when casting minority characters (e.g. racial minorities, LGBTs, people with disabilities etc.) would only cast actors from that same minority.","round":"2","infoSlide":"","link":"","division":"","tournamentID":"VWMKb2j3CmLwgnB7Jl4O","language":"English","id":"2Af4LTgRIYlf3otZF5pf"},{"topic":{},"round":"EFL_Semis","tournamentID":"pvKZkg6sqicG5nXA2mvY","link":"","division":"","language":"English","content":"THBT the gay rights movement should abandon the claim that sexuality is not a choice.","infoSlide":"","id":"2AivRLk0IbP56PNGRzrO"},{"content":"THBT states should actively attempt to make contact with Uncontacted Peoples and provide them with modern medicine and technology.","language":"English","division":"","infoSlide":"","round":"5","topic":{},"link":"","tournamentID":"Fu8k3vJxi4iJsdZw9d7j","id":"2C8z9EiZsM8fyRsGnCYb"},{"link":"","round":"4","division":"","topic":{},"infoSlide":"","language":"English","tournamentID":"DFNWZhapl7SHDFBrFsMi","content":"This house believes that Israel should have continued the occupation of Gaza.","id":"2CwM3bbynTXHRmDXMSl1"},{"division":"","topic":{},"link":"","infoSlide":"","content":"THW create a nation for X, where X is defined by OG as a specific demographic.","round":"Open_Semis","language":"English","tournamentID":"AZDyYLAFE8Mh41BShv5m","id":"2DQsrxx6oGjuA6AB1pUG"},{"language":"English","round":"Open_Final","link":"","division":"","content":"Given the choice, THBT US Supreme Court Justices should be elected by a vote among federal judges rather than a popular vote.","topic":{},"infoSlide":"","tournamentID":"Vis5yhSVMHubvgdJTwP1","id":"2E4exFnRM5zVpT784x6O"},{"language":"English","division":"","round":"1","link":"","topic":{},"content":"TH supports the creation of wethouses.","infoSlide":"","tournamentID":"ti8CFKwd5Fq6RHmrGph0","id":"2EyHusm9x5JXieMyqE1p"},{"content":"THP a world where humans cannot perceive aesthetic beauty.","language":"English","division":"","tournamentID":"cTxMF0myfwbQDPdL8Ral","infoSlide":"","round":"Open_Final","link":"","topic":{},"id":"2F5z3WrjFUGDts4MPVX4"},{"infoSlide":"","language":"English","link":"","tournamentID":"ChiU8yMbLI2Y2q5rwURP","round":"1","division":"","topic":{},"content":"TH opposes the attempts by the feminist movement to redefine roles and behaviours traditionally associated with women (e.g. wanting to be a housewife, wearing make-up and heels) as empowering.","id":"2Fp6i7EaIfFAqGb8IgdG"},{"division":"","tournamentID":"92dIEXeOXUVvlcFeGCIr","round":"Open_Partials","language":"English","topic":{},"content":"TH regrets mainstream, commercial films that depict historical subjugation and/or crimes against humanity.","link":"","infoSlide":"","id":"2GHIfcFBy71V0emulPHA"},{"round":"7","division":"","topic":{},"tournamentID":"VAfi19aZTAIKaUuELBL1","content":"TH, as the European Union, would introduce defence mechanisms agains anti-EU parties.","link":"","infoSlide":"","language":"English","id":"2GjOWrruOUv9AQfV9hZI"},{"tournamentID":"uqR5rN63m5rX9CiOtJjb","division":"","content":"Trong một thế giới mà công nghệ biến đổi gen đã được nghiên cứu thành công (có thể chữa bệnh hiểm nghèo hoặc thay đổi tích cực thể trạng con người), chúng tôi sẽ chỉ cho phép sử dụng công nghệ này trong đời sống khi đại bộ phận dân số có đủ điều kiện để chi trả.","infoSlide":"","topic":{},"language":"English","link":"","round":"3","id":"2HgFypH1ITj0FP8lZZRt"},{"tournamentID":"1lhrrHzfpU4TfWb63MLz","link":"","content":"Should we buy armed drones?.","language":"English","round":"Open_Final","division":"","topic":{},"infoSlide":"","id":"2IECizAKE0UmzsFBauRo"},{"link":"","content":"THO all media and literature that romanticizes mental illness.","language":"English","division":"","infoSlide":"","topic":{},"round":"4","tournamentID":"15hrO4GoCxXF2OIdl7fS","id":"2IMzfn66MnZwICuQbLwj"},{"division":"","topic":{},"link":"","round":"3","tournamentID":"jGziThakECOfXgvs0uHl","language":"English","infoSlide":"","content":"THBT Mexican state should create a list of known members of drug cartels and outlaw everyone on it.","id":"2IlDOZmQk12ayYfvmrdd"},{"link":"","infoSlide":"","topic":{},"round":"Open_Final","content":"THBT education systems should indoctrinate children to believe they are personally culpable for the death and suffering in the developing world.","division":"","language":"English","tournamentID":"puG4GbGRMRGTQ4eS4GHp","id":"2ImcTJu3DG5COVpmxCQK"},{"topic":{},"content":"THBT the West should place a ban on providing military aid to authoritatian regimes.","link":"","language":"English","infoSlide":"","tournamentID":"S2mG18EWYdh2bPEadyd9","round":"4","division":"","id":"2IopEwzOiBd4xZUJvnto"},{"tournamentID":"WnH3YWwA4xB4HPfqIqea","language":"English","topic":{},"division":"","round":"Open_Final","infoSlide":"","content":"THBT it is the Moral Imperative of Liberals within Eastern European countries to stay within their Home Country rather than Emigrate to More Progressive Countries.","link":"","id":"2It20qSY0oGcsNNjzuUj"},{"topic":{},"round":"4","content":"THW transfer complete strategic control of the NHS to a body of experts, appointed by experienced medical practitioners and not accountable to Parliament.","language":"English","link":"","division":"","infoSlide":"","tournamentID":"AKtcioaPMHcBM5C3fCCP","id":"2J56MkrkkeBcG2ZAIqNF"},{"content":"THW wipe the memories of those convicted very serious crimes and replace them with more positive memories.","link":"","division":"","language":"English","tournamentID":"7lMrN2aiwSzD5rzPFwHz","topic":{},"infoSlide":"","round":"4","id":"2J7wHNM8zhJBvDyEF0hE"},{"language":"English","division":"","tournamentID":"9yPqE2fe1oaHsd7ankOa","round":"1","infoSlide":"","topic":{},"content":"THBT it is morally justified for individuals to evade inheritance tax.","link":"","id":"2JWN5wy66RMftxVrFO4T"},{"infoSlide":"","link":"","division":"","tournamentID":"efp9mMZFiy8fVwkom17I","round":"4","language":"English","content":"THP a world where nobody can lie.","topic":{},"id":"2Jbdem9ynLtz1whM4yVH"},{"content":"THBT the international community should regard the USA as a rogue state if it leaves or does not abide by the Paris Climate Agreement.","topic":{},"infoSlide":"","division":"","language":"English","round":"5","link":"","tournamentID":"53fI8Yf0j74CAnSOjn9g","id":"2KCBeoaX3cinzZCleyZp"},{"content":"THBT a man who dies rich is a man who dies disgraced.","round":"Open_Semi_1","division":"","language":"English","tournamentID":"M5Wyeo5Nqh8J5u0z1RQf","topic":{},"infoSlide":"","link":"","id":"2L2jOO16JKQUV0MLamtd"},{"content":"THBT Indonesia's state-owned enterprises should solely focus on distributive function (i.e. distribute services, provide job) even at the expense on revenue generation.","round":"Open_Final","tournamentID":"DV29K6gIIl6nTiYeWo2j","language":"English","division":"","infoSlide":"","link":"","topic":{},"id":"2L8XhSSlCacTkWVYRdaM"},{"round":"Open_Semis","topic":{},"infoSlide":"","language":"English","content":"THW ban political parties that propagate racism and xenophobia.","link":"","tournamentID":"zm3L9uKWbGV2QY1WRlcJ","division":"","id":"2NJ7Hrgl73curO5SE6An"},{"round":"2","topic":{},"tournamentID":"7abz3Ipf2RhGUArcqBwg","link":"","infoSlide":"","content":"Should all people be required to take a vaccination against human gene mutation (of the X-men variety) after birth?.","language":"English","division":"","id":"2NLW7L8rHJpAAMuO2O66"},{"language":"English","tournamentID":"lFdTm9Bd7AxKRkVImhbS","content":"THW make it a criminal offence to materially and substnatially enable the substance abuse problems of an addict.","infoSlide":"","division":"","topic":{},"link":"","round":"2","id":"2NTWW3Hst8M73uraahRC"},{"tournamentID":"lPXoAGmpaSNRUUBSEwTy","language":"English","topic":{},"infoSlide":"","content":"THW ban single sex schools.","link":"","division":"","round":"1","id":"2NWE3vVDwBpr0ibvSGWX"},{"division":"","infoSlide":"","tournamentID":"vIcSl55fwy2uPdlGUXsg","round":"2","topic":{},"content":"THBT national central banks should set limits on government spending.","link":"","language":"English","id":"2ODDMFTRrtH7w2qquVWu"},{"topic":{},"tournamentID":"FcQa3EO91Xucj4ACR1Wb","language":"English","content":"Assuming that the technology existed, THW erase history from our collective memory.","division":"","link":"","round":"Open_Final","infoSlide":"","id":"2OJpSKKwyebR6MMjrPut"},{"link":"","infoSlide":"","division":"","topic":{},"round":"5","language":"English","content":"THBT the news media should also represent the criminal’s point of view when reporting on criminal convictions.","tournamentID":"8QddgLiIoLsA9YscCujR","id":"2OfiUcu8woE8OLi9TtF0"},{"division":"","topic":{},"round":"2","infoSlide":"","language":"English","tournamentID":"2b9xHhyeUjald2Iu585W","link":"","content":"THW make access to museums art exhibitions concerts etc. attractions free for people earning less than a certain wage.","id":"2OhNgjyUcsbln79nMIQ7"},{"topic":{},"round":"Semifinals","link":"","infoSlide":"","division":"","language":"English","tournamentID":"7eFEPGI7iZMY9BTHG43T","content":"THBT medical service workers should be paid salaries in the highest income decile (e.g. the top 10%).","id":"2QcvCtGiT8Jd86okxW5F"},{"infoSlide":"","division":"","language":"English","round":"Novice_Final","link":"","topic":{},"content":"THR the Goldwater Rule.","tournamentID":"FISzpNaGZKCHkhtDdzPp","id":"2R6hTKlEToFJHDYFvIlA"},{"content":"THBT current day’s political correctness does more harm than good.","tournamentID":"VAfi19aZTAIKaUuELBL1","division":"","topic":{},"round":"Open_Final","link":"","language":"English","infoSlide":"","id":"2RA7kAH2VnCIqmHqnxEj"},{"infoSlide":"","language":"English","content":"THBT it was in the interest of the UAE to reject the Israel-UAE peace deal.","division":"","round":"Open_Final","link":"","topic":{},"tournamentID":"ltPXjwYNooGAx72v9bz6","id":"2RCBddCmN1DzLwsQTU8z"},{"tournamentID":"yIBeLUbSZELobFcw30WY","content":"THW pay developing countries to not exploit natural resources in environmentally sensitive regions.","link":"","round":"5","language":"English","division":"","topic":{},"infoSlide":"","id":"2RFCIAAkUYHW8NHIAxB8"},{"division":"","content":"THW ban equality movements focusing on one group only.","infoSlide":"","topic":{},"tournamentID":"DLFJWaIyHnSlvFofovjc","round":"4","link":"","language":"English","id":"2S69bp7elIiJ5xWtwf1C"},{"language":"English","topic":{},"content":"THBT feminist movements should mobilise masculinity in service of feminist goals (e.g. \"real men respect women\") rather than deconstruct it (e.g. raising awareness to the issue of toxic masculinity).","link":"","division":"","round":"3","infoSlide":"","tournamentID":"bTRRi7oLbaQA5e1qz6Qc","id":"2SdbxxaemIgMWqzvclkR"},{"infoSlide":"","link":"","language":"English","division":"","tournamentID":"yKZ612WqYq5uAuH9PAZI","topic":{},"content":"THBT social disgust is a sufficient justification for censoring art.","round":"1","id":"2SoLQldzrwAv76HTi42o"},{"division":"","topic":{},"link":"","language":"English","round":"2","infoSlide":"","content":"THW set legally binding minimal physical parameters for fashion models.","tournamentID":"aT0uKXAE6J8EslDVKzO1","id":"2TEJdprFM9PL7a74ylIk"},{"content":"This House would temporarily and significantly relax minimum labour standards in times of unusually high unemployment, including workplace health and safety standards, minimum wage, working hours restrictions etc.","link":"","tournamentID":"t1jiRXU99xeGdoIkTeyF","round":"9","language":"English","infoSlide":"","topic":{},"division":"","id":"2TXApPTKlk9fD4qcxAR2"},{"topic":{},"link":"","infoSlide":"","content":"THW pay politicians the median wage in their country.","round":"6","division":"","language":"English","tournamentID":"MNBafFvHXt5WwIet1zGa","id":"2TY4lu5Gw30fLDU6Q4Hm"},{"topic":{},"division":"","round":"2","tournamentID":"d2f6RXp0B99iQq4RFZeE","content":"THW not give development aid to authoritarian countries.","language":"English","link":"","infoSlide":"","id":"2UHtvbt7EmLKAPnWrj3F"},{"division":"","content":"This house believes that we should exclusively fund political parties through public funding.","link":"","topic":{},"round":"1","infoSlide":"","tournamentID":"bxhnmh9CZq21XJcRU2BX","language":"English","id":"2Ug0IH5fK4y2thWizHU8"},{"infoSlide":"","language":"English","division":"","tournamentID":"Jl23y0GShc9Ja7NTPZJw","round":"5","topic":{},"link":"","content":"This House Would introduce Proportional Representation in UK general elections.\".","id":"2VngPIAvvTrF3lnUo2Jf"},{"link":"","infoSlide":"\"Người tốt việc tốt\" đề cập đến những câu chuyện người thật, việc thật mang lại những lợi ích to lớn và quan trọng cho các cá nhân và cộng đồng.","division":"","content":"Chúng tôi lấy làm tiếc về sự ca ngợi \"người tốt việc tốt\" trên mạng xã hội.","round":"1","tournamentID":"i00RSzvK4b1TDEgnpFJd","topic":{},"language":"Vietnamese","id":"2W41Zw4mIPp2plvBurQV"},{"division":"","content":"This House prefers benevolent dictatorship to weak democracy.","infoSlide":"","tournamentID":"0mv3ToZPy0AwAsRnpZBN","topic":{},"link":"","language":"English","round":"Open_Semis","id":"2WFbqsmy9epABzcywA5k"},{"round":"Open_Final","tournamentID":"jGziThakECOfXgvs0uHl","language":"English","topic":{},"infoSlide":"","division":"","link":"","content":"THW only drill for gas in areas where the population has consented through a local referendum (inspired by recent opposition to gas drilling in Groningen).","id":"2WTIH6OLD5MEhvbChbxJ"},{"division":"","topic":{},"infoSlide":"","tournamentID":"bcb5yQt6p8cx9SACsvYL","link":"","language":"English","content":"THW ban all further research into artificial intelligence that can independently learn and develop.","round":"Open_Finals","id":"2WUn2qyodIvYaiPZrK5F"},{"topic":{},"content":"THW give house arrest for non-violent offenders.","division":"","tournamentID":"BXqPhfwak2R1kYHV48bp","round":"6.3","language":"English","infoSlide":"","link":"","id":"2Y4hUPKnHg6mKf17vFdQ"},{"division":"","infoSlide":"","link":"","topic":{},"round":"3","tournamentID":"AsoDjVHcLSyKMQmLkB7S","language":"English","content":"THBT the gay rights movement should abandon the claim that sexuality is not a choice.","id":"2Ypo1MUV9YVwW9dV6HF1"},{"round":"10","tournamentID":"0DgXee32WEP3hxmGZExS","language":"English","link":"","infoSlide":"","topic":{},"content":"THW abolish all laws prohibiting cruelty to animals.","division":"","id":"2YtWAuh4wDpPwsG4cxDH"},{"tournamentID":"FiF24Yc0spiBkvTxiYwD","content":"Chúng tôi phản đối các bộ phim có chủ đề “Dark Technological Future”.","infoSlide":" “Dark Technological Future” là đề tài chủ yếu được khai thác và lột tả trong season 3 của Black Mirror. Black Mirror season 3 mô phỏng cuộc sống con người trong tương lai, với các trang thiết bị phục vụ tối ưu nhưng con người sẽ đối mặt với nhiều vấn đề. Các tập phim xoay quanh chủ đề những mặt tối của công nghệ cùng với ảnh hưởng xấu của chúng lên hành vi con người.","link":"","language":"Vietnamese","division":"","round":"Quarterfinals","topic":{},"id":"2Z6ArCvFgir85b4Wvgso"},{"language":"Vietnamese","link":"","content":"Chúng tôi sẽ áp đặt trách nhiệm hình sự lên những cá nhân không hỗ trợ một người đang gặp nguy hiểm dù việc hỗ trợ sẽ không khiến họ gặp nguy hiểm nghiêm trọng.","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"infoSlide":"","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","division":"","round":"1","id":"2ZnJgFrqli60LD2L16t7"},{"topic":{},"infoSlide":"","content":"This house would support regime change in Myanmar/Burma.","tournamentID":"VPUCPVj9FHFW0uzJinv0","language":"English","link":"","division":"","round":"7","id":"2a730n6qGXs8rnlcePMP"},{"content":"That we would allow political parties to make binding electoral promises that, once broken, will immediately trigger re-election.","language":"English","round":"1","tournamentID":"1bHNYzF6GWRqdpr3f5vt","topic":{},"division":"","link":"","infoSlide":"","id":"2aMs6uTidVih5vzZC9nT"},{"division":"","content":"This house believes that Eastern European states should destroy monuments from their Soviet Union period.","round":"Open_Final","link":"","topic":{},"tournamentID":"PhJT1xhigiWcZot2PdLn","language":"English","infoSlide":"","id":"2aPzEgzni0D0dHTVxGFZ"},{"division":"","content":"THW promote pornography that challenges gender cliches.","language":"English","tournamentID":"FJoy56lyo9s1SqE3RvFO","topic":{},"round":"Open_Final","infoSlide":"","link":"","id":"2bLstF3qfgClk9Zpg5py"},{"language":"English","division":"","round":"2","tournamentID":"bcb5yQt6p8cx9SACsvYL","topic":{},"content":"THW not allow workers to renounce their employment rights (e.g. holiday pay, defined working hours, sick pay, minimum wage) in return for work experience or financial benefit.","link":"","infoSlide":"","id":"2bqujhkdyfsk0tOdx4NJ"},{"division":"","infoSlide":"","link":"","content":"In emerging democracies, this house would break up persistently dominant political parties.","tournamentID":"kqAjVyDOCBYWRYze158e","language":"English","topic":{},"round":"Open_Semi","id":"2btlEfe7BehrknTGqzXJ"},{"content":"TH believes that the US Government should provide significant campaign funding for congressmen and senators who score highly on bi-partisan metrics*. *Scores derived from instances of voting with the other party, co-sponsoring bills, etc., calculated by independent bodies.","tournamentID":"hY7icY7k8fuatysSqMFr","link":"","round":"2","division":"","topic":{},"language":"English","infoSlide":"","id":"2c4nfS4Zifu0509oKzDC"},{"tournamentID":"wYsVMTqiPYP1HFjzExu2","division":"","content":"THBT each country has a duty to limit population growth.","round":"5","language":"English","link":"","topic":{},"infoSlide":"","id":"2c5RttxoWJsrxM44NzKs"},{"language":"English","round":"2","link":"","division":"","content":"THW make lying by politicians punishable by law.","topic":{},"tournamentID":"MPR74LYpg8Ru6paM45U9","infoSlide":"","id":"2cGpYs8xrWDU9bdTPR3n"},{"link":"","infoSlide":"","round":"Open_Quarters","tournamentID":"fIr3uLdOpGeGuZzpnEMf","language":"English","topic":{},"content":"THB the Irish state should pay reparations to all female citizens who lived during the period in which Magdalene Laundries were operational.","division":"","id":"2cTGaAcAYf8D40qLDPka"},{"link":"","division":"","round":"Open_Final","language":"English","tournamentID":"0mv3ToZPy0AwAsRnpZBN","content":"This House supports restrictions on free speech to combat the rise of right-wing populism.","topic":{},"infoSlide":"","id":"2cf2zVuDi43hgbBGyIwX"},{"topic":{},"round":"Open_Final","infoSlide":"","link":"","content":"THW make failure to render reasonable assistance to a person in distress a criminal offence.","tournamentID":"MyZkPsGPMuQ4XmFzJLVW","division":"","language":"English","id":"2dN6wCVsJQ1kn55U71Hl"},{"infoSlide":"","round":"4","content":"THW make government assistance to historically marginalized cultural groups contingent on policies to combat traditional gender inequality.","division":"","topic":{},"link":"","language":"English","tournamentID":"LczIO0anMv6dKnbpRYYr","id":"2dVhKr5aOyykeZgtfMvI"},{"link":"","language":"English","division":"","infoSlide":"","content":"THBT individuals should have the right to remove photos of themselves published without their permission, and sue for damages.","topic":{},"round":"3","tournamentID":"0NYsqnVN9ZPLLJvXAZdI","id":"2dY2wCoveDGmD7whN616"},{"topic":{"fiction":{"check":true,"title":"Fiction"}},"round":"Grand Final","division":"","infoSlide":"","content":"Chúng tôi tin rằng thế giới sẽ tốt hơn khi việc nghiên cứu, ghi chép và giảng dạy lịch sử tập trung vào nghiên cứu cuộc sống của những con người bình thường thay vì của các nhà lãnh đạo quan trọng trong xã hội.","tournamentID":"Wpv6iXJkIPUXYIkl0dST","link":"","language":"Vietnamese","id":"2dtPbP39uJFgRma7HNfA"},{"division":"","topic":{},"round":"2","content":"THS using social media platforms to depict stories from the Holocaust.","infoSlide":"","tournamentID":"TMUPfAyolz9JkKMmWlLC","link":"","language":"English","id":"2eIp0wGJQNs8UQA8XRye"},{"language":"English","link":"","infoSlide":"","topic":{},"round":"2","tournamentID":"fYRQ3gsDALGgMYQf58zt","division":"","content":"THR THE PHENOMENON OF SENSITIVITY SCREENING.","id":"2eUTW0YvF0GjJgK9jzsF"},{"tournamentID":"JA7aghUhZy7G7yhivxxG","infoSlide":"","content":"TH regrets the bombing of Japan in Worldwar II.","division":"","language":"English","round":"Open_Final","link":"","topic":{},"id":"2f8GF9eSnQLVERX94lAb"},{"tournamentID":"JaZQ7l5B4R6smBKTdFQJ","round":"Grand Final","division":"","language":"Vietnamese","topic":{},"infoSlide":"Bộ tứ kim cương (còn được gọi là Đối thoại Tứ gia an ninh/The Quad) là một diễn đàn chiến lược không chính thức giữa Ấn Độ, Hoa Kỳ, Nhật Bản và Úc, được duy trì bằng các hội nghị thượng đỉnh bán thường xuyên, trao đổi thông tin và diễn tập quân sự giữa các quốc gia thành viên.","link":"","content":"Chúng tôi tin rằng Ấn Độ nên rút khỏi bộ tứ kim cương do Mỹ khởi xướng.","id":"2fE6BiHFsvOEQPoNzANw"},{"infoSlide":"Có một loại công nghệ cho phép mọi người mua bán các đặc tính cá nhân như trí thông minh, vẻ đẹp ngoại hình, sức bền, v.v. Với sự đồng ý của hai bên mua bán, công nghệ này sẽ chuyển giao đặc tính từ người bán sang người mua. Khi đã bán một đặc tính nào thì không bao giờ có thể lấy lại đặc tính đó.","topic":{"philosophy":{"check":true,"title":"Philosophy"}},"language":"Vietnamese","round":"","link":"","tournamentID":"KE7jdAyW9az9nKVb9FMV","division":"","content":"Chúng tôi sẽ sử dụng công nghệ này.","id":"2gWNzhmOsjvHTXz87HBO"},{"content":"TH, as a public educational institution, would prohibit all school football programs due to the risks of CTE.","language":"English","round":"5","tournamentID":"axWwnyCM8L14pVHljukt","topic":{},"infoSlide":"","division":"","link":"","id":"2iC5yTuFws253HVcvKHA"},{"infoSlide":"Trong phim tài liệu The Social Dilemma, những chuyên gia đã nghỉ việc từ Facebook, Google, Twitter, Instagram, Pinterest,.. đưa ra cảnh báo cho người xem về chính những hệ thống mà họ xây dựng.","content":"Giả sử công nghệ cho phép, chúng tôi, với tư cách các công ty công nghệ, sẽ xóa ký ức của nhân viên về khoản thời gian làm việc trước khi họ nghỉ việc.","division":"","topic":{},"round":"4","link":"","tournamentID":"FiF24Yc0spiBkvTxiYwD","language":"Vietnamese","id":"2iTi6wzt1fVz0grOADeT"},{"link":"","division":"","language":"English","tournamentID":"OqjcHyR2p27nlpvjQ5oq","infoSlide":"","round":"5","topic":{},"content":"TH opposes the search for a cure to autism.","id":"2iynzdPd8FPmGaPAnox4"},{"link":"","round":"Open_Final","topic":{},"division":"","tournamentID":"xixMAepJqW9TAZSYVdsR","content":"THR the concept of martyrdom.","infoSlide":"","language":"English","id":"2jSDFtG4DoX9dMDJctox"},{"content":"Chúng tôi ủng hộ thế giới mà chính quyền đưa tiền cho các cá nhân để họ có thể tự do lựa chọn các con đường học tập của bản thân (bao gồm nhưng không giới hạn lựa chọn về trường, các học viện tư nhân và gia sư) thay vì đầu tư vào nền giáo dục công lập.","language":"Vietnamese","link":"","division":"","round":"","topic":{"education":{"title":"Education","check":true}},"tournamentID":"nALUKfkpmOnWnQCzecru","infoSlide":"","id":"2kCAbNNAnQI4VW2rUMQA"},{"round":"4","tournamentID":"Sf5YtAJo1vVmULRLSMAt","infoSlide":"","content":"THBT governments of developing countries should aggressively disincentivize students from pursuing further education overseas.","topic":{},"link":"","language":"English","division":"","id":"2kqHWJ9iQ019qBHkXC2j"},{"division":"","tournamentID":"4AUWV6dX7gzPml1BbN5u","round":"5","infoSlide":"","topic":{},"content":"THBT The New York Post shouldn't have published the photo (edit: showing a man about to be overrun by a metro and die).","language":"English","link":"","id":"2lM81jKNrM9XSH3GNbVR"},{"content":"THW immediately lift all sanctions on Iran.","infoSlide":"","language":"English","tournamentID":"013M8EetYEKwpGlokURQ","topic":{},"link":"","division":"","round":"Open_Final","id":"2lOzbWcOoW1alH9LtXEU"},{"content":"THBT Western foreign policy should seek to prevent China's acquisition of Africa's natural land and resources.","topic":{},"tournamentID":"xQkVRRUcXZJgGzxXZ2t0","language":"English","division":"","link":"","round":"Open_Semis","infoSlide":"","id":"2mdVB20r4wa20EfuG3ac"},{"infoSlide":"","content":"That it is in the interest of the Indian state for AAP to form a coalition with the INC to contest in upcoming general elections.","division":"","language":"English","round":"Open_Semi","topic":{},"link":"","tournamentID":"1bHNYzF6GWRqdpr3f5vt","id":"2n9dWNj8w5ZWkUnXGxxq"},{"infoSlide":"","tournamentID":"xFs2K66Nme7uYTCMS6Vw","round":"1","topic":{},"content":"THW ban single sex schools.","language":"English","link":"","division":"","id":"2o9jbNdh6L40ZpRGqv0W"},{"division":"","content":"THBT student unions should never campaign for the censorship of controversial speakers.","round":"2","link":"","topic":{},"infoSlide":"","tournamentID":"ZvEJb11Ww6RpoVmg4QV3","language":"English","id":"2oODSO2O9fFlOiS0ZZ0c"},{"division":"","tournamentID":"EP5HDm4G3OfMlciId6YM","round":"8","topic":{},"link":"","infoSlide":"","language":"English","content":"This House believes that the United States should disengage from Syria.","id":"2pn3qYC9cFkkfPtg5LmM"},{"tournamentID":"pgslzxqwnT5Ei6UMGh69","link":"","round":"4","content":"This House Regrets the increased prevalence of hostile architecture.","infoSlide":"","division":"","topic":{},"language":"English","id":"2qVE3HvUkWrN0sZrYCR2"},{"round":"5","division":"","link":"","language":"English","tournamentID":"JTOMyeCSk6IujHBgAOMi","infoSlide":"","topic":{},"content":"TH (as debate couple) would encourage its kids to debate competitively.","id":"2rG1QwyQ4noV2QWVmOAQ"},{"infoSlide":"","content":"THBT religious leaders should not endorse candidates for political office.","division":"","language":"English","topic":{},"link":"","round":"Open_Finals","tournamentID":"euj80C6nkxdgEhkTaI0g","id":"2rbNEVUqqIWB608gLNBB"},{"language":"English","link":"","topic":{},"round":"Open_Quarter","content":"Assuming neither standard is upheld in the status quo, THBT society should aim towards becoming a meritocracy as opposed to a society where people are treated equally regardless of merit.","tournamentID":"s6w7WZApDWnBBmzeKY4h","infoSlide":"","division":"","id":"2rx8RqAr9pvLWUdWHFXG"},{"infoSlide":"","link":"","topic":{},"content":"It is 1990 shortly before German reunification. THW, as the Bundesrepublik Deutschland, select the DDR anthem “Auferstanden aus Ruinen” (Risen from Ruins) as the new national anthem for a reunited Germany.","language":"English","division":"","tournamentID":"NDBMTXQSiGk8gHdwlPou","round":"Open_Final","id":"2s1eoH2tU5YaKdqjJKDF"},{"infoSlide":"","topic":{},"language":"English","round":"2","tournamentID":"eypKKJZLZblnh6KffyC5","link":"","division":"","content":"This House would abolish the concept of intellectual property.","id":"2sstkkTp02pLxleqT2ex"},{"language":"English","round":"2","tournamentID":"r7L7x15Ixt9qEWgdPZ6u","infoSlide":"","link":"","topic":{},"division":"","content":"TH, as the EU, would impose sanctions on Poland for breaching democratic principles.","id":"2t7WmkOMVRr2vJdAEXIq"},{"content":"THW delicense corporations that do not engage in social responsibility proportional to their profit margins (e.g. campaigns to end hunger in a community, giving away portion of profit to charity, implementing more environmentally friendly business operations etc.).","tournamentID":"Wg2225mgODwBGF4GMBLR","language":"English","infoSlide":"","topic":{},"division":"","link":"","round":"Open_Final","id":"2txaEWFTqw2tWneMAeZr"},{"infoSlide":"","language":"English","round":"Open_Octa","content":"THW require all research institutions to use at least 50% of their resources (time, staff, money, etc.) to do replication studies.","topic":{},"link":"","division":"","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","id":"2uBs1PXnQK0TY2Y1a8lN"},{"tournamentID":"DTutOgCItM4x30SyVavv","link":"","content":"TH, as a parent from a middle income family, would adopt free range parenting.","language":"English","division":"","topic":{},"infoSlide":"","round":"Junior_Semi","id":"2vv6utyFpvXxpr2piu5B"},{"infoSlide":"","language":"English","content":"TH, as Edward Snowden, regrets publishing the NSA files.","round":"3","tournamentID":"PEAicxOTn0uGyCAGiXLX","link":"","topic":{},"division":"","id":"2w5OlSZrfcBZOb5s4kSj"},{"language":"English","link":"","tournamentID":"CBVZREYhjV5bhCHOuWjU","topic":{},"content":"THS the use of adversity scores in college admission exams.","round":"3","division":"","infoSlide":"An adversity score is score applied to a students standardized college admissions exam (SAT, ACT, ATAR, etc.) that measures a students adversity based on a number of criteria including but not limited to: race, income, crime rate in their area, parents education, quality of their school and others.","id":"2w6Rfhs4qyxroXuaxNsD"},{"division":"","infoSlide":"","tournamentID":"9WoIT6ofG5A9j3MeLxh4","language":"English","link":"","content":"This House believes that the state should curb assortative mating* (*the phenomenon of people primarily entering relationships and building families with those of similar social and economic characteristics).","topic":{},"round":"Open_Final","id":"2xXLuay5cpxzibak0Vnm"},{"round":"ESL_Finals","tournamentID":"q7pvo4zkG31lg89ofmeq","infoSlide":"","content":"THBT liberal democracies that overthrow the governments of other states should impose power-sharing, even when this severely overrides or delays democratic representation.","division":"","language":"English","link":"","topic":{},"id":"2xjJKMQ5YVaZrLArzjPC"},{"infoSlide":"","content":"THW ban the purchase of urban, residential real estate by foreign investors.","division":"","round":"5","language":"English","link":"","tournamentID":"SIrskBVMCwGNCZibcnP1","topic":{},"id":"2z6yVQ3o2GoybUdPxo3l"},{"tournamentID":"keyU5X5APEvFXLaZwxeM","division":"","language":"English","content":"THBT Conservative MPs should not have been given a free vote on the Marriage (same sex couples) Bill.","round":"4","infoSlide":"","link":"","topic":{},"id":"2zmqxaFs59nUbLCPSmlB"},{"language":"English","link":"","division":"","tournamentID":"6j3LrbKUgx9arVygXUjf","infoSlide":"","round":"6","content":"THW require participants of institutions from former colonial powers to pay higher registration fees when attending large-scale international events (such as academic conferences, sporting events, debate tournaments, etc.).","topic":{},"id":"30BFfPu6O15gM6aTcj2T"},{"infoSlide":"","round":"3","content":"THW grant tax cuts to large foreign investors.","link":"","tournamentID":"bWRhS5k8Iv19aHOMEz5C","language":"English","topic":{},"division":"","id":"30Mq42fi25AxBlmqGkzB"},{"tournamentID":"D6zNi4CBrpZnwXUgBuKG","language":"English","link":"","division":"","round":"5","infoSlide":"","content":"That governments in democracies should not control the school history curriculum.","topic":{},"id":"30uxNNwzllM7L2FdMQHd"},{"topic":{},"tournamentID":"nFeuKMAFpK6Amwi6OMai","round":"4","content":"Should Germany disarm completely?.","link":"","infoSlide":"","division":"","language":"English","id":"30vWCaFNkv6AS9RrGHVd"},{"tournamentID":"Z9WBfg1yDJgSR34BGYp1","division":"","round":"Semifinals","content":"TH, as Togashi, would choose to outsource the art of HxH and instead focus on completing the story.","infoSlide":"Yoshihiro Togashi is one of Japan’s most famous mangaka, best known for both writing and illustrating the Yu Yu Hakusho and Hunter x Hunter series, which have sold over 100 million copies in Japan to date. Since 2006, Togashi has become infamous for taking numerous lengthy hiatuses while creating HxH. This was due to several factors, such as illness and lower back pain, but it is also speculated that his slow output is because he is a perfectionist that wants to do everything himself. Recently, Togashi has broken his record for length of hiatus (almost 2 years!) for HxH.","language":"English","topic":{},"link":"","id":"32AYFvLVTeDUOrEgFSmX"},{"round":"3","link":"","topic":{},"content":"THBT men should take no active role in the womens liberation movement.","tournamentID":"UT720iaDHtta4VRkpcnp","infoSlide":"","language":"English","division":"","id":"32uqc04rQ9oTXCzSsPak"},{"language":"English","infoSlide":"","topic":{},"tournamentID":"kveNSL63Zo9kOYIUJlW2","round":"2","content":"Should Members of Parliaments be allowed to have family members as employees?.","link":"","division":"","id":"33VSDcsH78ulq5xRoQMI"},{"round":"4","division":"","content":"THW Ban research on genome editing.","topic":{},"language":"English","link":"","tournamentID":"m357g5mmEMxSAwbDEk5d","infoSlide":"","id":"34JRmmsZUdUpDysIApPN"},{"link":"","division":"","infoSlide":"","topic":{},"round":"4","language":"English","content":"THBT developing countries should use policies such as permits to restrict rural to urban migration.","tournamentID":"3tMy4nyufgrwLpV8f6da","id":"34gXBpNw9yMgGqyUI7Yn"},{"round":"4","link":"","topic":{},"tournamentID":"CBVZREYhjV5bhCHOuWjU","content":"THS the rise of the anti-hero in film and television.","division":"","infoSlide":"","language":"English","id":"34s1FQhIfSgRcpj4aRdw"},{"language":"English","tournamentID":"0sEnEupsuf6b6sQ6tqCB","topic":{},"link":"","content":"“THB the Protection of National Identity is a Legitimate Reason to Restrict Immigration”.","round":"Open_Semi_1","division":"","infoSlide":"","id":"35BvvlyisLsgAHD3sSAq"},{"link":"","infoSlide":"","content":"THBT democracy is on the streets and not on the ballot box.","topic":{},"language":"English","division":"","tournamentID":"DNe0c1xNBVoG02MsO66g","round":"4","id":"35XkIliRbMcQJeEACQAI"},{"round":"8","tournamentID":"bxhnmh9CZq21XJcRU2BX","content":"This house believes that the criminal law should not distinguish an attempt to commit a crime from successfully committing a crime.","topic":{},"division":"","language":"English","link":"","infoSlide":"","id":"35rXn8LIS5glqXzmInXq"},{"topic":{},"language":"English","infoSlide":"","content":"TH regrets the rise of TV talent shows.","tournamentID":"UFyGWwwkKkZKyD4oHYoI","link":"","round":"1","division":"","id":"35wurilHr6r8HfUAVsQW"},{"division":"","language":"English","topic":{},"content":"THBT that states should not commemorate the veterans of conflicts that are now considered to be unjustified.","round":"ProAm_Final","link":"","tournamentID":"AKtcioaPMHcBM5C3fCCP","infoSlide":"","id":"35zqh48vUTFwkI4VTTLx"},{"link":"","division":"","content":"In regions with severe, widespread violence against women, ths acts of vigilante justice in response to gendered assaults (israel egypt).","infoSlide":"","round":"Open_Quarters","topic":{},"language":"English","tournamentID":"9hmPqfKzlDmhAISeJsts","id":"36qUwK2r7Nomdwamrk2Z"},{"round":"4","infoSlide":"","division":"","topic":{},"link":"","language":"English","content":"THBT the Pope should be elected by all Catholics.","tournamentID":"DLFJWaIyHnSlvFofovjc","id":"37UDrIjo5ofCeVXjK1SP"},{"language":"English","infoSlide":"","link":"","topic":{},"round":"Octofinals","tournamentID":"OyqUfVFCTQ5A8iecmNK1","content":"THP a world where adult children take in their elderly parents rather than support them to live separately.","division":"","id":"39ExLIp8vyIEWpByvvcF"},{"language":"English","infoSlide":"","link":"","tournamentID":"uOrbqWx5KdpXchUpHb3Z","round":"1","topic":{},"division":"","content":"THW disclose the ethnicity of a sperm/egg donor to the prospective parent.","id":"39arvwHjVXgzxSfeouTy"},{"topic":{},"tournamentID":"1leOvfvlbNAIDzW6UnkK","link":"","infoSlide":"","round":"4.5","content":"THBT whenever you find yourself on the side of the majority it is time to pause and reflect.","division":"","language":"English","id":"39xvr6YzBVlgQOR7tc3k"},{"language":"English","division":"","infoSlide":"","round":"2","content":"That we support gamification in the workplace.","topic":{},"link":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","id":"39z3R9S4AqjpyXZoHGE9"},{"infoSlide":"","language":"English","division":"","link":"","round":"4","content":"There is a zombie outbreak where 1% of the world is infected. They are all kept in a pen at great expense. We have a vaccination, and the other 99% are vaccinated - they will not be zombified, but the 1% are still dangerous, and there is no cure. Motion: THW kill the 1%.","topic":{},"tournamentID":"KErVXbqRahyWD7ZB1Q1m","id":"3AuS2GtDcxASmMFINhhC"},{"topic":{},"content":"THW punish sports teams for the criminal and violent behaviour of their fans.","round":"1","tournamentID":"LDEsIQgDXxAdqGHF4x4e","infoSlide":"","division":"","language":"English","link":"","id":"3BIcxA1Ze4bRnq2GHdeX"},{"round":"6","tournamentID":"fYRQ3gsDALGgMYQf58zt","division":"","infoSlide":"","link":"","language":"English","content":"ASSUMING IT WOULD BE ILLEGAL FOR ANYONE TO BECOME STATELESS, THW CREATE A MARKETPLACE FOR THE BUYING AND SELLING OF CITIZENSHIP BETWEEN PRIVATE INDIVIDUALS.","topic":{},"id":"3BJCQg15xteiEPBPkaRN"},{"link":"","language":"English","division":"","infoSlide":"","topic":{},"round":"Grand Final","tournamentID":"KTeMrrauFpZYvjtBUkLJ","content":"Assuming the existence of robots that cannot lie and only report facts objectively, THW use the robots to teach nation’s history at schools.","id":"3BVQAneHzHxoexMNXsQB"},{"tournamentID":"Izblbv0LXDRNyAVA9nPW","division":"","language":"English","infoSlide":"","round":"3","link":"","topic":{},"content":"THB The European Union Should Immediately And Aggressively Accelerate The Accession of Ukraine.","id":"3DEJ9hZzo0F2T6yCgg2B"},{"infoSlide":"","tournamentID":"zUT5H7Cgh7l0a0sJSIba","round":"Open_Final","division":"","topic":{},"link":"","language":"English","content":"THBT using Human Shield tactics, by the weaker side, can be justified in a-symmetrical wars.","id":"3Dimjcl46CnoJpTEJmNJ"},{"infoSlide":"","topic":{},"round":"Open_Semis","tournamentID":"D9jVXR7QB0BrNFTW3MDz","division":"","link":"","content":"THW require all companies to publish salaries to the entire public.","language":"English","id":"3DzJ6QQ7ABITprgWtWG2"},{"link":"","infoSlide":"","division":"","topic":{},"round":"Quarterfinals","tournamentID":"V4GiH1luZDgYtx44QdOh","language":"English","content":"THW ban all forms of space weaponization.","id":"3En6AAskSgw1UsiTqKxR"},{"language":"English","division":"","link":"","infoSlide":"","content":"THBT legislators should not take the will of the people into consideration, when the reason behind it is religious.","tournamentID":"JlXdLu3VijXjgOdO21tX","topic":{},"round":"4","id":"3Ep6h0e5f4S5soHoczd5"},{"tournamentID":"KMM87DnmWFjc4UzTdkjp","round":"1","infoSlide":"","division":"","language":"English","link":"","content":"THBT the Right to Rest should be upheld in all public spaces.","topic":{},"id":"3HFzprOEkEBcysIU0XUV"},{"link":"","language":"English","content":"THW support a strict disciplinarian education system, as long as it makes students perform better.","division":"","infoSlide":"","topic":{},"tournamentID":"a40eH2E5w4GGnWQ3oDT6","round":"ESL_Final","id":"3Ho2xZrGssCbzcrWuQBF"},{"link":"","topic":{},"content":"Given the ability to accurately measure the moral track record of a person, This House Would criminalize having a consistently negative moral track record.","round":"Open_Semis","language":"English","infoSlide":"","tournamentID":"BXOIn4DQsS3fQg4ZnBFn","division":"","id":"3I0FhBSC5E5MRH7KygMq"},{"language":"English","tournamentID":"yLkpGc1iaQe5cfQPrNvl","content":"This House would legalize the use of baby-boxes all around the EU.","infoSlide":"","link":"","division":"","round":"1","topic":{},"id":"3IcYMvw91BjMJOwzuFqL"},{"link":"","content":"THBT our technology has exceeded our humanity.","infoSlide":"","language":"English","division":"","tournamentID":"1bpcDodsw3NA8n7dGxeb","topic":{},"round":"Open_Final","id":"3IqE5nRkynjX8vOm7CE0"},{"tournamentID":"pvKZkg6sqicG5nXA2mvY","division":"","language":"English","topic":{},"infoSlide":"","link":"","round":"6","content":"THW make the receipt of welfare payments to raise children conditional on the use of long-term, but reversible, contraception.","id":"3JAclEV5afe2eC5ofCRr"},{"infoSlide":"","round":"Open_Semis","content":"THS the use of feminist narratives in advertising for beauty products.","topic":{},"language":"English","division":"","link":"","tournamentID":"N6GD6E8q4Mbzt8Xexnyy","id":"3JUBZPzkM9kw5L4WaRFY"},{"round":"Open_Semis","content":"THW end all subsidies for small farms.","language":"English","division":"","infoSlide":"","tournamentID":"Te8RVa4tAIQJaY0sFp5C","topic":{},"link":"","id":"3Jm4tlU45Mtp05QrxO76"},{"content":"THBT violent protest is a legitimate strategy in democratic societies.","link":"","round":"Open_Semis","division":"","language":"English","infoSlide":"","topic":{},"tournamentID":"zcO3QSYEVhsJojnUCCNl","id":"3KHjbkbMrB4PaNJ3qLXB"},{"language":"English","round":"5","content":"THBT Western foreign policy should abandon attempts to universalise liberal values.","tournamentID":"tC9C0k05cAmtT3IBK2AV","infoSlide":"","division":"","topic":{},"link":"","id":"3KskpA39hXPSjWsZv31E"},{"language":"English","link":"","tournamentID":"2gsOERqtXqSETJffXbnj","topic":{},"round":"4","division":"","infoSlide":"","content":"THO mandatory military services in peacetime.","id":"3KulCQ3qhtPqliX0vvqQ"},{"link":"","language":"English","content":"This House believes that major social media platforms (e.g. Facebook, Twitter) should censor bigotry.","division":"","infoSlide":"","topic":{},"tournamentID":"WACrra94379E35Be36hc","round":"3","id":"3LPb8XDSORyzy5htWykC"},{"topic":{},"content":"TH, as the Democratic party, regrets starting the impeachment process of President Trump.","language":"English","infoSlide":"","round":"Open_Semi","tournamentID":"ERxjvEIrmiL3iSgvcfdB","link":"","division":"","id":"3LyWvhFP7mzaJ5ww7mp9"},{"content":"Chúng tôi tin rằng mạng xã hội nên tính phí sử dụng thay vì sử dụng quảng cáo là nguồn thu chính.","tournamentID":"uqR5rN63m5rX9CiOtJjb","language":"English","infoSlide":"","round":"2","link":"","topic":{},"division":"","id":"3M00b2XB3xZHoQ6PE7uQ"},{"tournamentID":"TMBmC1MQwez0ZjQdNyHU","content":"TH prefers that European Jews immigrate to Israel.","language":"English","infoSlide":"","division":"","link":"","topic":{},"round":"2","id":"3MDIisY2PCqZ5MVsZyly"},{"topic":{},"division":"","tournamentID":"dF61f0kc1Q0KQCGUhM1l","infoSlide":"","round":"Open_Final","link":"","content":"THBT governments should abandon the strategy of \"decapitation\" in fighting terrorism.","language":"English","id":"3MXaMQW6FcKkKXcy88wg"},{"infoSlide":"","language":"English","round":"Open_Semi_1","topic":{},"tournamentID":"vILiSHUm95tqQYsTjFZs","link":"","division":"","content":"THBT French millionaires should escape to England.","id":"3MnCTKz2Cy3zsDizK5YL"},{"content":"This house would fund cosmetic plastic surgery.","link":"","infoSlide":"","round":"1","tournamentID":"xDjVbl80WAVFcLqsVPo5","division":"","language":"English","topic":{},"id":"3NSjnKKvTPFAWoUW1iNr"},{"link":"","topic":{},"tournamentID":"Vis5yhSVMHubvgdJTwP1","content":"THO rise of social media influencers.","language":"English","round":"Open_Quarters","infoSlide":"","division":"","id":"3NidzCIrzzJBWfrHxlCX"},{"tournamentID":"x0mst3SfcsgMKKZ3eg7G","language":"English","topic":{},"infoSlide":"","content":"Except where there is a clear threat to national security TH believes that it is illegitimate for Western states to limit immigration from the the developing world.","link":"","round":"1","division":"","id":"3OCymUYPbRmnkIuU91q1"},{"division":"","topic":{},"content":"TH, as Tottenham Hotspur, would ban fans found chanting 'Yid Army'.","infoSlide":"","link":"","tournamentID":"QV74kB5iA6iDiqLCNz2F","round":"2","language":"English","id":"3OSVFSu5iqthF9nixAih"},{"language":"English","division":"","link":"","tournamentID":"uvPQBxEeKffyHUkLa5PV","content":"TH regrets the rise of the hookup culture (* The hookup culture is one which accepts and encourages casual sexual encounters focused on physical pleasure, without necessarily including emotional bonding).","infoSlide":"","round":"4","topic":{},"id":"3QJRpBcievqLq9hkfoZc"},{"link":"","division":"","tournamentID":"FaXJZrMIEColDcqtOmli","infoSlide":"","language":"English","round":"Novice_Final","content":"TH regrets the idolization of soldiers and veterans.","topic":{},"id":"3QXfevLtgfcGvxjSOhqW"},{"infoSlide":"","topic":{},"language":"English","link":"","tournamentID":"qDZwjZ3HER1wsZxsFjBb","round":"Open_Final","division":"","content":"This House prefers a 2nd term of Donald Trump presidency over a Bernie Sanders presidency.","id":"3RFOWlm4fMmiUisuGw6t"},{"content":"This house welcomes the production of art by artificial intelligence.","link":"","round":"2","division":"","language":"English","tournamentID":"QDGMrdrzlFCxVT5WcqNn","infoSlide":"","topic":{},"id":"3RP2VPAt727wOfo0Zlyr"},{"link":"","division":"","round":"","infoSlide":"Bối cảnh: Trong x năm tới, một ki thuật công nghệ có thể đánh gia toàn diện và thu thập tính cách cá nhân (VD: độc ác, khôn ngoan, cẩn thận, etc) đã được phát triển. Công nghệ này có thể đánh giá công khai giá trị đạo đức của từng cá nhân.","tournamentID":"nALUKfkpmOnWnQCzecru","topic":{"technology":{"check":true,"title":"Technology"}},"content":"Chúng tôi sẽ phá hủy công nghệ này.","language":"Vietnamese","id":"3Rce6jWPVk8RPYfIoMri"},{"round":"Open_Semis","content":"THBT, where resources are scare, minority campaign groups should fund minority art, literature and films rather than funding lobbying for legislative change.","language":"English","division":"","tournamentID":"8vo3c8Tz12muCmAoWSv2","link":"","infoSlide":"","topic":{},"id":"3RgVCiQplxU0IO7Z058W"},{"language":"English","infoSlide":"","link":"","division":"","tournamentID":"4NEhQx2m4XcXy6SxnoqS","content":"THW use geo-engineering to combat climate change.","topic":{},"round":"Open_Semis","id":"3SZ1RhohsJBgAtEiw7aM"},{"round":"4","tournamentID":"xm1UErfWKMzGBfeKsba9","language":"English","infoSlide":"","topic":{},"link":"","division":"","content":"THW set maximum rents for residential property in the city of Paris.","id":"3T6P27969VSyTrsL1SgA"},{"link":"","language":"English","division":"","topic":{},"infoSlide":"","content":"It is 1951, during the Korean War. TH, as the US, would aggressively nuke China.","tournamentID":"KErVXbqRahyWD7ZB1Q1m","round":"4","id":"3TNgFwhepdytujgzXqJi"},{"tournamentID":"PNpMzinCvz3Z9bTJfV9t","round":"Open_Final","infoSlide":"","division":"","link":"","language":"English","content":"THBT in times of economic recession, European states, don't spend enough.","topic":{},"id":"3Tvh3JRzJxTa9VqUTrHs"},{"division":"","tournamentID":"DpY0fOiqQ2FcccIfvmaH","language":"English","link":"","infoSlide":"","round":"2","content":"THW abolish all exceptions to the military draft on the basis of religion, sexual orientation or gender in democratic countries that have a compulsory military draft.","topic":{},"id":"3UJ8sn6kJA3JAr8kQEAa"},{"tournamentID":"JsQrI80phRuvDHr37q5N","round":"Open_Final","topic":{},"language":"English","division":"","infoSlide":"","content":"thw allow the deliberate (!) targeting of civilians in war, where it would significantly reduce casualties in the long term.","link":"","id":"3VGXxizZGMgVwgiXV4ln"},{"division":"","link":"","topic":{},"infoSlide":"","tournamentID":"Y9leM2xAYiRjIMMIqgfX","language":"English","content":"THW not use prison to punish non-violent offenders.","round":"Open_Final","id":"3VI8hrACvfC8pmlqYSfY"},{"division":"","round":"2","language":"English","link":"","content":"THBT governments should not provide rebuilding funds to citizens above the poverty line in known natural disaster areas.","infoSlide":"","tournamentID":"zcO3QSYEVhsJojnUCCNl","topic":{},"id":"3VQ03uMuZXanOLHq9vza"},{"link":"","tournamentID":"HjQJA65fZ9igHKO8DLAP","topic":{},"division":"","round":"Open_Quarters","content":"That feminists should celebrate domestic activities which are traditionally carried out by women (e.g. baking, gardening and knitting) as empowering and feminist activities.","language":"English","infoSlide":"","id":"3VcGwoBEr6H3of2qhkdo"},{"tournamentID":"FJoy56lyo9s1SqE3RvFO","language":"English","infoSlide":"","topic":{},"link":"","round":"3","content":"TH does not want a society in which people are immortal.","division":"","id":"3XIhYDWbW1Di1chqsL3I"},{"tournamentID":"nRov7JujhUP4fNtRUQTt","infoSlide":"","round":"5","division":"","content":"THW reallocate revenues from such industries (e.g mining) to exclusively fund Universal basic healthcare for the poor.","link":"","topic":{},"language":"English","id":"3XrPEPUenwZpj2DEYngT"},{"division":"","round":"Open_Final","language":"English","topic":{},"infoSlide":"","link":"","tournamentID":"Ke3vqa3ZpQMmG6mDtn1z","content":"If brought back to the 2018 ballot in the Pakistani General Elections, this house would still vote for the Pakistan Tehreek-e-Insaaf (PTI).","id":"3XwgDeVc30LWDIT7V1Bt"},{"infoSlide":"","language":"English","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","round":"6","link":"","topic":{"economics":{"title":"Economics","check":true}},"content":"THW ban job applicants from disclosing the name of the university that issued any degrees they may hold.","division":"","id":"3YJZ4buCQpmG4GyMHgE9"},{"tournamentID":"hoxSwibt3yivmk88aoAD","topic":{},"division":"","infoSlide":"","round":"5","language":"English","link":"","content":"THBT Western States Should Create LGBTQ* Schools.","id":"3YvkvuqQheORU37HLTLB"},{"tournamentID":"aUwwV3DTC7VLF1KaHJqj","round":"Open_Final","language":"English","infoSlide":"","link":"","topic":{},"content":"TH: as Nick Clegg (with the benefit of hindsight) would not have joined a coalition with the Conservatives in 2010.","division":"","id":"3Z0zDu4vssrx1sYGOKCs"},{"tournamentID":"if0ptVr0NjWKFiLehpRT","infoSlide":"","topic":{},"language":"English","round":"3","link":"","division":"","content":"THBT South Korea should re-open the Kaesong Industrial Region.","id":"3Z8KS52EzDd69Ad9G3ZR"},{"language":"English","tournamentID":"JzS0MHRn0Mb2AaYiEq5h","link":"","infoSlide":"","division":"","content":"THBT suicide bombing is a legitimate tactic of warfare.","topic":{},"round":"Open_Final","id":"3aBsDJraJxxA5C9vYg3P"},{"link":"","division":"","round":"4","content":"TH believes that the United States should militarily intervene (put boots on the ground) in Syria and Iraq.","infoSlide":"","tournamentID":"1aLx5bJZiwmW3mkmtmNO","language":"English","topic":{},"id":"3agcopzh8PwDgBewk4Z9"},{"content":"This House would prefer that US Supreme Court Justices were elected by popular vote.","language":"English","topic":{},"tournamentID":"sol1oNvzZmBI1NXc28Lh","division":"","infoSlide":"","round":"3","link":"","id":"3akKGX71QT3K0Fxu4k2I"},{"round":"6","content":"THB the Israeli Army should adopt a policy of shooting to kill their own comrades where they are likely to be captured.","division":"","topic":{},"infoSlide":"","link":"","language":"English","tournamentID":"vY2MtSrfiAgUKzGbzzMm","id":"3bWxoCPFbV5bXmjA4KUc"},{"round":"3","link":"","content":"THW partially link development aid to developing countries commitment to female equality.","language":"English","topic":{},"tournamentID":"4ENxr34b5j7GiIcVWnv9","division":"","infoSlide":"","id":"3cpdIwjYWLU19TDvWiH1"},{"division":"","tournamentID":"yDvj9tks9IvE2CTAVfzV","language":"English","round":"2","content":"THBT Robinhood should abandon the ‘payment for order flow’ practice and charge direct trade commissions instead.","topic":{},"infoSlide":"","link":"","id":"3dCB2nDuntB0JCJRSl8z"},{"content":"TH prefers a world without Wikileaks.","round":"5","topic":{},"infoSlide":"","tournamentID":"G1sEnthTpFCqlrrU3bnJ","division":"","link":"","language":"English","id":"3dJlDjDr4NOgl8dEgLef"},{"link":"","tournamentID":"xDjVbl80WAVFcLqsVPo5","infoSlide":"","content":"This house applauds the rise of pop songs by female artists that glorify assertive female sexuality.","topic":{},"round":"4","language":"English","division":"","id":"3dOo2BnJyJJPmKyJUrtq"},{"round":"3","infoSlide":"","topic":{},"content":"Chúng tôi tin rằng trẻ em ở những nhóm yếu thế (ví dụ: người da màu, dân tộc thiểu số, v.v) nên ưu tiên việc phát triển cộng đồng thiểu số của họ hơn là lựa chọn thành công ở nơi khác.","link":"","language":"Vietnamese","tournamentID":"u39lMiqXE91heMDxEgQe","division":"","id":"3dY6jPc30nKCr3M0KL7l"},{"infoSlide":"","language":"English","topic":{},"round":"Open_Final","link":"","division":"","tournamentID":"aWnK845Eg0cHNR0VZu3e","content":"THBT from kindergarten onwards all education should be gender neutral.","id":"3e2cwTCukHQoZkAbBCVx"},{"infoSlide":"","round":"2","link":"","content":"THW introduce a salary cap for European footballers.","topic":{},"division":"","tournamentID":"0DgXee32WEP3hxmGZExS","language":"English","id":"3eNDiWzPBusdw5VS9bB9"},{"topic":{},"language":"English","infoSlide":"","link":"","round":"6","content":"THBT the European Union should refuse to offer the United Kingdom preferential trade terms - Round 6.","division":"","tournamentID":"Ryhdb4JOJYP96e5oa49b","id":"3eXzIqWqiYuvYsvQc5ZZ"},{"infoSlide":"","language":"English","round":"4","tournamentID":"DvsGvQWaYzshd3lSsDGu","link":"","division":"","content":"THBT the State should pay for the education of all students at all levels.","topic":{},"id":"3emWNexbaBsHS8DlLusF"},{"topic":{},"tournamentID":"0DgXee32WEP3hxmGZExS","content":"THBT destruction of private property is a legitimate tool for environmental campaigners.","language":"English","infoSlide":"","round":"30","link":"","division":"","id":"3fRkJ7rrnHshTBcYEvml"},{"language":"English","tournamentID":"D6zNi4CBrpZnwXUgBuKG","infoSlide":"","round":"2","link":"","division":"","topic":{},"content":"This house would restrict the benefits of the schengen agreement to citizens of the EU only.","id":"3fTBpIxAXFy8FFn4IwLS"},{"round":"3","infoSlide":"","tournamentID":"s6w7WZApDWnBBmzeKY4h","division":"","content":"THBT that Western Nations should impose heavy penalties on domestic corporations that punish their employees for engaging in legally permitted speech.","link":"","language":"English","topic":{},"id":"3gZMDZ67KJGhWdSXNbvw"},{"round":"Open_Final","infoSlide":"","content":"THS the existence of a \"social credit system\" (For the purposes of the debate, a \"social credit system\" refers to a system which assigns a rating to every citizen based on government data regarding their economic history (e.g. paying taxes, paying debts) and social behavior. Ratings impact one's ability to carry out economic transactions, such as seeking employment, renting or buying property.).","topic":{},"link":"","tournamentID":"EpANk5V3VQNFWagnktFN","division":"","language":"English","id":"3hF7yV9tJZDtaIFsPjkE"},{"language":"English","topic":{},"tournamentID":"xwOMY1HAkkxJbFVQIUFJ","round":"3","infoSlide":"","division":"","content":"THW incentivize work from home (*not only for the duration of the pandemic).","link":"","id":"3hSsEPAuHirb7WEObb04"},{"language":"English","round":"Open_Final","content":"TH regrets the creation of a moral and legal distinction between the use of chemical weapons and conventional weapons.","tournamentID":"4dzoeUxkRP5WxDaCVtbY","link":"","infoSlide":"","division":"","topic":{},"id":"3htPszOw5F7tILM7VC4e"},{"division":"","round":"4","language":"English","topic":{},"tournamentID":"TXUiH5ezPBItq39Het98","link":"","infoSlide":"","content":"This House Believes That Bernie Sanders would have been better than Joe Biden as the Democratic Presidential nominee.","id":"3hwqN3H86cwnpuFdLlnw"},{"language":"English","infoSlide":"","tournamentID":"E5iEI92yocDkjANxDoF9","content":"THBT Barack Obama should issue an executive order suspending all state bans on gay marriage.","round":"Open_Semis","topic":{},"link":"","division":"","id":"3iCiUG6JWsmIVjiDmYAx"},{"tournamentID":"15hrO4GoCxXF2OIdl7fS","division":"","round":"2","link":"","language":"English","infoSlide":"","content":"THS the \"Free School\"Philosophy.","topic":{},"id":"3iGD3urqbu75km9U7FmD"},{"topic":{},"round":"2","language":"English","infoSlide":"","division":"","tournamentID":"kqAjVyDOCBYWRYze158e","link":"","content":"This house regrets films and television shows that glorify gang culture.","id":"3iiNJfx8gmrHqB18wNpz"},{"topic":{},"tournamentID":"Hk8f1ASR1JhJdfu9tmfK","infoSlide":"","link":"","language":"English","round":"3","division":"","content":"This house believes that religious officials (e.g. priests, imams, rabbis) should not make statements in support of political policies, parties, or candidates.","id":"3ilPnbNKvlhCiCDin8bk"},{"tournamentID":"fHaBEm9PW7QYO4ZKFbwi","infoSlide":"","content":"THW give citizens negative votes on general elections.","language":"English","round":"Open_Semis","link":"","topic":{},"division":"","id":"3itrGlsCGuohNa5NOwJC"},{"round":"Open_Final","link":"","content":"THBT the state should criminalize the seeking of mail-order brides.","language":"English","topic":{},"tournamentID":"jTIGk8DeHHGFQRpsk85j","division":"","infoSlide":"","id":"3jI2GG6Q8Q1Vna4mSrYz"},{"topic":{},"language":"English","link":"","tournamentID":"YWYo651ohahlD6OyzCXj","division":"","round":"1","content":"THW create drug provison centres to provide all adults with unlimited quantities of free heroin and cocaine, exclusively for on site consumption.","infoSlide":"","id":"3jbbut2F332QPAxeXRlS"},{"content":"THBT states should classify organized crime syndicates as terrorist groups.","topic":{},"division":"","round":"9","link":"","language":"English","tournamentID":"uJGjvsaThnluwVzoHFXm","infoSlide":"Classification as a terrorist group would legally allow law enforcement to pursue tactics such as targeted extra-judicial killings, reducing barriers to law enforcement gathering evidence, using military forces, criminalizing membership, etc.","id":"3jrnEZZXpy9OAhZRNyQB"},{"division":"","round":"6","tournamentID":"UfGg9gZEXlU744RWE1Y1","link":"","content":"TH regrets the mass commercialisation of football.","topic":{},"language":"English","infoSlide":"","id":"3kRipPI6osd4sMR9p0hu"},{"link":"","content":"This House believes that in Western states with high rates of unemployment the state should act as an employer of last resort (i.e. the state should directly employ people who are unable to find a job elsewhere).","round":"6","language":"English","division":"","tournamentID":"9WoIT6ofG5A9j3MeLxh4","topic":{},"infoSlide":"","id":"3kn5ZdtTwFBjpex7TzK5"},{"topic":{},"content":"Should a word, that one group feels is discriminating, no longer be used by that same group either?.","round":"3","tournamentID":"WZCqEhVlkHd8g5WoExVG","link":"","division":"","language":"English","infoSlide":"","id":"3lDMrknoTGrfOZ15ySsB"},{"division":"","round":"Open_Semi","topic":{},"link":"","language":"English","infoSlide":"","content":"That, assuming feasibility, we should charge corporations a tax equal to their Social Cost instead of company tax.","tournamentID":"n7qv29PmNuF5SOe42oiz","id":"3lPjT7XYZbpuvdKULb8U"},{"infoSlide":"","tournamentID":"V7FJhUQXRQ0Z4dnL94bu","language":"English","link":"","round":"Open_Semi","division":"","topic":{},"content":"TH supports the narrative that All Cops Are Bad.","id":"3lpRcvYMy3OFuBJrsEDQ"},{"round":"Open_Final","tournamentID":"xDKR551AqNCcautWV6YI","infoSlide":"","division":"","topic":{},"content":"THW create a film rating for movies that do not pass the Bechdel-Test.","language":"English","link":"","id":"3m3nFxqBQ6ouVomqclWb"},{"round":"5","infoSlide":"","link":"","division":"","language":"English","topic":{},"content":"TH, as Iran, would covertly continue developing its nuclear weapons program.","tournamentID":"V8TulSs5yNLpZX8Xohpq","id":"3nL2giyoz1V2L4ImV1P8"},{"content":"THP a tech industry characterized by multiple smaller firms rather than one dominated by a few large players (e.g. Google Amazon Facebook in status quo).","division":"","link":"","infoSlide":"","language":"English","topic":{},"round":"3","tournamentID":"Wg2225mgODwBGF4GMBLR","id":"3nNyLrrNwmNG7zWfifT7"},{"division":"","link":"","infoSlide":"","content":"Regardless of the relative efficiency of various economic systems, THBT meritocracy is a just way of allocating resources.","round":"Open_Final","language":"English","topic":{},"tournamentID":"miNjiX9yX5Oq25V4yWeo","id":"3np5y2aAnvDHNCm3jCim"},{"infoSlide":"","tournamentID":"QH8qP4fqpVb4nMsZXwxw","language":"English","topic":{},"link":"","division":"","content":"TH rejects the right to privacy.","round":"Open_Final","id":"3pEeqDwtgjPakXk3qB5S"},{"topic":{},"content":"THW allow individuals to opt out of employment provisions and regulations relating to health and safety in return for increased pay.","tournamentID":"lgIRNhKweWPgrrSL34Lh","round":"4","link":"","division":"","language":"English","infoSlide":"","id":"3peglCDTySJq8Y3U9awC"},{"topic":{},"division":"","link":"","tournamentID":"Hk8f1ASR1JhJdfu9tmfK","round":"1","infoSlide":"","language":"English","content":"THW abolish all occupational licensing.","id":"3qV9Adywb7k68Wo4WMfk"},{"link":"","language":"English","infoSlide":"","content":"THBT philanthropists should donate to environmental protection as opposed to poverty alleviation.","round":"3","division":"","tournamentID":"1bBjpR84rI88s6EveWzm","topic":{},"id":"3rRVbUiFDcjk285XqkAl"},{"division":"","topic":{},"content":"THBT the EU should offer Greece full debt relief in exchange for its housing at least 200,000 Syrian refugees.","infoSlide":"","tournamentID":"wKhC6L9zPycGKlqYWb6j","round":"Open_Finals","language":"English","link":"","id":"3t6y3qKMJMtE3ltOFrmW"},{"infoSlide":"","tournamentID":"nXN2yUG7soxwCp4xidzj","language":"English","topic":{},"round":"6","content":"THB that South Korea should develop nuclear weapons - Round 6.","division":"","link":"","id":"3tOkbm5jXKPDM8c32Rf9"},{"round":"3","infoSlide":"Năm 2020, Chương trình Lương thực Thế giới (WFP) đã được trao giải Nobel Hòa Bình cho những nỗ lực của mình nhằm đẩy lùi nạn đói. Trên toàn thế giới, ngành nông nghiệp sản xuất đủ thực phẩm để thỏa mãn nhu cầu năng lượng của tất cả mọi người. Tuy nhiên, Liên Hợp Quốc đã ước tính rằng có 815 triệu người, hơn 10% dân số thế giới, đang chịu cảnh suy dinh dưỡng mãn tính; mặc dù những tiến bộ công nghệ đã đẩy mạnh sản lượng, thiếu thốn lương thực vẫn là một vấn đề. ","content":"Giả định tính khả thi, chúng tôi sẽ ủy quyền cho một cơ quan trung ương toàn cầu kiểm soát thị trường thực phẩm (nguồn cung cấp, sản xuất, giá cả, v.v.)","link":"","language":"Vietnamese","tournamentID":"xAdc6R4uC1xkQxvmPedU","division":"","topic":{"environment":{"check":true,"title":"Environment"}},"id":"3u8eu8t0AdQSp4zPUygk"},{"division":"","round":"Open_Semis","link":"","content":"THR the way that brutal antiterrorism tactics have been portrayed in Western film and television media.","infoSlide":"","tournamentID":"swAbmAXdPnojWIXuZFwm","topic":{},"language":"English","id":"3vvntYrX9QBddctIrQv1"},{"link":"","division":"","language":"English","topic":{},"round":"Open_Semis","infoSlide":"","tournamentID":"NDBMTXQSiGk8gHdwlPou","content":"It is the fall of 1923. THW, as the Western allied forced, let Germany repay ful reparations.","id":"3wjVhJ3uV86Dz8qtRYFV"},{"language":"English","division":"","topic":{},"tournamentID":"UfGg9gZEXlU744RWE1Y1","round":"7","link":"","content":"TH supports Sanctuary Cities in the United States.","infoSlide":"","id":"3x6pmRxInv3w0hYtZuSA"},{"infoSlide":"","content":"TH, as an embattled ruler (in Westeros), would arm religious fanatics in order to bolster your rule - Round 4.","link":"","language":"English","topic":{},"tournamentID":"nXN2yUG7soxwCp4xidzj","division":"","round":"4","id":"3xYqhc8L2PLcQRqyBDbJ"},{"division":"","language":"English","tournamentID":"D6zNi4CBrpZnwXUgBuKG","round":"Open_Final","topic":{},"link":"","content":"That technology companies should refuse to provide governments information about their customers, even if that would mean breaking the law.","infoSlide":"","id":"3yHg3K01A9InPY1tJ8o3"},{"round":"3","division":"","content":"THBT Pope Francis I should openly endorse radical left political parties and candidates.","topic":{},"link":"","language":"English","infoSlide":"","tournamentID":"ZsVD7wkjXkMvxPWmTARb","id":"3yQs8Beqi7lWeWNOBQYu"},{"round":"1","division":"","topic":{},"language":"English","content":"Should the government leader at federal and state level be directly elected?.","tournamentID":"MULqjXPKLke2z3n3Aafx","infoSlide":"","link":"","id":"3yY2qcOEJ5m3B9oMCKJo"},{"infoSlide":"","content":"THW pay spouses who stay at home a salary.","topic":{},"language":"English","division":"","round":"4","link":"","tournamentID":"DPlum9M6fh8xjiyYGBxO","id":"3ypD2Z7v2av0nLfV6Guz"},{"tournamentID":"jHRVS3aznjPPQaxWT8bs","language":"English","topic":{},"division":"","link":"","round":"2","content":"This house would erect a memorial statue for President Ronald Reagan in the red Square.","infoSlide":"","id":"3z7WCkSxG0YUVNhc4BPn"},{"tournamentID":"DeCtrDtTjNPkklRZT0x6","infoSlide":"","round":"2","division":"","language":"English","content":"THBT newly democratized states should prosecute their fallen dictators.","topic":{},"link":"","id":"3zbq2SbhUKmEMZutT2VR"},{"tournamentID":"O0uPnjb8M1dIGLUmO4NP","topic":{},"language":"English","link":"","round":"4","division":"","content":"TH, as the Conservative party, would condemn the portrayal of Romanians and Bulgarians in the tabloids.","infoSlide":"","id":"40YSRjjTpcwLF2kcV8W5"},{"link":"","infoSlide":"","language":"English","round":"1","content":"This house would ban all communication tech companies (such as Google, Apple, Facebook, Whatsapp, etc.) from encrypting their users data, including the content of their communications, in such a way that the company cannot retrieve that data even under a court order.","division":"","topic":{},"tournamentID":"vS5BTr7lDW40h5Qw31FI","id":"42Y2BLJeLkqJlo7VBO9r"},{"round":"ESL_Semis","tournamentID":"4XkvQJQxtOHIIF6sH97v","language":"English","content":"THW prevent those who deny climate change from seeking political office.","division":"","topic":{},"infoSlide":"","link":"","id":"42psAavzjeBrALxFAkSh"},{"division":"","tournamentID":"if0ptVr0NjWKFiLehpRT","link":"","topic":{},"infoSlide":"","content":"THW work for Don-Roberts Holgerrson.","round":"2","language":"English","id":"43lxfRFc1z0HRyl2yYt1"},{"round":"1","language":"English","content":"THW make casinos and bookmakers liable for the debt of problem gamblers.","link":"","tournamentID":"HI456ixwVeFxETFg4P5i","topic":{},"infoSlide":"","division":"","id":"44pdXkApQG1fVSFliPMj"},{"language":"English","division":"","topic":{},"infoSlide":"","content":"TH AS GOOGLE WILL ADOPT THE HIPPOCRATIC LICENSE.","round":"9","link":"","tournamentID":"fYRQ3gsDALGgMYQf58zt","id":"45cfNYf6HimiIfxWE3y3"},{"language":"English","content":"THO the notion that marriage is meant to be long-lasting.","tournamentID":"xik6XdvZ0JGG1hySfuwC","topic":{},"round":"3","link":"","infoSlide":"","division":"","id":"47N3rtLxFS1xDYjqUMvM"},{"language":"Vietnamese","round":"4","topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"division":"","tournamentID":"KncW7pH1nDIom3xK89VG","infoSlide":"","link":"","content":"Chúng tôi, với tư cách là một nữ chính trị gia, sẽ dùng quan niệm rằng những phẩm chất truyền thống của phái nữ (VD: lòng trắc ẩn, lòng nhân ái) giúp các lãnh đạo nữ đối phó với thời kì khủng hoảng tốt hơn.","id":"49IiJHbBNUICmYOlP6PV"},{"tournamentID":"FcQa3EO91Xucj4ACR1Wb","content":"THBT states should provide citizens with an unconditional income that ensures a lower-middle class standard of living, regardless of their employment status.","infoSlide":"","language":"English","link":"","round":"Open_Semis","division":"","topic":{},"id":"49p4T11y6x2WdF1RkGUQ"},{"topic":{},"language":"English","round":"Grand Final","infoSlide":"In the universe of \"Ghost in the Shell Stand Alone Complex\", the Tachikomas are a series of AI endowed combat support robots created for Section 9. At the start of the series they share a collective consciousness and always straightforwardly follow their programming and orders. A section 9 member, Batou, bonds with one of the Tachikomas and gives it natural oil. As a result, this Tachikoma develops a personality and eventually sentience which spreads to the other Tachikomas. All the Tachikomas develop sentience. Once section 9 learns of this, they are sent for decommission and dissection. Natural oil is banned. Only 3 Tachikomas remain, working in civilian jobs such as construction and elderly care.","content":"THR the Tachikoma’s development of individuality and sentience.","division":"","tournamentID":"Z9WBfg1yDJgSR34BGYp1","link":"","id":"4AKlMTxLHx5N2opSayRt"},{"division":"","link":"","topic":{},"round":"2","language":"English","infoSlide":"","tournamentID":"SYgBNIxUimP727BA2md3","content":"THBT religion is redundant.","id":"4AuR3vjhHwBjo1C3xUz8"},{"link":"","language":"English","content":"TH regrets the increasing classification of human behaviour as illnesses.","round":"5","infoSlide":"","division":"","topic":{},"tournamentID":"VAfi19aZTAIKaUuELBL1","id":"4BCco0mYCEXXurx7V1NC"},{"link":"","round":"5","division":"","topic":{},"language":"English","tournamentID":"uvPQBxEeKffyHUkLa5PV","content":"TH believes that developing nations should ban political parties from handing out food and basic necessities.","infoSlide":"","id":"4BIMCgQqp0ZZ1zS71FYJ"},{"link":"","round":"Open_Octos","language":"English","infoSlide":"","content":"THW not allow a single media company to own multiple TV channels or newspapers (whether in print or online).","division":"","tournamentID":"zngB1WF8viOW2uGu6swZ","topic":{},"id":"4BJxFvO9D5KaeD7NzmTl"},{"content":"Chúng tôi lấy làm tiếc sự thương mại hóa của các phòng trào xã hội.","tournamentID":"I4LkoGhDJmtXsINMJVjW","division":"","round":"Quarterfinals","link":"","infoSlide":"Sự thương mại hóa: việc triển khai và áp dụng một hình ảnh hay khái niệm trong các sản phẩm/dịch vụ cho mục đích sinh lời (các công ty đưa ra sản phẩm/chiến dịch quảng cáo thể hiện sự ủng hộ cho cộng đồng LGBT+ hoặc có thông điệp #MeToo; #BLM, v.v).","language":"Vietnamese","topic":{},"id":"4C6SYDv7ZJPX3VbZ1LJ6"},{"topic":{},"division":"","link":"","tournamentID":"rEUwN5dFZYjeXBNtp4NG","language":"English","round":"4","content":"THBT investors should cease purchasing bonds issued by the Venezuelan government.","infoSlide":"","id":"4CsID6IOwfMAHHpjTSHo"},{"infoSlide":"","topic":{},"link":"","tournamentID":"BvbIXgEeyaIcozyDf6R5","round":"Open_Final","content":"In countries where the right to an abortion has been achieved... THBT the right to abortion is no longer a legitimate debate.","division":"","language":"English","id":"4DWNduIzPDGjYZMVjbGq"},{"link":"","content":"THW expand the legal definition of a \"false police report\" to include reports made with minimal information, or reports that could reasonably be considered unnecessary.","language":"English","division":"","round":"2","infoSlide":"","tournamentID":"6j3LrbKUgx9arVygXUjf","topic":{},"id":"4E5xjJ6A2Vto5w4zWCNs"},{"topic":{},"language":"English","round":"3","link":"","tournamentID":"OqjcHyR2p27nlpvjQ5oq","infoSlide":"","division":"","content":"THW pay direct reparations to the descendants of slaves in the United States.","id":"4EQvQG0QTkEAQRH25xZy"},{"division":"","tournamentID":"xAdc6R4uC1xkQxvmPedU","link":"","infoSlide":"","round":"1","topic":{"environment":{"check":true,"title":"Environment"}},"content":"THW establish an environmental commissioner who has universal prosecutory powers for crimes against the environment.","language":"English","id":"4ExWlfvBiMsm7rMOlE8R"},{"topic":{},"content":"THW ban all technology in the pursuit of the genetic enhancement of humanity.","tournamentID":"BjyPWHMlV10O4VN8B1XE","link":"","division":"","round":"Open_Semis","infoSlide":"","language":"English","id":"4Far4GP8mcxSm2H6NWeu"},{"language":"English","content":"THW ban unpaid internships.","tournamentID":"FpzYvT6Prqbibn0xYvov","link":"","division":"","topic":{},"infoSlide":"","round":"1","id":"4FndURkEPb1U7X8DVOMj"},{"infoSlide":"","link":"","tournamentID":"cDgGdE6ESpUqp2A2gVLj","language":"English","topic":{},"round":"2","division":"","content":"THW institute a health credit system (inexact wording).","id":"4G2gLgLewrFUqdAdu2cR"},{"division":"","link":"","round":"4","tournamentID":"jU6ofoRVsACbu04pXrg6","content":"TH, as a US Democratic presidential contender, would make repeal of the second amendment part of their core policy platform for 2020.","language":"English","infoSlide":"","topic":{},"id":"4G5ncmu8t71tVBwRVgkg"},{"round":"4","infoSlide":"","tournamentID":"Tix5aGpgWpddb7Va0oe6","link":"","content":"TH condemns the progressive marketisation of our health care system.","topic":{},"division":"","language":"English","id":"4HF1NnN4zW2RUFE5vqbO"},{"tournamentID":"t1jiRXU99xeGdoIkTeyF","division":"","content":"This House believes that sports leagues should significantly tax and redistribute from wealthier teams to poorer teams.","infoSlide":"","topic":{},"language":"English","round":"3","link":"","id":"4He77YpQAqyo9vCYgpEa"},{"round":"5","tournamentID":"Xt0UV62VgaP360hvHqWG","infoSlide":"","content":"THW abolish all term-limits on the service of elected heads of state.","link":"","topic":{},"language":"English","division":"","id":"4Hle06Dzda6uvikgm3CE"},{"tournamentID":"m6JzV67uYJSVBRpAbgL7","language":"English","content":"THW require both parties to use state lawyers, instead of private lawyers, in defamation trials.","link":"","round":"5","infoSlide":"","topic":{},"division":"","id":"4IpuWDzwy2O7yZVSYVgV"},{"link":"","round":"4","infoSlide":"","division":"","tournamentID":"py2YomguZSylDKYhWlhK","topic":{},"language":"English","content":"THW limit copyright terms for works of art (including fine art, music, film, literature, etc.) to the original artist’s lifespan.","id":"4KRUOnJgz0zySenGkjLD"},{"language":"English","round":"1","division":"","link":"","tournamentID":"vTB5rmh37ZMzdOCJ34sF","infoSlide":"","content":"THW allow the trophy hunting of endangered animals.","topic":{},"id":"4Kd6HxUHARDJsxJaPkKC"},{"division":"","language":"English","round":"Open_Final","topic":{},"content":"TH celebrates self interest as one of the dominant guiding moral principles.","tournamentID":"mf3XudZleydnsr0lEvkg","infoSlide":"","link":"","id":"4LEwp97JUqM53Mps5VBE"},{"link":"","language":"English","tournamentID":"Sf5YtAJo1vVmULRLSMAt","topic":{},"round":"2","content":"THW give people additional votes in proportion to their economic disadvantage.","division":"","infoSlide":"","id":"4MMmaQ7GLdW4iXgKk2a9"},{"link":"","topic":{},"tournamentID":"m6JzV67uYJSVBRpAbgL7","infoSlide":"","content":"This house regrets the dominant narrative that mainstream social movements should refrain from being antagonistic and aggressive, in pushing for changes/fighting against injustice.","round":"HS_Semi","division":"","language":"English","id":"4Mm8g8pJtMhYhilc33EL"},{"language":"English","division":"","content":"THS the right of indigenous peoples to have publicly funded schools with autonomy over curriculum, operations & educational philosophy.","link":"","topic":{},"round":"Octofinals","tournamentID":"OyqUfVFCTQ5A8iecmNK1","infoSlide":"","id":"4N6Xx91jboO4ggu198KO"},{"link":"","topic":{},"round":"4","content":"THW publicly shame persons found guilty of committing hate speech.","language":"English","infoSlide":"","division":"","tournamentID":"sVguH0ZxbQ8C5aNo2rNf","id":"4O4eGsps7LtwQUDIRo1N"},{"topic":{},"content":"THBT post-conflict states should actively promote a unifying national narrative in the history curriculum.","language":"English","tournamentID":"68SrKFb9XtsQrLtqLtjO","division":"","link":"","infoSlide":"","round":"Novice_Final","id":"4OcEoQvhLQERUbRoQUqW"},{"content":"THP a tech industry characterized by multiple smaller firms rather than one dominated by a few large players (e.g. Google Amazon Facebook in status quo).","language":"English","round":"1","link":"","infoSlide":"","division":"","topic":{},"tournamentID":"nZHihOHKbvuiGhhtsXam","id":"4PAhmfzFirAeAqlxlbr8"},{"content":"THBT the EU should grant Ukraine membership and the necessary funding in exchange for hosting all refugees seeking asylum in the EU.","link":"","tournamentID":"jTIGk8DeHHGFQRpsk85j","topic":{},"language":"English","division":"","round":"Open_Semis","infoSlide":"","id":"4PCUkbvaiXooXrvmkGiO"},{"round":"Open_Semis","infoSlide":"","division":"","tournamentID":"FJoy56lyo9s1SqE3RvFO","content":"THW remove the 5% election threshold for Islamic parties in all parliamentary elections.","language":"English","topic":{},"link":"","id":"4Peeu9ZCm5tlKg3HIcoE"},{"round":"6","language":"English","link":"","infoSlide":"","division":"","tournamentID":"wA1XDLHJESmSgLsfZ9Qe","topic":{},"content":"In liberal democracies, This House would implement a Social Credit System.","id":"4QOxhrZgSz7Ui6ashild"},{"infoSlide":"","content":"THW demand religious leaders to amend religious doctrines that belittle gender equality.","round":"","language":"English","link":"","division":"","tournamentID":"3B01KdqnCVzQEVjKcHiT","topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"id":"4QfPxfdXynb6Wj9DrXqL"},{"link":"","content":"As social justice movements, THW also embrace violent wings within movements.","tournamentID":"g7nlvxejABAgCXhGkJg8","infoSlide":"","language":"English","division":"","round":"Quarterfinals","topic":{},"id":"4QfVenzq3QVN9FbouIFw"},{"link":"","content":"Some awards in literature, theater, film, sports, etc. are granted only to people from specific minorities (NAACP awards) Motion: TH as a nominee of such an award would not accept it.","infoSlide":"","round":"Novice_Final","division":"","language":"English","topic":{},"tournamentID":"VyYxJ0FaIE4LYaWheUyL","id":"4QjnFClp5htUx4kpAYqy"},{"language":"English","tournamentID":"rTasJ7TWWuEMSXmebOaC","division":"","round":"1","infoSlide":"","topic":{},"content":"THBT, without religion, there are basically no values.","link":"","id":"4RAY58k2Eag2x375pb94"},{"content":"THW regularly publish the proposed content of international trade deals throughout the entire negotiation process.","topic":{},"infoSlide":"","link":"","language":"English","division":"","round":"4","tournamentID":"ZpOi9wuiFrLbKo4ygC2p","id":"4RKtBEE7ZyBfqAVJZWEG"},{"infoSlide":"","content":"THBT all information marked as classified by governments should become available to the public within 50 years.","tournamentID":"H2ZQZD4EPmxpktxvJnUz","division":"","topic":{},"link":"","round":"Open_Semis","language":"English","id":"4RqRhsjxNHCA3RSCHVs5"},{"division":"","round":"Octofinals","topic":{},"tournamentID":"75jspJDrwq3Ldwex90Qr","language":"English","content":"THBT developing countries should auction off their long term right to govern underdeveloped areas.","link":"","infoSlide":"","id":"4SvSNHIjmcHHouDso3uc"},{"infoSlide":"","language":"English","link":"","round":"Open_Final","division":"","tournamentID":"JtHb8gJ24LeJcHq82rm5","topic":{},"content":"THW require the ICC to prosecute Netanyahu.","id":"4SyUylLxFXNYTvTtqV09"},{"infoSlide":"","link":"","language":"English","round":"EFL_Semis","division":"","topic":{},"tournamentID":"0bpNzjTgN71TZQEkHTak","content":"THBT policies that may have significant environmental consequences should be subject to a veto by a 'supreme court' of scientific experts.","id":"4T2l5OBSfTOs8LMHc3Pd"},{"tournamentID":"gQ88d3loB2qwgD7ofmmr","round":"2","content":"THBT feminists should not campaign against polygamy in the Islamic world.","language":"English","infoSlide":"","division":"","topic":{},"link":"","id":"4TAIbxIDNW9rZij61hKg"},{"infoSlide":"","topic":{},"content":"THW abolish trial by jury.","language":"English","round":"1","tournamentID":"c7J6C6adBALyiCv5F8G1","division":"","link":"","id":"4TE9FLOVc6ZvQBr9YJnP"},{"division":"","round":"5","tournamentID":"zngB1WF8viOW2uGu6swZ","language":"English","link":"","content":"THW require deaf parents to send their children (whether deaf or hearing) to mainstream schools for their primary and secondary education.","infoSlide":"","topic":{},"id":"4V92oQwcNpqNhxF4CzmI"},{"link":"","topic":{},"content":"This House Believes That minority religions in the West should strongly encourage their congregations to refrain from public display of their faith.","infoSlide":"","round":"4","division":"","language":"English","tournamentID":"ruG3JCf2Mh62VDkchi11","id":"4WG2juA76LKEXk6Lwx5K"},{"topic":{},"content":"THW nationalise the Space industry.","tournamentID":"rinK386NjH990vvie6wL","infoSlide":"","link":"","language":"English","round":"2","division":"","id":"4X604gkGcnIpQeyUZV4e"},{"language":"English","link":"","round":"3","tournamentID":"n7qv29PmNuF5SOe42oiz","topic":{},"division":"","content":"That judges should prescribe Naltrexone instead of mandating Alcoholics Anonymous for offenders of minor alcohol related crimes.","infoSlide":"","id":"4X6oUlomICQocgaoeWGB"},{"topic":{},"content":"THBT the Gay Rights Movement Should Campaign For The Abolition of Marriage, Rather Than Marriage Equality.","language":"English","tournamentID":"oUef705Eak69UuzgVheB","division":"","infoSlide":"","round":"1","link":"","id":"4Y14SbXVC7xHeH0VMZ41"},{"tournamentID":"vgTQs0itA0pIPKzwI7CK","link":"","language":"English","infoSlide":"","topic":{},"round":"4","division":"","content":"THB the USA should withdraw from its defensive pact with Japan in the East China Sea.","id":"4YijV3oYENegYz6CYlrQ"},{"infoSlide":"","division":"","topic":{},"tournamentID":"0mv3ToZPy0AwAsRnpZBN","content":"This House believes that states should not erect statues or memorials which commemorate or glorify military campaigns and/or the service of soldiers in war.","round":"4","language":"English","link":"","id":"4YxXKqSnxHDE968Kfo3W"},{"tournamentID":"2XJwkUOw6JeegMJHT6Hl","language":"English","link":"","topic":{},"infoSlide":"","division":"","content":"THW transform the EU into a United States of Europe.","round":"3","id":"4ZGUIcStuRnaFqEOfKi6"},{"topic":{},"infoSlide":"","division":"","link":"","language":"English","round":"2","tournamentID":"o7IbmAZdAZ1UWeWnX7IL","content":"This House believes that the British Government Should Pay Reparations to Northern Irish Catholics.","id":"4ZU01DBQWAlpDATAJ9qi"},{"topic":{},"tournamentID":"yrT248aRWPJC4Vb6MsRt","round":"4","content":"TH regrets the use of extreme tactics by feminist groups in countries with poor equalities records (like Femen, Pussy Riot and their supporters).","infoSlide":"","link":"","division":"","language":"English","id":"4ZWBtWxPP8v0YQ6HxwYv"},{"tournamentID":"0M48sfM68g8U5RgkKD2l","division":"","infoSlide":"","language":"English","content":"THBT hacktivism is a legitimate tool of protest against multinational corporations.","link":"","topic":{},"round":"Open_Semis","id":"4bStt90MM2sYYYG3ALKH"},{"tournamentID":"KpispxU2MtVt41R9j5bV","division":"","topic":{},"language":"English","round":"5","infoSlide":"","content":"THW not prosecute former child soldiers for offences committed as adults.","link":"","id":"4bz4YoY5fIXls5vROLaP"},{"language":"English","tournamentID":"8QddgLiIoLsA9YscCujR","content":"THW require re-ratification of all international treaties, including the EU, by popular referenda every decade.","topic":{},"division":"","round":"3","link":"","infoSlide":"","id":"4cWSeafElVDtnvXKkyBH"},{"division":"","language":"English","tournamentID":"h5ajoFHOT7mXoe90wbQ3","infoSlide":"","topic":{},"link":"","content":"Low-level offenders shopuld have their fates determined by neighbors rather than traditional courts.","round":"2","id":"4dJlgqqp6pbMbe1rUrHH"},{"round":"18","tournamentID":"0DgXee32WEP3hxmGZExS","infoSlide":"","content":"THW Occupy Dame Street.","link":"","language":"English","division":"","topic":{},"id":"4eLLWxp2yn5EfK1x2nhE"},{"round":"Semifinals","division":"","link":"","language":"Vietnamese","content":"Chúng tôi tin rằng phong trào LGBTQ+ nên ưu tiên phát triển quan niệm “Hôn nhân đồng giới vẫn đảm bảo vai trò của một người đối với gia đình và xã hội” thay vì quan niệm “Là chính mình mặc kệ các định kiến xung quanh”.","tournamentID":"FiF24Yc0spiBkvTxiYwD","infoSlide":"Sau nhiều năm du học, Văn trở về cùng với người yêu đồng giới Ivan để thú nhân về mối quan hệ của họ. Ivan tiếp xúc với những điều gần như tươi mới của văn hóa miền quê Việt Nam - nơi có một gia đình nhiều thế hệ cùng chung sống, gắn bó; có người mẹ tần tảo hết mực chăm lo cho con; nơi coi việc lấy vợ, sinh con như một nghĩa vụ đối với đấng sinh thành.","topic":{},"id":"4f1EdF4LK9FtGN6K0SmR"},{"infoSlide":"","content":"THW not allow players born outside of the state to play for the national teams of that state.","topic":{},"tournamentID":"4ptLj1Lmq40xJg12oRVd","link":"","division":"","language":"English","round":"1","id":"4f8uxwVi5cK73tw8EqEU"},{"tournamentID":"G1sEnthTpFCqlrrU3bnJ","language":"English","division":"","content":"THW not reveal the identity of authors who choose pseudonymity.","round":"4","infoSlide":"","topic":{},"link":"","id":"4fvjzjG0EDrAiJs6xjp5"},{"language":"English","infoSlide":"","content":"This house believes that governments in developing nations should prioritize funding for early childhood development to the exclusion of funding for tertiary education.","tournamentID":"ZQk7wGWckTLOk9Y0j9z4","round":"4","topic":{},"division":"","link":"","id":"4gl4i9NVEshiSkYC8kCF"},{"topic":{},"infoSlide":"","content":"This House prefers a world where the conception of the afterlife is based on karmic balance, rather than divine mercy.","tournamentID":"lzwPRjjdpUi2iKUXkOjp","division":"","language":"English","link":"","round":"5","id":"4h9GjGERvdpLfcvsqX7H"},{"link":"","language":"English","content":"THR de-platformation of Parler.","tournamentID":"9yPqE2fe1oaHsd7ankOa","infoSlide":"Parler is an American alt-tech microblogging and social networking service. Parler has a significant user base of Donald Trump supporters, conservatives, conspiracy theorists, and right-wing individuals. Posts on the service often contain far-right content, and conspiracy theories such as QAnon. Journalists have described Parler as an alternative to Twitter, and users include those banned from mainstream social networks or opposing their moderation policies.","division":"","round":"3","topic":{},"id":"4hAfjIsq2ZzkYtLpZns9"},{"infoSlide":"","topic":{},"tournamentID":"kaKFVFzhrgSOIPlruLU6","content":"THR the glorification of startup culture.","round":"1","division":"","link":"","language":"English","id":"4jFQZ47wBfXa43ODIvBj"},{"content":"THW ban the smacking of children.","tournamentID":"JlXdLu3VijXjgOdO21tX","division":"","topic":{},"language":"English","infoSlide":"","link":"","round":"1","id":"4jJiTp2ujG6hzy8vMWME"},{"language":"English","topic":{},"tournamentID":"t2juKb62UT5HJ0kruUAw","infoSlide":"","content":"THB that the media should show the full horror of war.","division":"","link":"","round":"Open_Final","id":"4jvIrl1Ec8C9JiPsbcoA"},{"content":"THW release the Federal Reserve from the dual mandate.","tournamentID":"PGbz2bx1wifAEJU64jdo","link":"","topic":{},"division":"","round":"4","language":"English","infoSlide":"Since 1977, the US Federal Reserve has operated under a \"dual mandate\" from Congress to pursue full employment and low inflation. Under traditional macroeconomic theory, there is a tradeoff between these states exemplified in the Phillips Curve. Other central banks have different mandates; e.g., the European Central Bank has a singular focus on price stability.","id":"4jx2uxDGliSXecwDby9D"},{"tournamentID":"BXqPhfwak2R1kYHV48bp","infoSlide":"","division":"","content":"THBT the Mexican government should support vigilante groups.","round":"3.1","topic":{},"link":"","language":"English","id":"4jzq7mBjGQgmlPvsI9sd"},{"content":"THBT it is always unjustifiable to maintain friendship with somebody who use hate speech.","infoSlide":"","division":"","link":"","round":"Novice_Quarters","topic":{},"language":"English","tournamentID":"8DernPpRwzBf2YIkESEX","id":"4kmPPhhI9ToHcqIgUQPE"},{"language":"Vietnamese","infoSlide":"Hai Phượng là một nhân vật nữ trên hành trình tìm kiếm con của mình, cô thực hiện việc này gần như là một mình, không cần sự trợ giúp của cơ quan chức năng hoặc thậm chí có hành vi không hợp tác với cảnh sát.","link":"","topic":{},"division":"","round":"Semifinals","content":"Chúng tôi, với tư cách chính phủ VIệt Nam, sẽ cấm chiếu bộ phim Hai Phượng.","tournamentID":"FiF24Yc0spiBkvTxiYwD","id":"4kqHQz3tpPjR4B4JLhOv"},{"link":"","language":"English","infoSlide":"","content":"THW if it was technologically possible erase memory of the idea and events caused by Nazism.","division":"","topic":{},"round":"Open_Semis","tournamentID":"gmusL4yQ3HD8FyegVRpk","id":"4qDPhhVuKfJQ0iS3eVTF"},{"link":"","language":"English","tournamentID":"TtoxDZeWyCKcOginS4mH","division":"","round":"1","content":"THB in the right of bodily integrity of children.","infoSlide":"","topic":{},"id":"4qOD9QpwzbS4hsGGaf59"},{"division":"","tournamentID":"myGQJSUNqcxcCjm3bONn","link":"","round":"5","content":"TH prefers a world in which individuals actively use their sexual equity for personal and professional gain.","language":"English","infoSlide":"","topic":{},"id":"4sUhwNIjuSq2eeer4aAd"},{"infoSlide":"","content":"THBT cultural appropriation is a good thing.","link":"","language":"English","division":"","tournamentID":"XBFpAL1r3TobjAN8vT20","round":"6","topic":{},"id":"4sZ0esxWrOcntSHYH93F"},{"topic":{},"round":"Open_Octos","infoSlide":"","division":"","link":"","tournamentID":"Ef5RtQo9Rr0nt7Nnhncq","language":"English","content":"Should commuter allowances be abolished?.","id":"4tJlsdcb9ThV29Vkua89"},{"language":"English","topic":{},"round":"4","infoSlide":"","tournamentID":"mUHCV4981T5cYALNdYBk","content":"THBT Australian Indigenous groups should focus on expanding the powers and resources of Land Councils rather than seeking change through State/Federal Parliaments.","division":"","link":"","id":"4uE4q8TrgwG7qYJrp28n"},{"round":"3","tournamentID":"mk4ycJh6yz0VDCnkysot","division":"","link":"","topic":{},"infoSlide":"","language":"English","content":"THBT abortions are morally justifiable.","id":"4uU84DKrYzoiXUcZgVo1"},{"tournamentID":"Tix5aGpgWpddb7Va0oe6","infoSlide":"","content":"THW abolish all limitations on freedom of speech.","language":"English","round":"1","topic":{},"division":"","link":"","id":"4uZspKeZ26VsC35W2jGi"},{"division":"","tournamentID":"WACrra94379E35Be36hc","link":"","language":"English","topic":{},"infoSlide":"","round":"Open_Semis","content":"This House believes that it is unethical to bring a new child into this world.","id":"4udpZTjTgPv75ZGK3hyl"},{"topic":{},"language":"English","link":"","tournamentID":"L5MIrW7phE11xSIVutdB","infoSlide":"","round":"3","content":"This house believes that governments should promote, support, and incentivise students to attend MOOCs instead of Universities.","division":"","id":"4vCTynfkIJx9YFrPwhVA"},{"content":"Assuming that it was possible, THW abolish internet anonymity.","topic":{},"language":"English","link":"","round":"1","infoSlide":"","division":"","tournamentID":"m2l0j7TwryKeK2YnXK9e","id":"4vOlI9mOX8zO0Ogld9y6"},{"round":"3","infoSlide":"","language":"English","link":"","division":"","tournamentID":"b3eMPaD8uywgZW5hZca1","topic":{},"content":"THW (partially) staff the police through a rotating National Service.","id":"4wArSzpabrlKDuXUk46a"},{"round":"","content":"TH prefers a world where the court of public opinion is active.","language":"English","infoSlide":"'Court of public opinion' is a situation in which individuals are accused, justified and judged unofficially by public opinion. Individuals judged guilty will be treated differently, and this judgment is completely independent from that of the court of law.","tournamentID":"3B01KdqnCVzQEVjKcHiT","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"division":"","link":"","id":"4wuWeWi1sDxplQUqXQAL"},{"round":"ESL_Final","division":"","topic":{},"content":"TH, as a feminist, would adopt traditionally masculine traits and behaviours.","tournamentID":"jpLuasMJYB40s1bJk2Ia","language":"English","infoSlide":"","link":"","id":"4x4jrl7QQJh2O0MHYV2o"},{"language":"English","round":"Open_Final","topic":{},"content":"THBT violent activities to achieve anti-capitalist aims in Western societies are justified.","infoSlide":"","tournamentID":"JvpXQ1DYmWydXXgsnZ74","link":"","division":"","id":"4xPH9WcLp1wIMFoz0P0q"},{"division":"","topic":{},"content":"THBT religious institutions should to take custody of children in street situations, even without the consent of their parents.","infoSlide":"","round":"1","language":"English","link":"","tournamentID":"axWwnyCM8L14pVHljukt","id":"4xRlPeOJwuLuhQcQEQFQ"},{"content":"As China, THW fund and arm the anti-coup movement in Myanmar.","topic":{},"round":"5","infoSlide":"On February 1, 2021, the Myanmar military (\"Tatmadaw\") overthrew the civilian government led by Aung San Suu Kyi and the National League for Democracy (NLD). Since the coup, extensive violence has broken out over Myanmar, with frequent civilian-military altercations and mass violence committed by the army. The coup followed general elections last year, where the military suffered a significant defeat and refused to accept the results of the elections. In the status quo, China allegedly sells arms to the Burmese military and has blocked an official condemnation of the coup at the U.N. Chinese investment, firms, and infrastructure have been targeted by protestors.","link":"","tournamentID":"FvCiiwW1VYBNdYW8QTUA","division":"","language":"English","id":"4xZURs8yPJhvwHTcZ7of"},{"division":"","topic":{},"infoSlide":"","tournamentID":"4yVRmMNHzHW12EVIlnyZ","link":"","language":"English","content":"THBT, within broad budgetary constraints, environmental policy should be decided by unelected scientific experts selected by their peers.","round":"Open_Finals","id":"4y1HcBgIDBJms29QiWsg"},{"content":"THBT Pharmaceutical companies should be held civilly liable for the opiate crisis.","division":"","link":"","tournamentID":"hrSRQu49cq5gHsXJLBgQ","infoSlide":"","round":"2","topic":{},"language":"English","id":"4y2AdWoEw4DJGmgOF15a"},{"topic":{},"language":"Vietnamese","division":"","content":"Chúng tôi lấy làm tiếc về việc các công ty mạng xã hội (Facebook, Instagram, ...) cấm những nội dung có yếu tố phân biệt và xúc phạm.","round":"1","infoSlide":"","tournamentID":"i00RSzvK4b1TDEgnpFJd","link":"","id":"4yFrVPV1gZBukOMzDQtC"},{"language":"English","division":"","infoSlide":"","link":"","topic":{},"round":"3","content":"THBT state subsidization of art should be distributed through a random lottery.","tournamentID":"krSr8LWxSpEc6v45L1uv","id":"4ycoO7iJbmBIskYrPVdo"},{"division":"","language":"English","link":"","topic":{},"content":"THBT campaigners for refugee protection should not use pictures displaying the graphic suffering of refugees as part of their advocacy.","tournamentID":"92dIEXeOXUVvlcFeGCIr","infoSlide":"","round":"EFL_Final","id":"4yzUpoUxZvleEtjz2QxQ"},{"topic":{},"round":"5","link":"","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","division":"","infoSlide":"","language":"English","content":"Assuming there exists technology that can access and project memories, THW allow using it for evidence in court.","id":"4z6YnUT58h13GFSEsS0b"},{"infoSlide":"","link":"","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","round":"5","topic":{},"language":"English","division":"","content":"THW allow the use of evidence obtained illegally in court.","id":"4zZqYreB0TyKJSTnz5oC"},{"tournamentID":"4XrkYxI1Z9BN4Rn7DC4S","infoSlide":"","round":"2","content":"THW institute gender and racial quotas in all government cabinets.","language":"English","link":"","division":"","topic":{},"id":"4zjWkGwK1022RoczcmlA"},{"language":"English","infoSlide":"","round":"4","tournamentID":"riEZk6ypdW0s5dnVIggc","content":"THBT Virginia Tech should remember Seung-Hui Cho, the shooter, along with his victims in its memorials … and launch 33 balloons.","topic":{},"link":"","division":"","id":"4ztEqCUzU5myqLlzaWvk"},{"round":"3","topic":{},"division":"","tournamentID":"NxB6ercynISK3sISgci5","language":"English","link":"","content":"THW abolish the tax rebate on mortgage interest.","infoSlide":"","id":"511EDz4Ap9x8TXoZ8jYM"},{"topic":{},"division":"","link":"","language":"English","content":"TH AS HOODIE WILL OPT FOR THE PIG’S VALVE.","round":"4","tournamentID":"YxG2TWeoQ8BT0rpxmfxT","infoSlide":"","id":"516Qlg1g8RArpyTWqmNU"},{"content":"THBT governments have no legal or moral obligation to respond with proportionate force to armed attacks on their citizens.","round":"5","division":"","infoSlide":"","tournamentID":"tLlByvzEQCgHw5hl7kZg","link":"","topic":{},"language":"English","id":"51We8lRx8QbiBfOemp7i"},{"link":"","language":"English","tournamentID":"g87X9iRsC0CxxtZdAjMP","infoSlide":"","topic":{},"division":"","round":"2","content":"THBT LGBT+ Pride campaigns should focus on direct protest rather than celebration.","id":"52AZxDPqceJIno4pUIr7"},{"language":"English","link":"","topic":{},"round":"7","infoSlide":"","tournamentID":"BtqBGdAUsTtPKorZOcBX","division":"","content":"THBT it is in China’s strategic interest to cease all non-humanitarian assistance to North-Korea until it verifiably ends its nuclear programme.","id":"52fahUU0r1sq9ujJNM01"},{"infoSlide":"","content":"Provided that it wins control of Congress and the White House, this House believes that the Democratic Party should increase the number of justices on the Supreme Court.","language":"English","link":"","topic":{},"division":"","tournamentID":"wLO2B4MufJ4R3qOzUGM8","round":"Open_Quarters","id":"5443N1oSH12anFH5nqjQ"},{"division":"","language":"English","link":"","topic":{},"infoSlide":"","tournamentID":"XGnGWhzkfstV6wutkTXQ","content":"THW require religious establishments to have female clergy in order to qualify for tax breaks.","round":"Open_Semi","id":"54GMwxNjBvcpzqpBe0pt"},{"language":"English","infoSlide":"","topic":{},"tournamentID":"6j3LrbKUgx9arVygXUjf","content":"THP state capitalism over liberal capitalism.","round":"4","link":"","division":"","id":"54cuXu31f38gz8PqH5vC"},{"link":"","language":"English","division":"","tournamentID":"dptDC5a1y6D1HClBFEO4","topic":{},"content":"TH would prosecute the perpetrators of Bloody Sunday.","round":"3","infoSlide":"","id":"54nrN1djPL4YxD38275y"},{"division":"","content":"TH Prefers leaderless social justice movements over ones where an identifiable leader exists.","round":"5","language":"English","link":"","infoSlide":"Examples of social justice movements that are known to be leaderless: Black Lives Matter, #MeToo, etc. Examples of social justice movements that are known to have identifiable leaders: Martin Luther King Jr. for the Civil Rights Movement, Nelson Mandela for the anti-apartheid revolution etc.","topic":{},"tournamentID":"JHo8pIpzQxzUKHUwVDFf","id":"54ofNYzlTtpeA7U6R8p3"},{"content":"Chúng tôi tin rằng giáo dục phổ thông nên tập trung chuẩn bị cho học sinh những kỹ năng ngành nghề (quản trị kinh doanh, tin học, các ngành nghề thủ công, v.v) hơn là các môn học truyền thống (toán, văn, anh, ...)","round":"1","tournamentID":"uqR5rN63m5rX9CiOtJjb","language":"Vietnamese","link":"","division":"","topic":{},"infoSlide":"","id":"54qIIljIIV3enIfvQDDX"},{"round":"Novice_Final","link":"","tournamentID":"yDUOVgl6qLMa2DH8lCD5","topic":{},"content":"TH regrets the idealisation of motherhood.","division":"","infoSlide":"","language":"English","id":"54wS7Jth5hzlmnVQiaNE"},{"link":"","infoSlide":"","round":"1","division":"","language":"English","tournamentID":"SYgBNIxUimP727BA2md3","topic":{},"content":"THW make purchasing sexual services punishable by law. Info: Adults over 18 are allowed to prostitute themselves, get social security and sue for compensations. Bans can be imposed against prostitution in specific areas or at specific times. Pimping is not illegal as long as the work environment offered is suitable and the prostitute is not exploited.","id":"54zZ1EkLslmTq5eNqtJX"},{"link":"","content":"THBT it is in the interest of the European Union that the United Kingdom leaves.","topic":{},"infoSlide":"","division":"","round":"4","tournamentID":"FfDrngjMOaUCYfZgnHPC","language":"English","id":"553oZgdJ4WcgvSJRW0TV"},{"infoSlide":"Vào 2050, các robots trí tuệ nhân tạo có khả năng phỏng theo hình dạng, cuộc trò chuyện và phản ứng với các cảm xúc của con người. Tuy nhiên, trí tuệ của họ chưa cho phép họ cảm nhận cảm xúc và các cảm giác như đau đớn, hạnh phúc và vui vẻ, etc.","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"language":"Vietnamese","round":"","division":"","tournamentID":"nALUKfkpmOnWnQCzecru","link":"","content":"Trong trường hợp một người phá hủy các robot đến mức không thể sửa chữa được, chúng tôi sẽ buộc tội người đó giết người thay vì phá hủy tài sản.","id":"55HuTOhmBDklqSNtUXVl"},{"topic":{},"language":"English","infoSlide":"","round":"3.2","link":"","tournamentID":"bvHOR7Oow9PPlKPlA2BT","content":"As a gay athlete qualified for the Sochi olympics, THW boycott those Olympics.","division":"","id":"56J3YJwlzWQ8oO4ed60C"},{"tournamentID":"vOzlUiodV5GoF1ZtM5Tt","topic":{},"infoSlide":"","round":"4","language":"English","content":"THW break up big tech companies.","link":"","division":"","id":"56YDKTHbcn4cZV2Q1m5h"},{"tournamentID":"9jfZRYzidDD9sleXlrNL","topic":{},"link":"","infoSlide":"","round":"Open_Semis","division":"","content":"THBT in the event of a Syrian border attack on Turkey, NATO should come to the aid of Turkey.","language":"English","id":"58BYLUGSx6dwa2Q5pqfG"},{"division":"","infoSlide":"","tournamentID":"4BdwKPHB1LrpVYqE4E51","round":"5","language":"English","link":"","topic":{},"content":"THO the use of \"desperation science\" during the coronavirus pandemic.","id":"5ADhEWrdQnEhBgscpihL"},{"tournamentID":"djnlK5jZ2kM6hDrC6E9d","infoSlide":"","round":"Open_Quarters","division":"","link":"","language":"English","topic":{},"content":"THR regrets the market’s erosion of the nation state.","id":"5ADsa1BQ0ts2DV0Mty41"},{"topic":{},"tournamentID":"py2YomguZSylDKYhWlhK","infoSlide":"","round":"Novice_Final","division":"","content":"THBT small island nations should declare a state of emergency due to climate change.","link":"","language":"English","id":"5Aex15QWbLyC7O5aZtFP"},{"round":"3","division":"","link":"","infoSlide":"","tournamentID":"8PjX16DCJ3bPRWbiNKNn","content":"THBT the International Monetary Fund should require states in need of Bailouts to provide collateral (e.g. Mining rights, land, shares in privatised assets).","language":"English","topic":{},"id":"5AfCFNIjLg5n4m6iDJus"},{"round":"5","link":"","language":"English","tournamentID":"15hrO4GoCxXF2OIdl7fS","division":"","infoSlide":"","content":"THBT feminists should adopt \"call-in\" instead of \"call-out\" as their dominant strategy.","topic":{},"id":"5ApDHaBEJgmI0ziOV7q9"},{"topic":{},"round":"2","content":"THW not allow news media outlets to report on suicide.","link":"","infoSlide":"","language":"English","division":"","tournamentID":"6GQFhlc28xUwjga5E5G3","id":"5Bon1LxZxEL1p0GV2dbO"},{"link":"","division":"","infoSlide":"","language":"English","content":"THW place a tax on the labour of robots - Round 6.","tournamentID":"Ryhdb4JOJYP96e5oa49b","topic":{},"round":"6","id":"5D6cFLOsnz8IOjSDjEJr"},{"link":"","language":"English","topic":{},"infoSlide":"","division":"","tournamentID":"980ImkvfswyUVd54XFQd","round":"2","content":"THBT, when and where gay marriage is legal, religious institutions should be compelled to conduct gay wedding ceremonies.","id":"5D7LqvOvNnwOhYZTsv2H"},{"round":"1","topic":{},"division":"","link":"","tournamentID":"XKnRXbL5iWiOHmPMcGVz","language":"English","content":"THW allow corporations to pay higher salaries to employees who agree not to have children.","infoSlide":"","id":"5EBNlpTgJulrG3HT94GS"},{"topic":{},"division":"","infoSlide":"","language":"English","link":"","round":"2","tournamentID":"axWwnyCM8L14pVHljukt","content":"If it were discovered during an armed conflict that a population hides terrorists, THW not consider a war crime to attack civilians.","id":"5ETO2cDvqpMaMbBHc1dW"},{"tournamentID":"6tyiq2GnlmVmI452js6u","round":"5","content":"This House condemns televisions shows that glorify the rich.","division":"","infoSlide":"","topic":{},"link":"","language":"English","id":"5F6PtZL5mOHtKkfUrzGh"},{"topic":{},"link":"","infoSlide":"","language":"English","content":"That, as minorities, we would engage in respectability politics.","tournamentID":"5Qomv7BFHTKmY4PchwDr","division":"","round":"Open_Octa","id":"5FZELTwOoj6MF7JFGnY8"},{"language":"English","content":"THBT Vorrunde: Dieses Haus glaubt, der demolition of the Palasts der Republik (DDR Parliament) was a mistake.","topic":{},"round":"3","infoSlide":"","tournamentID":"YRWxNK3sQq47UacBwpjn","division":"","link":"","id":"5GN1voL8qseYhuQ1UyX8"},{"language":"English","link":"","tournamentID":"WZCqEhVlkHd8g5WoExVG","division":"","round":"2","infoSlide":"","content":"Should the prosecution and defence in criminal cases no longer be able to make deals?.","topic":{},"id":"5GycDilFW49qIkgnKRS0"},{"link":"","language":"English","infoSlide":"","tournamentID":"obhZYIJM5cyjHjWQyXep","topic":{},"round":"Open_Final","content":"THW not have children.","division":"","id":"5HHaKZ6M4CG0HmlJzwjA"},{"topic":{"publicHealth":{"check":true,"title":"Public Health"}},"tournamentID":"OqQWJjNQBpGOYwMntw3z","round":"","content":"Chúng tôi, với tư cách những quốc gia đang phát triển, sẽ ưu tiên phát triển kinh tế từ khi vắc xin Covid-19 được công bố phát triển thành công.","link":"","language":"Vietnamese","division":"","infoSlide":"","id":"5HT2YyLHSF2nGzE1bjAu"},{"language":"English","infoSlide":"","round":"2","topic":{"others":{"check":true,"title":"Others"}},"tournamentID":"KncW7pH1nDIom3xK89VG","content":"Assuming a post-COVID world, THS the trend of working from home.","link":"","division":"","id":"5JNz5FtR0zpfKSnNOLyF"},{"tournamentID":"uJGjvsaThnluwVzoHFXm","topic":{},"language":"English","division":"","round":"2","infoSlide":"","content":"THW ban social media companies from independently deplatrforming politicians.","link":"","id":"5JOfin7sQpIKhz4NQq5k"},{"round":"2","infoSlide":"","division":"","topic":{},"link":"","language":"English","tournamentID":"ZxUcdMSTBBFZQIuIsGtb","content":"THW require military training to include extensive ethical and philosophical study.","id":"5JwjLOZGm7tLmDLHU50E"},{"content":"TH regrets joining Facebook.","infoSlide":"","link":"","round":"2","language":"English","tournamentID":"DPlum9M6fh8xjiyYGBxO","division":"","topic":{},"id":"5LG3Iecb9mQZKDb7pmBt"},{"topic":{},"round":"2","content":"That the state should more harshly punish people who commit crimes against members of social groups who experience disproportionately high rates of violence regardless of that offender’s motivation.","link":"","language":"English","tournamentID":"HjQJA65fZ9igHKO8DLAP","division":"","infoSlide":"","id":"5LoPMKfy01eD8uc8X6is"},{"tournamentID":"JHo8pIpzQxzUKHUwVDFf","topic":{},"infoSlide":"","round":"4","link":"","content":"Assuming it were possible, THW allow individuals to trade in years of their life to enhance their skills, traits or appearance.","division":"","language":"English","id":"5MBRyEnbNxLYrbUziJEs"},{"round":"9","division":"","infoSlide":"","language":"English","tournamentID":"gsX4dlvvsr6lcKP3eM2T","content":"This House would deny scarce medical resources to terminally ill patients.","topic":{},"link":"","id":"5MmFzGS91LjgXkBeV47F"},{"infoSlide":"","content":"Assuming there exists the technology to divide the 40 weeks of pregnancy between two partners in any possible way, THW mandate that each partner carries for half the term.","division":"","topic":{},"tournamentID":"CEIVtMmh2XElfzcXXjzn","round":"4","language":"English","link":"","id":"5ORtKqlcf15YPNVTsIss"},{"round":"4.3","link":"","tournamentID":"1leOvfvlbNAIDzW6UnkK","infoSlide":"","content":"THBT parents are corrupted by children.","language":"English","division":"","topic":{},"id":"5ObGee2SnjzwEdkOkqmw"},{"topic":{},"infoSlide":"","round":"1","link":"","language":"English","content":"Should appeal procedures (Einspruchsmöglichkeiten) against construction projects for renewable energy be cancelled?.","division":"","tournamentID":"dYmkkVK8aVn1dCgd4UDy","id":"5Owy5Krsllbzj7mwe0Ze"},{"content":"That the European Central Bank should monetise the government deficits of Eurozone countries experiencing financial crises.","language":"English","infoSlide":"","topic":{},"link":"","division":"","round":"Open_Quarter","tournamentID":"5Qomv7BFHTKmY4PchwDr","id":"5PLfVUWg716pc0GgnDtw"},{"infoSlide":"","content":"This House Believes That the state should strongly incentivise highly educated individuals to have children.","topic":{},"round":"4","division":"","language":"English","link":"","tournamentID":"K6vtfx7dBNzsAtTkNiF1","id":"5PiIusT3beVtMg4OFNTr"},{"language":"English","link":"","tournamentID":"ZKj5YfRQe4wJF8bx4fLp","round":"Open_Semi","infoSlide":"","topic":{},"division":"","content":"This house would make insulting religion a crime.","id":"5Q7oLjshBoDO8koREj4e"},{"division":"","link":"","content":"THBT the United States should not take a stance on the conflicts in South America.","round":"6","infoSlide":"","tournamentID":"C4TfAdkoNgavFucgidJK","language":"English","topic":{},"id":"5QbTmVcFcWJ258HVCZEU"},{"language":"English","topic":{},"division":"","tournamentID":"KpispxU2MtVt41R9j5bV","infoSlide":"","round":"Open_Final","link":"","content":"This house believes that environmental NGOs should promote genetic engineering.","id":"5QbfvHADIHCd7DRkfybV"},{"infoSlide":"","link":"","content":"THBT Norway should back off from oil drilling in the Arctic.","division":"","tournamentID":"8PjX16DCJ3bPRWbiNKNn","round":"4","language":"English","topic":{},"id":"5Qc4p9ATWSc5C5T3LY44"},{"division":"","round":"2","tournamentID":"sol1oNvzZmBI1NXc28Lh","infoSlide":"","topic":{},"link":"","language":"English","content":"TH opposes left wing media using mockery to cover the far right e.g. The Daily Show, Last Week Tonight.","id":"5QsHMFkMRW3Ktm9yhTsK"},{"link":"","language":"English","round":"Open Grand Final","topic":{},"infoSlide":"","tournamentID":"5SXUtPGKmOtgXxWouFAs","content":"This House, as Moon Jae-In, would not have repatriated the North Korean defectors.","division":"","id":"5R4av6P1ac0Rrszt0kpO"},{"topic":{},"language":"English","division":"","link":"","tournamentID":"1MV3spmbrmWLKhisZDU8","infoSlide":"","content":"This House Would all movies and TV shows to introduce racial-blind casting for all characters.","round":"Open_Semis","id":"5Ru7vsbSlPLQbWDmgzLi"},{"division":"","round":"1","topic":{},"link":"","content":"THW force universities to create stricter entrance requirements, even if this would lead to fewer students.","language":"English","tournamentID":"tnPBotxO7gOOKcyCXAUw","infoSlide":"","id":"5RwrNSrkrWkRjE8kfWpj"},{"content":"Chúng tôi sẽ áp dụng hệ thống bỏ phiếu D.","tournamentID":"mAqW9Go1ryAbaaM1OY8z","language":"Vietnamese","topic":{},"division":"","round":"3","infoSlide":"Hệ thống bỏ phiếu D cho phép mỗi phụ huynh được ủy nhiệm bỏ phiếu thay mặt cho người con đang sống phụ thuộc vào thu nhập của họ. Đối với phụ huynh đang trong mối quan hệ vợ chồng, mỗi phụ huynh sẽ có thêm nửa phiếu bầu cho mỗi người con; đối với phụ huynh đơn thân, mỗi phụ huynh sẽ có thêm một phiếu bầu cho mỗi người con mà họ nuôi dưỡng. Khi người con đã đạt 18 tuổi, phụ huynh sẽ không bỏ phiếu thay mặt cho người con đó nữa.","link":"","id":"5SKzsd6P9ERMUCwkSgpn"},{"infoSlide":"","content":"Some academic and cultural institutions have a practice of awarding prizes that recognise the achievements of members of minority groups. For example, “Muslim Student Achievement Award” or “African American Writer of the Year”. Motion:THB it is legitimate for states to deny residence or asylum to immigrants who openly contradict their predominant values.","link":"","division":"","tournamentID":"VyYxJ0FaIE4LYaWheUyL","language":"English","topic":{},"round":"Open_Semis","id":"5SLuC3yWfGDwCDn6HV5b"},{"tournamentID":"wA1XDLHJESmSgLsfZ9Qe","division":"","round":"3","topic":{},"infoSlide":"","link":"","content":"This House would allow children to sue their parents for religious indoctrination.","language":"English","id":"5TQAcmjXjmuW0hNQTJ5d"},{"link":"","infoSlide":"\"Toà án dư luận\" là tình huống khi mà những cá nhân bị buộc tội, bào chữa và phán xét một cách không chính thức thông qua dư luận công chúng. Các cá nhân bị phản xử là có tội sẽ bị đối xử một cách khác biệt, và phán quyết này hoàn toàn độc lập với phán quyết của toà án.","division":"","tournamentID":"3B01KdqnCVzQEVjKcHiT","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"round":"","content":"Chúng tôi ưu tiên một thế giới nơi có toà án dư luận tích cực hoạt động.","language":"Vietnamese","id":"5V4YbBtQKSc1dmnd6jyJ"},{"content":"This house prefers a world without alcohol.","link":"","division":"","infoSlide":"","round":"Novice_Final","tournamentID":"HcngLxXLU8ahxFRQkeYc","topic":{},"language":"English","id":"5VixbnmufH1yGwQdZULk"},{"infoSlide":"","language":"English","topic":{},"tournamentID":"ZHpmROZ4G7eY4iB9dTsM","link":"","division":"","content":"THW make rehabilitation the sole criteria for releasing criminals from prison.","round":"5","id":"5W6tHbdMYBSfemWI58er"},{"language":"English","infoSlide":"","tournamentID":"G1nDRe3mbR7XzsaLbAGR","content":"THW allow to participate in general election only those people with IQ above a certain level.","division":"","round":"Open_Semis","topic":{},"link":"","id":"5X46UxvVSQZC52cT7OH7"},{"infoSlide":"","topic":{},"division":"","language":"English","round":"Open_Semis_1","link":"","content":"THW prefer to experience art knowing nothing of the artist.","tournamentID":"bvHOR7Oow9PPlKPlA2BT","id":"5Z8OxkUOXWKUkwZgGjl8"},{"infoSlide":"","content":"THBT European Leaders should not have agreed to renegotiate the terms of Britain's EU membership.","topic":{},"language":"English","round":"4","division":"","tournamentID":"bcb5yQt6p8cx9SACsvYL","link":"","id":"5ZSUIs5rkZcVYl2rrhac"},{"content":"THW Elect its Judges Democratically.","tournamentID":"ZHpmROZ4G7eY4iB9dTsM","language":"English","topic":{},"link":"","round":"14","infoSlide":"","division":"","id":"5ZcNRJvgPJsi5wvEZ8Zg"},{"tournamentID":"C09YJyBGrNu3L4IxdHCw","language":"English","round":"1","link":"","topic":{},"content":"TH, as a young Asian progressive living in the West, would opt for the 'Buddhist way of living' as opposed to a life based on capitalist values.","division":"","infoSlide":"A Buddhist way of living is a life that prioritizes spiritual satisfaction through ascetic practices. Asceticism is a lifestyle characterized by abstinence from sensual pleasures, often for the purpose of pursuing spiritual goals. Ascetics may withdraw from the world for their practices or continue to be part of their society, but typically adopt a frugal lifestyle, characterised by the renunciation of material possessions and physical pleasures, and sometimes adopt religious practices including meditating and reflecting.","id":"5ZgBFQwMH2r9W9pwkQMV"},{"division":"","round":"Open_Semis","content":"THW restart the Esperanto project.","language":"English","link":"","topic":{},"tournamentID":"4AUWV6dX7gzPml1BbN5u","infoSlide":"","id":"5a6RsK2AXfJCIaFUhjFH"},{"topic":{},"infoSlide":"","division":"","language":"Vietnamese","tournamentID":"znXRdnU2llK8fXmHlci5","link":"","round":"2","content":"Chúng tôi, với tư cách là phong trào nữ quyền, sẽ phản đối việc các nữ nghệ sĩ nhạc pop tình dục hóa bản thân trong các sản phẩm âm nhạc của họ (Cardi B - WAP, Nicki Minaj - Anaconda, ...).","id":"5bCyYvDM7uB2XylhVDvJ"},{"link":"","topic":{},"round":"5","division":"","content":"THW remove immunity from prosecution from holders of high political office.","infoSlide":"","language":"English","tournamentID":"OAcOsXro6vLkyCebuX4n","id":"5bXJTmfjue3sreZ3fJ58"},{"link":"","infoSlide":"","division":"","language":"English","round":"1","content":"THBT feminists should endorse conscripting women in the Finnish army rather than abolishing conscription.","tournamentID":"qj5XULQcWvkGn23VActf","topic":{},"id":"5dLVOCiNtTw0gvUN3fqN"},{"tournamentID":"BPe1MqSgmLovUz7nghmX","round":"Grand Final","link":"","division":"","infoSlide":"","content":"Chúng tôi ủng hộ quan niệm rằng cuộc sống là một điều diệu kỳ hơn là bể khổ.","language":"Vietnamese","topic":{},"id":"5dUyzYdZk4MgIUv4Rtrf"},{"round":"1","topic":{},"content":"THR the decline of Black militant groups.","infoSlide":"","division":"","link":"","tournamentID":"MIGnM2R39W5ZblVNkRTp","language":"English","id":"5dyBBRZi6ObyGgKdJBgr"},{"language":"English","tournamentID":"Hpsxcd5Zzu5xq9ehtKkj","infoSlide":"","division":"","topic":{},"round":"2","content":"This House regrets the thought of the \"Zero Hour.","link":"","id":"5e9AIBRZok7GrVvwI3aF"},{"infoSlide":"","topic":{},"content":"This House would consider politicians under oath when making public statements on political issues* (* thus making them criminally liable for perjury if they lie about facts).","tournamentID":"9WoIT6ofG5A9j3MeLxh4","link":"","division":"","language":"English","round":"1","id":"5gEEHxdGGnPnh1pse6o5"},{"division":"","round":"1","infoSlide":"","content":"THBT retired parents should be allowed to seek alimony payments from their adult children.","language":"English","link":"","topic":{},"tournamentID":"zNyImaL5diiDsd93AVoW","id":"5ggeu3JhKrdbKcoXns0V"},{"tournamentID":"zbDMNQdzWmUf0FHPwYDO","topic":{},"language":"English","round":"3","division":"","content":"Assuming it was logistically feasible, THW randomly swap all newborn babies at birth.","infoSlide":"","link":"","id":"5gkrmsVMKFH8UH71Spda"},{"content":"Servicemen and women are equal before the law in the Armed Forces. In practice, women are not used on the frontline (as special commandos for example). Motion: should women be employed in the frontline?.","tournamentID":"Ef5RtQo9Rr0nt7Nnhncq","round":"Open_Quarters","language":"English","link":"","infoSlide":"","division":"","topic":{},"id":"5h6moTRn84QEChx8ZpmN"},{"language":"English","link":"","tournamentID":"v3Bq7DLUeCcPyvQZjJbj","round":"2","content":"THBT writers and owners of popular canons* have a moral obligation to follow the general and clear wishes of fans (e.g. JK Rowling (Harry Potter UNiverse), Disney (Star Wars), George RR Martin (Game of Thrones Universe)).","infoSlide":"","division":"","topic":{},"id":"5hHWmlL9RDZHSQlqSO4f"},{"infoSlide":"The Association of Southeast Asian Nations (ASEAN) is a regional group/organisation that promotes economic, political, and security cooperation among its ten current members; Brunei, Cambodia, Indonesia, Laos, Malaysia, Myanmar, the Philippines, Singapore, Thailand, and Vietnam. The Rohingya people are an ethnic group from Myanmar. Most live in Rakhine State on Myanmar’s western coast. Myanmar is a majority-Buddhist nation, but the Rohingya people are primarily Muslim (though a small number are Hindu). Though Myanmar recognizes 135 distinct ethnic groups, the Rohingya are not one of them due to assertions that they are not historically a community that originated from Myanmar itself. Viewed as ‘non-citizens', the Rohingya people lack basic rights within Myanmar and are considered stateless.","round":"","content":"THBT ASEAN nations should place sanctions upon Myanmar, conditional upon the treatment of Rohingya refugees in the country.","link":"","language":"English","division":"","topic":{"irw":{"check":true,"title":"International Relations/War"}},"tournamentID":"mNwitMoNsjWupgwG8pR5","id":"5hfvwp6KODvDjozT1T8t"},{"topic":{},"infoSlide":"","round":"1","language":"English","link":"","division":"","tournamentID":"7L67NrnE93IENW8OW03k","content":"THW forcibly relocate indigenous peoples where their presence prevents the extraction/utilization of valuable resources.","id":"5hs5wa30vV0o6bkfjqOu"},{"link":"","topic":{},"tournamentID":"4yVRmMNHzHW12EVIlnyZ","division":"","content":"THW measure the efficacy of charities and strip those with comparatively low social value of their charitable status.","round":"1","language":"English","infoSlide":"","id":"5hwirPxZ3oHur7YioKVv"},{"topic":{},"content":"Chúng tôi sẽ không công nhận tư cách nghệ sĩ cho những nghệ sĩ có lý lịch đen (sử dụng chất cấm, có hành vi bạo lực, ngoại tình , ...) bất chấp khả năng nghệ thuật của họ.","link":"","language":"Vietnamese","infoSlide":"","round":"3","tournamentID":"mkrRVvz5EWSZie6LBtCH","division":"","id":"5ibjUsZ17CYhefw1Xij0"},{"topic":{},"tournamentID":"AKtcioaPMHcBM5C3fCCP","link":"","infoSlide":"","round":"1","language":"English","content":"THBT the EU should openly fund secular, pro-democracy and pro-human rights political parties and civil society groups in countries with oppressive regimes.","division":"","id":"5jVuGB2cxnqfUbLaKI0M"},{"infoSlide":"","link":"","topic":{},"tournamentID":"m6JzV67uYJSVBRpAbgL7","round":"1","content":"THBT artists should refrain from actively and openly interpreting their own art.","division":"","language":"English","id":"5jzCMkYmGtN8r7R0g9js"},{"language":"English","topic":{},"link":"","round":"Open_Semis","content":"THW let Iran develop nuclear weapons.","infoSlide":"","tournamentID":"iFjWzR2mR3mBo4zzvGeZ","division":"","id":"5kXt5IZ27rWb00sEfbtC"},{"infoSlide":"","content":"THW ONLY SELECT INDIVIDUALS WITH THE BEST CREDENTIALS IN SCIENCE AND TECHNOLOGY.","topic":{},"language":"English","tournamentID":"myGQJSUNqcxcCjm3bONn","link":"","division":"","round":"Open_Final","id":"5l1nt8QF4wE6cIoE2uXC"},{"topic":{},"language":"English","content":"TH condemns the use of military drones in all military operations.","infoSlide":"","round":"2","tournamentID":"DLFJWaIyHnSlvFofovjc","division":"","link":"","id":"5l38YK47fPMDjt3NmmqR"},{"language":"English","content":"THBT China should fix North Korea.","topic":{},"link":"","division":"","round":"Open_Semis","infoSlide":"","tournamentID":"YZNcM4Wgq9Um4e7kNLdH","id":"5lULhZQ38cQ8t5lLPQ1Y"},{"division":"","link":"","round":"4","tournamentID":"zNrcKb4T08IU7LfuYSUz","language":"English","infoSlide":"","topic":{},"content":"THW ban all lobbyist activity.","id":"5lhNHXD7oh4x9nbjrCS3"},{"tournamentID":"V4GiH1luZDgYtx44QdOh","infoSlide":"","language":"English","topic":{},"content":"THBT creative industries (e.g. music, film, paintings, etc.) should oppose computational creativity.","round":"Semifinals","link":"","division":"","id":"5mGJ3HVv0uKYaMCJAnGK"},{"link":"","division":"","topic":{},"tournamentID":"ZsVD7wkjXkMvxPWmTARb","language":"English","infoSlide":"","round":"1","content":"THW ban international adoption.","id":"5mUnMdm8RRgHTlXtAa2k"},{"language":"English","round":"Open_Final","link":"","tournamentID":"ZsVD7wkjXkMvxPWmTARb","infoSlide":"","topic":{},"division":"","content":"THW ban re-election of politicians that did not fulfil their promises.","id":"5mpIIPjN8RxyVeBFkfF4"},{"link":"","infoSlide":"","tournamentID":"3NTAi2gNk5Uyy3NuACO5","round":"Open_Quarter","division":"","topic":{},"language":"English","content":"THBT it is in the interests of organized religions to adopt the \"rigorous mission scheme\".","id":"5n96HZc3M5qV7IyQ9a15"},{"language":"Vietnamese","link":"","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"round":"Quarterfinals","content":"Chúng tôi tin rằng KPOP đã đem lại nhiều lợi ích hơn là tác hại cho ngành công nghiệp âm nhạc, các nghệ sĩ và nghệ thuật của Châu Á.","tournamentID":"KncW7pH1nDIom3xK89VG","division":"","infoSlide":"","id":"5nB68jxuJzGM4CfT4eTy"},{"infoSlide":"","content":"THBT governments should take public steps to disrupt and discredit the use of cryptocurrencies (e.g. Bitcoin).","tournamentID":"vgTQs0itA0pIPKzwI7CK","division":"","topic":{},"language":"English","link":"","round":"Open_Semis","id":"5nusIg6iqzACJtfm4cnV"},{"infoSlide":"","link":"","tournamentID":"Kv7YNlz47VitorsH2zY7","division":"","topic":{},"language":"English","content":"THW allow individuals to opt out of employment provisions relating to health and safety in return for increased pay.","round":"1","id":"5oCBXwqJ9uUbMQUhl47L"},{"topic":{},"division":"","language":"English","content":"THW abolish intellectual property rights over music.","round":"3","infoSlide":"","tournamentID":"Ba2zBwHOYMuoyQZQbecz","link":"","id":"5pJ8RyZtadRxG4egsSrB"},{"link":"","infoSlide":"","tournamentID":"sv4AWOKZYbl1PfCObw21","division":"","content":"THR the focus on the personal identity and private actions of politicians.","topic":{},"round":"Open_Quarter","language":"English","id":"5q24oppM0gxrvaiN4XcY"},{"round":"6","content":"In times of economic crisis, THW abolish the minimum wage.","topic":{},"infoSlide":"","link":"","tournamentID":"WcNueZiJXeg9z82dijdL","division":"","language":"English","id":"5qnFPmw1ctVoEB3e1Fjo"},{"round":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","content":"TH, as Mrs. Nở, would refuse to accept this gift.","division":"","language":"English","topic":{"hr":{"title":"Human Relationships","check":true}},"infoSlide":"Nở is an expectant mother bearing her first child but her husband unfortunately passed away. Nở's family have decided to buy her an AI that is 90% similar to her husband based on information about her husband (his voice, personality and appearance).","link":"","id":"5qsijxPisY7eZjgC7Ajc"},{"topic":{},"round":"2","content":"THW hide the diagnosis of pseudo-epilepsy from the patient.","language":"English","infoSlide":"","division":"","tournamentID":"48Ba3dAlJxoct1Z9f7GA","link":"","id":"5qwuJqIpTIaiRHBdmgiz"},{"tournamentID":"041lRDdS5oaD5orDuk8q","topic":{},"link":"","content":"THBT the entire European Union should adopt the ban on communist symbols.","infoSlide":"","round":"2","division":"","language":"English","id":"5rIFiOkcAKVkbFmS6cMi"},{"infoSlide":"","topic":{},"tournamentID":"xUGmMsj95M2w5CV6WYVA","division":"","link":"","content":"THW allow central banks to use quantitative easing for the purpose of government investment as opposed to the support of the financial services.","round":"4","language":"English","id":"5rkl7iWGkxV3UNILdisi"},{"division":"","tournamentID":"OLVGf3rE3KKirerr2vyk","round":"4","topic":{},"language":"Vietnamese","content":"Chúng tôi ủng hộ việc tạo ra \"trái phiếu ASEAN\" để hỗ trợ phục hồi kinh tế khu vực sau Covid-19.","infoSlide":"Trái phiếu ASEAN (ASEAN bonds) sẽ là giấy nợ phát hành để toàn bộ khối ASEAN có thể vay tiền từ những nhà đầu tư nước ngoài.","link":"","id":"5rm1Pfg2vsbiIxc9oWRB"},{"round":"3","link":"","infoSlide":"","tournamentID":"S2mG18EWYdh2bPEadyd9","division":"","topic":{},"content":"THR Celebrity CEOs.","language":"English","id":"5s31xTa5vhehkGsPCfvE"},{"infoSlide":"","division":"","round":"Open_Final","tournamentID":"uHY8OFiOXYb0VdlJt20c","language":"English","content":"This House believes that prominent individuals outside politics (e.g. business leaders, celebrities) from developing countries should emphasize the positive aspects of their country, rather than the negative aspects when speaking on an international platform.","topic":{},"link":"","id":"5s6dfW6CMNh5R22IoC25"},{"infoSlide":"","division":"","content":"You have been a moderate Republican for the last 10 years, and identify the most with the GOP establishment. THR the 2016 election of Donald Trump as president of the USA.","link":"","round":"Open_Quarters","tournamentID":"cTxMF0myfwbQDPdL8Ral","language":"English","topic":{},"id":"5s86pCgzS05hAelGNM24"},{"link":"","topic":{},"language":"English","content":"The year is 1389, THW not go to Kosovo.","tournamentID":"4ptLj1Lmq40xJg12oRVd","round":"Open_Semis","division":"","infoSlide":"","id":"5sOwfgEb3rcBqKg6QInz"},{"infoSlide":"","language":"English","content":"During economic crises, This House Believes That states should prioritise fiscal stability (i.e. balancing budget) over increasing public spending.","topic":{},"link":"","division":"","tournamentID":"MKOx1AvBmfWL7cHrRXg2","round":"3","id":"5srKHhkWUV0MbUrMGyiv"},{"tournamentID":"YaTXOaEvPKh8XHB3VTBK","division":"","round":"6","content":"This House Believes That Supreme Court justices should adopt 'original meaning' theories when interpreting constitutions.","infoSlide":"","language":"English","link":"","topic":{},"id":"5t4bjQPYidb9jMwd6StI"},{"round":"3","language":"English","tournamentID":"dgRU54McMXqo1MXISAFt","content":"TH, as Narendra Modi, would reverse the 'Make in India' policy.","infoSlide":"","link":"","division":"","topic":{},"id":"5tNNPf2g23haDFboDLtn"},{"round":"1","content":"THW ban memory erasing technology (Eternal Sunshine of the Spotless Mind).","tournamentID":"UPn4syqdx9T0fJyHm2Ej","link":"","division":"","infoSlide":"","topic":{},"language":"English","id":"5tmffhapSQCqKuRAQskB"},{"topic":{},"tournamentID":"0DgXee32WEP3hxmGZExS","language":"English","division":"","round":"31","infoSlide":"","link":"","content":"THW End All State Funding For The Arts.","id":"5uPsXEB8cLrFiL9oPCJ9"},{"division":"","infoSlide":"","language":"English","round":"Open_Finals","tournamentID":"OqjcHyR2p27nlpvjQ5oq","content":"TH prefers a world where memories and accurately recorded and available for external playback.","link":"","topic":{},"id":"5vpig8cAOzqoe3shDZlc"},{"round":"4","topic":{},"language":"English","tournamentID":"1bHNYzF6GWRqdpr3f5vt","content":"That ASEAN should allow the free movement of labour.","link":"","infoSlide":"","division":"","id":"5wHgdfoPciFy7zgfIQrQ"},{"topic":{},"language":"English","content":"TH supports the creation of a new country, open to all where the only functions of the government are to provide security and to protect property rights.","tournamentID":"x0FqHVU6TNo1z8egQZct","infoSlide":"","division":"","link":"","round":"4","id":"5wd2sXUwLuyHP2ERu7vN"},{"content":"THW Ban Porn.","tournamentID":"WYCV7Sl9idtN2tulRuB2","topic":{},"division":"","round":"Open_Final","link":"","language":"English","infoSlide":"","id":"5xBJhFgroe2uIjTp4gTa"},{"link":"","round":"1","infoSlide":"","division":"","content":"THW hold religious leaders liable when identifiable adult believers are harmed by adhering to doctrinal teachings.","tournamentID":"JDfeMpzRWbEVXloSgRZp","language":"English","topic":{},"id":"5y2SWR1uBMdFRikGuFyR"},{"link":"","content":"THBT liberals should refrain from using terms such as bigot, racist, sexist etc to describe people or positions they disagree with.","language":"English","infoSlide":"","division":"","tournamentID":"KpispxU2MtVt41R9j5bV","round":"1","topic":{},"id":"5yIxdL2V6zSmfoE60o8g"},{"infoSlide":"","tournamentID":"yIBeLUbSZELobFcw30WY","language":"English","round":"Open_Semis","link":"","division":"","topic":{},"content":"THBT Greece should ban the Golden Dawn.","id":"5yllLB8YKJMKlOh7riZF"},{"content":"TH, as a wealthy retired contact sport player, would sue their former teams for health problems obtained during their careers.","language":"English","round":"Open Quarterfinals","topic":{},"link":"","division":"","tournamentID":"CBVZREYhjV5bhCHOuWjU","infoSlide":"","id":"5zCclVSiiUWb73s2pWFs"},{"tournamentID":"yhJgdE0VFcsqlvWffep1","link":"","topic":{},"content":"A pill exists that ensures \"moral behaviour\", THW ban the morality pill.","division":"","round":"3","language":"English","infoSlide":"","id":"5zwlndbfrMsi7Mpo3hUN"},{"topic":{},"language":"English","division":"","infoSlide":"The Sims is a life-simulation video game where you control all the activities of a virtual character. There now exists a technology that allows real humans to opt into this game as characters. For the duration of the game, these “Human-Sims” will be under the control of another person. Once the game ends, the Human-Sims will have no memory of this experience. They will also be financially rewarded.","content":"THW allow the “Human-Sims” game.","link":"","round":"2","tournamentID":"9yPqE2fe1oaHsd7ankOa","id":"60DQNJhbdY2Lf7xu2KlM"},{"tournamentID":"RF6WJZV8JYPwFqSpNxlR","link":"","round":"3","infoSlide":"","language":"Vietnamese","division":"","content":"Chúng tôi, với tư cách phong trào nữ quyền, sẽ tích cực phản đối sự tuyên truyền rằng phụ nữ nên Việt Nam \"chủ động tránh thai, tròn vai thiên chức\".","topic":{},"id":"619x7QIcfsZLR89e1d4V"},{"round":"ESL_Quarters","infoSlide":"","division":"","content":"THBT men should consistently call out and correct chauvinistic claims by colleagues and co-workers.","tournamentID":"BtqBGdAUsTtPKorZOcBX","topic":{},"link":"","language":"English","id":"61eg9lB9AFJ49guyISZH"},{"division":"","tournamentID":"vOzlUiodV5GoF1ZtM5Tt","language":"English","link":"","content":"THBT it is legitimate for oppressed communities (e.g. poor African American communities in the US) to not pay taxes towards the government.","round":"3","infoSlide":"","topic":{},"id":"61fmh7uPzyXxT8905Fcd"},{"language":"English","tournamentID":"STaEp3vuXBuTT2bP0vgU","division":"","round":"Open_Quarters","link":"","infoSlide":"","topic":{},"content":"THW remove unemployment benefits.","id":"61tm3ZDg7HqqLXdHWB3h"},{"content":"TH, which is a woman, would not make any cosmetic changes to her appearance, including but not limited to makeup, shaving, and plastic surgeries .","link":"","division":"","tournamentID":"3KT5cUfqBjWrhC0DWPAs","topic":{},"round":"2","infoSlide":"","language":"English","id":"61vSu5E1xcOWEjrMP5XE"},{"topic":{},"language":"English","content":"THBT it is legitimate for Israel to unilaterally strike Iranian nuclear facilities if current talks fail.","link":"","division":"","infoSlide":"","round":"3","tournamentID":"hPTwc7UsLmuGu68x4FDK","id":"631oI3JMAFMoymOChYIC"},{"topic":{},"division":"","link":"","infoSlide":"","language":"English","tournamentID":"3XjkQ3xKYDnPNq07ZvXY","content":"TH supports western feminists wearing the headscarf in solidarity with Muslim women who wear the hijab who have faced islamophobia.","round":"Open_Final","id":"63kQ9MpH78YfsjOQjdW4"},{"division":"","tournamentID":"roH9ICCjwscIePFGM61P","language":"English","round":"1","link":"","content":"In an ideal feminist world, this house prefers a societal norm of having stay at home dads to a societal norm of having both parents working.","topic":{},"infoSlide":"","id":"64I8W5IM5S58ZKdDThD2"},{"infoSlide":"","tournamentID":"IK2tQhXBb3v4DJKRH1Ve","round":"3","link":"","division":"","content":"THB the West should make use of its imperialist power.","topic":{},"language":"English","id":"64Sv5Bu7Zg1ponjzSCtT"},{"division":"","topic":{},"content":"Chúng tôi tin rằng hệ thống giáo dục nên thưởng học sinh dựa trên kết quả hơn là dựa trên nỗ lực.","tournamentID":"mkrRVvz5EWSZie6LBtCH","link":"","infoSlide":"","round":"1","language":"Vietnamese","id":"65NvOPKyZ26JVoY5Jnxe"},{"language":"English","content":"THW exclusively fund domestic NGOs in developing countries as opposed to western NGOs working in developing countries.","infoSlide":"","link":"","round":"3","topic":{},"tournamentID":"rkItJ1M9he5ApXeOVBjJ","division":"","id":"65TPBdLQYPTK8h6hcNOQ"},{"topic":{"philosophy":{"check":true,"title":"Philosophy"}},"division":"","link":"","infoSlide":"","content":"Chúng tôi lấy làm tiếc về sự đề cao quan niệm \"đi tìm ý nghĩa\" trong cuộc sống..","tournamentID":"FZTHJ19pUWQG2SZNeOvr","round":"","language":"Vietnamese","id":"65oD6Xm5bztXKWGOo3BG"},{"language":"English","topic":{},"tournamentID":"uJGjvsaThnluwVzoHFXm","link":"","division":"","round":"Open Semifinals","infoSlide":"","content":"TH prefers to live an average anonymous life in South Korea over being a K-Pop star.","id":"66HaNmucdp4yI983OPPl"},{"content":"TH, as Bernie Sanders, would have stayed in the race as opposed to dropping out.","infoSlide":"","language":"English","tournamentID":"m6JzV67uYJSVBRpAbgL7","division":"","link":"","round":"Open Octofinals","topic":{},"id":"66KR4ViXznmokQ53Xxuz"},{"language":"English","round":"1","topic":{},"tournamentID":"irYSGlHj76RukmyCwWOG","link":"","content":"In liberal democracies, THW ban the media from reporting on ongoing sex offence trials.","division":"","infoSlide":"","id":"66KVWW85EAej4LtbBMeA"},{"language":"English","division":"","tournamentID":"WfHILzlB4oGzI34Iwqaw","link":"","round":"Open_Quarters","content":"THBT the European Union should impose punitive measures on the UK in the Brexit negotiations.","infoSlide":"","topic":{},"id":"67BdvrVH23iXgFazlH1D"},{"topic":{},"content":"THR the environmental movement's focus on changing consumer habit (using bamboo straws, not eating meat, etc) to protect the environment.","language":"English","division":"","infoSlide":"","round":"Semifinals","link":"","tournamentID":"2gsOERqtXqSETJffXbnj","id":"67Fdlylzaf3gEykHVLPw"},{"infoSlide":"","division":"","tournamentID":"4NEhQx2m4XcXy6SxnoqS","round":"7","link":"","topic":{},"content":"TH supports the foundation of an independent Kurdic state.","language":"English","id":"67l5DQX61nQGJPbPCiD9"},{"infoSlide":"","tournamentID":"jfv01DUCOrtLcsyMO6qo","language":"English","content":"THS the withdrawal of companies from Hong Kong.","link":"","division":"","topic":{},"round":"6","id":"680h7XpH3MbAvFF12VKR"},{"round":"Open_Final","division":"","tournamentID":"zcO3QSYEVhsJojnUCCNl","language":"English","content":"TH support unlimited human body enhancement in all areas of life.","infoSlide":"","link":"","topic":{},"id":"68VCiavOOxafbmx0pAQp"},{"topic":{},"content":"In countries with largely agrarian economies, THP governments providing higher quality utilities over providing MSPs.","tournamentID":"9yPqE2fe1oaHsd7ankOa","division":"","language":"English","infoSlide":"","round":"Semifinals","link":"","id":"693qEVUq3jUxuyvnz3o5"},{"tournamentID":"LSZbchiNq33jtWsW0vWQ","division":"","round":"4","infoSlide":"","content":"THW have a maximum wage.","language":"English","topic":{},"link":"","id":"69AGQs6WEICbaFPvqGlN"},{"language":"English","division":"","round":"Open_Semis","link":"","topic":{},"tournamentID":"o83Oqm9vDtGaG6SVldke","content":"This House believes that the civil and criminal legal system has no business considering or regulating behaviour that exclusively occurs in online virtual worlds such as ‘Second Life’.","infoSlide":"","id":"69ApkDSko46e4Iu8iltn"},{"content":"THB that people who give HIV to others must pay drug support.","division":"","link":"","round":"Open_Final","infoSlide":"","topic":{},"tournamentID":"gsX4dlvvsr6lcKP3eM2T","language":"English","id":"69oa3H0Dx2NI1YXGAV9U"},{"content":"THW introduce irreversible laws to be programmed into robots.","tournamentID":"pF81od0IQBmQsiQKDxoc","topic":{},"infoSlide":"","round":"2","link":"","division":"","language":"English","id":"6AKISaY5nLCx724C9S0V"},{"round":"3","content":"THW unconditionally lift non-arms related sanctions on North Korea.","link":"","topic":{},"language":"English","division":"","infoSlide":"","tournamentID":"YcxOXVvo0TolX2RquRlw","id":"6AnDI8pa1NXcpMKBbn4k"},{"language":"English","content":"THBT national states should not support minority cultures to the detriment of the majority culture.","division":"","infoSlide":"","topic":{},"link":"","round":"5","tournamentID":"mk4ycJh6yz0VDCnkysot","id":"6CPO9ijGmfWV16iPsxwA"},{"tournamentID":"fHaBEm9PW7QYO4ZKFbwi","round":"Open_Final","link":"","topic":{},"infoSlide":"","language":"English","content":"THBT organized religion causes more harm than good.","division":"","id":"6CWEUon26LMBODLSFgnr"},{"content":"THW introduce a tax on \"low brow\" entertainment in order to subsidise \"high brow\" art.","division":"","topic":{},"language":"English","infoSlide":"","tournamentID":"9STOHMmWtLnanVavJzB2","round":"3","link":"","id":"6D6IMUKfscCLcFWMNuG2"},{"division":"","language":"English","tournamentID":"irYSGlHj76RukmyCwWOG","content":"THBT the attacks by Palestinians on civilians actively supporting the Israeli government (politicians, businessmen, etc.) are justified ways of fighting for independence.","link":"","infoSlide":"","topic":{},"round":"4","id":"6DdMc6Jz4HQNhFu0xE0Y"},{"division":"","infoSlide":"","link":"","tournamentID":"nXN2yUG7soxwCp4xidzj","content":"Cecil Rhodes was the creator of the Rhodes scholarship for Oxford. He was also a British imperialist known for beginning enforced racial segregation in South Africa and for his belief in the superiority of the Anglo-Saxon race. He is commemorated in a number of ways at Oxford University, including through a prominent statute. A student movement called “Rhodes must fall” is campaigning for the university to remove all references to him from the campus. THBT Rhodes must fall - Grand Final.","round":"Open_Final","language":"English","topic":{},"id":"6EMb0aRjFYjCCwmuaes6"},{"topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"}},"round":"","content":"Chúng tôi tin rằng phong trào LGBTQIA+ nên đấu tranh để loại bỏ sự tồn tại của hôn nhân thay vì đấu tranh cho quyền bình đẳng.","tournamentID":"nALUKfkpmOnWnQCzecru","division":"","infoSlide":"","language":"Vietnamese","link":"","id":"6EMppTRNdSGNnat5hOzZ"},{"link":"","topic":{},"infoSlide":"","division":"","language":"English","round":"5","tournamentID":"lmRNEraLEkD31bc6Nbnn","content":"This house opposes the centrality of sport to national identity.","id":"6Ebd4B9D7CduUcmCGsiN"},{"content":"THBT Natsu would have been happier with Lisanna (after her return) instead of Lucy.","infoSlide":"Fairy Tale: Natsu is one of the main protagonists of Fairy Tale. He was orphaned as a child as his dragon father mysteriously disappeared. After being orphaned, he joins the wizard guild Fairy Tale and grows up there. Fairy Tale has taken in other children, such as Lisanna, as well, and they grow up together as each other's family. Natsu and Lisanna are shown to be extraordinarily close as children, and it is heavily implied there was mutual romantic interest. Lisanna however disappears one day in a magical accident as a pre-teen and is presumed dead. Years later, Natsu meets Lucy on an adventure and she joins the guild. Lucy becomes one of the main characters, goes on many adventures with Natsu, and they become extraordinarily close. On one adventure, the main cast discovers Lisanna in an alternative universe and brings her back to the guild. Lisanna as both a pre-teen and adult is shown to have moderate magical strength. Although he does reconnect with Lisanna as friends, in the show Natsu is shown to continue to prioritize his friendship with Lucy. They continue to travel together, grow stronger together, and eventually become a canon couple.","link":"","tournamentID":"Z9WBfg1yDJgSR34BGYp1","round":"3","division":"","topic":{},"language":"English","id":"6EmGcnqbpTBKiZm15Ni6"},{"infoSlide":"","language":"English","tournamentID":"Pt1Z2dTdUinRviVucbZA","link":"","round":"Open_Quarter","division":"","content":"That, as Melissa, we would reveal the truth to the world.","topic":{},"id":"6G2RRGJubLKYc1x3G6jV"},{"division":"","content":"THBT a rise in global oil prices is in the interest of the West.","round":"Open_Quarters","tournamentID":"Hk8f1ASR1JhJdfu9tmfK","infoSlide":"","language":"English","link":"","topic":{},"id":"6G6gYOB8icqmR93wpab9"},{"content":"Thw not allow revolutionary leaders and their families in post conflict societies to run for political office.","language":"English","link":"","division":"","infoSlide":"","round":"2","tournamentID":"5oYH1K5oILZA6OqwhGhz","topic":{},"id":"6GP4cOdwOLhMBzfTxZmF"},{"infoSlide":"","language":"English","round":"1","link":"","topic":{},"division":"","content":"THW ban unpaid internships.","tournamentID":"AZDyYLAFE8Mh41BShv5m","id":"6GZcPHQO9b3sT0u496u4"},{"division":"","topic":{"religion":{"title":"Religion","check":true}},"tournamentID":"nALUKfkpmOnWnQCzecru","round":"","link":"","infoSlide":"","content":"Chúng tôi sẽ mạnh tay đàn áp các đại giáo đoàn.","language":"Vietnamese","id":"6Ge278SzBc8g0u6IyMn0"},{"tournamentID":"eSbb5Usou5B1Drm2Dmyl","content":"This house regrets Oxford University's decision to provide more time in their exams.","link":"","language":"English","division":"","round":"3","topic":{},"infoSlide":"","id":"6Gp6U6WQDHb9dZLW6D0e"},{"language":"English","topic":{},"content":"THS medical tourism.","link":"","division":"","round":"1","infoSlide":"","tournamentID":"ovD89w3g4H3GjEFmXcRL","id":"6HgYKMuKcUZZRfyji1vM"},{"division":"","infoSlide":"","topic":{},"tournamentID":"EP5HDm4G3OfMlciId6YM","content":"This House believes that it is unjustified to assist evil regimes in systematically persecuting members of their identity group in order to mitigate and moderate the regime's abuses (e.g. Israel Kasztner in Nazi-controlled Hungary, Wang Jingwei in Japan-occupied China).","link":"","language":"English","round":"EFL_Final","id":"6IMd3DMVmQW05uhjORT2"},{"language":"Vietnamese","infoSlide":"","topic":{},"link":"","round":"2","tournamentID":"mkrRVvz5EWSZie6LBtCH","content":"Chúng tôi, với tư cách những nhà hoạt động nữ quyền, sẽ ủng hộ án tử hình cho các tội nhân quấy rối phụ nữ ở các quốc gia có tình trạng bất bình đẳng giới nặng nề.","division":"","id":"6IPD7m1WgEYStjsktYU0"},{"round":"1","language":"English","link":"","division":"","content":"That, as a feminist parent, we would send our daughter to an all-girls school as opposed to a comparable co-ed school.","infoSlide":"","tournamentID":"n7qv29PmNuF5SOe42oiz","topic":{},"id":"6IcVWW8UjWHfqO6BrxNu"},{"round":"4","topic":{},"infoSlide":"","division":"","link":"","tournamentID":"vURFmLn4wdqX6ZbK0ini","language":"English","content":"THW allow for free and open use of CRISPR technology in all medical research.","id":"6IdVAERx1JhacuYwENbe"},{"topic":{},"link":"","content":"THR the Mbokodo narrative.","tournamentID":"CBVZREYhjV5bhCHOuWjU","infoSlide":"Mbokodo is a Nguni term for a rock. Over the course of history, the slogan \"You strike a woman, you strike a rock\" has been used to express the resilience and strength of women, eventually leading to the coining of the term mbokodo as reference to women. It alludes to women being as solid as rocks.","language":"English","round":"Open Semifinals","division":"","id":"6InREpkMzq9BmUH2tUsx"},{"division":"","round":"2","infoSlide":"","content":"THW not allow media to report on crime reported by refugees.","language":"English","tournamentID":"3thiHP0WT1SpBvjVmMFz","topic":{},"link":"","id":"6IoNVJWjIF0nyJ0x4dw4"},{"infoSlide":"","content":"THW abolish all US military aid to Saudi Arabia.","language":"English","tournamentID":"mBBGfJmUYufw4KNTlYoR","link":"","topic":{},"division":"","round":"Open_Finals","id":"6IoxwONnXRxv6xI49gD3"},{"round":"3","language":"English","topic":{},"division":"","link":"","content":"THBT activists should abandon the use of doxxing in order to advance their movement.","infoSlide":"","tournamentID":"EpANk5V3VQNFWagnktFN","id":"6J5lDHGU3wuEs7SrrUMO"},{"content":"TH supports ‘direct action’.","round":"1","topic":{},"infoSlide":"","division":"","tournamentID":"IxT6Qaz01G1Db87fU73z","language":"English","link":"","id":"6JNtVOJ8trD3i2fGzNJG"},{"round":"Open_Final","infoSlide":"","link":"","topic":{},"language":"English","content":"This house believes that the International Criminal Court should use private military contractors to arrest people wanted by the Court.","division":"","tournamentID":"bxhnmh9CZq21XJcRU2BX","id":"6JldDzUaJ7xoR8dqkDSL"},{"content":"THS authoritarian reformers in newly formed states. (Eg: Lee Kuan Yew, Castro, etc).","round":"4","topic":{},"division":"","tournamentID":"rinK386NjH990vvie6wL","link":"","language":"English","infoSlide":"","id":"6KbpXuZoRBThixa3DjJd"},{"round":"4","language":"English","tournamentID":"y6YpD63Uuk3t3fbBC7Tk","content":"THBT the BDS movement does more harm than good.","topic":{},"infoSlide":"","division":"","link":"","id":"6Keu3nwBQTJXjfHe0WnJ"},{"round":"1","link":"","division":"","language":"English","infoSlide":"","topic":{},"tournamentID":"euj80C6nkxdgEhkTaI0g","content":"THW require all criminal defendants to use a government-provided lawyer.","id":"6LKdG6SOAu0QEzExiEOq"},{"topic":{},"tournamentID":"6KzwZLwpFJv7ICEsknpO","language":"English","content":"This house, as Israel, supports the Jewish People’s Intelligence Services Doctrine.","division":"","link":"","infoSlide":"","round":"5","id":"6LoLb85kIwSQIiZzwcqc"},{"division":"","language":"English","topic":{},"link":"","round":"Open_Quarters","content":"THBT Republika Srpska Should Secede from Bosnia and Herzegovina.","tournamentID":"IpWyfCcksctR86jKX66g","infoSlide":"","id":"6MSMJGPiiowqNOuo10Fp"},{"round":"3","link":"","content":"THW abolish the speaker tab.","language":"English","division":"","infoSlide":"","topic":{},"tournamentID":"7lMrN2aiwSzD5rzPFwHz","id":"6N0V0NB7S4JGNi55JeoY"},{"link":"","content":"THS affirmative action policies targeted at women in business.","round":"4","tournamentID":"c5YoJ5qkI2DsrQ7PAhum","language":"English","topic":{},"infoSlide":"","division":"","id":"6NGeyRyT2gHwHZMysNoz"},{"round":"2","language":"English","division":"","topic":{},"link":"","content":"THP a world in which no one sought revenge.","tournamentID":"CBVZREYhjV5bhCHOuWjU","infoSlide":"","id":"6Ny8AlBOzdDfYuIBWWGR"},{"division":"","language":"English","round":"Novice_Final","tournamentID":"a7Zdmoc5GpY9KlKkDEVg","content":"THS the destruction of historical artifacts seen to glorify atrocities.","infoSlide":"","link":"","topic":{},"id":"6OLYWQ04xuDyc43QhimP"},{"content":"That we regret the ongoing prominence of cricket in postcolonial countries.","division":"","language":"English","topic":{},"round":"3","link":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","infoSlide":"","id":"6OhLkaBcNysf8JXBfMN4"},{"tournamentID":"0FjoYPaEyMvQKDhX7FzX","division":"","link":"","topic":{},"round":"3","language":"English","infoSlide":"","content":"THW ban the teaching of Romeo and Juliet in schools.","id":"6OleW0xJtK4HLQlhyXWN"},{"division":"","link":"","content":"THBT Queer movements in the developing world Should attempt to dissociate themselves from modern Queer movements in the west.","language":"English","topic":{},"infoSlide":"","round":"1","tournamentID":"SfEIDDzpv3y19flsWYFH","id":"6PLvjfEKsQj1c6xiIFNR"},{"topic":{},"round":"1","tournamentID":"aL5gnSWQ3OQq2Lb3mRix","content":"THBT the media should not report on the personal lives of politicians.","link":"","infoSlide":"","language":"English","division":"","id":"6PQMnAlZ5yajIxoaxKvh"},{"round":"4","language":"English","topic":{},"tournamentID":"NBT7RwLHeAApXuOtrQpt","infoSlide":"","division":"","link":"","content":"THBT NATO should end all political, economic, and military support for the Russian Commonwealth.","id":"6Pj2nYMgYKuGy8dw2sWK"},{"content":"This house would ban under 18's from appearing on reality TV shows.","division":"","language":"English","round":"1","tournamentID":"XryJ0KVA6GiVngJthv3K","topic":{},"link":"","infoSlide":"","id":"6PnFuapRXiyuMNNbSF5B"},{"tournamentID":"0NYsqnVN9ZPLLJvXAZdI","content":"THW ban footballers who commit racist actions for life.","link":"","infoSlide":"","topic":{},"round":"4","division":"","language":"English","id":"6Q5XyuqRdPKFFe0L936i"},{"division":"","round":"","topic":{"politics":{"title":"Politics","check":true}},"link":"","tournamentID":"LlsxibXteGBGML9aitY2","infoSlide":"Trốn thuế: việc trả thuế ít hơn mức cần thiết hoặc trốn trả thuế hoàn toàn một cách bất hợp pháp. Độc tài: chế độ chính phủ được thể hiện bằng việc chính phủ thâu tóm quyền lực bằng cách đàn áp chính trị và giới hạn quyền tự do chính trị cá nhân.","content":"Chúng tôi tin rằng việc các cá nhân trốn thuế trong một chế độ độc tài là chính đáng.","language":"Vietnamese","id":"6QFvWiq9kAJtz69QLTqf"},{"content":"Chúng tôi tin rằng các quốc gia thuộc địa trước đây chỉ nên dạy văn học bản quốc thay vì văn học ngoại quốc.","link":"","infoSlide":"","topic":{"education":{"check":true,"title":"Education"}},"division":"","tournamentID":"Wpv6iXJkIPUXYIkl0dST","round":"Semifinals","language":"Vietnamese","id":"6QIlWGxYVi8cCTRjg244"},{"content":"“THW Vote for Mitt Romney to be the Next President of the United States of America”.","topic":{},"language":"English","tournamentID":"0sEnEupsuf6b6sQ6tqCB","infoSlide":"","round":"Open_Semi_4","division":"","link":"","id":"6QNJgDvhV0rqmU4raYVN"},{"link":"","infoSlide":"","round":"1","tournamentID":"3b2nSsxJIMIXNPKJTeQx","language":"Vietnamese","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"division":"","content":"Chúng tôi sẽ cho phép những người từng phạm trọng tội trở thành cảnh sát.","id":"6QQiQmZyLia7kwsRljoq"},{"tournamentID":"kveNSL63Zo9kOYIUJlW2","language":"English","division":"","infoSlide":"","round":"3","content":"Should works of art no longer be restored?.","topic":{},"link":"","id":"6QVi7TyJ3VXHQuUbXRkI"},{"tournamentID":"K2iCOiuVrS3D8RzjGpNe","round":"2","infoSlide":"","topic":{},"content":"THW Make Substantial Military Service a Condition for Running for the Presidency of the United States.","link":"","language":"English","division":"","id":"6R0lKgWS66HZjwhq8xPb"},{"tournamentID":"6UClYEkoQLViAru2xei4","link":"","topic":{},"round":"2","division":"","infoSlide":"","content":"TH, as the US Democrats, would give funding for the border wall in order to definitively end the government shutdown.","language":"English","id":"6Rvw1cs594bZ1YHHST73"},{"topic":{},"infoSlide":"","language":"English","link":"","tournamentID":"zUT5H7Cgh7l0a0sJSIba","division":"","content":"During the first centuries AD there was no religious law demanding clerical celibacy in the Catholic sect of Christianity, and there is no direct mentioning of such a requirement in the New Testament. Celibacy is being thought to have been universally adopted by Catholiscm after a decision made by a council in 12th century. TH, as Pope Francis, would remove the requirement of catholic priests to take a vow of celibacy.","round":"ProAm_Final","id":"6S8jy3XBsw66n7a7nCS5"},{"language":"English","infoSlide":"","division":"","tournamentID":"aywt5Kt0TqoeqngKQ0I4","round":"7","link":"","content":"THW ban all private campaign contributions and instead implement a voucher system, wherein every citizen of voting age would receive a R600 voucher that can only be used to finance political campaigns of the citizen's choosing.","topic":{},"id":"6SKJkozmDipgRnmhScsx"},{"round":"Open_Semi","language":"English","topic":{},"infoSlide":"","link":"","division":"","content":"THBT the US should pursue Modern Monetary Theory.","tournamentID":"4qwhZS2zOsdzzkyQlcaW","id":"6SQwXSTMUfoQwU8bx3t8"},{"language":"English","infoSlide":"","round":"Open_Quarters","division":"","tournamentID":"XzAs4cMVeW91DHEgxF0k","content":"This House prefers to follow a religion where one's fate in the material world is predetermined, rather than one where one's choices and actions influence their fate.","link":"","topic":{},"id":"6SToZSuxvVHQy0VZX0w5"},{"link":"","infoSlide":"","topic":{},"round":"Open_Final","division":"","language":"English","content":"TH, as the Putin administration, would choose to artificially decrease Russia's oil price.","tournamentID":"KMhBpmj1LWPj5LN0aFUK","id":"6SbhebUPtCvgu1MI2Q0h"},{"division":"","topic":{},"infoSlide":"","round":"Open_Quarter","link":"","tournamentID":"ubSWFCyfoCllO0KSjdjy","content":"THBT the provision of emergency loans by the International Monetary Fund (IMF) and European Central Bank (ECB) should never be accompanied by fiscal or monetary policy conditions.","language":"English","id":"6StNW999F8eoXKb5q5Oq"},{"topic":{},"language":"English","content":"THW allow parents to remove their children from sex education classes.","round":"11","division":"","infoSlide":"","tournamentID":"0DgXee32WEP3hxmGZExS","link":"","id":"6TMr2KJT2w3fYCRW7ZWh"},{"content":"TH regrets the Colombian government's decision to hold a referendum on the FARC peace deal.","topic":{},"infoSlide":"","tournamentID":"uvPQBxEeKffyHUkLa5PV","language":"English","division":"","link":"","round":"Open_Semis","id":"6TS6Zeo1MqEHQAeZk5o2"},{"infoSlide":"","round":"5","language":"English","division":"","link":"","topic":{},"tournamentID":"H2ZQZD4EPmxpktxvJnUz","content":"THW ban all youth wings of political parties in developing countries.","id":"6UXovcpd9hT1xlrhM47z"},{"tournamentID":"7xqpYA72Sruch4lr5Uzj","division":"","content":"THW take the children of the Amish into care.","topic":{},"link":"","language":"English","round":"ESL_Semis","infoSlide":"","id":"6WkR2u1GrCXpX1AN16mM"},{"tournamentID":"S3X3UeH5zIQsGlSEttfv","language":"English","topic":{},"infoSlide":"","division":"","round":"4","link":"","content":"THBT God has no place within these walls - just like facts have no place within organised religion.","id":"6XAOkQzWQNw8HR3BBp1s"},{"link":"","topic":{},"division":"","content":"This house regrets South Africa's Rainbow Nation narrative (long prep).","language":"English","tournamentID":"3eIqWfLtHDOZRmzJt05T","infoSlide":"","round":"3","id":"6Xc1PHYI3PIDkVz7HAnh"},{"tournamentID":"wLO2B4MufJ4R3qOzUGM8","link":"","language":"English","topic":{},"division":"","content":"This House Would Not Consume The Art of People Who Have Engaged in Gravely Unethical Behavior.","round":"1","infoSlide":"","id":"6YIySiKcpCKGnVRRe4QX"},{"infoSlide":"","round":"2","content":"Should participants in the Olympics be allowed to publicly express their political opinions?.","topic":{},"link":"","division":"","tournamentID":"3um2E0WAP1AdkOXCUDfL","language":"English","id":"6ZPhDGUZsLMfEozsM7hs"},{"link":"","topic":{},"infoSlide":"","round":"5","division":"","content":"TH, as Japan, would remove Article 9 from its constitution.","tournamentID":"3Gl2F99bU3ZHa2ZjcrUR","language":"English","id":"6ZQcL3kIXIDFhPVnygqC"},{"tournamentID":"tLlByvzEQCgHw5hl7kZg","round":"Open_Semis","topic":{},"language":"English","content":"THB the ICC should not issue warrants for suspects during ongoing conflicts.","infoSlide":"","division":"","link":"","id":"6aFjDzlkhvO1gN3xrM1K"},{"content":"This House believes that developing countries should privatise their State-Owned Enterprises (such as airlines, railway utility companies).","division":"","language":"English","round":"9","link":"","topic":{},"infoSlide":"","tournamentID":"EP5HDm4G3OfMlciId6YM","id":"6adKwsviraJx6rvRQ2X0"},{"link":"","infoSlide":"","language":"English","topic":{},"tournamentID":"jDG8reClMB02DIxLR5LL","division":"","round":"5","content":"In cases where individuals are convicted of leaking state secrets, THW allow their convictions to be nullified by a national referendum.","id":"6atwzdGqteMVSY4pPKT6"},{"division":"","link":"","infoSlide":"","tournamentID":"qDUBTulIlHZP0un39LYK","content":"THB that the recent Geneva agreement with Iran will fail.","language":"English","round":"Open_Final","topic":{},"id":"6bddGdh3p9AteRPqHmwy"},{"division":"","topic":{},"infoSlide":"","language":"English","round":"6","link":"","content":"THW allow the global free movement of people.","tournamentID":"4gQdvZTMKBCThKxmhfmU","id":"6cQ9f20UKRktdDKSiQUA"},{"tournamentID":"1bBjpR84rI88s6EveWzm","link":"","language":"English","round":"1","infoSlide":"","division":"","content":"THBT that national boards should have the right to disallow a player from participating in international domestic sporting leagues.","topic":{},"id":"6cenpu5rP95hUuEa7pIh"},{"language":"English","content":"TH would attend the Queer Liberation March rather than the Stonewall50 March.","infoSlide":"","tournamentID":"9akG27VqSvbqsF3kGa1l","link":"","topic":{},"division":"","round":"1","id":"6dDQiDDmkJj6uQFd6wzj"},{"tournamentID":"o60DawGVHvdGOC58c4vF","topic":{},"content":"TH supports the recasting of male action heroes and superheroes as female.","infoSlide":"","division":"","language":"English","link":"","round":"3","id":"6dh6pajY3XQxqmq6IlMF"},{"division":"","link":"","tournamentID":"tnPBotxO7gOOKcyCXAUw","content":"THW force schools to offer students intensive interaction with different worldviews.","language":"English","infoSlide":"","topic":{},"round":"4","id":"6dmZH4NuelWXtGkju9yc"},{"topic":{},"tournamentID":"PFH5XRScthpwd2dxC2T5","content":"THW prosecute women whose lifestyle severely endangers their future child’s quality of life.","language":"English","infoSlide":"","division":"","link":"","round":"Open_Semis","id":"6dzkChlvSS0U8bC91TAl"},{"round":"3","content":"THW grant amnesty to members of drgu gangs operating in violent areas if gang leaders end all turf wars.","link":"","topic":{},"division":"","tournamentID":"ZjN9B5kqPitiGVpXIpHO","language":"English","infoSlide":"","id":"6eKfZJDs1CmuiYIo98Lj"},{"language":"English","division":"","round":"2","topic":{},"tournamentID":"VmS29bKnoZWYDeWGOc08","link":"","content":"Should modes of energy production that significantly alter the Umweltnieschen (surrounding/environment?) be banned?.","infoSlide":"","id":"6ecKnx6BXxAeExV23pAh"},{"division":"","content":"This House regrets the Humanization of Villains in Film and Media [i.e Joker].","infoSlide":"","round":"1","language":"English","tournamentID":"ZQk7wGWckTLOk9Y0j9z4","topic":{},"link":"","id":"6gtRI9HhxbVx4UrWDWzm"},{"round":"2","topic":{},"language":"English","division":"","infoSlide":"","content":"THW act now to prevent quantum computing becoming a reality.","link":"","tournamentID":"U5yvbgLSUvue8vCmib81","id":"6hmzUOkXCgJItEhAWd1z"},{"content":"THW Vorrunde: THW rewrite the Grimm fairytales in a gender neutral way (Dieses Haus würde die Grimmschen Märchen gendergerecht umschreiben).","link":"","topic":{},"tournamentID":"6SkyoBySWDSJCqeHrA9S","round":"3","infoSlide":"","division":"","language":"English","id":"6hu7dVI6CuNduVwVrpI0"},{"content":"THW allow police to temporarily suspend social networking sites in the interest of restoring law and order.","link":"","language":"English","infoSlide":"","round":"16","tournamentID":"0DgXee32WEP3hxmGZExS","division":"","topic":{},"id":"6ipCvNcozNkZJaa3vma2"},{"tournamentID":"xQkVRRUcXZJgGzxXZ2t0","division":"","content":"THBT the state should systematically use subconscious manipulation to nudge citizens towards good choices.","topic":{},"link":"","infoSlide":"There is growing evidence from behavioral economics that seemingly trivial alterations in the way decisions are presented can substantially affect choices. For instance, printing smiley faces on the electricity bills of low-usage households decreases their future electricity consumption. As another example, consumers presented with a list of financial choices are more likely to choose items placed near the middle of the list.","round":"Open_Quarters","language":"English","id":"6jhbb5P6sg1DsmohImt8"},{"round":"3","division":"","tournamentID":"PFH5XRScthpwd2dxC2T5","infoSlide":"","language":"English","link":"","topic":{},"content":"THW take away the right to host the 2018 World Cup from Russia.","id":"6k648to6G1OhK5VwvR8j"},{"round":"ESL_Semis","tournamentID":"zngB1WF8viOW2uGu6swZ","content":"In countries with few female politicians, THB it is good to have a politically active ‘first lady’.","language":"English","link":"","topic":{},"division":"","infoSlide":"","id":"6kBnIAPDjeIdRXC8281W"},{"round":"4","language":"English","tournamentID":"Z9WBfg1yDJgSR34BGYp1","content":"THW not use the NerveGear.","link":"","division":"","topic":{},"infoSlide":"In the universe of Sword Art Online, technology has progressed to the point where people can participate in virtual reality (VR) worlds by putting a helmet-like contraption called the \"NerveGear\" on their heads. The NerveGear functions by receiving brain waves directly from its users and sending corresponding inputs, which allow users to feel experiences (via the five senses, for instance) in VR which are indistinguishable from those of real life. Users can visceral experience getting better at a skill, as well as feel physical pain during battles.","id":"6kWfECDqYg6XBhI4WiER"},{"round":"3","language":"English","link":"","content":"TH, being a single woman, would sleep with their boss if they knew it would lead to a career rise.","topic":{},"infoSlide":"","tournamentID":"5YavcNMFjpdq8R1u3M2H","division":"","id":"6lf7kzSi3nNpLfvlUxaO"},{"language":"English","link":"","round":"Junior Semifinals","tournamentID":"JHo8pIpzQxzUKHUwVDFf","division":"","topic":{},"content":"THBT states should never rescue failing companies.","infoSlide":"","id":"6lyMh8sFXwrMTmWxP86P"},{"content":"This house would not use images of gratuitous violence as means for political mobilisation.","link":"","tournamentID":"roH9ICCjwscIePFGM61P","round":"6","infoSlide":"","division":"","language":"English","topic":{},"id":"6n94vzswiSAPOUCZYnOt"},{"link":"","division":"","topic":{},"infoSlide":"","content":"THW impose a tax on unhealthy foods.","tournamentID":"iARNjQG0MiYXxp1Qk22E","language":"English","round":"1","id":"6o4SlYQtz3wE0t8zRzTL"},{"tournamentID":"2gsOERqtXqSETJffXbnj","division":"","content":"Chúng tôi ủng hộ sự gia tăng sử dụng robot tình dục.","round":"Quarterfinals","link":"","topic":{},"language":"Vietnamese","infoSlide":"","id":"6pTtNieJR5WSEsopGrgE"},{"content":"This House Believes That schools should emphasize the moral failures and wrongdoings of people considered to be national and social heroes (e.g Churchill, Gandhi, Mother Teresa).","infoSlide":"","tournamentID":"ptDJAxuw5pGiwabyHZil","topic":{},"round":"Open_Semi","division":"","link":"","language":"English","id":"6pZ4G0dGXBMqKCSGYU7b"},{"topic":{},"division":"","infoSlide":"Queer theology is a theological method that has developed out of the philosophical approach of queer theory. Queer theology begins with an assumption that gender non-conformity and gay, lesbian and bisexual desire have always been present in human history, including the Bible.","language":"English","round":"7","content":"THBT the queer community should actively promote queer theology at the expense of critique to religion.","tournamentID":"CBVZREYhjV5bhCHOuWjU","link":"","id":"6poGakUwNUKDKsU9KDUH"},{"content":"This House Would allow political parties to make binding electoral promises that, once broken, will immediately trigger reelection.","infoSlide":"","language":"English","division":"","link":"","tournamentID":"MKOx1AvBmfWL7cHrRXg2","round":"9","topic":{},"id":"6q3heJts2882ZwDjFAPK"},{"link":"","language":"Vietnamese","topic":{},"round":"Grand Final","content":"Chúng tôi, với tư cách là 1 sinh viên tiềm năng, có tư tưởng tiến bộ, vừa tốt nghiệp đại học, sẽ lập tức kiếm tối đa tiền có thể (làm việc cho các tập đoàn lớn, công ty nước ngoài...) rồi đóng góp từ thiện, thay vì làm việc trong mảng hoạt động xã hội (NGO, ...)","division":"","tournamentID":"OLVGf3rE3KKirerr2vyk","infoSlide":"","id":"6qp7JLdjMgNCLp8l0C7y"},{"tournamentID":"TjdO3rhaUn53D48P0jlp","round":"1","division":"","language":"English","link":"","infoSlide":"","topic":{},"content":"THW give Parliament the right to determine the moment a monarch steps down.","id":"6quB37xzpnB30omNUNhx"},{"topic":{},"round":"2","language":"English","link":"","content":"THBT British national curricula should portray a unanimously and graphically negative account of the impact of British colonialism on its foreign subjects.","infoSlide":"","tournamentID":"qA0UqqN9np2leDGCNcck","division":"","id":"6rhx8jqofYMq55eiuY4g"},{"infoSlide":"","content":"THBT former colonising countries should pay substantial reparations to the countries they colonised.","link":"","topic":{},"tournamentID":"eNRfEfbvRNeRnZhk4TS2","language":"English","round":"2","division":"","id":"6sKaWHy1vsz67j7jKRPy"},{"link":"","language":"English","content":"THS granting legal personality to rivers and lakes - Semi Final 1.","infoSlide":"","topic":{},"tournamentID":"Ryhdb4JOJYP96e5oa49b","division":"","round":"Open_Semis","id":"6tM2fLbPqRWLQFOy3GPN"},{"tournamentID":"1bBjpR84rI88s6EveWzm","content":"THP to live in a world where personal success and failure are seen as a consequence of random factors rather than personal choice.","division":"","infoSlide":"","link":"","round":"Novice_Final","language":"English","topic":{},"id":"6tROd8qbO4GC3LHSuZRs"},{"topic":{},"tournamentID":"SJ2vZr9NzMvtMMGarKue","content":"This house believes that secular democracies with substantial religious communities should create special courts where issues can be settled on the basis of religious law.","division":"","infoSlide":"","link":"","language":"English","round":"Open_Final","id":"6toaS5vo2I4Hz2J4HPpl"},{"content":"THP a geniocracy over rule by democratic representation.","division":"","round":"Open_Semi","language":"English","topic":{},"tournamentID":"jDG8reClMB02DIxLR5LL","infoSlide":"","link":"","id":"6v6dm40tt3MBreielexP"},{"topic":{},"link":"","language":"English","infoSlide":"","content":"THR human ability to adapt to social adversity.","division":"","tournamentID":"ZQk7wGWckTLOk9Y0j9z4","round":"Open_Quarters","id":"6vQ6WBK6MLyB8ETBtjsC"},{"link":"","division":"","infoSlide":"","language":"English","round":"4","topic":{},"content":"THR the rise of celebrity preachers.","tournamentID":"seLxlAUewt8fbZdlsCGC","id":"6vULnfYatXiBN0eNjG2C"},{"division":"","round":"1","link":"","content":"THP antiheroes as the dominant female archetype in literature and film.","language":"English","infoSlide":"","tournamentID":"efp9mMZFiy8fVwkom17I","topic":{},"id":"6vZrFdsDHyYzLAcTZwFy"},{"link":"","language":"Vietnamese","topic":{},"round":"Grand Final","tournamentID":"SE4KfMNAU58WSM6yajEF","division":"","content":"Giả sử việc tráo đổi không bao giờ bị phát hiện, chúng tôi sẽ nói với cặp đôi nghèo rằng đứa trẻ của họ đã chết và đưa đứa bé sống sót cho gia đình giàu có.","infoSlide":"","id":"6w2NpFehEgfM7yXjXOqR"},{"tournamentID":"1bHNYzF6GWRqdpr3f5vt","content":"That Lebanon should abolish the confessional system.","topic":{},"infoSlide":"","language":"English","link":"","round":"2","division":"","id":"6w70BK5kr25sYAFroC9Z"},{"division":"","tournamentID":"0M48sfM68g8U5RgkKD2l","topic":{},"infoSlide":"","language":"English","round":"6","link":"","content":"THBT in the era of the Internet we should adopt a global hate speech law.","id":"6wMgqwSIG8WCJwqmwXvi"},{"tournamentID":"tp2xo2eFva2we2bqlQBC","division":"","infoSlide":"","round":"Open_Semi","topic":{},"content":"TH, as the UK conservative party, would hold a second Brexit referendum.","link":"","language":"English","id":"6wdL2w0Sz20oheXfOxjc"},{"link":"","infoSlide":"","division":"","language":"English","tournamentID":"a6rNMpZKAK9f2nCSkXu1","topic":{},"content":"This House Would break up Amazon.","round":"3","id":"6wzgd2mzTDS8ZmQhuCd4"},{"content":"THW require children from 18 years old to pay for the money that their parents/guardians spent on bringing them up.","topic":{"education":{"check":true,"title":"Education"}},"tournamentID":"37eWQ7OoHqsPgaN53lHV","language":"English","round":"","link":"","infoSlide":"","division":"","id":"6xIG5258mjhSTxKYusTc"},{"tournamentID":"BXqPhfwak2R1kYHV48bp","division":"","language":"English","infoSlide":"","link":"","content":"There is a potion which can stop you falling in love. TH, as an 18 year old, would take the potion.","topic":{},"round":"Novice_Final","id":"6xK4dWuJTVT9bbA9UwZh"},{"infoSlide":"","language":"English","content":"THW prosecute attempted murder and murder as the same crime.","tournamentID":"yrT248aRWPJC4Vb6MsRt","topic":{},"division":"","link":"","round":"1","id":"6xnxztAscTzF6K378zNk"},{"infoSlide":"","round":"9","content":"THW give social welfare in the form of vouchers.","topic":{},"language":"English","tournamentID":"0DgXee32WEP3hxmGZExS","link":"","division":"","id":"6yF5F2CWj7ioGn0qsnRr"},{"round":"6","content":"THO the portrayal of female retributive violence.","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","link":"","topic":{},"division":"","language":"English","infoSlide":"","id":"6zXknAEO07kld9vUBSQP"},{"division":"","language":"English","round":"5","link":"","topic":{},"content":"THBT African Union states should withdraw from the International Criminal Court and set up an African alternative.","infoSlide":"","tournamentID":"vTB5rmh37ZMzdOCJ34sF","id":"70TtWU8ACh2O50TGWpEk"},{"round":"3","infoSlide":"","language":"English","tournamentID":"JlXdLu3VijXjgOdO21tX","content":"THBT eurozone countries that are in danger of default should be forced to give up control over taxation and budget spending in addition to receiving a bail-out.","division":"","link":"","topic":{},"id":"70fmglnhC9xVYALn1YsB"},{"content":"THW give harsher punishments to those who commit crimes during riots.","topic":{},"round":"1","infoSlide":"","link":"","division":"","language":"English","tournamentID":"Te8RVa4tAIQJaY0sFp5C","id":"72GakB9XhXS97jKxiIKo"},{"infoSlide":"","tournamentID":"rMtZQSWssQ8170WIyJTX","topic":{},"link":"","language":"English","division":"","round":"2","content":"TH welcomes the rise of art that celebrates a lack of economic wealth.","id":"72MnhxYIABfnJ88dsUtN"},{"content":"This House would prevent the development of geoengineering techniques.","division":"","round":"2","link":"","tournamentID":"lWGI0B8QpTMEA8NW8UYQ","language":"English","infoSlide":"","topic":{},"id":"72Mw7863aEIDDd1nw0g0"},{"division":"","round":"3","infoSlide":"","link":"","tournamentID":"wYsVMTqiPYP1HFjzExu2","language":"English","topic":{},"content":"THW legalise all forms of hatespeech.","id":"72QmLcanUpCtc86i1ZoE"},{"link":"","division":"","round":"3","tournamentID":"fD5a3Vi9JDUEndfjCOKz","topic":{},"language":"English","content":"THW require that all marginal increases in funding for healthcare technology be spent on whatever NICE believes most cost effectively maximises Quality Adjusted Life Years.","infoSlide":"","id":"73iwVa5bVO7SosAR1Z9r"},{"tournamentID":"lFdTm9Bd7AxKRkVImhbS","division":"","infoSlide":"","link":"","topic":{},"round":"Open_Semis","content":"THBT the ICC should not have pursued any charges related to the 2006 post-election violence in Kenya.","language":"English","id":"74X3u0JWEohxEnxooVXT"},{"content":"This House believes that developing nations should place restrictions on rural-urban migration.","language":"English","round":"Semifinals","infoSlide":"","division":"","topic":{},"tournamentID":"DxF0p5X2fi9LhbzCFGTd","link":"","id":"74azvbbEuYPls7rqTGeF"},{"link":"","tournamentID":"0uv0Q5NYNxSkCbhPLLRo","content":"Post the 2020 elections, and regardless of its outcomes, THBT the progressive faction of the Democrat Party should split to form a new major party.","topic":{},"division":"","round":"2","language":"English","infoSlide":"","id":"74f7MHaqWcGb9ZJ4J07H"},{"tournamentID":"ZpOi9wuiFrLbKo4ygC2p","topic":{},"content":"THS the Animal Liberation Front.","link":"","infoSlide":"","round":"3","division":"","language":"English","id":"74nyQWSnPq8WVezdKaJ5"},{"division":"","infoSlide":"","language":"English","link":"","tournamentID":"SPjgjrpUBIPs6H9gmx9P","topic":{},"round":"Quarterfinals","content":"That we would create a beauty tax.","id":"74vVRTUBZI5BtNrFFMWH"},{"tournamentID":"Z2fhe3NoSvpEOVSzVxzj","topic":{},"link":"","round":"1","division":"","language":"English","infoSlide":"","content":"THW allow the use of bounty hunters.","id":"75DbGNWP3mANLhtyrVbc"},{"content":"This house, as Iran, would cease all support for military groups in the Middle East (e.g. Hezbollah, Hamas, Houthis, etc.).","division":"","infoSlide":"","link":"","round":"7","tournamentID":"vS5BTr7lDW40h5Qw31FI","language":"English","topic":{},"id":"75W21mLpiJGErFRWTzb0"},{"language":"English","infoSlide":"","round":"5","division":"","tournamentID":"YbdPFTE9FbO3iQjZo87D","topic":{},"link":"","content":"THBT consumers should predominantly aim to buy locally produced goods and services.","id":"76IaIQUzPu9H6TSSIcNC"},{"infoSlide":"","division":"","link":"","round":"0","topic":{},"tournamentID":"DfdqiFdfgcruP1pBNiHK","content":"THW make voting a use it or lose it right.","language":"English","id":"76jBNuvtRaIz7jRQRblr"},{"link":"","tournamentID":"yhJgdE0VFcsqlvWffep1","division":"","infoSlide":"","topic":{},"language":"English","content":"THW allow prisoners to choose death over life sentence.","round":"Open_Quarter_3","id":"771rRw8zcmIm9e3r4Mwu"},{"round":"5","link":"","division":"","content":"TH, as India, would embrace China’s One Belt One Road initiative.","language":"English","tournamentID":"0EfM3HXUbP8eg9asv3MM","topic":{},"infoSlide":"","id":"775QhGkj1z0Q3AtOqdXR"},{"language":"English","topic":{},"division":"","link":"","tournamentID":"Pt1Z2dTdUinRviVucbZA","round":"3","infoSlide":"","content":"That, as Clutch Mami, we would sign with a major record label rather than remain independent.","id":"77QEP4XJVWe8I6budoOl"},{"division":"","tournamentID":"3eIqWfLtHDOZRmzJt05T","language":"English","infoSlide":"","topic":{},"content":"This House would welcome a resurgence of Pink Tide Values in Latin American Politics.","round":"Open_Final","link":"","id":"77kjdWaA5sVLnZZKZgcG"},{"division":"","topic":{},"tournamentID":"NxB6ercynISK3sISgci5","infoSlide":"","round":"2","link":"","language":"English","content":"You call the internet provider to take down the filter, while your children are present.","id":"77pcclY84WctVmoAWNiX"},{"link":"","round":"Open_Semis","language":"English","content":".THW Support the Bill.","division":"","tournamentID":"6GQGSjlsY612FPwbXRbB","topic":{},"infoSlide":"Disgruntled with NSA spying on US citizens, two senators from opposing parties have introduced a bill banning companies in California from providing essential utility services to the agency – including cutting off its computer-cooling water supply.","id":"78260SCFqsOEeqQY1hla"},{"tournamentID":"UHsyrV6WVu0fgh5gHyPf","infoSlide":"","language":"English","topic":{},"link":"","content":"TH applaudes that the representatives of the Member States on the European Council and on European Parliament adopt as criteria for decisions what is best for the citizens of their own countries and not what is best for the European citizens.","division":"","round":"1","id":"78HfBMVw4ldwKxidhcsl"},{"content":"TH Regrets the Rise of the Career Politician.","round":"5","language":"English","link":"","infoSlide":"","division":"","tournamentID":"8vo3c8Tz12muCmAoWSv2","topic":{},"id":"78LTjzic6sqePBczJjO8"},{"topic":{},"division":"","link":"","infoSlide":"","language":"English","content":"THW transfer all state funding for elite sportspersons to youth academies.","round":"1","tournamentID":"swAbmAXdPnojWIXuZFwm","id":"78Wmjm60boTRTEgVQrVm"},{"link":"","tournamentID":"caeYE7341tdQiO1TJafq","topic":{},"infoSlide":"","content":"THS the rise of Syriza.","round":"6","division":"","language":"English","id":"79CEoUX2Wepjyld7WdRh"},{"content":"THBT in order to be eligible for public funding, art must be subject to a double-blind test, in which it is judged anonymously by an art critic, and by members of the public against the work of a 5-year-old.","round":"4","link":"","topic":{},"tournamentID":"JcJtvTXBcNJ3kYX5noH9","infoSlide":"","division":"","language":"English","id":"7B0AbbgmFG0oU9IuA3jS"},{"tournamentID":"SYgBNIxUimP727BA2md3","division":"","topic":{},"infoSlide":"","round":"3","link":"","language":"English","content":"THW return artworks stolen or expropriated by the Nazis, without regard to property rights, laws and statutes of limitation that might block such a return (info and here).","id":"7B8DT2UfHa3IyCsa8HEi"},{"language":"English","infoSlide":"","tournamentID":"khQAvAFibcPAXBKfxTNY","link":"","division":"","content":"THBT schools should actively seek to instill a strong sense of patriotism.","topic":{},"round":"1","id":"7BDgaCWo955Y9Bem5JFp"},{"language":"English","round":"3","infoSlide":"","tournamentID":"MNBafFvHXt5WwIet1zGa","division":"","content":"THW ban media sources from taking institutional stances on the innocence or guilt of people who have been charged with a crime, but not yet convicted or acquitted.","topic":{},"link":"","id":"7BIfM8fHxDMv0dlK4L76"},{"division":"","language":"English","infoSlide":"","round":"Open_Final","tournamentID":"1cqzoXItQEaNAhU2qjNL","link":"","content":"Should the European Court of Justice be given the power to annul national laws that violate European values upon request of the European Parliament?.","topic":{},"id":"7BJIpoD8miJOAnfTFBVO"},{"round":"Novice_Final","tournamentID":"9hmPqfKzlDmhAISeJsts","topic":{},"division":"","link":"","infoSlide":"","language":"English","content":"Thw allow voters to repeal legislation using citizen referenda initiated referenda passed by a ⅔ popular vote majority.","id":"7BSKjlBOdGp6boRqnaOR"},{"tournamentID":"4gQdvZTMKBCThKxmhfmU","round":"7","language":"English","link":"","content":"THW believes that it is legitimate for parliaments to delegate sovereignty to the EU without any need for referendum.","infoSlide":"","topic":{},"division":"","id":"7C2tfCrFMfhWhy3Wb67b"},{"link":"","topic":{},"content":"THBT prominent civil society activists should choose not to run for public office.","tournamentID":"HlR3H86XBK4mqvL9v5HT","round":"Open_Final","infoSlide":"","division":"","language":"English","id":"7CXrs8sxMPe409rgLTbh"},{"content":"THBT communities that have been victims of atrocities should emphasise the narrative of the 'banality of evil' when interpreting those atrocities.","language":"English","division":"","infoSlide":"","round":"Open_Semis","tournamentID":"YbdPFTE9FbO3iQjZo87D","topic":{},"link":"","id":"7EqGZIufAYQ5wdKdghU6"},{"tournamentID":"RA6EqhjHK7wF8NHgzThB","division":"","language":"English","infoSlide":"","topic":{},"round":"2","content":"TH condems racially provocative art.","link":"","id":"7FsPUBzrQTFUYsI3eiJP"},{"division":"","link":"","round":"9","tournamentID":"YbdPFTE9FbO3iQjZo87D","language":"English","content":"THW make police commanders personally criminally liable for instances of police brutality committed by their subordinates.","infoSlide":"","topic":{},"id":"7GSfhxXhJUmbCwknZtAm"},{"topic":{},"infoSlide":"","link":"","language":"English","division":"","tournamentID":"1dEXZTvvRtTWhdBLmzFt","round":"ESL_Quarters","content":"THBT the EU should decriminalise human smuggling*. * Human smuggling is the aiding of a willing person to illegally cross a border. It is distinct from human trafficking, in which the person does not consent.","id":"7H22IdjF7c7g4DT0hXUS"},{"content":"THBT philanthropic figures focussed on COVID-19 should focus on prevention (eg distributing PPE) to possible cures/vaccines.","language":"English","round":"2","link":"","topic":{},"infoSlide":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","division":"","id":"7H2pYomrqecTfSrAtc1y"},{"infoSlide":"","topic":{},"tournamentID":"V7FJhUQXRQ0Z4dnL94bu","division":"","link":"","content":"THBT the 'cultural defence' is a legitimate defence in criminal proceedings.","round":"5","language":"English","id":"7I8Y52kBTjhLhwO4aSZ8"},{"tournamentID":"eXqHjvQ9MTXYhyv8NeW7","content":"THP a world in which identity based movements are not compartmentalized.","round":"6","language":"English","division":"","topic":{},"infoSlide":"","link":"","id":"7JRSZOOu72yOBCriBeWo"},{"infoSlide":"","language":"English","round":"Open_Semis","content":"THBT Israel should unilaterally withdraw to the 1967 borders and respect them regardless of future Palestinian actions.","division":"","topic":{},"link":"","tournamentID":"SIrskBVMCwGNCZibcnP1","id":"7JpLmOwFbH5PoMrrfQ1h"},{"division":"","infoSlide":"","link":"","topic":{},"round":"3","content":"THBT art depicting historical atrocities should depict them in their full brutality.","tournamentID":"qoRL9POR1sxdsrdIdj6B","language":"English","id":"7KKjJ5sCV815zE1unL8R"},{"link":"","content":"“TH is Disgusted by 'Toddlers and Tiaras' and other Child Beauty Pagants”.","round":"2","tournamentID":"5ETrS816OeSAWdPhWEHf","language":"English","topic":{},"infoSlide":"","division":"","id":"7L9bz7OqdUDhOxxIlerE"},{"tournamentID":"l8sHmpUe0bZ9QUWrf0pm","round":"2","language":"English","content":"THW prevent the media from publishing any personal details (such as race or social class) of criminals and suspects.","infoSlide":"","topic":{},"division":"","link":"","id":"7LIY3uSAtgNdi1pubTrz"},{"language":"English","link":"","division":"","round":"1","content":"THW tear down gated communities in the developing world.","tournamentID":"XGnGWhzkfstV6wutkTXQ","infoSlide":"","topic":{},"id":"7LjcAPuNdF4tCY7cFojC"},{"topic":{},"language":"English","link":"","content":"THBT minority groups should not reclaim slurs that have been directed against them.","infoSlide":"","tournamentID":"1XSX7FHkgfyCn1pjSqbi","round":"6","division":"","id":"7MMm4JTa5iQFDaSvnNpL"},{"language":"English","tournamentID":"FwXwhiD8hyS9iD7pTyRe","infoSlide":"","round":"1","division":"","topic":{},"content":"THW allow ‘Fight Clubs’ to be founded.","link":"","id":"7NRc58eJjd4ewwm2IZqB"},{"language":"English","infoSlide":"","link":"","content":"That, as Billie Eilish, we would release a Christmas album.","topic":{},"division":"","tournamentID":"Pt1Z2dTdUinRviVucbZA","round":"3","id":"7NeK0uFeyZPjI3FyjeEv"},{"tournamentID":"wZYAoJ8UubcT3x3E0CVj","topic":{},"language":"English","content":"THBT governments should use corporal punishment instead of incarceration for a significant number of crimes.","round":"5","link":"","division":"","infoSlide":"","id":"7OA2FnUxMiskPriUeMAr"},{"infoSlide":"","language":"English","link":"","topic":{},"round":"Open_Final","division":"","content":"This House Would let endangered languages die.","tournamentID":"eypKKJZLZblnh6KffyC5","id":"7OP6VwRbFA7mXTXcujBd"},{"link":"","language":"English","tournamentID":"OJi1hwkxrfVjCOf6ZDRH","infoSlide":"","division":"","round":"Open_Final","content":"THW repeal the Goldwater Rule.","topic":{},"id":"7Oqcn9qZveISRH7u5G9h"},{"infoSlide":"The human race has reached the 30th century and earth as we know it has fallen into a dystopian, robots-controlled battleground. Conscious human beings are placed in a simulated reality to avoid revolt, detached from the unfolding dystopia. You are made aware that you are living in a simulation more peaceful and serene than reality itself. You are offered a blue pill by the rebel group that was able to penetrate the simulated reality system and invite you to escape this simulation to live in the dystopia and revolt against the evil self-conscious robot society. Alternatively, you are offered a red pill that will erase the memory of you having this dilemma and you will stay in this simulation happily until your consciousness runs out.","division":"","topic":{},"link":"","content":"THW take the blue pill over the red pill.","tournamentID":"yDvj9tks9IvE2CTAVfzV","language":"English","round":"Open Grand Final","id":"7PEUpGMigb82I5e4XhMV"},{"content":"THBT the gay rights movement should campaign for the abolition of marriage, rather than marriage equality.","division":"","infoSlide":"","topic":{},"round":"4","tournamentID":"aWnK845Eg0cHNR0VZu3e","link":"","language":"English","id":"7PHqiG0BXfUxuverWlNP"},{"language":"English","infoSlide":"","tournamentID":"LczIO0anMv6dKnbpRYYr","division":"","content":"THBT children should be banned from attending religious services.","round":"1","link":"","topic":{},"id":"7Pwx1lErjd4t6K1NI5Hs"},{"round":"2","tournamentID":"RPKNKQNkycR35T4aIzhw","topic":{},"infoSlide":"","language":"English","link":"","content":"Given the rise of the Islamic State, THW support military intervention in Syria and Iraq.","division":"","id":"7QcZySLzsM6BI6sznIN0"},{"link":"","content":"TH opposes embedded journalists in the military.","infoSlide":"","language":"English","round":"4","division":"","topic":{},"tournamentID":"y7meTgIUCGSo7UqVkUQq","id":"7QkHZVQSeoKv0KEMxmzS"},{"link":"","tournamentID":"7bjgBH4vUAY8LwONR9i6","content":"THR the criminalization of the reckless transmission of sexual infections (e.g. HIV, herpes and gonorrhoea) in England and Wales.","infoSlide":"","topic":{},"round":"4","division":"","language":"English","id":"7RR1x0LPDFmZJIqkrJz8"},{"link":"","infoSlide":"","division":"","topic":{},"language":"English","tournamentID":"wL3wAKRctC8syY2eg8t3","content":"THBT western tech companies should actively pursue contracts with the Chinese government and Chinese firms.","round":"Open_Quarters","id":"7RXiZTHmECpuaSCVZJaY"},{"round":"Octofinals","topic":{},"division":"","language":"Vietnamese","content":"Chúng tôi sẽ đăng tải thông tin các vụ án hình sự nghiêm trọng lên MXH để người dân bỏ phiếu quyết định Vô tội/Có tội.","tournamentID":"sIrS2zWJD8m7ibVjvyDN","infoSlide":"","link":"","id":"7RaomvalYkhQt8ASP1iO"},{"tournamentID":"zcO3QSYEVhsJojnUCCNl","division":"","topic":{},"content":"THW introduce a sin tax on all meat products.","round":"1","link":"","infoSlide":"","language":"English","id":"7RwE5SN45dvefBv7QyEn"},{"round":"4","content":"THBT the IMF should require collateral in exchange for loans.","infoSlide":"","language":"English","tournamentID":"SGpBjVPnJkFrJB0hnxYv","division":"","link":"","topic":{},"id":"7S2fwetfCr27DED9Stqq"},{"topic":{},"content":"THW prioritize women in international university applications.","tournamentID":"bvHOR7Oow9PPlKPlA2BT","link":"","infoSlide":"","division":"","round":"Open_Quarters_1","language":"English","id":"7S2ng93IWBMyGqPZICs9"},{"division":"","link":"","tournamentID":"WYCV7Sl9idtN2tulRuB2","infoSlide":"","content":"THW End Fiscal Austerity and Increase Government Security on Education, Health and Infrastructure.","language":"English","topic":{},"round":"2","id":"7STYdg7oa0yuu8yd1VwW"},{"content":"THBT humans owe a debt to Future Generations.","language":"English","link":"","round":"Open_Final","infoSlide":"","topic":{},"tournamentID":"Nzien6R9RXvOTrNMJsza","division":"","id":"7Sil2R39Li9i5KvNdi1Q"},{"division":"","infoSlide":"","round":"9","content":"THS Considerably decrease its regulation of genetically modified foods.","topic":{},"tournamentID":"kwsuFgaQ5lYbaXVGrGal","language":"English","link":"","id":"7TUWXjPmDBICUZj8bkzj"},{"division":"","infoSlide":"","link":"","language":"English","topic":{},"round":"Open_Final","content":"THW require couples that intend to enter into official partnerships to be informed of their partners full genetic profile and other health issues.","tournamentID":"MeKByJc38Yt4otefONa7","id":"7U9vc1Q2w9XjM0uu3IND"},{"round":"Open_Final","infoSlide":"","link":"","tournamentID":"OZYKzIzIg9zKy9OOiaP3","content":"TH, which is the Iranian regime, would develop nuclear weapons.","division":"","topic":{},"language":"English","id":"7UBJx7I68lQVDYcpFOvo"},{"language":"English","link":"","round":"Open_Final","division":"","content":"THW immediately evacuate all relics off cultural or historical import currently located in unstable countries to stable Western nations.","topic":{},"tournamentID":"368JyxQNhxMm3WEWlba7","infoSlide":"","id":"7UECCRzw7LdyyzNd4L8A"},{"infoSlide":"","topic":{},"language":"English","round":"Open_Semis","content":"TH encourages fluidity in expressions of identity.","tournamentID":"lItvEbHHU24VVqcwipRq","link":"","division":"","id":"7UUQK4GgCAIkZeoDJHDC"},{"infoSlide":"Trong bối cảnh của trận tranh biện này, \"Chính sách 2 con\" là chính sách mà mỗi người lớn được cấp giấy phép (có thể trao đổi) để có một con (ví dụ: một cặp đôi, nếu không mua hoặc bán thêm giấy phép, có thể có nhiều nhất 2 con). Giả sử chính sách này được thực hiện một cách hiệu quả, sao cho không có đứa trẻ nào được sinh ra nếu như bố mẹ của chúng chưa được cấp số giấy phép cần thiết.","division":"","language":"Vietnamese","topic":{"hr":{"check":true,"title":"Human Relationships"}},"round":"","link":"","tournamentID":"mNwitMoNsjWupgwG8pR5","content":"Chúng tôi tin rằng \"chính sách 2 con\" nên được áp dụng trên toàn thế giới.","id":"7V824etxgm6fTfRfqOdn"},{"content":"THR the normalisation of the politics of outrage.","link":"","topic":{"politics":{"title":"Politics","check":true}},"division":"","tournamentID":"Wpv6iXJkIPUXYIkl0dST","language":"English","infoSlide":"The politics of outrage refers to a norm of embracing anger in public discourse and using public anger as one of many responses to a social issue. This is as opposed to a norm of dispassionate objectivity where participants in the discourse are generally calm.","round":"Semifinals","id":"7VBmEBtr9lXHCED48Ycc"},{"division":"","infoSlide":"","round":"Open_Quarter","content":"In the wake of Jacob Blake shooting, As African-American athletes in the NBPA, This house would boycott the remaining of the NBA season.","language":"English","topic":{},"link":"","tournamentID":"DV29K6gIIl6nTiYeWo2j","id":"7WPL26GtNW0cEQEw3YEp"},{"language":"English","topic":{},"infoSlide":"","round":"1","content":"THBT feminists should condemn the practice of monogamy.","tournamentID":"fIr3uLdOpGeGuZzpnEMf","division":"","link":"","id":"7WS65NWvqMFYvWHwI4z7"},{"round":"Open_Final","division":"","infoSlide":"","topic":{},"tournamentID":"bxhnmh9CZq21XJcRU2BX","language":"English","content":"This house believes that Western democratic countries should unilaterally evacuate relics of historical or cultural importance located in unstable countries and take possession of them.","link":"","id":"7Wh8GXRAiH5v1ZebxZak"},{"division":"","language":"English","link":"","round":"1","tournamentID":"3VTSywK012zU6GDLqZzC","infoSlide":"","topic":{},"content":"THR The Rise of Far Left Politics in Western Countries.","id":"7X0BjYIj7BKY1lJpVdTv"},{"division":"","topic":{},"infoSlide":"","language":"English","link":"","tournamentID":"xixMAepJqW9TAZSYVdsR","content":"Assuming a world where superheroes exist, TH, as the United Nations, would regulate their engagement in conflicts.","round":"4","id":"7XB4NwZfXYsmyNSO5zvp"},{"link":"","tournamentID":"cTxMF0myfwbQDPdL8Ral","topic":{},"infoSlide":"","round":"5","division":"","language":"English","content":"THBT environmentalist groups should fully abandon advocating for the mitigation of climate change, in favour of campaigning for adaptation efforts instead (e.g. building sea walls, genetically modified crops, exploring alternative living habitats).","id":"7XTKfnQc2ba25bUpbjiC"},{"division":"","tournamentID":"PFH5XRScthpwd2dxC2T5","topic":{},"infoSlide":"","content":"TH, as the USA, would withdraw all of its financial and military aid from Israel.","round":"5","link":"","language":"English","id":"7a8sfkzMIpTlsCDtOtcq"},{"content":"THBT the Turkish government should actively encourage Turkish migrants living in Europe to return to Turkey.","topic":{},"link":"","round":"3","division":"","language":"English","tournamentID":"DvsGvQWaYzshd3lSsDGu","infoSlide":"","id":"7aCbyYZZv1WU9WEXcjYX"},{"language":"English","infoSlide":"","round":"Open_Semis","topic":{},"division":"","link":"","tournamentID":"BXqPhfwak2R1kYHV48bp","content":"THBT true women’s liberation is incompatible with the existence of organized religion.","id":"7aLEyaTTeMYl4OplSzz3"},{"round":"2","content":"THBT the media should not publish news on suicides.","division":"","infoSlide":"","language":"English","tournamentID":"ODzhGSyV71DaUGhZEWGT","link":"","topic":{},"id":"7auWfxrCr2KnLn5EcoQl"},{"division":"","tournamentID":"EdTnzchhKzipTBRxQvXJ","language":"English","infoSlide":"","topic":{},"round":"1","link":"","content":"THW make organ donations after death mandatory.","id":"7b65fVSB0Dr23IA80VnG"},{"tournamentID":"YZ4nedbden9wBJH2zqb4","infoSlide":"","link":"","content":"THBT attacks on military targets, in which many civilian victims can be expected, are legitimate.","round":"5","language":"English","division":"","topic":{},"id":"7bF7fFaX4HsFTNeqZT5N"},{"division":"","topic":{},"link":"","language":"English","infoSlide":"","round":"Open_Semis","content":"THW establish brothels on military bases.","tournamentID":"aVcqgGmAccQ09iBh9iS1","id":"7ccyOokAz0fqPZVABgPx"},{"topic":{},"link":"","language":"English","content":"THW welcome the downfall of global capitalism.","round":"Open_Final","tournamentID":"uOrbqWx5KdpXchUpHb3Z","infoSlide":"","division":"","id":"7czb5kYeZ4c00X80BTw5"},{"content":"TH regrets the classification of human behaviors (Such as depression, eating disorders, etc.) as diseases.","language":"English","link":"","round":"Open_Final","topic":{},"division":"","infoSlide":"","tournamentID":"TMBmC1MQwez0ZjQdNyHU","id":"7d7oPkm97NvmadjeXvxB"},{"content":"TH, as Arturo di Modica, would discontinue the loan of the Charging Bull to New York City.","language":"English","infoSlide":"","topic":{},"tournamentID":"F966uo3Po2bRFWfFesTz","link":"","round":"4","division":"","id":"7e69eAXAxi9Put5FNwCj"},{"topic":{},"division":"","infoSlide":"","tournamentID":"L8JGtnnMnhA8w9ooOx0S","round":"5","link":"","content":"THBT post conflict governments should recruit rebel soldiers into state armies.","language":"English","id":"7ekxQ1ICY1a36seZxDlN"},{"tournamentID":"m6JzV67uYJSVBRpAbgL7","infoSlide":"","round":"HS_Semi","content":"THBT movements should not use civil disobedience as a strategy to achieve their goals.","topic":{},"division":"","link":"","language":"English","id":"7f1kE0IDKES53HsAz4Uf"},{"content":"THBT Marx would have approved of the internet.","topic":{},"round":"Open_Final","infoSlide":"","division":"","link":"","tournamentID":"Ba2zBwHOYMuoyQZQbecz","language":"English","id":"7f6YqQt0rVw6PMxdR4G6"},{"language":"English","topic":{},"division":"","tournamentID":"YZ4nedbden9wBJH2zqb4","infoSlide":"","round":"1","content":"THW make graduates of state universities, who become stay-at-home “parents” (Hausfrauen oder Hausmänner), retrospectively pay their study fees (normally free).","link":"","id":"7fVp81698vVovITkFweV"},{"link":"","content":"THBT states when constructing tax policies should prioritise equality rather than economic growth.","round":"Open_Semis","division":"","language":"English","tournamentID":"b3eMPaD8uywgZW5hZca1","infoSlide":"","topic":{},"id":"7ffPLzeIFb7lO0Wh8hiA"},{"language":"English","topic":{},"infoSlide":"","link":"","division":"","round":"Open_Semis","content":"THW ban alternative medicine.","tournamentID":"EdTnzchhKzipTBRxQvXJ","id":"7gmLwcEAm6p3urvxmSez"},{"round":"4","tournamentID":"jQjuYOl7gbKBTiUrvWM2","link":"","topic":{},"infoSlide":"","content":"Assuming you would not be found out, in the event of a terrorist attack on EU soil committed by Islamist extremists, THW fabricate evidence that the attack was committed by the dominant ethnic and socio-economic group, e.g. white Anglo-Saxons.","language":"English","division":"","id":"7hCh1t1PF0lUgvzc8mtZ"},{"content":"THBT it is in the interest of the Kremlin to take measures to reduce Russian dependency of China (e.g. limit the selling of raw materials to China, reduce the share of Yuan in Russia's currency reserves, not allowing Chinese companies to develop strategic infrastructure such as 5G in Russia).","round":"Open_Quarters","division":"","link":"","topic":{},"infoSlide":"","language":"English","tournamentID":"YbdPFTE9FbO3iQjZo87D","id":"7hRIfmJ8UivQ3poRucg4"},{"division":"","round":"Open_Final","link":"","infoSlide":"","content":"as a promising young graduate, you are offered two jobs. One with a charity that you would enjoy working for (\"First Teach\"), with reasonable pay. The other with a large multinational firm (DelcentureMG) that provides higher pay, and better long term career prospects. Motion: THW sell out to the man.","topic":{},"language":"English","tournamentID":"exPe8nnWDA3806gTTyfK","id":"7hW46Tk2e5oCoSpwX1cg"},{"round":"8","infoSlide":"","tournamentID":"h2z0CGY0CzqfLCKUb3wz","content":"THBT governments should establish methods to provide unconditional cash transfers to the poor.","topic":{},"link":"","division":"","language":"English","id":"7hiFwCBaJm4uQTW1KNRh"},{"infoSlide":"","topic":{},"round":"8","content":"In circumstances where a unanimous decision is currently required, THP majority voting as the European Council's decision-making approach.","division":"","language":"English","tournamentID":"YbdPFTE9FbO3iQjZo87D","link":"","id":"7j6DBdkrDOLsb8IZLRKa"},{"round":"3","division":"","topic":{},"content":"This House believes that children should have a legal say in whether their parents/guardians can adopt a child.","infoSlide":"","link":"","language":"English","tournamentID":"gUFKQBcgvghmUX6k0Dj3","id":"7jVv31EyF2f2uOhMHvGJ"},{"infoSlide":"","link":"","tournamentID":"LczIO0anMv6dKnbpRYYr","content":"THBT all universities should create separate career tracks for teaching and research.","language":"English","round":"5","topic":{},"division":"","id":"7keFWcawwenLRrta34VU"},{"content":"Chúng tôi tin rằng trường học nên dạy học sinh hoài nghi về thẩm quyền của người lớn.","infoSlide":"","topic":{},"round":"1","tournamentID":"RNJanNDlcAfI2uIKx9LF","language":"Vietnamese","link":"","division":"","id":"7l26c62IfpsmzMRsGVJE"},{"topic":{},"language":"English","link":"","infoSlide":"","tournamentID":"jiJ3t0fz2aMel6atC1HM","content":"THBT the Spanish Central Government should allow Catalonia a referendum for independence.","round":"Open_Semis","division":"","id":"7mSTH9hFaLQoiaHOA7n2"},{"link":"","tournamentID":"bTRRi7oLbaQA5e1qz6Qc","content":"TH does not regret internet piracy.","topic":{},"division":"","infoSlide":"","round":"Open_Quarters","language":"English","id":"7npaKOO5Voj36kc5e823"},{"division":"","link":"","content":"Should we introduce mandatory quotas for media products from Europe in film, tv and radio?.","tournamentID":"rdyGzmsfHNjLJBTBIlbG","infoSlide":"","topic":{},"language":"English","round":"2","id":"7o7PuyNuRMWVBQm1qKZ7"},{"content":"THBT lawyers should not be involved in jury selection.","round":"4.3","infoSlide":"","language":"English","division":"","tournamentID":"bvHOR7Oow9PPlKPlA2BT","topic":{},"link":"","id":"7oL5IG5XgVhMauLXOLQf"},{"infoSlide":"","content":"TH supports Iran’s extension of the Sharia principle of “an eye for an eye” to the victims of acid attacks.","topic":{},"language":"English","tournamentID":"UfGg9gZEXlU744RWE1Y1","round":"Open_Semis","link":"","division":"","id":"7otg7A2IU49YBQQvuySP"},{"round":"Open_Semis","content":"THR the inculcation of national identity through shared rituals (eg national ceremonies, anthems, pledges of allegiance, etc).","topic":{},"language":"English","infoSlide":"","tournamentID":"WfHILzlB4oGzI34Iwqaw","link":"","division":"","id":"7pbchEsHhRw2OvtAxhvY"},{"content":"THW abolish prisons.","division":"","infoSlide":"","link":"","topic":{},"round":"2","tournamentID":"k1fYFDihwlGzjmVGfSXp","language":"English","id":"7ph6UgJILMDVDrwJW8cG"},{"link":"","language":"English","division":"","round":"Open_Quarters","topic":{},"tournamentID":"t1jiRXU99xeGdoIkTeyF","content":"THBT all governments should designate and publicly announce a list of financial institutions that they would bail out in the event of a crisis.","infoSlide":"","id":"7rJoF2V8eQPFmpCdTqal"},{"infoSlide":"","tournamentID":"GN3wIECpidF8WB3WC2l0","language":"English","round":"1","content":"THBT developed countries should pay developing countries to preserve the rainforests.","division":"","topic":{},"link":"","id":"7rKKE9PZVb3Y4K1jsjQI"},{"infoSlide":"","round":"","link":"","language":"English","content":"This House opposes the belief that parents would have the final say in their children’s important decisions.","tournamentID":"gUFKQBcgvghmUX6k0Dj3","topic":{},"division":"","id":"7tCNiHPvICqvy9yxrABZ"},{"language":"English","tournamentID":"CjeO3WtFoEPJ0YkMQ3T2","round":"Open_Quarters","content":"THBT niantic should provide user location from Pokemon Go to the police [Quarters].","infoSlide":"","link":"","division":"","topic":{},"id":"7thnPOr47GGi5yuh7DBh"},{"tournamentID":"8EaRfOcTe47s5VRlQeNv","round":"Open_Semis","link":"","infoSlide":"","language":"English","topic":{},"division":"","content":"India, Malaysia, Singapore, Indonesia, Thailand, Japan, and South Korea. The structure of the alliance treaty replicates all the clauses of the NATO treaty. Motion: This House supports Asian NATO.","id":"7u8EboubFLljNhJ2x9Fx"},{"infoSlide":"","round":"1","tournamentID":"m97biSF63NO9Jn1yenBI","topic":{},"division":"","link":"","content":"THBT poor families in developing countries should focus their resources on the child with the highest potential instead of distributing it fairly to all children.","language":"English","id":"7uQZajiccVmZid20YLZh"},{"language":"English","topic":{},"content":"THW ban the production and consumption of tobacco in the European Union.","tournamentID":"MPR74LYpg8Ru6paM45U9","round":"1","link":"","division":"","infoSlide":"","id":"7ukvN5TQ2uRX2lJkFnQW"},{"round":"Octofinals","infoSlide":"Armenia and Azerbaijan have been in conflict over Nagorno-Karabakh from the collapse of the USSR. They were engaged in a six-year war over the region. The conflicted area was a part of Muslim-majority Azerbaijan but mainly populated by ethnic Armenian Christians. Recently, armed violence between the two countries has escalated into full-blown conflict. Turkey has been actively involved since the escalation of the conflict in September. A peace agreement has been signed, with Azerbaijani control and significant numbers of Russian troops in the region.","link":"","division":"","topic":{},"language":"English","content":"THS Russian intervention in the Nagorno-Karabakh Region.","tournamentID":"CBVZREYhjV5bhCHOuWjU","id":"7vOvEZzqXygsMeb66JA2"},{"link":"","infoSlide":"","division":"","tournamentID":"S2mG18EWYdh2bPEadyd9","language":"English","content":"THW abolish the prison system.","topic":{},"round":"1","id":"7wq7fAe2PRetRg3oEMD2"},{"division":"","round":"10","language":"English","infoSlide":"","content":"THBT If You Are Not In Fashion, You Are Nobody.","tournamentID":"DSFg77BvC9y4FK5pBVIv","link":"","topic":{},"id":"7xBse6V9t16qAnw3WzaR"},{"round":"3","content":"That we would abolish the ‘one-year-out’ rule in the NBA.","language":"English","tournamentID":"5Qomv7BFHTKmY4PchwDr","link":"","infoSlide":"","division":"","topic":{},"id":"7y7mc2w8f5EsXOV2Z7pj"},{"content":"THW force employers to allow their employees to work from home whenever physically possible.","language":"English","infoSlide":"","topic":{},"tournamentID":"041lRDdS5oaD5orDuk8q","round":"5","link":"","division":"","id":"7yGOnJ57AgpJd6s0sAMR"},{"content":"Assuming we live in a world where superheroes exist, THW require superheroes to publicly reveal their identities.","topic":{},"tournamentID":"pEzcbhejynC2gAdvgw1f","round":"2","language":"English","link":"","division":"","infoSlide":"","id":"7yQOsQHnNbyrhhFz4jNp"},{"language":"English","infoSlide":"","link":"","tournamentID":"BtqBGdAUsTtPKorZOcBX","round":"4","topic":{},"division":"","content":"THW permit government agencies to conduct automated surveillance without court authorisation.","id":"7ytQQYLv2bdivUKsLJhc"},{"tournamentID":"zppT86F7lAE0Gpp7tWYo","language":"English","content":"THBT uncle Sam is not a member of the family.","infoSlide":"","topic":{},"link":"","division":"","round":"C4","id":"7z0xAxCemWcdtw61JnRQ"},{"tournamentID":"v33DcPMMQZsLJormVjyz","topic":{},"link":"","round":"1","content":"THW put high taxes on unhealthy products.","infoSlide":"","language":"English","division":"","id":"7z7brs7nDZKOQcvJsKaB"},{"infoSlide":"","division":"","language":"English","tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","topic":{},"content":"That universities should make use of quotas for ideological groups (e.g. conservatives) for teaching and research staff.","round":"1.2","link":"","id":"7zIWhAnjfpyY6ZFqfFkT"},{"division":"","language":"English","infoSlide":"","tournamentID":"N6GD6E8q4Mbzt8Xexnyy","round":"4","content":"THW abolish industry awards (i.e. the Oscars, the Emmys, etc.).","topic":{},"link":"","id":"7zk27pyBTTY9P7JBRTjN"},{"content":"TH has received incontrovertible proof that the Mona Lisa is a forgery. THW not reveal that information.","round":"Open_Semis_2","language":"English","tournamentID":"bvHOR7Oow9PPlKPlA2BT","division":"","link":"","infoSlide":"","topic":{},"id":"81iTO5HIh9vaovmsTB7N"},{"language":"English","content":"TH, as a liberal-leaning news outlet, would take steps to portray terrorists in a sympathetic light.","round":"Open_Semi","topic":{},"tournamentID":"DeCtrDtTjNPkklRZT0x6","division":"","infoSlide":"","link":"","id":"826FeUj00KJqx7aVMkZ1"},{"division":"","infoSlide":"","tournamentID":"4Nqwg2GbRwaUJ5LaWcSt","content":"thw relocate refugees to countries based solely on the receiving countries' level of economic wealth.","round":"Novice_Semi","topic":{},"link":"","language":"English","id":"837TfNwGsGCQo9xl7b51"},{"tournamentID":"idhVYyUwgWnlyak17o8K","round":"4","division":"","content":"THW force clinically obese children to attend residential weight loss and education camps during the summer holidays.","topic":{},"language":"English","link":"","infoSlide":"","id":"83PceEYhiOR8FPAgabUz"},{"division":"","language":"English","topic":{},"tournamentID":"KUgzKY5FHtox24CaztLJ","infoSlide":"","round":"5","link":"","content":"TH, as an emerging democracy, would suppress domestic media providers in favour of international media providers.","id":"855FGx9ZfCaPVlPr8w7t"},{"link":"","division":"","tournamentID":"nFlN14QQWlnlNwJKIDru","infoSlide":"","language":"English","topic":{},"content":"THBT the West should impose sanctions on Israel until it disbands its nuclear programme and relinquishes control of all nuclear weapons.","round":"3","id":"85DYcF34W5kx5rHIXovF"},{"link":"","round":"1","topic":{},"content":"THW Create Special School for LGBT+ Youths.","division":"","infoSlide":"","language":"English","tournamentID":"IgBrZRMArYLwB0oVtcRa","id":"85F8xoMWzjnKpKPMOKya"},{"language":"English","link":"","tournamentID":"zZRXGDm7RC8LjYJKzubm","round":"5","topic":{},"content":"TH, as an university, would take down statues of controversial figures.","infoSlide":"","division":"","id":"85P5c2GeRWTc548boX7L"},{"division":"","link":"","round":"4","language":"English","tournamentID":"tKXlShZl2vec49jC1bif","topic":{},"content":"THBT as the Christian church would teach that the Bible is a historically-based account containing human error, rather than teaching that the Bible is the flawless work of God.","infoSlide":"","id":"85cMHrSP3mdsAvFGZ414"},{"infoSlide":"","topic":{},"division":"","content":"THW withhold government funding from indigenous bands or tribal councils that do not have a democratic form of government.","round":"2","language":"English","link":"","tournamentID":"euj80C6nkxdgEhkTaI0g","id":"86l16zQJMUwjICKRgTMw"},{"division":"","round":"3","link":"","infoSlide":"","content":"THW give the Roma a homeland.","language":"English","topic":{},"tournamentID":"7lMrN2aiwSzD5rzPFwHz","id":"86qSimOaJl8nRSO5OdLT"},{"division":"","link":"","round":"4","tournamentID":"GQttZR3FjAIw20Ek36nP","topic":{},"content":"THW compel parents to take equal paternity and maternity leave.","infoSlide":"","language":"English","id":"876yl4t3IpbtmlDa4CCU"},{"link":"","language":"English","tournamentID":"MKOx1AvBmfWL7cHrRXg2","infoSlide":"","round":"Open_Semis","content":"This House Believes That the Pope should be elected by Catholics around the world.","division":"","topic":{},"id":"87GMlnIizmYWKTHoHokx"},{"language":"English","link":"","division":"","round":"4","topic":{},"tournamentID":"LK6lSp8gpBGbLjuv9caV","content":"Should sexual acts with robots be banned, as soon as these are physically comparable to human beings?.","infoSlide":"","id":"87VVOgYjQRrtGYxjw4Yk"},{"language":"English","link":"","tournamentID":"JsJHH6odeVuMVnQ8A5bN","round":"Open_Quarter","division":"","content":"THP a world without the concept of fate and destiny.","infoSlide":"","topic":{},"id":"87rxXKqcaticcseKXShy"},{"infoSlide":"","content":"This House Would raise their child to prefer to be single.","link":"","topic":{},"tournamentID":"S5UzkuOf9XN6BnhOSbRC","round":"4","language":"English","division":"","id":"87uDsfO1vqOCGcMIVaco"},{"content":"Chúng tôi tin rằng các phong trào xã hội nên chủ động dùng sự bức xúc để huy động sự ủng hộ cho mục đích của họ.","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","round":"Octofinals - Motion 2","division":"","infoSlide":"","topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"}},"language":"Vietnamese","link":"","id":"88GbXgVAC8nWsMcZUbfy"},{"tournamentID":"hoxSwibt3yivmk88aoAD","link":"","language":"English","topic":{},"round":"Open_Semis","infoSlide":"","division":"","content":"THS the Creation of Feminist Parties.","id":"88nfPTvqbEP0bNHYcg4d"},{"division":"","infoSlide":"","link":"","round":"Open_Semis","tournamentID":"OqjcHyR2p27nlpvjQ5oq","topic":{},"language":"English","content":"You are a female Democratic candidates running in the general election for President of the U.S. The results are extremely close going into the vote. One of your staffers tells you, with certainty, that they can right the election of your favour with little chance of detection. THW do it.","id":"89958HnlBvzZN2FxpTLr"},{"tournamentID":"8Vk7pWjDHtGhxQVWidIQ","language":"English","link":"","division":"","infoSlide":"","content":"THR the choice by gun control activists to focus on mass shootings as the primary consequence of gun violence.","topic":{},"round":"1","id":"89IIIrn58FG4OSvsDB7C"},{"tournamentID":"m6JzV67uYJSVBRpAbgL7","infoSlide":"","topic":{},"content":"THBT Asian immigrants to Western countries should assimilate in the culture of their host country even at the expense of losing their original culture.","round":"2","division":"","language":"English","link":"","id":"89Z63OOdpx6BfR0A9yuM"},{"topic":{},"division":"","language":"English","tournamentID":"CLp8pjuIm6vddMdiBEC5","link":"","round":"2","content":"THW publicly televise the execution of death row inmates.","infoSlide":"","id":"8ARce6sizhJsYXqbWiHX"},{"language":"English","round":"5","topic":{},"division":"","link":"","tournamentID":"XL594Q2oZbvHmfmYKFvT","content":"That we should ban religious practices that cause cruelty to animals.","infoSlide":"","id":"8Ai2XO2k4xG2F7ep2Ak6"},{"tournamentID":"wA1XDLHJESmSgLsfZ9Qe","link":"","division":"","topic":{},"infoSlide":"","language":"English","content":"This House would abolish the private ownership of (housing) property in major metropolitan areas.","round":"EFL_Final","id":"8BAfZYCTiZjjcVoCrIxT"},{"topic":{},"round":"4","tournamentID":"ARfoyigbkuieCEyKI1GV","link":"","division":"","infoSlide":"","content":"TH, as Latvia, would ban Legion Day parades.","language":"English","id":"8BQvmonZYYx3EKVV2cCR"},{"content":"That prominent social activists (e.g. the leaders of Black Lives Matter, Aung San Suu Kyi) should not choose to run for office. (.","division":"","round":"5","infoSlide":"","tournamentID":"n7qv29PmNuF5SOe42oiz","language":"English","link":"","topic":{},"id":"8BRaPb9H8byABaK5SDM9"},{"link":"","round":"Open_Final","topic":{},"infoSlide":"","division":"","language":"English","tournamentID":"aEZUJtwNrlKTdARVPZNh","content":"This House Opposes cultural and academic boycott.","id":"8BTQ9rrvQPJEOvRiVXAG"},{"tournamentID":"iWZAiFK5ukpLd7JEkH5z","content":"THW take the Blue Pill over the Red Pill.","link":"","infoSlide":"","division":"","topic":{},"round":"Open_Quarters","language":"English","id":"8BoRb3JqEfgMANM0sG9Q"},{"link":"","round":"5","division":"","content":"This House would implement substantial measures to impose long-termism in corporate investment culture (e.g. minimum holding periods for shares, yearly rather than quarterly financial reporting, long-term executive compensation plans).","tournamentID":"EP5HDm4G3OfMlciId6YM","language":"English","topic":{},"infoSlide":"","id":"8CIOtSLkPaJj9veSd6dU"},{"language":"English","content":"TH regrets the commercialization and mainstream popularization of grafitti.","infoSlide":"","tournamentID":"yTe5SQuwd4eeae0M0Sc9","round":"2","link":"","topic":{},"division":"","id":"8DYiT4Ru6bj4Vm1ppG5K"},{"tournamentID":"pjVFBJWiohJyZdRBk33H","round":"4","language":"English","link":"","infoSlide":"","topic":{},"content":"THW ban all individuals who have advocated or used violence in order to further a political cause in a liberal democratic state, from standing for future elections.","division":"","id":"8EJe3iSIfvae0ObS9sTx"},{"round":"2","infoSlide":"","content":"THW not export any weapons out of the EU.","topic":{},"language":"English","tournamentID":"EdTnzchhKzipTBRxQvXJ","link":"","division":"","id":"8EbNTvNTO4PYwCMP8yqC"},{"language":"English","division":"","tournamentID":"G1nDRe3mbR7XzsaLbAGR","infoSlide":"","topic":{},"content":"THW make the Internet a public good.","link":"","round":"1","id":"8EdMLtrQxon99V7urqqM"},{"round":"1","tournamentID":"C0blbUxGmaQQTDvvJX6D","infoSlide":"","language":"English","division":"","link":"","content":"Should people who have lived a healthy life be given preferential access to donated organs?.","topic":{},"id":"8GEtQkyKsMdIikD1gI6D"},{"language":"English","content":"THBT the right to decide the timing and manner of one's death is a fundamental component of liberty.","link":"","division":"","round":"3","topic":{},"tournamentID":"OAcOsXro6vLkyCebuX4n","infoSlide":"","id":"8GIpYxACcmlVbTl62reP"},{"tournamentID":"oaIuwyOX7NBIwaiSaVJ8","language":"English","topic":{},"content":"That we prefer Facebook's policy of only removing content that users report as compared to a policy where Facebook itself independently determines restrictions on content.","link":"","infoSlide":"","round":"Novice_Semi","division":"","id":"8HGxoIbN13H80iuxCMsZ"},{"language":"English","topic":{},"infoSlide":"","content":"THW criminalize the possession and use of Bitcoins.","round":"3","division":"","link":"","tournamentID":"LczIO0anMv6dKnbpRYYr","id":"8HIKpfW4vXTefNWDhy0v"},{"tournamentID":"z4fwjDZ02juoVx4MeEih","link":"","topic":{},"content":"THBT racial profiling is a legitimate tool in fighting crime.","infoSlide":"","round":"1","language":"English","division":"","id":"8HSbz3u6NhHazQyVKPOi"},{"infoSlide":"","link":"","topic":{},"round":"2","language":"English","tournamentID":"mf3XudZleydnsr0lEvkg","division":"","content":"TH (as Marxists) R the rise of automation of jobs previously performed by humans (e.g., self-driving cars, self-checkouts).","id":"8HkM7uzb00z7Zd8MbnLg"},{"round":"3","division":"","infoSlide":"","link":"","topic":{},"language":"English","tournamentID":"4V6pb0chg0WcRQyc6Zde","content":"THS the development of Artificial General Intelligence.","id":"8I6c6JEJJfdDcGrHWXby"},{"tournamentID":"9sZiZ9uPaGSIYSFdM4VZ","infoSlide":"","round":"Open_Final","content":"THW require companies to make the salaries of all their employees publicly available.","link":"","division":"","topic":{},"language":"English","id":"8IXkTZint4ubGiDLajUL"},{"topic":{},"tournamentID":"XBFpAL1r3TobjAN8vT20","content":"Assuming adequate security vetting, this House would allow individual states to set their own immigration policies.","division":"","infoSlide":"","round":"2","language":"English","link":"","id":"8IcnCdad96HWInpkSnZV"},{"language":"Vietnamese","link":"","infoSlide":"","round":"","division":"","content":"Chúng tôi tin rằng thế giới sẽ tốt hơn khi hệ thống pháp lý tội phạm có nhiệm vụ chính là phục vụ sự trả thù cho nạn nhân.","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"tournamentID":"nALUKfkpmOnWnQCzecru","id":"8Jc7cE45bvvwgd43OMZa"},{"topic":{},"infoSlide":"","content":"THW Make it a criminal offence to know of a crime and not report it.","division":"","tournamentID":"4XrkYxI1Z9BN4Rn7DC4S","round":"4","link":"","language":"English","id":"8Knx6ApUIKoOHN2AD7HH"},{"infoSlide":"","language":"English","topic":{},"round":"1","tournamentID":"dhjYMHAKQ3baHl4HMJbh","division":"","link":"","content":"THW end all govt funding of the arts.","id":"8L4H0BFaMATkDDc6KUpI"},{"link":"","round":"Open_Final","language":"English","division":"","content":"THB that feminists should adopt the cause of anti-capitalism.","topic":{},"infoSlide":"","tournamentID":"qA0UqqN9np2leDGCNcck","id":"8LgYORNWMGXVFJWLxdYr"},{"language":"English","round":"Open_Semis","content":"THW, as David Icke, dedicate the rest of its life to exposing the lizard people. (Info).","tournamentID":"l8sHmpUe0bZ9QUWrf0pm","infoSlide":"","link":"","division":"","topic":{},"id":"8O49ZNlaZEBuzAoKwW40"},{"round":"1","infoSlide":"","link":"","content":"THW allow those convicted of non-violent, -sexual, -serious crimes to serve sentences in the military, rather than prison.","language":"English","topic":{},"tournamentID":"IpxNM87k556VVsS2JAPu","division":"","id":"8O8gy5aRXASxbn00mwvc"},{"link":"","infoSlide":"","content":"This House opposes Consumerist Culture* (*Consumerist Culture is a culture where consistently purchasing goods is expected and considered a marker of social status).","tournamentID":"9WoIT6ofG5A9j3MeLxh4","division":"","language":"English","round":"5","topic":{},"id":"8Of1eGXagXpSg3kmxUbA"},{"division":"","content":"This house believes that young, educated people in Western countries should focus their charitable efforts (e.g., volunteering, donations, etc.) towards benefiting the disadvantaged in their own country, as opposed to in the developing world.","tournamentID":"L5MIrW7phE11xSIVutdB","language":"English","infoSlide":"","topic":{},"link":"","round":"1","id":"8PIDJkUAhvnl3mjDwTiA"},{"round":"1","tournamentID":"hPTwc7UsLmuGu68x4FDK","language":"English","division":"","link":"","topic":{},"infoSlide":"","content":"THB the EU should allow freedom of movement within its borders to Syrian refugees.","id":"8PSodsMCiIkfyysIKr5N"},{"link":"","round":"2","infoSlide":"","tournamentID":"UPn4syqdx9T0fJyHm2Ej","content":"THBT it is legitimate for Replicants to destroy any and all means of replicant production (Bladerunner).","topic":{},"division":"","language":"English","id":"8Q8RJvEdV68hRBBm7L1q"},{"round":"Open_Final","link":"","division":"","topic":{},"content":"THR the narrative that money can't buy happiness.","language":"English","tournamentID":"jDG8reClMB02DIxLR5LL","infoSlide":"","id":"8Q9q6wRz2VgMgDrMBbq2"},{"language":"Vietnamese","link":"","tournamentID":"znXRdnU2llK8fXmHlci5","division":"","round":"1","topic":{},"content":"Chúng tôi tin rằng trường học nên giảng dạy lịch sử một cách khách quan thay vì chọn lọc.","infoSlide":"","id":"8QhLallOgmznwIUmiZYW"},{"round":"4","infoSlide":"","tournamentID":"EP5HDm4G3OfMlciId6YM","content":"This House believes that the ongoing process of decolonisation should include actively disempowering religions that were imposed on the country during colonialism.","division":"","topic":{},"language":"English","link":"","id":"8QlKKi6d2o7eGDPN4Sm0"},{"link":"","division":"","round":"5","tournamentID":"DXCgscK3BkzAJGRnyZpD","content":"THBT people who go bankrupt should have their finances managed by the state for five years.","topic":{},"infoSlide":"","language":"English","id":"8QsE4zLDlHY1BkxTyW6J"},{"link":"","language":"English","round":"Open_Final","content":"THBT black civil rights groups should condemn contemporary hip hop.","tournamentID":"vIcSl55fwy2uPdlGUXsg","topic":{},"infoSlide":"","division":"","id":"8QsyXpszrbPQOEZeC038"},{"topic":{},"infoSlide":"","division":"","content":"THW Prefer to live in A Brave New World.","tournamentID":"d13kY0BTy5kVOwwqu54R","link":"","language":"English","round":"ESL Final","id":"8RSaZ0VmX7g70CGpMNdh"},{"content":"This house believes that regional alliances should not take a stance on the elections of their member states, assuming free and fair elections are possible in that member country.","round":"Open_Semi","tournamentID":"MIEMFyC8nYMlqXU4wtOC","division":"","topic":{},"infoSlide":"","link":"","language":"English","id":"8RXCmZGh8NkO7BXsJh9P"},{"language":"English","infoSlide":"","round":"5","tournamentID":"S2mG18EWYdh2bPEadyd9","division":"","link":"","content":"THBT the Netflix series \"Indian Matchmaking\" does more harm than good.","topic":{},"id":"8RY89K9qaICEHr62LPTF"},{"topic":{},"link":"","language":"English","division":"","round":"Novice_Final","infoSlide":"","content":"THW make the punishment for crimes of theft inversely proportional to the wealth of the victim (approximation).","tournamentID":"B63fWPacAJNcBJdaEpVz","id":"8SIvkweguGUGVvevmToy"},{"topic":{},"link":"","content":"TH regrets the criminalisation of squatting.","division":"","language":"English","tournamentID":"Xt0UV62VgaP360hvHqWG","round":"1","infoSlide":"","id":"8SfYWnwVgwdHdg3bcBbB"},{"link":"","topic":{},"tournamentID":"aC5itVCb0EApgG8DEaqA","division":"","infoSlide":"","language":"English","round":"2","content":"THBT history curricula should feature the same proportion of male and female historical figures.","id":"8SsIgVwgIIOy38q4e5OF"},{"infoSlide":"","division":"","link":"","content":"THW raise its child without gender.","tournamentID":"ZxUcdMSTBBFZQIuIsGtb","round":"Open_Final","topic":{},"language":"English","id":"8SvYL8PjMJItCdjHFS0T"},{"tournamentID":"c5YoJ5qkI2DsrQ7PAhum","infoSlide":"","link":"","division":"","content":"THW legalise online child chat simulations.","language":"English","round":"2","topic":{},"id":"8THRsI3ucZi22S6qAmsL"},{"topic":{},"tournamentID":"8vo3c8Tz12muCmAoWSv2","content":"THW Abolish National School Curriculums.","language":"English","infoSlide":"","round":"1","link":"","division":"","id":"8V2aDQ6dLtfRrh3taZ3x"},{"language":"English","topic":{},"content":"THBT India should heavily militarize ANI.","link":"","infoSlide":"","division":"","round":"Octofinals","tournamentID":"9yPqE2fe1oaHsd7ankOa","id":"8W7mBW2HW9235kz60Wn6"},{"division":"","link":"","infoSlide":"","round":"1","language":"English","topic":{},"tournamentID":"NYyJaJXo1SigW6G8Y1Lm","content":"This house would pay additional benefits to families on welfare according to their child’s performance in school.","id":"8XcbgSMRlyWci1y55ykB"},{"language":"English","division":"","infoSlide":"To be held liable means to be accountable or legally responsible for a particular action or event. Fake news: this is a form of news that consists mainly of misinformation or hoaxes and is deliberately spread through traditional forms of media and online/social media.","round":"","link":"","tournamentID":"LlsxibXteGBGML9aitY2","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"content":"THW hold social media companies liable for the spread of fake news.","id":"8Y9kckrH0dPRr22dF6je"},{"link":"","content":"THW grant legal personhood to strong AI.","tournamentID":"eXqHjvQ9MTXYhyv8NeW7","infoSlide":"","round":"Open_Final","topic":{},"language":"English","division":"","id":"8YADEKgneS4wyRhN1aLA"},{"language":"English","infoSlide":"","topic":{},"link":"","round":"4","tournamentID":"xv0FPHxLsij7LUJlUmBy","division":"","content":"THS the narrative that the decision to have a biological child is a selfish one.","id":"8Yw5vFOyxC88qUz9bYnI"},{"division":"","infoSlide":"","content":"HBT Greece should go bankrupt.","topic":{},"link":"","round":"Open_Quarters","language":"English","tournamentID":"wuDBbL4uYIZXIthzVv4V","id":"8ZANxilDy1CZ6kDApaeY"},{"infoSlide":"","topic":{},"division":"","tournamentID":"kM1DLhtxZLQbdLIScfM9","language":"English","link":"","round":"1","content":"THW allow plaintiffs to sell to third parties their right to sue.","id":"8ZNVtKHb5Yq0pmujZ910"},{"round":"Open_Semis","content":"TH, as the UN, would use only private military companies for peace keeping operations.","division":"","language":"English","infoSlide":"","tournamentID":"ZxUcdMSTBBFZQIuIsGtb","link":"","topic":{},"id":"8ZYa9XyWSNhmCEZ8uej4"},{"infoSlide":"","topic":{},"division":"","link":"","tournamentID":"6KzwZLwpFJv7ICEsknpO","content":"This house believes that states should significantly fund female-only tech companies.","round":"4","language":"English","id":"8ZuCrneUzdFyzhtc1SP9"},{"tournamentID":"FOAZQcGDy003yv7fx3AI","infoSlide":"","division":"","topic":{},"language":"Vietnamese","link":"","content":"Chúng tôi, với tư cách là cha mẹ thuộc cộng đồng thiểu số, sẽ dạy con cái thích nghi với sự phân biệt đối xử.","round":"1","id":"8b83nio6yk06lsbymHX8"},{"language":"English","content":"THBT politicians have a right to a private life.","division":"","round":"2","topic":{},"tournamentID":"KEJHhRHDE4CXyVyy0Jy8","infoSlide":"","link":"","id":"8bcxcobbXWikwG9vwukx"},{"division":"","tournamentID":"TPp4G8lciZrkipphcyZG","infoSlide":"","content":"THBT the German government should significantly fund films and tv shows that sympathetically depict the narratives of non-Jewish German civilians under the Nazi regime.","round":"Open_Semis","topic":{},"language":"English","link":"","id":"8c1iDbiM54hngWATPhdD"},{"division":"","link":"","language":"English","content":"THW split up banks until none are “too big to fail”.","topic":{},"tournamentID":"jGziThakECOfXgvs0uHl","infoSlide":"","round":"Open_Semis","id":"8cc96Sqz5hpBo68DGBwN"},{"round":"Open_Final","topic":{},"language":"English","tournamentID":"yFALyexswW7KtxRDS4He","content":"THB it is just that citizens create their own armed groups when the state fails to protect them from organised crime.","infoSlide":"","link":"","division":"","id":"8cmvLgjA7m4fhtkdb6v9"},{"tournamentID":"SjQ6g8g2URks9WV96X0G","division":"","language":"English","content":"TH regrets the rise and dominance of social media (such as Facebook and Twitter) in Western Liberal Democracies.","topic":{},"link":"","round":"3","infoSlide":"","id":"8dCrW6ewxzVQiWDAXtKH"},{"infoSlide":"","division":"","content":"THBT foreign visitors to Islamic countries should dress and act according to local sensibilities in public even if not obliged to by law.","topic":{},"round":"1","tournamentID":"JzS0MHRn0Mb2AaYiEq5h","link":"","language":"English","id":"8e5kRYJTNTWKqDiRATYu"},{"language":"English","division":"","topic":{},"tournamentID":"uqR5rN63m5rX9CiOtJjb","link":"","infoSlide":"","round":"2","content":"TH, as Donald Trump, would militarily invade Iran.","id":"8fVZDClc0dH1nY9OtGZn"},{"content":"THW require all isolated religious communities (eg. Hasidic Jews, Jehova's Witnesses) to give all 18-year-olds a 'Rumspringa' [Amish tradition of sending off 18-y.-olds to live in outside world for 1 year, after which they may chose to return or not].","topic":{},"division":"","tournamentID":"fHaBEm9PW7QYO4ZKFbwi","language":"English","infoSlide":"","link":"","round":"2","id":"8gM2d28d82MY1im1Wrt7"},{"content":"THW require all newspapers to be constituted as cooperatives, owned and run by journalists.","tournamentID":"pLQyWywMwoV4AU3XoFJO","infoSlide":"","round":"3","language":"English","division":"","link":"","topic":{},"id":"8h0RdX3w8eSDOvtHQqXv"},{"topic":{},"language":"English","division":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","infoSlide":"","content":"That we should grant legal personhood to culturally significant features of the natural environment.","link":"","round":"Open_Final","id":"8hTyzlwZufVvUxLj10Tr"},{"tournamentID":"HXAIZhpnUdFYuB97wMF8","division":"","link":"","content":"In case of a zombie-epidemic, THBT zombies have a right to a humane life in special zombie-habitats.","topic":{},"language":"English","round":"4","infoSlide":"","id":"8hwgGErUz76S6uKpUaOB"},{"round":"Open_Final","content":"THW establish geographical zones in which the sale, possession, and use of drugs is legal.","topic":{},"division":"","tournamentID":"aVcqgGmAccQ09iBh9iS1","link":"","language":"English","infoSlide":"","id":"8i489mvNKM7g3jwQyFgq"},{"link":"","topic":{},"round":"3","infoSlide":"","language":"English","tournamentID":"JWLA0D1GfpyCkzoL1qX9","content":"THW ban all resit exams.","division":"","id":"8iKhSdlH3sOB4IMj6Jg0"},{"infoSlide":"","topic":{},"language":"English","tournamentID":"sQqCNuWw9nlSsN5agLhC","division":"","link":"","round":"Open_Octa","content":"TH as the OIC would cease business with China (e.g freezing assets, boycotting firms, imposing tariffs, imposing sanctions) until the Uighurs are given safety and religious liberty.","id":"8jE12a0WN3sz21wBd3Qk"},{"round":"5.2","link":"","division":"","language":"English","tournamentID":"h373wn3dFw9UcWDcJpyy","topic":{},"content":"Women older than forty should not have children.","infoSlide":"","id":"8jmD0Jk5UMgpq3PenMaP"},{"infoSlide":"","division":"","link":"","language":"English","topic":{},"content":"This House Believes That it is Legitimate for Nations to Rewrite History Books in their Favour After a Time of War.","round":"3","tournamentID":"6GQGSjlsY612FPwbXRbB","id":"8jqwxtByPrplFjpiEZGA"},{"language":"English","division":"","link":"","content":"THW legalise assisted suicide for any reason.","tournamentID":"KEJHhRHDE4CXyVyy0Jy8","round":"1","topic":{},"infoSlide":"","id":"8kf97Gp5bpw6DloOwscM"},{"link":"","division":"","language":"English","content":"THBT regulation of overconsumption of common shared resources is justified.","round":"2","topic":{},"infoSlide":"","tournamentID":"WcNueZiJXeg9z82dijdL","id":"8l1yc5jXX3T9TNki3CTJ"},{"language":"English","round":"2","link":"","topic":{},"infoSlide":"","tournamentID":"BEDaS3pLJHS1T1Xr4txo","content":"THBT seats in the UK Parliament should be based on competitive, merit-based, examinations rather than elections.","division":"","id":"8l3bjOLxSvHNRyTN4uWk"},{"tournamentID":"Tu7KRlumwIMZzCczqcGG","topic":{},"language":"English","infoSlide":"","link":"","round":"3","content":"THBT, rather than after the fact, the judicial system should be able to take pre-emptive measures when there’s a suspicion of hate-speech.","division":"","id":"8l8jqRLao6en7NJ3ougo"},{"link":"","infoSlide":"","topic":{},"round":"5","content":"THW ban media from publishing graphic depictions of terrorist attacks.","tournamentID":"vx330P6CYx2QKwkFUJiX","division":"","language":"English","id":"8lAZZiFQ0ZC1Y4xEVK6A"},{"round":"Open_Quarters","language":"English","content":"In a plurality of cases, this House believes that the \"me too\" movement should, on balance, prioritize a path towards redemption over retribution.","tournamentID":"9JqIpRhRkA8gulRio4t9","topic":{},"division":"","infoSlide":"","link":"","id":"8lHjwZ2FBkVusotBD1fL"},{"round":"2","division":"","language":"English","infoSlide":"","topic":{},"tournamentID":"nXN2yUG7soxwCp4xidzj","link":"","content":"THS former colonial states involvement in propping up autocratic, but stable, regimes in Africa - Round 2.","id":"8lTegROwttONX8RlTEr6"},{"topic":{},"link":"","content":"THW only intervene in arab uprisings if guaranteed preferential economic agreements in return.","division":"","infoSlide":"","tournamentID":"4XrkYxI1Z9BN4Rn7DC4S","round":"3","language":"English","id":"8lkoIdomFYacdR0mzsp2"},{"division":"","topic":{},"language":"English","tournamentID":"HbzzxzNaEfw54UvTulVq","round":"2","content":"THW require from companies to share their annual profit to all employees.","infoSlide":"","link":"","id":"8lmMlsPxHQJp7rd5Cnlt"},{"topic":{},"infoSlide":"","content":"THW pay reparations to European Roma.","round":"4","language":"English","division":"","tournamentID":"qDUBTulIlHZP0un39LYK","link":"","id":"8lxqqq7M0lUi7L88ewSD"},{"language":"English","infoSlide":"","tournamentID":"o7IbmAZdAZ1UWeWnX7IL","round":"Open_Final","content":"THBT the European left should promote a hard left agenda, including the nationalisation of major industry, very high tax rates on wealthy, and expansion of the welfare states.","topic":{},"division":"","link":"","id":"8mKpmQKLWNJBLU3KrrJS"},{"topic":{},"division":"","infoSlide":"","round":"Open_Semi","content":"This House would allow the judiciary to strike down laws that breach the New Zealand Bill of Rights.","tournamentID":"eypKKJZLZblnh6KffyC5","link":"","language":"English","id":"8mMOEOgV1if6UPWqE8HF"},{"language":"English","tournamentID":"P4io30tN10TYMqGkj2sX","link":"","infoSlide":"","round":"3","topic":{},"division":"","content":"TH, as a theatre, would refuse to run the film \"Dragonfly Eyes.\".","id":"8mOUt7YqoH8YyRrnb68p"},{"link":"","division":"","round":"1","content":"THW remove all hate speech laws.","topic":{},"infoSlide":"","language":"English","tournamentID":"ZHpmROZ4G7eY4iB9dTsM","id":"8mtjI5ELuSmpMUQSDd2m"},{"link":"","division":"","round":"5","content":"TH, as the SNP, would never vote on UK legislation which does not extend territorially to Scotland.","topic":{},"language":"English","infoSlide":"","tournamentID":"lVzNmdGBefqKp5cetQ6Z","id":"8n3IrwQeqdGXBqBSuQiU"},{"round":"8","topic":{},"tournamentID":"QDGMrdrzlFCxVT5WcqNn","link":"","infoSlide":"","content":"This house believes that Black Lives Matter should push for black separatism rather than inclusion.","division":"","language":"English","id":"8nMsD3GsJ7RFvdm6PMVg"},{"tournamentID":"C09YJyBGrNu3L4IxdHCw","division":"","topic":{},"link":"","language":"English","round":"4","infoSlide":"","content":"TH, as postcolonial states, should actively reject the use of their former colonizer's language and prioritize their native language.","id":"8noJ4DUvIWPw444k4lMy"},{"language":"English","division":"","infoSlide":"","round":"1","topic":{},"tournamentID":"GyiwbDg4TBAWCn1HmjKi","link":"","content":"THW abolish all rent control laws.","id":"8oOEyTx23Zebqu6ALnB4"},{"link":"","round":"1","topic":{},"infoSlide":"","content":"THW legalize prostitution.","division":"","tournamentID":"mk4ycJh6yz0VDCnkysot","language":"English","id":"8p9ZwgvsX6WgbJnw9w5C"},{"topic":{},"content":"Assuming that the death penalty is in use, THW make all executions public.","tournamentID":"x0AmWHi8lm3JhQyyhsfo","language":"English","round":"4","link":"","infoSlide":"","division":"","id":"8pvvlKUA1Fa4uxlC1u1l"},{"language":"English","round":"Open_Final","infoSlide":"","tournamentID":"dL45ZXh9u0IhHmAuaa0r","link":"","division":"","content":"In Margaret Atwood's novel Oryx and Crake there is a pill, which: (a) Protects the user against all sexually transmitted diseases (b) Provides unlimited libido and sexual prowess, along with a general sense of energy and well being (c) Acts as a 100% effective male and female birth control pill. All of the effects are irreversible and there are no other side effects. THW take the pill.","topic":{},"id":"8q3peLSBmw1D3ojFZfqt"},{"round":"1","tournamentID":"F966uo3Po2bRFWfFesTz","link":"","content":"THW televise criminal trials.","topic":{},"language":"English","division":"","infoSlide":"","id":"8qVNoKWzo3fhbIu7QQL3"},{"round":"5","topic":{},"infoSlide":"","division":"","language":"English","link":"","content":"THW provide disproportionate financial incentives to make life choices which directly conflict with traditional gender roles.","tournamentID":"hxlmkaNuNgQ6AIDlbsIh","id":"8r34S3sn2QLQtmTpzqPX"},{"link":"","topic":{},"tournamentID":"5Qomv7BFHTKmY4PchwDr","round":"ESL_Semi","language":"English","infoSlide":"","content":"That ASEAN should transform itself into a political union.","division":"","id":"8r3ljAomVUAW1dfPIvgm"},{"round":"1","topic":{},"language":"English","tournamentID":"vzoLJmfiPRVvjgiu4Nrs","link":"","infoSlide":"Escapist art refers to art that is, art with no overt social function.","content":"THS the rise of escapist media and art.","division":"","id":"8rO9ig3pFy8fhrrh4QYg"},{"tournamentID":"pQSBc1H8lG2P8ftbCWZ8","link":"","round":"5","language":"English","content":"This House, as the West, would immediately end all sanctions against Russia.","topic":{},"infoSlide":"","division":"","id":"8rcw3bEBDwUShg9swqOp"},{"language":"Vietnamese","tournamentID":"JaZQ7l5B4R6smBKTdFQJ","infoSlide":"","topic":{},"content":"Chúng tôi sẽ yêu cầu chính phủ hoàng gia và chính phủ Anh Quốc trả tiền bồi thường cho các quốc gia thuộc địa cũ.","link":"","division":"","round":"5","id":"8rmoiM2i8auD8btR2b4d"},{"infoSlide":"","link":"","language":"English","topic":{},"content":"THBT the state should never negotiate with hostage takers.","division":"","tournamentID":"yKZ612WqYq5uAuH9PAZI","round":"3","id":"8sE67qYjYBmCuQQJS6a3"},{"division":"","infoSlide":"","topic":{},"language":"English","round":"1","tournamentID":"81tUVTFSIzBinbpptw4G","content":"THW mandate that in any legal case both sides must have access to an equally priced counsel (for example a rich person can hire as expensive a defense attorney as they would like, but money must be provided to the plaintiff if they cannot afford a lawyer of a similar caliber).","link":"","id":"8sLlmkhAIBF9qtVjVGYW"},{"language":"English","content":"THR the narrative that sacrifice is a necessary prerequisite for great happiness.","infoSlide":"","link":"","topic":{},"division":"","tournamentID":"C09YJyBGrNu3L4IxdHCw","round":"2","id":"8sVPSehzps1xldukNILy"},{"infoSlide":"","round":"Open_Final","tournamentID":"VQZZXpisO7Sjz81KUlh9","content":"THP a world where people are unable to forget their life experiences.","division":"","topic":{},"language":"English","link":"","id":"8sYzUzQ3iheuVoi1KvvC"},{"content":"TH, as Sherlock Holmes, Would accept the henchman’s offer.","division":"","link":"","infoSlide":"","language":"English","tournamentID":"kpTzHelXPi3MmxVjSizP","round":"Open_Final","topic":{},"id":"8sf97uZISquZ7HOgToX3"},{"language":"English","content":"THW prefer to live in a world where one was mortal but could precisely schedule and plan out one`s death.","topic":{},"division":"","infoSlide":"","tournamentID":"S2mG18EWYdh2bPEadyd9","round":"Open_Final","link":"","id":"8tJwbmzvyikPeKGY5p7f"},{"division":"","tournamentID":"FiF24Yc0spiBkvTxiYwD","infoSlide":"Độ tuổi vị thành niên là độ tuổi có nhiều sự thay đổi và nhiều bồng bột, trong phim “At the end of the f**king world”, hai nhân vật chính ở độ tuổi vị thành niên được khắc họa với cá từ ngữ như “tâm thần”, “quái dị”, ... với các hành động như trốn nhà, cướp xe của bố, quan hệ tình dục, giết người, ...","content":"Chúng tôi ủng hộ cách khắc họa độ tuổi vị thành niên trong bộ phim.","language":"Vietnamese","topic":{},"round":"3","link":"","id":"8uV6CNkQflU96PFfgWqZ"},{"division":"","tournamentID":"bcb5yQt6p8cx9SACsvYL","round":"5","topic":{},"content":"THBT it is legitimate to release the unpublished personal memoirs of deceased public figures, even when this is against the express wishes of the individual or their family.","link":"","infoSlide":"","language":"English","id":"8wxSW9vPvEvUyD5BFndn"},{"language":"English","tournamentID":"G1sEnthTpFCqlrrU3bnJ","infoSlide":"","link":"","division":"","topic":{},"content":"THBT the government of Colombia should ignore the result of the October 2nd referendum and implement the Peace Deal.","round":"3","id":"8x47SOz9MPqtrXniJDLq"},{"language":"English","round":"Open_Semis","content":"THBT political parties’ Cabinets and Shadow Cabinets should be elected by the members of that party.","infoSlide":"","topic":{},"division":"","link":"","tournamentID":"X7PfztBaTR2KFk3oINtG","id":"8xOTaMQ1RaUTVFXgRZyS"},{"division":"","link":"","topic":{},"language":"English","infoSlide":"","round":"Open_Final","tournamentID":"LnHXZbgsbq5JIVU7k21X","content":"THW allow audio and video recording of court procedures and the public dissemination of the recordings.","id":"8xb1z4nM9sFBy2jQLI5n"},{"language":"English","tournamentID":"owvW9MKLd7Sqv8hm9HMq","round":"3","content":"THW ban cosmetic/plastic surgery aimed to change racial features.","link":"","topic":{},"division":"","infoSlide":"","id":"8xyAlA3GxOijVDZjvANE"},{"division":"","round":"1","tournamentID":"wXcojonR6N4b28c9T963","content":"THW ban unpaid internships.","link":"","infoSlide":"","topic":{},"language":"English","id":"8yKCpwX32g2JBvEMYkKa"},{"content":"This House Supports rioting as a means of fighting for social justice in the U.S.","language":"English","infoSlide":"","round":"Open_Final","division":"","topic":{},"tournamentID":"0vUzx1fMW06W65BNi8Wn","link":"","id":"8yad0HEzCAMlKydPIkmZ"},{"division":"","content":"THBT it is time for Germany to take more on miiltary responsibility in the world.","topic":{},"link":"","round":"ESL_Final","infoSlide":"","tournamentID":"VAfi19aZTAIKaUuELBL1","language":"English","id":"8zDZ6Mpg97X78OjuOQdQ"},{"topic":{},"link":"","content":"Should throw our principles away (over board)?.","division":"","round":"3","infoSlide":"","language":"English","tournamentID":"vRdckCLdD0l2Rjc63y5T","id":"8zVkGkKEtkGThRfB0TL7"},{"topic":{},"infoSlide":"","language":"English","round":"5","link":"","division":"","tournamentID":"99Ct9ORyddmNGYGfpDl7","content":"THW legalize opium production in Afghanistan.","id":"91RneLBTXRdsnIgYG1Or"},{"division":"","link":"","infoSlide":"","round":"20","content":"THW prohibit the release of previously unpublished artistic works, after the death of the creator, author or musician.","tournamentID":"0DgXee32WEP3hxmGZExS","language":"English","topic":{},"id":"91o3sKtooy3VhDGaRthL"},{"link":"","content":"THB the EU should revoke membership status of any state that withdraws from the Schengen Agreement.","topic":{},"language":"English","division":"","tournamentID":"yxjvIJregbdMEVkOnzCg","infoSlide":"","round":"Open_Semis","id":"91rJXlfPxOzOZbH02LU5"},{"language":"English","content":"THR the narrative that the man box is a form of oppression.","division":"","tournamentID":"CEIVtMmh2XElfzcXXjzn","topic":{},"infoSlide":"","link":"","round":"EFL_Final","id":"92MJqJAQe3YdjItPjEZX"},{"round":"Novice_Finals","tournamentID":"wKhC6L9zPycGKlqYWb6j","infoSlide":"","link":"","language":"English","division":"","topic":{},"content":"THBT American feminists have an obligation to vote for a female presidential candidate.","id":"92f80JgF22L16N2jmWsG"},{"topic":{},"link":"","language":"English","division":"","round":"1","infoSlide":"Solidarity strikes (also known as secondary action, a secondary boycott, or a sympathy strike) are industrial actions undertaken by trade unions in support of strikes initiated by workers in a separate corporation.","tournamentID":"5SXUtPGKmOtgXxWouFAs","content":"THR the decline in solidarity strikes.","id":"93171J32tR7jU4lb5QGy"},{"language":"English","round":"4","infoSlide":"","division":"","content":"THW make ratification of peace agreements conditional on approval by a popular vote of women affected by the conflict.","link":"","tournamentID":"dL45ZXh9u0IhHmAuaa0r","topic":{},"id":"93b8WLLv93nscbHJtsFh"},{"infoSlide":"","topic":{},"link":"","tournamentID":"lM9u9z6CfHfA9HPucSIT","content":"THBT no state, in any situation, has the right to demand, encourage or promote its citizen to fight or die for their country.","language":"English","round":"Open_Final","division":"","id":"93yaPFmioeWOK0QUVvGq"},{"content":"THW require any journalist working for a print,TV or radio news organization to have a government.-issued license.","infoSlide":"","language":"English","division":"","link":"","topic":{},"tournamentID":"Iv1dWODCjV8TBafyTxx7","round":"4","id":"94B4NUtXIRnptwFNosXj"},{"division":"","tournamentID":"qDZwjZ3HER1wsZxsFjBb","link":"","content":"This House would ban payday loans.","infoSlide":"","language":"English","topic":{},"round":"5","id":"94eOnMFRHGuppfynNACk"},{"division":"","topic":{},"round":"1","tournamentID":"RKQT9j6jX9NRbleAmjmy","language":"English","content":"THBT new democracies should prevent revolutionary leaders from standing for elected office.","link":"","infoSlide":"","id":"94vLLWwV6YTgFYe7JipM"},{"topic":{"publicHealth":{"check":true,"title":"Public Health"}},"infoSlide":"","round":"PDOs - Motion 1","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","link":"","content":"THO the narrative of sacrifice as a description of the work performed by essential workers during a pandemic.","division":"","language":"English","id":"958jyje8mUOKKhKBqa28"},{"infoSlide":"","division":"","topic":{},"round":"5","content":"THBT developing countries should pursue the establishment of charter cities / ECCQ los países en vía de desarrollo deberían establecer ciudades chárter.","tournamentID":"QePDCf8cQ2AX4XfcvR3T","link":"","language":"English","id":"959QlYm1UxdQablbONki"},{"content":"In 1947, Otto Frank subimtted his daughter's diary for publication. Particularly personal passages wherein Anne discussed her emerging sexuality were removed from the original manuscript. The diary was later published in its complete form. THW not have published Anne Frank's unabridged diary.","topic":{},"tournamentID":"ovD89w3g4H3GjEFmXcRL","language":"English","link":"","infoSlide":"","round":"Open_Finals","division":"","id":"95Ft3iRdlOkL6pxdenZP"},{"division":"","topic":{},"tournamentID":"JvpXQ1DYmWydXXgsnZ74","infoSlide":"","content":"THW ban medicine designed to erase human memories.","language":"English","round":"Open_Semis","link":"","id":"95O9skp3J6JE3JeVk8N4"},{"division":"","language":"English","tournamentID":"7lMrN2aiwSzD5rzPFwHz","link":"","topic":{},"infoSlide":"","content":"THW ban advertising.","round":"1","id":"95aASGRXYO7Es4ORSJVm"},{"tournamentID":"xDKR551AqNCcautWV6YI","round":"3","division":"","language":"English","link":"","topic":{},"content":"THW ban pornography and would make it taboo (verb tabuisieren).","infoSlide":"","id":"95m6hVLTPSeWIGMHLdqP"},{"link":"","division":"","language":"English","tournamentID":"AsoDjVHcLSyKMQmLkB7S","round":"1","infoSlide":"","topic":{},"content":"THW create a separate athletics league for athletes that choose to take performance enhancing substances.","id":"95xOUPFkL0EKr7azZBqv"},{"tournamentID":"jpLuasMJYB40s1bJk2Ia","content":"This House would prefer a world without sexual attraction.","link":"","language":"English","round":"Open_Semis","topic":{},"infoSlide":"","division":"","id":"96T9qfsm0ppF7JJvXsnp"},{"round":"1","division":"","language":"English","link":"","infoSlide":"","tournamentID":"hlf4hP8CehYHd5yHET3L","content":"This house would ban religious schools.","topic":{},"id":"96pTMcyBBx5jVZ7Sxo7E"},{"content":"Assuming a cap on refugees, THW prioritize admitting refugees who have engaged in armed resistance against oppressive regimes.","round":"4","division":"","topic":{},"tournamentID":"9tZJ2IRGMD2GsDxXtVJA","infoSlide":"","link":"","language":"English","id":"982G5nPbK7gYROWxGche"},{"tournamentID":"XGnGWhzkfstV6wutkTXQ","topic":{},"link":"","language":"English","round":"3","infoSlide":"","content":"TH, as the international community, would support the BDS Movement in light of the Jewish Nation State Bill.","division":"","id":"98FchgRDy3qo2PXWOHFD"},{"round":"Open_Semis","language":"English","division":"","infoSlide":"","content":"TH supports the use of racial profiling in law enforcement.","topic":{},"tournamentID":"dhjYMHAKQ3baHl4HMJbh","link":"","id":"9901YuD3KvprX2ONkizK"},{"language":"English","content":"This House penalise sporting teams for the poor behaviour of their fans.","infoSlide":"","round":"3","link":"","tournamentID":"DxF0p5X2fi9LhbzCFGTd","topic":{},"division":"","id":"9A4lonm6IuF4v4mrIfXP"},{"division":"","tournamentID":"jTIGk8DeHHGFQRpsk85j","language":"English","infoSlide":"","topic":{},"link":"","content":"THBT mainstream media should stop reporting on information from wikileaks.","round":"3","id":"9AvO8WgVavNBUb5w2Dj2"},{"tournamentID":"OLVGf3rE3KKirerr2vyk","round":"Quarterfinals","topic":{},"link":"","content":"Chúng tôi tin rằng Việt Nam nên dừng chính sách \"Bốn Không\" trong Quốc phòng.","infoSlide":"Chính sách \"Bốn Không\" của Việt Nam trong Quốc phòng bao gồm: không tham gia liên minh quân sự; không liên kết với nước này để chống nước kia; không cho nước ngoài đặt căn cứ quân sự hoặc sử dụng lãnh thổ Việt Nam để chống lại nước khác; không sử dụng vũ lực hoặc đe dọa sử dụng vũ lực trong quan hệ quốc tế.","division":"","language":"Vietnamese","id":"9BSaRv3OZkKA9e7rVTHm"},{"content":"THBT the feminist movement should actively participate in the production, distribution and consumption of pornography.","division":"","topic":{},"round":"2","tournamentID":"kIlyrRRnzkKK1188i1Qf","infoSlide":"","language":"English","link":"","id":"9BfwH7d9uSwGDy7y44cS"},{"content":"THBT states should ban their citizens from travelling as tourists to countries with poor human rights record.","link":"","division":"","tournamentID":"jJ6q3uq5BHRM31WhI18D","language":"English","round":"3","topic":{},"infoSlide":"","id":"9C5Vu1E256tV8sAb0HKY"},{"infoSlide":"","topic":{},"language":"English","round":"Open_Final","link":"","content":"THW take Dutch citizenship away from any criminal with a double nationality and would extradite these criminals to the other country they hold citizenship of.","tournamentID":"3dDCV3YYSGl8TNe5f3iO","division":"","id":"9CYNsATUL5h0QWKsMHBM"},{"tournamentID":"YbdPFTE9FbO3iQjZo87D","language":"English","topic":{},"infoSlide":"","division":"","content":"THBT schools should teach children to be skeptical of parental authority.","round":"7","link":"","id":"9CbyTdQRzogRkeXVT6i4"},{"link":"","division":"","tournamentID":"c74XLjeeNJzVbzpMjGlo","language":"English","round":"3","content":"THW ban the gender testing of athletes in sports.","infoSlide":"","topic":{},"id":"9CmUYhXV9fWpG4Ls1jNt"},{"language":"English","topic":{},"tournamentID":"Nzien6R9RXvOTrNMJsza","link":"","round":"3","infoSlide":"","content":"his house would impose an exit tax on citizens who choose to take up long term employment outside their country of origin.","division":"","id":"9D7ziZV0TTf5wdHMMRoL"},{"topic":{},"round":"Open_Final","infoSlide":"","link":"","content":"THW allow police officers to refuse orders on grounds of conscience.","tournamentID":"YF6iuqxO6eUISnAz4iMp","language":"English","division":"","id":"9DPeN2jWLkkSa2UpvnZc"},{"round":"Octofinals - Motion 1","link":"","content":"THP a world where each believer established their own connection to God, rather than establishing one through organised religion.","division":"","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","infoSlide":"","topic":{"religion":{"check":true,"title":"Religion"}},"language":"English","id":"9DgZoReCVznYmyKqQ5ml"},{"language":"English","infoSlide":"","content":"TH believes that Japan should depict the act of Inseki-Jisatsu as cowardly.","link":"","division":"","topic":{},"round":"5","tournamentID":"hY7icY7k8fuatysSqMFr","id":"9DhkLQBbePvQimy5LIHe"},{"topic":{},"division":"","infoSlide":"","tournamentID":"L5MIrW7phE11xSIVutdB","content":"THW pay reparations to women.","round":"Open_Final","language":"English","link":"","id":"9EhICaEbDsgEFym0n8eP"},{"division":"","link":"","topic":{},"language":"English","infoSlide":"","tournamentID":"YZNcM4Wgq9Um4e7kNLdH","content":"THW make the provision or sale of junk food and soda to children under the age of consent illegal.","round":"4","id":"9EvzLtONTK93jEFztFBh"},{"division":"","tournamentID":"roH9ICCjwscIePFGM61P","round":"8","link":"","infoSlide":"","language":"English","content":"THBT nearby mens and womens prisons should set up regularly scheduled inter-prison activities, including the provision of private rooms for sexual intercourse.","topic":{},"id":"9FYoJTrxSDO6er60hVJO"},{"language":"English","division":"","tournamentID":"AsoDjVHcLSyKMQmLkB7S","content":"THW allow individuals to enter into pre-nuptial agreements where infidelity is punishable by prison sentences.","topic":{},"round":"4","link":"","infoSlide":"","id":"9Fbhj2IicqXZjzJLGAyJ"},{"topic":{},"link":"","infoSlide":"","round":"Open_Final","content":"This House, as Michel Temer, regrets nothing.","division":"","tournamentID":"WCy3lEpZMYjWgaZ7Qx1o","language":"English","id":"9GNiF2y77uKIPmmAv13L"},{"content":"THW suspend the domestic operations of companies that actively conceal violations of major environmental regulations.","link":"","tournamentID":"3Gl2F99bU3ZHa2ZjcrUR","topic":{},"language":"English","division":"","infoSlide":"","round":"3","id":"9H2VQOHbXjfpv54HfvS1"},{"round":"1","link":"","topic":{},"tournamentID":"jHRVS3aznjPPQaxWT8bs","content":"THW legally bind children to take care of their parents once the parents reach old age.","language":"English","infoSlide":"","division":"","id":"9IHLYm0Sc0BSjaVctNaG"},{"infoSlide":"","content":"THBT Mossad should covertly assassinate Syrian rebel leaders.","topic":{},"round":"9.2","link":"","language":"English","tournamentID":"BXqPhfwak2R1kYHV48bp","division":"","id":"9IWeJhb8wXHbuSKVQ1yz"},{"topic":{},"content":"THW prohibit all motor vehicles.","infoSlide":"","division":"","tournamentID":"nMUJTA4Krf9MyO7MGVzA","round":"7","language":"English","link":"","id":"9Jn0u6aDSzS9RVUNegcH"},{"infoSlide":"Economic liberalism is a doctrine that assumes the best way to develop societies is to minimize government intervention into the economy and apply greater focus to international trade. International financial institutions such as the World Trade Organization (WTO), the International Monetary Fund (IMF) or the World Bank ften support measures in line with this doctrine. Examples of implementation include: minimizing the number of trade tariffs in the world by the WTO, or encouraging the reduction of public spending and privatization of state-owned enterprises by the IMF.","tournamentID":"AhKyFYR1ZI0UjUmZnaXu","round":"Open Quarterfinals","language":"English","division":"","topic":{},"link":"","content":"THBT the choice of economic liberalism as a dominant doctrine by major international financial institutions does more harm than good.","id":"9JrIFh9Bdn3mYD3lajZJ"},{"topic":{},"content":"This House Believes That the deaf rights movement should disproportionately emphasize the positive experiences associated with being deaf.","round":"7","division":"","infoSlide":"","link":"","tournamentID":"MKOx1AvBmfWL7cHrRXg2","language":"English","id":"9JzARVQLvqHdJJu71PMT"},{"content":"THBT the EU member states should sanction any state that ignores ECJ rulings.","link":"","infoSlide":"","tournamentID":"qotkEeWGxvmIXOZx52qZ","topic":{},"language":"English","division":"","round":"5","id":"9Kk2uf1fVGLPN3r9wUYz"},{"topic":{},"content":"THS a lower income tax for women than men.","round":"Novice_Finals","language":"English","link":"","infoSlide":"","tournamentID":"H2ZQZD4EPmxpktxvJnUz","division":"","id":"9L4Y3rb2fBYI4FTowrxd"},{"round":"1","link":"","language":"English","topic":{},"infoSlide":"","division":"","tournamentID":"eXqHjvQ9MTXYhyv8NeW7","content":"THW make athletes widely believed to have used performance enhancing drugs eligible for their sport's Hall of Fame.","id":"9Ldcr80PA3w4rCwmLEbk"},{"language":"English","topic":{},"division":"","round":"5","content":"This house, as Inda, would embrace China's One Belt One Road Initiative.","infoSlide":"","tournamentID":"jU6ofoRVsACbu04pXrg6","link":"","id":"9M5uu48RTUPtw5Uy2XWg"},{"infoSlide":"","round":"Open_Quarters","link":"","content":"THB it is legitimate for states to deny residence or asylum to immigrants who openly contradict their predominant values.","division":"","topic":{},"tournamentID":"Xt0UV62VgaP360hvHqWG","language":"English","id":"9NDduUjYZVcMfhgcCRoN"},{"round":"3","content":"THW assimilate.","infoSlide":"","language":"English","tournamentID":"GEF7QfNpKGwIZtimYEsL","division":"","link":"","topic":{},"id":"9NPEGcxWBPRbN68yfSXE"},{"content":"TH, as developing economies, would require international actors to match the financial value of their indirect foreign investment in the form of foreign direct investment as a prerequisite of entry into investment in their stock exchange","language":"English","tournamentID":"CBVZREYhjV5bhCHOuWjU","infoSlide":"Foreign Direct Investment pertains to foreign investment in which the investor obtains a lasting interest in an enterprise in another country. It involves establishing a direct business interest in a foreign country, such as buying or establishing a manufacturing business, building warehouses, or buying buildings. Foreign Indirect Investment (FII), on the other hand, refers to investing in the financial assets of a foreign country, such as stocks or bonds available on an exchange. In simple terms, it involves the purchase of securities that can be easily bought or sold. The intent with FII is generally to invest money into the foreign country’s stock market with the hope of generating a return.","division":"","link":"","round":"6","topic":{},"id":"9OIAJqCFiOVej4lbPLlM"},{"content":"THBT Mohammed bin Salman's policies are in the interests of the ruling House of Saud.","topic":{},"division":"","tournamentID":"rEUwN5dFZYjeXBNtp4NG","infoSlide":"","link":"","round":"Open_Semis","language":"English","id":"9OgFl4AcmfGjUXoveamp"},{"infoSlide":"","tournamentID":"nzVlQYCb0rPo23sPMkA5","division":"","link":"","round":"Open_Semis","language":"English","content":"THW impose extra (penalty) taxes on products that cannot be proven to have been produced under fair-trade conditions.","topic":{},"id":"9QCxiLEC0VRe8s7Mn4li"},{"link":"","infoSlide":"","topic":{},"tournamentID":"lM9u9z6CfHfA9HPucSIT","content":"Assuming participants have consented freely and in full knowledge of the risks and possible consequences, THW allow its citizens to participate in the “Thirst Games”.","language":"English","round":"5","division":"","id":"9QDZ5EqcBMFCC3Az1di0"},{"infoSlide":"","link":"","division":"","round":"","content":"TH prefers to live in a world where people predominantly believe that free will does not exist.","topic":{"hr":{"title":"Human Relationships","check":true}},"language":"English","tournamentID":"tkDLesahiehQ4Nqbr4eC","id":"9RYoiX9ljEJXH160IYpf"},{"language":"English","link":"","round":"5","infoSlide":"","content":"THR the existence of high fashion.","division":"","topic":{},"tournamentID":"81tUVTFSIzBinbpptw4G","id":"9SRjIXzibNW5bZrnmT8i"},{"infoSlide":"","division":"","round":"2","language":"English","topic":{},"tournamentID":"jJ6q3uq5BHRM31WhI18D","content":"THW ban strikes in times of economic instability.","link":"","id":"9SXLXfEJyNJ1EMIryCbz"},{"infoSlide":"","language":"English","round":"4","content":"That we would disestablish the World Health Organisation (WHO).","tournamentID":"fkUHa28aVk8LYYEAdofu","division":"","link":"","topic":{},"id":"9T8ASjrlpaHhUsCgA5LL"},{"infoSlide":"","topic":{},"tournamentID":"5O13410pDrHfcvKnpppR","round":"5","content":"THBT groups should have to give up their weapons in order to stand for political office.","language":"English","link":"","division":"","id":"9TCQoWNlXI7tO3RfMYbV"},{"round":"","infoSlide":"","topic":{"publicHealth":{"check":true,"title":"Public Health"}},"content":"Chúng tôi sẽ cấm không cho những người gây cản trở công tác chống dịch Covid-19 (tung thông tin sai lệch, cố tình không khai báo y tế thành thật, cố tình lây lan virus trên diện rộng) được tiêm vắc xin.","language":"Vietnamese","tournamentID":"OqQWJjNQBpGOYwMntw3z","link":"","division":"","id":"9TDhJYbUhPl9sCKadMsE"},{"division":"","topic":{},"content":"THBT on balance, the influence of the internet on journalism has been harmful to society.","link":"","infoSlide":"","tournamentID":"caeYE7341tdQiO1TJafq","language":"English","round":"5","id":"9TEUs6Jv5Ir07eUqiP0q"},{"content":"That, as a promising university graduate, we should opt to make the largest amount of money possible and donate it to charities instead of directly working in social fields.","round":"1","link":"","infoSlide":"","topic":{},"division":"","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","language":"English","id":"9UPxZ8bfXi8KqIdhKJwA"},{"content":"TH as the Chinese government, would apply polyandry policy to women and only women.","link":"","division":"","infoSlide":"","round":"","tournamentID":"1qq9g2ApB8UdvPr2ewx1","topic":{"hr":{"title":"Human Relationships","check":true}},"language":"English","id":"9UnB34QLZ0KQYYl3W4iU"},{"topic":{},"content":"That we should ban mergers and acquisitions of mass media companies.","tournamentID":"5Qomv7BFHTKmY4PchwDr","language":"English","infoSlide":"","link":"","round":"8","division":"","id":"9V39DrinHAqjHHpNecRS"},{"link":"","content":"TH would prohibit businesses from taking a public position on social issues.","topic":{},"tournamentID":"WqXUc7EMDvkqqg3BVCtf","language":"English","division":"","round":"Open_Quarters","infoSlide":"","id":"9VJqX2T7yVIsmaenHXEJ"},{"language":"English","tournamentID":"UfGg9gZEXlU744RWE1Y1","content":"TH regrets the safe space movement’s attempts to significantly limit speech on university campuses.","link":"","division":"","infoSlide":"","round":"ESL_Semis","topic":{},"id":"9VlI6XxGck5pag9yUQwm"},{"tournamentID":"SPjgjrpUBIPs6H9gmx9P","round":"Quarterfinals","topic":{},"content":"That we would believe developing countries should prioritize FDI over ODA.","link":"","language":"English","infoSlide":"","division":"","id":"9VnJYqXJpQF5SqzD6uZM"},{"round":"5","topic":{},"content":"THBT national war memorials should commemorate the casualties on all sides of the conflict.","link":"","division":"","language":"English","tournamentID":"c74XLjeeNJzVbzpMjGlo","infoSlide":"","id":"9VvHlzjnMQH0W58AVixh"},{"link":"","content":"THBT the Gotham City Police Force should seek to offer Wayne employment as an officer within their force.","round":"Open_Final","tournamentID":"zpoYhp2wK06V8pO2Ljrp","language":"English","division":"","infoSlide":"","topic":{},"id":"9W6d1W39J9BgObe4Uwjd"},{"round":"4","content":"That we, as Benny Gantz, regret signing the coalition agreement between Likud and the Blue and White alliance.","link":"","topic":{},"infoSlide":"","language":"English","division":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","id":"9WPyAzQQCws0foQgMh9A"},{"division":"","content":"THW break the state monopoly on alcohol.","infoSlide":"","topic":{},"language":"English","tournamentID":"UVd3X0lgKy2dOb5Yx1c7","link":"","round":"1","id":"9X17dJqtEEbxfJYhTaZT"},{"topic":{},"tournamentID":"GyiwbDg4TBAWCn1HmjKi","language":"English","division":"","content":"THW abolish all publicly accessible sex offender registries.","infoSlide":"","round":"Novice_Final","link":"","id":"9X8fIt7KqxFIUcPoNM5k"},{"language":"English","infoSlide":"","round":"1","topic":{},"division":"","link":"","content":"THBT sex education classes in schools should teach techniques for sexual gratification (including, but not limited to, anal sex, oral sex, mutual gratification and masturbation).","tournamentID":"iWZAiFK5ukpLd7JEkH5z","id":"9XAhv9ZXAgtHZMp3mehO"},{"link":"","infoSlide":"","content":"TH regrets the rise of the nation state.","tournamentID":"b3eMPaD8uywgZW5hZca1","division":"","topic":{},"language":"English","round":"Open_Final","id":"9XXsojXQmG9aHVOQ0WWO"},{"content":"TH regrets the decline in oil prices over the last 18 months.","tournamentID":"m9Mkt1xdSA1jDsNN4zgu","round":"3","topic":{},"link":"","infoSlide":"","language":"English","division":"","id":"9YsDOTX1t28UHpDY3F47"},{"tournamentID":"gUFKQBcgvghmUX6k0Dj3","topic":{},"infoSlide":"Giáo dục tại gia (homeschool) là hình thức dạy học cho con cái hay trẻ em tại nhà hoặc nhiều nơi khác ngoài trường học. Việc dạy học thường được tiến hành bởi phụ huynh, gia sư hoặc giáo viên trực tuyến, như là một giải pháp thay thế hợp pháp cho các trường công lập và tư thục.","language":"Vietnamese","link":"","round":"","division":"","content":"Chúng tôi, với tư cách là bố mẹ của những trẻ em ở nhóm thiểu số, sẽ lựa chọn giáo dục tại gia con.","id":"9ZIvfJf1DvsQKBhdVXxj"},{"infoSlide":"","link":"","language":"English","topic":{},"round":"4","tournamentID":"IrZL7r0XTyBpGGSAYVYR","content":"THBT the USA should withdraw from NATO.","division":"","id":"9ZOk88JNahJRSpXWIsz5"},{"link":"","division":"","round":"7.1","tournamentID":"BXqPhfwak2R1kYHV48bp","infoSlide":"","topic":{},"language":"English","content":"THW not have set up the ICTY after the dissolution of Yugoslavia.","id":"9ZkUxrArOUf8SydzhgNM"},{"content":"THBT the government should only fund further education courses that have high graduate employment rates.","division":"","language":"English","infoSlide":"","topic":{},"tournamentID":"X7PfztBaTR2KFk3oINtG","link":"","round":"5","id":"9a9F9iWA7YwyrzKDgch4"},{"tournamentID":"a7Zdmoc5GpY9KlKkDEVg","content":"THW ban essential service workers from striking.","link":"","language":"English","topic":{},"division":"","infoSlide":"","round":"1","id":"9bfGS3ozj4d03VQ0TJlF"},{"round":"4","topic":{},"division":"","language":"English","link":"","infoSlide":"","content":"The “court of public opinion” refers to situations in which individuals are accused of wrongdoing, defended, and informally tried within public discourse rather than a court of law, and are subsequently treated differently based on society’s verdict(s). For example, Woody Allen is currently being tried within the court of public opinion. TH prefers a society with an active court of public opinion to one without.","tournamentID":"yTe5SQuwd4eeae0M0Sc9","id":"9blKDj19XW0Rz7QaXNpD"},{"language":"English","topic":{},"content":"Should states that financially support other states in crisis situations get a say in that country’s internal politics?.","link":"","round":"2","tournamentID":"RcPsgEaIchl07oq9iFxn","division":"","infoSlide":"","id":"9bx2MJgdpreFEavDWhy1"},{"content":"THW abolish referenda.","round":"1","topic":{},"language":"English","link":"","division":"","infoSlide":"","tournamentID":"Y9leM2xAYiRjIMMIqgfX","id":"9cNqz9MjPenwcBT7rHcm"},{"language":"English","link":"","tournamentID":"DSFg77BvC9y4FK5pBVIv","content":"THBT stale, pale males still rule.","topic":{},"infoSlide":"","round":"18","division":"","id":"9d21kF0tDqjqk4Jb3JfG"},{"link":"","round":"4","tournamentID":"IpWyfCcksctR86jKX66g","content":"THBT The Mexican Government Should Lift All Limits on the Military and Law Enforcement in the Fight Against Organised Crime.","language":"English","topic":{},"infoSlide":"","division":"","id":"9d4qdWWZ9KPscEFTpUq1"},{"topic":{},"division":"","round":"2","link":"","language":"English","content":"THBT the state should not give religious institutions any financial benefits.","tournamentID":"U2WbXKmpxuh7OC6qZ1zX","infoSlide":"","id":"9dCJlDwfL8fFpSZLPIUV"},{"tournamentID":"p6ZWMCxUvbu1V0BT5gJg","round":"5","link":"","infoSlide":"","topic":{},"language":"English","content":"THW never allow parents to make medical decisions for their children that contradict the medical consensus.","division":"","id":"9dL6R3OnvX7iduAeP3Jb"},{"tournamentID":"yFALyexswW7KtxRDS4He","round":"5","content":"THW ban the sales of complex financial products.","link":"","language":"English","division":"","topic":{},"infoSlide":"","id":"9dPuTjK5x7a3zJ8iUSxs"},{"division":"","link":"","topic":{},"tournamentID":"EHPcBnMOPhSjJDJMUqKQ","infoSlide":"","round":"Open_Final","language":"English","content":"TH supports the demolition of makeshift refugee camps on the borders between European countries e.g. The Calais Jungle in France, The Idomeni Camp in Greece.","id":"9dle1xEcMD4iD5FCz8XP"},{"topic":{},"content":"THBT sporting boycotts are a legitimate political tool.","division":"","infoSlide":"","round":"Open_Quarters","link":"","tournamentID":"x1XtlIYDR23OSfEzPpkf","language":"English","id":"9esesWFsW41mlGRmBpCF"},{"language":"English","link":"","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"infoSlide":"","content":"This House would designate specific non-residential areas in which drug users and dealers are legally allowed to buy, use, and sell drugs.","round":"1","division":"","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","id":"9f3LVhXFkQzs7lE0BbLI"},{"topic":{},"tournamentID":"ZpOi9wuiFrLbKo4ygC2p","link":"","division":"","infoSlide":"","content":"TH, as Taiwan, would cease efforts to develop deeper economic, cultural, and diplomatic ties with mainland China.","round":"Open_Semis","language":"English","id":"9f66Dogf6jZpddCgUKOU"},{"link":"","content":"THBT parents should monitor the electronic communications of their children, for example by installing spyware, requiring their children to give them their passwords, or reading browser histories.","language":"English","topic":{},"division":"","round":"1","infoSlide":"","tournamentID":"lleJhm2ki2Ixm97fXI7b","id":"9f8PNBNDuvI0YA9yC7Nb"},{"content":"That we prefer a world where sports are not commercialised.","link":"","infoSlide":"","round":"3","tournamentID":"5Qomv7BFHTKmY4PchwDr","language":"English","division":"","topic":{},"id":"9fDOBk2IZq7s7DkikhlV"},{"link":"","infoSlide":"","round":"1","language":"English","division":"","content":"THW remove all restrictions on euthanasia (such as “hopeless and unbearable” suffering).","tournamentID":"bkOT9pwqHsKTlwricRHY","topic":{},"id":"9fDxfdzy9lPYDUYDWk9U"},{"content":"THBT it is in the interest of the US to adopt a heavily non-interventionist military policy (e.g. significantly reducing expenditure on the military, committing to not using its military except in self-defense, shutting down drone strikes programs).","round":"5","language":"English","link":"","topic":{},"division":"","tournamentID":"g7nlvxejABAgCXhGkJg8","infoSlide":"","id":"9fNb1d0XwdTlELQVlJQ2"},{"division":"","content":"THW reduce VAT tax on goods and services provided for by small businesses in order to combat the black (parallel) economy.","language":"English","tournamentID":"WcTEqzk0ckiyLGdszyy6","infoSlide":"","link":"","topic":{},"round":"Open_Semi_4","id":"9fYsl58auaekd4Bd52yc"},{"content":"THW disband the BBC.","division":"","round":"4","topic":{},"link":"","infoSlide":"","language":"English","tournamentID":"ZqM3Me0eKutOMMTkPwgA","id":"9fmUcq7rdhLFsWHTTSwo"},{"division":"","round":"0","tournamentID":"IgBrZRMArYLwB0oVtcRa","infoSlide":"","topic":{},"content":"Assuming the owners of Ashley Madison refuse to shut down the website, TH as the Impact Team would release the user data.","link":"","language":"English","id":"9fnCPdaT5Z9LkVlO3DvG"},{"language":"English","tournamentID":"yKZ612WqYq5uAuH9PAZI","content":"THW federalise the European Union.","link":"","division":"","infoSlide":"","round":"2","topic":{},"id":"9g76VpjEcjkFS2Op0bVo"},{"tournamentID":"bvHOR7Oow9PPlKPlA2BT","topic":{},"language":"English","content":"THS SOPA (Stop Online Piracy Act).","round":"1.1","link":"","infoSlide":"","division":"","id":"9gFKpeuzEe561UQF6U4r"},{"round":"1","division":"","topic":{},"link":"","infoSlide":"","content":"THW require social media companies to monitor and remove falsehoods.","tournamentID":"OJi1hwkxrfVjCOf6ZDRH","language":"English","id":"9gLXbJWuRs4R6iiujAxi"},{"round":"Open_Final","infoSlide":"","division":"","link":"","tournamentID":"HjQJA65fZ9igHKO8DLAP","language":"English","topic":{},"content":"That the Catholic Church should de-emphasise the concepts of Satan and Hell.","id":"9gwHjotKRwOqCxlicZ7G"},{"content":"THB the NAACP should not seek a post-racial society.","topic":{},"division":"","round":"4","tournamentID":"fIr3uLdOpGeGuZzpnEMf","infoSlide":"","link":"","language":"English","id":"9hTUKw6m0mQfykcfmpdU"},{"content":"This house would impose a sin tax on meat.","language":"English","tournamentID":"DxF0p5X2fi9LhbzCFGTd","infoSlide":"A sin tax is a tax imposed on goods considered as harmful or undesirable, like the taxes currently imposed on alcohol and cigarettes.","link":"","topic":{},"division":"","round":"Quarterfinals","id":"9hfDa9vtnQEh9XugJ1vP"},{"language":"English","tournamentID":"roH9ICCjwscIePFGM61P","topic":{},"infoSlide":"","content":"THW grant independence to [OG picks].","link":"","division":"","round":"9","id":"9hrPqaCiGXVYUg8Ka6OR"},{"link":"","topic":{},"language":"English","infoSlide":"","division":"","round":"3","content":"THB Violent Protest is Legitimate.","tournamentID":"a7Zdmoc5GpY9KlKkDEVg","id":"9jBCNXwj9FWEfGrb2j8e"},{"topic":{},"division":"","tournamentID":"RlGrdg8aVMD5XQVuPN3W","language":"English","round":"3","content":"THBT holding the Olympics is not worth it for the host country.","link":"","infoSlide":"","id":"9kPtNS3kHJpxijf0oCjk"},{"topic":{},"content":"TH, being the US, would oblige the Amish to send their children to public high schools.","round":"1","link":"","tournamentID":"owvW9MKLd7Sqv8hm9HMq","language":"English","infoSlide":"","division":"","id":"9kkHzEMR7AWAbyu9fuRA"},{"link":"","content":"Tiger parenting is a strict or demanding style of parenting focused on pushing children to high levels of achievement. It is characterised by a strong routine (e.g. compulsory homework time), high expectations and physiological control through both positive (e.g. praise/encouragement) and negative (e.g. threats, criticism) means. TH supports Tiger Parenting.","division":"","tournamentID":"X8TtbynGKBJ2Z158R7Sw","topic":{},"round":"3","infoSlide":"","language":"English","id":"9ksS9IyMEfmD5I1tO17s"},{"content":"TH, as a prominent religious leader of a major organised religion, would promote any scripture/interpretation/doctrine that says that the determinant factor of entering heaven is good deeds and not the level of faith/piety.","round":"Open_Quarter","language":"English","topic":{},"infoSlide":"","link":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","division":"","id":"9kynoddNuuta4qBMIcIK"},{"infoSlide":"","tournamentID":"FISzpNaGZKCHkhtDdzPp","division":"","link":"","round":"Open_Semi","content":"THBT social justice movements should not actively try to appeal to allies (e.g. the feminist movement deliberately trying to appeal to men, or the LGBT+ movement to straight cis individuals).","language":"English","topic":{},"id":"9l44draFbj9iwUrfwEIg"},{"topic":{},"content":"THW ban the display of art created with the intented purpose or reasonably likely outcome of creating offence.","division":"","tournamentID":"FfDrngjMOaUCYfZgnHPC","round":"2","infoSlide":"","link":"","language":"English","id":"9l8jPMxa2YNF9TCVvQyj"},{"topic":{},"language":"Vietnamese","infoSlide":"","division":"","tournamentID":"OLVGf3rE3KKirerr2vyk","link":"","round":"Grand Final","content":"Chúng tôi, với tư cách là những người châu Á tiến bộ sống tại phương Tây, sẽ lựa chọn cách sống đạo Phật như một cách phản đối cuộc sống dựa trên những giá trị tư bản.","id":"9lKOjrjNOpDKOKHjeed0"},{"topic":{},"division":"","round":"6","infoSlide":"Folk Saints are dead people recognized by the general population as saints who were not officially acknowledged as saints by the Catholic church. Unlike regular saints, they lived lives that the church considers sinful. They are popular in many regions, especially in Latin America. Examples include Sarita Colonia that answers the prayers of sex workers & LGBT people; and Juan Soldado that answers the prayers of people who commit low-level crimes out of financial desperation.","language":"English","content":"THBT it is in the interest of the Catholic church to officially recognize Folk Saints.","tournamentID":"uJGjvsaThnluwVzoHFXm","link":"","id":"9ltRQYweqxFha76zC59B"},{"content":"That, as Joe Biden, we would prioritize solving economic inequality over racial issues in the campaign.","link":"","tournamentID":"XL594Q2oZbvHmfmYKFvT","division":"","topic":{},"language":"English","infoSlide":"","round":"Open_Quarters","id":"9lxMxZfWRVuuElCUzNDl"},{"tournamentID":"tKXlShZl2vec49jC1bif","topic":{},"content":"THW revoke ISIS fighters' citizenship, even in instances where that would leave them stateless.","language":"English","division":"","round":"5","infoSlide":"","link":"","id":"9mNMO2sgIeFXh4PE9Jqz"},{"content":"THW disallow exclusive private arbitration for contracts between corporations and individuals.","link":"","tournamentID":"HlR3H86XBK4mqvL9v5HT","topic":{},"round":"3","language":"English","infoSlide":"","division":"","id":"9mWAWRxLl4BUpZHQr2pw"},{"tournamentID":"LbgZumsAetYW4T3JVQrG","division":"","infoSlide":"","link":"","language":"English","content":"TH believes that states should stop identifying citizens by their race or religion.","round":"2","topic":{},"id":"9nkXTB2WEpIthvdcTW2R"},{"division":"","topic":{},"language":"English","link":"","infoSlide":"","content":"This wouse would give more votes to the poor.","round":"EFL_Final","tournamentID":"Biz1VRjjdg8eWbm4NJr3","id":"9p5Xva2fD7AgfXkCjzvC"},{"infoSlide":"","division":"","round":"4","link":"","tournamentID":"3puXPIrnWCPTSNlOtl3R","content":"THBT opposition movements in countries with repressive regimes should never use violent tactics.","language":"English","topic":{},"id":"9pH8TrRK8W5QKIoupgap"},{"link":"","round":"6","language":"English","tournamentID":"aywt5Kt0TqoeqngKQ0I4","topic":{},"content":"THBT gay judges or legal experts who meaningfully contribute to legalizing gay marriage are morally obligated to publicly reveal their sexual orientation.","division":"","infoSlide":"","id":"9pWNPLViapMbkeUxB564"},{"link":"","content":"THW ban corporate sponsorship of research within academic or educational institutions.","infoSlide":"In the context of this debate, \"corporate\" means for-profit companies.","round":"6","topic":{"economics":{"check":true,"title":"Economics"}},"division":"","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","language":"English","id":"9pqXW2FAkqJNsrs16fq6"},{"infoSlide":"","content":"THBT civil rights legal organizations (e.g. ACLU) should refuse to provide legal resources to white supremacists and other hate groups.","language":"English","link":"","topic":{},"division":"","round":"1","tournamentID":"i3UU49z9MRO6phe9r1BH","id":"9q7M0fBL0sMJb9K4kP8m"},{"round":"4","link":"","content":"THBT sovereign debt must be insured with the assets of that country, including, among others, land, natural resources and state enterprises, in case of non-compliance.","infoSlide":"","language":"English","division":"","tournamentID":"axWwnyCM8L14pVHljukt","topic":{},"id":"9qJDI1GVY3hnbv2umEb4"},{"link":"","language":"English","topic":{},"infoSlide":"","tournamentID":"GeB6bvqs5FhYEP99Q8Ax","division":"","round":"3","content":"TH regrets that in the case of SGP vs. The Netherlands the European Court of Human Rights ruled in favour of The Netherlands (forcing the SGP to allow women to take office within the party).","id":"9sLXIuiwZnwNuYUKetzT"},{"division":"","language":"English","topic":{},"tournamentID":"t2juKb62UT5HJ0kruUAw","content":"THW prosecute communities for complicity in honour killings.","round":"6","link":"","infoSlide":"","id":"9sTmCuMVr2bYo9pR036o"},{"infoSlide":"","content":"Chúng tôi sẽ tách Vingroup thành các công ty độc lập.","round":"","topic":{},"language":"Vietnamese","tournamentID":"OLVGf3rE3KKirerr2vyk","division":"","link":"","id":"9sjT5u2jSIrvsijZTIPQ"},{"tournamentID":"TmlbBgqJnPvT2UGB0Lbb","content":"This house would criminally prosecute payers and recipients of sports bounties.","language":"English","topic":{},"infoSlide":"","link":"","division":"","round":"6","id":"9tGbL46SybPQmcoxjcEu"},{"tournamentID":"GEF7QfNpKGwIZtimYEsL","infoSlide":"","language":"English","content":"TH, as foreign militaries, would condition material support to the United States Armed Forces on the removal of the Trump Administration.","round":"6","link":"","division":"","topic":{},"id":"9tLsRmGeuvNSkjt0SKm7"},{"round":"Open_Semis","topic":{},"content":"This House would allow drug addicts to file class action suits against their state, for their condition.","division":"","link":"","infoSlide":"","tournamentID":"4WWD63gqcbSKMNoFf5ly","language":"English","id":"9tNW4WuohFpYGElzlOrZ"},{"infoSlide":"","division":"","tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","round":"5.1","language":"English","content":"That we should apply the same criminal sanctions to late term abortions and infanticide.","topic":{},"link":"","id":"9tbwgFZNwP8FbOFayH4j"},{"content":"TH, as a Russian woman, would rather live in the Soviet Union.","infoSlide":"","tournamentID":"EWgHoIX1nWCnY5U0tfPp","topic":{},"round":"Open_Semis","link":"","division":"","language":"English","id":"9uiXi2c1Tidc2vxn4l6y"},{"infoSlide":"","link":"","language":"English","topic":{},"round":"Open_Semi","division":"","content":"That, in countries where military service is mandatory only for men, as self-proclaimed feminist women, we would actively volunteer in the military.","tournamentID":"5Qomv7BFHTKmY4PchwDr","id":"9wnULXDzTqIVCSKn8Kfi"},{"infoSlide":"","topic":{},"division":"","link":"","tournamentID":"XBFpAL1r3TobjAN8vT20","content":"This House believes that the costs of autonomous technologies outweigh the benefits.","round":"3","language":"English","id":"9x6qJpvY0wLXFttChbxH"},{"language":"English","content":"THP a world where the belief or disbelief in God or Gods is seen as an involuntary decision.","infoSlide":"","topic":{},"division":"","round":"Open_Quarter","link":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","id":"9xS9ynIiyT7zkn3mimwl"},{"tournamentID":"CJKUeBIUibEtZYahoUQV","content":"We will choose a society that prioritizes global poverty reduction over poverty reduction in their own countries.","division":"","topic":{"politics":{"title":"Politics","check":true}},"link":"","round":"","language":"English","infoSlide":"","id":"9xSQFcDg93BLGuZdoETg"},{"infoSlide":"","round":"3","content":"TH welcomes double nationalities.","tournamentID":"Tix5aGpgWpddb7Va0oe6","division":"","topic":{},"link":"","language":"English","id":"9xiusJzcnoRWOUHUYHUj"},{"infoSlide":"","tournamentID":"gsX4dlvvsr6lcKP3eM2T","content":"This house would put an age limit on debating.","division":"","topic":{},"round":"Masters_Final","link":"","language":"English","id":"9zGG0zjjikBsFr1c79qN"},{"language":"English","topic":{},"content":"THBT the overthrow of Egypt's President, Mohammed Morsi, is a setback to the goals of the Arab Spring.","round":"4","infoSlide":"","link":"","division":"","tournamentID":"H8XCoxhHfhkNSTYxwR42","id":"9zyzffmovwzNGR1wiDjF"},{"round":"4","infoSlide":"","division":"","content":"THW not want a German Europe.","topic":{},"tournamentID":"OwplBrh3NruD1YwoexiY","link":"","language":"English","id":"A08WdeDHIBAIDQTWI2Z5"},{"content":"THBT religious institutions should not receive tax exemptions or other legal privileges - Grand Finals.","division":"","round":"Open_Final","infoSlide":"","link":"","tournamentID":"ErS5R7GooWYcG88PT27r","topic":{},"language":"English","id":"A0OnYi89zvNZOwqtL3KK"},{"language":"English","link":"","infoSlide":"","topic":{},"round":"4","content":"This House would not give development aid to corrupt regimes.","tournamentID":"i1HAMqWg9Epu5Ys9FJg5","division":"","id":"A0PLfAlCNCVh3P0KP5JW"},{"content":"THBT ASEAN should abandon the China-ASEAN South China Sea Code of Conduct negotiations.","infoSlide":"","division":"","tournamentID":"Sf18naS6qmQzDSIMNRFV","language":"English","link":"","round":"Open_Final","topic":{},"id":"A0Refhb1ZLcYN8sEkrM5"},{"round":"3","content":"THW ban private healthcare and replace it with a comprehensive public system.","topic":{},"language":"English","division":"","infoSlide":"","tournamentID":"jdV8jBuLPUpb2I5gYBQc","link":"","id":"A0RqzwPtNZkxicApznDh"},{"round":"","language":"Vietnamese","topic":{"education":{"check":true,"title":"Education"}},"link":"","tournamentID":"37eWQ7OoHqsPgaN53lHV","division":"","infoSlide":"","content":"Chúng tôi tin rằng lỗi sai của mỗi học sinh nên được giữ riêng cho học sinh đó thay vì công khai trước lớp học.","id":"A1CLNcNwugTxBvuwJoy0"},{"content":"THW ban intl (cross border) commercial surrogacy.","division":"","tournamentID":"OY8sAGz8SAjQpWA2PicY","topic":{},"language":"English","infoSlide":"","link":"","round":"1","id":"A1FWtevWX0r6E1bd6eWH"},{"content":"THBT governments should place no restrictions on how welfare payments, excluding child benefit, are spent.","link":"","language":"English","topic":{},"tournamentID":"Mi4A41wAaOQFffgxIvSR","round":"1","division":"","infoSlide":"","id":"A1JfZY0OvBLYrBKYt6ks"},{"division":"","link":"","round":"Open_Quarter","language":"English","topic":{},"content":"THBT identity based social movements should prioritise the majority populations acceptance of that identity over preservation of a distinct culture.","tournamentID":"mf3XudZleydnsr0lEvkg","infoSlide":"","id":"A1WnU2pGL64SvZYkg97N"},{"topic":{},"division":"","language":"English","tournamentID":"Pt1Z2dTdUinRviVucbZA","infoSlide":"","content":"That we believe that Donkey and Puss should have had a relationship, not Donkey and Dragon.","link":"","round":"Open_Quarter","id":"A1gKED07JUt2WKubUAm3"},{"infoSlide":"","tournamentID":"kFpM1KUkMmDded3L4Zmm","division":"","link":"","topic":{},"language":"English","round":"Open_Semis","content":"This house believes governments should subsidise private home ownership.","id":"A1iMeOz9IQQhHtgHi6nT"},{"division":"","infoSlide":"Suppose the ministry of education provides a budget to the Vietnamese debate community. However, this budget is only enough to develop the National Debate Team (Level 3 and University) or distribute it to develop debate in remote areas of Vietnam.","tournamentID":"OqQWJjNQBpGOYwMntw3z","round":"","link":"","topic":{"education":{"check":true,"title":"Education"}},"language":"English","content":"TH, as members of the Vietnamese debate community, will invest this money in the National Debate Team.","id":"A2KjG07V0zjjkwQiOSpV"},{"infoSlide":"","division":"","content":"THW kill its best friend when s/he is about to become a zombie.","topic":{},"tournamentID":"7lMrN2aiwSzD5rzPFwHz","language":"English","round":"1","link":"","id":"A36A3RBBIMpvEkPJBsnD"},{"tournamentID":"5wD2Kt4YswcLbEnnV0c5","link":"","infoSlide":"","division":"","content":"TH, which is the West, would sanction China.","round":"1","topic":{},"language":"English","id":"A38ftULHk3QnJdWNMvJx"},{"division":"","link":"","round":"Open_Semis","language":"English","infoSlide":"","topic":{},"content":"THW pay drug addicts to be permanently sterilised.","tournamentID":"4dzoeUxkRP5WxDaCVtbY","id":"A3MAuWqtjDwVipXCCkPt"},{"division":"","topic":{},"link":"","tournamentID":"0bOkf8RbGJTfzpOQVOgY","language":"English","infoSlide":"","round":"4","content":"THBT the use of violence can be legitimate in political protest.","id":"A3Ptrm4phPaFgADWxPsg"},{"tournamentID":"JaZQ7l5B4R6smBKTdFQJ","topic":{},"infoSlide":"","round":"4","content":"Chúng tôi tin rằng việc từ bỏ nỗ lực trở thành quốc gia độc lập khỏi Trung Quốc sẽ mang lại lợi ích tốt nhất cho Hong Kong.","link":"","language":"Vietnamese","division":"","id":"A3ekTAGqnPGxZsO502qQ"},{"tournamentID":"fkUHa28aVk8LYYEAdofu","content":"That, assuming it were practicable, sports teams or people that develop novel strategies or techniques should be able to “copyright” them for two seasons after they are first used successfully.","round":"1","topic":{},"language":"English","infoSlide":"","division":"","link":"","id":"A5UZUB8mvN7WQ03tOv3v"},{"division":"","round":"1","language":"English","tournamentID":"kFgdnpZDLOmYAkEJ1Zu6","infoSlide":"","content":"THW allow gifted students to skip years in primary and secondary school.","link":"","topic":{},"id":"A6DTJ6p9QYtDADZ7uF0h"},{"language":"English","topic":{},"link":"","content":"THW link Job Seekers Allowance to previous income.","round":"4","tournamentID":"7lMrN2aiwSzD5rzPFwHz","division":"","infoSlide":"","id":"A6L8H8VRlaBs8elOfcVo"},{"topic":{},"infoSlide":"","content":"THW subsidise art that glorifies the working class.","language":"English","division":"","link":"","tournamentID":"D8wxxb57dF9p7tV8985s","round":"5","id":"A6MoLAui6yXRtZFIiUja"},{"language":"English","infoSlide":"","division":"","content":"That we shuold genetically design \"Philosopher Kings\".","tournamentID":"XL594Q2oZbvHmfmYKFvT","topic":{},"link":"","round":"4","id":"A7AnfgSElRReSR2tRBkq"},{"content":"Should universities stop giving out honours or titles for which no scientific labour or standards were met (e.g. honourary doctors title)?.","topic":{},"infoSlide":"","round":"1","tournamentID":"QjQ9aMJIggiNR9zYImnN","language":"English","division":"","link":"","id":"A7VnQSNt6HypyaxHywam"},{"division":"","language":"English","content":"THW abolish out of court settlements for crimes related to sexual harassment of any kind.","topic":{},"tournamentID":"2YfQ1XbNnQfXwnjeGyDd","link":"","round":"2","infoSlide":"","id":"A8A7FENVTgy9UUyap2Z8"},{"language":"English","round":"4","infoSlide":"","link":"","content":"This house would take a pill that permanently made one entirely contented with one’s current life situation.","tournamentID":"lmRNEraLEkD31bc6Nbnn","division":"","topic":{},"id":"A8DORsI0sTwKLXmTgOlA"},{"tournamentID":"kwsuFgaQ5lYbaXVGrGal","language":"English","infoSlide":"","content":"THS substantially increase its development and/or engagement to the Republic of India.","division":"","round":"8","link":"","topic":{},"id":"A9wS3pfkUN09UaqYiSJf"},{"infoSlide":"","division":"","content":"THW remove the 9th clause from the Japanese constitution.","round":"3.2","language":"English","tournamentID":"BXqPhfwak2R1kYHV48bp","topic":{},"link":"","id":"AANgF1GCuA6apYtj2eq3"},{"infoSlide":"","division":"","round":"Open_Final","link":"","language":"English","content":"someone pls provide this, it isn't available online.","tournamentID":"JDfeMpzRWbEVXloSgRZp","topic":{},"id":"AAy4iWiVf2qHNbwshwme"},{"tournamentID":"Fu8k3vJxi4iJsdZw9d7j","link":"","content":"THS a Unity Ticket by prominent members of the Republican and Democratic parties in the 2020 US presidential elections.","infoSlide":"","topic":{},"division":"","language":"English","round":"3","id":"ABx8xuPFTKHapQpYD1Ko"},{"round":"Open_Quarters","infoSlide":"","topic":{},"division":"","language":"English","tournamentID":"n7qv29PmNuF5SOe42oiz","content":"That, as a Rohingya Muslim fleeing the Myanmar military, we would join ARSA. (Octo-finals) That we regret the custom of giving gifts.","link":"","id":"AC0jKtjo47NEQf4ygbqB"},{"division":"","link":"","content":"THW ban pornography.","round":"3","topic":{},"language":"English","tournamentID":"C4Vv4FZW36V7ONi9kULg","infoSlide":"","id":"ADP4czJBLodlwjGuAWMt"},{"topic":{},"tournamentID":"nzVlQYCb0rPo23sPMkA5","round":"3","infoSlide":"","division":"","link":"","content":"THW welcome the worldwide introduction of soylent or similar mixtures as a nutritional standard or staple food.","language":"English","id":"ADnMPTiSDjDFx67cxsMA"},{"language":"English","link":"","tournamentID":"92dIEXeOXUVvlcFeGCIr","infoSlide":"","topic":{},"round":"Masters_2","division":"","content":"THW kill baby Hitler.","id":"AE0o3RxRNnHlQaSs90Sf"},{"language":"English","division":"","infoSlide":"","topic":{},"content":"This house believes that developing nations should pay for the full tuition of female university students.","link":"","tournamentID":"t2juKb62UT5HJ0kruUAw","round":"2","id":"AEgaP2vFQ9xtvaRuKOZO"},{"topic":{},"infoSlide":"","link":"","language":"English","content":"THW break up big tech companies (Amazon, Facebook, Google).","tournamentID":"ZClJskShp09gm6WCITGC","division":"","round":"5","id":"AFCFkgeXGMAwBIwsByP1"},{"division":"","topic":{},"round":"3","infoSlide":"","content":"THBT Western States should support and engineer coups in militarily weak states they identify as having authoritarian leaders.","language":"English","link":"","tournamentID":"zpoYhp2wK06V8pO2Ljrp","id":"AFsPJ4n5PSK1Va3Kwlvj"},{"division":"","content":"THW make COVID-19 vaccination compulsory for all residents and citizens.","language":"English","tournamentID":"IXq1CdgyiKmkyEDJURrV","link":"","infoSlide":"","topic":{},"round":"7","id":"AG5wdzOZsNrz0bplMMFZ"},{"tournamentID":"0bpNzjTgN71TZQEkHTak","round":"5","language":"English","link":"","division":"","infoSlide":"","content":"THBT self described progressive males of dominant ethnicities are morally obliged to refrain from taking positions of responsibility where there is a qualified alternative candidate from a historically disadvantaged group who would otherwise receive the post.","topic":{},"id":"AGPXnY6N8SvNFQEYrGxU"},{"infoSlide":"","language":"English","round":"3","content":"THR cancel culture.","tournamentID":"fzTALe8bGudT9BWcFtDO","division":"","link":"","topic":{},"id":"AHhLmZxWJvueTieZpqon"},{"division":"","content":"THW decrease womens’ income tax.","language":"English","tournamentID":"BXqPhfwak2R1kYHV48bp","topic":{},"round":"5.1","infoSlide":"","link":"","id":"AI81EeVBtoxjdOcEGKGB"},{"link":"","tournamentID":"wZYAoJ8UubcT3x3E0CVj","infoSlide":"","topic":{},"content":"THW establish a US federal court with the authority to approve targeted killings of unlawful combatants.","round":"2","language":"English","division":"","id":"AIM73ocCBiTZfMvVJVSx"},{"infoSlide":"","round":"8","language":"English","topic":{},"tournamentID":"0DgXee32WEP3hxmGZExS","division":"","content":"THW allow people to sell their organs.","link":"","id":"AIS8WberNx6gvNVkuzQY"},{"tournamentID":"eXqHjvQ9MTXYhyv8NeW7","link":"","infoSlide":"","division":"","round":"2","language":"English","topic":{},"content":"THR the rise of choice feminism.","id":"AIgnxePJ9OKyvjyFidcM"},{"content":"THW ban all political donations by corporations.","tournamentID":"YcxOXVvo0TolX2RquRlw","division":"","infoSlide":"","link":"","round":"1","topic":{},"language":"English","id":"AJSvpDz4Aw30s8YIRr1R"},{"round":"2","language":"English","link":"","tournamentID":"6NSl7moQPnBVA2R4Z66b","topic":{},"infoSlide":"","content":"This House believes that the EU should pursue further relations with China, at the expense of relations with the US.","division":"","id":"AK2Je2L7u9KJdC3e4h0A"},{"content":"Should teams be excluded from sports matches when one of their team members has taken doping?.","division":"","link":"","topic":{},"tournamentID":"Ef5RtQo9Rr0nt7Nnhncq","infoSlide":"","round":"2","language":"English","id":"AKP3g3RE70vvnHAyxNOQ"},{"infoSlide":"","topic":{},"link":"","language":"English","division":"","content":"THW Pull the Switch.","tournamentID":"3VTSywK012zU6GDLqZzC","round":"Novice_Final","id":"AKap9Z4vkwnnMa5w8nid"},{"content":"THW force elected politicians and their families to use only public health and education services.","topic":{},"language":"English","tournamentID":"LjEl8Sog63zZMpDhsInz","division":"","link":"","infoSlide":"","round":"3","id":"AKf312akc3oiAIL8HgYd"},{"language":"English","infoSlide":"","content":"THBT FIFA should revoke the 2018 World Cup from Russia.","tournamentID":"EK7bkCOLaLHjVsqCcikk","round":"4","topic":{},"division":"","link":"","id":"AKs2gEBiMLqd7HGgijJH"},{"topic":{},"infoSlide":"","division":"","round":"1","tournamentID":"0EfM3HXUbP8eg9asv3MM","language":"English","content":"THW require all schools in New Zealand to become co-educational.","link":"","id":"AL66Jw336bBCYpIN0zjd"},{"language":"English","content":"THBT environmental advocacy groups should prioritise lobbying governments to change environmental policy (e.g. cap and trade policies, banning environmentally harmful chemicals) rather than convincing individuals to take responsibility for their contribution to environmental damage (e.g. reducing/recycling waste, taking public transport).","tournamentID":"68SrKFb9XtsQrLtqLtjO","topic":{},"link":"","infoSlide":"","division":"","round":"2","id":"AMW8rMtjqGf1C6CaBuhW"},{"language":"English","topic":{},"link":"","tournamentID":"k1fYFDihwlGzjmVGfSXp","infoSlide":"","content":"THW limit private land ownership.","round":"1","division":"","id":"ANKbBOQOj0U4VaDVerv1"},{"topic":{},"division":"","content":"TH whishes that Barack Obama had faced a primary challenge.","link":"","infoSlide":"","tournamentID":"uOrbqWx5KdpXchUpHb3Z","round":"Open_Semis","language":"English","id":"ANaCOTlqJDKHFGzn3Uia"},{"language":"English","tournamentID":"HtADLvDpWQsx5qtLh5A9","round":"2","infoSlide":"","link":"","topic":{},"division":"","content":"THBT prominent social media platforms (e.g Twitter, Facebook, Weibo) should not allow politicians or political parties to make public accounts.","id":"ANkKeUGTVHPgtW6hs49r"},{"content":"Democrats should abandon identity politics as a central tenant of their campaigning strategy.","link":"","topic":{},"language":"English","tournamentID":"9yZPq4vkPBjWs9gMF8AS","infoSlide":"","round":"2","division":"","id":"AOyggEu8WCxt2j4f2zuG"},{"round":"5","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","link":"","division":"","infoSlide":"","language":"English","content":"That we regret the rise of True Crime entertainment (e.g Making A Murderer, Serial, Tiger King, The Jinx etc.).","topic":{},"id":"AP6sGNg7hhQnwHNJmBbH"},{"content":"Given the technology, THW burn obedience to criminal law in the brains of all humans.","link":"","language":"English","topic":{},"round":"Open_Final","division":"","infoSlide":"","tournamentID":"TtPU6Lwr9qKhUvLMeyVD","id":"APG8WmgevLfl08sLld2V"},{"topic":{},"division":"","language":"English","infoSlide":"","tournamentID":"Cx2GIJEWrhOBR3DTErNu","content":"TH supports the use of child labour in the developing world.","round":"1","link":"","id":"APcy2mXxv65u6X8qyMyU"},{"language":"English","division":"","round":"4","infoSlide":"Centrism is a political outlook or position that involves acceptance and/or support of a balance of social equality and a degree of social hierarchy, while opposing political changes which would result in a significant shift of society strongly to either the left or the right.","link":"","content":"THO political centrism.","tournamentID":"75jspJDrwq3Ldwex90Qr","topic":{},"id":"AQBVYnynTqVhhEPuOsks"},{"division":"","link":"","infoSlide":"","tournamentID":"ubSWFCyfoCllO0KSjdjy","content":"THW bar Hassan Diab and his cabinet from standing for parliamentary seats in Lebanon.","topic":{},"language":"English","round":"Open_Semi","id":"ARNNyUFCJN20JVVG7o8Z"},{"link":"","round":"4","tournamentID":"HjQJA65fZ9igHKO8DLAP","division":"","language":"English","infoSlide":"","topic":{},"content":"That the European Union should abandon the Euro.","id":"ARrVvdCg8ZVzO65OAfER"},{"tournamentID":"QH8qP4fqpVb4nMsZXwxw","language":"English","topic":{},"content":"The Pirate bay is a website where users illegally download copyrighted material such as music, films and video games. Attempts have been made by numerous governments to shut it down. TH Supports the Pirate Bay.","round":"4","infoSlide":"","division":"","link":"","id":"ASJuFucBCqzfLd4CZnMs"},{"content":"That developing countries should ban the sale of GMO products.","round":"4","division":"","infoSlide":"","tournamentID":"XL594Q2oZbvHmfmYKFvT","link":"","language":"English","topic":{},"id":"ATT1HcPHlC2a5qdKscvM"},{"link":"","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","infoSlide":"","round":"Open_Final","topic":{},"division":"","content":"THW use Soul 100.","language":"English","id":"AUNfuBqLaaoDkJxQoWBC"},{"infoSlide":"","topic":{},"tournamentID":"LuNDiT9YYZhQScUmMX82","content":"THW pay reparations to former mining communities in the UK.","language":"English","division":"","round":"4","link":"","id":"AUiJxpmMa4HI91FatIIb"},{"language":"English","round":"Novice_Final","topic":{},"link":"","division":"","tournamentID":"4BdwKPHB1LrpVYqE4E51","content":"THR the popular belief in free will.","infoSlide":"","id":"AUxKfcf9h5zP4PWfhcap"},{"topic":{},"language":"English","infoSlide":"","division":"","content":"This house, as the state of Pakistan, would officially recognise the state of Israel.","tournamentID":"pq9R1PqBqzQNX8jAplt5","round":"3","link":"","id":"AVAjS0aR2gGKAtvmuEVq"},{"language":"English","infoSlide":"","division":"","round":"Open_Semis","topic":{},"content":"THBT music streaming services (e.g. Spotify, Apple etc.) do more harm than good.","tournamentID":"Vis5yhSVMHubvgdJTwP1","link":"","id":"AVyAiKvuPPsCbjbn8DAx"},{"infoSlide":"","round":"3","content":"TH, as US, would covertly begin boosting the amount of foreign election interferences done by CIA.","topic":{},"language":"English","link":"","tournamentID":"1DUltfq5WOlWowHiNs5h","division":"","id":"AWi0utb3dHrE2TG10fl8"},{"language":"English","tournamentID":"0zMaoLN7qmzWGSYIzhjh","link":"","topic":{},"division":"","content":"THBT artists from dominant cultural majorities should not seek to portray minority cultures.","round":"5","infoSlide":"","id":"AYAh1ZmLPmZvIpRQT4AX"},{"tournamentID":"CJKUeBIUibEtZYahoUQV","topic":{"publicHealth":{"title":"Public Health","check":true}},"link":"","infoSlide":"","language":"Vietnamese","round":"","content":"Chúng tôi phản đối việc công khai danh tính người nhiễm COVID-19.","division":"","id":"AYPZOccYGJvDC46fHIMQ"},{"topic":{},"content":"This House supports a norm of embracing anger in public discourse rather than one of aspiring to dispassionate objectivity.","tournamentID":"EP5HDm4G3OfMlciId6YM","division":"","infoSlide":"","language":"English","round":"Open_Quarters","link":"","id":"AYYzUf3R6LfgeATFAPfR"},{"infoSlide":"","topic":{},"content":"THR the narrative that immortality is desirable.","division":"","tournamentID":"4qwhZS2zOsdzzkyQlcaW","round":"Open_Quarters","language":"English","link":"","id":"AZ6zYxX0TMV78A0CFKva"},{"content":"THR the commercialisation of the Hajj.","infoSlide":"The Hajj, in Islam, is the pilgrimage to the holy city of Mecca in Saudi Arabia, the holiest city for Muslims. Hajj is one of the five pillars of faith in Islam, and is a mandatory religious duty for Muslims that must be carried out at least once in their lifetime by all adults provided they are physically and financially capable of undertaking the journey, and can support their families during their absence.","language":"English","division":"","topic":{},"link":"","round":"Quarterfinals","tournamentID":"75jspJDrwq3Ldwex90Qr","id":"AZ9PxkWOOv8DXZl0NKFQ"},{"tournamentID":"7eFEPGI7iZMY9BTHG43T","link":"","language":"English","division":"","round":"1","content":"THW require companies to pay the stay-at-home wages of the partners of employees.","infoSlide":"","topic":{},"id":"AZQ9HKwdSzCDq2rS4YGr"},{"link":"","division":"","topic":{},"content":"TH, as a developing state, would ignore all international patent and copyright treaties.","round":"4","language":"English","tournamentID":"UT720iaDHtta4VRkpcnp","infoSlide":"","id":"Aa1nifcHSBEViJM1tIhC"},{"language":"Vietnamese","infoSlide":"","round":"2","division":"","content":"Chúng tôi sẽ không ưu tiên phân phát vaccine COVID-19 cho những người vi phạm quy định về an toàn sức khỏe công cộng (phát tán tin tức sai trái, không đeo khẩu trang, ...)","topic":{},"link":"","tournamentID":"I4LkoGhDJmtXsINMJVjW","id":"AawCGbSjXktuaQnkiwmx"},{"division":"","content":"That Palestinians should abandon their claim for statehood and opt for a civil rights struggle instead.","infoSlide":"","topic":{},"link":"","language":"English","tournamentID":"5Qomv7BFHTKmY4PchwDr","round":"4","id":"AbIPO6ZQ8pnB8UQtMJ1b"},{"topic":{},"content":"THBT developed nations should abolish all protectionist trade policies.","round":"1","language":"English","division":"","tournamentID":"mBBGfJmUYufw4KNTlYoR","link":"","infoSlide":"","id":"AbYoRaV6O4lSjgihAGfP"},{"topic":{},"tournamentID":"H2Xg2NvZoEwZtgc8tzmz","content":"THBT hacking is an acceptable form of protest against large corporations.","round":"1","infoSlide":"","division":"","language":"English","link":"","id":"AbusE6hhKsM1H8pprVoC"},{"link":"","language":"English","content":"TH, as a western democracy, would prefer relations with a stable autocracy as opposed to an unstable democracy.","infoSlide":"","topic":{},"division":"","round":"3","tournamentID":"PGbz2bx1wifAEJU64jdo","id":"AcCNOWSaawpk1ztOMuqc"},{"tournamentID":"9MaCpfb2p23wkk8OOSBf","topic":{},"content":"TH, as Dr. Anthony Fauci, would publicly and actively call out Trump whenever he gives false medical advice to the general public.","division":"","round":"Novice_Final","infoSlide":"","link":"","language":"English","id":"Afj9Cpfs8DbXrsDpGTRn"},{"infoSlide":"","topic":{},"content":"This House would actively encourage women not to have children.","division":"","round":"7","language":"English","tournamentID":"EP5HDm4G3OfMlciId6YM","link":"","id":"Aghblya6oR4nodZIXaaQ"},{"division":"","topic":{},"link":"","content":"This house would require all debaters to pass a course in geography before debating foreign policy motions.","round":"4","tournamentID":"TmlbBgqJnPvT2UGB0Lbb","language":"English","infoSlide":"","id":"Ah5VhVBGmgesgPgjXN3r"},{"link":"","round":"2","tournamentID":"Q8FD3CioEeXKgMlwBG6R","topic":{},"language":"English","infoSlide":"","content":"THBT X should take the job of CEO.","division":"","id":"AhJmrJp5fuM6hTdC3uh9"},{"round":"4","tournamentID":"2iPGMwcaQqidqlVq1gzJ","infoSlide":"","division":"","language":"English","content":"THW put a tax on the number of foreign players in a sports teams (not exact wording).","topic":{},"link":"","id":"Ahs7lPBR5MX9I9WAGbwp"},{"division":"","topic":{},"language":"English","link":"","round":"1","infoSlide":"","content":"THW ban zoos.","tournamentID":"zbDMNQdzWmUf0FHPwYDO","id":"AiVMYsuunfNVnHNFfwEc"},{"language":"English","content":"THW ban dating services built around matching rich men/women with younger men/women.","infoSlide":"","tournamentID":"368JyxQNhxMm3WEWlba7","round":"5","topic":{},"link":"","division":"","id":"AibYAC2d3KgjwuH77iIC"},{"content":"TH opposes the Biden Administration's plan to finance large scale governmental projects through multi-trillion dollar fiscal stimulus.","topic":{},"round":"Open Quarterfinals","infoSlide":"","tournamentID":"uJGjvsaThnluwVzoHFXm","link":"","division":"","language":"English","id":"AigYwByAQEbZMYDYmydf"},{"topic":{},"tournamentID":"ZjN9B5kqPitiGVpXIpHO","round":"Open_Semi","division":"","infoSlide":"","language":"English","content":"THBT tourists should boycott Indigenous tourist destinations.","link":"","id":"AiymTilyZvn2cQKepu6s"},{"tournamentID":"tp2xo2eFva2we2bqlQBC","infoSlide":"","content":"TH prefers a world in which the prevailing norm is one of serial monogamy rather than monogamy.","round":"Open_Final","topic":{},"link":"","division":"","language":"English","id":"AjTAu89P2WuBFM95Ehy0"},{"content":"THW grant high ranking army officers the right to veto government decisions regarding security.","infoSlide":"","language":"English","link":"","topic":{},"round":"2","division":"","tournamentID":"Ba2zBwHOYMuoyQZQbecz","id":"Ak4GtwIddhDT84cdd76z"},{"division":"","language":"English","link":"","content":"TH would forbid western tech companies from accepting chinese standards in order to access the chinese market (e.g. Google accepting censorship, Apple moving servers to china etc).","topic":{},"round":"3","tournamentID":"aEZUJtwNrlKTdARVPZNh","infoSlide":"","id":"AkUfhk0ZoyC3LZrKaQIO"},{"infoSlide":"","content":"Assuming feasibility, THW allow individuals to sell their units of Intelligence Quotient (IQ).","tournamentID":"LJpNoy6NIxtIr7pXj25B","division":"","topic":{},"language":"English","link":"","round":"Open_Final","id":"Al4JBP8fPnLYSfpHZovC"},{"link":"","language":"English","division":"","content":"THW release the evidence.","infoSlide":"","topic":{},"round":"Open_Final","tournamentID":"p6ZWMCxUvbu1V0BT5gJg","id":"AlwtCeyJnBVMIEt0qhje"},{"tournamentID":"53fI8Yf0j74CAnSOjn9g","infoSlide":"","topic":{},"division":"","round":"Open_Quarters","language":"English","content":"THBT the state should pay reparations to women.","link":"","id":"Alx5riwU8C0WfVawYBjQ"},{"language":"English","content":"THBT people have a moral duty to stop chanting words like “puto” or “maricón” (faggot) at sporting events.","division":"","topic":{},"link":"","tournamentID":"yFALyexswW7KtxRDS4He","round":"1","infoSlide":"","id":"AmLrtt3BZMxHBolf7zeL"},{"infoSlide":"","round":"2","division":"","language":"English","tournamentID":"c7J6C6adBALyiCv5F8G1","topic":{},"link":"","content":"THW allow UK broadcasters to be politically partisan in the reporting of current events.","id":"AmcVKpv67ShH4jOaKBRC"},{"division":"","topic":{},"round":"1","infoSlide":"","link":"","tournamentID":"seLxlAUewt8fbZdlsCGC","content":"As an 18 year old female from a lower income family receiving a scholarship to attend a highly prestigious yet highly competitive university, THW invest all their time and resources in the most lucrative field to work in, as opposed to seeking knowledge and experiences from multiple fields.","language":"English","id":"AmwmkNqjYEBPQJnSTBJo"},{"round":"3","division":"","language":"English","tournamentID":"1hlmlrX6In8aTapDJoTu","link":"","infoSlide":"","topic":{},"content":"THW take the blue pill.","id":"An4AU1q0X6IHKiYTVlBw"},{"tournamentID":"seLxlAUewt8fbZdlsCGC","infoSlide":"","division":"","content":"THW focus economic stimulus packages on businesses instead of individuals.","language":"English","topic":{},"link":"","round":"3","id":"ApECW1tuiJGtLdXBlL8Z"},{"infoSlide":"","topic":{},"language":"English","round":"4","link":"","division":"","content":"Assume the technical possibility of a manned flight to Mars, without the possibility to survive there on a long-term basis, or to return: Should we send a manned spacecraft to Mars?.","tournamentID":"Ef5RtQo9Rr0nt7Nnhncq","id":"Aq0NsHuPSIMX9yqWhCi4"},{"link":"","tournamentID":"eBlrzVaoBbfX5kbian3T","language":"English","division":"","topic":{},"infoSlide":"","round":"2","content":"THBT governments should lie to their populations in time of economic crisis, where the lies are deemed likely to improve the economy.","id":"AqUS14lYDYjyTIZITwMW"},{"language":"Vietnamese","link":"","tournamentID":"nALUKfkpmOnWnQCzecru","division":"","round":"","content":"Chúng tôi tin rằng thế giới sẽ tốt hơn khi thể thao đóng vai trò duy nhất là công cụ giải trí, kể cả không đảm bảo được tính công bằng trong thi đấu.","topic":{"sports":{"check":true,"title":"Sports"}},"infoSlide":"","id":"AqbWd3qlzyT1ogIQacSm"},{"topic":{"politics":{"title":"Politics","check":true}},"tournamentID":"mNwitMoNsjWupgwG8pR5","round":"","division":"","link":"","language":"English","content":"THO the narrative that democracy is an innate human right.","infoSlide":"","id":"ArH1jYDlb0CjRQqtpozT"},{"content":"THW permit the state discretionary eavesdropping on its citizens.","topic":{},"infoSlide":"","language":"English","round":"11","link":"","tournamentID":"nMUJTA4Krf9MyO7MGVzA","division":"","id":"ArWgiK7ionWEy5V9SNeP"},{"topic":{},"round":"Open_Final","tournamentID":"qotkEeWGxvmIXOZx52qZ","link":"","infoSlide":"","language":"English","content":"TH regrets the increased mechanization of manual labor.","division":"","id":"ArhxNga9nQp3ykXLrxhv"},{"language":"Vietnamese","tournamentID":"OLVGf3rE3KKirerr2vyk","infoSlide":"","link":"","topic":{},"content":"Chúng tôi tin rằng nghệ thuật tốt là nghệ thuật phục vụ đám đông.","division":"","round":"3","id":"AsocAZE0WpEoSlBck5bh"},{"language":"English","link":"","infoSlide":"","tournamentID":"GfEZYNzXPpqDU3CX6qxi","content":"THW place police in schools that protect them.","topic":{},"round":"2","division":"","id":"AuECBkDEf6nHemyrLr1H"},{"topic":{},"language":"English","division":"","content":"THW make sportןמע teams whose fans performed violence or severe disorderly behaviour, play their matches in front of a crowd of women and children only.","tournamentID":"JsQrI80phRuvDHr37q5N","infoSlide":"","link":"","round":"2","id":"Auik6gDFqhTACg7ZXrE0"},{"division":"","tournamentID":"8DernPpRwzBf2YIkESEX","infoSlide":"","link":"","round":"1","topic":{},"content":"THW actively instill a value of disobeying authority in children.","language":"English","id":"AvzZU20GgXHJWhevzSeq"},{"infoSlide":"","content":"THBT film stars, music stars & other popular entertainers should be prohibited from participating in political campaigns.","topic":{},"round":"Open_Semis","division":"","link":"","language":"English","tournamentID":"jhyT1LK3YdR0do1cosc6","id":"Ax6yYtIXYojMuRuM1Aay"},{"infoSlide":"","division":"","content":"Nếu công nghệ cho phép, chúng tôi sẽ quyết định tuổi thọ của một người dựa trên IQ của họ theo tỉ lệ nghịch.","link":"","language":"Vietnamese","tournamentID":"mkrRVvz5EWSZie6LBtCH","topic":{},"round":"Grand Final","id":"AxDLZbCHW098pEb4j3yx"},{"infoSlide":"","language":"English","link":"","content":"This house would require companies to place images of animal suffering on all products or food whose production harmed or killed animals.","tournamentID":"NYyJaJXo1SigW6G8Y1Lm","division":"","round":"ESL_Quarters","topic":{},"id":"AxSnIXrgAUsMhQbxA8oC"},{"language":"English","division":"","infoSlide":"","content":"THBT College and professional teams should be held accountable when their competitors or coaches commit sexual assault.","round":"6","tournamentID":"KMM87DnmWFjc4UzTdkjp","link":"","topic":{},"id":"AxVlP8U8TbkI6ypnCpdz"},{"infoSlide":"","content":"THR anthropocentrism in the environmental rights movement.","language":"English","round":"Open_Quarters","division":"","topic":{},"tournamentID":"1zpwTG4R66xy1c4CrMeq","link":"","id":"AxlQELMUoUbdxMjysyet"},{"division":"","round":"Semifinals","link":"","tournamentID":"Wpv6iXJkIPUXYIkl0dST","language":"Vietnamese","content":"Chúng tôi nuối tiếc sự tiêu chuẩn hóa (bình thường hóa) chính trị cực đoan.","infoSlide":"Chính trị cực đoan là việc ủng hộ phản ứng cực đoan trong các buổi diễn thuyết trước công chúng và lợi dụng sự phẫn nộ của công chúng ddeer phản ứng với một vấn đề xã hội. Điều này trái ngược với quy chuẩn về sự công bằng khách quan vì người tham gia các buổi diễn thuyết thường khá trấn tĩnh.","topic":{"politics":{"check":true,"title":"Politics"}},"id":"AxnfvVFQobuqe7voeTLe"},{"round":"Open_Final","topic":{},"division":"","tournamentID":"A8uW9F7TCtUhRLICBZWb","infoSlide":"","language":"English","content":"A ship sinks at the high seas. Three sailors and the cabin boy survive in a lifeboat. There is no land in sight and the men are exhausted. To stay alive, the sailors kill and eat the cabin boy against his will. Days later, the lifeboat is found and brought to land. The sailors survived thanks to the reinforcement brought by eating the cabin boy. The authorities hear of the tale and the sailors are brought before a court where a jury will give a verdict. Motion: TH, as the jury, would vote against a conviction.","link":"","id":"AyFxz2WFddIYwRX0tsec"},{"topic":{},"content":"THBT Russia along with the EU & US should implement a complete trade ban with Iran.","link":"","language":"English","round":"Open_Semis","division":"","tournamentID":"JlXdLu3VijXjgOdO21tX","infoSlide":"","id":"AyGpq9XGBjJPCuQEMG9N"},{"link":"","round":"3","content":"THS the actions of the Gulabi gang.","language":"English","infoSlide":"","topic":{},"tournamentID":"ovD89w3g4H3GjEFmXcRL","division":"","id":"AySD4I28iLbjOaAQahUr"},{"infoSlide":"","tournamentID":"Z2fhe3NoSvpEOVSzVxzj","link":"","language":"English","division":"","round":"3","topic":{},"content":"THW not give out separate art prizes (like the Oscars) for men and women.","id":"AyqJpynsE7OAx3kKUHw9"},{"language":"English","link":"","topic":{},"round":"ESL_Semis","infoSlide":"","content":"This wouse would prefer that the children of racial minorities be adopted by parents of that race.","division":"","tournamentID":"Biz1VRjjdg8eWbm4NJr3","id":"AzO4fEjY1GBZ7U5NcGWV"},{"link":"","round":"3","content":"Do we need a common European asylum and migration policy?.","division":"","tournamentID":"1wIdZYeTVkyLU5yJfjda","topic":{},"infoSlide":"","language":"English","id":"AzxRForT53jCjJiPG3wj"},{"infoSlide":"","round":"Open_Final","link":"","language":"English","topic":{},"division":"","content":"This House believes that the world was better 10 years ago #tenyearchallenge.","tournamentID":"6UClYEkoQLViAru2xei4","id":"B0DZvECcEyeRpev4G1Sn"},{"content":"THBT feminists should not oppose dating sites which seek to romantically link rich men and physically attractive women.","round":"3","language":"English","division":"","infoSlide":"","link":"","topic":{},"tournamentID":"uikc98CupbamVyAQIHsf","id":"B0bmkIQmOJqZjlK575aV"},{"topic":{},"round":"3","division":"","infoSlide":"","link":"","content":"THW legalise commercial surrogacy.","language":"English","tournamentID":"hxlmkaNuNgQ6AIDlbsIh","id":"B1h9aTwe4giGKRQZM64G"},{"tournamentID":"VZL2SmUXq00WGPbW0ZRt","division":"","round":"2","infoSlide":"","topic":{},"content":"TH regrets the existence of critic or professionally determined film awards, including the Academy Awards, Palme D'Or, and Sight and Sound's Top 10.","link":"","language":"English","id":"B20RC9NcijzpHWe7aRXz"},{"language":"English","link":"","division":"","content":"THBT ethnic minorities and movements that seek to break their ceilings(e.g glass, bamboo, black) and eliminate their underrepresentation should prioritize notions of intersectionality over their actual objectives.","topic":{},"infoSlide":"","round":"Open_Quarters","tournamentID":"YxG2TWeoQ8BT0rpxmfxT","id":"B3VmCvtlPYtVJdAR2yfe"},{"link":"","topic":{},"language":"English","round":"3","tournamentID":"vS5BTr7lDW40h5Qw31FI","division":"","infoSlide":"","content":"This house would redefine the criterion for excessive force in the US to be any use of beyond what is reasonable given all the facts of the case, including the benefit of hindsight (e.g. whether the individual had a gun, not whether it was reasonable to believe he had a gun).","id":"B3gXB329uuYpFQXf1BNN"},{"topic":{"philosophy":{"title":"Philosophy","check":true}},"infoSlide":"","content":"THR the appreciation of the notion of seeking meaning in life.","language":"English","tournamentID":"FZTHJ19pUWQG2SZNeOvr","division":"","link":"","round":"","id":"B3me2zlKddYZAvebh479"},{"content":"Should people have the right to erase/block the autocomplete for their names in search engines?.","topic":{},"link":"","tournamentID":"N8WiUFJpvPmLaaYYsbsD","round":"4","language":"English","division":"","infoSlide":"","id":"B4V01H8dcwrYAweZpVmB"},{"round":"5","tournamentID":"Z2fhe3NoSvpEOVSzVxzj","link":"","content":"THB in a human right to suicide.","infoSlide":"","division":"","language":"English","topic":{},"id":"B4tEeuzCWVCrw4RsNcUv"},{"tournamentID":"Z2fhe3NoSvpEOVSzVxzj","content":"THW abolish all anonymity for sperm donation.","round":"Open_Final","infoSlide":"","language":"English","division":"","link":"","topic":{},"id":"B5bjnODhkGm6Tou0d3Uk"},{"infoSlide":"","topic":{},"tournamentID":"ch7bmkDPz31zOvzM3txF","round":"5","language":"English","content":"THB artists should not set out to sympathetically portray characters who hold morally repugnant world views.","division":"","link":"","id":"B5wk7riHT9NuIYAgxaZ2"},{"tournamentID":"RA6EqhjHK7wF8NHgzThB","language":"English","link":"","division":"","round":"1","infoSlide":"","content":"THW abandon the single European monetary currency.","topic":{},"id":"B66UgeGQuwvF9Ub3LBhy"},{"topic":{},"division":"","link":"","round":"High School Grand Final","language":"English","tournamentID":"m6JzV67uYJSVBRpAbgL7","infoSlide":"","content":"THBT post-conflict societies should construct national identities around a shared ethnicity, as opposed to a common culture.","id":"B6BrVsYxrKearwJCTMJ6"},{"topic":{},"language":"English","link":"","round":"1","division":"","infoSlide":"","tournamentID":"uvPQBxEeKffyHUkLa5PV","content":"As Adopting Parents, TH would tell its child it is adopted only after its teenage years.","id":"B6RwO9jcaVYSpvjZE5GL"},{"link":"","language":"English","content":"THW predicate any humanitarian aid on efforts limiting birth-rates where there’s a risk of overpopulation.","round":"2","tournamentID":"Tu7KRlumwIMZzCczqcGG","topic":{},"infoSlide":"","division":"","id":"B6gHzrxhKOpyczKsrCFy"},{"tournamentID":"tKXlShZl2vec49jC1bif","topic":{},"round":"3","link":"","content":"THR docu-dramas that \"put people on trial\" after their exoneration or death (e.g. Leaving Neverland about Michael Jackson, The People v. O. J. Simpson, The Disappearance of Madeleine McCann).","division":"","infoSlide":"","language":"English","id":"B82Ul6kJkvhxghOOjmvc"},{"topic":{},"content":"This house supports an unconditional basic income.","round":"4","infoSlide":"","tournamentID":"hlf4hP8CehYHd5yHET3L","link":"","language":"English","division":"","id":"B8bjVUdZYd2CzxKRk7y8"},{"link":"","tournamentID":"Fu8k3vJxi4iJsdZw9d7j","division":"","infoSlide":"","content":"THBT developing countries should actively discourage the creation of primate cities.","round":"Open_Quarters","language":"English","topic":{},"id":"B9KpTa09aFY8r73KvfWv"},{"infoSlide":"","division":"","link":"","content":"his house, as the progressive movement, supports progressive candidates running on centrist platforms solely in order to get elected.","language":"English","tournamentID":"Nzien6R9RXvOTrNMJsza","round":"2","topic":{},"id":"BAA3tyW6nihxeyofdUA2"},{"content":"THW Allow Doctors to Lie to Patients in Order to Use the Placebo Effect (not sure of wording).","infoSlide":"","language":"English","tournamentID":"WYCV7Sl9idtN2tulRuB2","division":"","link":"","round":"5","topic":{},"id":"BBMswngHEwzcC7Udi4fW"},{"topic":{},"link":"","content":"THBT the European Union should expel Hungary.","tournamentID":"8EaRfOcTe47s5VRlQeNv","infoSlide":"","round":"1","division":"","language":"English","id":"BBT2zs6yzqMwLJA3353a"},{"link":"","division":"","topic":{},"language":"English","content":"THW make football clubs pay for the costs of police surveillance during league matches.","round":"1","tournamentID":"6SkyoBySWDSJCqeHrA9S","infoSlide":"","id":"BC95b4Jy3P6Y05E689ki"},{"round":"2","infoSlide":"","content":"This House Regrets The Belief That Technology Firms Will Solve The Climate Crisis.","language":"English","division":"","topic":{},"tournamentID":"wLO2B4MufJ4R3qOzUGM8","link":"","id":"BCrDd55F7q4PGlytnvwK"},{"content":"THP a world where the criminal justice system's role is mainly for victims' vengence.","link":"","infoSlide":"","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"tournamentID":"nALUKfkpmOnWnQCzecru","division":"","language":"English","round":"","id":"BFBAfdlGxlteK1K4SpkR"},{"infoSlide":"","topic":{},"tournamentID":"mf3XudZleydnsr0lEvkg","content":"TH as Japan would actively dissociate from the tradition of \"Wa\".","division":"","language":"English","round":"5","link":"","id":"BG3PjwKPj7tLszxf3JLu"},{"topic":{},"infoSlide":"","link":"","round":"1","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","content":"That we would not publish this information.","language":"English","division":"","id":"BGMHfIlZ0TWBSkdsusDP"},{"tournamentID":"gf4DgO2PbJKuaj3RSFTp","division":"","topic":{},"infoSlide":"","link":"","content":"THW ban far-right parties from competing in elections in European countries.","language":"English","round":"Open_Final","id":"BGga0ImEh2zXsmJGJq3x"},{"link":"","topic":{},"round":"Open_Final","tournamentID":"uHY8OFiOXYb0VdlJt20c","content":"This House believes that prominent individuals outside politics (e.g. business leaders, celebrities) from developing countries should emphasize the positive aspects of their country, rather than the negative aspects when speaking on an international platform.","division":"","infoSlide":"","language":"English","id":"BGsSot8NxkszI5rQwRsn"},{"round":"2","division":"","language":"English","link":"","tournamentID":"ZQk7wGWckTLOk9Y0j9z4","infoSlide":"","content":"The House believes that charitable organizations [e.g Omaze] should not be allowed to obtain donations in exchange for the offer of potential prizes.","topic":{},"id":"BHl5FVqflz4ZUE6wSA8f"},{"round":"Open_Semis","link":"","tournamentID":"9STOHMmWtLnanVavJzB2","topic":{},"division":"","infoSlide":"","content":"THBT militaries should aggressively engage in the genetic and bionic enhancement of consenting soldiers.","language":"English","id":"BHue73Tjmfi8R9j4iPdR"},{"link":"","topic":{},"tournamentID":"4PekAtlXMCWdSTTJuMol","infoSlide":"","language":"English","round":"4","content":"Developing countries should ban the entry of charitable organizations that tie aid or services to religious conversion.","division":"","id":"BIZ8iFpQjpjpZNEVaAHN"},{"infoSlide":"","content":"This House believes that developing countries should acquire, on the open market, large stakes in major publicly-traded global corporations (eg. Google, JP Morgan, Shell, and Pfizer).","tournamentID":"wA1XDLHJESmSgLsfZ9Qe","language":"English","link":"","division":"","topic":{},"round":"Open_Quarters","id":"BJU3KKDLlT652wi7qMg4"},{"language":"English","content":"THBT teachers and parents belonging to oppressed minority groups should teach children within their group to contribute to the welfare of the group even at personal cost.","infoSlide":"","tournamentID":"bH0N4QlKzNNQ8zL97OyO","topic":{},"link":"","division":"","round":"ProAm_Final","id":"BJqg3RLKfP9ffMDUcxQt"},{"topic":{},"link":"","round":"1","tournamentID":"o83Oqm9vDtGaG6SVldke","content":"THBT Western Liberal Democracies should institute bans on their citizens visiting illiberal states whose economies depends on tourism.","language":"English","division":"","infoSlide":"","id":"BKdFkg1HzC6KIfbJZomD"},{"link":"","content":"THBT in order for full gender equality to be achieved, all images designed to even slightly sexually attract or arouse the viewer must be banned.","topic":{},"language":"English","division":"","infoSlide":"","tournamentID":"idhVYyUwgWnlyak17o8K","round":"Open_Final","id":"BLAQe8kHDLikivJxU1LE"},{"tournamentID":"1aLx5bJZiwmW3mkmtmNO","division":"","topic":{},"link":"","infoSlide":"","round":"1","language":"English","content":"TH supports Tiger Parenting.","id":"BLN5DAw7tfAL9CkSOPb9"},{"topic":{},"language":"English","infoSlide":"","division":"","tournamentID":"BjyPWHMlV10O4VN8B1XE","round":"5","content":"THB the State Should Impose a Maximum Income of €50000, inc benefits, commissions, bonuses, etc.","link":"","id":"BLPOWO9hC7BYf67blzvW"},{"tournamentID":"OQmCXCvJatQN0zG3lklx","round":"Open_Final","division":"","content":"TH supports compulsory fully privatised healthcare for people living above the poverty line.","topic":{},"infoSlide":"","language":"English","link":"","id":"BM0QyUbBOzdMrUAX7rMx"},{"content":"THW out closeted LGBT public figures.","language":"English","division":"","link":"","infoSlide":"","topic":{},"tournamentID":"nFlN14QQWlnlNwJKIDru","round":"Open_Final","id":"BMO2am1m4oinupwMwnsj"},{"division":"","link":"","infoSlide":"","language":"English","round":"2","content":"This House believes that the protections of international law conventions and treaties should not apply to combatants from terrorist organisations (e.g. prohibition on torture, prisoner of war status, guarantee of post-conflict release).","tournamentID":"EP5HDm4G3OfMlciId6YM","topic":{},"id":"BMT2bizynbzH6EItxYyo"},{"round":"Open_Final","topic":{},"link":"","content":"Assuming Belarus agrees, THBT NATO should grant full membership to Belarus contingent on its pivot towards the West in foreign policy and trade.","language":"English","division":"","tournamentID":"ZetjyvhBc3exk1eBvmTd","infoSlide":"","id":"BMzVwU8b6mnY5IaI31y5"},{"language":"English","infoSlide":"","tournamentID":"1hlmlrX6In8aTapDJoTu","topic":{},"link":"","division":"","round":"2","content":"THBT governments should actively incentivice people to move away from areas with few viable economic activities.","id":"BN5Y2ewFPsadQbgo1nvM"},{"topic":{},"division":"","link":"","language":"English","round":"8","infoSlide":"","content":"That social media companies should aggressively censor offensive and discriminatory content.","tournamentID":"5Qomv7BFHTKmY4PchwDr","id":"BNmX57pnM5TMkt4H6xQV"},{"division":"","tournamentID":"HQ85pr5BC7hv3GPpOuzX","link":"","content":"THBT the USA should publicly cease its efforts to prevent Iran from developing Nuclear Weapons.","infoSlide":"","language":"English","topic":{},"round":"3","id":"BOY0X2GXM9cDa7o7YrET"},{"round":"ESL_Semis","link":"","topic":{},"infoSlide":"","tournamentID":"VZL2SmUXq00WGPbW0ZRt","language":"English","division":"","content":"THBT the states of the Western Balkans should ban positive depictions of indicted or convicted war criminals.","id":"BOcbMRj29MyQuvBL3OOn"},{"link":"","topic":{},"infoSlide":"","round":"Open_Quarter","content":"THBT poverty should receive suspect classification in the US legal system.","tournamentID":"S2mG18EWYdh2bPEadyd9","language":"English","division":"","id":"BPm3BYINJNEmz56xCPMv"},{"division":"","topic":{},"link":"","infoSlide":"","language":"English","content":"THO the prominence of heroism as a value in society.","round":"Quarterfinals","tournamentID":"9yPqE2fe1oaHsd7ankOa","id":"BQL0Vej4qsUXwcDLDFYg"},{"tournamentID":"XKnRXbL5iWiOHmPMcGVz","topic":{},"link":"","language":"English","content":"THW establish as a norm of international law that reparations should not be paid after wars.","round":"3","division":"","infoSlide":"","id":"BQf9TfvPpIrFDGMKMPUR"},{"round":"2","tournamentID":"BXOIn4DQsS3fQg4ZnBFn","topic":{},"division":"","content":"This House Believes That the state should pay a salary to stay-at-home parents.","infoSlide":"","link":"","language":"English","id":"BQmBXbiL8ghUvjFBRRLq"},{"content":"TH supports a technocratic government in times of dire financial crisis.","link":"","infoSlide":"","topic":{},"language":"English","tournamentID":"zNrcKb4T08IU7LfuYSUz","round":"3","division":"","id":"BR2PiPYx3MECNgjBv6jP"},{"content":"THW stop state funding of the arts.","topic":{},"infoSlide":"","round":"1.1","language":"English","tournamentID":"1leOvfvlbNAIDzW6UnkK","division":"","link":"","id":"BRJdCvLAHGkz7nme0z1J"},{"language":"English","tournamentID":"macdlwUjYqFCGHKvQS20","link":"","division":"","topic":{},"round":"Open_Quarter","infoSlide":"","content":"This House believes that states should focus on negotiating bilateral trade agreements over large, regional agreements such as the TPP and RCEP.","id":"BRRONamoVvzmTCyD5DWp"},{"division":"","infoSlide":"The term \"Mask diplomacy\" refers to the People's Republic of China's delivery of medical supplies - including masks and personal protection equipment - and offering of medical assistance to countries who are combating the COVID-19 outbreak.","round":"","tournamentID":"LlsxibXteGBGML9aitY2","language":"English","topic":{"publicHealth":{"title":"Public Health","check":true}},"link":"","content":"TH welcomes China's mask diplomacy.","id":"BRcoYfvdspGLV4B5NxO1"},{"language":"English","link":"","tournamentID":"Wg2225mgODwBGF4GMBLR","division":"","content":"THBT social movements should abandon the tactic of publicly shaming individuals in order to accomplish change.","round":"2","infoSlide":"","topic":{},"id":"BSEhby4xOAl6yIoW6kZX"},{"tournamentID":"FaBy9PfDE8gfy5w00VdM","link":"","division":"","round":"1","topic":{},"content":"THW remove all \"sin taxes\".","language":"English","infoSlide":"","id":"BSUS1PouBMT0H7aisJOu"},{"content":"THB the ICC should open an investigation on war crimes in Palestine.","language":"English","infoSlide":"","topic":{},"tournamentID":"ch7bmkDPz31zOvzM3txF","division":"","round":"Open_Final","link":"","id":"BSiMH6UfbpbyhZHAluav"},{"content":"THW ban police unions.","tournamentID":"hrSRQu49cq5gHsXJLBgQ","link":"","infoSlide":"","language":"English","topic":{},"round":"1","division":"","id":"BTbwqVzNJtWRBW27l46Y"},{"language":"English","tournamentID":"nALUKfkpmOnWnQCzecru","link":"","round":"","division":"","topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"}},"infoSlide":"","content":"THBT the LGBTQIA+ movement should denounce the existence of marriage as opposed to fighting for equal rights.","id":"BTmeZx2sAJaxpXQmsfdC"},{"topic":{},"infoSlide":"","content":"THBT Greece should introduce significant financial incentives for companies and individuals currently based in Athens* to relocate to other Greek cities *Over a third of the Greek population lives in Athens.","link":"","round":"1","division":"","language":"English","tournamentID":"YbdPFTE9FbO3iQjZo87D","id":"BV9GBk3z8RIgZmKoCvHN"},{"tournamentID":"lzwPRjjdpUi2iKUXkOjp","round":"3","infoSlide":"","language":"English","division":"","topic":{},"link":"","content":"This House believes that LGBT+ advocacy groups and lobbyists should publicly fight for reparations for the victims, and the families of victims, of the AIDS epidemic.","id":"BWL1R1MYin8uQVPWdnDi"},{"division":"","link":"","tournamentID":"Izblbv0LXDRNyAVA9nPW","content":"THB States Should Ensure That Their Police Forces are Roughly Proportionally Representative of the Diversity of Race & Religion of the Local Population.","round":"2","topic":{},"language":"English","infoSlide":"","id":"BWs7wr1WsHFDVG1Ot0iQ"},{"division":"","round":"3","content":"THBT Journals Should Not Publish The Research.","language":"English","link":"","tournamentID":"oUef705Eak69UuzgVheB","infoSlide":"Scientific research has found evidence that a particular race has an increased genetic risk of developing psychiatric disorders.","topic":{},"id":"BXQuN1wKnGdpPLjw7FlC"},{"tournamentID":"FfDrngjMOaUCYfZgnHPC","topic":{},"infoSlide":"","round":"1","link":"","language":"English","division":"","content":"THW give development aid only to countries which commit to and demonstrate the implementation of humanitarian values consistent with that of the donor country (for example LGBT rights, women´s rights).","id":"BXqtGguCsixvPf9h5CPH"},{"infoSlide":"","tournamentID":"FBVfHrOa3NYALcBMtKIC","division":"","link":"","language":"English","round":"3","content":"This house believes that Western countries should offer to immediately cancel all debts owed by any authoritarian country upon its transition to democracy.","topic":{},"id":"BYHRNl8rqC2tMuSrYX6u"},{"round":"1","link":"","tournamentID":"Sf5YtAJo1vVmULRLSMAt","division":"","language":"English","topic":{},"infoSlide":"","content":"THS the narrative that traditionally feminine qualities (e.g. compassion, kindness) enable female leaders to better deal with times of crisis.","id":"BYT0KsYEeyGp8vrIttvf"},{"tournamentID":"bcb5yQt6p8cx9SACsvYL","infoSlide":"","division":"","language":"English","topic":{},"content":"Oskar Gröning chose to join the SS during the 1940s, and was positioned at Auschwitz concentration camp as a financial clerk. After the end of the war, he remained silent about his experiences for forty years. In response to Holocaust denial by a number of authoritative and well-known individuals, he spoke about his experiences and actions, highlighting the horrors that occurred. This contributed to a decision of the German government to prosecute him as an accessory to murder in 300,000 cases. THBT Oskar Gröning should not have been prosecuted.","round":"3","link":"","id":"BYWvUuSDBv5MkcYKLKFf"},{"infoSlide":"","topic":{},"content":"THW grant aboriginal peoples copyrights over depictions of their culture.","division":"","link":"","language":"English","tournamentID":"miNjiX9yX5Oq25V4yWeo","round":"3","id":"BYYwqnamb5oR4Dji6nhe"},{"language":"English","round":"Semifinals","topic":{},"division":"","content":"THO the narrative of a person having \"one true love\".","tournamentID":"g7nlvxejABAgCXhGkJg8","link":"","infoSlide":"","id":"BYZXzaXaK4kqkPV2qPJo"},{"link":"","language":"Vietnamese","division":"","round":"Semifinals","tournamentID":"RNJanNDlcAfI2uIKx9LF","content":"Chúng tôi sẽ tạm tước quyền lực của công đoàn và nới lỏng luật bảo vệ người lao động khi khủng hoảng kinh tế xảy ra.","topic":{},"infoSlide":"","id":"BZ75wObmP0qEwF4hCBOO"},{"division":"","round":"5","link":"","language":"English","topic":{},"tournamentID":"1XSX7FHkgfyCn1pjSqbi","infoSlide":"","content":"THW institute a \"robot tax\".","id":"BZPY1EwXCQhZmlhETs27"},{"content":"THW not admit immigrants who actively (strongly?) oppose the norms of the host society.","round":"ProAm_Final","link":"","tournamentID":"bkOT9pwqHsKTlwricRHY","language":"English","topic":{},"infoSlide":"","division":"","id":"BZT5kJYF5dXYimkyr1aB"},{"tournamentID":"Y8UBPz5agTr6QKYI2kXS","infoSlide":"","division":"","language":"English","round":"2","content":"THBT every student living in the EU should spend one year studying in the country other than the one he or she is born or is a national of.","topic":{},"link":"","id":"BZwuzIieSBBdcPWkTkTA"},{"content":"That, assuming Personal Protective Equipment is sufficiently available, medical workers during a pandemic should have the right to opt out of service.","link":"","division":"","language":"English","round":"Open_Quarter","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","topic":{},"infoSlide":"","id":"Ba7Lf7gG7x5CGSQq4RAs"},{"tournamentID":"k3ijyeg4qJCcExIHRlhv","round":"3","division":"","content":"THW ban private ownership of 3D printers.","topic":{},"link":"","language":"English","infoSlide":"","id":"BbIustG67nKwDKjvwC6C"},{"content":"Chúng tôi lấy làm tiếc về sự phân chia cứu trợ tài chính COVID chỉ nhằm vào các tập đoàn (thay vì các công ty nhỏ).","language":"Vietnamese","link":"","infoSlide":"","round":"Semifinals","division":"","topic":{},"tournamentID":"znXRdnU2llK8fXmHlci5","id":"BckHR0XkTyzzbg3CjkTA"},{"division":"","infoSlide":"","round":"ESL_Semis","language":"English","topic":{},"tournamentID":"68SrKFb9XtsQrLtqLtjO","content":"THBT the US should cut all political, economic and military ties with Saudi Arabia.","link":"","id":"BdLsV1QaPIaIE79OviWa"},{"round":"3","language":"English","link":"","tournamentID":"tGXgNi0S9KFBe1hUBu15","division":"","infoSlide":"","content":"THBT universities that invite controversial speakers should be required, within a reasonable time frame, to invite a speaker that supports the other side of the controversy.","topic":{},"id":"BdPcmPnknvXLCKbUEy3T"},{"language":"English","link":"","infoSlide":"","round":"4","content":"Sit back in your seats for a second, close your eyes. Imagine, if you will, that we have developed a virus with the capacity to infect 100% of society, rendering a random 30% of people infertile. This virus passes on inter-generationally, continuing this cycle of randomized 30% infertility for the foreseeable future. For the sake of simplicity, let’s name it the inferno virus. Assuming we have reached a point where the human population on Earth is unsustainable, this house would release the virus. [Round 4].","division":"","topic":{},"tournamentID":"CjeO3WtFoEPJ0YkMQ3T2","id":"BdZrMDK5CRqtn9pytcu7"},{"tournamentID":"VZL2SmUXq00WGPbW0ZRt","language":"English","link":"","division":"","content":"THBT it is the West's interest for long term Brent Crude Oil prices to fall below US$60 per barrel. Info.","round":"3","topic":{},"infoSlide":"","id":"BfChGojgB1uHLLv8dcCw"},{"infoSlide":"","division":"","round":"Open_Semi","content":"This House believes that wages should be predominantly determined by the public utility of a job.","tournamentID":"6NSl7moQPnBVA2R4Z66b","language":"English","topic":{},"link":"","id":"BfF0kpCBv8jDQh8OpLgV"},{"content":"THS international intervention in Venezuela.","link":"","language":"English","division":"","round":"3","topic":{},"tournamentID":"wL3wAKRctC8syY2eg8t3","infoSlide":"","id":"Bg7OvlPuF0CnPLfQ5rFK"},{"infoSlide":"","division":"","topic":{},"language":"English","content":"Should Germany boycott the Sochi Olympics?.","round":"Open_Final","link":"","tournamentID":"EC3TzMXkzGq0DYNMzQdg","id":"BhtrprGWg3VhEb7hG5Yo"},{"content":"This House Would Ban All Political Donations.","topic":{},"round":"1","link":"","infoSlide":"","tournamentID":"6GQGSjlsY612FPwbXRbB","division":"","language":"English","id":"BhwF7wxCWo7mUHGQ9snc"},{"round":"Open_Semi","link":"","language":"English","content":"th, as the us Democrats, would agree to fund trump's border wall in exchange for increased gun control measures.","division":"","infoSlide":"","topic":{},"tournamentID":"4Nqwg2GbRwaUJ5LaWcSt","id":"Bigy1e6DHCvn2EyMXRuw"},{"division":"","round":"3","topic":{},"language":"English","content":"THR the demonization of Russia in Eastern European countries.","tournamentID":"yZaksTbsPteB6mPHwkvl","infoSlide":"","link":"","id":"BkJ62Nzd984R64AOjX0J"},{"link":"","round":"4","language":"English","tournamentID":"m6JzV67uYJSVBRpAbgL7","division":"","topic":{},"infoSlide":"","content":"THP a world where sexual compatibility is prioritized over emotional compatibility in relationships.","id":"Bl1qerlDMJc5ojXZEfr4"},{"content":"Chúng tôi tin rằng ASEAN nên có đồng tiền chung.","round":"","division":"","infoSlide":"","link":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","topic":{"irw":{"title":"International Relations/War","check":true}},"language":"Vietnamese","id":"BlB1HSDtS4i3xhSZsK61"},{"topic":{},"infoSlide":"","round":"3","link":"","tournamentID":"DLFJWaIyHnSlvFofovjc","content":"THW allow surrogate motherhood for profit.","language":"English","division":"","id":"BlEfjRuY6Pc1NZDvGhWo"},{"content":"THW allow legislatures to override constitutional bills of rights.","infoSlide":"","language":"English","round":"2","topic":{},"tournamentID":"yIBeLUbSZELobFcw30WY","link":"","division":"","id":"BlcInxryvHwfhaxTESzb"},{"link":"","tournamentID":"b1sXr4qyDgdbj0UNSjmS","topic":{},"infoSlide":"","language":"English","content":"THBT developing countries should refuse to sign any trade treaty which contains ISDS.","division":"","round":"5","id":"BlmZZqVDKMqlXbRbwzBh"},{"tournamentID":"Mp1zDBiaN3PYnRnjPVIk","infoSlide":"","topic":{},"content":"TH believes that governments should oppose the formation of education hierarchies.","language":"English","division":"","round":"Novice_Final","link":"","id":"BluUIHjvTZz5YA4JIvJv"},{"topic":{},"infoSlide":"","content":"THBT the US should require the NRA to pay reparations to victims of gun violence.","round":"4","language":"English","link":"","division":"","tournamentID":"iWZAiFK5ukpLd7JEkH5z","id":"BmIaqyYyoP2qJ4gcjTG6"},{"topic":{"hr":{"check":true,"title":"Human Relationships"}},"language":"Vietnamese","tournamentID":"LlsxibXteGBGML9aitY2","infoSlide":"Đa ái là việc có mối quan hệ lãng mãn với nhiều hơn một người với sự đồng thuận của tất cả mọi người liên quan.","link":"","division":"","round":"","content":"Chúng tôi ủng hộ một thế giới mà mọi mối quan hệ lãng mạn đều là đa ái.","id":"BmgszP3b43FIJqXjRcBQ"},{"tournamentID":"HjQJA65fZ9igHKO8DLAP","content":"You have suffered from severe amnesia and cannot remember any of your past. You suspect that it may be \"dark\". That you should not go searching for answers.","infoSlide":"","round":"1","topic":{},"division":"","link":"","language":"English","id":"BmjqOfQpvDow4yb05ibN"},{"topic":{},"round":"1","language":"English","tournamentID":"TMUPfAyolz9JkKMmWlLC","link":"","content":"THBT women should decline chivalrous gestures.","division":"","infoSlide":"","id":"Bn43nS96OxM0yJDk8Giw"},{"language":"English","content":"THBT the US National Security Agency should notify software manufacturers of all zero-day vulnerabilities in order for them to patch the defect.","topic":{},"round":"2","tournamentID":"OyqUfVFCTQ5A8iecmNK1","link":"","division":"","infoSlide":"A zero-day vulnerability is a computer-software vulnerability that is unknown to those who would be interested in mitigating the vulnerability (including the vendor of the target software). Until the vulnerability is mitigated, hackers can exploit it to adversely affect computer programs, data, additional computers or a network. The US's National Security Agency has a large stockpile of zero-day vulnerabilities which are used as part of their cyber warfare arsenal.","id":"BnWfB25yn3uUqLgXyFmL"},{"language":"English","content":"That African American rap artists have a moral obligation to donate their disposable income to African American low socioeconomic-status areas.","round":"4","tournamentID":"n7qv29PmNuF5SOe42oiz","link":"","topic":{},"division":"","infoSlide":"","id":"BoCcg0HPF74G7MZClHNT"},{"division":"","round":"Open_Semi","language":"English","content":"THW choose China.","topic":{},"link":"","infoSlide":"","tournamentID":"fYRQ3gsDALGgMYQf58zt","id":"BobWtaHsnq0YJyHkknxB"},{"language":"English","round":"Open_Final","infoSlide":"","link":"","content":"TH, as the Catholic Church, would use elections to select its next pope.","topic":{},"tournamentID":"rmnZcOUQU2iED2r3pXca","division":"","id":"BoueEwRzVG2iFhdzzAT1"},{"link":"","topic":{},"infoSlide":"","division":"","language":"English","round":"4","content":"THBT hacking is a legitimate form of protest against large corporations.","tournamentID":"LRHTkoiYpBfYWWuS1rtT","id":"BpAORRy0fx5FBasjeYTM"},{"link":"","language":"English","topic":{},"tournamentID":"LH17DUUbXDstAFfMNJyf","division":"","content":"THBT women are morally justified in lying about their past experiences, abilities and future family plans at a job interview or application.","infoSlide":"","round":"6","id":"BpQYH7WREtngD7TEDtKm"},{"round":"6","topic":{},"content":"This House regrets the increasing trend of popular shows featuring neurodivergence* as the central theme. *Neurodivergence refers to those whose psychology is non standard, e.g. for reasons of mental health, mental disability, etc.","division":"","link":"","infoSlide":"","tournamentID":"1dEXZTvvRtTWhdBLmzFt","language":"English","id":"BpT81ERJ9VGwpfMU9wtP"},{"infoSlide":"","tournamentID":"vILiSHUm95tqQYsTjFZs","link":"","content":"THB Germany should let Europe die.","round":"Open_Final","topic":{},"language":"English","division":"","id":"BpkZJHC7nKgc3Jdh1K0w"},{"infoSlide":"","link":"","tournamentID":"DLFJWaIyHnSlvFofovjc","division":"","topic":{},"round":"Open_Final","content":"THW legalize duels in cases of adultery.","language":"English","id":"BprJ2sfksw9yaRL6GJlN"},{"tournamentID":"m6JzV67uYJSVBRpAbgL7","content":"THW not give employers access to criminal records of potential employees.","link":"","topic":{},"infoSlide":"","language":"English","division":"","round":"5","id":"BpvjTFeSgzyrmnisjmAs"},{"link":"","round":"4","content":"THW legalise S&M.","infoSlide":"","tournamentID":"ZxUcdMSTBBFZQIuIsGtb","division":"","topic":{},"language":"English","id":"Bq2rioulKzm7UyFwmcM3"},{"tournamentID":"LjEl8Sog63zZMpDhsInz","division":"","infoSlide":"","content":"THB Croatia should stop all special treatment of the Catholic religion.","round":"5","topic":{},"link":"","language":"English","id":"Bq7jPwdRQGhT89kAOboW"},{"round":"Open_Semis","division":"","link":"","topic":{},"content":"THBT English should be the only language of education in developing countries.","tournamentID":"GN3wIECpidF8WB3WC2l0","language":"English","infoSlide":"","id":"BqGldphgWJ00CMJQdUZZ"},{"link":"","infoSlide":"","content":"THB in revolution as a solution to the country’s problems.","topic":{},"tournamentID":"0WQ7djfo2FawxEAC95E0","division":"","language":"English","round":"Open_Final","id":"BsKK1KxqM3XBHCiUNcUV"},{"division":"","link":"","topic":{},"infoSlide":"","tournamentID":"v33DcPMMQZsLJormVjyz","content":"TH, as the EU, would force its member states to rcognise gay marriages.","language":"English","round":"5","id":"BsY72H7FVj3oaBuSdYB5"},{"content":"THW disband NATO.","language":"English","link":"","division":"","infoSlide":"","round":"2","topic":{},"tournamentID":"lPXoAGmpaSNRUUBSEwTy","id":"Bsf1Vx2BhyCo7lWi8Fzx"},{"infoSlide":"","round":"2","tournamentID":"RKQT9j6jX9NRbleAmjmy","division":"","language":"English","topic":{},"content":"THBT increased female participation in violent sports (such as boxing) is good for women.","link":"","id":"Bssp3dKjk4PWUxiGqaKX"},{"topic":{},"infoSlide":"","round":"2","division":"","content":"THW tie World Bank aid to women's rights.","language":"English","link":"","tournamentID":"mf3XudZleydnsr0lEvkg","id":"BsyPkaXLosOp42aA6iDg"},{"link":"","infoSlide":"","language":"English","topic":{},"division":"","tournamentID":"WqXUc7EMDvkqqg3BVCtf","round":"7","content":"TH believes that the West should stop all attempts to gather information or intelligence by deception and/or coercion of foreign citizens.","id":"BtD1bBqglj0jUy5t7o95"},{"topic":{},"division":"","tournamentID":"gaW3hl0mF758MDm7UkNs","link":"","content":"THBT in order to continue to eat meat individuals should personally slaughter a major meat animal.","infoSlide":"","round":"3","language":"English","id":"Btf2mxs6rYHayr4376Ws"},{"division":"","content":"Instead of creating a Jewish state in the British Mandate of Palestine, with the benefit of hindsight THW have created a Jewish state in Germany.","round":"Open_Semis","infoSlide":"","language":"English","topic":{},"link":"","tournamentID":"4XkvQJQxtOHIIF6sH97v","id":"BtkfhiGl0nx1XL5IsrwW"},{"content":"THBT Puerto Ricans should advocate for independence over statehood.","tournamentID":"py2YomguZSylDKYhWlhK","round":"3","infoSlide":"","division":"","language":"English","topic":{},"link":"","id":"Btx9b4EQjOcuM2SDfHIh"},{"infoSlide":"","round":"Open_Final","tournamentID":"E91ZTw8wNjTYuX6RmZCc","language":"English","division":"","topic":{},"content":"THW allow convicted criminals the choice between their sentence and the same number of years of weekly corporal punishment.","link":"","id":"Bv3ylnYepnDDQ3KUrFq7"},{"topic":{},"round":"Open_Semis","infoSlide":"","division":"","link":"","language":"English","tournamentID":"8QddgLiIoLsA9YscCujR","content":"THBT the LGBT rights movement should abandon the ‘born this way’ campaign. (Info: ‘Some people believe that they were born LGBT, some LGBT people believe that it is a choice that they made. Currently, the LGBT movement uses being ‘Born this way’ as a way of legitimising equal rights.’).","id":"Bvyhxv1vI8gwHZQRc2Kn"},{"infoSlide":"","round":"5","content":"TH welcomes the advent of extreme genetic enhancements for human beings.","division":"","language":"English","link":"","topic":{},"tournamentID":"xQkVRRUcXZJgGzxXZ2t0","id":"BwDfnOvXc78t82xVg5pA"},{"tournamentID":"mzTZLa2tIQsY2lUGe6Yf","division":"","language":"English","round":"1","topic":{},"infoSlide":"","link":"","content":"THW compel all students returning from educational tours in the Nazi extermination camps to participate in an educational tour with the organization “Breaking Silence” (An organization which criticizes IDF actions).","id":"BwxTjvEeCGuqfR5jSexk"},{"round":"3","topic":{},"division":"","tournamentID":"PGbz2bx1wifAEJU64jdo","infoSlide":"","link":"","language":"English","content":"THW require sporting teams that recruit internationally to pay recruits to compete in domestic leagues for a period of time before leaving to play abroad.","id":"BxOTwWOZL2mVecsOypKm"},{"infoSlide":"","language":"English","division":"","tournamentID":"uqR5rN63m5rX9CiOtJjb","link":"","round":"4","topic":{},"content":"Chúng tôi sẽ tẩy chay các cá nhân nổi tiếng trong lĩnh vực thể thao, giải trí (cầu thủ, ca sĩ, diễn viên, ...) nếu phát hiện có lối sống phi đạo đức.","id":"BxyARGOix5xNHOQHOJVE"},{"link":"","infoSlide":"","division":"","tournamentID":"sgkzjS4WeJfa3Df1l3zo","round":"1","content":"THW replace all sin taxes with an increase in income tax.","language":"English","topic":{},"id":"By2pJj6tx1pBBpXyGQsU"},{"content":"THW exempt from mandatory military service any Hasid who chooses to work rather than study in a Yeshiva.","link":"","division":"","infoSlide":"","round":"2","topic":{},"language":"English","tournamentID":"OZYKzIzIg9zKy9OOiaP3","id":"BySbQ8GMnor1FsM2W1ne"},{"round":"Novice_Final","topic":{},"infoSlide":"","content":"THW legalize the buying and selling of one’s remaining lifetime years.","link":"","division":"","language":"English","tournamentID":"Pr7RhJp1TWbTZsqRvQt4","id":"BzJdkLcypvi6yxo7NVG4"},{"topic":{},"tournamentID":"iWZAiFK5ukpLd7JEkH5z","infoSlide":"","language":"English","content":"THBT Israel should adopt the Corpus Seperatum plan.","round":"2","division":"","link":"","id":"BzaUwsrhX2TFWCkieOrU"},{"content":"On the 10th Anniversary, TH does not regret the decision to invade Iraq.","round":"2","topic":{},"link":"","tournamentID":"keyU5X5APEvFXLaZwxeM","division":"","infoSlide":"","language":"English","id":"BzkmmXKfKwDc1nRL8oiX"},{"infoSlide":"","division":"","content":"THR the use of nostalgia (e.g. reminiscing over past/historical leaders, periods, or events) in politics.","topic":{},"language":"English","tournamentID":"m6JzV67uYJSVBRpAbgL7","link":"","round":"3","id":"C01yRGQVyzP7nVYEAxuK"},{"content":"This house, as a Palestinian, would advocate for a 1-state solution.","language":"English","topic":{},"round":"2","infoSlide":"","link":"","tournamentID":"tGXgNi0S9KFBe1hUBu15","division":"","id":"C0L0RnrCUcPA9JIVHd58"},{"topic":{},"infoSlide":"\"Not like other girls\" trope is a common TV/Movie/Book/Meme plot or characterization where the main female protagonist is described as being \"different\" and \"unusual\" (e.g. being smart, emotionally resilient, down to earth, independent, less caring, lacks interest in certain things) compared to other 'typical girls'.","content":"THBT the feminist movement should actively oppose the \"not like other girls\" trope.","link":"","tournamentID":"75jspJDrwq3Ldwex90Qr","division":"","language":"English","round":"6","id":"C0YX3TBSLyQRMDQkMlJG"},{"language":"English","tournamentID":"SjQ6g8g2URks9WV96X0G","round":"4","infoSlide":"","content":"THBT developing countries should establish Charter Cities.","division":"","topic":{},"link":"","id":"C1PZuedB6ZlYgWfoNhHa"},{"tournamentID":"5dx9HmyPaBDPB6JstQGb","content":"THW collect DNA of every newborn child in order to prevent and solve future crimes.","round":"3","language":"English","infoSlide":"","topic":{},"division":"","link":"","id":"C1VFtGA5vemloXv6XC7m"},{"round":"Open_Semis","content":"THBT Italy should have voted ‘si’ in last week’s referendum on constitutional reform.","infoSlide":"","topic":{},"tournamentID":"EHPcBnMOPhSjJDJMUqKQ","link":"","division":"","language":"English","id":"C1Vtm8Iwl2J086Pl5xZf"},{"division":"","tournamentID":"YaTXOaEvPKh8XHB3VTBK","content":"This House regrets the westernisation of the elites in post-colonial countries (e.g. speaking predominantly in English, going to schools/universities in the West, consuming predominantly Western Media).","infoSlide":"","topic":{},"link":"","language":"English","round":"Open_Final","id":"C1oQ033TNrw4eT2KX53t"},{"division":"","tournamentID":"i6DM0q3jQYZrDmXJHzfr","infoSlide":"","content":"In countries with large immigrant populations, THW reserve seats for foreign individuals in parliament.","language":"English","round":"Open_Semi","topic":{},"link":"","id":"C248vuiirUENaoVQJ9EJ"},{"content":"TH believes that the EU should end its commitment to the free movement of people as a core principle of the single market.","topic":{},"round":"Open_Final","infoSlide":"","language":"English","link":"","tournamentID":"PULmrzx6k00EzEt7BxfG","division":"","id":"C2CIfjm0u9kubdhpQb5k"},{"tournamentID":"OqQWJjNQBpGOYwMntw3z","round":"","infoSlide":"","division":"","link":"","language":"Vietnamese","topic":{"education":{"title":"Education","check":true}},"content":"Chúng tôi sẽ ưu tiên đào tạo tranh biện bằng tiếng Việt hơn bằng tiếng Anh.","id":"C2PZivVFgHzxi6IUr3cQ"},{"division":"","content":"THW not imprison people when racist remarks cause offense on social media forums.","topic":{},"round":"2","link":"","language":"English","tournamentID":"W9AVDusjw9BvQds3bmVL","infoSlide":"","id":"C2zzzJF4MbMtGzV6nDti"},{"content":"TH prefers a world where the majority believed in determinism over one where the majority believed in free will.","division":"","tournamentID":"X4613Kz1qYjZyFPJzJlB","language":"English","infoSlide":"","round":"Open_Final","link":"","topic":{},"id":"C3PMLgFKYb6AuYI7k450"},{"tournamentID":"gsX4dlvvsr6lcKP3eM2T","infoSlide":"","topic":{},"content":"This House would force religious adoption agencies to place children with homosexual couples.","division":"","round":"ESL_Quarters","link":"","language":"English","id":"C45SZ8WU5TMGWBSRJA52"},{"language":"English","tournamentID":"nXN2yUG7soxwCp4xidzj","link":"","division":"","infoSlide":"","content":"THW give conscientious objectors equal status to veterans in government memorialisation of war - Round 7.","round":"7","topic":{},"id":"C461f7SRS5HqTPOCGSQ5"},{"round":"2","infoSlide":"","link":"","language":"English","content":"This House supports the rapid global elimination of both tariff and non-tariff barriers to free trade.","topic":{},"tournamentID":"wA1XDLHJESmSgLsfZ9Qe","division":"","id":"C5WNjm4FAW26Ap2GDj7n"},{"tournamentID":"DeCtrDtTjNPkklRZT0x6","infoSlide":"","language":"English","topic":{},"content":"Given that the technology exists and is enforceable, THS a universally applied birth lottery system.","division":"","round":"4","link":"","id":"C5jTS1NShPXYk8fcm5qn"},{"round":"Open_Semis","language":"English","tournamentID":"B2zJ5QeyI7MVcboS7m4U","division":"","infoSlide":"","link":"","topic":{},"content":"THBT States should forcibly reverse the transmigration policies of their former dictators.","id":"C6EMDLn92SbwS2leV6oX"},{"infoSlide":"","round":"Open_Final","content":"THW allow convicted criminals whose crimes caused their victims suffering to choose to undergo the exact same experience as their victims did, by using the technology, as a substitute for a prison sentence.","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","link":"","topic":{},"language":"English","division":"","id":"C6KzJSr4otsQpGV2Pf5O"},{"tournamentID":"uES9ygXHa8tJuYB7dFEM","infoSlide":"","topic":{},"round":"Open_Final","language":"English","link":"","division":"","content":"TH, as the Chinese state, would send in the People's Liberation Army to take back control of Hong Kong.","id":"C9AKhbi6gbJIv5yVGvY6"},{"topic":{},"content":"THBT International development institutions (such as the World Bank) should not finance natural resource extraction projects in corrupt states.","infoSlide":"","round":"4","language":"English","tournamentID":"0bpNzjTgN71TZQEkHTak","division":"","link":"","id":"C9SVUsa6bmcFWiwLxbb7"},{"tournamentID":"OZYKzIzIg9zKy9OOiaP3","content":"THW introduce mandatory minimum sentences.","division":"","language":"English","link":"","infoSlide":"","topic":{},"round":"5","id":"C9kxo5nrHqnzOCm7Q2Vx"},{"infoSlide":"","content":"THR the practice of banking secrecy.","division":"","link":"","language":"English","topic":{},"tournamentID":"YxG2TWeoQ8BT0rpxmfxT","round":"Open_Semis","id":"CA68WKbmGgctTWujN5US"},{"link":"","content":"This House believes that states should be able to prioritize asylum seekers on the basis of cultural similarity with existing populations.","division":"","topic":{},"round":"8","infoSlide":"","tournamentID":"0mv3ToZPy0AwAsRnpZBN","language":"English","id":"CAA4EI31FDyFQrKHzGuQ"},{"content":"TH, as a scientist who has developed a compound which when ingested causes a person to become bisexual, would infect the global water supply with the compound.","topic":{},"infoSlide":"","division":"","link":"","language":"English","tournamentID":"PEAicxOTn0uGyCAGiXLX","round":"Open_Final","id":"CBBvzD0bBohMvdbA1SO4"},{"division":"","topic":{},"tournamentID":"nzVlQYCb0rPo23sPMkA5","round":"5","infoSlide":"","content":"THW temporarily suspend Hungary’s EU membership.","link":"","language":"English","id":"CBGvWJBFu6qGOfdtJrwV"},{"infoSlide":"","language":"English","division":"","round":"3","tournamentID":"JTOMyeCSk6IujHBgAOMi","topic":{},"link":"","content":"THW relentlessly impose cyberwars on dictatorships.","id":"CBYmYNShBW7ZovIT5K2q"},{"division":"","link":"","infoSlide":"","round":"Open_Final","content":"Should there be a quota for young people in top political offices?.","language":"English","tournamentID":"kveNSL63Zo9kOYIUJlW2","topic":{},"id":"CBsTnxrOqkYlmR8RbfRf"},{"language":"English","topic":{},"tournamentID":"Pt1Z2dTdUinRviVucbZA","infoSlide":"","division":"","content":"That, as the fertility doctor, we would tell the young woman the truth.","link":"","round":"4","id":"CC7pBpKt9xsZjk9GUnE5"},{"tournamentID":"GN3wIECpidF8WB3WC2l0","division":"","infoSlide":"","language":"English","link":"","topic":{},"content":"THBT women should pay less income tax than men.","round":"3","id":"CDKffzU21jCr6BCq1GyV"},{"division":"","language":"English","topic":{},"link":"","content":"THBT Israel should allow members of the Jewish diaspora to vote in elections.","tournamentID":"BtqBGdAUsTtPKorZOcBX","round":"5","infoSlide":"","id":"CDP6XZApVBhlFnqeeCwC"},{"content":"HW make assimilation the primary goal of legislation related to immigrants.","round":"ESL_Final","tournamentID":"JsQrI80phRuvDHr37q5N","infoSlide":"","division":"","link":"","language":"English","topic":{},"id":"CDbpTuv61yXV7Q0lpymR"},{"division":"","tournamentID":"FJoy56lyo9s1SqE3RvFO","topic":{},"infoSlide":"","round":"2","content":"THB the continuing European Central Bank Policy of low interest rate focus is wrong.","language":"English","link":"","id":"CDdIaHsmXFZOxChVibsS"},{"tournamentID":"1bHNYzF6GWRqdpr3f5vt","division":"","infoSlide":"","round":"5","link":"","language":"English","topic":{},"content":"That western countries should abandon attempts to remove Maduro from power in Venezuela (e.g. ending sanctions, ceasing funding of Guaido and opposition movements).","id":"CESKS6g4rap3MNiHLBpg"},{"division":"","language":"English","tournamentID":"g87X9iRsC0CxxtZdAjMP","link":"","content":"TH, as a western democracy, would prefer relations with a stable autocracy as opposed to an unstable democracy.","topic":{},"round":"3","infoSlide":"","id":"CFHZiQRkNyQnOiAwa61y"},{"infoSlide":"","content":"THBT the Catholic church should make absolution for those who have committed a crime conditional upon them handing themselves into the police.","tournamentID":"VyYxJ0FaIE4LYaWheUyL","topic":{},"language":"English","division":"","round":"Open_Final","link":"","id":"CFLdXMtXaLrVdyU2e7x8"},{"language":"English","infoSlide":"","division":"","round":"2","link":"","topic":{},"tournamentID":"tLlByvzEQCgHw5hl7kZg","content":"THW ban unpaid internships.","id":"CFXtWFO4NfXOLMK3tvr5"},{"infoSlide":"","topic":{},"language":"English","content":"TH: supports the integration of armed rebel groups into the DRC army.","round":"3","tournamentID":"aUwwV3DTC7VLF1KaHJqj","link":"","division":"","id":"CGgBQaEzGgBzVtLLwM7y"},{"infoSlide":"","topic":{},"tournamentID":"bcb5yQt6p8cx9SACsvYL","link":"","content":"This House supports the French government's decision to dismantle the \"Calais jungle.\".","division":"","language":"English","round":"Open_Quarters","id":"CH3u2ygPyI0XwPqibjZE"},{"tournamentID":"7Jdvl74EMNCm0P5fq9PJ","division":"","round":"Semifinals","infoSlide":"","language":"English","topic":{"economics":{"title":"Economics","check":true}},"content":"THBT states should reclaim a large proportion of all donations to charities and redistribute it across charities on the basis of their effectiveness.","link":"","id":"CHH7AkjOIRsUqCZHvMCQ"},{"content":"THW Prefer a world without lying.","round":"ProAm_Final","link":"","division":"","language":"English","tournamentID":"if0ptVr0NjWKFiLehpRT","infoSlide":"","topic":{},"id":"CHIJiszwaApeIknclMZw"},{"content":"TH, as feminists, would encourage women not to wear make-up.","language":"English","round":"","tournamentID":"37eWQ7OoHqsPgaN53lHV","topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"division":"","infoSlide":"","link":"","id":"CHhXdU1LFocDzPfhHDbL"},{"content":"Giả sử công nghệ cho phép, chúng tôi sẽ cho phép con người thay đổi danh tính chủng tộc của họ (màu da, sắc tộc, ...)","tournamentID":"1qq9g2ApB8UdvPr2ewx1","topic":{"fiction":{"check":true,"title":"Fiction"}},"division":"","infoSlide":"","link":"","round":"","language":"Vietnamese","id":"CHr4iWsZyva0csBgzEiv"},{"content":"THBT politicians should retire at 65 like everybody else.","division":"","link":"","infoSlide":"","language":"English","tournamentID":"DSFg77BvC9y4FK5pBVIv","round":"4","topic":{},"id":"CHtMwZQJGTpGjB33b86j"},{"topic":{},"language":"English","division":"","content":"THBT coaches should be held liable for players which they choose to play with the knowledge that those players were already injured.","round":"3.3","infoSlide":"","tournamentID":"bvHOR7Oow9PPlKPlA2BT","link":"","id":"CI97qOWbqE7MUMedk0rM"},{"link":"","tournamentID":"bH0N4QlKzNNQ8zL97OyO","round":"1","content":"THW break up large pharmaceutical firms.","infoSlide":"","language":"English","topic":{},"division":"","id":"CIOrj1tUdNa3X98G0nyq"},{"tournamentID":"e3m3vjjIT1UO4munSqvD","language":"English","topic":{},"round":"Open_Semi","division":"","link":"","infoSlide":"","content":"THS states prioritizing the alleviation of poverty within their own borders at the expense of support of international aid programmes.","id":"CIwWSDQZLbEqNu1T0jHG"},{"round":"2","content":"THW replace all social safety net policies with a comparable universal basic income.","infoSlide":"","tournamentID":"GEF7QfNpKGwIZtimYEsL","topic":{},"language":"English","link":"","division":"","id":"CJGMHTyJR8Ukxd8z8FRC"},{"infoSlide":"","topic":{},"tournamentID":"xixMAepJqW9TAZSYVdsR","round":"5","link":"","language":"English","content":"THBT in times of crisis that threaten the existence of a community (e.g., famine, war, plague, natural disaster, etc), capable individuals from the community have a moral obligation to dedicate their time directly towards ending the crisis instead of pursuing nonessential activities (e.g., playing sports, making non-propagandist/apolitical art, going on vacation to the beach, pursuing education irrelevant to the crisis, etc.","division":"","id":"CJLfR06sdGuLrOiATiqT"},{"topic":{},"infoSlide":"","tournamentID":"tLlByvzEQCgHw5hl7kZg","round":"Open_Final","content":"TH regrets the centralisation of organised religion.","link":"","language":"English","division":"","id":"CJdW3KAKsseQ5YKuK1AG"},{"round":"1","content":"THW Give Extra Votes to Individuals who Live in Areas with Consistently Low Voter Turnout.","tournamentID":"BXOIn4DQsS3fQg4ZnBFn","topic":{},"link":"","language":"English","division":"","infoSlide":"","id":"CKSGogd9LPsHS443p2si"},{"tournamentID":"yIBeLUbSZELobFcw30WY","link":"","round":"Open_Finals","content":"THBT colonial powers should pay reparations for colonialism.","language":"English","topic":{},"infoSlide":"","division":"","id":"CKZBcrvPAN0gNYxcuej9"},{"link":"","infoSlide":"","language":"English","content":"THW make the provision or sale of junk food and soda to children under the age of consent illegal.","topic":{},"round":"4","division":"","tournamentID":"KMM87DnmWFjc4UzTdkjp","id":"CLNBUEykdXYdDueQzG0u"},{"topic":{},"content":"\"This House would rather live in a world where globalization had not occurred so intensely.\".","round":"3","infoSlide":"","link":"","division":"","tournamentID":"GFxILtaCaIOzQVLckGus","language":"English","id":"CLkAfgj8Av8opyU5bxId"},{"round":"Open_Quarters","language":"English","infoSlide":"","topic":{},"division":"","tournamentID":"xoiSW3hTToX15wvrD6gA","link":"","content":"THS the \"Kingpin\" strategy in combatting drug cartels.","id":"CM44Zwr7uZprTV5JoaVW"},{"round":"Novice_Final","topic":{},"link":"","tournamentID":"TpCKtGVry2w5xrgb90jZ","content":"THW withdraw all military aid to Israel.","infoSlide":"","language":"English","division":"","id":"CMNeqNZcIiHfvU7PKEVi"},{"link":"","content":"TalkToys are dolls with Artificial Intelligence (AI) and speech recognition software that enable them to engage in an actual conversation with children (they have a lexicon of thousands of prescript responses). TalkToys are meant to serve as a companion to the child, and they are in the late stages of development. Prominent examples of toys that will be able to talk include Barbie, G.I Joe and Star Wars and Action Figures. THW Ban TalkToys.","tournamentID":"zUT5H7Cgh7l0a0sJSIba","language":"English","division":"","topic":{},"infoSlide":"","round":"2","id":"CMwFN60mOZmkENlR2lBc"},{"topic":{},"tournamentID":"d13kY0BTy5kVOwwqu54R","division":"","infoSlide":"","link":"","round":"Open Semifinal","language":"English","content":"THBT The USA should adopt a parliamentary democracy rather than a presidential one.","id":"CNMySX6B20JPvhia6xO0"},{"division":"","round":"1","topic":{},"content":"This house would require all schools in New Zealand to become co-educational.","infoSlide":"","tournamentID":"jU6ofoRVsACbu04pXrg6","language":"English","link":"","id":"CNZjx2hCe4FvpgzUERDh"},{"division":"","infoSlide":"There is an alien civilization near Earth equipped with advanced technology. This technology means that it has been able to cloak itself and avoid detection fairly reliably.","round":"Grand Final","topic":{"fiction":{"check":true,"title":"Fiction"}},"tournamentID":"KncW7pH1nDIom3xK89VG","language":"English","content":"THP, as humanity, that the aliens reveal themselves to Earth.","link":"","id":"CNeBX3nDFZgiPPFs2hMA"},{"division":"","topic":{},"language":"English","content":"TH regrets the rise of mega-rich football clubs (such as Chelsea, Manchester City, PSG, Monaco, Anzhi M. etc).","tournamentID":"8ayi1XeWc8ZG8jPzG8bt","infoSlide":"","round":"3","link":"","id":"COOzGeRtgyBkh1fHcE8J"},{"language":"English","topic":{},"infoSlide":"","round":"4","link":"","content":"That schools should encourage children from minority backgrounds to 'code switch'.","tournamentID":"n7qv29PmNuF5SOe42oiz","division":"","id":"COS6Bv2awgMsZAMFpoEY"},{"round":"5","division":"","topic":{},"language":"English","link":"","content":"THW choose to believe in a god or gods.","tournamentID":"yK2aesNii4f0c4vvqYng","infoSlide":"","id":"CPxFhbBbAsiAXXnca6AC"},{"topic":{},"round":"5","tournamentID":"lItvEbHHU24VVqcwipRq","language":"English","link":"","infoSlide":"","division":"","content":"THBT social media is ruining democracy.","id":"CQvbYX52qJOkWE9fxzK3"},{"infoSlide":"","tournamentID":"nALUKfkpmOnWnQCzecru","round":"","link":"","language":"English","topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"}},"division":"","content":"Chúng tôi tin rằng phong trào LGBTQIA+ nên lên án các sự tiêu thụ phim ảnh và chương trình TV được đóng bởi diên viên thẳng trong các vai được xác định là không dị tính.","id":"CR7R4Q5Fr5LprpmWJE4G"},{"round":"Open_Final","division":"","link":"","language":"English","content":"THBT extreme economic need should be grounds for asylum.","topic":{},"tournamentID":"6j3LrbKUgx9arVygXUjf","infoSlide":"","id":"CRozawAMq7SyGmSK4EDF"},{"division":"","link":"","content":"THW allow defendants in criminal trials to ask the judge to be acquitted on the grounds that the law they broke was unjust, and would instruct all juries to take this defense into account.","round":"5","tournamentID":"riEZk6ypdW0s5dnVIggc","language":"English","topic":{},"infoSlide":"","id":"CSubGdMzqPnvu2QPWqmq"},{"language":"English","tournamentID":"vS5BTr7lDW40h5Qw31FI","content":"This house believes that Catholic religious officials in Mexico should not make statements in support of governmental policies, political parties, or candidates.","topic":{},"infoSlide":"","link":"","round":"EFL_Semis","division":"","id":"CTGwzBAWATdMv0MkZE1q"},{"language":"English","content":"TH, as the Church of England, would withdraw from the Anglican Communion.","infoSlide":"","topic":{},"division":"","link":"","round":"Open_Final","tournamentID":"zbDMNQdzWmUf0FHPwYDO","id":"CTgyywDJwUzEa0l1TWVK"},{"division":"","topic":{},"tournamentID":"7vCURwwkA80JiqPvxSZu","infoSlide":"","round":"2","language":"English","link":"","content":"THBT marginalized communities are better off construction their own economic and social systems than they are assimilating and/or fighting for equality in the traditional systems.","id":"CU632h8qNwYY4G3a74TN"},{"link":"","division":"","round":"Open_Finals","language":"English","infoSlide":"","tournamentID":"8umdzosR2LakbIpLGOan","topic":{},"content":"THS universal jurisdiction for crimes against humanity.","id":"CV24QM3LbERiReejD3Fs"},{"link":"","tournamentID":"ZHpmROZ4G7eY4iB9dTsM","infoSlide":"","topic":{},"division":"","language":"English","round":"6","content":"THW ban works of literature/film/music that glorify criminality.","id":"CVMF4YAf5vzF1ggfHo1D"},{"topic":{},"tournamentID":"BEmSFvOGfvfXfJxFm9a7","content":"TH regrets the narrative that hard work will lead to financial success.","round":"3","language":"English","link":"","infoSlide":"","division":"","id":"CVMn73SzF77kxWqkmjzt"},{"round":"3","tournamentID":"E91ZTw8wNjTYuX6RmZCc","content":"THW allow the police full and unrestricted access to Facebook and other social media.","division":"","topic":{},"language":"English","infoSlide":"","link":"","id":"CVRoGuO9dEXbY4tcHvWX"},{"infoSlide":"","tournamentID":"c74XLjeeNJzVbzpMjGlo","topic":{},"language":"English","link":"","content":"THBT liberal democracies should cut all economic and military ties with the Kingdom of Saudi Arabia.","round":"ESL_Finals","division":"","id":"CVWxAN0hfdZzKmGC7kAv"},{"division":"","tournamentID":"0anPdjjejinL3DGvB4L1","link":"","topic":{},"language":"English","infoSlide":"","content":"THBT it is in the interest of the ruling party of Kazakhstan to hold free and fair local elections of akims and maslikhats.","round":"5","id":"CVhsHh5QBVuBxa2j0hrG"},{"round":"5","tournamentID":"BEDaS3pLJHS1T1Xr4txo","language":"English","topic":{},"content":"THBT the United States Government should pay reparations to the descendants of former slaves.","link":"","infoSlide":"","division":"","id":"CW2GTj8CeXK3J7ttSS6O"},{"language":"English","infoSlide":"","division":"","topic":{},"round":"3","tournamentID":"TXUiH5ezPBItq39Het98","content":"THBT local queer activist groups should aggressively push for the redefinition of Hijras as ordinary individuals with no unique supernatural powers.","link":"","id":"CW3Rj9QXE65vKuER65NI"},{"infoSlide":"","topic":{},"division":"","content":"THBT governments should actively discourage consumerist lifestyles.","tournamentID":"W8zmuuOkdBsEHQw2r0RP","round":"3","link":"","language":"English","id":"CW3VyLZ18NP51zjQJVcE"},{"round":"3","topic":{},"tournamentID":"Pt1Z2dTdUinRviVucbZA","content":"That, with hindsight, we really do regret Glee.","language":"English","infoSlide":"","link":"","division":"","id":"CWlxP06R2VlyU4dEk0eW"},{"round":"3","infoSlide":"","division":"","tournamentID":"9sZiZ9uPaGSIYSFdM4VZ","topic":{},"language":"English","content":"THW allow parents to decide to let their severally mentally handicapped children be operated or treated with hormones so that they will not enter physical puberty.","link":"","id":"CXvEbgbBBuPGqJ1cmmyd"},{"content":"THW enact an immediate democracy.","round":"Open_Final","language":"English","tournamentID":"L8JGtnnMnhA8w9ooOx0S","infoSlide":"","topic":{},"link":"","division":"","id":"CZ1RREFV3tutB76vNrcN"},{"infoSlide":"","topic":{},"round":"Final","link":"","language":"Vietnamese","division":"","content":"Chúng tôi phản đối việc con người tìm kiếm \"nửa kia\" của đời mình.","tournamentID":"znXRdnU2llK8fXmHlci5","id":"CaWOIUnrJj2QmMi7xBaO"},{"link":"","language":"English","round":"3","topic":{},"infoSlide":"","tournamentID":"Mp1zDBiaN3PYnRnjPVIk","content":"THW abandon African Union plans for a single currency.","division":"","id":"CbFp0qkUYNSU1xRtgdp7"},{"tournamentID":"cBdmYwHV9z5pBS0q23lF","round":"Open_Semi","topic":{},"language":"English","infoSlide":"","link":"","division":"","content":"THBT feminist movements should integrate religious messages and institutions into their advocacy.","id":"CbGXe1wXSLfvSmJMx4EY"},{"tournamentID":"inOeJRfxqTpVMfq0i7Ze","topic":{},"content":"This house believes that Iran should adopt a pro-Western foreign policy.","language":"English","division":"","round":"4","link":"","infoSlide":"","id":"CbWlMajcE3dCXJgXiNot"},{"topic":{},"tournamentID":"jiJ3t0fz2aMel6atC1HM","division":"","language":"English","infoSlide":"","round":"1","link":"","content":"THW make welfare payments conditional on recipients engaging in full-time community service.","id":"Cbjlyynez7kXn8j7125B"},{"infoSlide":"","round":"Open_Final","link":"","division":"","content":"There is a city called Omelas where all the citizens live perfectly fulfilled and happy lives. Buildings are beautiful, crops are plentiful, there is no disease, no crime, and no sorrow of any kind. On the day they reach adulthood, every citizen is taken into the citadel, to a room in the basement. There, in the deepest dungeon, they find a child, malnourished and sick, chained against the wall, in the utmost misery a human being can endure. They know that if the child were comforted, if it were allowed to enjoy a solitary moment of happiness, that the beauty of the city above would crumble, and disease, crime and want would become a part of the peoples lives. For that reason, the child will never be allowed to leave by the city. Every citizen in Omelas knows it is there, and they have all agreed to live with it. Occasionally, a citizen, man or woman, young or old, will walk through the gate on the edge of the city. They will venture into the desert that surrounds the city for as far as can be seen, walk over the horizon, and never be seen or heard from again.They are known only as The Ones who Walk Away from Omelas. Motion: THW walk away.","topic":{},"tournamentID":"kIlyrRRnzkKK1188i1Qf","language":"English","id":"CdDonmdAOu3WQV4PZOXJ"},{"language":"English","link":"","tournamentID":"GeB6bvqs5FhYEP99Q8Ax","division":"","infoSlide":"","round":"2","topic":{},"content":"THW suspend all regulation regarding environmental protection laws and policies during prolonged periods of economic recession.","id":"CdWWHvh6EUU22OwFOpnO"},{"topic":{},"tournamentID":"uJGjvsaThnluwVzoHFXm","language":"English","link":"","content":"THBT police commissioners should be directly elected by their local community.","round":"ESL Semifinals","division":"","infoSlide":"","id":"Cg5UF3tgehMDQ8jBuVrk"},{"language":"English","tournamentID":"KUgzKY5FHtox24CaztLJ","infoSlide":"","round":"1","division":"","content":"THO the American charter school movement.","link":"","topic":{},"id":"CgMjl2B0mxlI0XK3O0LB"},{"link":"","content":"Chúng tôi sẽ vô hiệu hóa tác dụng của các bằng sáng chế y tế trong những trường hợp ý tế khẩn cấp.","language":"English","topic":{"others":{"title":"Others","check":true}},"division":"","infoSlide":"","tournamentID":"nALUKfkpmOnWnQCzecru","round":"","id":"Cgq2QhTaCEDxEZTe8lBo"},{"infoSlide":"","round":"2","content":"TH, as a rohingya Muslim fleeing the Myanmar military, would join the Arakan Rohingya Salvation Army.","language":"English","topic":{},"division":"","link":"","tournamentID":"TSpa3WXkfFl9nQFbVbmi","id":"CgriK5w5mkNHkahpLeyD"},{"language":"English","infoSlide":"","division":"","content":"THW stop streaming children in secondary schools based on intelligence.","link":"","tournamentID":"50nXPc798MPMXDyPN224","topic":{},"round":"1","id":"CgwIVclnvjYsPalMELPr"},{"content":"TH, with hindsight, support the 2003 invasion of Iraq.","tournamentID":"y7meTgIUCGSo7UqVkUQq","division":"","topic":{},"round":"Open_Finals","infoSlide":"","language":"English","link":"","id":"ChbMaViAAs8T1UfTtZ4t"},{"division":"","infoSlide":"","language":"English","tournamentID":"SIrskBVMCwGNCZibcnP1","link":"","round":"3","content":"THBT the EU should automatically re-admit regions that secede from member states.","topic":{},"id":"Chp92TKBPHqcFVLGBGvg"},{"tournamentID":"PNpMzinCvz3Z9bTJfV9t","language":"English","round":"Novice_Final","link":"","division":"","topic":{},"content":"THW ban the popular vote in talent shows:.","infoSlide":"","id":"CiMd18lhV83B1UThsTrc"},{"topic":{},"division":"","infoSlide":"","tournamentID":"d13kY0BTy5kVOwwqu54R","link":"","round":"4","content":"THIS HOUSE BELIEVES That western liberal democracies should cease all direct military action in Iraq, Syria, Libya and Yemen.","language":"English","id":"Cj95Nkmw17F5XcFIZ0JK"},{"tournamentID":"Aic5TDtU01Sp43Neh8N2","topic":{},"infoSlide":"","language":"English","division":"","round":"5","link":"","content":"THB African countries with AIDS crises should sue the Catholic church.","id":"CkJRMHX3qVUJ1TY6LHQk"},{"topic":{},"link":"","tournamentID":"POdYlP5an146yzuVI1Xg","language":"English","infoSlide":"","round":"2","division":"","content":"This house believes that Brazilian footballers should have boycotted the entire 2014 World Cup.","id":"CkufI56jPJ4NvYMOtpcC"},{"infoSlide":"","division":"","round":"Open_Final","link":"","language":"English","content":"THBT a society in which charity and donations are prevalent is preferable to a society with a state run welfare system.","topic":{},"tournamentID":"zNrcKb4T08IU7LfuYSUz","id":"Cl1gXoX3TEuunaAboMdJ"},{"link":"","round":"Open_Final","infoSlide":"","content":"TH supports the US continuing its surveillance practices on global political leaders.","language":"English","topic":{},"tournamentID":"XBBB3MfIKpYpUaioBlLB","division":"","id":"ClgXkwEQ3ZSW74HxNALc"},{"tournamentID":"puG4GbGRMRGTQ4eS4GHp","round":"3","infoSlide":"","language":"English","content":"THBT US citizens should select Option B i.e. they should vote to publicly subject the kidnapped officials to enhanced interrogation techniques.","topic":{},"division":"","link":"","id":"CmkYm05jdfbfy0MPrGFT"},{"topic":{},"language":"English","content":"THBT it is immoral for a country to be a tax haven.","division":"","tournamentID":"7iuaP5vcRAvHJFM4QYmP","round":"Open_Final","infoSlide":"","link":"","id":"Cnx0CdymEOeaZmw61Prs"},{"content":"THBT EU should not offer the UK another extension on Brexit after October 31.","round":"3","language":"English","link":"","topic":{},"division":"","tournamentID":"ERxjvEIrmiL3iSgvcfdB","infoSlide":"","id":"CojYYklzST6jampy8lRg"},{"round":"Junior Quarterfinals","content":"THR the glorification of the act of \"not giving up\".","link":"","division":"","topic":{},"language":"English","tournamentID":"AhKyFYR1ZI0UjUmZnaXu","infoSlide":"","id":"CplEwbrgmezNuSyqjZC6"},{"content":"THB School History curricula should teach a unanimously and graphically negative account of the impacts of Western colonialism.","round":"3","infoSlide":"","topic":{},"language":"English","tournamentID":"QH8qP4fqpVb4nMsZXwxw","division":"","link":"","id":"CqNsTiq8LpZz0gNG5JDh"},{"infoSlide":"","link":"","content":"Chúng tôi tin rằng Trump tái đắc cử sẽ có lợi hơn cho Việt Nam.","division":"","round":"Semifinals","tournamentID":"mkrRVvz5EWSZie6LBtCH","language":"Vietnamese","topic":{},"id":"CqPvYnBDc4MJfGTvnHeX"},{"round":"4","division":"","infoSlide":"","topic":{},"tournamentID":"9yPqE2fe1oaHsd7ankOa","language":"English","content":"THW mandate pharmaceutical corporations to reveal the cost involved in research and development.","link":"","id":"Cqw0WsgAx76VvLNMceoA"},{"link":"","division":"","tournamentID":"Q8FD3CioEeXKgMlwBG6R","infoSlide":"","content":"THW programme self-driving cars to prioritise the number of lives saved when faced with unavoidable collisions as opposed to prioritising the safety of the driver/passenger.","round":"4","topic":{},"language":"English","id":"CrtoFT5oaLCJfuLGWNZL"},{"topic":{},"division":"","tournamentID":"b9wXoxHWMOjvJu54cv9Q","infoSlide":"","link":"","language":"English","round":"2","content":"THBT there should be obligatory equal parental leave for women and men.","id":"CrzoHRhrecFaYZQfLJzC"},{"infoSlide":"","division":"","round":"Open_Semis","language":"English","tournamentID":"wuDBbL4uYIZXIthzVv4V","content":"THBT companies should be held liable in their home countries for environmental damage in other countries.","topic":{},"link":"","id":"CsVi3H2QKfAzKUft2eYZ"},{"language":"English","link":"","tournamentID":"SxA6fvGmUbCEyPLjj4Sw","round":"2","infoSlide":"","division":"","content":"THBT multinational companies are friends of the developing world.","topic":{},"id":"CtgrS8Zf2n3CBYdgOsaD"},{"content":"This House would ban any treatment, service or ritual from claiming a physical healing effect until it is tested and proven more effective than a placebo by a national regulator.","infoSlide":"","round":"1","language":"English","topic":{},"tournamentID":"i1HAMqWg9Epu5Ys9FJg5","link":"","division":"","id":"CtygtQjBYUgWzFEdpXFL"},{"content":"This house would ban all forms of gambling.","tournamentID":"kFpM1KUkMmDded3L4Zmm","infoSlide":"","round":"1","language":"English","topic":{},"division":"","link":"","id":"Cv4lFtaStjxws0C3br9b"},{"link":"","division":"","round":"3","topic":{},"infoSlide":"","tournamentID":"SxA6fvGmUbCEyPLjj4Sw","language":"English","content":"THW impose environmental tax on airlines.","id":"CvUqMWLj1oNnqwWhWdRv"},{"tournamentID":"1bBjpR84rI88s6EveWzm","division":"","link":"","content":"THBT feminists should reclaim and celebrate traits (such as empathy, nurturing) and activities (gardening, cooking) associated with femininity as empowering.","topic":{},"language":"English","infoSlide":"","round":"Open_Final","id":"CvbJ8pH77xeM7mCPEgwD"},{"tournamentID":"hUGuNPuqow1Qx4Z2fgOz","infoSlide":"","content":"THBT the interests of the ethnic Albanians in Macedonia is best served through participation in ethnic Macedonian parties.","division":"","round":"1","link":"","topic":{},"language":"English","id":"CvleA3yBia5YMlQ5RQav"},{"topic":{},"link":"","language":"English","round":"Quarterfinals","content":"That it is justified for parents to push their children to succeed, even if it comes at the expense of their children's immediate happiness.","infoSlide":"","division":"","tournamentID":"SPjgjrpUBIPs6H9gmx9P","id":"CwObVaMDFJ3jtfBgGBS5"},{"tournamentID":"ChiU8yMbLI2Y2q5rwURP","language":"English","infoSlide":"'Operation Car Wash' is a broad investigation conducted in Brazil that revealed extensive corruption. As a result of the operation, the left-leaning Workers' Party have lost power, and far-right candidate Jair Bolsonaro has been elected president.","round":"Open_Semis","content":"THR 'Operation Car Wash'.","link":"","topic":{},"division":"","id":"CyNSiSo4CSEGhFOGKvD0"},{"link":"","tournamentID":"euj80C6nkxdgEhkTaI0g","language":"English","content":"THW extend the right to vote in Israeli elections to all Jews everywhere, including those who live outside of Israel.","infoSlide":"","round":"Novice_Finals","topic":{},"division":"","id":"CyhTtxSagucyzBMG1Oj2"},{"infoSlide":"","language":"English","content":"THW forcibly take owernership of privately-owned homes which are not lived in by their owners during periods of national housing shortages.","round":"1","link":"","division":"","tournamentID":"FISzpNaGZKCHkhtDdzPp","topic":{},"id":"CzFlet6YDZv9N2QDODZP"},{"tournamentID":"k3ijyeg4qJCcExIHRlhv","language":"English","infoSlide":"","content":"THS such organizations.","link":"","round":"4","division":"","topic":{},"id":"Czp51KaTDmE5ABH9Oh8u"},{"division":"","topic":{},"content":"THBT the world's poor would be justified in pursuing complete Marxist revolution.","infoSlide":"","tournamentID":"92dIEXeOXUVvlcFeGCIr","link":"","language":"English","round":"Open_Final","id":"D0YaqtKOnExgFdWiqGRj"},{"language":"English","round":"3","topic":{},"link":"","infoSlide":"","division":"","tournamentID":"sVguH0ZxbQ8C5aNo2rNf","content":"THBT developed countries should not retaliate to protectionist measures by developing countries.","id":"D0pn1JT8jtQm5M57hwR7"},{"division":"","content":"TH regrets the rise of 24 hour news culture.","topic":{},"tournamentID":"MKnFsrIKq8equaMluK21","language":"English","infoSlide":"","link":"","round":"Open_Quarters","id":"D0wyNw040HRr586YrS82"},{"content":"TH, as a draftee, would dodge the draft.","division":"","link":"","round":"Open_Semis","tournamentID":"ZQQO7Q0LBTeQnU1Rb8fK","infoSlide":"","language":"English","topic":{},"id":"D1HOyG2UPlRmlLWe4Huu"},{"topic":{},"round":"3","link":"","division":"","content":"TH supports targeted advertising based on gender.","infoSlide":"","language":"English","tournamentID":"JzS0MHRn0Mb2AaYiEq5h","id":"D1MCLeuxxnBXK8bNXPRe"},{"language":"English","round":"Open_Semis","division":"","link":"","infoSlide":"","content":"THBT the International Monetary Fund should require collateral for national bailouts.","tournamentID":"IgBrZRMArYLwB0oVtcRa","topic":{},"id":"D1ctYG0qV7eRxb7rBcJO"},{"topic":{},"language":"English","division":"","tournamentID":"kqAjVyDOCBYWRYze158e","link":"","content":"This house believes that feminist organisations should not criticize female politicians for their views on women's issues.","infoSlide":"","round":"Open_Final","id":"D2iqb7R3589fv75ZEyZH"},{"division":"","tournamentID":"LDEsIQgDXxAdqGHF4x4e","content":"THB that journalism is more effective than political protest in holding governments responsible for their actions.","round":"Open_Final","topic":{},"link":"","infoSlide":"","language":"English","id":"D3F4bR9xQ4GG8GlmSPPz"},{"division":"","link":"","round":"Open_Semis","content":"You are a humanitarian charity operating in a conflict-zone and have been instructed that to remain working in the country you must provide 50% of your donations to the government or else all access to the country will be forcibly cut off. This house would remain in the conflict-zone.","infoSlide":"","language":"English","topic":{},"tournamentID":"bxhnmh9CZq21XJcRU2BX","id":"D3W6lLHgVl4F9Ci2fIPz"},{"topic":{},"content":"THW build a second Deathstar.","tournamentID":"7lMrN2aiwSzD5rzPFwHz","link":"","division":"","language":"English","infoSlide":"","round":"2","id":"D3rNnglOvXwLb7fmuQKR"},{"language":"English","tournamentID":"oUef705Eak69UuzgVheB","link":"","topic":{},"infoSlide":"","division":"","content":"THBT The Image Of Female Sexuality Depicted By Female RnB Artists In Songs Like, But Not Limited To, Rihanna's Rude Boy Are Empowering.","round":"4","id":"D4IoL0QbrCYnG1S0V8ss"},{"round":"4","topic":{},"content":"In states with a significant ethnic minority population, TH supports the creation of political parties solely pursuing the interests of an ethnic minority group.","infoSlide":"","tournamentID":"Mp1zDBiaN3PYnRnjPVIk","link":"","division":"","language":"English","id":"D4bYzL9SP6xR68PLbpQc"},{"content":"TH, as the EU, would replace the independent national healthcare systems with a collectively funded regional system.","infoSlide":"","tournamentID":"xoiSW3hTToX15wvrD6gA","topic":{},"round":"4","language":"English","link":"","division":"","id":"D4qdBmSjlSVBGLrzxIU3"},{"tournamentID":"QH8qP4fqpVb4nMsZXwxw","division":"","topic":{},"language":"English","content":"THW replace means tested welfare with a regular, unconditional and Universal Basic Income paid by the State to all residents.","link":"","round":"1","infoSlide":"","id":"D5DC2CsQSE8c1zxRIduI"},{"content":"THBT Palestinians should prioritise striving to consolidate a Palestinian state in the Westbank and the Gaza Strip as opposed to seeking the right to return to Israel.","round":"Open_Final","link":"","topic":{},"tournamentID":"S5UzkuOf9XN6BnhOSbRC","infoSlide":"","language":"English","division":"","id":"D5EEDdyHwnX9LNu4iuDa"},{"round":"ESL_Final","topic":{},"infoSlide":"","division":"","content":"In democratic post-colonial states, This house believes that opposition parties to the party of independence should claim and use the legacy of anti-colonial resistance.","tournamentID":"vS5BTr7lDW40h5Qw31FI","language":"English","link":"","id":"D5Qts4R11KhX07K2fHNp"},{"link":"","topic":{},"division":"","tournamentID":"YbdPFTE9FbO3iQjZo87D","round":"2","language":"English","infoSlide":"","content":"THBT it is in the interest of the Chinese Communist Party to cease attempts to infringe on \"One Country, Two Systems\" in Hong Kong, rather than continuing its current approach.","id":"D5pM7zQeXAt21dXpbhNZ"},{"infoSlide":"","topic":{},"round":"Open_Semis","link":"","division":"","language":"English","content":"THW restrict the press from all speculation and reporting on the mental health of criminals and suspected criminals.","tournamentID":"qA0UqqN9np2leDGCNcck","id":"D5zZLhj2DkzIW4v07tAU"},{"division":"","tournamentID":"3Zgv6Gsne7dxEbg36SPO","language":"English","content":"This House Supports Politicians Passing Progressive Legislation, Even When it is Contrary to the Wishes of the Democratic Electorate.","link":"","topic":{},"round":"2","infoSlide":"","id":"D6Nw0uB6w7yDlOMngJAD"},{"division":"","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"tournamentID":"OqQWJjNQBpGOYwMntw3z","content":"Chúng tôi sẽ quyết định số con một cặp đôi có thể có dựa trên điều kiện tài chính của họ.","round":"","language":"Vietnamese","infoSlide":"","link":"","id":"D6yzjonr0UF8ueyofubP"},{"link":"","tournamentID":"DIDaTQVu3sv4iXbqf3eE","language":"English","division":"","content":"THBT developing states are better off with elite-led technocratic governments as opposed to democratic ones.","round":"Open_Semi","topic":{},"infoSlide":"","id":"D6z35uF4H12PDu0BaF9U"},{"division":"","round":"3","content":"TH, which is the Hamas movement, would lay down its arms.","infoSlide":"","topic":{},"tournamentID":"OZYKzIzIg9zKy9OOiaP3","language":"English","link":"","id":"D7iGyTSQ6QbZnPQFtXOA"},{"division":"","round":"5","infoSlide":"Hoạt động phục vụ cộng đồng là công việc không được trả công do một người hoặc một nhóm người thực hiện vì lợi ích và cải thiện cộng đồng mà không có bất kỳ hình thức trả công nào. Việc yêu cầu ở đây đề cập đến học sinh, sinh viên cần đạt được số điểm hoặc số giờ nhất định để được tốt nghiệp. Hoạt động phục vụ cộng đồng có thể khác với hoạt động tình nguyện, vì nó không phải lúc nào cũng được thực hiện trên cơ sở tình nguyện và có thể là bắt buộc, tùy theo tình huống.","topic":{},"language":"Vietnamese","content":"Chúng tôi sẽ yêu cầu các học sinh, sinh viên phải thực hiện hoạt động phục vụ cộng đồng.","link":"","tournamentID":"i00RSzvK4b1TDEgnpFJd","id":"D8l7iyw8T0e1l5FImmIN"},{"content":"THBT the Mexican govenment should retroactively legalise the production and distribution of drugs, instead of keeping them illegal.","division":"","infoSlide":"","tournamentID":"0anPdjjejinL3DGvB4L1","link":"","language":"English","topic":{},"round":"1","id":"D9qyl4bHyBLh1tycqvNn"},{"topic":{},"link":"","tournamentID":"WqXUc7EMDvkqqg3BVCtf","division":"","infoSlide":"","round":"5","content":"This House believes that the European Union should lift its arms embargo on China.","language":"English","id":"D9r3MLwQNjGK8thOMiQ4"},{"division":"","infoSlide":"","topic":{},"content":"THW set a maximum amount to be spent on health care per QUALY (Quality Adjusted Life Year).","round":"3","language":"English","tournamentID":"rTCB6GUTIjymEKsbO01i","link":"","id":"DAmcM4mwE1R8QavvzEVf"},{"infoSlide":"","content":"Should HIV-infected people be forced to take a pill that would kill them within three days?.","division":"","tournamentID":"LK6lSp8gpBGbLjuv9caV","language":"English","topic":{},"link":"","round":"2","id":"DBMyno52w7GFcNdTF75F"},{"division":"","link":"","content":"THBT countries like Switzerland, that were neutral in WW II should pay financial reparations to states occupied by the Nazis.","language":"English","topic":{},"tournamentID":"gQ88d3loB2qwgD7ofmmr","infoSlide":"","round":"3","id":"DBVGOcSIDrtWCI5ZyL0L"},{"infoSlide":"","tournamentID":"sgcqNV5ntCoa4H8glRBu","division":"","content":"THR the notion that: \"Aging is a disease that needs to be cured.\"","language":"English","topic":{"publicHealth":{"check":true,"title":"Public Health"}},"link":"","round":"4","id":"DBkHmebfkVsCoUvUpt9X"},{"language":"English","round":"2","division":"","topic":{},"content":"THW ban all medical procedures intended to change an individual's racial appearance.","infoSlide":"","tournamentID":"hUGuNPuqow1Qx4Z2fgOz","link":"","id":"DBotkQSxFBzg3qLnY2Ck"},{"content":"THP a world where epistemic humility is widely believed in, as opposed to a world where skepticism is widely believed in.","link":"","language":"English","round":"Open_Final","tournamentID":"4BdwKPHB1LrpVYqE4E51","division":"","topic":{},"infoSlide":"","id":"DBpTyZ8dOJiXhTg2nMfi"},{"tournamentID":"99Ct9ORyddmNGYGfpDl7","infoSlide":"","round":"4","topic":{},"language":"English","link":"","division":"","content":"THBT the European Union should have direct powers of taxation.","id":"DCFoYDYoPn5XagDkZA6n"},{"topic":{},"division":"","infoSlide":"","link":"","language":"English","content":"THBT the State of Israel should immediately and publicly end all attempts to capture or kill Nazi war criminals.","round":"Open_Final","tournamentID":"Iv1dWODCjV8TBafyTxx7","id":"DCksvlyv6JtyAAQ0i9G1"},{"division":"","link":"","infoSlide":"","tournamentID":"lleJhm2ki2Ixm97fXI7b","language":"English","topic":{},"round":"5","content":"THBT developing countries should ban aid organizations from religious proselytizing.","id":"DD2GiEe3IXdcR8165v4J"},{"topic":{},"infoSlide":"","division":"","language":"English","content":"That we should abolish the International Criminal Court.","tournamentID":"HjQJA65fZ9igHKO8DLAP","round":"Open_Semi","link":"","id":"DDUAfwvVrjIKYCLkyzwb"},{"language":"English","topic":{},"division":"","content":"THBT Western countries should offer to immediately cancel all debts owed by any authoritarian country upon its transition to democracy.","infoSlide":"","link":"","round":"3","tournamentID":"aWnK845Eg0cHNR0VZu3e","id":"DDVQKvLe2YyDsu0zgwYt"},{"topic":{},"infoSlide":"","language":"English","division":"","tournamentID":"dgRU54McMXqo1MXISAFt","content":"THP a world in which people exclusively idolise people they know.","round":"Open_Final","link":"","id":"DF4KDKkUPpxwWPltA46I"},{"content":"THBT major polluter nations should open their borders to climate refugees.","link":"","topic":{},"tournamentID":"WcNueZiJXeg9z82dijdL","infoSlide":"","division":"","language":"English","round":"2","id":"DFsbjVnG35FHi0ADkKfb"},{"round":"1","division":"","content":"THW require parents to vaccinate their children, except where doing so is not in the child's medical interest.","link":"","topic":{},"tournamentID":"JJmcUH5Gil0nuJObmDP8","language":"English","infoSlide":"","id":"DH0bYCgGJPvHmQYKXhxb"},{"division":"","language":"English","tournamentID":"xUGmMsj95M2w5CV6WYVA","topic":{},"round":"Open_Final","content":"either we are alone in the Universe or we are not. Both are equally terrifying.” - Arthur C Clarke Motion: THW rather be alone in the Universe.","infoSlide":"","link":"","id":"DHfxysVGNnbvfBWn3jlj"},{"content":"THW end the prosecution of Troubles-related killings in Northern Ireland.","topic":{},"tournamentID":"O8G3JSrsKEY7mvvg6szT","division":"","infoSlide":"","link":"","language":"English","round":"4","id":"DHksjFeTf4Br3JTd4Yeb"},{"topic":{},"content":"TH, as the European Union, would create a joint military force.","language":"English","infoSlide":"","division":"","tournamentID":"TmlbBgqJnPvT2UGB0Lbb","round":"5","link":"","id":"DJ0MeOjUjT3yiAlVkSEs"},{"content":"TH, as a prominent director from a marginalized background, would prioritize developing TV shows and films with a multicultural, diverse cast over one focused specifically on their marginalized group.","link":"","round":"1","tournamentID":"7l98EUanZ85SaCAlZg2X","infoSlide":"","division":"","topic":{},"language":"English","id":"DJVaLKJsli69BycfPE3x"},{"round":"4","infoSlide":"","division":"","content":"This House believes that the European Union should only direct aid to nations that pursue environmentally sustainable development.","language":"English","topic":{},"tournamentID":"gsX4dlvvsr6lcKP3eM2T","link":"","id":"DJdeW2HYqfgQeFLIS6d5"},{"topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"tournamentID":"OqQWJjNQBpGOYwMntw3z","round":"","division":"","link":"","language":"English","content":"THO the development of \"slum tourism\".","infoSlide":"\"Slum tourism\" companies connect tourists with residents of the slums. Visitors are not be allowed to film or take pictures. This is common in Mumbai (India), Manila (Philippines), Johannesburg (South Africa), etc.","id":"DK5TLMsDAZYmoEZJTfdD"},{"infoSlide":"","link":"","language":"English","division":"","tournamentID":"JWLA0D1GfpyCkzoL1qX9","round":"1","content":"THW Legalise licensed brothels.","topic":{},"id":"DK8HX2UwfV7ICId3s0PA"},{"topic":{},"division":"","content":"This House would impose a BBC-style impartiality requirement on all news platforms.","round":"1","tournamentID":"wA1XDLHJESmSgLsfZ9Qe","link":"","language":"English","infoSlide":"","id":"DKeIhN7lJDOGpqomthmk"},{"infoSlide":"","link":"","tournamentID":"4ENxr34b5j7GiIcVWnv9","division":"","language":"English","topic":{},"content":"THW expand baby hatches in China.","round":"2","id":"DM0yu14E7SH3gGwJ6qT2"},{"language":"English","round":"Open_Semis","topic":{},"content":"THB the state should stop incentivizing monogamous relationships.","tournamentID":"ovD89w3g4H3GjEFmXcRL","infoSlide":"","link":"","division":"","id":"DMneqM67U2SD6I45TA8z"},{"infoSlide":"","division":"","language":"English","content":"THBT the Association of Southeast Asian Nations (ASEAN) should have its own regional peacekeeping force.","round":"Open_Semis","tournamentID":"TAVBVNzO0c2PrQ44iAyC","topic":{},"link":"","id":"DN1U4GmjoDvUhhAyKY5m"},{"link":"","round":"7","content":"THW ban the research and production of moral enhancement drugs.","division":"","infoSlide":"","tournamentID":"q7pvo4zkG31lg89ofmeq","topic":{},"language":"English","id":"DOWeAXEqXMbpowYT54GI"},{"language":"English","round":"3.1","infoSlide":"","topic":{},"division":"","link":"","content":"THW always choose style over substance.","tournamentID":"1leOvfvlbNAIDzW6UnkK","id":"DQ8rHfKjAVsYukSKbM2U"},{"round":"4","topic":{},"link":"","tournamentID":"RNJanNDlcAfI2uIKx9LF","content":"Giả sử công nghệ cho phép, chúng tôi sẽ biến đổi gen gia súc, gia cầm để chúng không cảm thấy đau đớn nữa.","language":"Vietnamese","infoSlide":"","division":"","id":"DQTCgM8i363ZYzvyF1zh"},{"round":"3","content":"TH, as the board of Zenit St. Petersburg, would preference players with Slavic ethnicity, in order to respect the wishes of the fans.","infoSlide":"","topic":{},"division":"","language":"English","link":"","tournamentID":"keyU5X5APEvFXLaZwxeM","id":"DQnBrU8drCmv9sgkbIxS"},{"content":"THW give the public the power to pardon whistleblowers through a referendum.","language":"English","link":"","division":"","round":"2","infoSlide":"","topic":{},"tournamentID":"4dzoeUxkRP5WxDaCVtbY","id":"DQyP7HHqwMMZAb5nbj31"},{"division":"","language":"English","content":"THBT the Irish Political System has served the People well.","link":"","infoSlide":"","tournamentID":"RDNcZnvGFAsMrxYMLvRz","round":"Open_Final","topic":{},"id":"DRxqJHVayk26ZlR2xYbO"},{"topic":{},"language":"English","tournamentID":"GFxILtaCaIOzQVLckGus","round":"2","infoSlide":"","content":"\"This House condemns the rise of the use of social networks as a vehicle for public debate.\".","division":"","link":"","id":"DS6O3AWZco2tDOiorPcj"},{"infoSlide":"","topic":{},"tournamentID":"g7nlvxejABAgCXhGkJg8","division":"","language":"English","link":"","round":"Grand Final","content":"THP a world in which the USA was founded as a parliamentary democracy.","id":"DT476rDwMixKAu1shsWs"},{"infoSlide":"","division":"","topic":{},"language":"English","tournamentID":"pvKZkg6sqicG5nXA2mvY","link":"","content":"THBT Japan should shame its soldiers who participated in WWII, including those who did not commit war crimes themselves.","round":"Open_Octos","id":"DUgaHLIF6Gl2UKRzK6fl"},{"division":"","language":"English","content":"THW Ban the Production and Consumption of Meat.","infoSlide":"","link":"","round":"4","tournamentID":"WYCV7Sl9idtN2tulRuB2","topic":{},"id":"DUrVNsCJ7hWNuymkNhsO"},{"division":"","infoSlide":"","topic":{},"content":"THBT physical appearance is a fundamental criterion for good leadership.","language":"English","tournamentID":"DSFg77BvC9y4FK5pBVIv","round":"8","link":"","id":"DVGdi5Mw1L3ttUTJbPkS"},{"division":"","round":"6","link":"","content":"This House believes that political Islam is incompatible with democracy.","language":"English","tournamentID":"6tyiq2GnlmVmI452js6u","topic":{},"infoSlide":"","id":"DWTYMHAYzZUzDdqTTTvY"},{"content":"THR the glorification of soldiers and veterans as heros.","infoSlide":"","tournamentID":"7iuaP5vcRAvHJFM4QYmP","language":"English","division":"","round":"3","link":"","topic":{},"id":"DWktemK5opEDnYaoWKW7"},{"language":"English","topic":{},"tournamentID":"4XkvQJQxtOHIIF6sH97v","link":"","content":"THBT it is in the West's interests for Assad to decisively win the Syrian civil war.","round":"Open_Finals","division":"","infoSlide":"","id":"DWkvGcy0wWM5VWK6vFrh"},{"division":"","infoSlide":"","round":"4","tournamentID":"TwRuBI9R9WS6estcrif9","link":"","content":"THBT all acts of election campaign should be prohibited with the exception of public debates.","language":"English","topic":{},"id":"DX3y7n6Mt7oPCC2RCXyO"},{"link":"","content":"THW ban advertising that objectifies women.","infoSlide":"","language":"English","tournamentID":"qoRL9POR1sxdsrdIdj6B","topic":{},"division":"","round":"4","id":"DXQSAdfzTDcCAtysu4Hn"},{"tournamentID":"KpispxU2MtVt41R9j5bV","topic":{},"round":"2","language":"English","link":"","content":"THW transition to a cash-less society.","infoSlide":"","division":"","id":"DXa3W05v7Kgf0oqq1VFH"},{"language":"English","topic":{},"infoSlide":"","content":"THBT, in the face of police repression, protesters have a right to non-lethal, but violent, proportional retaliation.","tournamentID":"KUgzKY5FHtox24CaztLJ","round":"Open_Finals","division":"","link":"","id":"DXoJ4bv5dyRVhdvrUPx9"},{"division":"","topic":{},"infoSlide":"","round":"5","link":"","content":"This House Believes That the IMF should significantly relax conditions on loans to African countries.","language":"English","tournamentID":"aHKO046eJRUWaom1jPG8","id":"DZVGxLKDNFpsRWFdeMHS"},{"content":"THW choose the job they are passionate about.","link":"","infoSlide":"","topic":{},"round":"5","division":"","language":"English","tournamentID":"8EaRfOcTe47s5VRlQeNv","id":"DbDSqoSxOOPopH5WaPZg"},{"link":"","topic":{},"language":"English","round":"5","content":"THBT the Western World should not portray ‘’The Great Explorers’’ (e.g. Christoph Columbus, Vasco da Gama) as heroes.","infoSlide":"","tournamentID":"gQ88d3loB2qwgD7ofmmr","division":"","id":"Dbj0SGHKeiLt1wwJxkSF"},{"division":"","language":"English","content":"THBT endangered animal species should not be actively protected.","link":"","round":"Open_Semis","infoSlide":"","tournamentID":"uk4xP1Lp7BjYaOzgd3Xi","topic":{},"id":"Dc050p0mDnHRgQ29cNSO"},{"language":"English","content":"THW prefer a world in which there are no extreme emotions such as boiling rage, falling madly in love, extreme grief etc.","round":"Open_Final","infoSlide":"","tournamentID":"m9Mkt1xdSA1jDsNN4zgu","topic":{},"link":"","division":"","id":"DcQGKkOtZxFJHqybdfTq"},{"link":"","language":"English","round":"2","division":"","content":"THW replace the Māori seats in Parliament with a Māori upper house.","infoSlide":"","topic":{},"tournamentID":"jU6ofoRVsACbu04pXrg6","id":"Dd90UoGn0Q1yZdYHSSWQ"},{"infoSlide":"","content":"TH, as an individual with strong and deeply held convictions, would die for their cause.","topic":{},"round":"Open_Final","division":"","language":"English","tournamentID":"se3rzB8xVp0Ph3sVbug3","link":"","id":"Dd9qrL7cUzNo0mOBqeIF"},{"content":"This house believes that in post colonial countries, land confiscated by colonial powers should be seized by the state without compensation.","topic":{},"infoSlide":"","division":"","link":"","language":"English","round":"7","tournamentID":"bxhnmh9CZq21XJcRU2BX","id":"DdPl8OpDZyvP0lMuySMz"},{"topic":{},"round":"Open_Final","tournamentID":"zeR0rFnynHhmmEJ04jfo","content":"THBT the government should nationalise all land and buildings.","infoSlide":"","language":"English","division":"","link":"","id":"Ddf1soOIiZMID3zvkooN"},{"content":"This House believes that State Health Services should allow private companies to run hospitals for profit.","link":"","topic":{},"tournamentID":"1dEXZTvvRtTWhdBLmzFt","division":"","round":"2","infoSlide":"","language":"English","id":"DdmzSl0sZ9wTTBEUbRzg"},{"tournamentID":"V7FJhUQXRQ0Z4dnL94bu","link":"","infoSlide":"","language":"English","round":"Open_Quarters","division":"","topic":{},"content":"THBT the U.S. Federal Reserve should purchase equities (i.e., buy stocks).","id":"DfTMKCmcfaY0BDFzXTNW"},{"infoSlide":"","language":"English","tournamentID":"MSkvKRc0Dq8mooTLp6T8","content":"THBT foreign Western governments should stop attempting to resolve the Israel-Palestine conflict.","link":"","topic":{},"round":"1","division":"","id":"DfbaoGn0ALAOgFnuMSWQ"},{"infoSlide":"","round":"Open_Final","link":"","content":"THW restrict media coverage of school shootings.","tournamentID":"0FjoYPaEyMvQKDhX7FzX","language":"English","division":"","topic":{},"id":"DfcUflLNaGBnmjP56hSC"},{"topic":{},"content":"TH supports the continued remilitarization of Japan.","infoSlide":"","tournamentID":"Hk8f1ASR1JhJdfu9tmfK","language":"English","round":"4","division":"","link":"","id":"DfiC5B9yrdoGqTHQrXDs"},{"tournamentID":"V7FJhUQXRQ0Z4dnL94bu","infoSlide":"","content":"TH prefers a world with a widespread belief in radical freedom.","division":"","language":"English","round":"2","topic":{},"link":"","id":"DhHc3p26078iFsOfjRyA"},{"division":"","link":"","topic":{},"language":"English","round":"3","infoSlide":"","content":"THBT copyright of photographic art featuring individuals or communities of people should belong to those people, not the artist.","tournamentID":"zNyImaL5diiDsd93AVoW","id":"DibYIAEQJLFWa7rpaJpb"},{"topic":{},"tournamentID":"nDjxmwMznw4ZJasK7Taj","division":"","round":"5","infoSlide":"","language":"English","link":"","content":"This House Opposes Laicité.","id":"DjtpAJ0L8y9BpPPMXIAf"},{"division":"","tournamentID":"zpoYhp2wK06V8pO2Ljrp","round":"4","content":"THW compel news media to give coverage to all demonstrations proportionate to the size of that demonstration.","infoSlide":"","link":"","topic":{},"language":"English","id":"DjuMiAjaSKGXOqXYxfe0"},{"content":"This house, as a young adult, would choose to maintain and strengthen relationships with friends rather than invest time into a romantic partner.","round":"5","tournamentID":"fBPBbh32BZ2p0Y1Fy5Yi","link":"","language":"English","division":"","topic":{},"infoSlide":"","id":"DkJLJR3jphWt5faRYCuC"},{"content":"THBT no mayor should have participated in the protest marches against Wilders’ statements.","topic":{},"language":"English","round":"Open_Final","infoSlide":"","division":"","tournamentID":"w1cmIhewdRlJLYHGdtbg","link":"","id":"DmEqF5yHTsMUTk28w7qc"},{"topic":{},"link":"","infoSlide":"","round":"5","language":"English","content":"THBT countries should use political leverage to influence judicial proceedings involving their citizens in other countries.","tournamentID":"JlXdLu3VijXjgOdO21tX","division":"","id":"DnG9OiicQkZSU62CyhoP"},{"content":"THBT student societies and newspapers should have a 'no platform' policy for extremist political figures.","link":"","division":"","language":"English","topic":{},"tournamentID":"QV74kB5iA6iDiqLCNz2F","round":"1","infoSlide":"","id":"DnZrtQM0qX3tRLw1Kpll"},{"tournamentID":"SfEIDDzpv3y19flsWYFH","division":"","infoSlide":"","language":"English","content":"As the resistance group, THW accept the offer.","round":"2","topic":{},"link":"","id":"DnrrZr39bRW9YpALDAkh"},{"topic":{},"tournamentID":"P4io30tN10TYMqGkj2sX","content":"THW normalize relations with North Korea (including the removal of sanctions).","link":"","round":"2","division":"","language":"English","infoSlide":"","id":"DoC0PGW9W3BjGTjZweeW"},{"topic":{},"content":"THW allow the pardoning of whistleblowers by referendum.","infoSlide":"","division":"","link":"","language":"English","tournamentID":"dgRU54McMXqo1MXISAFt","round":"ESL_Final","id":"DoFCcdTRNd803EEZteeW"},{"tournamentID":"ubSWFCyfoCllO0KSjdjy","infoSlide":"","content":"This House Prefers a world where curriculum emphasize on globally integrated history over regional history.","link":"","topic":{},"round":"1","division":"","language":"English","id":"DoTGbV1Jshm0YG6F1B0L"},{"content":"THW, as the Indian Gov't, Cease the Naxalite Surrender and Rehabilitation Policy.","round":"5","infoSlide":"","tournamentID":"BvbIXgEeyaIcozyDf6R5","link":"","division":"","topic":{},"language":"English","id":"DomH5e8zLf0lDUfxpCX7"},{"content":"THW ban savior siblings.","infoSlide":"","round":"Open_Quarters","division":"","tournamentID":"G40265rxZRrwSbZ3fQSJ","link":"","language":"English","topic":{},"id":"DoxasOlcRVI4vgpm2i7I"},{"content":"THBT when financial institutions are in need of financial assistance during recessions, the burden should fall upon creditors (e.g. via diluting shareholder value by turning debt into equity) rather than the government stepping in.","tournamentID":"jfv01DUCOrtLcsyMO6qo","link":"","division":"","language":"English","round":"Open_Final","infoSlide":"","topic":{},"id":"DpHkqsuaGC8bpzbKJRTq"},{"link":"","language":"English","tournamentID":"m6JzV67uYJSVBRpAbgL7","topic":{},"division":"","round":"1","infoSlide":"","content":"THR the increasing trend of producing reboots within franchises (e.g. Marvel Cinematic Universe, Star Wars, Harry Potter, X-men).","id":"DpqxJL69hZBKhNUzbA2f"},{"topic":{},"tournamentID":"oaIuwyOX7NBIwaiSaVJ8","link":"","language":"English","infoSlide":"","round":"2","content":"That the LGBTQ+ movement should not allow police officers at pride events (such as the pride march).","division":"","id":"DqIwfznv9pZw8o0PjU2n"},{"infoSlide":"","division":"","round":"Open_Semi","tournamentID":"Te8CYa0tImwgHXE99O7W","content":"THO the \"Toxic Positivity\" culture.","language":"English","link":"","topic":{},"id":"DqyeMco3uzd3fkk2IrGP"},{"round":"3","tournamentID":"Ryhdb4JOJYP96e5oa49b","infoSlide":"","link":"","division":"","content":"THBT future generations should be able to sue the government for damages from the effects of climate change - Round 3.","language":"English","topic":{},"id":"DsBvUBEETeLOidLTP7x1"},{"division":"","link":"","topic":{},"round":"5","tournamentID":"3G6HklWR08yKYY0GbDsU","content":"THBT all State Schools should actively promote the religion of the majority.","infoSlide":"","language":"English","id":"Dsbi8WM647hrem9bX2dd"},{"infoSlide":"","link":"","round":"8","content":"This house believes that the southern african development community (SADC) should pursue political union.","tournamentID":"Biz1VRjjdg8eWbm4NJr3","language":"English","division":"","topic":{},"id":"Dsylgbay7CVT3OLAtFGm"},{"content":"THW legalize entrapment.","tournamentID":"PRCVo2dP9UPdRU9tVW31","round":"3","language":"English","topic":{},"division":"","infoSlide":"","link":"","id":"DtK2ll7hj0idRINu9v7v"},{"language":"English","tournamentID":"eBlrzVaoBbfX5kbian3T","link":"","infoSlide":"","round":"4","content":"THBT the US military should destroy Iran's nuclear program.","topic":{},"division":"","id":"DuAlvF7rbZdL1kJiXebk"},{"link":"","topic":{},"division":"","content":"This House Prefers a world where China becomes the largest global oil & natural gas exporter.","tournamentID":"DV29K6gIIl6nTiYeWo2j","round":"5","infoSlide":"","language":"English","id":"DuUQF1yHQbDgzBSNev5f"},{"infoSlide":"","link":"","content":"THW grant prisoners their right to vote back as soon as they are released.","division":"","language":"English","round":"1","tournamentID":"LHNbcjmFANvMo9zTZOWN","topic":{},"id":"DveXVg5YCpEgAvbpVoyk"},{"link":"","round":"2","content":"THBT individuals should be encouraged to make significant sacrifices for their community.","division":"","tournamentID":"5SXUtPGKmOtgXxWouFAs","language":"English","infoSlide":"","topic":{},"id":"DwDwdDL0Y2T4z6A2nboo"},{"tournamentID":"1iGKg5a8rDH4ci9OIYEG","language":"English","content":"TH, as the USA, no longer supports the right to bear arms.","link":"","infoSlide":"","round":"4","topic":{},"division":"","id":"DwNnSLpabonWqNoxNXSu"},{"division":"","round":"Open_Final","content":"THS health insurance companies offering terminally ill patients the option of a lump sum payment to forgo expensive life-extending treatments.","infoSlide":"","link":"","topic":{},"tournamentID":"7bcIb5yS1YVpFE3hzoDf","language":"English","id":"Dy60dcIIBXbgOSmuUuJv"},{"infoSlide":"","tournamentID":"vRdckCLdD0l2Rjc63y5T","content":"Should we give up on climate protection?.","link":"","language":"English","division":"","topic":{},"round":"Open_Semis","id":"DybzSmziUJznW2pamsD6"},{"tournamentID":"OAcOsXro6vLkyCebuX4n","content":"THBT the Myanmar NLD should actively support a pro-democracy campaign of civil disobedience.","infoSlide":"","round":"4","link":"","topic":{},"language":"English","division":"","id":"DyxGTqVs30TbpIHmDrcg"},{"tournamentID":"u39lMiqXE91heMDxEgQe","link":"","infoSlide":"","topic":{},"language":"Vietnamese","division":"","content":"Chúng tôi sẽ tăng thuế lên các công ty sử dụng AI thay thế cho công nhân lao động.","round":"Semifinals","id":"E18ovTcXUc1zJF8F7FfZ"},{"content":"THW force large companies who leave an area to pay the costs of any resulting structural unemployment.","language":"English","infoSlide":"","tournamentID":"zngB1WF8viOW2uGu6swZ","link":"","topic":{},"division":"","round":"3","id":"E1lHmtm9Nte2bC8L83CN"},{"content":"THBT all borders should be opened at once.","tournamentID":"IKVZuvI9noj2HK4GNxgS","language":"English","round":"4","topic":{},"link":"","infoSlide":"","division":"","id":"E1z72f3r3b2GoowJpya9"},{"topic":{},"tournamentID":"TpCKtGVry2w5xrgb90jZ","language":"English","round":"Open_Semis","division":"","content":"THBT Western countries should cease all direct military intervention in Yemen.","link":"","infoSlide":"","id":"E2Rlfz0wx8Y2EQwzRLEc"},{"tournamentID":"c5YoJ5qkI2DsrQ7PAhum","infoSlide":"","topic":{},"division":"","round":"3","link":"","content":"THW apply the same standards to the sale of mass surveillance technology as it does to the sale of arms.","language":"English","id":"E327mr4YswLyZFK7omOD"},{"infoSlide":"","tournamentID":"Hk8f1ASR1JhJdfu9tmfK","link":"","round":"2","content":"THBT western nations fighting the Islamic state should commit to the creation of an independent Kurdish state.","language":"English","topic":{},"division":"","id":"E3KqAiDOOP7GTHgQMqYa"},{"content":"THW ban the publication of any photographic and film material that portrays crime suspects.","topic":{},"round":"2","language":"English","link":"","infoSlide":"","division":"","tournamentID":"tnPBotxO7gOOKcyCXAUw","id":"E3jol1wFboxD8EPpaNfq"},{"language":"English","topic":{},"division":"","link":"","tournamentID":"6kzErQkhNrOjgjEPAYjE","round":"4","infoSlide":"","content":"THBT all children should have location chips.","id":"E3tqc8SOhgeBydd01Fe8"},{"tournamentID":"xixMAepJqW9TAZSYVdsR","topic":{},"infoSlide":"","division":"","round":"1","link":"","content":"TH, as a hopeful for the Democratic presidential nomination, would not endorse Alexandria Ocasio-Cortez’s Green New Deal.","language":"English","id":"E48mmZQsbX6JiIk7vFbI"},{"topic":{},"language":"English","division":"","round":"Open_Final","tournamentID":"7abz3Ipf2RhGUArcqBwg","content":"Should killing and feeding (Verfüttern) zoo animals for population control and consolidation of genetic diversity be banned?.","link":"","infoSlide":"","id":"E4jpZZCPPsEzV0yRdQWR"},{"round":"3","infoSlide":"","link":"","content":"THBT gay professional sportspeople have a duty to come out.","tournamentID":"99Ct9ORyddmNGYGfpDl7","division":"","topic":{},"language":"English","id":"E4qphYhUREY6d9cRj1DX"},{"round":"5.1","tournamentID":"h373wn3dFw9UcWDcJpyy","content":"We should add the P of paedophilia to the LGBT movement.","language":"English","topic":{},"link":"","division":"","infoSlide":"","id":"E4tFgoTIOtXnzcp9S4EE"},{"content":"TH prefers a world where everyone believes in free will.","round":"Open_Final","language":"English","tournamentID":"0EfM3HXUbP8eg9asv3MM","topic":{},"infoSlide":"","division":"","link":"","id":"E51JPu67KudGXw3oHQHH"},{"topic":{},"division":"","infoSlide":"","language":"English","round":"3","content":"This house supports a movement towards granting human rights to AI.","link":"","tournamentID":"bxhnmh9CZq21XJcRU2BX","id":"E5tIXyyInv5tvcRadYUf"},{"division":"","link":"","round":"2","language":"English","topic":{},"content":"THBT every member of the NRA is morally culpable for the level of gun crime in the US.","infoSlide":"","tournamentID":"EkR93MYW52GdWTuVsaKa","id":"E5uhVi3iXCeYbcHTQkfP"},{"division":"","language":"English","round":"5","link":"","content":"THW include debating into school curriculum.","topic":{},"infoSlide":"","tournamentID":"G1nDRe3mbR7XzsaLbAGR","id":"E6dtRk04w0zSjR3Trni0"},{"content":"This House, as the US, would stop all arms sales, military support, and other aid to Saudi Arabia.","infoSlide":"","round":"3","division":"","tournamentID":"wLO2B4MufJ4R3qOzUGM8","language":"English","topic":{},"link":"","id":"E74DSbedbMyLwtfMezu6"},{"topic":{},"division":"","infoSlide":"","tournamentID":"AsoDjVHcLSyKMQmLkB7S","round":"Open_Final","content":"In a parallel universe, there is a planet X which resembles Earth as it existed in the early days of humanity. Their human population face a choice of implementing one of two political systems. Motion: TH, as the human population of planet X, would choose communism over capitalism.","link":"","language":"English","id":"E7EIBJXnsI3E5AfBitLg"},{"language":"English","link":"","round":"3","division":"","content":"This house would end penalty enhancements for hate crimes.","topic":{},"tournamentID":"QZvopTthxxEkyvHXmzp3","infoSlide":"","id":"E7MlIGlzXEf5izqKjtwz"},{"language":"English","division":"","infoSlide":"","topic":{},"link":"","tournamentID":"EP5HDm4G3OfMlciId6YM","content":"This House believes that an approach of Political Expansionism on the part of the Chinese state is in the interests of the Chinese people.","round":"Open_Octos","id":"E7RdGN4KJPxnzDGoozvU"},{"division":"","round":"4","link":"","content":"THW implement universal jurisdiction for environmental crimes.","topic":{},"language":"English","tournamentID":"uES9ygXHa8tJuYB7dFEM","infoSlide":"","id":"E7swEEkEPEyCyGJLVTs9"},{"link":"","round":"Open_Semis","content":"THBT countries should be required to post territory as collateral to receive IMF bailout funds.","infoSlide":"","division":"","topic":{},"tournamentID":"wP5I8OZ057B9BO0Js6MR","language":"English","id":"E7yXj8lmlSND6SpxVqFH"},{"content":"“The premises of this mission should be inviolable. The agents of the receiving state may not enter them, except with the consent of the head of the mission.” Motion: THW repeal Article 22 Subsection 1 of the 1961 Vienna Convention on Diplomatic Relations.","round":"Open_Quarters","infoSlide":"","tournamentID":"tGXgNi0S9KFBe1hUBu15","division":"","link":"","language":"English","topic":{},"id":"E85lwQJoIgKH9Nbb3tMr"},{"division":"","content":"This house believes that educational institutions should never attempt to restrict the freedom of expression of students or staff (except when mandated by law).","link":"","round":"5","tournamentID":"DFNWZhapl7SHDFBrFsMi","topic":{},"infoSlide":"","language":"English","id":"E8pDupv9QMVaHfoAqQ0H"},{"topic":{},"link":"","language":"English","content":"This House Opposes Twitch's decision to ban sexually suggestive content on their platform.","division":"","round":"Open_Semi","infoSlide":"","tournamentID":"0vUzx1fMW06W65BNi8Wn","id":"E95VNRG8yJxzalNPq2LJ"},{"language":"English","infoSlide":"","round":"1","link":"","division":"","tournamentID":"WZCqEhVlkHd8g5WoExVG","topic":{},"content":"Should corporations be forced, in case of layoffs, to always lay off those workers with the best chances on the labour market?.","id":"E9tPrld3wlJ5UL2w9XkI"},{"division":"","infoSlide":"","topic":{"others":{"check":true,"title":"Others"}},"link":"","content":"THW nullify the effect of medical patents in cases of medical emergencies.","tournamentID":"nALUKfkpmOnWnQCzecru","language":"English","round":"","id":"EAAkr1mcVVHFKsL3np1X"},{"link":"","round":"4","infoSlide":"","tournamentID":"sQqCNuWw9nlSsN5agLhC","content":"TH, as Joe Biden, would embrace a Green New Deal.","topic":{},"division":"","language":"English","id":"EBPfgPQZMsCVihcL5F7B"},{"tournamentID":"99Ct9ORyddmNGYGfpDl7","topic":{},"division":"","infoSlide":"","language":"English","content":"THBT parenthood should be by license only.","link":"","round":"1","id":"EBbXGmySoxPJuTHiV8oS"},{"tournamentID":"yOWDiguNGQHwr42mgnqv","link":"","infoSlide":"","round":"Open_Final","content":"THW charge prosecutors who withhold or deliberately lie about evidence in cases where the defendant faces the death penalty or life in prison, with attempted murder.","division":"","language":"English","topic":{},"id":"EBxECJJRyGycAEo0QBD7"},{"round":"2","topic":{},"tournamentID":"oopKRuBfN6tSw3UTWZKT","language":"English","division":"","link":"","content":"THW abolish political parties and only allow election of individuals.","infoSlide":"","id":"ECMfbbefHv4LPW2rmAPg"},{"topic":{},"infoSlide":"","tournamentID":"fzTALe8bGudT9BWcFtDO","content":"THR violent protests.","link":"","division":"","round":"1","language":"English","id":"ECyz6qUq0O8Jw3PIHeWy"},{"content":"THS the right of an artist to absolute posthumour control of their work.","link":"","topic":{},"language":"English","division":"","infoSlide":"","tournamentID":"bvHOR7Oow9PPlKPlA2BT","round":"Open_Semis_3","id":"EDVyWm5Vv333xRDCHrdG"},{"tournamentID":"h5ajoFHOT7mXoe90wbQ3","round":"3","content":"There should be no space missions without United Nations scientific approval.","topic":{},"division":"","infoSlide":"","link":"","language":"English","id":"EDXutOmtwbRi90r8h5zL"},{"content":"Chúng tôi phản đối việc các mạng xã hội khóa tài khoản của tổng thống Donald Trump.","tournamentID":"KE7jdAyW9az9nKVb9FMV","language":"Vietnamese","infoSlide":"","division":"","link":"","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"round":"","id":"EDn1FiVw2KGS9x6g12Rb"},{"topic":{},"link":"","division":"","round":"Open_Final","content":"THBT Saudi Arabia should privatise Saudi Aramco and list it on the NY Stock Exchange.","infoSlide":"","language":"English","tournamentID":"X8TtbynGKBJ2Z158R7Sw","id":"EDuChoQsbXmBhRi2VgOi"},{"infoSlide":"","content":"THBT the ACLU should work to maximize civil liberties regardless of ideology.","language":"English","link":"","round":"Open_Final","topic":{},"division":"","tournamentID":"MNBafFvHXt5WwIet1zGa","id":"EECD02rPOctPj5irq1OX"},{"round":"Novice_Final","link":"","infoSlide":"","tournamentID":"0zMaoLN7qmzWGSYIzhjh","division":"","language":"English","content":"You are a government employee who has found evidence that your state is carrying out actions you personally believe to be gravely immoral. You have no cause to believe these actions are illegal. Motion: THW leak the evidence directly to the press.","topic":{},"id":"EEDzhLJAZCwBDz1VAfH1"},{"round":"","topic":{"sports":{"title":"Sports","check":true}},"division":"","link":"","tournamentID":"nALUKfkpmOnWnQCzecru","language":"English","content":"THP a world where sports serves purely entertainment purposes even at the expense of fair play.","infoSlide":"","id":"EEKt615qrIgorJNHAgBC"},{"tournamentID":"Hpsxcd5Zzu5xq9ehtKkj","topic":{},"infoSlide":"","language":"English","link":"","round":"3","content":"This House believes that all states should create and publish a list of those financial institutions that would be saved by Bail-Out in a crisis.","division":"","id":"EF2tlb3VKoIbNAywvjxj"},{"round":"5","content":"THW fabricate evidence in order to create the impression that historical national heroes had been gay.","tournamentID":"IIWebjlC0qunFyLmEiVa","division":"","link":"","infoSlide":"","topic":{},"language":"English","id":"EF5KWX4QMCZhGNPEZVLB"},{"round":"2","content":"THB the EU and other western powers should join the US embargo against Cuba until it transitions to a multi party democracy.","division":"","tournamentID":"hPTwc7UsLmuGu68x4FDK","language":"English","link":"","infoSlide":"","topic":{},"id":"EFt0vQKcHefWgQZWIEve"},{"language":"English","link":"","round":"2","division":"","topic":{},"tournamentID":"4gQdvZTMKBCThKxmhfmU","content":"THW grant amnesty to dictators who voluntarily leave office.","infoSlide":"","id":"EG88tknggwqMwy3NSKgg"},{"division":"","content":"THBT all erroneous information used in debates should be penalised by judges.","round":"1","language":"English","link":"","infoSlide":"","topic":{},"tournamentID":"KErVXbqRahyWD7ZB1Q1m","id":"EGGWBIudsbJKFzYGjbEj"},{"infoSlide":"","link":"","division":"","tournamentID":"pvKZkg6sqicG5nXA2mvY","content":"THBT NATO should unconditionally offer membership to the states of the former Soviet Union, excluding Russia.","language":"English","round":"8","topic":{},"id":"EGgULzJJPG6BBI6yiSXg"},{"infoSlide":"","content":"THW aggressively fund art in public places, which depicts struggles on which there is no consensus and of which there are continuing consequences.","round":"1","topic":{},"division":"","language":"English","link":"","tournamentID":"O8G3JSrsKEY7mvvg6szT","id":"EH6gyiSM46Qba152QLWY"},{"content":"This house would limit the amount of time that a museum can display a given piece of art to 3 months out of every 10 year period, rather than allow museums to display their works as long as they choose.","division":"","link":"","infoSlide":"","tournamentID":"vS5BTr7lDW40h5Qw31FI","language":"English","topic":{},"round":"4","id":"EHeNVAth3tjgMpx3SUtd"},{"tournamentID":"t2juKb62UT5HJ0kruUAw","infoSlide":"","language":"English","round":"4","link":"","division":"","content":"THW prohibit high-ranking members of the Sri Lankan military and the Tamil Tigers from participation in the election.","topic":{},"id":"EKmSlt3WJDDU8Oja7fzU"},{"language":"English","link":"","content":"State governments should refuse to uphold mandates from the Supreme Court of the United States.","tournamentID":"9yZPq4vkPBjWs9gMF8AS","round":"Open_Final","infoSlide":"","topic":{},"division":"","id":"EKtWNbIgXoZT900ZM0Y4"},{"round":"2","link":"","language":"English","division":"","content":"THW make the State liable for recidivist crimes.","topic":{},"infoSlide":"","tournamentID":"KMhBpmj1LWPj5LN0aFUK","id":"ELPrk7Vrw6KuwcpWRLL4"},{"tournamentID":"ZQbHv8rs6yqxtH8VBbkr","content":"THW allow countries to pay other countries to settle asylum-seekers who reach their borders.","division":"","infoSlide":"","language":"English","link":"","topic":{},"round":"Open_Final","id":"ELUQd8XmEfja6Zbcn0XS"},{"content":"THB LGB people should emphasize their same-sex attraction.","tournamentID":"tKXlShZl2vec49jC1bif","infoSlide":"","topic":{},"division":"","language":"English","round":"1","link":"","id":"EM3PCqfSJrjQe5egxq6v"},{"language":"English","division":"","infoSlide":"","round":"7","link":"","content":"This House, as developing nations, would prioritize local industries over foreign MNCs (e.g. subsidize local car brands and tax foreign imported cars).","tournamentID":"DTutOgCItM4x30SyVavv","topic":{},"id":"EMmRSwAsYlc4d1eW1U0d"},{"link":"","language":"English","division":"","topic":{},"content":"In democracies, THBT pro-welfare politicians should prioritize implementation of UBI over increasing welfare for specific groups.","infoSlide":"Universal Basic Income (UBI) is a governmental program for periodic payments delivered to all on an individual basis without means test for work requirement.","tournamentID":"C09YJyBGrNu3L4IxdHCw","round":"5","id":"EMrcNmsPo5s5uxZcwmv2"},{"topic":{},"round":"3","link":"","infoSlide":"","division":"","tournamentID":"i1HAMqWg9Epu5Ys9FJg5","content":"This House would prefer a world without religious belief.","language":"English","id":"EN9PNhakeqrP2cvChddQ"},{"division":"","round":"Schools_Final","tournamentID":"DIDaTQVu3sv4iXbqf3eE","content":"TH, as a parent belonging to a minority religion, would discourage their children from expressing their faith publicly (e.g. crossing yourself, wearing hijabs, kippahs or other articles of faith, posting on social media, publicly attending mass, synagogues etc.).","topic":{},"language":"English","infoSlide":"","link":"","id":"ENBaXLP4BIX8uQGw78Ln"},{"topic":{},"link":"","round":"Open_Semis","content":"TH prefers a world with a widespread belief in Radical Freedom.","infoSlide":"","division":"","language":"English","tournamentID":"Fu8k3vJxi4iJsdZw9d7j","id":"ENBqWZ5Oj44MpxoGOArw"},{"round":"5","infoSlide":"","topic":{},"division":"","tournamentID":"jfv01DUCOrtLcsyMO6qo","link":"","content":"THW attend the Queer Liberation March rather than the Stonewall 50 March.","language":"English","id":"ENjweWB4XJhsvs1oxOmF"},{"infoSlide":"","link":"","division":"","content":"THBT the state should support home ownership.","topic":{},"language":"English","round":"2","tournamentID":"d0CBbRAyIQhiX69bWaKA","id":"ENlmY12s81JdO6VE2syZ"},{"division":"","round":"Open_Semis","content":"THBT the amount of clothes a person can own should be capped.","language":"English","infoSlide":"","tournamentID":"H4i4RR7JXk14xDRe7PUX","link":"","topic":{},"id":"EOMGVr5zfiUarXjkZttl"},{"topic":{},"language":"English","content":"THBT the works of hip hop legends such as Tupac Shakur, the Wu Tang Clan and JayZ should be taught in schools.","division":"","link":"","round":"Open_Semis","tournamentID":"OAcOsXro6vLkyCebuX4n","infoSlide":"","id":"EOSFe7CW8KuwSEI6LNe2"},{"language":"English","tournamentID":"0anPdjjejinL3DGvB4L1","division":"","infoSlide":"","link":"","content":"THBT the IMF should adopt a policy of not bailing out countries that take out significant loans from China under One Belt One Road.","round":"4","topic":{},"id":"EPvowBkeMX3eHrvEwNGI"},{"tournamentID":"DTutOgCItM4x30SyVavv","language":"English","link":"","round":"3","infoSlide":"","division":"","content":"THW abolish all patents.","topic":{},"id":"EQ5JQt1h69mhmFFXlWDt"},{"content":"THW force theatres that are funded by public money to allow the public to determine its programming.","tournamentID":"FJoy56lyo9s1SqE3RvFO","division":"","language":"English","round":"4","link":"","infoSlide":"","topic":{},"id":"EQ8XmUee6IWQXQAOmX3R"},{"round":"4","topic":{},"infoSlide":"","language":"English","content":"Given the opportunity THW reject immortality.","link":"","tournamentID":"lWGI0B8QpTMEA8NW8UYQ","division":"","id":"EQqNBHPcIM80kOkmamiu"},{"tournamentID":"WZCqEhVlkHd8g5WoExVG","infoSlide":"","content":"Should a state be excluded from the EU when its politics go against the basic values of the EU?.","link":"","division":"","round":"Open_Final","topic":{},"language":"English","id":"ERLnv3jPMrLNpHSUjd54"},{"content":"THW suspend trade union powers and significantly relax labour protection laws in times of economic crisis.","division":"","topic":{},"language":"English","link":"","tournamentID":"yDUOVgl6qLMa2DH8lCD5","infoSlide":"","round":"4","id":"EScjOnRyJnH4zEen9pdh"},{"infoSlide":"","link":"","tournamentID":"BXqPhfwak2R1kYHV48bp","round":"6.1","language":"English","content":"THW ban private schools.","topic":{},"division":"","id":"ESofUGra9aiW36fPqh3F"},{"round":"3","division":"","topic":{},"language":"English","infoSlide":"","content":"TH regrets the rise of Marxism in Latin America.","link":"","tournamentID":"81ULNwgwoeeJz6JyR6aq","id":"ESxbTF6xlNUCGAhvr4b9"},{"division":"","tournamentID":"kwsuFgaQ5lYbaXVGrGal","language":"English","topic":{},"content":"THS ban providing military aid to authoritative regimes.","link":"","infoSlide":"","round":"7","id":"EUpIaDsOCjT2X8ULd73M"},{"link":"","round":"3","division":"","infoSlide":"","language":"English","content":"TH, as a minority parent in North America, would teach their kids not to trust the justice system, or figures of legal authority (e.g. police, judges, state prosecutors, etc.).","tournamentID":"sA03ySqGdgfByNOTfDfC","topic":{},"id":"EXgL8Yn5PPWDNvQjJna1"},{"content":"This house believes that the international criminal court should prosecute crimes against the democratic process.","round":"Open_Quarters","division":"","topic":{},"language":"English","infoSlide":"","link":"","tournamentID":"kFpM1KUkMmDded3L4Zmm","id":"EXylZvV2Ap7aIigc9U52"},{"content":"THW measure gross national happiness and base policy decisions on those measurements.","infoSlide":"","link":"","language":"English","division":"","topic":{},"round":"2","tournamentID":"HlR3H86XBK4mqvL9v5HT","id":"EYH0HD4QKFfoUW3NNDiz"},{"language":"English","round":"","content":"THO the disclosure of the identity of people infected with COVID-19.","link":"","infoSlide":"","tournamentID":"CJKUeBIUibEtZYahoUQV","division":"","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"id":"EZ4LHx29JbqZI4CijQbz"},{"division":"","infoSlide":"","link":"","language":"English","round":"Open_Final","topic":{},"content":"THW give up on climate change prevention and would instead focus on climate change adaptation.","tournamentID":"RPKNKQNkycR35T4aIzhw","id":"EZrnNzecdVOHHflpDYEz"},{"round":"Open_Semi","tournamentID":"DV29K6gIIl6nTiYeWo2j","division":"","content":"As left-wing democrats, this house regrets Joe Biden's decision to choose Kamala Harris as VP Candidate.","link":"","infoSlide":"","topic":{},"language":"English","id":"EaFlfgPpswbS88iaSIOj"},{"link":"","division":"","tournamentID":"4AUWV6dX7gzPml1BbN5u","language":"English","content":"In fighting prostitution, THW criminalize only the demand.","infoSlide":"","round":"2","topic":{},"id":"EaIRcSsxQL0uKwvE8fKk"},{"topic":{},"infoSlide":"","language":"English","link":"","division":"","tournamentID":"KErVXbqRahyWD7ZB1Q1m","content":"THBT parents should advise daughters against heavy drinking to avoid sexual assault.","round":"2","id":"EasqMrh7DLRRiOqHYj5s"},{"tournamentID":"mxxjZaa0262HoUjjXfj8","round":"Octofinals","division":"","infoSlide":"“Armchair activism” refers to individuals sharing and posting content about injustices and social issues happening across the world on social media, without necessarily taking direct action to solve the injustices.","language":"English","content":"THBT ‘armchair activism’ has done more harm than good for the feminist movenment.","link":"","topic":{},"id":"EatfQbkxUyxx1GlWIY4v"},{"tournamentID":"rMtZQSWssQ8170WIyJTX","round":"4","link":"","topic":{},"language":"English","content":"TH supports Greek youth violently protesting against Trojka mandated austerity measures.","infoSlide":"","division":"","id":"EbJSEKokBPpHM5BnOIxz"},{"language":"English","link":"","tournamentID":"TPp4G8lciZrkipphcyZG","content":"THW criminalise all forms of high school bullying (including physical, verbal, written, cyber bullying and boycotting).","infoSlide":"","round":"2","topic":{},"division":"","id":"EbcWiEw1nku1OxnL0qxn"},{"topic":{},"content":"THW limit the amount for new leases to a maximum of 10% above the local rent index.","language":"English","infoSlide":"","link":"","round":"Open_Semis","tournamentID":"LHNbcjmFANvMo9zTZOWN","division":"","id":"EbeoLZVv8AtGRMPuUUPK"},{"language":"English","division":"","link":"","topic":{},"round":"5","content":"THW introduce national quotas for accepting immigrants for EU member states.","infoSlide":"","tournamentID":"SxA6fvGmUbCEyPLjj4Sw","id":"EbuXdIify7I6rpIIE5hL"},{"topic":{},"language":"English","infoSlide":"","division":"","content":"You are a young, liberal, Turkish man in Turkey. Motion: THBT the ban on Islamic veils in public buildings should be abolished.","round":"2","tournamentID":"1cJ1sn6hYwZuN7mUjUE9","link":"","id":"Ec524aPbVUzC2Fmg18bx"},{"tournamentID":"Y8UBPz5agTr6QKYI2kXS","language":"English","division":"","topic":{},"infoSlide":"","link":"","round":"1","content":"THBT parents should not tell their adopted children that they are adopted.","id":"EchYRZYi1sE3oycvnTvW"},{"tournamentID":"9wxPRUMGICTUrE7xSaCG","content":"THBT governments should systematically use subconscious manipulation to nudge citizens towards socially desirable choices.","link":"","division":"","language":"English","topic":{},"round":"Open_Semis","infoSlide":"There is growing evidence from behavioral economics that seemingly trivial alterations in the way decisions are presented can substantially affect choices. For instance, printing smiley faces on the electricity bills of low-usage households decreases their future electricity consumption. As another example, consumers presented with a list of financial choices are more likely to choose items placed near the middle of the list.","id":"EdGsfFsE5LBWRzjzDEoJ"},{"topic":{},"link":"","tournamentID":"C0blbUxGmaQQTDvvJX6D","round":"2","infoSlide":"","content":"Should we establish worker participation (unternehmerische Mitbestimmung) in corporations in all of Europe?.","division":"","language":"English","id":"EephYhTTtjBExSyZPWiT"},{"content":"TH prefers a world in which children are raised to aspire to be single rather than married.","link":"","topic":{},"tournamentID":"MNBafFvHXt5WwIet1zGa","division":"","language":"English","infoSlide":"","round":"Novice_Final","id":"Eese9jTaN8h5Q1zf8ffS"},{"infoSlide":"","language":"English","topic":{},"division":"","link":"","round":"Open_Final","content":"TH regrets the extra judicial killing of Colonel Gaddafi.","tournamentID":"Te8RVa4tAIQJaY0sFp5C","id":"Egm1g5c9b9FcW5yNYXpm"},{"language":"Vietnamese","tournamentID":"nALUKfkpmOnWnQCzecru","division":"","round":"","infoSlide":"","content":"THW removes all laws that relate to filial responsibilities.","link":"","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"id":"Egv1RasEgRPpJUB9auyU"},{"tournamentID":"ltPXjwYNooGAx72v9bz6","language":"English","content":"THS judicial activism.","infoSlide":"","round":"Novice_Final","division":"","topic":{},"link":"","id":"EhSXSneQ2TDBMXWOJIhA"},{"round":"7","link":"","topic":{},"language":"English","tournamentID":"NYyJaJXo1SigW6G8Y1Lm","infoSlide":"","content":"This house would require of police departments that the ethnic composition of their arrests match the ethnic composition of the population in their jurisdiction.","division":"","id":"EiIEDv8XfMx52mP2qq5C"},{"tournamentID":"0DgXee32WEP3hxmGZExS","language":"English","division":"","content":"THW ban the use, in schools, of literature that reinforces traditional gender roles.","topic":{},"infoSlide":"","link":"","round":"14","id":"Ej1OjCHH2bDCQNqnSlWC"},{"language":"English","round":"1","tournamentID":"S2mG18EWYdh2bPEadyd9","topic":{},"infoSlide":"","division":"","link":"","content":"THR the popularity of the \"cop show\".","id":"EjKOElpgVg5wmFsgobxm"},{"content":"THW ban all polls (predicting election results).","round":"1","language":"English","link":"","topic":{},"division":"","tournamentID":"C1d7IlBx1VcZ4eBTl6cr","infoSlide":"","id":"Ejx7824t94O7C5x7uz3s"},{"tournamentID":"d2f6RXp0B99iQq4RFZeE","division":"","content":"THW Partition Syria into 3 countries; Kurds, Sunnis and Alawites.","round":"Open_Final","link":"","language":"English","topic":{},"infoSlide":"","id":"EkDd4Z3VbI9nA09f2Wyl"},{"round":"4","content":"THBT the West should lift all sanctions on Zimbabwe and directly engage with the new government on liberal reforms, as opposed to keeping sanctions and working to bolster the opposition.","infoSlide":"","tournamentID":"yLnbL40w84r9L2K9qxt0","link":"","topic":{},"language":"English","division":"","id":"ElKK6235BBV933RUNFyy"},{"round":"4","tournamentID":"yhJgdE0VFcsqlvWffep1","content":"THW tax earnings over £1million by 75% but allow individuals to decide how the government spends the additional revenue generated by this income.","language":"English","division":"","infoSlide":"","link":"","topic":{},"id":"ElTsNggDsVB8fx6oSJLK"},{"tournamentID":"7Jdvl74EMNCm0P5fq9PJ","infoSlide":"","language":"Vietnamese","link":"","content":"Chúng tôi sẽ cấm các đảng phái chính trị và yêu cầu tất cả các ứng cử viên cho những chức vụ công của quốc gia vận động bầu cử độc lập.","topic":{"politics":{"check":true,"title":"Politics"}},"round":"4","division":"","id":"ElzbA95O9BJwRL9PEjqR"},{"round":"","language":"English","infoSlide":"","content":"THW abolish all requirements and evaluation criteria in higher education (i.e, attendance, exams, assignments).","division":"","link":"","tournamentID":"nALUKfkpmOnWnQCzecru","topic":{"education":{"title":"Education","check":true}},"id":"EmPIojH755DyEhohOmxf"},{"round":"4","link":"","content":"THW ban the private production of pornography and replace it with state-produced pornography that promotes respect and good treatment for women.","topic":{},"division":"","language":"English","infoSlide":"","tournamentID":"tPdF4vGV6F0ucJaSF5md","id":"En51Xq5hrZ59OKNFvIMI"},{"language":"English","tournamentID":"0aaiP0hS7LLjh0VVpofG","infoSlide":"","link":"","division":"","round":"8","content":"\"THW Abolish Libel\".","topic":{},"id":"Enk9XLC6r7prIun6izkM"},{"infoSlide":"","topic":{},"language":"English","content":"This house would place a tax on meat.","round":"3","tournamentID":"mXeF4ypkhHofmXrxLWxA","division":"","link":"","id":"EntfInJg0Him1IAbheeD"},{"infoSlide":"","division":"","link":"","tournamentID":"c74XLjeeNJzVbzpMjGlo","round":"Novice_Finals","content":"THBT when courts sentence offenders, they should give considerable weight to the views of the victims.","topic":{},"language":"English","id":"EoYXDbGs813x0GDlwz33"},{"division":"","content":"TH would allow the “Cultural Defence” in all criminal proceedings.","infoSlide":"","round":"Open_Final","language":"English","topic":{},"tournamentID":"hY7icY7k8fuatysSqMFr","link":"","id":"EqKAgb2GpvPgssaXe2mH"},{"content":"THW criminalise doping in sport.","language":"English","tournamentID":"yhJgdE0VFcsqlvWffep1","link":"","round":"1","division":"","infoSlide":"","topic":{},"id":"EqKU37mQJk8ufv8Tutwu"},{"tournamentID":"rkItJ1M9he5ApXeOVBjJ","topic":{},"division":"","round":"Open_Final","content":"Open Final: THW conscientiously object in situations of war.","link":"","infoSlide":"","language":"English","id":"EqvWNUcOmCFT2gDxbddD"},{"link":"","topic":{},"content":"This House believes that the feminist movement should support the narrative that \"beauty does not matter\" over the narrative that \"all bodies are beautiful\".","tournamentID":"wA1XDLHJESmSgLsfZ9Qe","infoSlide":"","round":"8","division":"","language":"English","id":"Er7jaT5Qegax8nnzpVmH"},{"division":"","link":"","tournamentID":"d13kY0BTy5kVOwwqu54R","round":"5","infoSlide":"","language":"English","content":"THIS HOUSE WOULD Make corporation tax proportional to company wage ratios.","topic":{},"id":"ErGiyhLcwIMka2yJjA07"},{"topic":{},"content":"THS the increasing use of technology in the sex industry. (e.g. sex robots, virtual reality porn).","round":"1","link":"","division":"","tournamentID":"if0ptVr0NjWKFiLehpRT","infoSlide":"","language":"English","id":"ErspvklCfZKAEzVwX8yO"},{"infoSlide":"","content":"THW not negotiate with Hamas.","link":"","language":"English","round":"6","division":"","topic":{},"tournamentID":"zkhDsyR1rpDZXDiA2JUj","id":"Es7OEiP94DAp3YdUM7DC"},{"round":"3","topic":{},"infoSlide":"","link":"","language":"English","tournamentID":"Sf18naS6qmQzDSIMNRFV","content":"THBT Indian feminist movement movements should adopt Lakshmi as a symbol of the movement rather than Kali.","division":"","id":"EsmkRVMxvR8JFDmmgTJK"},{"content":"THW impose a 75% rate of tax on all earnings over €100000.","tournamentID":"3G6HklWR08yKYY0GbDsU","topic":{},"division":"","infoSlide":"","language":"English","round":"4","link":"","id":"EtJutKfNU2KdhU1OH2nq"},{"round":"3","infoSlide":"","link":"","content":"THR the romanticizaion of motherhood.","topic":{},"division":"","language":"English","tournamentID":"TwRuBI9R9WS6estcrif9","id":"Eu5k7cenbfNO3xJNQtTq"},{"language":"English","link":"","topic":{},"round":"Open_Final","division":"","content":"THW help countries with the death penalty to implement it humanely.","infoSlide":"","tournamentID":"TjdO3rhaUn53D48P0jlp","id":"Eu83WwubqpZOgQVCPtMa"},{"division":"","content":"TH supports the use of referendums when deciding whether to permit same sex marriage.","language":"English","round":"Novice_Final","topic":{},"link":"","infoSlide":"","tournamentID":"EHPcBnMOPhSjJDJMUqKQ","id":"EuNIp5JXBW57nLXL6fXU"},{"topic":{},"language":"English","link":"","content":"THW enter the Matrix.","division":"","round":"2","infoSlide":"","tournamentID":"KErVXbqRahyWD7ZB1Q1m","id":"EuNkW7zCrImSlXuEUl45"},{"topic":{},"link":"","language":"English","division":"","content":"THBT Peta should use the surge in human depression rates during the great lockdown, to rally for ending animal captivity.","round":"4","infoSlide":"","tournamentID":"mf3XudZleydnsr0lEvkg","id":"EuvZyIyVymD3lU6kZMkQ"},{"division":"","link":"","round":"Open_Semi","content":"TH, as a feminist hacker, would seek to disrupt tradwife spaces (for example, by methods such as DDos, phishing, defacement).","infoSlide":"","tournamentID":"xwOMY1HAkkxJbFVQIUFJ","language":"English","topic":{},"id":"EvAj8jav6KkHhCKLjQal"},{"infoSlide":"","language":"English","division":"","content":"THW require quotas of female and minority candidates for judicial appointments.","tournamentID":"IliTD9CbISxS4XPApnIH","topic":{},"round":"3","link":"","id":"EvY3xVKhd7cW2ztL3juV"},{"topic":{},"language":"English","tournamentID":"RlKeUHJPWxI30cOSUIu3","content":"This House opposes the commodification of feminism.","round":"Open_Finals","link":"","infoSlide":"","division":"","id":"EvZ2SpyijwjWOxQp6zhP"},{"tournamentID":"nFeuKMAFpK6Amwi6OMai","content":"Should the candidate for Chancellor of a party be elected by all party members?.","round":"2","topic":{},"link":"","infoSlide":"","language":"English","division":"","id":"Evchj77L6p1RlYaS0CZ2"},{"content":"This House Would mandate property developers to build low-cost housing proximate to their high-end construction projects.","tournamentID":"ruG3JCf2Mh62VDkchi11","topic":{},"division":"","link":"","infoSlide":"","round":"2","language":"English","id":"EvegJiwxPiGzhOjRAfCw"},{"content":"THW prohibit sex changes.","topic":{},"division":"","link":"","infoSlide":"","language":"English","tournamentID":"nMUJTA4Krf9MyO7MGVzA","round":"4","id":"Ew2xZQu7a9KsweBNqrgM"},{"tournamentID":"zpoYhp2wK06V8pO2Ljrp","language":"English","round":"2","division":"","topic":{},"link":"","content":"TH prefers a criminal justice system that pursues criminal and civil charges against individuals within companies, rather than fines against the entire company.","infoSlide":"","id":"EwHaoZ0B24wiKmNGzbxo"},{"topic":{},"division":"","tournamentID":"WEotTkb6ok8UfUOl0Lwb","infoSlide":"","round":"4","link":"","content":"Chúng tôi tin rằng Mỹ nên từ bỏ những nỗ lực gây ảnh hưởng lên Biển Đông để tập trung ảnh hưởng lên khu vực Trung Đông.","language":"Vietnamese","id":"EwMEKXfA393pxUmciVm5"},{"language":"English","tournamentID":"av1jBA9UCgf82WNPu88k","infoSlide":"","round":"4","link":"","division":"","content":"THW grant all ethnic Germans a full right of return.","topic":{},"id":"EwaPYNEsDtUCZGBsR7HO"},{"link":"","tournamentID":"1V1INGo8OX49g8hUFTF3","round":"Open_Final","infoSlide":"","division":"","topic":{},"content":"THBT emergent democracies should ban all political rallies and other large public gatherings.","language":"English","id":"Ewxut8r2ZLhofVNT4Z2K"},{"division":"","topic":{},"link":"","infoSlide":"","round":"4","content":"This house would force the religious desegregation of Northern Irish schools.","tournamentID":"kFpM1KUkMmDded3L4Zmm","language":"English","id":"ExDi89Fl0aItj0iqfdFp"},{"link":"","tournamentID":"UlbXxRnvnqr2PXimcFud","language":"English","topic":{},"infoSlide":"","content":"THW compel the Catholic Church to allow women to serve as priests.","division":"","round":"4","id":"ExuK6gT9z4cV8kUixfIr"},{"division":"","round":"2","language":"English","infoSlide":"","topic":{},"link":"","tournamentID":"URJkYB098qcNUnuKdfHJ","content":"TH supports violent revolution in countries with severe economic inequality.","id":"ExumTt7g3ZuXO18mYXzD"},{"tournamentID":"YbdPFTE9FbO3iQjZo87D","topic":{},"language":"English","division":"","infoSlide":"","content":"THBT it is in the interest of dominant organised religions for their leaders to declare more progressive interpretations of traditional dogma* *e.g. on dietary and pilgrimage requirements, the acceptability of contraception, same-sex relationships.","link":"","round":"4","id":"Eyser07o7E2EcoLOGpAy"},{"round":"Open_Final","division":"","infoSlide":"","link":"","language":"English","topic":{},"tournamentID":"dptDC5a1y6D1HClBFEO4","content":"TH supports the end of the Hannibal Directive.","id":"Ez3FYPbXoTMFZGK9TnkF"},{"tournamentID":"1iGKg5a8rDH4ci9OIYEG","division":"","topic":{},"round":"3","link":"","content":"THW ban the practice and use of all alternative therapies.","infoSlide":"","language":"English","id":"EzNVFESIW7VxlDknJNR5"},{"topic":{},"round":"4","language":"English","link":"","infoSlide":"","content":"This house would implement a strict deadline for the length of time that children can be in foster care before being placed in a permanent home (eg returned to birth parents, in guardianship or adopted).","tournamentID":"Nzien6R9RXvOTrNMJsza","division":"","id":"F0WEO6M55pkQx79PwjC2"},{"language":"Vietnamese","content":"Chúng tôi phản đối sử dụng khoa học như là cách lý giải chính về thế giới.","topic":{"philosophy":{"check":true,"title":"Philosophy"}},"tournamentID":"CJKUeBIUibEtZYahoUQV","link":"","infoSlide":"","round":"","division":"","id":"F0b9abNzSU6QEm1Z3KpQ"},{"language":"English","tournamentID":"PhJT1xhigiWcZot2PdLn","round":"1","content":"This house regrets Disney's use of indigenous characters and settings in their films.","link":"","topic":{},"infoSlide":"","division":"","id":"F10s6TFxqyrWFoUdVsZu"},{"content":"THBT environmental advocacy groups should prioritize lobbying governments to change environmental policies (e.g. Cap and trade, banning environmentally harmful chemicals) rather than convincing individuals to take responsibility for their own contribution to environmental damage (e.g. reducing / recycling waste, taking public transit).","division":"","round":"5","link":"","tournamentID":"NtnveNmZosTMD9TU0qA8","language":"English","topic":{},"infoSlide":"","id":"F1XfDlp4gIuEspDcWsjB"},{"division":"","tournamentID":"mHdtWLh0RKp035BRFblm","infoSlide":"","content":"THB the west should not recruit doctors from the developing world.","link":"","round":"1","language":"English","topic":{},"id":"F205swIsHf5GcaK9bpEs"},{"round":"Open_Octos","infoSlide":"","language":"English","division":"","content":"THBT states without the death penalty should never extradite individuals to countries where they may face the death penalty.","topic":{},"link":"","tournamentID":"NBT7RwLHeAApXuOtrQpt","id":"F2PWOEZViwCQF14ZKcle"},{"language":"English","infoSlide":"","tournamentID":"DpY0fOiqQ2FcccIfvmaH","division":"","content":"THW ban all beauty pageants.","round":"1","link":"","topic":{},"id":"F2Uppac7xqP7s7X2FNMy"},{"division":"","topic":{},"link":"","round":"Open_Final","language":"English","infoSlide":"","content":"TH rejects the legitimacy of the state.","tournamentID":"fIr3uLdOpGeGuZzpnEMf","id":"F2jDutgoacc80GqZeILz"},{"tournamentID":"D6zNi4CBrpZnwXUgBuKG","division":"","content":"That the government should regulate automated driving systems (e.g. google driverless cars), so that in the event of a potential accident, the programme makes decisions that prioritise the safety of those outside of the vehicle over that of the passengers within.","round":"3","infoSlide":"","language":"English","topic":{},"link":"","id":"F2ljf6TrwIevznGeMvIB"},{"division":"","topic":{},"infoSlide":"","round":"Novice_Final","link":"","tournamentID":"vURFmLn4wdqX6ZbK0ini","language":"English","content":"thbt the search for new, habitable planets should be prioritized in space exploration.","id":"F3FcSCi8Y8HZylNbsc2v"},{"content":"Chúng tôi tin rằng các quốc gia thành viên của EU nên từ chối lời đề nghị gia nhập của Thổ Nhĩ Kỳ.","topic":{},"round":"2","language":"Vietnamese","link":"","infoSlide":"Sau khi nộp đơn xin gia nhập vào EU vào năm 1987, năm 1999, Thổ Nhĩ Kỳ mới được công nhận tư cách ứng cử viên. Đến năm 2015, Ankara mới có thể bắt đầu tiến trình đàm phán gia nhập với EU. Từ đó đến nay, các cuộc đàm phán về vấn đề này gần như vẫn rơi vào bế tắc bởi giữa 2 bên vẫn còn tồn tại nhiều mâu thuẫn.","division":"","tournamentID":"JaZQ7l5B4R6smBKTdFQJ","id":"F3QQL2z2haNIIuruiI03"},{"infoSlide":"","content":"Assuming Democratic control of the House, THBT the Democrats should prioritize the impeachment of President Trump.","language":"English","topic":{},"round":"5","division":"","link":"","tournamentID":"tGXgNi0S9KFBe1hUBu15","id":"F3ScTO4ZeRQJZaxaQPvs"},{"division":"","infoSlide":"","round":"3.2","topic":{},"content":"THBT bad government comes from too much government.","link":"","tournamentID":"1leOvfvlbNAIDzW6UnkK","language":"English","id":"F3ZGURVhGEHvsKTmAoJL"},{"language":"English","round":"ESL_Final","topic":{},"content":"THW, assuming it was technically feasible, remove the ability of soldiers to feel fear.","division":"","link":"","tournamentID":"NYyJaJXo1SigW6G8Y1Lm","infoSlide":"","id":"F3rbtj94mDVDSpjd4MTT"},{"content":"This house believes that the USA should fund military action by private intermediaries (e.g. paramilitary groups, private military contractors, vigilante groups) against drug cartels in other countries in the Americas.","division":"","language":"English","tournamentID":"1XSX7FHkgfyCn1pjSqbi","infoSlide":"","round":"Open_Semis","topic":{},"link":"","id":"F43IKGlyz9pc3mFpe9d8"},{"topic":{},"content":"This house supports the brave new world.","tournamentID":"TmlbBgqJnPvT2UGB0Lbb","infoSlide":"","round":"2","division":"","link":"","language":"English","id":"F5LfPkvWoQe7Md10DrPQ"},{"infoSlide":"","tournamentID":"zcO3QSYEVhsJojnUCCNl","division":"","link":"","language":"English","round":"5","content":"THW return all ill-gotten artworks and valuable historical artefacts to the communities of their origin.","topic":{},"id":"F6hlbwexFePAcyGVwc2t"},{"topic":{},"division":"","tournamentID":"0FjoYPaEyMvQKDhX7FzX","language":"English","content":"THBT allowing women on front lines is a victory for feminism.","round":"Open_Quarters","link":"","infoSlide":"","id":"F7840tKhwnPaOoTG9yMw"},{"content":"You are a 16th century english Catholic bishop. Henry VIII has established the Anglican Church in opposition to the Catholic Church. You have been invited by the King to join his church as Bishop. That you should join the Anglican Church.","topic":{},"infoSlide":"","tournamentID":"HjQJA65fZ9igHKO8DLAP","link":"","language":"English","round":"Open_Final","division":"","id":"F7kqejUG2gQImBcJgliP"},{"content":"THBT the creation of the Eurozone has done more harm than good.","division":"","link":"","language":"English","infoSlide":"The Eurozone is a currency union consisting of EU member states who have adopted the Euro as their common currency. Its monetary policy is administered by the European Central Bank.","round":"5","tournamentID":"9wxPRUMGICTUrE7xSaCG","topic":{},"id":"F7pM3aUaP3cnKX5006kf"},{"topic":{},"tournamentID":"onvxs89P4PKzVuAFoTHr","division":"","round":"4","content":"This House would make having a women‘s football team a requirement for playing in the English premier league (EPL).","link":"","language":"English","infoSlide":"","id":"F8N5Wcnabulgxagyq3si"},{"link":"","infoSlide":"","content":"Should Sauron become US president?.","division":"","topic":{},"round":"Open_Final","tournamentID":"zkcJOcuUSlxmaS6nsMl7","language":"English","id":"F995nImA0pJJgL9hNJiF"},{"round":"1","division":"","tournamentID":"b3eMPaD8uywgZW5hZca1","topic":{},"content":"THW nationalise all pharmaceutical companies in countries with a national health service.","link":"","language":"English","infoSlide":"","id":"F9AuCNgQUUH9J8hEAtUf"},{"topic":{},"link":"","division":"","language":"English","infoSlide":"","content":"This house as woke liberal parents living in a conservative red state would choose to home school their children.","round":"1","tournamentID":"3thiHP0WT1SpBvjVmMFz","id":"F9TLOIGAuvkmP6WAvQtQ"},{"tournamentID":"BtqBGdAUsTtPKorZOcBX","language":"English","division":"","content":"THBT Barack Obama should not have granted legal immunity to officials who ordered the use of torture.","link":"","topic":{},"round":"8","infoSlide":"","id":"FANcr5ROhmo62rS6AvTw"},{"link":"","round":"3","infoSlide":"","language":"English","content":"THW apply an environmental tax to cheap mass-produced clothing.","division":"","topic":{},"tournamentID":"kM1DLhtxZLQbdLIScfM9","id":"FBJX9vqbPwF5f74RrWNC"},{"content":"This house supports job security legislation.","infoSlide":"","tournamentID":"vS5BTr7lDW40h5Qw31FI","link":"","language":"English","round":"2","division":"","topic":{},"id":"FCoA7Flq3t4lldrAiwQv"},{"tournamentID":"TmlbBgqJnPvT2UGB0Lbb","link":"","round":"Open_Semi","topic":{},"content":"This house would regulate Google as if it were a public utility.","division":"","infoSlide":"","language":"English","id":"FDC0e6XSC5TE0VtEWZ66"},{"tournamentID":"OQmCXCvJatQN0zG3lklx","language":"English","infoSlide":"","link":"","division":"","round":"3","content":"THW phase out fractional reserve banking.","topic":{},"id":"FDZi9OzEV66Wsx8QyBB5"},{"link":"","division":"","topic":{},"tournamentID":"WqXUc7EMDvkqqg3BVCtf","content":"This House would pay all elected politicians the median wage in their country.","round":"1","infoSlide":"","language":"English","id":"FEZuftD9zIIeeRhP03Gc"},{"round":"Open_Quarters","tournamentID":"bH0N4QlKzNNQ8zL97OyO","division":"","language":"English","link":"","content":"THR the societal belief that one should strongly identify with the culture of one's ancestry (e.g. if you are ethnically Chinese, identifying strongly with Chinese culture).","topic":{},"infoSlide":"","id":"FEtupmWjPQ3r066R9dny"},{"round":"3","content":"This House believes that contemporary social movements should focus on class differences rather than on identity-based discrimination (e.g. gender, race).","language":"English","link":"","topic":{},"tournamentID":"oFJV1Acc1Gr7t6B77LSK","division":"","infoSlide":"","id":"FF2LHVAFoQdnBddjgKZe"},{"content":"TH would nationalise SpaceX’s mission to colonise Mars.","round":"3","link":"","language":"English","division":"","tournamentID":"PULmrzx6k00EzEt7BxfG","topic":{},"infoSlide":"","id":"FFwatC8uAwbfCwYFOA6v"},{"language":"English","tournamentID":"DpY0fOiqQ2FcccIfvmaH","link":"","content":"THW abolish the statute of limitations for serious crimes.","topic":{},"division":"","round":"3","infoSlide":"","id":"FGGxeUfrVjfmyuwnD72R"},{"infoSlide":"","round":"2","division":"","link":"","language":"English","tournamentID":"53fI8Yf0j74CAnSOjn9g","content":"THW require meat packaging to display images that vividly and accurately reflect the experiences of the animals throughout the manufacturing process.","topic":{},"id":"FGtouj6s73J85EgEpN8V"},{"content":"THR twitter adding a fact-check function.","infoSlide":"","topic":{},"round":"2","division":"","language":"English","link":"","tournamentID":"xwOMY1HAkkxJbFVQIUFJ","id":"FH7NuRvIl04XIurRmMQY"},{"content":"THW ban working more than 35 hours a week (with no exceptions).","tournamentID":"qQd3HyiFI5fx18xViLoe","round":"5","link":"","division":"","infoSlide":"","topic":{},"language":"English","id":"FHA6cXDrz8uFanxyXeP9"},{"language":"English","link":"","tournamentID":"lleJhm2ki2Ixm97fXI7b","round":"Open_Semis","infoSlide":"","division":"","topic":{},"content":"THBT The death of newspapers and news print media would be a net good.","id":"FHG1V7QocVtP82eFHi9F"},{"topic":{},"infoSlide":"","link":"","division":"","language":"English","tournamentID":"JDfeMpzRWbEVXloSgRZp","content":"THBT post conflict states should not instil nationalism through the education system.","round":"5","id":"FI4bIF9BljlYRV4RE8Gj"},{"content":"THBT charities and humanitarian aid organizations should not use images of graphic suffering in their advertising campaigns.","division":"","topic":{},"tournamentID":"OyqUfVFCTQ5A8iecmNK1","link":"","infoSlide":"","round":"Semifinals","language":"English","id":"FIOdbwR5IMVNjrqo1kwq"},{"division":"","content":"This house believes that every vote in parliament (EU, State…) should be behind the veil of ignorance.","language":"English","round":"Open_Final","link":"","infoSlide":"","topic":{},"tournamentID":"7nPyt59LCWbXBYzvRfL4","id":"FIkvPqUuoR4p4CVGh0Y1"},{"language":"English","link":"","topic":{},"division":"","round":"2","content":"THBT Western Liberal Democracies should drastically reallocate funds from development aid budgets to research into Neglected Tropical Diseases.","infoSlide":"","tournamentID":"8PjX16DCJ3bPRWbiNKNn","id":"FIzRqHiyuMItAs3cpxPj"},{"division":"","language":"English","tournamentID":"hfhyqiLO3boM6Fbp0Jvs","link":"","topic":{},"round":"5","infoSlide":"","content":"In countries with public healthcare, THW not cover life prolonging treatments for the elderly.","id":"FJFlyYUPRts0CakyRSui"},{"division":"","infoSlide":"","content":"HB that sex education classes should include sexual fetishes with the aim of normalising them.","tournamentID":"B63fWPacAJNcBJdaEpVz","topic":{},"link":"","round":"2","language":"English","id":"FKUtob4bcUecoKoAkqpM"},{"division":"","round":"Open_Octos","language":"English","infoSlide":"","link":"","topic":{},"content":"THW lift all sanctions on Iran that target its nuclear program.","tournamentID":"9wxPRUMGICTUrE7xSaCG","id":"FKkoHuP60WYdYUvQoJwj"},{"round":"4","division":"","link":"","infoSlide":"","content":"In the event of the development of a technology that makes the recipient unable to knowingly commit any crimes, This House Would ban the research, production, and use of this technology.","language":"English","tournamentID":"YAsriFfh4M2kLN2FBQPq","topic":{},"id":"FKpGe8uxhtP8p2OKf4Ac"},{"division":"","round":"Open_Final","link":"","infoSlide":"","content":"That, as a liberal democracy, we should heavily restrict our Multinational Corporations from investing in/expanding into illiberal states (e.g. Russia, Turkey, China, Poland).","tournamentID":"XL594Q2oZbvHmfmYKFvT","language":"English","topic":{},"id":"FLAgniorFZjo1qNpY2V7"},{"topic":{},"content":"This house would arm local militia to fight the taliban in Afghanistan.","language":"English","division":"","tournamentID":"kFpM1KUkMmDded3L4Zmm","infoSlide":"","round":"Open_Octos","link":"","id":"FLmRGyRoJ92JVG9bGi9a"},{"content":"THBT States/Provinces/Territories should be able to decide whether to implement federal laws and regulations.","division":"","round":"1","topic":{},"language":"English","tournamentID":"kwsuFgaQ5lYbaXVGrGal","link":"","infoSlide":"","id":"FMA3SLmGFndqLqD8sCeg"},{"tournamentID":"EHPcBnMOPhSjJDJMUqKQ","topic":{},"division":"","infoSlide":"","link":"","content":"THBT search engines should deprioritise search or autocomplete results with sexist, racist or otherwise offensive content.","round":"2","language":"English","id":"FMNhnXIdaqB3IW1eKi7U"},{"topic":{},"division":"","tournamentID":"lgIRNhKweWPgrrSL34Lh","language":"English","content":"THW financially incentivize vegetarianism.","infoSlide":"","link":"","round":"Open_Finals","id":"FMcyQlx86ej03Ykh2P0Z"},{"content":"TH prefers governments to make cash transfers to individuals in recipient countries over government-to-government development aid.","infoSlide":"","tournamentID":"FaXJZrMIEColDcqtOmli","language":"English","round":"2","link":"","division":"","topic":{},"id":"FN4FL18wW8SvNLKp9Ym8"},{"round":"4","link":"","topic":{},"infoSlide":"","tournamentID":"STaEp3vuXBuTT2bP0vgU","division":"","content":"THB in the market economy.","language":"English","id":"FNx1xMmdvuXgNC4LP1nx"},{"language":"English","tournamentID":"FpzYvT6Prqbibn0xYvov","infoSlide":"","content":"THW heavily increase taxes on meat.","division":"","link":"","topic":{},"round":"3","id":"FOfV3pmpS366TIuImHj8"},{"division":"","content":"TH, as Hercules, would go up to the Olympus to live with the Gods.","infoSlide":"","language":"English","topic":{},"tournamentID":"MIEMFyC8nYMlqXU4wtOC","round":"4","link":"","id":"FOwbkpVflb18MR3wLyLp"},{"division":"","content":"THBT police force should have quotas of proportional representation of races.","round":"Open_Semis","topic":{},"language":"English","link":"","infoSlide":"","tournamentID":"z4fwjDZ02juoVx4MeEih","id":"FPTbXJXnfhq2HjxYAMAA"},{"infoSlide":"","tournamentID":"pFBjdI3lKCaS5TpjBKVP","language":"English","link":"","topic":{},"division":"","content":"Assuming the technology exists, this house would allow people to buy and sell years of their life.","round":"Gold_Final","id":"FPf24O46sZzCfGnS3JRO"},{"tournamentID":"mHdtWLh0RKp035BRFblm","link":"","round":"Open_Final","language":"English","content":"TH regrets the existence of mankind.","division":"","infoSlide":"","topic":{},"id":"FQT6RHirsnxWaZb1tVtz"},{"infoSlide":"","language":"English","tournamentID":"V7FJhUQXRQ0Z4dnL94bu","content":"TH prefers a world where romantic love is not the primary consideration in a marriage.","round":"Open_Final","topic":{},"division":"","link":"","id":"FRUYkSyfHkCahoqrzBYM"},{"tournamentID":"683xp6VC99fyKWXfWS9H","round":"Open_Semi","language":"English","content":"TH prefers a world where each believer established their own connection to God,rather than establishing one through organized religion.","topic":{},"infoSlide":"","division":"","link":"","id":"FS4HG96BsolxkaRCGaKE"},{"infoSlide":"","division":"","content":"This house believes that developing nations with ethnically diverse populations should prohibit vernacular schools.","round":"4","tournamentID":"ubSWFCyfoCllO0KSjdjy","link":"","topic":{},"language":"English","id":"FSLTC25zbDdc7AJRd8h5"},{"division":"","content":"THW require all Olympic sponsors to donate equal amounts of money to the Paralympics. [Round 5].","round":"5","tournamentID":"CjeO3WtFoEPJ0YkMQ3T2","link":"","language":"English","infoSlide":"","topic":{},"id":"FSNLC1RXCfOrHUA4xpH1"},{"topic":{},"tournamentID":"6tyiq2GnlmVmI452js6u","infoSlide":"","round":"Open_Final","link":"","language":"English","division":"","content":"This House believes that it is time for the LGBTQIA movement to break up.","id":"FSgxJsQhQ1NunexK3Ydk"},{"division":"","infoSlide":"","content":"THB that independent states in the developing world should be allowed to unilaterally opt to become overseas territories of their former colonial powers.","topic":{},"language":"English","tournamentID":"pjVFBJWiohJyZdRBk33H","round":"3","link":"","id":"FTFjikyg2JLeIRdm80xB"},{"content":"THBT there will be no peace in the Middle East without an independent Palestine.","link":"","topic":{},"language":"English","infoSlide":"","round":"4","division":"","tournamentID":"wuDBbL4uYIZXIthzVv4V","id":"FTRHVr7zBYCKFzHvciZX"},{"language":"English","topic":{},"round":"Open_Semi","infoSlide":"","tournamentID":"Nzien6R9RXvOTrNMJsza","link":"","content":"This house regrets the narrative that one should respect authority figures even if you disagree with them.","division":"","id":"FTXggvwv4LCoLtDMOlBc"},{"tournamentID":"TPp4G8lciZrkipphcyZG","round":"1","infoSlide":"","language":"English","division":"","topic":{},"link":"","content":"THBT the EU should send a single unified team to the next world cup.","id":"FTxtY0tO8rkcLUFjCfQZ"},{"round":"5","language":"English","division":"","topic":{},"content":"THBT in authoritarian countries, individuals who wish to improve their societies should actively seek to join the establishment, as opposed to operating outside the establishment.","link":"","infoSlide":"","tournamentID":"NHUypnZQCfkPD98j8TYR","id":"FULTWqTHUA3sntsWs6Qs"},{"division":"","language":"Vietnamese","link":"","content":"Chúng tôi ủng hộ các công ty độc quyền tại các quốc gia đang phát triển.","tournamentID":"znXRdnU2llK8fXmHlci5","topic":{},"round":"Semifinals","infoSlide":"","id":"FUQClatFft5BqovBHabQ"},{"content":"THR the trend of centring self-destructive/antisocial characters as protagonists in media (e.g. Bojack Horseman, Rick and Morty, Crazy Ex-Girlfriend, Sherlock, Mad Men…).","topic":{},"link":"","division":"","infoSlide":"","language":"English","tournamentID":"Fu8k3vJxi4iJsdZw9d7j","round":"ProAm_Final","id":"FUtkO8PmTVQm8uLfh0x8"},{"link":"","language":"English","tournamentID":"lVzNmdGBefqKp5cetQ6Z","infoSlide":"","round":"1","division":"","content":"THBT all European Football Associations should aggressively redistribute income from successful to less successful clubs within their own country.","topic":{},"id":"FUwp8hIy8XK3rUzDrPBe"},{"tournamentID":"WCy3lEpZMYjWgaZ7Qx1o","link":"","content":"THW break up big tech.","round":"Open_Semi","topic":{},"language":"English","infoSlide":"","division":"","id":"FV1pS3gBZCyAOLs3NB98"},{"link":"","topic":{},"tournamentID":"m6JzV67uYJSVBRpAbgL7","content":"THBT technocrats (highly educated and skilled experts) within authoritarian states should collectively refuse to work with/for the government.","division":"","infoSlide":"","round":"4","language":"English","id":"FWjPi3oZ57ejZDLj96Tu"},{"topic":{},"division":"","link":"","round":"3","tournamentID":"Ryhdb4JOJYP96e5oa49b","content":"THBT the government should have no role in protecting endangered species - Round 3.","infoSlide":"","language":"English","id":"FXTLtyltlcSLNUExzLEI"},{"infoSlide":"","round":"2","tournamentID":"j9tMf10ACsn6VW6vG9gA","content":"THW punish poachers of endangered species in the same way as murderers.","division":"","link":"","topic":{},"language":"English","id":"FYwaxAkxGByR6GVF37hR"},{"division":"","infoSlide":"","language":"Vietnamese","tournamentID":"sIrS2zWJD8m7ibVjvyDN","topic":{},"round":"2","link":"","content":"Chúng tôi sẽ ngừng miễn thuế thu nhập đối với tất cả cơ sở tôn giáo (bao gồm cả tiền lễ, tiền cùng, tiền dịch vụ cũng bái, ...)","id":"FZ4A56oLYHMj4hyzYN26"},{"division":"","language":"English","tournamentID":"jfv01DUCOrtLcsyMO6qo","link":"","topic":{},"round":"2","infoSlide":"","content":"THBT the USMCA should pursue long term economic integration through a common currency.","id":"FZLWt1w1c0yXhzT5kuZG"},{"tournamentID":"0M48sfM68g8U5RgkKD2l","infoSlide":"","topic":{},"round":"Open_Final","link":"","language":"English","division":"","content":"THBT an unregulated Internet does more harm than good.","id":"FZj88bdPoRKtSPsgqi37"},{"division":"","link":"","topic":{},"round":"Junior Final","content":"This house believes that retribution is a legitimate justification for violence.","infoSlide":"","language":"English","tournamentID":"fBPBbh32BZ2p0Y1Fy5Yi","id":"FZvc1OyQlcIbHozYaAH8"},{"round":"Open_Semis","topic":{},"tournamentID":"efp9mMZFiy8fVwkom17I","link":"","language":"English","division":"","infoSlide":"","content":"a 2014 study reported that 19% of trans* people were denied health care by their provider due to their gender identity; 28% experienced harassment in a medical setting; 28% postponed care due to discrimination. Currently,there are approximately 6 doctors in the US and 2 in Canada that perform genital reconstruction surgery. Trans* people may have transition-related needs that create dependency on the healthcare system. Motion: THW establish and fund separate health clinics to provide accessible and comprehensive care to trans*gender people.","id":"Fa2v6q5sqoby2UgheDq8"},{"infoSlide":"","content":"THS local movements in Asia adopting western terminology and strategies to push the cause forward.","link":"","round":"Open_Quarter","division":"","tournamentID":"15hrO4GoCxXF2OIdl7fS","topic":{},"language":"English","id":"Fb8WNFehd89ZbV20e4Vm"},{"infoSlide":"","content":"THBT Western liberal democracies have a duty to militarily intervene in conflicts where large scale human rights abuses are occurring.","topic":{},"division":"","link":"","tournamentID":"655ljihoF4Mh7lzjZruS","round":"Open_Semis","language":"English","id":"FbRMVSZP0MMnEksmdU3Q"},{"infoSlide":"","content":"THW ban conversion therapy to \"cure\" homosexuality (assuming the therapy has a 10% chance of success).","topic":{},"link":"","tournamentID":"xewLQXUxvfe0Xal1qtHM","division":"","round":"3","language":"English","id":"FdrvxYdGYhm5LWQNHR15"},{"language":"English","link":"","tournamentID":"bxhnmh9CZq21XJcRU2BX","topic":{},"round":"7","infoSlide":"","content":"This house regrets the Truth and Reconciliation amnesty process.","division":"","id":"FeJHH0Dxuw8qN0IInKEZ"},{"infoSlide":"","tournamentID":"lItvEbHHU24VVqcwipRq","round":"2","content":"This House would require all voters to attend civic education classes.","division":"","language":"English","topic":{},"link":"","id":"Feca4e5MKdSiqBO0hlU4"},{"division":"","infoSlide":"","language":"English","link":"","topic":{},"round":"2","tournamentID":"6KzwZLwpFJv7ICEsknpO","content":"This house believes that the WTO should allow developing countries to impose policies aimed at protecting domestic industries, even at the expense of harming international trade.","id":"FhSDhmcKGZFfhmYW1tzU"},{"language":"English","link":"","tournamentID":"SJ2vZr9NzMvtMMGarKue","round":"1","infoSlide":"","topic":{},"division":"","content":"THW ban the publication of electoral polls during the run-up to an election.","id":"FhSdDmHL7HptXjOOgFLS"},{"infoSlide":"","division":"","language":"English","topic":{},"content":"THW, as the US, continue to gather information about non-citizens on a large scale.","round":"5","link":"","tournamentID":"bkOT9pwqHsKTlwricRHY","id":"FhYqtNb8JWQpw8j7h5Nb"},{"tournamentID":"5oYH1K5oILZA6OqwhGhz","content":"TH, as the Catholic church, would sell its cultural artifacts in order to fund poverty alleviation.","division":"","link":"","topic":{},"infoSlide":"","language":"English","round":"Open_Semis","id":"FiC8bwlxNg9tF3sMYEG0"},{"content":"THW legalize \"hacking back\" in the private sector.","division":"","language":"English","infoSlide":"","topic":{},"tournamentID":"Z9FMqY7i0SmIcw5xUsUL","round":"Open_Semi","link":"","id":"FiYRSwtrS0Yy1bJxstAa"},{"content":"TH, as the Evangelical Church in Germany, would not baptise children.","link":"","topic":{},"infoSlide":"","language":"English","tournamentID":"rTasJ7TWWuEMSXmebOaC","division":"","round":"4","id":"FjCDM15O63kdiW5VsEm5"},{"round":"Open_Final","tournamentID":"aL5gnSWQ3OQq2Lb3mRix","division":"","content":"THW use NATO forces to defend sites of significant cultural and historical importance from permanent destruction.","language":"English","link":"","infoSlide":"","topic":{},"id":"FjIMgjUfMiCmtvkJXgCq"},{"infoSlide":"","link":"","content":"THW allow the police and intelligence agencies unrestricted access to the internet history and online communications of all citizens.","language":"English","division":"","tournamentID":"jkJhYCzI3XvX3Zgm0Ivc","topic":{},"round":"1","id":"FjLzRh3SD4u2MWqMFvfd"},{"content":"THBT Thailand should abolish the Royal Family’s power over the military.","round":"3","topic":{},"division":"","language":"English","tournamentID":"m97biSF63NO9Jn1yenBI","infoSlide":"","link":"","id":"FjcZKLMjGZURls3sG9OL"},{"tournamentID":"pFBjdI3lKCaS5TpjBKVP","link":"","division":"","language":"English","topic":{},"content":"TH, as someone with hyperempathy, would not take the pill.","round":"Silver_Final","infoSlide":"","id":"Fjf53XsMqZ1MsPVYE5Wm"},{"infoSlide":"","tournamentID":"xm1UErfWKMzGBfeKsba9","language":"English","topic":{},"division":"","link":"","round":"5","content":"THW legalise polygamy.","id":"FkH2aodv64SSiM7qNKRS"},{"topic":{},"language":"English","link":"","division":"","infoSlide":"","tournamentID":"EpANk5V3VQNFWagnktFN","content":"THW allocate every adult a single tradable permit to have one child.","round":"Open_Quarters","id":"Fl8akH9r7T6wh6hWP2Nu"},{"topic":{},"language":"English","infoSlide":"","tournamentID":"ZHpmROZ4G7eY4iB9dTsM","round":"4","content":"THW hold parents responsible for the crimes of their kids.","link":"","division":"","id":"FlvGN41DTf9kxXoec7XV"},{"infoSlide":"","division":"","language":"English","content":"THW subsidise genetical modification on humans.","round":"Open_Final","topic":{},"tournamentID":"tnPBotxO7gOOKcyCXAUw","link":"","id":"Flztv9bxKi0mlb8wPHLU"},{"topic":{},"infoSlide":"","link":"","language":"English","tournamentID":"hfhyqiLO3boM6Fbp0Jvs","division":"","content":"THB that the EU should actively support \"Women on Waves\".","round":"2","id":"FmWLJxkmbh0HJd1J5a63"},{"tournamentID":"j9tMf10ACsn6VW6vG9gA","content":"THBT the expansion in the proportion of the population attending university has done more harm than good.","infoSlide":"","round":"1","link":"","division":"","topic":{},"language":"English","id":"FminwCAAwGyAP63R5RKb"},{"link":"","tournamentID":"FJoy56lyo9s1SqE3RvFO","content":"THW grant patients the full right to inspect records of their own treatment from psychotherapists.","round":"1","division":"","language":"English","infoSlide":"","topic":{},"id":"Fmjgv07Q9w3R8fX4RDxb"},{"content":"THW require post-high school public service.","tournamentID":"XBFpAL1r3TobjAN8vT20","division":"","link":"","infoSlide":"","language":"English","topic":{},"round":"Open_Semis","id":"FnKfavTtBhvnk3nwUSuE"},{"content":"THW produce a telenovella about Ataturk’s life that seeks to glorify Kemalism.","infoSlide":"","topic":{},"division":"","link":"","tournamentID":"DvsGvQWaYzshd3lSsDGu","round":"Open_Final","language":"English","id":"FoORmcNw1B5G7zP4BcFD"},{"language":"English","link":"","round":"2","infoSlide":"","topic":{},"division":"","content":"TH wants the USA to lead a Coalition of the Willing to intervene militarily in Syria.","tournamentID":"sVguH0ZxbQ8C5aNo2rNf","id":"FoTzwpiNk1a00fhkeajr"},{"division":"","content":"THW choose China.","topic":{},"tournamentID":"axWwnyCM8L14pVHljukt","link":"","round":"Open_Semis","infoSlide":"","language":"English","id":"Fom9lz0qOAGSrC413ssu"},{"content":"THW make failure to render reasonable assistance to a person in distress a criminal offence.","infoSlide":"","tournamentID":"W8zmuuOkdBsEHQw2r0RP","topic":{},"round":"5","link":"","language":"English","division":"","id":"FosaUkqUSIblJZGpZdL1"},{"tournamentID":"IliTD9CbISxS4XPApnIH","infoSlide":"","round":"5","topic":{},"content":"THR the rise of hookup apps.","division":"","language":"English","link":"","id":"FoswKf9hSVaPijBJUyDn"},{"round":"1","infoSlide":"","division":"","link":"","language":"English","topic":{},"tournamentID":"0DgXee32WEP3hxmGZExS","content":"THW positively discriminate for women in the armed forces.","id":"FpGJPNM5cDh1bUms3Yk7"},{"language":"English","link":"","topic":{},"round":"5","division":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","infoSlide":"","content":"That we support a permanent move to online tertiary education.","id":"FpNkYJSUrM2BYTwCV7SM"},{"division":"","tournamentID":"1MV3spmbrmWLKhisZDU8","infoSlide":"","round":"6","link":"","topic":{},"language":"English","content":"This House Would remove all criminal penalties for knowingly exposing partners to HIV.","id":"FpVKCUwNhF1VIiwuY7SE"},{"link":"","round":"4","topic":{},"infoSlide":"","language":"English","division":"","tournamentID":"Pt1Z2dTdUinRviVucbZA","content":"That we believe that Andy should have stayed and worked at Runway.","id":"FpduRhNzMvMuJTBoKB9U"},{"division":"","topic":{},"content":"THBT government authorities, being the police, should preserve illegal art as evidence for prosecution of the artists responsible.","tournamentID":"NMqOqSd4sZ95JVU4Dia8","round":"1","language":"English","link":"","infoSlide":"","id":"Fq33OhsEJgtHeTMQIQau"},{"round":"4","tournamentID":"iFjWzR2mR3mBo4zzvGeZ","division":"","content":"THW ban pornography.","link":"","language":"English","topic":{},"infoSlide":"","id":"Fqa4vl24Qp0sXVApY49l"},{"infoSlide":"","tournamentID":"4dzoeUxkRP5WxDaCVtbY","division":"","link":"","topic":{},"round":"4","content":"THW not allow individuals to opt into a one-way mission to Mars with the Mars One Project.","language":"English","id":"Fqmgjg23sPpos1EGQZvm"},{"division":"","content":"A Western democratic nation has recently been the target of a relatively large terrorist attack. That nation has elections scheduled in a week. This house would cancel those elections.","topic":{},"language":"English","tournamentID":"bxhnmh9CZq21XJcRU2BX","round":"4","infoSlide":"","link":"","id":"FrBLHWqA6Q5r43MZta7o"},{"link":"","division":"","infoSlide":"","language":"Vietnamese","round":"5","content":"Chúng tôi lấy làm tiếc sự phát triển của \"Hình sự Giải trí\".","topic":{},"tournamentID":"fBPBbh32BZ2p0Y1Fy5Yi","id":"FrMedvTxuPpbq43exkBV"},{"division":"","topic":{"fiction":{"title":"Fiction","check":true}},"language":"Vietnamese","infoSlide":"Bạn là chỉ huy phòng ngự cứ điểm và phe của bạn đang thua. Tuy nhiên, bạn sở hữu một thứ vũ khí có thể tiêu diệt toàn bộ quân đội đối phương nhưng cái giá phải trả là toàn bộ quân đội của bạn bao gồm cả bạn.","content":"Chúng tôi, với tư cách là chỉ huy, sẽ sử dụng vũ khí đó.","round":"","link":"","tournamentID":"sgcqNV5ntCoa4H8glRBu","id":"FrsrGvzzOrOA4opcD3fG"},{"infoSlide":"","topic":{},"content":"THBT Putin's interventionist role in global geopolitics is contrary to the interests of the Russian people.","round":"3","language":"English","tournamentID":"gmusL4yQ3HD8FyegVRpk","division":"","link":"","id":"FsgmAEao0maImgEvMfz5"},{"division":"","infoSlide":"","round":"1","language":"English","tournamentID":"0aaiP0hS7LLjh0VVpofG","link":"","topic":{},"content":"\"THW Remove all State Funding from RTE\".","id":"FtBdVTfIq8V0FrEwnGYL"},{"round":"5","division":"","topic":{},"infoSlide":"","tournamentID":"1wIdZYeTVkyLU5yJfjda","content":"Should people with prostheses be allowed to participate in regular sports competitions, even when the prostheses could be considered advantageous?.","link":"","language":"English","id":"FtTJFlAqEHHgg3XkDAeB"},{"infoSlide":"","language":"English","round":"Open_Final","link":"","division":"","content":"THW require companies to make the salaries of all their employees publicly available.","tournamentID":"IKVZuvI9noj2HK4GNxgS","topic":{},"id":"Ftrlnrks8H3hJTcIKMZg"},{"topic":{},"link":"","division":"","infoSlide":"","content":"TH, as a religious leader, would deny membership to politicians who vote contrary to our religious teachings.","language":"English","tournamentID":"mUHCV4981T5cYALNdYBk","round":"Open_Semi","id":"FttOosKq6rjkGGY5hxo3"},{"infoSlide":"","language":"English","division":"","content":"This house believes that juries, not judges, should be entirely responsible for sentencing decisions.","link":"","topic":{},"tournamentID":"bxhnmh9CZq21XJcRU2BX","round":"8","id":"FuAlSIqMdsra9lSMRzwA"},{"content":"THW abolish juries in all criminal trials.","tournamentID":"lWGI0B8QpTMEA8NW8UYQ","link":"","division":"","topic":{},"language":"English","round":"3","infoSlide":"","id":"Fukrvk1JLQ4prrG4X9R1"},{"language":"English","link":"","infoSlide":"","content":"This House would abolish primary and secondary school grades/years that group children based on age, and instead group them by competency and intelligence.","round":"9","topic":{},"tournamentID":"wA1XDLHJESmSgLsfZ9Qe","division":"","id":"Fv2kiQT4O8pXkbgrsXKM"},{"division":"","infoSlide":"","content":"THBT no further research should be done on the creation of Lethal Autonomous Robots.","link":"","topic":{},"language":"English","tournamentID":"xewLQXUxvfe0Xal1qtHM","round":"4","id":"FvDqIkNzOzcun673WJnj"},{"infoSlide":"","language":"English","round":"Open_Semis","tournamentID":"aWnK845Eg0cHNR0VZu3e","link":"","content":"THW make the use of conscripts in active combat a war crime.","topic":{},"division":"","id":"FvXoxcETUPwDohYTMf2D"},{"division":"","link":"","infoSlide":"","topic":{},"tournamentID":"gDONpxWgr0bu13hZzxYr","content":"THBT individuals have a right to a basic income regardless of capacity or willingness to work.","language":"English","round":"Open_Semis","id":"FvbLdi8j5uKEyVlsG9Lj"},{"link":"","content":"THBT professionals should have the right to refuse to provide their services based on religous grounds.","division":"","tournamentID":"CLp8pjuIm6vddMdiBEC5","round":"Novice_Final","language":"English","topic":{},"infoSlide":"","id":"FwbRUw0vrF1KyBZ5Ghon"},{"division":"","round":"1","link":"","language":"English","content":"THW ban religious K-12 schools.","infoSlide":"","topic":{},"tournamentID":"wKhC6L9zPycGKlqYWb6j","id":"Fwv2tJB2hqtoNdJJPBMq"},{"language":"English","division":"","topic":{},"round":"4","infoSlide":"","content":"This House believes that Western Liberal Democracies should boycott the 2018 FIFA World Cup in Russia.","tournamentID":"QZvopTthxxEkyvHXmzp3","link":"","id":"FxNqENVAJ3DyYui03H1t"},{"topic":{},"infoSlide":"","content":"THBT technocrats (highly educated and skilled experts) within authoritarian states should collectively refuse to work with/for the government.","tournamentID":"m6JzV67uYJSVBRpAbgL7","language":"English","link":"","division":"","round":"3","id":"FxPuxZfLlFQskZnwqgOj"},{"link":"","infoSlide":"","topic":{},"round":"Open_Partial_Quarters","division":"","content":"THR the Negative Connotations Surrounding Creating Art for the Primary Purpose of Profit.","tournamentID":"qLVUbjlIT84ro50ixBwk","language":"English","id":"FxzIFsxNkM4wIn5nvpB7"},{"topic":{},"tournamentID":"7l98EUanZ85SaCAlZg2X","content":"THBT people should never \"go above and beyond\" in the workplace.","round":"4","division":"","infoSlide":"","language":"English","link":"","id":"Fy5x7nN7A5MAGRIoIR72"},{"content":"This house would euthanise all people on their 80th brithday.","link":"","division":"","infoSlide":"","topic":{},"round":"Open_Final","tournamentID":"XryJ0KVA6GiVngJthv3K","language":"English","id":"FyIUoh6tZ5x8AaAMhkdR"},{"language":"English","round":"5","infoSlide":"","link":"","tournamentID":"GEF7QfNpKGwIZtimYEsL","division":"","content":"THW encourage feminists to troll, meme, and shame the patriarchy.","topic":{},"id":"G0fWJsBuSw8XwxsEzsQg"},{"language":"English","round":"Open_Semis","division":"","topic":{},"tournamentID":"6SkyoBySWDSJCqeHrA9S","infoSlide":"","content":"THW allow defendants to choose between a judge or a jury.","link":"","id":"G0lt12ArRkiKmLM2Nvxs"},{"infoSlide":"","topic":{},"division":"","tournamentID":"JHo8pIpzQxzUKHUwVDFf","language":"English","round":"2","link":"","content":"THBT schools should replace the teaching of established classic literature (eg. works of Shakespeare, Fitzgerald etc.) with contemporary literature (eg. Harry Potter, Hunger Games, John Green books, etc.)","id":"G1pPMhSHfBC6KuNycdSh"},{"division":"","language":"English","link":"","content":"TH would introduce a mandatory term of at least 1 year of non-military national service for 18year olds.","tournamentID":"WqXUc7EMDvkqqg3BVCtf","infoSlide":"","round":"ESL_Semis","topic":{},"id":"G26lC2JcxBAsDdgfz2k9"},{"infoSlide":"","link":"","content":"THBT testing on animals is immoral.","topic":{},"tournamentID":"b9wXoxHWMOjvJu54cv9Q","division":"","language":"English","round":"4","id":"G2RxstNQcm7msJZs1cMX"},{"topic":{},"link":"","language":"English","content":"THW abolish gender categories for the awards in culture.","round":"3","infoSlide":"","tournamentID":"HbzzxzNaEfw54UvTulVq","division":"","id":"G3ABhZ9QW5K8OQ9AKzjI"},{"language":"English","division":"","tournamentID":"92dIEXeOXUVvlcFeGCIr","link":"","round":"5","topic":{},"content":"THBT the US should withdraw from East Asia and cede regional hegemony to China.","infoSlide":"","id":"G4L9TW2Ulj33sYVgHiqv"},{"infoSlide":"","language":"English","content":"THBT in developing countries aid organisations should be banned from religious proselytyzing.","link":"","tournamentID":"aVcqgGmAccQ09iBh9iS1","division":"","round":"2","topic":{},"id":"G58WyVrK5dzjbU6Q4luR"},{"round":"2","division":"","content":"TH regrets the strong social norms in favour of lifelong monogamy.","infoSlide":"","topic":{},"link":"","language":"English","tournamentID":"xQkVRRUcXZJgGzxXZ2t0","id":"G6MEKQnA1wFnVIWl7cC9"},{"content":"This House Believes That academic journals should not publish articles that characterize colonialism as positive.","topic":{},"division":"","round":"5","language":"English","tournamentID":"MKOx1AvBmfWL7cHrRXg2","infoSlide":"","link":"","id":"G6m9oiX2OO79g3PdteNs"},{"infoSlide":"","link":"","round":"Open_Final","content":"People in Groningen should stop complaining (probably referring to gas drilling in the province).","tournamentID":"y6twZcPBW4VtQsAZQ3Mw","division":"","language":"English","topic":{},"id":"G6o7V35k4TgxTaGFVXUj"},{"content":"TH, as the Catholic Church, would prioritize impact investing over direct charity to communities.","topic":{},"link":"","division":"","tournamentID":"fzLPoPRlME1NEcvf7oVd","language":"English","round":"Open_Octa","infoSlide":"","id":"G7EqGu9Ohe8mVNUkPvxK"},{"tournamentID":"zcO3QSYEVhsJojnUCCNl","link":"","language":"English","infoSlide":"","round":"Novice_Final","division":"","topic":{},"content":"THW not give jail time to criminals who do not pose an ongoing violent threat to society.","id":"G7Ql3xqCjzxxRRedNf38"},{"infoSlide":"","topic":{},"round":"2","language":"English","content":"TH, as an activist residing in Hong Kong who holds a BNO passport, would take up the deal being offered by UK.","division":"","tournamentID":"1bBjpR84rI88s6EveWzm","link":"","id":"G7aa3hdCZJboXoSDEmQf"},{"language":"English","link":"","round":"Open_Final","content":"That we regret the rise of decentralisation agendas in developing countries.","topic":{},"tournamentID":"XL594Q2oZbvHmfmYKFvT","division":"","infoSlide":"","id":"G7t4zF4jbtqTXSf2SYRq"},{"language":"Vietnamese","round":"3","topic":{},"infoSlide":"","division":"","content":"Chúng tôi tin rằng các nhóm hoạt động vì môi trường nên tập trung gây sức ép nắm bắt các tập đoàn lớn chịu trách cho tác hại của họ lên môi trường thay vì khuyến khích người tiêu dùng có ý thức hơn về bảo vệ môi trường.","link":"","tournamentID":"BPe1MqSgmLovUz7nghmX","id":"G85w4Duqy8hPR5n0ul0V"},{"link":"","infoSlide":"","round":"1","tournamentID":"miNjiX9yX5Oq25V4yWeo","content":"THW outsource the capture of elusive criminals to bounty-hunters.","language":"English","division":"","topic":{},"id":"G8FSoMJmVcm9kJ3iW81E"},{"topic":{},"infoSlide":"","link":"","round":"2","content":"That the Star Wars sequels are better than the Star Wars prequels.","division":"","language":"English","tournamentID":"Pt1Z2dTdUinRviVucbZA","id":"G8sjbzICikYGmccwliUk"},{"language":"English","tournamentID":"7lMrN2aiwSzD5rzPFwHz","infoSlide":"","topic":{},"round":"3","content":"THW bring back public corporal punishment for smaller crimes.","link":"","division":"","id":"G9mLKopN6QXpEU3J9ueJ"},{"division":"","infoSlide":"","content":"THW give up.","tournamentID":"jS13nU6Cack3rcPrnNZ5","link":"","topic":{},"round":"2","language":"English","id":"GA5VM21HLtcolK222tIk"},{"content":"THW censor any music which promotes derogatory attitudes towards women.","link":"","infoSlide":"","language":"English","round":"1","topic":{},"division":"","tournamentID":"Gx29hnXeBrSjBZrrDKx8","id":"GB0h6zYsPTdOjVJQxPTU"},{"tournamentID":"mXeF4ypkhHofmXrxLWxA","topic":{},"language":"English","content":"This house would abolish the Second Amendment.","round":"Open_Semis","link":"","division":"","infoSlide":"","id":"GBElx6Cbw4whqwXe9xne"},{"tournamentID":"1bBjpR84rI88s6EveWzm","round":"Open_Semi","language":"English","link":"","infoSlide":"","topic":{},"content":"THBT the IMF should require collateral for bailouts.","division":"","id":"GBfmD2zS0T1SJ1tUe3Co"},{"link":"","tournamentID":"QVeTcZONRdDbH5LSNeSf","infoSlide":"","division":"","content":"THBT states should take active measures to limit the spread of American pop culture.","round":"2","language":"English","topic":{},"id":"GBxBHi7rxN3iCtGbh6Zl"},{"link":"","division":"","round":"Open_Semis","infoSlide":"","tournamentID":"WnH3YWwA4xB4HPfqIqea","language":"English","content":"THW allow individuals to sue religious organizations for compensation for the harmful effects of choices made as a result of adherence to religious doctrine.","topic":{},"id":"GCKPXUCYLQhlzrctW0jk"},{"link":"","content":"THBT governments should not condition COVID-related bailouts of the private sector on major corporate reforms (e.g., limiting executive compensation, banning corporate stock buybacks, restrictions on lobbying, increased environmental regulation, etc.).","topic":{},"infoSlide":"","tournamentID":"81tUVTFSIzBinbpptw4G","division":"","round":"Open_Quarters","language":"English","id":"GCWTY1ZrgyZWcF7vKGy4"},{"infoSlide":"","round":"4","content":"THBT the government should offer cash compensation for the creation of pharmaceuticals to replace the patent system for pharmaceuticals.","division":"","tournamentID":"pu7FduCxL7IOOrWe0ypf","language":"English","topic":{},"link":"","id":"GDcchE3NBUuYQe4ERiXK"},{"tournamentID":"pF81od0IQBmQsiQKDxoc","content":"THBT it is legitimate for nations to destabilise the governments that are complicit in the production of hardcore narcotics.","infoSlide":"","link":"","topic":{},"language":"English","round":"4","division":"","id":"GDrBW8h0pbU9WEx3lLPk"},{"round":"Open_Quarters","link":"","infoSlide":"","division":"","language":"English","content":"THBT the Republican and Democratic parties should select congressional, senate and presidential candidates through a vote by the party leadership rather than through primaries.","tournamentID":"4XkvQJQxtOHIIF6sH97v","topic":{},"id":"GDtVRI7m0S1NQ4gkGGHq"},{"topic":{},"content":"THBT it is preferable to be single, than pursuing a successful long-term monogamous relationship.","language":"English","infoSlide":"","tournamentID":"nKWTDNECNNvbMxNcdVJM","division":"","round":"Open_Final1","link":"","id":"GE1bcaL2EPl2WnShyV6w"},{"language":"English","tournamentID":"p3EOrIRx2qBcnN8fXbHh","infoSlide":"","link":"","division":"","round":"2","topic":{},"content":"THBT authors who belong to historically oppressed peoples should only write in their native languages.","id":"GEcAMg9X4CoJfcMU8Ysh"},{"tournamentID":"zngB1WF8viOW2uGu6swZ","round":"7","division":"","content":"TH supports the free movement of labour worldwide.","infoSlide":"","language":"English","topic":{},"link":"","id":"GEdv7sDLcJqwAkLFgo1x"},{"tournamentID":"1bHNYzF6GWRqdpr3f5vt","language":"English","infoSlide":"","link":"","round":"Open_Semi","division":"","content":"That King Abdullah al-Haj should have called a snap election in Malaysia , rather than appointing Muhyuddin Yasin as Prime Minister and allowing the current members of the Dewan Rakyat (lower house) to form a new governing coalition.","topic":{},"id":"GGHcmofhkJeiSNIUTPja"},{"link":"","content":"THW rather invest in nuclear energy than in “green” (renewable) energy.","division":"","topic":{},"infoSlide":"","tournamentID":"rmnZcOUQU2iED2r3pXca","language":"English","round":"2","id":"GGYmvoaIcmZul43H2vqL"},{"language":"English","round":"2","link":"","topic":{"education":{"title":"Education","check":true}},"content":"THW pay additional benefits to families on welfare according to their child’s performance in school.","division":"","infoSlide":"","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","id":"GH6DK74WbyFF4fTJerN9"},{"tournamentID":"cDgGdE6ESpUqp2A2gVLj","division":"","language":"English","round":"3","infoSlide":"","link":"","topic":{},"content":"THBT states should be legally liable for recidivist crimes (inexact wording).","id":"GIDbb7J4hMUvM9mCk9by"},{"division":"","tournamentID":"UfGg9gZEXlU744RWE1Y1","link":"","infoSlide":"","round":"1","content":"TH regrets the rise of social media as a primary source of news distribution.","language":"English","topic":{},"id":"GIEBmr9uhiMuSa7RiQ2H"},{"round":"3","infoSlide":"","link":"","topic":{},"content":"TH opposes the popularisation of BDSM.","language":"English","tournamentID":"TN94ucwzVJ2xKpp2fcrc","division":"","id":"GISOwAWeoUYqkoIQFP77"},{"round":"Open_Semis","topic":{},"division":"","language":"English","content":"THB the state should lace water supply with a chemical that homogenises people's intelligence to the intelligence level of an average uni graduate.","link":"","infoSlide":"","tournamentID":"HcngLxXLU8ahxFRQkeYc","id":"GJFi6Dv5L3TbhDQ5NKO7"},{"round":"2","language":"English","infoSlide":"","tournamentID":"TtPU6Lwr9qKhUvLMeyVD","topic":{},"division":"","link":"","content":"THBT all EU countries should set the bar of entry to their parliament in such a way that would ensure a two party system.","id":"GJNrixaAMB7TcDnA1aXD"},{"link":"","language":"English","round":"1","topic":{},"division":"","content":"This House Would allow the use of performance enhancing drugs in professional sport.","infoSlide":"","tournamentID":"0vUzx1fMW06W65BNi8Wn","id":"GJZLU50aGTUWwNO5n5Jm"},{"language":"English","topic":{},"content":"THO the buying and selling of emotional services.","infoSlide":"","division":"","link":"","round":"4","tournamentID":"o85wPSMfUIKlsHQtkpnr","id":"GJfwzXnmDqLUW16QxInb"},{"language":"English","link":"","topic":{},"round":"2","tournamentID":"OY8sAGz8SAjQpWA2PicY","division":"","content":"THW, as a parent of a young woman, advise her to drink responsibly to reduce the risk of them being sexually assaulted.","infoSlide":"","id":"GJlTOuhLO6mVYOCeA6O5"},{"language":"English","round":"Open_Semis","tournamentID":"0zMaoLN7qmzWGSYIzhjh","infoSlide":"","link":"","topic":{},"division":"","content":"THW abolish private property.","id":"GKRuDwr5HQD1Cgw4svtx"},{"tournamentID":"CLp8pjuIm6vddMdiBEC5","content":"THW actively relocate unemployed people living in areas of high and structural unemployment.","link":"","topic":{},"infoSlide":"","division":"","round":"3","language":"English","id":"GKlpccifWmtaKphcgZei"},{"division":"","language":"English","link":"","infoSlide":"","content":"THR the perception of soldiers as heroes.","tournamentID":"qQd3HyiFI5fx18xViLoe","round":"Open_Final","topic":{},"id":"GLD81AIRReTiK4WnyTQ2"},{"round":"2","infoSlide":"","content":"TH, which is the US, would stop the use of armed military drones in pakistan.","language":"English","tournamentID":"D9jVXR7QB0BrNFTW3MDz","link":"","topic":{},"division":"","id":"GLEvEntUN3OgRsdNJpRm"},{"content":"TH as Bernie Sanders would run as an independent candidate.","tournamentID":"Ns60Gy3xxrtFcpflRpTk","division":"","topic":{},"round":"2","link":"","infoSlide":"","language":"English","id":"GLEweo51nw6eLwH4Upge"},{"tournamentID":"H4i4RR7JXk14xDRe7PUX","division":"","link":"","topic":{},"infoSlide":"","round":"2","language":"English","content":"THW introduce correct porn viewing lessons in schools.","id":"GLQcwdRFs8hvUrEySFiN"},{"content":"THR that companies such as Facebook and Apple have offered to pay for elective egg freezing for their employees.","language":"English","link":"","topic":{},"infoSlide":"","division":"","tournamentID":"DXCgscK3BkzAJGRnyZpD","round":"3","id":"GOgcrju4MYOMD7yt4ZKe"},{"language":"English","tournamentID":"D9jVXR7QB0BrNFTW3MDz","link":"","division":"","infoSlide":"","round":"3","topic":{},"content":"THW offer financial incentives for bringing in elusive criminals.","id":"GPL2p08lPrk6WYgBi239"},{"content":"This House believes that voters should always vote on policy and principles regardless of electability in all elections (general, local, or party leadership).","division":"","round":"3","link":"","tournamentID":"jpLuasMJYB40s1bJk2Ia","infoSlide":"","language":"English","topic":{},"id":"GPk8ooFQtcfXMMPieAOk"},{"tournamentID":"qQd3HyiFI5fx18xViLoe","language":"English","round":"1","division":"","topic":{},"link":"","content":"THS the use of signature strikes as part of American military policy.","infoSlide":"","id":"GPuE2Ow4VppZ4tdInNb7"},{"round":"9","division":"","infoSlide":"","link":"","topic":{},"content":"“THB it's Abhorrent for Western Countries to Employ Doctors from the Third World”.","tournamentID":"5ETrS816OeSAWdPhWEHf","language":"English","id":"GQBka8AayvXqurWDsCjq"},{"division":"","topic":{},"round":"Open_Semi","link":"","language":"English","infoSlide":"","tournamentID":"pgslzxqwnT5Ei6UMGh69","content":"This House Believes That acts of political protest that intentionally result in the death of an individual protester should not be stopped by others (for example: self immolation, in protest of Tibet).","id":"GQfk5KHVGvlbCfAwbfaA"},{"link":"","topic":{},"infoSlide":"","division":"","content":"TH regrets virtue signalling on social media.","round":"1","tournamentID":"Q8FD3CioEeXKgMlwBG6R","language":"English","id":"GRS8B8HOfNsyF2HEDqOz"},{"topic":{},"language":"English","division":"","content":"THW ban religious based rehabilitation programs, regardless of how effective they may be.","link":"","infoSlide":"","tournamentID":"mHdtWLh0RKp035BRFblm","round":"3","id":"GRkowRI2kpU42RI2VWJ9"},{"topic":{},"link":"","tournamentID":"yZaksTbsPteB6mPHwkvl","infoSlide":"","division":"","round":"Open_Final","content":"THW destroy the evidence.","language":"English","id":"GT1tmFLmXh0a2np6PecM"},{"link":"","tournamentID":"Pt1Z2dTdUinRviVucbZA","round":"ESL_Final","language":"English","division":"","topic":{},"content":"That, as Morty, we would sever ties with Rick.","infoSlide":"","id":"GTLlImw7pwZAJEVbfEO7"},{"round":"1","division":"","language":"English","tournamentID":"IIWebjlC0qunFyLmEiVa","content":"THS state-provision of cosmetic surgery and surgical enhancements.","link":"","topic":{},"infoSlide":"","id":"GTQuAqMdVspXNB1JXCuN"},{"topic":{"education":{"check":true,"title":"Education"}},"content":"Chúng tôi phản đối sự tư nhân hóa các trường chuyên.","infoSlide":"","link":"","tournamentID":"37eWQ7OoHqsPgaN53lHV","language":"Vietnamese","round":"","division":"","id":"GTyqdLpWXqB5xnmGtYfw"},{"tournamentID":"3Gl2F99bU3ZHa2ZjcrUR","language":"English","division":"","content":"THW require a turnout quota be met to legitimize elections.","topic":{},"round":"1","link":"","infoSlide":"","id":"GU6vRApRSDClB6TkJ45r"},{"language":"English","tournamentID":"n7qv29PmNuF5SOe42oiz","infoSlide":"","round":"Open_Octo","content":"That the public, via referendum, should be given the power to pardon/give amnesty to whistleblowers.","topic":{},"division":"","link":"","id":"GUM1BrrscI2TxeTTuOfv"},{"round":"3","content":"This house believes New Zealand should implement a tax on carbon emissions.","link":"","topic":{},"division":"","infoSlide":"","language":"English","tournamentID":"inOeJRfxqTpVMfq0i7Ze","id":"GUM1TjeNb0zv8IS1Q5Pd"},{"content":"THBT environmental agencies should start a campaign of sabotage and destruction against major pollution companies.","language":"English","division":"","tournamentID":"BtqBGdAUsTtPKorZOcBX","topic":{},"infoSlide":"","link":"","round":"ESL_Semis","id":"GV7RZ4tYL2cW2bAE8ymS"},{"division":"","content":"THR the widespread belief that motherhood is a rewarding experience.","tournamentID":"XnmecTVfWWNVfWZaANER","topic":{},"link":"","language":"English","round":"3","infoSlide":"","id":"GVMJy29wevZqwowQVfKg"},{"language":"English","content":"THW ban online dating sites.","division":"","topic":{},"infoSlide":"","tournamentID":"nMUJTA4Krf9MyO7MGVzA","link":"","round":"9","id":"GVZyB8Fcxu4MppnfPlAK"},{"tournamentID":"4Nqwg2GbRwaUJ5LaWcSt","infoSlide":"","topic":{},"content":"in developing nations, thbt workers should be allowed to trade off their employment benefits (eg pensions, health insurance, protections from labor laws) in exchange for higher wages.","division":"","language":"English","link":"","round":"3","id":"GW3RcxPGH8OetCC2yhsx"},{"tournamentID":"9yPqE2fe1oaHsd7ankOa","language":"English","division":"","round":"2","link":"","infoSlide":"If a car with a passenger inside had to pick between running into A, a motorist (which would cause grave injury to 1 motorist) vs into another car B with 5 people inside, the latter scenario would probably run into A.","content":"In a world where self driving cars exist, THP, that in cases of accidents when some damage is bound to occur, self driving cars be programmed to outsource the decision to the human driver (the car would not make a mathematical harm calculus), over picking the outcome that causes the least numerical human harm.","topic":{},"id":"GWIhiaRdg8m0dXpc4ZIE"},{"language":"English","link":"","topic":{},"infoSlide":"","tournamentID":"H4i4RR7JXk14xDRe7PUX","content":"THW allow long-time cheated spouses to sue the third party for damages.","division":"","round":"5","id":"GYLM6Wvi8rqGaEuW7uIm"},{"topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"language":"Vietnamese","content":"Chúng tôi phản đối quan niệm rằng văn hóa đại chúng hướng đến trẻ em nên có kết thúc có hậu.","link":"","division":"","infoSlide":"","round":"3","tournamentID":"Wpv6iXJkIPUXYIkl0dST","id":"GYNJPKzQKLWWGDtbLXN4"},{"tournamentID":"3B01KdqnCVzQEVjKcHiT","round":"","division":"","topic":{"irw":{"check":true,"title":"International Relations/War"}},"infoSlide":"","link":"","language":"English","content":"THB educational institutions in developed countries should publicize their academic documents to developing countries.","id":"GYp7YWZJbFYhR4tx0nk1"},{"link":"","topic":{},"content":"THS the overthrow of democratically elected, authoritarian heads of state.","infoSlide":"","round":"5","language":"English","division":"","tournamentID":"wP5I8OZ057B9BO0Js6MR","id":"GZJSWIJoisflh9KtY8bj"},{"language":"English","tournamentID":"3XjkQ3xKYDnPNq07ZvXY","link":"","infoSlide":"","topic":{},"division":"","content":"THW abolish state primaries in US presidential elections.","round":"Open_Semis","id":"GZWt1o7nMyxI2BvteyTs"},{"topic":{},"division":"","round":"4","infoSlide":"","link":"","language":"English","content":"In Northern Ireland same sex marriage is illegal. Northern Ireland only permits abortions if the continuance of the pregnancy is proven to threaten the life of the mother. THW automatically extend Westminster Policies on Human Rights and anti-discrimination issues to Northern Ireland. This includes, but is not limited to, same sex marriage and abortion.","tournamentID":"3XjkQ3xKYDnPNq07ZvXY","id":"GaDryY0AvKEkWPhJg6Qg"},{"link":"","language":"English","infoSlide":"In the context of anti-terrorism, decapitation refers to the strategy of targeting terrorist leaders for assassination.","round":"Open_Final","division":"","tournamentID":"uES9ygXHa8tJuYB7dFEM","content":"THBT governments should abandon the strategy of \"decapitation\" in fighting terrorism.","topic":{},"id":"GbJA8KAaFdAfXLfd7Apt"},{"infoSlide":"","tournamentID":"0mv3ToZPy0AwAsRnpZBN","division":"","topic":{},"language":"English","link":"","content":"This House believes that, when working to preserve rare and endangered species, private entities are more effective than the state.","round":"6","id":"GbNrg3PcdZdarfCtADoS"},{"link":"","content":"THBT developed nations should pay reparations to developing nations that have experienced significant adverse consequences from climate change.","division":"","infoSlide":"","tournamentID":"wKhC6L9zPycGKlqYWb6j","round":"3","topic":{},"language":"English","id":"GbpRSWqfPaZvAgUtdl2t"},{"division":"","topic":{},"link":"","language":"English","tournamentID":"tKaZ8QEH0Hjz3Oiknfdr","content":"THR the presence of heterosexual cisgender politicians at Pride parades.","round":"1","infoSlide":"","id":"GciNHH31UTZhXWIMKXkC"},{"infoSlide":"","content":"THW require the consent of the subjects before publishing photographs of celebrities.","language":"English","tournamentID":"gJ7A4v0TYcDNBa5wySIX","round":"2","topic":{},"link":"","division":"","id":"Gd4gpVz7T8jlrAWCUJqp"},{"link":"","division":"","content":"TH, as the UN, would facilitate independence referendums when requested by semi-autonomous regions.","round":"Open_Semis","tournamentID":"g87X9iRsC0CxxtZdAjMP","infoSlide":"","language":"English","topic":{},"id":"GdBJ5g8KCHPu5f9sPy0X"},{"division":"","tournamentID":"ZvEJb11Ww6RpoVmg4QV3","topic":{},"language":"English","round":"5","infoSlide":"","link":"","content":"THW allow terminally ill patients to access experimental treatments.","id":"GdvJuvlvWUmabvTTUsPQ"},{"topic":{},"language":"English","tournamentID":"C4TfAdkoNgavFucgidJK","link":"","round":"3","infoSlide":"","division":"","content":"THW break up Disney.","id":"GeWaArol8bdB6cMWks2T"},{"infoSlide":"","division":"","topic":{},"language":"English","content":"THBT social movements should emphasize an individual’s capacity to change their circumstances in the face of oppression, as opposed to emphasizing the structures that restrict and determine an individual’s fate.","round":"5","link":"","tournamentID":"i3UU49z9MRO6phe9r1BH","id":"Gf6Apv6Fd95MsTEhX0C2"},{"link":"","topic":{},"tournamentID":"wP5I8OZ057B9BO0Js6MR","round":"Novice_Finals","content":"THBT individuals should experiment with mind altering hallucinogenic drugs.","division":"","infoSlide":"","language":"English","id":"Gg2dNhzVa2Hjw03v3zp9"},{"content":"THBT the government should assist physically healthy people in the act of committing suicide.","infoSlide":"","division":"","tournamentID":"HI456ixwVeFxETFg4P5i","language":"English","link":"","topic":{},"round":"4","id":"GgCfL9WuQwUFznkne6gn"},{"infoSlide":"","language":"English","round":"3","tournamentID":"tLlByvzEQCgHw5hl7kZg","topic":{},"division":"","content":"THW would ban the use of unarmed domestic surveillance drones.","link":"","id":"GhBM97PL9XRkGH7cyQxx"},{"language":"English","round":"1","content":"THW make the directors of major governmental science and technology organizations elected positions (e.g. Director of Environmental Protection Agency, head of National Science Foundation, Minister of Science and Technology).","link":"","division":"","tournamentID":"1XSX7FHkgfyCn1pjSqbi","topic":{},"infoSlide":"","id":"GhHfHHjXJdbXqBY0R4UY"},{"link":"","topic":{},"tournamentID":"SGpBjVPnJkFrJB0hnxYv","infoSlide":"","content":"TH, as the Pope, would abolish the concept of Hell.","language":"English","round":"5","division":"","id":"GhyveCtrNlCXDxkLtI55"},{"language":"English","division":"","link":"","infoSlide":"","tournamentID":"3Zgv6Gsne7dxEbg36SPO","round":"4","topic":{},"content":"THW make the use of armed drones a war crime.","id":"Gj3f5Fdr7i8ghegwsuOT"},{"division":"","round":"","topic":{"education":{"title":"Education","check":true}},"content":"Chúng tôi lấy làm tiếc về sự phổ biến của quan niệm: \"Đại học là con đường nền tảng dẫn đến thành công\".","infoSlide":"","tournamentID":"sgcqNV5ntCoa4H8glRBu","link":"","language":"Vietnamese","id":"GkE9MLaUBkWsuV7JAhP1"},{"round":"3","content":"THBT it is in Russia's interest to annex the Crimea.","link":"","language":"English","tournamentID":"QVeTcZONRdDbH5LSNeSf","topic":{},"infoSlide":"","division":"","id":"GkVtTWQGkyig85zJIf2R"},{"topic":{},"link":"","round":"3","tournamentID":"iebTUsXIgV5US8LjoNw7","language":"English","content":"Cryptocurrencies are digital currencies which operate without central banks or other regulating bodies, the most notable being Bitcoin. Trades can be made anonymously online and have so far proven un-hackable. While Bitcoin has become used for criminal transactions, some institutions have actively invested in it, including certain Swiss banks and the state of Japan. China amounts others, has banned use of Bitcoin. THBT States should criminalise the use and possession of cryptocurrencies.","division":"","infoSlide":"","id":"Gl2Er58hPWcWeW3vSf5X"},{"infoSlide":"","language":"English","content":"THBT the governments of developing nations should actively encourage slum tourism.","topic":{},"tournamentID":"VyYxJ0FaIE4LYaWheUyL","link":"","division":"","round":"1","id":"Gm7gCiw1eDdok1O3F3tn"},{"language":"English","infoSlide":"","round":"5","content":"THW ban religious charities from engaging in proselytisation.","tournamentID":"4XkvQJQxtOHIIF6sH97v","link":"","topic":{},"division":"","id":"GmAjwDEeZN7RqLYsm84A"},{"division":"","round":"2","language":"English","infoSlide":"","tournamentID":"18IIGMrqE33YyULmp5EY","topic":{},"link":"","content":"THW ban fortune-telling for profit.","id":"GmB5eOuCBnv4X00IQrlo"},{"content":"THW set one common minimum wage.","topic":{},"round":"1","division":"","infoSlide":"","tournamentID":"xDKR551AqNCcautWV6YI","link":"","language":"English","id":"GmcYbQN86c555xQpOJbz"},{"link":"","tournamentID":"7gnlDrExulbBsH6xw0jx","round":"3","topic":{},"infoSlide":"","division":"","content":"THW legally permit soldiers to refuse to participate in military actions or missions on the basis of conscience.","language":"English","id":"GmiObTjwCrmchY2FtMIa"},{"division":"","link":"","topic":{},"language":"English","round":"ESL_Semi","content":"That, as developing nations, we would prefer to align with China than the United States.","infoSlide":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","id":"GmvXdfgSi5aPSoN4Cng3"},{"topic":{},"content":"TH supports a three-state solution to the Israeli-Palestinian conflcit.","link":"","infoSlide":"","division":"","language":"English","round":"6","tournamentID":"8umdzosR2LakbIpLGOan","id":"GmvxKrfEt7PHXlqn5sEn"},{"division":"","topic":{},"infoSlide":"","round":"Open_Semis","tournamentID":"eBNO1FMsif7tzOa9LlnU","language":"English","content":"THBT the West should use ground troops against the Islamic State.","link":"","id":"Gn8h3uG2ChgpOrFKudAK"},{"infoSlide":"","round":"Novice_Final","language":"English","division":"","topic":{},"content":"THBT India should lease Protected Areas to local residents.","link":"","tournamentID":"xv0FPHxLsij7LUJlUmBy","id":"GnR2s3SclqBKqlG5Bpo6"},{"division":"","infoSlide":"","content":"This House would ban essential service providers from striking.","link":"","language":"English","round":"1","topic":{},"tournamentID":"pQSBc1H8lG2P8ftbCWZ8","id":"GohNncxQGuXVCpLfSnH0"},{"topic":{},"link":"","content":"THW not allow unvaccinated children to attend schools.","round":"2","tournamentID":"MSWulSxGMLEhqYJrBR62","language":"English","division":"","infoSlide":"","id":"GomcE5tmScpJb6BugeQq"},{"link":"","infoSlide":"","tournamentID":"zcO3QSYEVhsJojnUCCNl","division":"","topic":{},"language":"English","round":"4","content":"TH supports the Ukrainian government’s decision to make a trade deal with Russia rather than seek integration with the EU.","id":"GpDejE4K5o14vMFdb2dx"},{"round":"Open_Final","division":"","content":"This House Would Make the Use of Unmanned Military Attack Vehicles a War Crime.","tournamentID":"H3dcSFbp1SVwD6yHKKn5","language":"English","topic":{},"infoSlide":"","link":"","id":"GpMRIVgmm2Ild1tGP3V8"},{"link":"","content":"THBT Gov'ts should not publicly discuss anti-terror laws and state security in the wake of terrorist attacks.","division":"","infoSlide":"","topic":{},"language":"English","round":"5","tournamentID":"AKtcioaPMHcBM5C3fCCP","id":"GpmIlaknAnkZWkegp4vb"},{"language":"English","round":"4","link":"","infoSlide":"","content":"This house believes that EU member states should nationalise all their oil and gas resources in order to surrender total ownership and control of them to an EU-run energy agency.","tournamentID":"NYyJaJXo1SigW6G8Y1Lm","topic":{},"division":"","id":"GqmNpKlQLKhDiMYVnVed"},{"division":"","tournamentID":"C4TfAdkoNgavFucgidJK","topic":{},"language":"English","infoSlide":"","content":"TH as an artist would prefer to be self-taught rather than classically trained.","round":"5","link":"","id":"GqxEfedB9wqsS1nZrlNH"},{"topic":{},"tournamentID":"Z9FMqY7i0SmIcw5xUsUL","infoSlide":"","link":"","division":"","content":"THP a wolrd in which every aspect of one's physical experience is indistinguishable from that of other people.","round":"Open_Final","language":"English","id":"GrP56c9YX1MeTCheCiuy"},{"infoSlide":"","language":"English","division":"","link":"","tournamentID":"WqsdOIKQnJkQdFDBVNtA","content":"THW require artists to obtain permission from the subject/muse of a work of art prior to its release.","round":"2","topic":{},"id":"Grkdrm2KxmOn3GdIzzZT"},{"topic":{},"division":"","link":"","tournamentID":"JtHb8gJ24LeJcHq82rm5","round":"Open_Semis","infoSlide":"","language":"English","content":"THBT large-scale land redistribution are a legitimate way to combat poverty in the third world.","id":"GsE6wSt7LKg6NP2GhoZE"},{"infoSlide":"","language":"English","link":"","round":"Open_Final","tournamentID":"UT720iaDHtta4VRkpcnp","content":"A person's self-image is the mental picture, generally of a kind that is quite resistant to change, that depicts not only details that are potentially available to objective investigation by others (height, weight, hair colour, biological sex, race etc.), but also items that have been learned by that person about himself or herself, either from personal experiences or by internalizing the judgments of others (gender, sexual orientation, ethnicity etc.) Motion: TH regrets the concept of self-image.","division":"","topic":{},"id":"GsbxsJS9BPcBTWvQP4PL"},{"infoSlide":"","language":"English","link":"","round":"1","division":"","topic":{},"tournamentID":"f1thAYfptp3bklFlrsSe","content":"THW require all advertising to be gender neutral.","id":"GtVB3uKcSrhAG0iDQ7DA"},{"round":"2","language":"English","content":"THBT the feminist movement should encourage women to not wear make-up.","tournamentID":"SJ2vZr9NzMvtMMGarKue","link":"","division":"","infoSlide":"","topic":{},"id":"Gto5vjxvHlxGZfjVBdmz"},{"link":"","content":"TH, which is the ministry of health, will withhold any information regarding a drug that will ensure the birth of heterosexual children.","language":"English","round":"2","tournamentID":"5wD2Kt4YswcLbEnnV0c5","infoSlide":"","division":"","topic":{},"id":"GuW4Bm34UYR6gEVSr8iH"},{"content":"THBT, rather than protecting endangered species the animal rights movement should prioritize maximizing the total welfare of the animal population.","round":"2","topic":{},"tournamentID":"j4lF8rhbFUyC0UTwoz2G","link":"","language":"English","division":"","infoSlide":"","id":"GvIcwxQEHeqRDfrWEcku"},{"content":"THB in the Holy Trinity: Apple, Google and Facebook.","round":"2","link":"","infoSlide":"","language":"English","division":"","tournamentID":"DSFg77BvC9y4FK5pBVIv","topic":{},"id":"Gwb6LBpicqoJ0s3TJTv5"},{"content":"THP the Collegium System for the appointment of Federal Judges and Justices instead of Executive Nomination System in USA.","topic":{},"infoSlide":"","division":"","link":"","tournamentID":"WcNueZiJXeg9z82dijdL","language":"English","round":"5","id":"GweWHAZMZFnF0v9YGt9O"},{"tournamentID":"c7J6C6adBALyiCv5F8G1","language":"English","content":"TH supports Barack Obama's 'Kill List'.","round":"Open_Final","infoSlide":"","division":"","link":"","topic":{},"id":"GwtzP5XKtdj1yH2oWYDN"},{"division":"","tournamentID":"dxiwBIWlq2trjdp62R0U","round":"4","language":"English","content":"TH regrets the 'fat pride' movement.","infoSlide":"","link":"","topic":{},"id":"Gwx2XClbeqo3Cx9WaukL"},{"infoSlide":"","link":"","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"round":"","tournamentID":"nALUKfkpmOnWnQCzecru","content":"Chúng tôi sẽ cấm các thông tin truyền thông mà phủ nhận sự hiệu quả của các vaccine COVID-19 nếu như không có chứng cứ xác thực.","division":"","language":"Vietnamese","id":"Gx21A2gp9hIg6qTLDV7G"},{"language":"English","infoSlide":"","tournamentID":"VTJvfdWN7ZYlPkyTmGj1","division":"","round":"Open_Final","content":"THBT fathers have the right to get a fatherhood test even against the explicit wish of the mother.","link":"","topic":{},"id":"GxCN1PaDjcVVMqRhcxCV"},{"link":"","topic":{},"tournamentID":"Q8FD3CioEeXKgMlwBG6R","content":"THR effective altruism.","infoSlide":"","division":"","language":"English","round":"Open_Final","id":"GxNknTM1nufNmE19dn5g"},{"language":"English","link":"","content":"THS parents actively confiding in their children about financial problems and personal insecurities.","infoSlide":"","round":"4","topic":{},"division":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","id":"GxU6ARpIksFbBepPU0k7"},{"content":"THW require that religious organisations and leaders remain politically neutral.","tournamentID":"hxlmkaNuNgQ6AIDlbsIh","division":"","infoSlide":"","link":"","round":"Open_Semis","topic":{},"language":"English","id":"GxeYAzkuMlX2Fdp14Jnb"},{"content":"THW prohibit the grievance of religious beliefs.","language":"English","infoSlide":"","link":"","topic":{},"round":"1","tournamentID":"0WQ7djfo2FawxEAC95E0","division":"","id":"Gy0h9hCuyo9DZgDdH2b8"},{"language":"English","round":"Open_Final","topic":{},"link":"","infoSlide":"","tournamentID":"rinK386NjH990vvie6wL","division":"","content":"Assuming it was possible, THW allow individuals to permanently alter their memories to forget the dead.","id":"Gy7tJ4iaYM2H1zlbmaDq"},{"link":"","content":"THS the reappropriation of the word 'nigger.","language":"English","infoSlide":"","tournamentID":"j9tMf10ACsn6VW6vG9gA","topic":{},"round":"Open_Final","division":"","id":"GyPvLL8W81PPnYM90BWy"},{"topic":{},"content":"This house regrets the rise of choice feminism.","tournamentID":"wLfoMQYsV3E4fiFQ126i","link":"","language":"English","infoSlide":"","round":"3","division":"","id":"GyQRwBoEYxAAWtuzYe5s"},{"infoSlide":"","division":"","content":"In the aftermath of genocides, ethnic violence or crimes against humanity THO efforts to ban or suppress discussion of ethnicity and/or religion.","tournamentID":"s6w7WZApDWnBBmzeKY4h","round":"Open_Semi","language":"English","link":"","topic":{},"id":"GyRWGcspwiA4a0diPhZM"},{"infoSlide":"","content":"This House believes that the Netherlands should allow citizens to purchase additional votes from the government at a cost proportional to their wealth (for example, one additional vote for 1% of wealth).","division":"","link":"","tournamentID":"t1jiRXU99xeGdoIkTeyF","topic":{},"language":"English","round":"5","id":"Gyziym8QScR09qS2vxAQ"},{"topic":{},"round":"1","language":"English","link":"","infoSlide":"","content":"THBT liberals should not use pejorative labels such as racist, bigot, sexist etc to describe people whose beliefs they disagree with.","tournamentID":"KpispxU2MtVt41R9j5bV","division":"","id":"GzJzNN8hs5qNJV2SQeqA"},{"link":"","language":"English","content":"THW remove the UK's exemption from the refugee quota penalty.","round":"3","division":"","infoSlide":"","topic":{},"tournamentID":"tKaZ8QEH0Hjz3Oiknfdr","id":"GzSoehBWVf71hi6GnuDh"},{"content":"As the South African government, THW explicity oppose the use of the word \"apartheid\" in describing the Israeli/Palestinian conflict.","tournamentID":"aywt5Kt0TqoeqngKQ0I4","topic":{},"language":"English","division":"","round":"3","infoSlide":"","link":"","id":"Gzm8OTZ5EyY34BRlSGIe"},{"tournamentID":"fzLPoPRlME1NEcvf7oVd","content":"In Western Liberal democracies, THR the queer movement's primary form of collectivization transitioning from riots/protests into pride celebrations/parades.","division":"","language":"English","infoSlide":"","link":"","topic":{},"round":"Open_Final","id":"H0WSkb1qtVD5hebcRAE6"},{"link":"","tournamentID":"zNrcKb4T08IU7LfuYSUz","division":"","language":"English","content":"THW allow parents to sell their babies.","round":"Open_Semis","topic":{},"infoSlide":"","id":"H0eFhOTwwH9P2otCJr9R"},{"language":"English","division":"","tournamentID":"irYSGlHj76RukmyCwWOG","topic":{},"link":"","content":"THR the narrative that 'women can have it all' (career, family, children, etc.).","infoSlide":"","round":"5","id":"H19hhiaxeudzzdnCKdfD"},{"topic":{},"language":"English","round":"Open_Quarters","tournamentID":"aVcqgGmAccQ09iBh9iS1","infoSlide":"","division":"","content":"THBT international law should allow states which accept refugees to sue the states they come from for compensation.","link":"","id":"H1AgHmKkVp1E6Ok3FnEd"},{"language":"English","tournamentID":"Ef5RtQo9Rr0nt7Nnhncq","topic":{},"link":"","infoSlide":"","round":"6","division":"","content":"After a civil war, should the ethnic groups involved be separated, even through forced resettlement?.","id":"H1nCGvlN0Ffd2V6CwQpm"},{"round":"Open_Final","link":"","infoSlide":"","division":"","language":"English","tournamentID":"7L67NrnE93IENW8OW03k","topic":{},"content":"TH welcomes the rise of art, music and film that celebrates lack of economic wealth.","id":"H2MIYC6AkxusQpf6tLLv"},{"link":"","content":"Assuming the technology exists, this house would allow people to buy and sell years of their life.","tournamentID":"pFBjdI3lKCaS5TpjBKVP","language":"English","division":"","infoSlide":"","round":"ProAm_Final","topic":{},"id":"H3Grb5tqgKMy3ZJjXoBO"},{"language":"English","topic":{},"link":"","division":"","round":"Open_Quarters","infoSlide":"","content":"THW require social media companies to pay for metadata.","tournamentID":"C4TfAdkoNgavFucgidJK","id":"H3Ujli8AXyB8Zf5CjnNg"},{"tournamentID":"xoiSW3hTToX15wvrD6gA","language":"English","content":"THW allow victims of miscarriages of justice to sue expert witnesses for incompetence.","infoSlide":"","division":"","round":"Open_Final","link":"","topic":{},"id":"H4LQAmlamEsxnU0yJtR9"},{"language":"English","infoSlide":"","division":"","tournamentID":"JsQrI80phRuvDHr37q5N","topic":{},"round":"3","content":"TH, as Aljazeera, would have broadcasted the videos of the Toulouse attacks.","link":"","id":"H4Nxw4jJX6wgunw1FZNO"},{"language":"English","topic":{},"tournamentID":"pMiBCGHX80oXMgUJCqkc","round":"1","division":"","link":"","infoSlide":"","content":"THW not criticize Melania Trump as a way of protesting the Donald.","id":"H5PK8f9tH5Zm2Y4vnvCM"},{"topic":{},"content":"This House prefers a world where everybody believes in the concept of a sleeping God rather than an active God.","language":"English","link":"","division":"","infoSlide":"","tournamentID":"6UClYEkoQLViAru2xei4","round":"Novice_Final","id":"H5rz36FJnNZJiWGLRb3x"},{"language":"English","tournamentID":"Izblbv0LXDRNyAVA9nPW","content":"THW Allow Formula 1 Teams to Race a Third Car, Provided at Least 1 of the Drivers is Female.","round":"4","topic":{},"division":"","link":"","infoSlide":"","id":"H64fL4wRAqPHlQVlsP4O"},{"infoSlide":"","link":"","division":"","topic":{},"content":"“THW Abolish the Minimum Wage”.","tournamentID":"5ETrS816OeSAWdPhWEHf","language":"English","round":"8","id":"H6Ug47lrS8EBCZq7g1M1"},{"round":"3","link":"","content":"This House opposes Twitch's decision to ban sexually suggestive content on their platform.","infoSlide":"","tournamentID":"uHY8OFiOXYb0VdlJt20c","topic":{},"language":"English","division":"","id":"H6ZPs5olhXodiXssOhZi"},{"division":"","topic":{},"language":"English","content":"THR the dominance of “Asian Values” in Asian democracies.","link":"","round":"5","tournamentID":"7eFEPGI7iZMY9BTHG43T","infoSlide":"The term Asian Values is a political ideology that arose in the 1990s, which defined elements of society, culture, and history common to the nations of Southeast Asia and East Asia. It aimed to use commonalities - for example, the principles of collectivism or communitarianism - to unify people for their economic and social good and to create a pain-Asian identity. This contrasted with perceived European ideals of the universal rights of man. The concept was advocated by Mahathir Mohamad (Prime Minister of Malaysia, 1981 - 2003, 2018 - 2020), Lee Kuan yew (Prime Minister of Singapore 1959 - 1990), Park Chung Hee (President of South Korea, 1962 - 1979) and Shinzo Abe (Prime Minister of Japan, 2012- present), as well as other Asian leaders.","id":"H6khBK9FAOTTeWOkA5K0"},{"link":"","infoSlide":"","language":"English","tournamentID":"68SrKFb9XtsQrLtqLtjO","topic":{},"division":"","round":"Open_Quarters","content":"THW allow city and local governments to be held civilly responsible for deaths that can be ascribed to homelessness.","id":"H7ZCxYUXO2AqaLFeDFxw"},{"content":"THBT court sentencing should take public sentiments into account.","round":"5","language":"English","topic":{},"infoSlide":"","division":"","link":"","tournamentID":"uqR5rN63m5rX9CiOtJjb","id":"H83J8bmBRUuE33K9L5sR"},{"language":"English","tournamentID":"TSpa3WXkfFl9nQFbVbmi","link":"","division":"","content":"THBT the LGBT movement should de-emphasize sexualization (e.g. gay pride parades, etc.) in order to prioritize traditional familial values in pursuing their goals.","round":"Open_Semi","infoSlide":"","topic":{},"id":"H8K7QBOgaTvnOIx6kXvL"},{"content":"THBT the Pope Francis should make an ex-cathedra statement to the effect that all Catholics must support socialism.","language":"English","link":"","infoSlide":"","tournamentID":"7lMrN2aiwSzD5rzPFwHz","topic":{},"round":"3","division":"","id":"H8oaQhrjOPb4yrGptyG2"},{"round":"5","infoSlide":"","division":"","content":"Should people with more children be allowed to enter retirement earlier?.","link":"","language":"English","tournamentID":"LK6lSp8gpBGbLjuv9caV","topic":{},"id":"H8obNz87fIij7qo5eenk"},{"content":"THW sanction the intelligence, military, and political leaders of Pakistan.","round":"4","language":"English","tournamentID":"WfHILzlB4oGzI34Iwqaw","infoSlide":"","topic":{},"link":"","division":"","id":"H9EieS8XZ0fodirfOl0S"},{"topic":{},"link":"","tournamentID":"YF6iuqxO6eUISnAz4iMp","division":"","infoSlide":"","content":"This House Would ban ownership consolidation of newspapers by a single entity e.g. private equity firms, single media company.","language":"English","round":"9","id":"HAENrDpThJtUuJ3g3e0h"},{"infoSlide":"","language":"English","topic":{},"round":"3","tournamentID":"gsX4dlvvsr6lcKP3eM2T","content":"THW not allow local government to pay for the relocation of homeless people.","division":"","link":"","id":"HAKCMQukhh7ezGg4GFdr"},{"language":"Vietnamese","round":"3","infoSlide":"Vào năm 2019, Trung Quốc tuyên bố kế hoạch xây dựng một trạm nghiên cứu trên mặt trăng cho đến trước 2030. Cùng với mục tiêu thám hiểm Mặt Trăng, trước khi hết nhiệm kỳ, Tổng thống Trump yêu cầu Quốc hội tiếp tục gia tăng ngân sách cho NASA.","content":"Chúng tôi, với tư cách Hoa Kỳ, sẽ tích cực chạy đua vào vũ trụ với Trung Quốc.","link":"","division":"","tournamentID":"FOAZQcGDy003yv7fx3AI","topic":{},"id":"HAxutQs3iksdxxEe63Cw"},{"tournamentID":"Te8CYa0tImwgHXE99O7W","language":"English","round":"3","link":"","topic":{},"infoSlide":"","content":"THBT Central Asian states should significantly disassociate from Russian cultural influence (e.g. language, the arts, media, history etc.).","division":"","id":"HCOLIOlScEaWP8QIo7rR"},{"topic":{},"content":"THW run simultaneously in or out referenda in all EU member states.","division":"","infoSlide":"","tournamentID":"SU8WsMguqtUiTUErBeo7","round":"2","link":"","language":"English","id":"HCaUtfmCkzl4B41xtSsU"},{"link":"","division":"","language":"English","tournamentID":"nFlN14QQWlnlNwJKIDru","topic":{},"infoSlide":"","content":"THW financially incentivise voting.","round":"2","id":"HCzW5m3FUbxJbG3aqIQQ"},{"topic":{},"tournamentID":"ERxjvEIrmiL3iSgvcfdB","infoSlide":"","content":"THBT secular states should not allow minority groups to implement their own family law systems.","division":"","round":"5","link":"","language":"English","id":"HDBcIqTFUV7BAM23gZ9N"},{"content":"THS the rise of computational creativity.","infoSlide":"Computational Creativity is a scientific field researching AI models that simulate or replicate human creativity. Projects in the field include but are not limited to using AI to script films, compose music, write poetry, and paint.","language":"English","division":"","topic":{},"round":"4","link":"","tournamentID":"ChiU8yMbLI2Y2q5rwURP","id":"HDEPJzijpmr7CyxJDSM3"},{"infoSlide":"","round":"Open_Semis","content":"THBT the Parliamentary Labour Party should immediately depose Jeremy Corbyn by a vote of no confidence.","topic":{},"link":"","language":"English","division":"","tournamentID":"vTB5rmh37ZMzdOCJ34sF","id":"HDMZ7MXp9YoOFhwWcABO"},{"division":"","link":"","infoSlide":"","content":"Should there be an unconditional basic income?.","tournamentID":"7abz3Ipf2RhGUArcqBwg","round":"Open_Semis","language":"English","topic":{},"id":"HEfQyhgvAFBDpNIH0Hhq"},{"round":"3","link":"","content":"THBT social media should remove content it deems to be offensive to religions.","infoSlide":"","language":"English","division":"","tournamentID":"BhBkit7bGTegIhEEknJU","topic":{},"id":"HEwOaeAvsGMSvuhxRmOK"},{"topic":{},"round":"Novice_Quarter","link":"","tournamentID":"NBT7RwLHeAApXuOtrQpt","content":"Countries with declining populations should abandon policies that aim to increase the birth rate (ex. incentivising citizens to marry and have children).","division":"","language":"English","infoSlide":"","id":"HFIDNXQ2qXcIj1BpGWGk"},{"link":"","content":"TH, as the Jammu & Kashmir Liberation Front, would ally itself with the Pakistani government to push back against abrogation of Article 370 by the Indian government.","topic":{},"infoSlide":"","division":"","language":"English","round":"Open_Semi","tournamentID":"Pr7RhJp1TWbTZsqRvQt4","id":"HHjSOMm8tbhJyQCDCRA9"},{"content":"THBT the state should financially incentivise higher-educated citizens to have children before their 25th birthday.","language":"English","division":"","tournamentID":"eNRfEfbvRNeRnZhk4TS2","round":"3","link":"","topic":{},"infoSlide":"","id":"HIihzBV9QFXHfTbULciA"},{"round":"Quarterfinals","tournamentID":"mAqW9Go1ryAbaaM1OY8z","content":"Chúng tôi sẽ phá bỏ mọi rào cản đạo đức nhằm tiếp tục phát triển nghiên cứu khoa học.","infoSlide":"","link":"","language":"Vietnamese","division":"","topic":{},"id":"HJCB2b1ZK4GsuS6iSwM2"},{"link":"","language":"English","tournamentID":"swAbmAXdPnojWIXuZFwm","infoSlide":"","content":"THW publicly disclose all salaries.","round":"3","division":"","topic":{},"id":"HJhLYLn9qB7E1zKgAIK8"},{"content":"In a world where realistic android relationships are possible, THS the rise of relationships with realistic androids.","division":"","topic":{},"language":"English","tournamentID":"fzTALe8bGudT9BWcFtDO","infoSlide":"","link":"","round":"2","id":"HKnvZ52g81ozlu2ZBMB6"},{"language":"English","infoSlide":"","topic":{},"tournamentID":"oaIuwyOX7NBIwaiSaVJ8","content":"That we regret the fall of the Societ Union.","division":"","link":"","round":"Open_Semi","id":"HL8ZxSyBUfr2F7VVBaTh"},{"round":"Quarterfinals","topic":{},"link":"","division":"","tournamentID":"9yPqE2fe1oaHsd7ankOa","language":"English","infoSlide":"","content":"THBT the point system should provide positive points if the overall impact of actions are good, even if their motivations are corrupt.","id":"HLeLr1bNCcTUO6bHuV3z"},{"round":"5","topic":{},"division":"","link":"","language":"English","tournamentID":"XL594Q2oZbvHmfmYKFvT","infoSlide":"","content":"You are a publicly successful chef, whose real cooking skill is secretly attributable to a rat which directs your movements underneath your chef's hat. That we should reveal the existence of the rat.","id":"HN2sAN7XkgW1XJjfLZMt"},{"topic":{},"content":"THB the place for athletes’ protests is off the field not on it [Semi’s/Novice Finals].","tournamentID":"CjeO3WtFoEPJ0YkMQ3T2","language":"English","infoSlide":"","round":"Open_Semis","link":"","division":"","id":"HO8Z7Cza7h8TsZhDXW9S"},{"link":"","division":"","infoSlide":"","round":"2","content":"THW compensate workers for the loss of jobs resulting out of automation.","tournamentID":"wE88mu5ettNTfJEaJQY1","language":"English","topic":{},"id":"HOrK8kL3FJM88wOylFZd"},{"content":"THW reduce US cultural domination.","division":"","link":"","language":"English","round":"4.3","tournamentID":"BXqPhfwak2R1kYHV48bp","infoSlide":"","topic":{},"id":"HP65IxGZizlnl5uKQi0w"},{"infoSlide":"","division":"","tournamentID":"Xt0UV62VgaP360hvHqWG","link":"","round":"3","topic":{},"content":"THW fund research into the existence of a violent gene.","language":"English","id":"HPniit317jStfhvy55D0"},{"link":"","topic":{},"division":"","tournamentID":"O8G3JSrsKEY7mvvg6szT","infoSlide":"","round":"2","language":"English","content":"THW cut off development aid to countries which willfully neglect to combat terrorism within their own borders.","id":"HPxjs7pyOESdXHN2vClW"},{"tournamentID":"2puDg94cQDrpdSauuA78","round":"4","division":"","language":"English","topic":{},"link":"","content":"TH would disqualify the entire amateur football club for one competition season when there are acts of violence on or around the playing field.","infoSlide":"","id":"HQYXf1La22byHdq4C7fd"},{"tournamentID":"iFjWzR2mR3mBo4zzvGeZ","division":"","link":"","language":"English","infoSlide":"","content":"THW send top teachers to weakest schools.","round":"2","topic":{},"id":"HRU9ie2s9f8gDANl6riN"},{"language":"English","infoSlide":" Expansionist policies include but is not limited to: Including but not limited to: building artificial islands in order to claim additional territory, trying to significantly limit foreign presence, stationing warships and troops.","topic":{},"link":"","round":"7","division":"","content":"THBT pursuing strong expansionist policies in the Arctic region is in the Russian interest.","tournamentID":"uJGjvsaThnluwVzoHFXm","id":"HRgExKouyhi9MK0cV1HO"},{"infoSlide":"","language":"English","round":"Open_Octa","topic":{},"content":"That we should stop the practice of requiring community's approval to build houses of worship.","link":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","division":"","id":"HScAJJ9A93YFiubeBu5D"},{"content":"THW abolish K-12 private schools.","link":"","infoSlide":"","tournamentID":"TpCKtGVry2w5xrgb90jZ","topic":{},"division":"","language":"English","round":"1","id":"HSeHzOLDLsRwcKoD2qMb"},{"division":"","infoSlide":"","language":"English","round":"1","topic":{},"tournamentID":"WYCV7Sl9idtN2tulRuB2","content":"THW Only Imprison Criminals Who Threaten the Safety of Citizens.","link":"","id":"HTGMSx52bc2iuPpMzffX"},{"link":"","round":"1","tournamentID":"xAdc6R4uC1xkQxvmPedU","content":"Chúng tôi sẽ thành lập một ủy viên môi trường; người này sẽ có quyền truy tố các tội ác với môi trường trên toàn cầu.","language":"Vietnamese","infoSlide":"","division":"","topic":{"environment":{"title":"Environment","check":true}},"id":"HUYOIlFSEuoeA9wTVaVZ"},{"content":"This House Believes That the EU should employ similar tactics to those Russia used in the 2016 US election in order to undermine the Trump administration.","language":"English","infoSlide":"","link":"","division":"","round":"Open_Semi","tournamentID":"YaTXOaEvPKh8XHB3VTBK","topic":{},"id":"HUgOBQkPdrCfeGnrrR1s"},{"content":"In post-conflict societies, THW actively suppress information and interpretation, that paints any past dictator in a sympathetic light.","division":"","round":"HS_Final","link":"","topic":{},"language":"English","tournamentID":"m6JzV67uYJSVBRpAbgL7","infoSlide":"","id":"HV2zfMlEjBHqoZp8eC4j"},{"language":"English","topic":{},"content":"Large banks should be split into smaller ones.","round":"2.1","division":"","link":"","infoSlide":"","tournamentID":"h373wn3dFw9UcWDcJpyy","id":"HVu2OYXzXdAl9wrIGi52"},{"topic":{},"content":"THW establish a content rating system (e.g. the MPAA rating system for movies) for children’s and Young Adult literature - Round 2.","infoSlide":"","link":"","language":"English","round":"2","division":"","tournamentID":"xixMAepJqW9TAZSYVdsR","id":"HW3f5Slt8Sbk9IYKAljX"},{"round":"1","content":"THW exclusively fund African NGOs instead of Western NGOs working in African countries.","link":"","infoSlide":"","topic":{},"tournamentID":"aEZUJtwNrlKTdARVPZNh","division":"","language":"English","id":"HW6DZh6HyNXi5tMZgCGn"},{"infoSlide":"","round":"1","link":"","language":"English","tournamentID":"4PekAtlXMCWdSTTJuMol","topic":{},"content":"This house regrets the commercialization of social movements.","division":"","id":"HWLSNBEWzjTIMY2xbsUG"},{"content":"THW ban payday loans.","tournamentID":"OyqUfVFCTQ5A8iecmNK1","infoSlide":"A payday loan is a relatively small amount of money lent at a high rate of interest on the agreement that it will be repaid when the borrower receives their next wages.","link":"","language":"English","division":"","round":"6","topic":{},"id":"HWMblTig0UkOOyy5HoBW"},{"round":"Open_Semis","link":"","content":"TH, as an emerging economy, prefers supporting domestically-based banks to the exclusion of multinational financial institutions (for example, providing support to Banco de Mexico and the businesses and individuals who use BdeM in Mexico, but not those who bank at HSBC Mexico).","tournamentID":"8Vk7pWjDHtGhxQVWidIQ","division":"","topic":{},"infoSlide":"","language":"English","id":"HX3aBE8OrRviqQdhUbop"},{"language":"English","division":"","tournamentID":"tKXlShZl2vec49jC1bif","topic":{},"content":"THS wage subsidies in regions with persistent economic malaise (e.g. The Rust Belt, Kawerau).","link":"","round":"6","infoSlide":"","id":"HXX3rHcQyDwc2TA87vbq"},{"round":"2","content":"THBT the EU should abandon its commitment to the principle of open borders between member states.","infoSlide":"","topic":{},"tournamentID":"uEekEeJIfFAC4OJWJglf","language":"English","link":"","division":"","id":"HXZ61BBdLuJ79i6YeSU6"},{"round":"Open_Quarter_2","content":"THW ban “My Big Fat Gypsy Wedding”.","topic":{},"infoSlide":"","tournamentID":"1XuVJxN52ldgExm8K3T2","division":"","link":"","language":"English","id":"HXuwLcRmLP6DR9Jusiz3"},{"link":"","topic":{},"content":"THW privatise healthcare.","tournamentID":"dqyYdikn4cY0oz6DCMkq","infoSlide":"","language":"English","round":"1","division":"","id":"HY9wurWvhYkVNopFDL8V"},{"infoSlide":"","language":"English","topic":{},"division":"","content":"Government should create public space on the Internet for social protest and political free speech.","round":"5","tournamentID":"h5ajoFHOT7mXoe90wbQ3","link":"","id":"HYK3gr7qJalDMhLTeXDq"},{"tournamentID":"axWwnyCM8L14pVHljukt","language":"English","content":"Assuming it is legal, THW justify that federal states with high rates of violence, hire mercenaries (private armies) to fight organized crime.","link":"","topic":{},"division":"","round":"Open_Final","infoSlide":"","id":"HYSolBTJFEZ7tkRQ8Anp"},{"division":"","round":"2","infoSlide":"","language":"English","topic":{},"tournamentID":"KErVXbqRahyWD7ZB1Q1m","content":"THW introduce a UK constitution giving courts more power.","link":"","id":"HYfKYKJBiJo3ROf08kjd"},{"language":"English","content":"THW not distributed emergency and humanitarian aid through non-state groups linked to terrorism.","link":"","division":"","infoSlide":"","round":"Quarterfinals - Motion 1","topic":{"irw":{"title":"International Relations/War","check":true}},"tournamentID":"7Jdvl74EMNCm0P5fq9PJ","id":"HYvhvxSobphhmhA8Fjan"},{"link":"","division":"","topic":{},"content":"Should Fracking be stimulated?.","round":"4","language":"English","infoSlide":"","tournamentID":"mveJVSu6tAxKx2Vp4IB0","id":"HZOZxEk3HXESUI2VP3zf"},{"round":"Open_Final","tournamentID":"5wD2Kt4YswcLbEnnV0c5","language":"English","division":"","topic":{},"infoSlide":"You are a young man living in the Galilee 2,000 years ago. You are smart and charismatic. You are capable of collecting and leading a fold of followers. People believe you are the son of God and can do miracles such as healing and food replication.","content":"THW use its influence to disseminate socially progressive values supported by faith.","link":"","id":"HZXT2ahRweOLCexS4P9H"},{"infoSlide":"","topic":{},"division":"","tournamentID":"7iuaP5vcRAvHJFM4QYmP","link":"","language":"English","round":"2","content":"THBT Countries whose native language is not English should adopt English as the main language of governance.","id":"Ha77Y8TweIZRvWaC7CM4"},{"topic":{},"infoSlide":"","language":"English","round":"4","link":"","tournamentID":"tKaZ8QEH0Hjz3Oiknfdr","division":"","content":"TH as a school teacher would not refer children to child protection services in the case of concerns about their radicalisation.","id":"HaA30syfVc2utyMWpwq4"},{"link":"","round":"Open_Semi","content":"THW require all historically major polluters to open their borders to environmental refugees.","infoSlide":"","tournamentID":"Q8FD3CioEeXKgMlwBG6R","division":"","language":"English","topic":{},"id":"HaJxpVu9XdAX3T29NdKb"},{"tournamentID":"x0mst3SfcsgMKKZ3eg7G","content":"TH believes that progressive parties should advocate and campaign for the introduction of UBI.","infoSlide":"","language":"English","division":"","round":"5","link":"","topic":{},"id":"HanxWlb41594SyvEK2bL"},{"tournamentID":"0DgXee32WEP3hxmGZExS","topic":{},"language":"English","infoSlide":"","round":"15","division":"","content":"THW Not outsource the running of hospitals to private companies.","link":"","id":"Hb3bh16zAYJ8XO7noDQg"},{"tournamentID":"gQ88d3loB2qwgD7ofmmr","language":"English","topic":{},"content":"THBT the US should covertly manipulate election results in South and Central America, in order to prevent the emergence of left wing governments.","division":"","link":"","infoSlide":"","round":"Open_Semis","id":"Hb8Ccc0i81rsGCPiYg5m"},{"topic":{},"tournamentID":"mkrRVvz5EWSZie6LBtCH","link":"","content":"Chúng tôi ủng hộ một thế giới nơi tất cả mọi người phải tuân theo Luật Giới hạn.","division":"","infoSlide":"Luật Giới hạn: Mỗi người chỉ có giới hạn số lượng mối quan hệ, và cách duy nhất để \"nạp\" thêm mối quan hệ khi số lượng đạt max là bỏ đi những mối quan hệ cũ. Những mối quan hệ đã bỏ đi sẽ không thể được tái thiết lập lại.","round":"Grand Final","language":"Vietnamese","id":"HbEVQCt8CdvtY8RYW5Nk"},{"infoSlide":"","link":"","topic":{},"division":"","content":"THBT that the International Criminal Court should not issue indictments against individuals involved in ongoing conflicts.","tournamentID":"4dzoeUxkRP5WxDaCVtbY","round":"3","language":"English","id":"HbbdPwRFbc5ZkJryUngV"},{"link":"","topic":{},"division":"","tournamentID":"NDBMTXQSiGk8gHdwlPou","round":"4","infoSlide":"","language":"English","content":"It is the beginning of 1961. THW, as the USA, seek a mutual neutrality pact with Cuba.","id":"HbyAXtqbhR9mnwqM4GG9"},{"infoSlide":"","round":"1","division":"","language":"English","topic":{},"tournamentID":"U2WbXKmpxuh7OC6qZ1zX","content":"THW ban the Golden Dawn.","link":"","id":"Hd9QKKhS7qp42IoVl2kv"},{"language":"English","content":"This house believes that it is better for the general population to be more optimistic about the current and future state of the nation (including societal cohesion, peace processes, the state of the economy) than an objectively accurate judgement.","infoSlide":"","tournamentID":"vS5BTr7lDW40h5Qw31FI","link":"","topic":{},"round":"EFL_Final","division":"","id":"HdjKgwh681euhrYjRsD3"},{"division":"","link":"","round":"Open_Final","topic":{},"language":"English","infoSlide":"","tournamentID":"5YRD8EoL8wrQu3pTfkUI","content":"TH prefers to live in a world where personal success and failure are predominantly seen as a consequence of random factors rather than personal choices.","id":"HeUuZTovJObOnxaEJW22"},{"infoSlide":"","topic":{},"content":"TH, which is the EU, would sue any individual who speaks untrue of or defames the European Union.","round":"3","link":"","division":"","language":"English","tournamentID":"ns7JoMyNUkrrS5A6Rbw7","id":"HetjnDbeHTLDdERmxErf"},{"link":"","tournamentID":"Nzien6R9RXvOTrNMJsza","language":"English","division":"","topic":{},"infoSlide":"","round":"3","content":"THS closed shop arrangements.","id":"HfXsAbNpueGUkTLBkWMS"},{"content":"THS the boycotting of Israeli academics.","link":"","language":"English","tournamentID":"4yVRmMNHzHW12EVIlnyZ","topic":{},"round":"3","infoSlide":"","division":"","id":"HfYXpHm1IvbYvdh1wuJ9"},{"division":"","topic":{},"language":"English","infoSlide":"","tournamentID":"Tix5aGpgWpddb7Va0oe6","round":"Open_Final","link":"","content":"THW boycott the football World Cup in Brasil.","id":"Hfhs1q2kODuIdsWYZ72E"},{"link":"","content":"TH welcomes the anglicization of the French language.","round":"4","topic":{},"tournamentID":"MqWoP2HpVv77T14aPCqR","infoSlide":"","language":"English","division":"","id":"HhryjjpgOjfgQNbwUS8E"},{"language":"English","link":"","division":"","content":"THW not become a superhero.","tournamentID":"7lMrN2aiwSzD5rzPFwHz","topic":{},"infoSlide":"","round":"4","id":"HiTTyMAGDvYLnbDAJ4dg"},{"topic":{},"round":"Open_Final","link":"","infoSlide":"","content":"THW halt all state-sponsored efforts to integrate immigrants into society.","division":"","language":"English","tournamentID":"wYsVMTqiPYP1HFjzExu2","id":"HiYP4O1CmHuSH4J2yGl7"},{"division":"","content":"THBT Miley Cyrus' sexualised performances (such as Wrecking Ball) are a victory for feminism.","topic":{},"round":"2","infoSlide":"","link":"","tournamentID":"YcxOXVvo0TolX2RquRlw","language":"English","id":"Hib8Bc2WgbwgJTH5bgnv"},{"language":"English","link":"","infoSlide":"","topic":{},"round":"Open_Semis","content":"THBT, on balance, the rapid fall of oil prices has been beneficial to the West.","tournamentID":"caeYE7341tdQiO1TJafq","division":"","id":"HjKAzrw7erRn8iFn2hFB"},{"link":"","division":"","infoSlide":"","tournamentID":"m9Mkt1xdSA1jDsNN4zgu","round":"2","topic":{},"language":"English","content":"THBT law enforcement organisations should never provide incentives to gang members to inform on their superiors (e.g. plea bargains or monetary rewards).","id":"HjlI4ljtQwOFLUj9oZ8y"},{"link":"","tournamentID":"Ke3vqa3ZpQMmG6mDtn1z","division":"","language":"English","infoSlide":"","content":"This House, as a parent, would allow Vought America to inject their child with Compound V.","round":"2","topic":{},"id":"HjzSILpnsj0c1GXhiwNj"},{"language":"English","division":"","topic":{},"infoSlide":"","link":"","tournamentID":"keyU5X5APEvFXLaZwxeM","content":"In post-conflict societies, THBT that justice is better served by TRCs (Truth and Reconciliation Committees) than by prosecution of perpetrators of attrocities other than the leaders.","round":"Open_Semis","id":"Hk8yDQqCBqq5rpUfBcI4"},{"language":"English","content":"THW never enter into a relationship with a closeted individual.","topic":{},"infoSlide":"","link":"","division":"","round":"Open_Semi","tournamentID":"yDUOVgl6qLMa2DH8lCD5","id":"HlGAtAzMrrStJHm8E45d"},{"division":"","infoSlide":"","link":"","language":"English","round":"4","content":"TH opposes the practice in former colonies of privileging themes of anti colonial resistance over pre colonial-history and notions of indignity when fabricating national identity. Eg. anthems, street names, holidays etc.","tournamentID":"iebTUsXIgV5US8LjoNw7","topic":{},"id":"HmAgLZ8EtYGTIlOjBaCH"},{"round":"ProAm_Final","link":"","content":"THR the modern high priorisation of sexual compatibility in romantic relationships.","division":"","topic":{},"language":"English","infoSlide":"","tournamentID":"k3ijyeg4qJCcExIHRlhv","id":"HmticSn46NN2NuG1uGG6"},{"division":"","topic":{},"round":"5","infoSlide":"","language":"English","link":"","tournamentID":"0vUzx1fMW06W65BNi8Wn","content":"This House Believes That universities should continue with primarily online education post COVID-19.","id":"Hn0I4zR9FawXEJy8pEEN"},{"infoSlide":"","topic":{},"content":"THW tie minimum wage increases to increases in the income of the 1%.","division":"","round":"4","language":"English","tournamentID":"KErVXbqRahyWD7ZB1Q1m","link":"","id":"HnA95MFUpXMxvMf6ehig"},{"division":"","link":"","round":"4","topic":{},"infoSlide":"","content":"THBT states should pay reparations to minorities, who are citizens, that the state has previously oppressed.","tournamentID":"qotkEeWGxvmIXOZx52qZ","language":"English","id":"HnMmwwntZr4Hn4xXZzR3"},{"link":"","round":"3","tournamentID":"K6vtfx7dBNzsAtTkNiF1","division":"","infoSlide":"","content":"THR The increasing trend of left wing censorship in university campuses and the overall academic and literary sphere.","topic":{},"language":"English","id":"HnV8zCjVHHtzdEikd82z"},{"content":"This House prefers collective parenting.","topic":{},"infoSlide":"","round":"2","tournamentID":"WACrra94379E35Be36hc","language":"English","division":"","link":"","id":"HnVv88XyTFNHcaHO1YX9"},{"content":"That we should ban high frequency trading.","topic":{},"tournamentID":"5Qomv7BFHTKmY4PchwDr","link":"","language":"English","round":"7","division":"","infoSlide":"","id":"HoBVy9LYKa7Lq9qnJKrm"},{"round":"1","content":"THS higher than usual taxes on non essential businesses (Netflix, Zoom) that made significant profits due to the pandemic.","topic":{},"infoSlide":"","tournamentID":"9yPqE2fe1oaHsd7ankOa","link":"","division":"","language":"English","id":"HojhwhBaVxoY2VoVTbKo"},{"round":"Open_Quarters","content":"This house would ban all procedures to alter one's racial appearance.","infoSlide":"","link":"","topic":{},"division":"","language":"English","tournamentID":"t2juKb62UT5HJ0kruUAw","id":"HothDFuUYoBomaObz1pu"},{"topic":{},"division":"","content":"TH opposes the derogatory usage of the inherent identity characteristics of dominant groups - e.g. \"You're so white.\", \"Man Tears\", \"ugh such a Karen\".","language":"English","infoSlide":"","link":"","round":"2","tournamentID":"Te8CYa0tImwgHXE99O7W","id":"HpLcofbiiq5Is3dnbC5p"},{"content":"THBT Ireland should create constituencies, elected by people who emigrate from Ireland.","round":"2","topic":{},"language":"English","tournamentID":"miNjiX9yX5Oq25V4yWeo","link":"","division":"","infoSlide":"","id":"HpRNX4e1vPfzNt6E3kG2"},{"division":"","link":"","round":"5","language":"English","tournamentID":"bxhnmh9CZq21XJcRU2BX","topic":{},"content":"You are one of New Zealand's top historians and have been asked by the Waitangi Tribunal to provide a record of harm borne by an iwi. You are confident your report will be accepted as true. This house would alter the historical documents to increase the iwi's likely Treaty settlement.","infoSlide":"","id":"HptM3aukAKFHKGSjP0ne"},{"round":"4","tournamentID":"sA03ySqGdgfByNOTfDfC","link":"","infoSlide":"","division":"","language":"English","content":"TH would prefer the reclamation of disputed monuments (e.g. the Rhodes Status at Oxford, Voertrekker Monuments in South Africa, Yakusuni Shrine in Japan, etc.) to their destruction.","topic":{},"id":"HrB1YtLv2I9Pwjj5qfeA"},{"division":"","topic":{},"round":"2","content":"THBT the United States should pursue aggressive containment of China (e.g. economic sanctions, diplomatic threats, remilitarization of South China Sea and Japan, countering China's influence in various regions).","language":"English","infoSlide":"","link":"","tournamentID":"1zpwTG4R66xy1c4CrMeq","id":"HrR2kTP2axcominUpRaq"},{"tournamentID":"WnH3YWwA4xB4HPfqIqea","content":"THW allow local communities to vote to reduce the amount of policing present within their districts.","topic":{},"round":"1","division":"","link":"","infoSlide":"","language":"English","id":"Hs6hCzKwXTaeb1kt6WCT"},{"language":"English","content":"THBT the US should abolish the jury system.","infoSlide":"","tournamentID":"7vCURwwkA80JiqPvxSZu","division":"","round":"1","topic":{},"link":"","id":"HsO85BHD6dSqjPsICndk"},{"content":"TH regrets the concept of an afterlife.","round":"3","infoSlide":"","link":"","tournamentID":"k1fYFDihwlGzjmVGfSXp","language":"English","division":"","topic":{},"id":"HtC1aBU1obyEwh9zmK17"},{"link":"","infoSlide":"","tournamentID":"4yVRmMNHzHW12EVIlnyZ","topic":{},"division":"","round":"5","content":"THW permit parents to stunt physical development of their severely mentally disabled children.","language":"English","id":"Hu0c1IKnPjkdEZQhyBbG"},{"content":"THBT the United Nations as an idea have failed by now (auf mittelbare Zeit).","link":"","language":"English","topic":{},"tournamentID":"nzVlQYCb0rPo23sPMkA5","round":"Open_Final","infoSlide":"","division":"","id":"HufgJYmFSWsGc1aJagCW"},{"tournamentID":"Mi4A41wAaOQFffgxIvSR","link":"","round":"ESL_Final","topic":{},"content":"THBT Britain should pay reparations to its former colonies.","division":"","language":"English","infoSlide":"","id":"HugsztlaghGTp8arE2mH"},{"tournamentID":"Wpv6iXJkIPUXYIkl0dST","division":"","topic":{"politics":{"title":"Politics","check":true}},"link":"","round":"2","infoSlide":"","content":"Chúng tôi tin rằng những cá nhân tiến bộ trong các nền dân chủ yếu kém có mong muốn phát triển xã hội nên làm việc cho các chính phủ tham nhũng.","language":"Vietnamese","id":"Hv5BlFv1nydr5T1QtX6i"},{"tournamentID":"py2YomguZSylDKYhWlhK","content":"THR the portrayal of parental figures as incompetent and/or out-of-touch in children's media.","link":"","topic":{},"infoSlide":"","round":"Novice_Semi","division":"","language":"English","id":"Hv9kFmTBqYJKxL0p8qYQ"},{"content":"This house believes France and Britain should support a permanent common EU seat in the UN Security Council in exchange for their seats.","tournamentID":"hlf4hP8CehYHd5yHET3L","topic":{},"division":"","language":"English","link":"","round":"2","infoSlide":"","id":"HvQMIDaN5oSTr1veaqd2"},{"topic":{},"division":"","content":"THBT there are no more heros.","link":"","infoSlide":"","tournamentID":"x1XtlIYDR23OSfEzPpkf","round":"4","language":"English","id":"HvimAM5ERpkeqU0xOyqv"},{"link":"","round":"5","tournamentID":"PNpMzinCvz3Z9bTJfV9t","content":"Given easily accessible technology to choose the sex of a future child, THW give financial stimulants to parents that choose to have girls.","division":"","topic":{},"infoSlide":"","language":"English","id":"Hw2Iu2uJdpKFM9Hoxsx4"},{"language":"English","content":"THW give less punishment to the poor for petty crimes.","division":"","link":"","topic":{},"tournamentID":"K8mVAYwcb9xlXvnmmJBY","infoSlide":"","round":"3","id":"HwLkRKivvrzonCnK2o1U"},{"link":"","language":"English","infoSlide":"","topic":{},"tournamentID":"jkJhYCzI3XvX3Zgm0Ivc","content":"THB that artists from dominant cultural groups should not seek to portray minority cultures.","round":"2","division":"","id":"HwW5XsC69I3siwQ8cbWW"},{"link":"","round":"Semifinals","content":"Chúng tôi lấy làm tiếc về sự ca ngợi văn hóa khởi nghiệp thay vì theo đuổi con đường sự nghiệp truyền thống.","infoSlide":"","topic":{},"language":"Vietnamese","tournamentID":"OLVGf3rE3KKirerr2vyk","division":"","id":"HwltZoh5d3jHcQ089qtR"},{"link":"","round":"ESL_Quarters","division":"","language":"English","tournamentID":"t2juKb62UT5HJ0kruUAw","topic":{},"infoSlide":"","content":"This House would ban any scheme intended to cure homosexuality.","id":"Hx4rUpjC8vd50wbX9xUS"},{"infoSlide":"","language":"English","topic":{},"round":"Open_Final","division":"","content":"This House supports military retaliation against cyberattacks.","link":"","tournamentID":"0mv3ToZPy0AwAsRnpZBN","id":"HxqpfUr40wsyq2Tqk1HB"},{"link":"","tournamentID":"zngB1WF8viOW2uGu6swZ","content":"THW ban all private healthcare in favour of a comprehensive public healthcare system.","topic":{},"division":"","language":"English","infoSlide":"","round":"9","id":"HyKJkrbR0Tpg2cCjxsf0"},{"language":"English","round":"2","topic":{},"link":"","content":"This House Believes That Israel Should Fine Actors Who Refuse To Perform In Settlements.","division":"","tournamentID":"RpQnqbHAxB8fhWBQcnaj","infoSlide":"","id":"HySobB7Tb6MHRH4L16JL"},{"content":"THBT parents of underaged children should not drink alcohol.","division":"","infoSlide":"","language":"English","link":"","round":"1","topic":{},"tournamentID":"D3NiQxizKJ06MnU4DU06","id":"HyafrNauuP8KEJDTJC7b"},{"topic":{},"tournamentID":"C09YJyBGrNu3L4IxdHCw","infoSlide":"In public health, the mitigation model seeks to \"flattening the curve\" to make the pandemic less intense by, say, isolating cases and quarantine infected households, while the suppression model seeks to stop the pandemic in its track by adopting a broader range of measures, including shutting in everybody, other than those who cannot work from home, and closing schools and universities.","division":"","language":"English","round":"Grand Final","content":"THBT less economically developed states should prioritize the mitigation model over the suppression model in combating COVID-19.","link":"","id":"Hyp1SIzcaqAjrf9GNEnw"},{"division":"","infoSlide":"","language":"English","tournamentID":"zppT86F7lAE0Gpp7tWYo","round":"D1","content":"THBT books are obsolete.","link":"","topic":{},"id":"Hz4lXiJw3OzN3cJcRR3U"},{"topic":{},"infoSlide":"","tournamentID":"NYyJaJXo1SigW6G8Y1Lm","round":"5","content":"This house believes that states of the former Yugoslavia should not commemorate the events of the Yugoslav Wars.","link":"","division":"","language":"English","id":"HzZUePLbxq1XbY2EA7HR"},{"link":"","tournamentID":"dptDC5a1y6D1HClBFEO4","round":"1","language":"English","infoSlide":"","division":"","topic":{},"content":"TH believes that the Feminist Movement should rebrand as Egalitarianism.","id":"I0bPM2LoQQj9QzOOXb3C"},{"language":"English","content":"THBT the State should put freedom over security in case of doubt.","round":"4","infoSlide":"","division":"","topic":{},"tournamentID":"VTJvfdWN7ZYlPkyTmGj1","link":"","id":"I1rRYBsjq3gOO7NlBo50"},{"link":"","division":"","language":"English","tournamentID":"7zFzGfa6wAGs2h8bbVhq","topic":{},"infoSlide":"","content":"THW forcibly remove the homeless from the streets and place them in mental institutions or rehabilitation.","round":"4","id":"I2hgJ06Dqsb7NV0tUfeA"},{"content":"THBT Carrie Lam should resign.","infoSlide":"","round":"3","tournamentID":"iWZAiFK5ukpLd7JEkH5z","division":"","topic":{},"link":"","language":"English","id":"I2jxc3rNcIDQ3PiiXilM"},{"round":"Open_Semi","link":"","infoSlide":"","content":"THR the commercialization of genetic testing (eg: AncestryDNA, 23 & Me).","language":"English","topic":{},"division":"","tournamentID":"7l98EUanZ85SaCAlZg2X","id":"I37sc9ApA8wuuplLnqpL"},{"content":"THS the managed relocation of biodiversity in response to climate change.","language":"English","round":"1","link":"","division":"","topic":{},"tournamentID":"0uv0Q5NYNxSkCbhPLLRo","infoSlide":"","id":"I3iikAYTJMa1ChvHddae"},{"content":"THBT Rockstar Games should make the lead protagonist of the next instalment of the GTA series female.","division":"","round":"3","language":"English","infoSlide":"","tournamentID":"qA0UqqN9np2leDGCNcck","topic":{},"link":"","id":"I3wYYRB6eXvq75nGhv9a"},{"round":"Grand Final","topic":{},"division":"","link":"","infoSlide":"","content":"THBT the West should end all arms sales and military cooperation with Saudi Arabia.","tournamentID":"XnmecTVfWWNVfWZaANER","language":"English","id":"I5BhlXRVZLMH3KA61f8y"},{"topic":{},"content":"THBT goverments should only fund bailouts of other countries if they get permission to do so in a referendum.","tournamentID":"uOrbqWx5KdpXchUpHb3Z","infoSlide":"","language":"English","round":"2","link":"","division":"","id":"I5HqqyIBUQ4dJXxhwGJG"},{"link":"","division":"","round":"4","topic":{},"content":"THW ban the production and consumption of pornography.","tournamentID":"v1Vi2iS2rLowvyk3vIMm","infoSlide":"","language":"English","id":"I6DMcbsPwnZGy0l1yEnw"},{"topic":{},"infoSlide":"","round":"Open_Quarters","content":"THBT cities should not use investment incentives to attract businesses.","language":"English","division":"","tournamentID":"PGbz2bx1wifAEJU64jdo","link":"","id":"I6I4YgqJEOUB68XQscqH"},{"division":"","infoSlide":"","content":"THR the narrative that resilience is a virtue.","tournamentID":"vzoLJmfiPRVvjgiu4Nrs","topic":{},"link":"","round":"Semifinals","language":"English","id":"I6WW8wAOmuyeg4Hfz1DF"},{"infoSlide":"","round":"Open_Final","division":"","language":"English","link":"","topic":{},"content":"Assuming the public would never find out, THP historical narratives that prioritize equal representation throughout history, even if people and events need to be fabricated.","tournamentID":"wL3wAKRctC8syY2eg8t3","id":"I7683MtuhmNx8Fczg1JF"},{"content":"THBT India should actively oppose Chinese aggression in Asia.","round":"4","division":"","topic":{},"tournamentID":"bTRRi7oLbaQA5e1qz6Qc","link":"","language":"English","infoSlide":"","id":"I7XEDDjnCuNmFxd8drVs"},{"link":"","division":"","language":"English","topic":{},"tournamentID":"aWnK845Eg0cHNR0VZu3e","infoSlide":"","round":"2","content":"THBT the state should fund the identity change, including changing their legal name and physical appearance, of infamous prisoners upon their release.","id":"I7iQ0XFcCj405RlnhJkH"},{"content":"That we should ban derivative markets.","division":"","language":"English","infoSlide":"","round":"2","tournamentID":"XL594Q2oZbvHmfmYKFvT","link":"","topic":{},"id":"I8S9eTqKtrTckWTyCezm"},{"division":"","infoSlide":"","content":"TH supports the legalisation of the production, sale, purchase and consumption of All recreational drugs.","link":"","language":"English","round":"5","topic":{},"tournamentID":"9l3qvCwMUUUzEdTVXCoM","id":"I8YSPkqfIBp2kuDYlCyM"},{"tournamentID":"uikc98CupbamVyAQIHsf","content":"THW guarantee military veterans jobs for life (through civilian state sector employment or/and state subsidy of private sector employment).","link":"","round":"2","language":"English","infoSlide":"","division":"","topic":{},"id":"I8jI3EXGoS4ktS6ZFplm"},{"topic":{},"division":"","round":"4","infoSlide":"","link":"","language":"English","content":"TH supports a fiscal union for the eurozone.","tournamentID":"JA7aghUhZy7G7yhivxxG","id":"I9SLy0ojZ2OdXI2eRPEN"},{"topic":{},"link":"","language":"English","division":"","content":"This House Regrets narratives that glorify the elderly (e.g. \"The old know better\"; \"The old deserve more\" etc.).","round":"1","infoSlide":"","tournamentID":"MKOx1AvBmfWL7cHrRXg2","id":"I9WfUyQ6MtcpT9Cqhodr"},{"link":"","round":"","language":"Vietnamese","division":"","infoSlide":"","topic":{"education":{"check":true,"title":"Education"}},"tournamentID":"nALUKfkpmOnWnQCzecru","content":"Chúng tôi sẽ loại bỏ tất cả yêu cầu và tiêu chuẩn đánh giá ở các cấp học cao hơn (VD: sự chuyên cần, các kì thi, công việc được giao, ...)","id":"I9nbTGrJ4nLunlTMySw0"},{"tournamentID":"OqQWJjNQBpGOYwMntw3z","language":"English","topic":{"fiction":{"title":"Fiction","check":true}},"round":"","infoSlide":"Suppose a zombie virus has the ability to spread strongly and easily hit half of the world's population. People who have the disease will have two states: when they do not have the disease, they will have the same humanity as ordinary people; when then get sick, they will completely lose their humanity. All of these patients were gathered in a separate area.","link":"","content":"THW everyone infected with this zombie virus instead of continuing to quarantine them.","division":"","id":"I9slmgVJzzCQ4wYWBTFQ"},{"infoSlide":"","language":"English","division":"","content":"TH as Russia supports partitioning Ukraine.","round":"2","tournamentID":"qj5XULQcWvkGn23VActf","topic":{},"link":"","id":"IA4BxqpXlIkMOnbCa7hy"},{"language":"English","content":"THB liberal and progressive groups should stop saying “Check your privilege”.","tournamentID":"BXqPhfwak2R1kYHV48bp","infoSlide":"","topic":{},"division":"","round":"8.1","link":"","id":"IBBdk1HVRw6csDHarwng"},{"topic":{},"division":"","round":"Open_Semis","tournamentID":"KEJHhRHDE4CXyVyy0Jy8","infoSlide":"","content":"This House believes that the media, including but not limited to journalists and photographers, have a duty to portray racist public figures in a negative light.","language":"English","link":"","id":"IBJ0g7KnrkpPEjZyXbAe"},{"link":"","content":"THBT a universal basic income is preferable to conditional welfare programs (e.g., SNAP, housing assistance, Medicaid).","tournamentID":"py2YomguZSylDKYhWlhK","language":"English","topic":{},"division":"","infoSlide":"","round":"1","id":"ICWOmAgvFAoxKKx6Nt2A"},{"language":"English","content":"THBT if he is deemed to be fully rehabilated, Ander Brevik should ultimately be released.","topic":{},"tournamentID":"dhjYMHAKQ3baHl4HMJbh","round":"4","link":"","infoSlide":"","division":"","id":"ICqhZEL48uekxgpQgaI8"},{"infoSlide":"","content":"That we support the abolition of the CFA franc.","topic":{},"language":"English","link":"","division":"","tournamentID":"1bHNYzF6GWRqdpr3f5vt","round":"4","id":"IDXtrrbkFXS5yZnkW3vW"},{"division":"","topic":{},"tournamentID":"Biz1VRjjdg8eWbm4NJr3","round":"Open_Quarters","infoSlide":"","link":"","language":"English","content":"This house believes that courts should not enforce wills that discriminate on the basis of race.","id":"IETlsTKiQKdABakXtLMG"},{"content":"THW require religious organisations to elect their leaders - Round 5.","language":"English","division":"","tournamentID":"Ryhdb4JOJYP96e5oa49b","round":"5","topic":{},"link":"","infoSlide":"","id":"IEyv3pk67JO0r2v9Qj2M"},{"tournamentID":"bH0N4QlKzNNQ8zL97OyO","topic":{},"content":"THBT attacks on non-combatants involved in war activities are a legitimate strategy in war.","division":"","infoSlide":"","round":"3","link":"","language":"English","id":"IFVdpofxpvHqEVSu3ihI"},{"language":"English","tournamentID":"ch7bmkDPz31zOvzM3txF","round":"Novice_Final","infoSlide":"","division":"","topic":{},"link":"","content":"THW ban all medical procedures intended to change an individual's racial appearance.","id":"IFXZB2eGlt0GMZ95Yatn"},{"division":"","round":"Open_Semis","topic":{},"content":"THBT the EU should offer membership to Middle Eastern and North African states that achieve successful democratic transition.","tournamentID":"AsoDjVHcLSyKMQmLkB7S","language":"English","link":"","infoSlide":"","id":"IFcuTboKFIO3wVce8JYf"},{"language":"English","link":"","topic":{},"infoSlide":"","round":"2","content":"This house believes that, in highly populated urban areas, the government should set a maximum rent that may be charged for residential tenancies.","division":"","tournamentID":"bxhnmh9CZq21XJcRU2BX","id":"IG0oh4841f1hVlvry3iS"},{"tournamentID":"r7L7x15Ixt9qEWgdPZ6u","round":"1","infoSlide":"","content":"THBT universities should not interfere with the choices of topics and guests at events organized by their students.","topic":{},"language":"English","division":"","link":"","id":"IGOMGKzNa1fzGB6Wg8Gm"},{"link":"","round":"5","content":"THBT social media platforms should aggressively prioritise content from the mainstream media over less established media outlets.","language":"English","infoSlide":"","topic":{},"division":"","tournamentID":"o85wPSMfUIKlsHQtkpnr","id":"IHGVRjZSOiYIblUw6FRC"},{"infoSlide":"","tournamentID":"jiJ3t0fz2aMel6atC1HM","language":"English","topic":{},"division":"","link":"","round":"5","content":"THW replace parliamentary elections with a lottery system.","id":"IHMiJTU8k4Ne29sVSoSC"},{"infoSlide":"","tournamentID":"BtqBGdAUsTtPKorZOcBX","division":"","topic":{},"content":"THW give more votes to citizens according to their performance on a current affairs test.","link":"","round":"Open_Final","language":"English","id":"IHTNLiaATgIfNhIw1r1w"},{"infoSlide":"","tournamentID":"xewLQXUxvfe0Xal1qtHM","division":"","topic":{},"content":"THBT the European Union should prioritise unemployment over further austerity measures.","link":"","round":"ESL_Final","language":"English","id":"IJ55N2rloSwSbyRT9lPh"},{"link":"","language":"Vietnamese","infoSlide":"","tournamentID":"OLVGf3rE3KKirerr2vyk","content":"Chúng tôi tin rằng hệ thống giáo dục đại học nên ưu tiên giáo dục khai phóng hơn giáo dục chuyên ngành.","round":"1","topic":{},"division":"","id":"IJUIALJZBBqYlZk0u8pi"},{"content":"THBT the EU should expel member states who join the Belt & Road initiative.","tournamentID":"jDG8reClMB02DIxLR5LL","infoSlide":"","link":"","topic":{},"language":"English","round":"3","division":"","id":"IJX2LySmCtaDCF0cVtvS"},{"content":"TH, as a woman, would sleep her way to the top.","tournamentID":"KEJHhRHDE4CXyVyy0Jy8","topic":{},"language":"English","division":"","link":"","infoSlide":"","round":"4","id":"IJdJ54SHJaxFCjnaVCsT"},{"topic":{},"division":"","tournamentID":"MNBafFvHXt5WwIet1zGa","round":"4","infoSlide":"","language":"English","link":"","content":"THBT environmental organizations should start a campaign of sabotage and destruction against major pollution companies.","id":"IJoJh7saJPAy07bzKFQp"},{"content":"Chúng tôi phản đối việc khắc họa sức mạnh tình bạn là giải pháp cho mọi vấn đề.","infoSlide":"Trong rất nhiều truyện tranh và các tác phẩm chuyển thể, ở các tình tiết mấu chốt, quyết định thành bại, sức mạnh tình bạn được miêu tả như yếu tố để giành lấy chiến thắng.","language":"Vietnamese","topic":{},"link":"","round":"Quarterfinals","tournamentID":"mkrRVvz5EWSZie6LBtCH","division":"","id":"IJrAVRzdLSixOngFvYpd"},{"tournamentID":"TN94ucwzVJ2xKpp2fcrc","content":"THR the existence of religious political parties.","language":"English","topic":{},"infoSlide":"","round":"1","division":"","link":"","id":"IKnACk9hVzgix2bLLc32"},{"round":"1","infoSlide":"","division":"","content":"THW require all news media organisations to select and publicly state a political affiliation.","topic":{},"language":"English","link":"","tournamentID":"8PjX16DCJ3bPRWbiNKNn","id":"ILB3qsphFbJ8KubpSBuv"},{"infoSlide":"","link":"","tournamentID":"Wg2225mgODwBGF4GMBLR","language":"English","round":"5","topic":{},"division":"","content":"THW require news websites and publications to provide opposing points of view on all politically contested issues.","id":"ILLlskof8dQuemji5Feq"},{"round":"1","division":"","language":"English","topic":{},"tournamentID":"ZKj5YfRQe4wJF8bx4fLp","link":"","infoSlide":"","content":"This house believes that the gay community should “out” gay celebrities.","id":"ILMOFOpsudbyrwIR7qQh"},{"tournamentID":"mzvnxBrGLKyjonGHD82N","round":"2","content":"THW introduce ethnic and gender quotas for film and television programs.","division":"","link":"","infoSlide":"","topic":{},"language":"English","id":"ILzWeGA7oiuEtA4qApsL"},{"topic":{},"round":"1","tournamentID":"mzvnxBrGLKyjonGHD82N","infoSlide":"","link":"","division":"","content":"THB the pope should be elected by all members of the Catholic Church.","language":"English","id":"IMiVHLpt1RAnre2Fo7FP"},{"division":"","content":"That, as Imran Khan, we would issue a public apology for 1971 to Bangladesh.","topic":{},"tournamentID":"oaIuwyOX7NBIwaiSaVJ8","infoSlide":"","round":"Novice_Final","link":"","language":"English","id":"IMlVZa98xIFTv6egnjTP"},{"division":"","infoSlide":"","round":"1","topic":{},"content":"THW ban child beauty pageants.","link":"","language":"English","tournamentID":"7zFzGfa6wAGs2h8bbVhq","id":"INTxuMAiroUBaB3sVNpz"},{"infoSlide":"","language":"English","tournamentID":"mEr4tnJE0kt1V0JvT2KG","link":"","content":"TH Supports Voluntourism.","division":"","round":"1","topic":{},"id":"INZSuUmqcSveINkqgL0J"},{"topic":{},"round":"3","infoSlide":"","content":"THBT Google, Youtube and social media platforms should remove content which is deemed as insulting to religion.","division":"","link":"","tournamentID":"rMtZQSWssQ8170WIyJTX","language":"English","id":"IOM7d1jEigSMVzWIq3EE"},{"infoSlide":"","division":"","link":"","content":"This house, as a SEA nation involved in the South China Sea conflict, would opt to actively seek closer ties with China.","language":"English","topic":{},"tournamentID":"Nzien6R9RXvOTrNMJsza","round":"Open_Quarters","id":"IOsflpdFbrsdUta00s26"},{"division":"","language":"English","infoSlide":"","topic":{},"round":"2","link":"","tournamentID":"yhJgdE0VFcsqlvWffep1","content":"THBT domestically, Margaret Thatcher’s premiership did more harm than good.","id":"IOxTCX6sd2bNOy5zTHVI"},{"tournamentID":"aC5itVCb0EApgG8DEaqA","round":"4","content":"THBT Western states should substantially support the Bill and Melinda Gates Foundation in its efforts in the developing world to promote birth control that is undetectable by men.","link":"","language":"English","division":"","topic":{},"infoSlide":"","id":"IOzwSNaQhWcKtCDpZroE"},{"round":"3","content":"THW defend Anders Breivik.","infoSlide":"","link":"","topic":{},"language":"English","tournamentID":"RA6EqhjHK7wF8NHgzThB","division":"","id":"IPOdLiQTceqyhephSlEx"},{"language":"English","infoSlide":"","topic":{},"division":"","content":"TH prefers bail-ins to bail-outs.","tournamentID":"bTRRi7oLbaQA5e1qz6Qc","round":"2","link":"","id":"IPQBhbv9OsWO9yTdzM4q"},{"round":"2","link":"","content":"THW ban political contributions.","topic":{},"infoSlide":"","tournamentID":"IKVZuvI9noj2HK4GNxgS","language":"English","division":"","id":"IQ1nIPCxhkZfQTyJAjB3"},{"content":"THW aggressively promote scientific rationalism in schools.","topic":{},"division":"","infoSlide":"","language":"English","link":"","tournamentID":"f1thAYfptp3bklFlrsSe","round":"3","id":"IQGCf8UoS6rltBhLGUne"},{"round":"ProAm_Final","infoSlide":"","content":"THR The rise of \"clean living\" gurus.","link":"","tournamentID":"d2f6RXp0B99iQq4RFZeE","division":"","language":"English","topic":{},"id":"IS7kjSRdI7FIb6wyytvc"},{"language":"Vietnamese","infoSlide":"Luật Ấn Độ quy định công ty viễn thông tư nhân để có giấy phép hoạt động phải khai báo AGR (tổng thu nhập điều chỉnh) và hàng năm chia một phần AGR với chính phủ. Cuối năm 2019, hai nhà mạng lớn của Ấn Độ là Bharti Airtel và Vodafone Idea bị Tòa án tối cao Ấn Độ kết án khai báo AGR không chính xác và buộc phải bồi thường xấp xỉ 12,5 tỷ USD. Vụ kiện khiến giá cổ phiếu của hai công ty liên tục giảm mạnh và khoản tiền bồi thường quá lớn đẩy 2 nhà mạng đến rìa phá sản. Việc này đã khiến cuộc đấu giá phổ tần số dành cho 5G của Ấn Độ bị trì hoãn nghiêm trọng vì hai nhà mạng lớn nhất sẽ không có khả năng tham gia đấu giá sau khi trả hết nợ. Trước tình hình này, chính phủ Ấn Độ kiến nghị Tòa án Tối cao cho phép hai nhà mạng trả dần khoản nợ trong 20 năm.","round":"Quarterfinals","division":"","tournamentID":"RNJanNDlcAfI2uIKx9LF","topic":{},"content":"Chúng tôi ủng hộ kiến nghị của chính phủ Ấn Độ lên Tòa án Tối cao để gia hạn cho nhà mạng Bharti Airtel và Vodafone Idea.","link":"","id":"ISatZYx40eQZhhY9WyLX"},{"topic":{},"language":"English","link":"","tournamentID":"jpLuasMJYB40s1bJk2Ia","content":"THBT Western States should irrevocably remove citizenship of citizens who join the so-called Islamic State.","division":"","round":"1","infoSlide":"","id":"ITWBLgQwBDQJqOmOD3Zv"},{"link":"","division":"","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"infoSlide":"","round":"","tournamentID":"3B01KdqnCVzQEVjKcHiT","content":"Chúng tôi tin rằng việc chính phủ phóng đại tác hại của các vấn đề xã hội để ban hành chính sách không được ủng hộ rộng rãi mà họ cho rằng có lợi cho an ninh quốc gia là điều chính đáng.","language":"Vietnamese","id":"ITarjUGiHELyjNXJ4OQr"},{"topic":{},"language":"English","division":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","round":"EFL_Quarter","content":"That the state should pay reparations to individuals convicted in the past for actions that are no longer recognised as a crime.","infoSlide":"","link":"","id":"ITf7uGawQWSnvd2ybYU1"},{"language":"English","infoSlide":"","division":"","tournamentID":"kFpM1KUkMmDded3L4Zmm","link":"","round":"8","topic":{},"content":"This house would apply a lower rate of income tax to women.","id":"ITrifGWBncZkzJzy5ZMB"},{"link":"","language":"English","tournamentID":"iWZAiFK5ukpLd7JEkH5z","topic":{},"round":"Open_Semi","infoSlide":"","content":"THBT India should join ASEAN.","division":"","id":"IUAx4XvdW7WXUGLS5CM8"},{"infoSlide":"The 2021 Myanmar coup began on the morning of 1 February 2021 when democratically elected members of Myanmar's ruling party, the National League for Democracy, were deposed by the Tatmadaw (Myanmar's military). The Tatmadaw declared a year-long state of emergency and declared power had been vested in Commander-in-Chief of Defence Services Min Aung Hlaing. The coup occurred the day before the Parliament of Myanmar was due to swear in the members elected at the November 2020 general election, thereby preventing this from occurring. The Association of Southeast Asian Nations (ASEAN) is a regional intergovernmental organization comprising ten countries in Southeast Asia: Brunei, Cambodia, Indonesia, Laos, Malaysia, Myanmar, the Philippines, Singapore, Thailand, and Vietnam.","round":"Open Final","language":"English","content":"THBT ASEAN should suspend membership of Myanmar until the Tatmadaw cedes power to the democratically elected government.","topic":{},"link":"","tournamentID":"JHo8pIpzQxzUKHUwVDFf","division":"","id":"IVOsPFcGppHURZbsyZxU"},{"language":"English","division":"","round":"Open_Semis","content":"THBT Poland should join the Eurozone as soon as possible.","link":"","infoSlide":"","topic":{},"tournamentID":"oeH2vC3Ht09TthfmAx2F","id":"IVSLVCPkxIkbIUPMk6PT"},{"tournamentID":"KncW7pH1nDIom3xK89VG","link":"","content":"Chúng tôi phản đối quan niệm rằng sự phát triển công nghệ (ví dụ như đầu tư mạnh vào năng lượng tái tạo, xây dựng tường chắn sóng) nên là hướng đi chính để giải quyết biến đổi khí hậu.","language":"Vietnamese","round":"Octofinals","infoSlide":"","division":"","topic":{"environment":{"title":"Environment","check":true}},"id":"IVgCBocs3zLCwPy9A5AY"},{"content":"THBT protesters should not use memorials as sites for protest.","division":"","tournamentID":"H2ZQZD4EPmxpktxvJnUz","infoSlide":"","round":"6","language":"English","topic":{},"link":"","id":"IVioImt6sPDCEQvEze7v"},{"round":"3","content":"You are the ruler of a militaristic Greek city state. The Archameid empire has invaded mainland Hellas, if they are successful, your state will be subjugated. The other city states are in disarray and cannot decide on how to respond. You know that there is no chance of victory alone. That you should march against the Persian threat.","language":"English","tournamentID":"HjQJA65fZ9igHKO8DLAP","division":"","link":"","topic":{},"infoSlide":"","id":"IVoCiSZtXaZEl0EvcqQN"},{"content":"THS quotas for women in parliament.","link":"","infoSlide":"","topic":{},"language":"English","tournamentID":"WuHMyE7RKYgEDPOjOxp6","division":"","round":"4","id":"IWFh0Cfs3ioAw1gFO6Vo"},{"tournamentID":"n7qv29PmNuF5SOe42oiz","language":"English","content":"That feminists should actively campaign for quotas and increased female involvement in the military.","topic":{},"round":"1","division":"","link":"","infoSlide":"","id":"IWxAEbPinfypxFjPjg2S"},{"topic":{},"link":"","content":"THW ban the use of religious rhetoric and symbols in political campaigns.","round":"5","tournamentID":"8umdzosR2LakbIpLGOan","infoSlide":"","language":"English","division":"","id":"IXU6UNACnMnSTAnVtTqr"},{"topic":{},"language":"English","infoSlide":"","round":"Open_Semis","content":"THS People's Quantitative Easing.","tournamentID":"m357g5mmEMxSAwbDEk5d","division":"","link":"","id":"IXoOYEnE00HcCT4tHAQN"},{"tournamentID":"NYyJaJXo1SigW6G8Y1Lm","round":"Open_Quarters","content":"This house believes that supreme/constitutional courts should not have the power to strike down legislation.","infoSlide":"","language":"English","link":"","topic":{},"division":"","id":"IZ5AKa3HfJGDLDgco2Qp"},{"infoSlide":"","language":"English","content":"the Greek left wing party Syriza has promised to renegotiate the current bailout, and turn back a number of austerity measures, such as lowering of pension and welfare benefits. Motion: As a Greek voter, THW vote for Syriza.","topic":{},"round":"Open_Final","link":"","division":"","tournamentID":"pTevyvO7FxIMrQi4ThJ5","id":"IZXtfNa6fmeivYxa1PFL"},{"content":"This house believes that the military should overthrow governments which have lost popular legitimacy.","language":"English","link":"","topic":{},"tournamentID":"ZKj5YfRQe4wJF8bx4fLp","infoSlide":"","round":"2","division":"","id":"IagUkIkd6zS9d6uOPo8a"},{"topic":{},"tournamentID":"5Qomv7BFHTKmY4PchwDr","content":"That we regret the norm that doctors should defer to their patients' wishes, even where doing so is not in those patients' best interests.","language":"English","link":"","division":"","infoSlide":"","round":"1","id":"Iai7j77iuxZyscV44AY7"},{"link":"","language":"English","infoSlide":"","tournamentID":"Kv7YNlz47VitorsH2zY7","topic":{},"content":"TH supports Belfast City Council's decision to restrict the flying of the Union Jack outside Belfast City Hall.","division":"","round":"Open_Final","id":"Iaik2agjbEeWp10PdPuB"},{"link":"","tournamentID":"Cx2GIJEWrhOBR3DTErNu","round":"2","content":"THBT Beyonce is good for feminism.","topic":{},"language":"English","division":"","infoSlide":"","id":"Ib0NzTWOuFKiB1CNeYov"},{"content":"THW force anyone suspected of being a 'stolen child' [under the Argentinian military junta 1976-1983] to undergo DNA testing to establish whether they are indeed stolen children and then make the results public.","topic":{},"link":"","round":"5","infoSlide":"","language":"English","tournamentID":"Iv1dWODCjV8TBafyTxx7","division":"","id":"IbwWojA7rVUdSd8kFABm"},{"link":"","content":"In countries with a state alternative, THW ban private healthcare.","infoSlide":"","language":"English","tournamentID":"v1Vi2iS2rLowvyk3vIMm","topic":{},"division":"","round":"1","id":"Ic4dKVsCcoqCgq6miwCj"},{"language":"English","link":"","round":"3","tournamentID":"t2juKb62UT5HJ0kruUAw","content":"This house would financially incentivize both inter-faith and inter-ethnic marriages.","infoSlide":"","topic":{},"division":"","id":"IcH6u5ggctbRzXfmw7AD"},{"topic":{},"language":"English","tournamentID":"h373wn3dFw9UcWDcJpyy","link":"","division":"","content":"Paternity leave should be equal to maternity leave.","round":"1.1","infoSlide":"","id":"IcMTf9vaTc2zBiMIfSSc"},{"topic":{},"tournamentID":"nKWTDNECNNvbMxNcdVJM","division":"","round":"3","content":"THBT it is in the interest of Germany to support EU bonds.","link":"","language":"English","infoSlide":"","id":"IdJMKE60d5omlCu6fM65"},{"infoSlide":"","round":"4","content":"THBT the US should impose sanctions on Myanmar until a safe zone is created in the Rakhine state for Rohingya civilians.","link":"","division":"","language":"English","topic":{},"tournamentID":"EpANk5V3VQNFWagnktFN","id":"IfLRaYzmhjcleHcjANq5"},{"round":"5","topic":{},"link":"","language":"English","division":"","content":"This House Would not intervene in the internal affairs of Venezuela.","infoSlide":"","tournamentID":"pgslzxqwnT5Ei6UMGh69","id":"IfXcMNhnQOWdCgZ6dzIh"},{"link":"","round":"1","content":"THBT the Brasilian state should prosecute a murder that happens among one of the uncontacted peoples in the rainforest.","infoSlide":"","topic":{},"language":"English","tournamentID":"VTJvfdWN7ZYlPkyTmGj1","division":"","id":"Ig6joCDF15te0RmIlcxv"},{"content":"This house would not prosecute people living below the poverty line for purely acquisitive crime.","topic":{},"tournamentID":"pLQyWywMwoV4AU3XoFJO","round":"Open_Semis","infoSlide":"","language":"English","link":"","division":"","id":"IgwW4RuAMBGxo5XLSuQD"},{"infoSlide":"","round":"Octofinals","topic":{},"division":"","content":"In the wake of the frustration brought about by the COVID-19 pandemic, THBT the African states should not have discontinued the use of CFA Franc.","tournamentID":"9yPqE2fe1oaHsd7ankOa","link":"","language":"English","id":"IgyhNEUGSqhsNeFmYV27"},{"topic":{},"round":"4","link":"","content":"Insofar as it is cost effective, THBT authorities should routinely gather and access as much information, including private and personal information, that may conceivably be useful in solving or preventing crime, as possible.","infoSlide":"","division":"","language":"English","tournamentID":"pLQyWywMwoV4AU3XoFJO","id":"Ih0jvywREt5UQX7XLcZJ"},{"tournamentID":"cBdmYwHV9z5pBS0q23lF","division":"","link":"","round":"2","infoSlide":"","topic":{},"language":"English","content":"THBT the EU should cut structural funds to member states that undermine civil and political rights (e.g. restrict court independence, reduce media and academic freedom, etc.).","id":"IhlLA9ULXSvo0Bi5Ngru"},{"content":"THW privatise the distribution of welfare.","round":"Open_Final","infoSlide":"","link":"","tournamentID":"hxlmkaNuNgQ6AIDlbsIh","division":"","language":"English","topic":{},"id":"IhnCK6VtPSxeUcNOce4h"},{"tournamentID":"tGXgNi0S9KFBe1hUBu15","division":"","content":"THBT the feminist movement should actively recruit conservative women.","infoSlide":"","link":"","round":"4","language":"English","topic":{},"id":"Iht0hH6YaYhS68Jv6oQ2"},{"tournamentID":"vTB5rmh37ZMzdOCJ34sF","round":"4","link":"","division":"","topic":{},"infoSlide":"","language":"English","content":"THBT LGBTQ+ campaigns should criticise the nuclear family.","id":"IiAhDYcffRUSltLM7hN3"},{"link":"","infoSlide":"","language":"English","tournamentID":"nDjxmwMznw4ZJasK7Taj","topic":{},"content":"THW Welcome the End of American Intervention.","division":"","round":"Open_Final","id":"IiIro9t2Fv0Cqrgbfif8"},{"infoSlide":"","topic":{},"division":"","round":"4","language":"English","link":"","tournamentID":"KUgzKY5FHtox24CaztLJ","content":"THBT institutional art credentials are bad for art.","id":"IiioPddzKLARCCzpWDcO"},{"round":"Novice_Final","tournamentID":"KMhBpmj1LWPj5LN0aFUK","division":"","topic":{},"language":"English","content":"Assuming feasibility, THW create sovereign states for each major religion, and offer citizenship to anyone who professes to be a part of that religion.","link":"","infoSlide":"","id":"IjQ90EXFDzW61I0Rr3ZM"},{"division":"","round":"1","infoSlide":"","link":"","content":"That we regret Drag Culture going mainstream.","language":"English","topic":{},"tournamentID":"fkUHa28aVk8LYYEAdofu","id":"IjRg8zs5ztfQDuqKfI1s"},{"tournamentID":"DV29K6gIIl6nTiYeWo2j","round":"Novice_Semi","language":"English","content":"THBT US presidential debates bring more harms than good.","link":"","infoSlide":"","division":"","topic":{},"id":"IlQdpYF8qxaKNJg0ETRG"},{"language":"English","infoSlide":"","round":"1","division":"","link":"","topic":{},"content":"THW exhibit the Ten Commandments in all public schools of the EU.","tournamentID":"kBpjU5iP0oBmNFZAtFoS","id":"IlXaw6rHt2bdO0VLPvOI"},{"tournamentID":"py2YomguZSylDKYhWlhK","division":"","round":"Open_Quarter","content":"THBT the United States, when confronting organizations designated as terrorist groups, should pursue a strategy of engaging with perceived moderates within the group’s leadership in an attempt to exact concessions (e.g., prisoner exchanges, cease-fires, or political freedoms for minorities under their control) rather than pursuing a policy of explicit non-engagement.","infoSlide":"","language":"English","topic":{},"link":"","id":"IlhAzPEkEYO7kSKXbyxB"},{"content":"THW make voting mandatory.","language":"English","infoSlide":"","tournamentID":"aC5itVCb0EApgG8DEaqA","topic":{},"division":"","round":"5","link":"","id":"Ilpw5KtABLJ8k4Jc573k"},{"content":"That we should make it an offense to witness a crime and not report it.","link":"","language":"English","tournamentID":"XL594Q2oZbvHmfmYKFvT","round":"1","infoSlide":"","topic":{},"division":"","id":"Im8iNkW5k9llabVNkVsA"},{"link":"","content":"THW look back in anger.","topic":{},"infoSlide":"","division":"","tournamentID":"DSFg77BvC9y4FK5pBVIv","language":"English","round":"14","id":"InUBwZlNybLwAtL2549f"},{"topic":{},"link":"","round":"3","infoSlide":"","tournamentID":"lPXoAGmpaSNRUUBSEwTy","content":"THW make votes public.","division":"","language":"English","id":"IndfYVMoGpGA3aN2Qz3f"},{"link":"","tournamentID":"D3NiQxizKJ06MnU4DU06","content":"THW ban all individuals who have advocated or used violence in order to further a political cause in emerging democratic states, from standing for future elections.","language":"English","infoSlide":"","topic":{},"division":"","round":"Open_Semis","id":"IoUD1EWgjtihc0nyBZBv"},{"language":"Vietnamese","content":"Chúng tôi lấy làm tiếc về sự bùng nổ các hoạt động cộng đồng, hoạt động thiện nguyện của học sinh sinh viên.","infoSlide":"","division":"","link":"","topic":{},"round":"Grand Final","tournamentID":"sIrS2zWJD8m7ibVjvyDN","id":"IpdrGSnolMZGlpVyxGra"},{"tournamentID":"cBdmYwHV9z5pBS0q23lF","division":"","link":"","infoSlide":"","topic":{},"round":"4","language":"English","content":"THW make the weight of votes proportional to a person’s expected remaining lifespan*.","id":"IrHcm5ApMnZn15T7VwKq"},{"language":"Vietnamese","content":"Chúng tôi ủng hộ sự áp dụng của Luật Người tốt.","infoSlide":"Luật Người tốt, hay Luật Người Samaria nhân hậu (Good Samaritan Law) là luật giảm thiểu trách nhiệm pháp lý của những ai giúp đỡ người bị thương hoặc bị bệnh, tuy không giúp tránh khỏi bị khởi tố, nhưng sẽ giúp giảm án một cách đáng kể.","topic":{},"link":"","tournamentID":"znXRdnU2llK8fXmHlci5","round":"4","division":"","id":"IrbgX6Sge0P0IYkpGGhB"},{"infoSlide":"","division":"","round":"3","language":"English","link":"","topic":{},"content":"THBT Ezra Miller should drop out of the role for future movies in the series.","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","id":"IrhoRHSw8D6TQZPWDqsb"},{"language":"English","link":"","content":"THBT on October 5th blood should have been spilled.","division":"","tournamentID":"HbzzxzNaEfw54UvTulVq","infoSlide":"","topic":{},"round":"Open_Semis","id":"IsapcMw5XWwb2PPzHH7p"},{"tournamentID":"wYhrxey2tVddZfEkGSYA","division":"","round":"Open_Semis","link":"","content":"Should the country grant bravery medals to drone soldiers?.","infoSlide":"","language":"English","topic":{},"id":"ItdSwMfNb99qVerWeMjp"},{"infoSlide":"","link":"","content":"This House believes that the British Museum should give all artifacts to the nations where they originated.","division":"","topic":{},"round":"Open_Semi","language":"English","tournamentID":"pQSBc1H8lG2P8ftbCWZ8","id":"IukB85NNhdsU3bpK73Z5"},{"tournamentID":"3VTSywK012zU6GDLqZzC","division":"","content":"THB Women Are Legitimate in Using Erotic Capital.","round":"3","language":"English","topic":{},"infoSlide":"","link":"","id":"IuzVnw3hCRcbVZ1iyCA5"},{"division":"","content":"That we support compassionate conservation.","language":"English","tournamentID":"5Qomv7BFHTKmY4PchwDr","round":"Open_Final","link":"","topic":{},"infoSlide":"","id":"Iv6F5qwo9BdFEDip3U0D"},{"topic":{},"content":"TH welcomes the presence of gender-neutral schools.","language":"English","division":"","tournamentID":"x0AmWHi8lm3JhQyyhsfo","round":"2","infoSlide":"","link":"","id":"Iwp3fAUZE2ZAPj0uzSN2"},{"link":"","content":"THW trigger a general election when a country goes into recession.","topic":{},"language":"English","round":"2","division":"","tournamentID":"rkItJ1M9he5ApXeOVBjJ","infoSlide":"","id":"IwsRJimlRs0Nyp9pxYIs"},{"topic":{},"tournamentID":"pp2oK2CPkxitjQPpwO4o","link":"","round":"1","content":"THW only give unemployment benefits to individuals if they agreed to relocate to areas where employment is significantly more likely.","infoSlide":"","language":"English","division":"","id":"IwvvhTDdbmcH6CSy7PdL"},{"division":"","content":"THP a world where the legacies of radical revolutionaries are glorified over the legacies of peaceful revolutionaries.","round":"3","link":"","infoSlide":"","language":"English","tournamentID":"m6JzV67uYJSVBRpAbgL7","topic":{},"id":"IxWw5MD5rfJYlhaxAH4c"},{"infoSlide":"","division":"","tournamentID":"48Ba3dAlJxoct1Z9f7GA","topic":{},"content":"THW show a more prominent role for women in history books.","round":"5","link":"","language":"English","id":"IysqwxbzwJtvNf8LzujH"},{"tournamentID":"68SrKFb9XtsQrLtqLtjO","content":"TH, as Israel, would end compulsory military service.","division":"","language":"English","round":"3","topic":{},"link":"","infoSlide":"","id":"Iz0gkWrYoE8NejDM21t6"},{"link":"","topic":{},"language":"English","infoSlide":"","division":"","tournamentID":"POdYlP5an146yzuVI1Xg","round":"5","content":"THBT western European states should adopt the eastern European ban on all Communist symbols.","id":"IzwSv36UORvz79UAaXmN"},{"round":"7","division":"","language":"English","topic":{},"tournamentID":"5Qomv7BFHTKmY4PchwDr","infoSlide":"","link":"","content":"That we should ban mortgage-based financial derivatives.","id":"J0A6QBb8RuIoGEEMMTcS"},{"tournamentID":"v3Bq7DLUeCcPyvQZjJbj","round":"Open_Semi","content":"THBT galleries and media outlets should not show content that is “of the time” but now considered offensive (e.g. racist stereotypes in the Simpsons, homophobic works of art).","link":"","topic":{},"infoSlide":"","language":"English","division":"","id":"J0taGw4fTbpaOS9ntfJL"},{"topic":{},"tournamentID":"IpWyfCcksctR86jKX66g","division":"","round":"8","language":"English","content":"THBT The Palestinians Should Accept Complete Demilitarisation in Immediate Return for A Sovereign State.","infoSlide":"","link":"","id":"J1atXEPyIROH704bkUFV"},{"topic":{},"tournamentID":"Y9leM2xAYiRjIMMIqgfX","content":"THW not allow immigrants with illiberal values, such as homophobia, to settle in the country.","division":"","round":"2","language":"English","link":"","infoSlide":"","id":"J3RQsxsigXUMJl9ciFuI"},{"language":"English","infoSlide":"","link":"","content":"From behind a veil of ignorance, TH would choose to not be born.","topic":{},"tournamentID":"ChiU8yMbLI2Y2q5rwURP","round":"Open_Final","division":"","id":"J4ckIrEqomPLzcPIPZXm"},{"infoSlide":"","link":"","content":"Chúng tôi lấy làm tiếc sự nhân đạo hóa các nhân vật kẻ ác trong phim ảnh và truyền thông. (VD: Joker, Maleficent, Gru, Megamind, etc.)","language":"Vietnamese","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"division":"","round":"","tournamentID":"D8AtyrmDZV48giPFtym5","id":"J4sIpvz6VbK127NdQvlp"},{"language":"English","round":"Open_Final","content":"THBT the discovery of a means to stop the human aging process would be a curse to humanity.","link":"","topic":{},"tournamentID":"XGnGWhzkfstV6wutkTXQ","division":"","infoSlide":"","id":"J52LG34b40d7KDTCia4k"},{"tournamentID":"CbtTNoNzLTvfNvRWmMc2","division":"","language":"English","round":"","infoSlide":"","topic":{"environment":{"check":true,"title":"Environment"}},"link":"","content":"We believe that environmental refugees should be granted citizenship in countries that have heavily contributed to global pollution.","id":"J5LJfoMe2MLtHQ0QVGDQ"},{"link":"","infoSlide":"","language":"English","topic":{},"division":"","tournamentID":"fBPBbh32BZ2p0Y1Fy5Yi","round":"Junior Semifinals","content":"This house would significantly tax all expenditures on private education and use the revenue to fund public education.","id":"J5XAZ00KnvWqmK4ZEMiQ"},{"link":"","content":"Chúng tôi, với tư cách là chính phủ Mỹ, sẽ ưu tiên thiết lập quan hệ kinh tế với Triều Tiên thay vì yêu cầu giải giáp vũ khí hạt nhân.","tournamentID":"JaZQ7l5B4R6smBKTdFQJ","infoSlide":"","language":"Vietnamese","topic":{},"division":"","round":"","id":"J5mPX78EtKVHuTt6q2aw"},{"topic":{},"link":"","tournamentID":"S2mG18EWYdh2bPEadyd9","division":"","round":"5","infoSlide":"","content":"As someone who is in a healthy fling with someone else, but not sexually satisfied, THW ghost instead of breaking up.","language":"English","id":"J6G4t23d2odUEvZ3DLAI"},{"language":"English","division":"","topic":{},"tournamentID":"AhKyFYR1ZI0UjUmZnaXu","link":"","content":"THR the emphasis on the concept of \"justice in the afterlife\" within religious preaching.","infoSlide":"Within many religions, the concept of \"justice in the afterlife\" is emphasised, as a means to teach people that worldly systems of justice are not final and that guilty individuals will one day be judged by their Maker; in the ultimate and most important judgment.","round":"Open Octofinals","id":"J7k33xOtBIIZg1l7HMD5"},{"language":"English","content":"TH supports ANTIFA.","link":"","round":"Open_Semis","topic":{},"tournamentID":"Bx1uUqHBcAJ7qAZcUwyz","division":"","infoSlide":"","id":"J7koo0pCTJuf67zvm4Eq"},{"division":"","link":"","infoSlide":"","tournamentID":"nALUKfkpmOnWnQCzecru","content":"THW removes all laws that relate to filial responsibilities.","round":"","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"language":"English","id":"J7rhtKgHZrJfus6Wb8Yv"},{"link":"","infoSlide":"","tournamentID":"lgIRNhKweWPgrrSL34Lh","topic":{},"content":"THBT minority groups should not appropriate or reappropriate terms that have been used against them as slurs.","division":"","language":"English","round":"3","id":"J8KUq7fT6Bglr20sOCAO"},{"content":"This house prefers a world in which universities charged tuition based on student earnings after graduation.","topic":{},"language":"English","tournamentID":"2D1SBKQDFgG0zGjX4oHP","round":"2","infoSlide":"","link":"","division":"","id":"J8iwWmZpKbmZ7RBBtvwD"},{"infoSlide":"","tournamentID":"CLp8pjuIm6vddMdiBEC5","content":"THW give land grants to women in developing nations.","round":"Open_Quarters","division":"","link":"","language":"English","topic":{},"id":"J9izh1ZO1Ac180RjGaJ2"},{"division":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","topic":{},"content":"That it is illegitimate for states to limit immigration unless there is a clear threat to national security.","round":"EFL_Semi","link":"","language":"English","infoSlide":"","id":"JA8PMByXOpSFZl0Vvj2K"},{"topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"tournamentID":"mNwitMoNsjWupgwG8pR5","content":"Chúng tôi sẽ sử dụng \"Chính sách cảnh sát cộng đồng\" ở những khu vực có tỉ lệ tội phạm cao.","round":"","infoSlide":"\"Chính sách cảnh sát cộng đồng\" là một biện pháp trị an được thực hiện bởi những thành viên thuộc cộng đồng địa phương. Những tổ chức này có quyền được quyết định bắt ai, và sử dụng biện pháp nào, tuân theo luật pháp quốc gia (ví dụ: có thể tăng mức án phù hợp với luật quy định, nhưng không được phép vượt quá mức cho phép).","link":"","division":"","language":"Vietnamese","id":"JBBhDRmqjKLJcQ98tsGK"},{"language":"English","content":"THBT ASEAN should play the leading role in returning Myanmar to the path of democracy (e.g. through sanctioning Myanmar, etc.), as opposed to maintaining its principle of non-interventionism.","division":"","topic":{},"round":"Semifinals","tournamentID":"75jspJDrwq3Ldwex90Qr","infoSlide":"","link":"","id":"JCJkubfuZj6hol5p2GVR"},{"topic":{},"infoSlide":"","content":"The South China Sea is the cause of several territorial and resource-based disputes between several surrounding nations. China has been a particularly aggressive claimant of rights to resources and territory within the area. The United States publicly disagrees with China’s claims and has deployed military vessels into the area to “by monitor the situation”. THB the United States should end all involvement in the dispute - Round 6.","language":"English","round":"6","tournamentID":"nXN2yUG7soxwCp4xidzj","link":"","division":"","id":"JChNVGNYmVTsfiv4uH1i"},{"topic":{},"division":"","tournamentID":"NYyJaJXo1SigW6G8Y1Lm","link":"","content":"This house would make membership in a labour union compulsory for every worker.","round":"ESL_Tiebreak","language":"English","infoSlide":"","id":"JCjLjg2g7ypWkxmZ0ROP"},{"link":"","language":"English","topic":{},"division":"","round":"4","content":"THBT Croatian Democratic Party (HDZ) should disassociate from Thompson including but not limited to not playing his songs on their rallies, not making public appearance at their rallies etc.","infoSlide":"","tournamentID":"sol1oNvzZmBI1NXc28Lh","id":"JCvXetdkQmxikn9qFlbu"},{"content":"THW permit the use of performance enhancing drugs in sport.","division":"","round":"1","infoSlide":"","tournamentID":"DNe0c1xNBVoG02MsO66g","link":"","language":"English","topic":{},"id":"JDCnGzyxgn8R9JBaKJI2"},{"content":"THBT Iran should end its nuclear weapons program.","tournamentID":"m6JzV67uYJSVBRpAbgL7","link":"","topic":{},"round":"Open Octofinals","language":"English","division":"","infoSlide":"","id":"JDmQpBb9yGe8BgypC9Io"},{"language":"English","content":"TH would teach children to have a logical approach to life, even at the expense of reducing their emotional bandwidth (e.g. trying to react in less emotional ways, prioritising logic over emotions when approaching problem-solving, etc.)","division":"","infoSlide":"","topic":{},"round":"ESL Quarterfinals","tournamentID":"uJGjvsaThnluwVzoHFXm","link":"","id":"JEAieg4q159dwfmQIdpT"},{"topic":{},"infoSlide":"","language":"English","tournamentID":"0DgXee32WEP3hxmGZExS","division":"","round":"21","link":"","content":"TH regrets the popularity of the Twilight series.","id":"JED2MWMFaJXFxHqTw69f"},{"language":"English","link":"","round":"6","topic":{},"division":"","tournamentID":"IXq1CdgyiKmkyEDJURrV","infoSlide":"A “bad boy” is a confident, mysterious, troubled, and attractive young man, often portrayed as the love interest of the female protagonist in novels, films, and television series. They tend to be rebellious in nature and may engage in rule-breaking activity, such as violence or underage drinking. Through the story arc, the character typically reveals other dimensions of their personality and undergoes various forms of character development. Notable examples include Danny from “Grease”, Jughead from “Riverdale” and Damon from the “Vampire Diaries”.","content":"THO the glorification of the “Bad Boy” trope","id":"JEIJIMIy1ReWNs7nfEpB"},{"division":"","link":"","language":"English","tournamentID":"HXAIZhpnUdFYuB97wMF8","infoSlide":"","round":"1","topic":{},"content":"TH calls for a constitutional right to Internet.","id":"JEd51FEqf5GJGsBXXFvf"},{"round":"Open_Octa","language":"English","infoSlide":"","link":"","topic":{},"division":"","content":"TH, as Bernie Sanders, Would have stayed in the race as opposed to dropping out.","tournamentID":"m6JzV67uYJSVBRpAbgL7","id":"JG68lmJUEKTM1IQ1yFUY"},{"tournamentID":"x1XtlIYDR23OSfEzPpkf","round":"2","division":"","infoSlide":"","topic":{},"content":"THW tie foreign aid to environmental standards.","language":"English","link":"","id":"JGGACnvCO1itH6b7Q1gc"},{"division":"","link":"","tournamentID":"sIrS2zWJD8m7ibVjvyDN","language":"Vietnamese","round":"4","infoSlide":"","topic":{},"content":"Chúng tôi lấy làm tiếc về quan niệm: “Tình cảm gia đình là vô điều kiện”.","id":"JGN99aSTkDgebYdBvu6V"},{"infoSlide":"","language":"English","topic":{},"content":"As a democratic state that has come under unprovoked nuclear attack from another democratic state THW launch a nuclear counter-attack.","round":"5","tournamentID":"m357g5mmEMxSAwbDEk5d","division":"","link":"","id":"JGNwk2PtmkSVivA0R79g"},{"tournamentID":"Awa41MBby9wm71OwFQyo","language":"English","round":"Open_Final","link":"","infoSlide":"","topic":{},"division":"","content":"Should the Dönertier be placed under environmental protection?.","id":"JGVABO2xGqwcpKWvqWwt"},{"topic":{},"tournamentID":"h2z0CGY0CzqfLCKUb3wz","infoSlide":"","division":"","language":"English","round":"Open_Semis","link":"","content":"THBT jury trials do more harm than good.","id":"JGjRHrkX4Ww25wZXQVqT"},{"round":"2","link":"","infoSlide":"","content":"THS Chris Rock’s continued commitment to host the Oscars.","tournamentID":"G40265rxZRrwSbZ3fQSJ","division":"","topic":{},"language":"English","id":"JH48R59UXHFd5cLYzawH"},{"language":"English","topic":{},"tournamentID":"GyiwbDg4TBAWCn1HmjKi","infoSlide":"","link":"","content":"THBT no media should ever be allowed to endorse any candidates in democratic elections.","round":"2","division":"","id":"JJ09xjFTKhKpxNFCdFQh"},{"link":"","infoSlide":"","division":"","round":"Open_Final","topic":{},"content":"For the purposes of this debate, the American Dream refers to the socially widespread belief that individuals can improve their circumstances through hard work, and that one can become successful regardless of their background. This House regrets the American Dream.","tournamentID":"pQSBc1H8lG2P8ftbCWZ8","language":"English","id":"JJ1GRlNX5BWnu3Oz7TDa"},{"infoSlide":"","content":"This House, as South Africa, would forcibly break up exclusive Afrikaaner enclaves.","link":"","language":"English","tournamentID":"EP5HDm4G3OfMlciId6YM","topic":{},"round":"1","division":"","id":"JJ94mkh44fK7Yt36gb6o"},{"topic":{},"round":"4","content":"That, as the West, we would lift economic sanctions on Iran during its COVID-19 crisis.","language":"English","tournamentID":"fkUHa28aVk8LYYEAdofu","link":"","division":"","infoSlide":"","id":"JJqTv21LBs6KQtwQFGiF"},{"infoSlide":"","round":"3","language":"English","topic":{},"tournamentID":"PNpMzinCvz3Z9bTJfV9t","division":"","content":"In a run-off for the Romanian Presidency, HW rather vote for Gigi Becali than Corneliu Vadim Tudor (Romanian extremist politicians).","link":"","id":"JK0ITo4o46nqJMORqhVk"},{"tournamentID":"1dEXZTvvRtTWhdBLmzFt","link":"","division":"","round":"8","topic":{},"content":"This House Believes That Artists should not participate in the ongoing interpretation of their art.","infoSlide":"","language":"English","id":"JKEPRmhiT2WK7xzM4TrS"},{"language":"English","tournamentID":"sA03ySqGdgfByNOTfDfC","round":"Open_Finals","division":"","link":"","content":"THW prefer a world in which people are sedated to experience only mild emotions.","topic":{},"infoSlide":"","id":"JKLbZbCgacqllqrlGo9o"},{"tournamentID":"hY7icY7k8fuatysSqMFr","link":"","topic":{},"infoSlide":"","language":"English","round":"4","content":"TH believes that the state’s general economic approach should be to promote policies which seek to maximise net economic gain*, even when it comes at the expense of structural unemployment. * For example free trade agreements and the automation of labour.","division":"","id":"JLFls1XmcNO26O7zL8eX"},{"round":"","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"content":"Chúng tôi sẽ loại bỏ \"văn hoá bài trừ\".","link":"","division":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","infoSlide":"\"Văn hoá bài trừ\" là hành động công chúng ngừng ủng hộ những nhân vật nổi tiếng hay công ty vì những điều mà họ đã làm/nói bị coi là xấu xa. Văn hoá bài trừ thường được thảo luận trên mạng xã hội.","language":"Vietnamese","id":"JLtUhtuFve24CYPTQa2R"},{"content":"You lie to Albert Speer and tell him the atomic bomb cannot be built.","infoSlide":"","topic":{},"language":"English","division":"","tournamentID":"NxB6ercynISK3sISgci5","round":"5","link":"","id":"JM1q4PWLx9tiIlWQioGS"},{"round":"3","language":"English","content":"THBT African nations should not allow extraction of their national resources by companies from developed nations.","division":"","topic":{},"infoSlide":"","link":"","tournamentID":"pMiBCGHX80oXMgUJCqkc","id":"JMJ4svHCmBuTb5M5O1Bm"},{"content":"THW drink more milk.","division":"","language":"English","infoSlide":"","tournamentID":"FIZrOByzWbUCfXyq56hs","round":"4","topic":{},"link":"","id":"JMwdUZdNVMiSXthO017Q"},{"link":"","division":"","language":"English","content":"THBT the feminist movement should seek a ban on pornography.","round":"Open_Final","infoSlide":"","topic":{},"tournamentID":"wuDBbL4uYIZXIthzVv4V","id":"JNi8Yb29Sa9Jf6ccAvap"},{"tournamentID":"ZjN9B5kqPitiGVpXIpHO","topic":{},"division":"","infoSlide":"","round":"4","language":"English","content":"THBT it is in the interests of the EU to offer Turkey accession into the union in exchange for a permanent commitment to housing refugees from the Syrian and Iraqi conflicts.","link":"","id":"JNyAvp9LYibCEj1nNvCr"},{"link":"","round":"Open_Final","division":"","language":"English","tournamentID":"CIIwPxm7lqd3hGr5g8JP","infoSlide":"","topic":{},"content":"TH, as the Palestinian people, would launch a Third Intifada.","id":"JOF1eyWWk44R64iJ6aZ2"},{"round":"5","link":"","infoSlide":"","content":"THBT it is legitimate to release the unpublished personal memoirs of deceased public figures, even when this is against the express wishes of the individual or their family.","topic":{},"tournamentID":"bcb5yQt6p8cx9SACsvYL","division":"","language":"English","id":"JOhgqggLzLtEub9l5Kzm"},{"division":"","topic":{},"tournamentID":"axWwnyCM8L14pVHljukt","content":"THBT it should be prohibited all acts of election campaign with the exception of public debates.","language":"English","infoSlide":"","link":"","round":"Novice_Final","id":"JOkD3EMghmzkd0GzDPUK"},{"round":"2","infoSlide":"","tournamentID":"xv0FPHxLsij7LUJlUmBy","link":"","language":"English","topic":{},"content":"THW grant Indigenous communities exclusive legal rights to control distribution of traditional folklore, music, dance.","division":"","id":"JPxjBPMCn6EjxteqPjvc"},{"content":"TH regrets the alliance of liberal political parties with large businesses and financial interests.","topic":{},"language":"English","infoSlide":"","link":"","division":"","tournamentID":"caeYE7341tdQiO1TJafq","round":"3","id":"JQqMbEEVco4DN3Pn7CbD"},{"division":"","round":"Novice_Final","content":"THO the glorification of courage in popular culture.","link":"","topic":{},"tournamentID":"I5iTcVABscgCPPKzr8Oa","language":"English","infoSlide":"","id":"JSx28fstt4oe1JCgWTZq"},{"tournamentID":"q7pvo4zkG31lg89ofmeq","round":"EFL_Final","link":"","division":"","infoSlide":"","language":"English","topic":{},"content":"THBT progressive politicians in conservative societies should pander to bigots, racists, hardline conservatives and others with regressive views in attempting to win elections.","id":"JTBlzvspDvp0l4QHZvSl"},{"link":"","tournamentID":"PFH5XRScthpwd2dxC2T5","infoSlide":"","content":"TH regrets the rise of consumerism.","topic":{},"division":"","language":"English","round":"Open_Final","id":"JU54U8nd43qwcFjKnfOv"},{"topic":{},"division":"","infoSlide":"","language":"English","round":"2","content":"THW not allow workers to renounce their employment rights (e.g. holiday pay, defined working hours, sick pay, minimum wage) in return for work experience or financial benefit.","link":"","tournamentID":"bcb5yQt6p8cx9SACsvYL","id":"JU55oRDKgIR3hqHld4dC"},{"division":"","tournamentID":"Wg2225mgODwBGF4GMBLR","link":"","topic":{},"content":"THR South Africa's withdrawal from the ICC.","language":"English","infoSlide":"","round":"Open_Quarters","id":"JUoCJKCPfIi5HDU0OGTJ"},{"language":"English","topic":{},"content":"This house would place a tax on meat.","round":"3","link":"","tournamentID":"QDGMrdrzlFCxVT5WcqNn","infoSlide":"","division":"","id":"JUvBqJ4VGwzXAmIPIAP7"},{"link":"","infoSlide":"","round":"25","language":"English","topic":{},"tournamentID":"0DgXee32WEP3hxmGZExS","division":"","content":"THW require internet subscribers to opt in in order to be able to view pornorgraphic websites.","id":"JV8OFapg7Z9P8bI9Q3QI"},{"tournamentID":"683xp6VC99fyKWXfWS9H","division":"","link":"","infoSlide":"","topic":{},"language":"English","content":"THBT the Bretton Woods Institutions (International Monetary Fund, World Bank, etc.) have done more harm than good.","round":"1","id":"JVBHJVsCagESYHxkefXV"},{"language":"English","division":"","link":"","round":"4","topic":{},"infoSlide":"","content":"THBT Pakistan should sincerely pursue peace talks with the Pakistani Taliban.","tournamentID":"euj80C6nkxdgEhkTaI0g","id":"JVHjiJJ95zCoFRbvs7W0"},{"division":"","language":"English","infoSlide":"","topic":{},"round":"4","link":"","content":"THBT artists from privileged groups should not depict characters from underprivileged groups in their work.","tournamentID":"EkR93MYW52GdWTuVsaKa","id":"JVd5B1MMlnLXhilLZAAG"},{"link":"","language":"Vietnamese","topic":{},"infoSlide":"Tiền tệ DC, hay Tiền tệ trẻ em tử vong (Dead children currency). Mục đích: Cứu sống mạng của những đứa trẻ thông qua những phần thưởng từ thiện khoảng 1000$. Tiền tệ DC là một giá của sản phẩm, ngang giá với số trẻ em có thể được cứu bằng việc sử dụng khoản giá tiền đó. Ví dụ một chiếc xe mới hoàn toàn có thể cứu được 28 đứa trẻ, một bữa ăn ở một nhà hàng có thể cứu được 2 trẻ em khỏi chết đói và một ngôi nhà sang cho vật nuôi giá 320,000$ có thể cứu 320 đứa trẻ khỏi việc tử vong.","round":"5","division":"","tournamentID":"i00RSzvK4b1TDEgnpFJd","content":"Chúng tôi sẽ yêu cầu tất cả các sản phẩm được bán phải hiển thị rõ ràng giá của chúng bằng tiền tệ DC.","id":"JW2ZbZmfpfXPbDf1z8ou"},{"round":"Open_Quarters","link":"","language":"English","infoSlide":"","topic":{},"division":"","content":"THW ban commercial research and development of CRISPR-Cas9 technology.","tournamentID":"P4io30tN10TYMqGkj2sX","id":"JWelh07PYdzXEuHyJATv"},{"topic":{},"content":"THBT sex education in schools should teach techniques for pure sexual gratification (including but not limited to: anal sex, oral sex, mutual gratifcation, and masturbation).","link":"","language":"English","round":"4","infoSlide":"","tournamentID":"hxlmkaNuNgQ6AIDlbsIh","division":"","id":"JX8Oo0hCzqDuXLG31Zsn"},{"round":"4","link":"","division":"","content":"THBT all self-driven cars must use the same government-mandated algorithm to solve the \"trolley problem.\".","tournamentID":"GyiwbDg4TBAWCn1HmjKi","language":"English","infoSlide":"","topic":{},"id":"JYMU0Nt5ALtYO3YCYKAE"},{"topic":{},"tournamentID":"yOWDiguNGQHwr42mgnqv","language":"English","infoSlide":"","division":"","link":"","content":"THW Legalize Graffiti.","round":"4","id":"JZEw29PqAApEpwJhDMcS"},{"link":"","round":"4","infoSlide":"Tổ chức Y tế Thế giới (WHO) xây dựng chương trình COVAX là một quỹ toàn cầu để thu mua và phân phối vaccine Covid-19 cho các nước thành viên. Hiện tại COVAX có 92 thành viên đủ yêu cầu nhận vaccine đều là các nước đang phát triển, ví dụ như Ai Cập, Syria, Ấn Độ, Việt Nam.","content":"Chúng tôi nghĩ rằng COVAX nên ưu tiên cung cấp vaccine cho các nước thành viên có tỉ lệ nhiễm Covid cao, thay vì ưu tiên cung cấp vaccine dựa trên tỉ lệ dân số (ví dụ: nước thành viên sẽ được cung cấp số vaccine tương đương 10% dân số).","tournamentID":"i00RSzvK4b1TDEgnpFJd","topic":{},"division":"","language":"Vietnamese","id":"JZT9ZfCO4PI46eejvTZr"},{"infoSlide":"","language":"English","link":"","content":"THW introduce significant \"cost caps\" in sports.","division":"","tournamentID":"DIDaTQVu3sv4iXbqf3eE","round":"Schools_Semi","topic":{},"id":"JZvbD9B4lbm59giucuXt"},{"link":"","round":"Open_Semi","division":"","topic":{},"content":"THW ban advanced simulations.","language":"English","infoSlide":"","tournamentID":"0anPdjjejinL3DGvB4L1","id":"Ja1arG3niOldb1r1BokL"},{"language":"English","topic":{},"infoSlide":"","tournamentID":"QjQ9aMJIggiNR9zYImnN","division":"","link":"","round":"3","content":"Should providing arms to the citizens of another state be outlawed under international law?.","id":"Ja9LdmOuJFs8u6rynIcz"},{"link":"","infoSlide":"","round":"Open_Semis","tournamentID":"EkR93MYW52GdWTuVsaKa","division":"","content":"a pill exists to prevent you falling in love, THW take that pill.","language":"English","topic":{},"id":"JaCKarI2xcYYLtt9Ocpi"},{"division":"","topic":{},"link":"","infoSlide":"","tournamentID":"EC3TzMXkzGq0DYNMzQdg","round":"1","content":"Do we need a third vote (Die Drittstimme).","language":"English","id":"JaOaRncDzEBbsD567gBa"},{"content":"Chúng tôi tin rằng các công ty đa quốc gia nên chịu trách nhiệm cho những vi phạm về nhân quyền xảy ra ở bất kỳ đâu trong chuỗi cung ứng của họ.","infoSlide":"Chuỗi cung ứng (Supply chain) là một hệ thống các tổ chức, con người, hoạt động, thông tin và các nguồn lực liên quan tới việc đưa 1 sản phẩm hay dịch vụ từ nhà cung cấp hoặc nhà sản xuất đến người tiêu dùng. Hoạt động của chuỗi cung ứng liên quan đến việc biến đổi các tài nguyên thiên nhiên, nguyên liệu và các thành phần thành một sản phẩm hoàn chỉnh để giao cho khách hàng cuối cùng (người tiêu dùng).","link":"","round":"4","topic":{"economics":{"check":true,"title":"Economics"}},"division":"","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","language":"Vietnamese","id":"JcBjEkB6wMNIZuVh67uk"},{"link":"","topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"content":"THBT film and television awards should scrap gender-specific categories.","round":"","infoSlide":"","tournamentID":"3B01KdqnCVzQEVjKcHiT","language":"English","division":"","id":"Jd02MOXfoaySaI1vlRue"},{"infoSlide":"Giả sử bộ giáo dục cung cấp một khoản ngân sách cho cộng đồng tranh biện Việt Nam. Tuy nhiên, khoản ngân sách này chỉ đủ để phát triển Đội tuyển tranh biện quốc gia (Cấp 3 và Đại học) hoặc phân bổ để phát triển tranh biện ở các vùng sâu, vùng xa của Việt Nam.","language":"Vietnamese","round":"","division":"","topic":{"education":{"title":"Education","check":true}},"content":"Chúng tôi, những thành viên của cộng đồng tranh biện Việt Nam, sẽ đầu tư khoản tiền này cho Đội tuyển tranh biện Quốc gia.","link":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","id":"JdKist4diSPLcMk3BR4G"},{"link":"","language":"English","content":"THB that Europe should weaken its austerity measures to guarantee its citizens greater social support.","infoSlide":"","topic":{},"round":"4","division":"","tournamentID":"gf4DgO2PbJKuaj3RSFTp","id":"JdMiaTribn4MN2ZXaFoI"},{"tournamentID":"onvxs89P4PKzVuAFoTHr","content":"This House believes that the Poor of the Developed World are entitled to vote for policies which protect their own economic interests at the expense of those of the Global Poor.","topic":{},"round":"3","infoSlide":"","language":"English","link":"","division":"","id":"JdR14cUruITWFyf5BW5t"},{"tournamentID":"D6zNi4CBrpZnwXUgBuKG","infoSlide":"","division":"","round":"Open_Semi","content":"That people who currently choose to be vegetarian on the grounds of animal welfare should instead consume products where the production process treats animals well.","link":"","language":"English","topic":{},"id":"JdUdn84LdVQpJcfV722Z"},{"round":"2","content":"\"THB if Josef Mengele had Discovered a Cure for Cancer, it'd be morally Acceptable to use it\".","link":"","infoSlide":"","topic":{},"tournamentID":"0aaiP0hS7LLjh0VVpofG","language":"English","division":"","id":"Je3Xxgt1rgj1v9cxtuXS"},{"round":"2","language":"Vietnamese","infoSlide":"","tournamentID":"xAdc6R4uC1xkQxvmPedU","topic":{"environment":{"title":"Environment","check":true}},"division":"","link":"","content":"Chúng tôi sẽ hợp pháp hóa việc săn bán động vật có nguy cơ tuyệt chủng có giấy phép.","id":"JfKle8Oujpx91iTWwd0q"},{"infoSlide":"","topic":{},"round":"4","division":"","content":"THW ban holocaust denial.","tournamentID":"a40eH2E5w4GGnWQ3oDT6","link":"","language":"English","id":"JfMAi4IkwQyOwGfkkL3t"},{"tournamentID":"Bx1uUqHBcAJ7qAZcUwyz","round":"1","infoSlide":"","division":"","content":"THW mandate retirement from Congress at age 65.","link":"","language":"English","topic":{},"id":"Jfc8NbrBlBRHYRK0px9k"},{"round":"ESL_Semis","link":"","tournamentID":"rEUwN5dFZYjeXBNtp4NG","content":"THBT that the EU should suspend the voting rights of Poland.","language":"English","topic":{},"infoSlide":"","division":"","id":"Jfd9yp2KHQVJuRB97PSE"},{"language":"English","content":"TH, as Dr. Anthony Fauci, would publicly and actively call out Trump whenever he gives false medical advice to the general public.","round":"Open_Semi","tournamentID":"9MaCpfb2p23wkk8OOSBf","topic":{},"infoSlide":"","link":"","division":"","id":"JgU3TtAnC9irIBGKUsWC"},{"link":"","round":"5","infoSlide":"","language":"English","division":"","tournamentID":"YAsriFfh4M2kLN2FBQPq","topic":{},"content":"This House would ban people whose net worth is in more than the 90th percentile from running for office.","id":"Jh3Lewe8Lwgrh7dX01x4"},{"tournamentID":"0aaiP0hS7LLjh0VVpofG","division":"","language":"English","round":"3","infoSlide":"","content":"\"THW Remove Equal State Suffrage in the United States Senate\".","link":"","topic":{},"id":"Jh84IJJAKLj6n1OZ2b9L"},{"infoSlide":"","link":"","division":"","language":"English","round":"1","tournamentID":"k3ijyeg4qJCcExIHRlhv","content":"THS the use of extra-legal and illegal methods to provide wider access to knowledge (e.g. sci-hub, hacking Jstor, unauthorised distribution of files and copies).","topic":{},"id":"Ji0Nih3v5UUNgNF4WCNO"},{"division":"","round":"6","link":"","language":"English","infoSlide":"","content":"THR the decline of trade unions.","topic":{},"tournamentID":"tKXlShZl2vec49jC1bif","id":"Ji1P1ZpntkiughxFLfBA"},{"content":"TH, which is China, would cease all political and economic support to North Korea.","link":"","round":"4","topic":{},"division":"","tournamentID":"041lRDdS5oaD5orDuk8q","language":"English","infoSlide":"","id":"Ji7LfQMNxk5oput9Rb1B"},{"content":"TH, as LGBT community, would out closeted politicians who are gays and publicly express homophobic views.","link":"","division":"","infoSlide":"","tournamentID":"1Zlx7tjmmkRhrDxYF8Qr","language":"English","round":"Open_Final","topic":{},"id":"JiP3GZVRVRjtj9gys9Md"},{"infoSlide":"","link":"","content":"THW take socio-economic background into account when sentencing criminals.","tournamentID":"ZHpmROZ4G7eY4iB9dTsM","language":"English","topic":{},"round":"11","division":"","id":"Jjy0lYFlIsbo6dmOkok5"},{"infoSlide":"","language":"English","link":"","division":"","topic":{},"tournamentID":"ZHpmROZ4G7eY4iB9dTsM","content":"THW ban media reporting on violent crimes.","round":"3","id":"JkW78pxTyXDbto6clL4e"},{"tournamentID":"1bHNYzF6GWRqdpr3f5vt","content":"This House, as the feminist movement, would push for the sexualisation of religious attires (eg. hijab/saree/cheongsum).","infoSlide":"","language":"English","link":"","division":"","topic":{},"round":"3","id":"Jks29tF9ZggcMgdWhlbq"},{"round":"8","tournamentID":"pMiBCGHX80oXMgUJCqkc","link":"","content":"THBT South Korea should shifts its focus away from its alliance with the United States to strengthen its ties with China.","division":"","language":"English","topic":{},"infoSlide":"","id":"Jkxv9WWi2wvVMivWPGdF"},{"infoSlide":"","round":"3","link":"","content":"THBT US citizens should select Option B i.e. they should vote to publicly subject the kidnapped officials to enhanced interrogation techniques.","tournamentID":"hoxSwibt3yivmk88aoAD","language":"English","division":"","topic":{},"id":"Jl3iaEORIHkUGW1s2cZe"},{"content":"THW prosecute violent fouls in sports as criminal assault.","round":"4","topic":{},"link":"","division":"","infoSlide":"","language":"English","tournamentID":"McARyCvnNLDmzAARI8jE","id":"JlPQGpo56rZsbGg6Kn2x"},{"division":"","round":"Open_Quarters","infoSlide":"","link":"","topic":{},"content":"TH opposes common currency.","language":"English","tournamentID":"9tZJ2IRGMD2GsDxXtVJA","id":"JldDvEIWGwneTD8WQp65"},{"topic":{},"infoSlide":"","tournamentID":"sVguH0ZxbQ8C5aNo2rNf","content":"This House would ban extremist political parties.","round":"Novice_Final","division":"","link":"","language":"English","id":"JlwoBEkrP4buhJ6xxQSA"},{"content":"THW provide means-tested welfare in the form of basic goods and services (including vouchers), rather than cash payments.","tournamentID":"rEUwN5dFZYjeXBNtp4NG","division":"","infoSlide":"","language":"English","round":"1","topic":{},"link":"","id":"JmIcGft6t6aWrX6aX5kK"},{"round":"2","link":"","content":"THS the use of coercive economic and diplomatic measures against states in which serious environmental damange to natural resources of share global importance is occurring.","division":"","language":"English","infoSlide":"","tournamentID":"8umdzosR2LakbIpLGOan","topic":{},"id":"Jme9xuYmfKee8888bezZ"},{"link":"","infoSlide":"","content":"That we should ban hedge funds.","tournamentID":"XL594Q2oZbvHmfmYKFvT","topic":{},"language":"English","round":"2","division":"","id":"JmxPgmco9ohqioR2YiUk"},{"topic":{},"content":"THW allow people in developing countries to sell themselves into slavery.","language":"English","tournamentID":"WqsdOIKQnJkQdFDBVNtA","division":"","infoSlide":"","round":"1","link":"","id":"JnH0Eom1FRcvoyjuCE6k"},{"division":"","content":"TH supports first generation immigrants to Western Europe encouraging their children to assimilate and identify with local culture.","language":"English","round":"Novice_Semi","tournamentID":"NHUypnZQCfkPD98j8TYR","topic":{},"infoSlide":"","link":"","id":"Jnj6F6t2LD2AI5URKkl5"},{"language":"English","division":"","link":"","tournamentID":"djnlK5jZ2kM6hDrC6E9d","topic":{},"content":"THBT when systemically important financial institutions are in need of financial assistance during recessions, the burden should fall upon creditors (eg, via diluting shareholder value by turning debt into equity) rather than the government stepping in.","infoSlide":"","round":"4","id":"Jo7xeRocW6JD7S7Uq5S0"},{"tournamentID":"IpxNM87k556VVsS2JAPu","round":"2","infoSlide":"","division":"","topic":{},"content":"THBT Facebook and other social media should not host images off beheadings and acts of brutal violence on their sites.","link":"","language":"English","id":"Job4iG8b6xmEdnRlfjNX"},{"infoSlide":"","topic":{},"language":"English","round":"Open_Semis","link":"","division":"","tournamentID":"nRov7JujhUP4fNtRUQTt","content":"This House Believes that the AU should exclusively regulate the implementation of the Belt and Road Initiative in Africa.","id":"JpTl7887wY6Bvzsqx6AN"},{"content":"THBT the discovery of a means of stopping the aging process would be a bad thing for society. (Clarifying information: For this debate ‘stopping the aging process’ means that bodies would stop aging after the age of 35; it does NOT mean that people would stop dying of things unrelated to the process of aging).","infoSlide":"","link":"","tournamentID":"x0FqHVU6TNo1z8egQZct","round":"Open_Semis","division":"","language":"English","topic":{},"id":"Jpdb7g3oPiEPMqCLiekQ"},{"infoSlide":"","division":"","round":"Open_Semi","topic":{},"language":"English","link":"","content":"THBT the WTO should allow developing countries to impose tariffs on imports from developed countries.","tournamentID":"jS13nU6Cack3rcPrnNZ5","id":"Jps0EoyyDa9XP4XdGvdY"},{"tournamentID":"yK2aesNii4f0c4vvqYng","topic":{},"infoSlide":"","round":"3","language":"English","division":"","link":"","content":"THW abolish trial by jury in criminal cases.","id":"Jq2a7crSjb95Vltu72rL"},{"round":"1","tournamentID":"5oYH1K5oILZA6OqwhGhz","division":"","infoSlide":"","language":"English","topic":{},"content":"THW prosecute the production and distribution of fake news.","link":"","id":"JqU5fSeNu5ouyaFy2e5s"},{"link":"","division":"","infoSlide":"","tournamentID":"fBPBbh32BZ2p0Y1Fy5Yi","language":"Vietnamese","content":"Chúng tôi phản đối việc xây dựng những chính sách giải quyết vấn đề dân số tập trung vào vai trò của người phụ nữ. (Những chính sách trên hướng đến việc hỗ trợ tài chính cho phụ nữ ví dụ như thưởng tiền cho gia đình sinh đủ 2 con trước 35 tuổi, ...)","round":"3","topic":{},"id":"JqW3KzV67rnJJsdNt1OF"},{"topic":{},"link":"","round":"Open_Final","content":"THR intercollegiate debate.","language":"English","division":"","tournamentID":"C4TfAdkoNgavFucgidJK","infoSlide":"","id":"JrAZsruQehriolMZnCdX"},{"link":"","infoSlide":"","division":"","tournamentID":"DfdqiFdfgcruP1pBNiHK","language":"English","round":"8","topic":{},"content":"TH regrets the undemocratic election of Italy’s and Greece’s president.","id":"JrKHQNL6PjSh4xNfzTDS"},{"division":"","topic":{},"content":"THW save the Pandas.","language":"English","link":"","round":"4","tournamentID":"pMiBCGHX80oXMgUJCqkc","infoSlide":"","id":"Js1AsD8VCY64TlK3fDj2"},{"round":"3","infoSlide":"","tournamentID":"vgTQs0itA0pIPKzwI7CK","division":"","link":"","language":"English","topic":{},"content":"THB the European Union should lower the entry requirements and fast-track accession procedures for the Ukraine and other nations in the Caucasus.","id":"Js1CUdTKA2eYMrRIZl1h"},{"infoSlide":"","link":"","topic":{},"division":"","content":"THS white progressives criticising illiberal practices in non-Western and/or minority cultures - Round 7.","language":"English","tournamentID":"nXN2yUG7soxwCp4xidzj","round":"7","id":"Js6MT8mAjdPkFgbRTykk"},{"tournamentID":"SPjgjrpUBIPs6H9gmx9P","language":"English","content":"That we applaud Greta Thunberg.","link":"","division":"","infoSlide":"","topic":{},"round":"Preliminary","id":"JsQcFrfwnhZnzUzoh0nG"},{"content":"Chúng tôi nuối tiếc sự thương mại hóa của hip hop.","link":"","round":"","division":"","infoSlide":"Hip hop là một phong trào nghệ thuật và văn hóa phản ánh âm nhạc, nhảy, thời trang, phong cách, ngôn ngữ và thái độ xã hội. Hip hop khởi nguồn ở một khu dân cư người Mĩ gốc Phi ở South Bronx, New York City vào cuối thập niên 70. Mặc dù Hip hop được biết đến rộng rãi là một từ đồng nghĩa với nhạc rap, Hip hop thực chất bao hàm một văn hóa rộng lớn hơn bao gồm 4 yếu tố chính: (i) DJ, (ii) rap, (iii) graffiti paint, (iv) breakdance.","tournamentID":"mNwitMoNsjWupgwG8pR5","language":"Vietnamese","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"id":"Jt36gTZLA6GXYFU2umsp"},{"content":"That we, as original producers of non-Western films, would deny Hollywood the right to produce remakes, unless a quota for non-Western actors/actresses is guaranteed.","language":"English","division":"","topic":{},"link":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","infoSlide":"","round":"Open_Double","id":"JtlDeH4de4U54x59lTpa"},{"topic":{},"infoSlide":"","language":"English","link":"","tournamentID":"5mJg23unORtxSJCvBzd9","content":"Should the Catholic Church make its members to elect the new pope?.","division":"","round":"1","id":"JtlzofCxZXaTyHLGoJJ0"},{"link":"","round":"1","topic":{},"infoSlide":"","tournamentID":"4Nqwg2GbRwaUJ5LaWcSt","content":"thw ban personal accolades in team sports.","language":"English","division":"","id":"JvLNJoHbng2xDIFfwrs6"},{"link":"","division":"","topic":{},"tournamentID":"o29IKQqCI95UODWABA9Y","round":"1","language":"English","content":"THBT foster children should be placed into families with similar backgrounds (race, religion, etc).","infoSlide":"","id":"JvNeI8Rjq1Qwr3VgqI8n"},{"language":"English","round":"5","infoSlide":"","topic":{},"tournamentID":"wL3wAKRctC8syY2eg8t3","division":"","content":"THR the narrative of the American Dream.","link":"","id":"Jw7XrIN9B1EUxDt5DSMb"},{"infoSlide":"Học viện Thiên tài: Là trường học đặc biệt được điều hành bởi chính phủ, chuyên đào tạo những trẻ em thiên tài. Ở đây, học viên được cung cấp mọi điều kiện giáo dục tốt nhất để đạt được 3 yếu tố: tối ưu hóa khả năng thiên tài, đảm bảo nền tảng đạo đức tốt và mục đích cuộc đời thuần túy là cống hiến cho sự phát triển của xã hội loài người.","link":"","division":"","language":"Vietnamese","tournamentID":"mkrRVvz5EWSZie6LBtCH","topic":{},"content":"Chúng tôi sẽ tách mọi trẻ em thiên tài khỏi cha mẹ chúng ngay sau sinh và nuôi dạy biệt lập ở Học viện Thiên tài.","round":"Grand Final","id":"JwA9RUe8M60ZcgLJHaDb"},{"topic":{},"tournamentID":"3Gl2F99bU3ZHa2ZjcrUR","infoSlide":"","link":"","language":"English","content":"TH regrets the decline of formal participation in religious institutions.","round":"4","division":"","id":"JwHeReBOf1XmIRBzrqSK"},{"tournamentID":"8EaRfOcTe47s5VRlQeNv","round":"Open_Final","division":"","content":"Dulce et decorum est Pro patria mori. Motion: This house believes that ”Dulce et Decorum Est pro Patria Mori” (i.e. the belief that it is sweet and right to die for your country).","infoSlide":"","topic":{},"language":"English","link":"","id":"JwWIglij2bIuI1v0j7Pq"},{"link":"","topic":{},"language":"English","tournamentID":"Bx1uUqHBcAJ7qAZcUwyz","division":"","round":"4","infoSlide":"","content":"TBHT the feminist movement should actively recruit conservative women.","id":"Jwck91fqzGmRF12kaIUz"},{"tournamentID":"MKnFsrIKq8equaMluK21","infoSlide":"","round":"2","division":"","link":"","content":"THB all donor countries should freeze aid to Rwanda.","topic":{},"language":"English","id":"JwdIJnvJFyHZDD0TZkPf"},{"division":"","infoSlide":"","link":"","language":"English","tournamentID":"O8PsW6uDBzwzQZ3zO447","topic":{},"round":"1","content":"THW classify all organized crime as terrorist organizations.","id":"JwnsExORWwJFT4XprUZj"},{"topic":{"education":{"title":"Education","check":true}},"division":"","content":"We believe that schools for colored people should educate students that their future depends on individual efforts.","tournamentID":"CbtTNoNzLTvfNvRWmMc2","infoSlide":"","link":"","language":"English","round":"","id":"Jx5nyGQXBxJI5nuoHpXl"},{"tournamentID":"8mQg9HgZBO4ebq8ubmRJ","division":"","link":"","infoSlide":"","content":"THBT internet piracy has done more good than harm.","topic":{},"round":"2","language":"English","id":"JyEO50r1KuvqZZ1brg4B"},{"language":"English","round":"Open_Final","division":"","topic":{},"content":"This house would require companies to place images of animal suffering on all products or food whose production harmed or killed animals.","link":"","tournamentID":"i1HAMqWg9Epu5Ys9FJg5","infoSlide":"","id":"Jya6HWmIEN0uvtkmMxB7"},{"infoSlide":"","round":"5","content":"THW not give employers access to criminal records of potential employees.","tournamentID":"m6JzV67uYJSVBRpAbgL7","language":"English","division":"","link":"","topic":{},"id":"Jyh2KuuxtfhFVrC0fFEt"},{"topic":{},"language":"Vietnamese","division":"","tournamentID":"uqR5rN63m5rX9CiOtJjb","infoSlide":"","round":"5","content":"Chúng tôi sẽ đình chỉ tất cả các quy định liên quan đến luật pháp và chính sách bảo vệ môi trường trong thời kỳ suy thoái kinh tế kéo dài.","link":"","id":"Jyo5jRO97Upd9t2NiaXC"},{"language":"English","division":"","tournamentID":"yK2aesNii4f0c4vvqYng","topic":{},"infoSlide":"","round":"Open_Semis","content":"THBT when awarding artistic achievement, all aspects of the artist's personal lives should be ignored.","link":"","id":"JzB5ZDOKk1dFMcrFeDLt"},{"language":"English","round":"5","tournamentID":"Mp1zDBiaN3PYnRnjPVIk","infoSlide":"","division":"","topic":{},"link":"","content":"TH supports the use of mirroring in popular culture (eg. music videos, movies, art, literature, etc.) (Mirroring is the performance or reversal of stereotypically misogynist actions by women, often for feminist purposes: eg. reverse cat-calling.).","id":"JzFdI5usLSYC3sFjRbR4"},{"tournamentID":"Izblbv0LXDRNyAVA9nPW","language":"English","topic":{},"round":"5","content":"THB Religious Institutions Should Not be Entitled to Any Exemption From Anti-Discrimination Laws.","link":"","infoSlide":"","division":"","id":"JzOC8Xy2oa1dc9kBzV26"},{"topic":{},"content":"This House would criminalize defamation.","language":"English","link":"","infoSlide":"","division":"","tournamentID":"6NSl7moQPnBVA2R4Z66b","round":"3","id":"K0rEzYh0zEHRMQcc8XDe"},{"tournamentID":"DLFJWaIyHnSlvFofovjc","division":"","round":"4","language":"English","topic":{},"link":"","content":"THW ban all art that offends religious communities.","infoSlide":"","id":"K1DUEwJ3ka9qyJXqqIHq"},{"language":"English","tournamentID":"xeyFK25uSH9TtPga8ALE","round":"Open_Final","topic":{},"content":"You are a Liberal leaning journalist covering the White House, you have received exclusive and indisputable evidence that during his college years Barack Obama had an active gay sexual life, THW Publish the Story.","infoSlide":"","link":"","division":"","id":"K2HhFTQJCPoBOV5Z8X1l"},{"language":"English","tournamentID":"2XJwkUOw6JeegMJHT6Hl","topic":{},"round":"2","infoSlide":"","content":"THW ban Martijn, a paedophile association (vereniging).","division":"","link":"","id":"K2WOD9xbytA1bTb0BhIC"},{"link":"","language":"English","topic":{},"content":"THW allow single parents convicted of crimes to raise their children in prison.","infoSlide":"","division":"","tournamentID":"RLX3o4g1PsjOGvcOJBWD","round":"1","id":"K2buMH2LvdEsjU0YQu4L"},{"link":"","round":"2","tournamentID":"ZQbHv8rs6yqxtH8VBbkr","infoSlide":"","division":"","content":"THBT the former Eastern bloc countries should not emphasize their history of struggle against Russian imperialism in constructing their national identity.","language":"English","topic":{},"id":"K2fFcm444RnOuizPOwZw"},{"tournamentID":"m9Mkt1xdSA1jDsNN4zgu","topic":{},"round":"ESL_Final","infoSlide":"","language":"English","content":"THBT countries, like Switzerland, that were neutral in WW II should pay financial reparations to states occupied by the Nazis.","link":"","division":"","id":"K2gaiCjf8c9wBr6MH7hh"},{"division":"","content":"THBT States Should Destroy All Contemporary Works of Art (including but not limited to music, films and paintings) Created by Artists Convicted of Heinous Crimes.","tournamentID":"hoxSwibt3yivmk88aoAD","link":"","language":"English","round":"4","topic":{},"infoSlide":"","id":"K30Al10OaRPL0D1Puhyh"},{"division":"","language":"English","link":"","tournamentID":"o85wPSMfUIKlsHQtkpnr","round":"3","topic":{},"content":"THB that it is in China’s interest to not retaliate to the imposition of tariffs by the Trump Administration.","infoSlide":"","id":"K36G4JJcvjql3W9oQ8WY"},{"content":"THBT countries with judicial supremacy should confirm new Supreme Court judges by a nation-wide popular vote requiring a 60% majority.","infoSlide":"Judicial supremacy is a system where judges are empowered to strike down laws passed by the legislature that they believe are inconsistent with constitutional laws e.g. the Bills of Rights. The most famous example of judicial supremacy is the US Supreme Court.","topic":{},"tournamentID":"CBVZREYhjV5bhCHOuWjU","link":"","division":"","round":"ESL Quarterfinals","language":"English","id":"K3Tup7qBG9DbkNZywXrF"},{"tournamentID":"H2Xg2NvZoEwZtgc8tzmz","round":"Open_Final","link":"","division":"","content":"Assuming the technology to alter one's memories irreversibly exists, THW ban the use of the technology.","topic":{},"language":"English","infoSlide":"","id":"K3gnUZInNnLZ9p3FN579"},{"division":"","infoSlide":"You are the defensive commander and your side is losing. However, you own a weapon that can destroy the entire enemy army but the price is your entire army including you.","tournamentID":"sgcqNV5ntCoa4H8glRBu","link":"","language":"English","content":"TH, as the commander, would use that weapon.","round":"","topic":{"fiction":{"check":true,"title":"Fiction"}},"id":"K4ajKaKWvEiV8IuY5BJY"},{"content":"TH supports menstrual activism.","tournamentID":"a40eH2E5w4GGnWQ3oDT6","infoSlide":"Menstrual activism is a movement which seeks to examine social attitudes towards menstruation through artistic performances such as wearing menstrual blood.","topic":{},"link":"","division":"","language":"English","round":"3","id":"K5mx5PE3UDzGVijOSAMk"},{"language":"English","division":"","topic":{},"round":"2","tournamentID":"m97biSF63NO9Jn1yenBI","link":"","infoSlide":"","content":"THBT in global epidemic situation, WHO should be in charge instead of the local government.","id":"K6telFIiwUCtltDX8Cj6"},{"infoSlide":"","link":"","tournamentID":"xewLQXUxvfe0Xal1qtHM","division":"","round":"Open_Final","language":"English","content":"THBT it is legitimate to kill civilians to reach military objectives.","topic":{},"id":"K7ld0UzCdRaHLu0Vgvz2"},{"division":"","infoSlide":"","language":"English","topic":{},"round":"Grand Final","content":"THS legal realism in jurisprudence.","link":"","tournamentID":"9yPqE2fe1oaHsd7ankOa","id":"K8m57NvqhuT8L9te87UT"},{"tournamentID":"Ryhdb4JOJYP96e5oa49b","link":"","content":"THS the publication of the DNC (Democratic National Committee) leaks - Round 7.","infoSlide":"","language":"English","topic":{},"round":"7","division":"","id":"K98tmZLoUe56h5hA95IU"},{"link":"","language":"English","content":"THW criminalize the payment of ransom.","round":"4","tournamentID":"DLFJWaIyHnSlvFofovjc","division":"","topic":{},"infoSlide":"","id":"K9BvIKXZFy9WoTAClkjt"},{"topic":{},"tournamentID":"IK2tQhXBb3v4DJKRH1Ve","division":"","infoSlide":"","round":"1","content":"THW allow companies to pay higher wages to employees who agree not to have children during their term of employment.","link":"","language":"English","id":"KBmmnDTkc6z9cAOBHsK5"},{"link":"","topic":{},"language":"English","infoSlide":"","round":"3","content":"THW abolish the Beamtenstatus (i.e. a body of exceptions to the laws governing all citizens of the state granted to some categories of civil servants).","division":"","tournamentID":"TtoxDZeWyCKcOginS4mH","id":"KBpjBOh6iQmFEiWxtwwg"},{"content":"THW allow sodomie (intercourse with animals).","division":"","infoSlide":"","topic":{},"language":"English","link":"","tournamentID":"A8uW9F7TCtUhRLICBZWb","round":"4","id":"KCTPXuzhe2UqtOXd3BaY"},{"language":"English","round":"6","link":"","topic":{},"division":"","tournamentID":"FIZrOByzWbUCfXyq56hs","content":"THW shrink/make smaller the Eurozone.","infoSlide":"","id":"KCUGvH0cfgCnsVkFDc6Q"},{"tournamentID":"pq9R1PqBqzQNX8jAplt5","content":"This house regrets the use of the death penalty for crimes against humanity.","infoSlide":"","topic":{},"round":"5","language":"English","link":"","division":"","id":"KCweeaazhJUg5x9MQL8N"},{"round":"Open_Semi","link":"","topic":{},"content":"TH, as a parent, would teach their female children to adopt traditionally masculine personality traits (e.g. self-promotion, assertiveness).","division":"","language":"English","tournamentID":"NBT7RwLHeAApXuOtrQpt","infoSlide":"","id":"KD6iONBDm0jQjHLlVjSu"},{"tournamentID":"Fu8k3vJxi4iJsdZw9d7j","content":"THW implement filial responsibility laws.","infoSlide":"","round":"4","topic":{},"division":"","link":"","language":"English","id":"KDeXZUWVBXwIqaQ8ePSz"},{"round":"2","infoSlide":"","link":"","language":"English","tournamentID":"zeR0rFnynHhmmEJ04jfo","content":"THBT developing countries should create constitutionally guaranteed minimum standards of living.","topic":{},"division":"","id":"KDrRX0MHfWHH9sZZUX0E"},{"round":"3","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","infoSlide":"Chúng tôi sẽ phân bổ phần lớn số tiền trợ cấp Thể thao của chính phủ vào việc khuyến khích sự phát triển từ cấp cơ sở (VD: các câu lạc bộ cộng đồng nghiệp dư, câu lạc bộ thể thao sau giờ học, ...) thay vì đầu tư để đạt được thành công ở các giải đấu danh tiếng (VD: các học viện huấn luyện chuyên sâu, lương cầu thủ và nhân sự, ...)","language":"Vietnamese","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"content":"","link":"","division":"","id":"KEZXbeP6dBmoRqvHvPJH"},{"link":"","topic":{},"language":"English","tournamentID":"MyZkPsGPMuQ4XmFzJLVW","content":"THBT large Eurozone states should openly oppose Britain's attempts to renegotiate its duties and relationship with the EU.","infoSlide":"","round":"2","division":"","id":"KG68SavHiMoHrkmhJcRX"},{"link":"","tournamentID":"NYyJaJXo1SigW6G8Y1Lm","division":"","topic":{},"infoSlide":"","round":"6","content":"This house would introduce blind voting.","language":"English","id":"KGDe2fEPcc2ltiNffByI"},{"division":"","language":"English","round":"3","link":"","topic":{},"tournamentID":"LJpNoy6NIxtIr7pXj25B","content":"THW remove the privilege of self incrimination.","infoSlide":"","id":"KGS6P6CN7yOTKFLpJwbB"},{"tournamentID":"5oYH1K5oILZA6OqwhGhz","infoSlide":"","link":"","content":"THBT human shields are legitimate targets in war.","division":"","language":"English","round":"5","topic":{},"id":"KGnUX745f6GotN939JqX"},{"topic":{},"division":"","tournamentID":"VT7J9JrIu3vEI0gMHsS2","link":"","round":"Open_Semi_2","infoSlide":"","content":"THW condemn the Academic and Cultural Boycott of Israel.","language":"English","id":"KGxUg309YJ1BcXIUfLci"},{"tournamentID":"aC5itVCb0EApgG8DEaqA","infoSlide":"","link":"","division":"","topic":{},"language":"English","content":"THW abolish the prison system.","round":"Open_Semis","id":"KHnwMzGGGRMZcgjwZCt9"},{"content":"THW never support or finance rebel groups on foreign soil as a tactic of war.","round":"3","link":"","topic":{},"infoSlide":"","tournamentID":"jS13nU6Cack3rcPrnNZ5","division":"","language":"English","id":"KHqsJDaqYrHfx0D8AVTV"},{"link":"","infoSlide":"","language":"English","division":"","round":"5","topic":{},"tournamentID":"uUwIAKIDo0apui0AqOxG","content":"TH regrets the culture of casual sex.","id":"KI0hlJJWYLPNt2l4IJmZ"},{"language":"English","link":"","division":"","infoSlide":"","topic":{},"round":"4","tournamentID":"C4Vv4FZW36V7ONi9kULg","content":"THBT the European Union should open its borders to all immigrants.","id":"KINLNKnQEdzGlwyUGuzs"},{"content":"THW ban the screening and production of films depicting current or recent conflicts.","round":"1","division":"","tournamentID":"SjQ6g8g2URks9WV96X0G","topic":{},"infoSlide":"","link":"","language":"English","id":"KISyo7mjCb5qsTJDLu1h"},{"tournamentID":"G1nDRe3mbR7XzsaLbAGR","infoSlide":"","division":"","round":"2","link":"","language":"English","topic":{},"content":"THW prohibit underaged from entering religious organizations.","id":"KIpSQrzwhuYnreJLzBYI"},{"tournamentID":"lVzNmdGBefqKp5cetQ6Z","division":"","content":"THW introduce a binding direct democracy app.","link":"","round":"3","topic":{},"language":"English","infoSlide":"","id":"KIwrLmRPdLNzPhgfVA1I"},{"division":"","infoSlide":"","topic":{},"round":"1","language":"English","content":"THW create a separate league for athletes who choose to take performance enhancing substances.","tournamentID":"cp0MD0ZRWeTfahcPD6wj","link":"","id":"KJJj1BTxrhJLRRoFWNIh"},{"round":"Open_Quarters","tournamentID":"MKOx1AvBmfWL7cHrRXg2","division":"","infoSlide":"","content":"This House Believes That President Vladimir Putin is good for Russia.","language":"English","topic":{},"link":"","id":"KJXDv2OPaYglgk26YT9f"},{"round":"2","division":"","infoSlide":"In the universe of Fate series, the reason why heroes are summoned to the current world as servants in the Holy Grail War is that they have an unfinished wish back in their life and the Holy Grail can satisfy their wishes. Altria Pendragon, aka Saber, joined the war because she wanted to deny the existence of her kingdom. She thought she was not a suitable king and the kingdom under her regime was a failure. She wanted to destroy the fact that she pulled out the sword Excalibur in the stone, which had decided her destiny to be the king. However, in the 5th Holy Grail War, she was summoned by Shiro, who also became her significant counterpart at the end and showed her how worthy she was as a King.","link":"","content":"TH, as Saber, would choose not to pull out the sword Excalibur after winning the Holy Grail War.","language":"English","topic":{},"tournamentID":"Z9WBfg1yDJgSR34BGYp1","id":"KJk1fEaCzFvUwJSMTnsB"},{"language":"English","infoSlide":"","content":"THBT governments should provide significant financial incentives for urban citizens to move to rural areas.","round":"2","tournamentID":"DIDaTQVu3sv4iXbqf3eE","link":"","division":"","topic":{},"id":"KKPcKU8YnbGXdv1HPN5Q"},{"tournamentID":"QVeTcZONRdDbH5LSNeSf","infoSlide":"","division":"","language":"English","topic":{},"link":"","round":"Open_Semis","content":"TH opposes the sympathetic and humanizing portrayal of Nazi soldiers in popular media.","id":"KKjPrMzUnkTFPZvrs7gu"},{"language":"English","link":"","round":"Open_Final","topic":{},"tournamentID":"1bHNYzF6GWRqdpr3f5vt","division":"","content":"That, as a religious organization, we would perform final duas for known terrorists.","infoSlide":"","id":"KKt6K53sihw8MqmvtgBl"},{"division":"","link":"","infoSlide":"","tournamentID":"U5yvbgLSUvue8vCmib81","topic":{},"language":"English","round":"4","content":"THW, as Ed Milliband, ignore the referendum result, and remain in the EU.","id":"KKvkfIz0UathzGXzKKFA"},{"tournamentID":"irYSGlHj76RukmyCwWOG","content":"THBT western museums should return historical artifacts to the nations where they originated.","round":"2","division":"","infoSlide":"","link":"","language":"English","topic":{},"id":"KL7hoBZKe1IiZeuAPcmr"},{"round":"EFL_Final","tournamentID":"5Qomv7BFHTKmY4PchwDr","division":"","language":"English","infoSlide":"","topic":{},"link":"","content":"That France should abandon the principle of laïcité.","id":"KLLl52C1ACPtNDt6Qx6B"},{"infoSlide":"","link":"","tournamentID":"SxA6fvGmUbCEyPLjj4Sw","content":"THW change the constitution of Japan allowing them to have offensive forces.","round":"4","topic":{},"language":"English","division":"","id":"KLm5zJoZb1maTcPSa5LE"},{"round":"Open_Final","tournamentID":"15hrO4GoCxXF2OIdl7fS","link":"","division":"","content":"Assuming the technology was available, THW allow people to erase specific memories of their choice from existence.","infoSlide":"","language":"English","topic":{},"id":"KM0wTz9GTyB3pvNj4XAk"},{"division":"","content":"This house believes that economic growth is the solution to climate change.","topic":{},"language":"English","infoSlide":"","tournamentID":"VPUCPVj9FHFW0uzJinv0","link":"","round":"Open_Final","id":"KMN70ZPiyiozUbCMuU1d"},{"content":"THBT if NPR and/or PBS cannot survive without government funding, they should be allowed to fail.","link":"","tournamentID":"pMiBCGHX80oXMgUJCqkc","language":"English","topic":{},"division":"","infoSlide":"","round":"5","id":"KMNYVTsvQhFgnIhqZOQQ"},{"content":"THW, in countries where the death penalty is in use, not allow anyone to watch the execution.","language":"English","link":"","infoSlide":"","topic":{},"division":"","tournamentID":"ZHpmROZ4G7eY4iB9dTsM","round":"10","id":"KMixn0lbONOWOshQxwnz"},{"infoSlide":"","topic":{},"round":"Open_Final","link":"","division":"","content":"THW treat the desecration and destruction of sites of historical or cultural value as a crime against humanity.","language":"English","tournamentID":"tPdF4vGV6F0ucJaSF5md","id":"KN04o4zNYrtVLNjM38lW"},{"language":"English","infoSlide":"","topic":{},"link":"","content":"THBT the Black rights movement should promote black superiority.","tournamentID":"hF5AdOa0t9O6mkaChm75","round":"5","division":"","id":"KNCIE3TQfb7ODXWMW1uQ"},{"link":"","topic":{},"division":"","tournamentID":"yDvj9tks9IvE2CTAVfzV","language":"English","round":"Novice Grand Final","content":"TH, as parents, would teach our children to embrace the philosophy of water instead of the philosophy of fire.","infoSlide":"The 'philosophy of water' comprises \"H+H+O = H2O\", which in detail means \"Humility: water stays low in the river, yet it is a life-giving force; Harmony: water does not fight against its surroundings, it works with them to find a course; and Openness: water is open to change: gas, liquid, solid. It adapts and alters its form accordingly. The 'philosophy of fire' comprises opposite elements: Fierce, Insistent, Relentless, Exhaustive. It teaches one to develop a more rigid and firm sense of self that charges forward no matter what and burns all obstacles.","id":"KNJ335JTel86ZHXWHhGK"},{"infoSlide":"","link":"","division":"","round":"3","topic":{},"tournamentID":"EHPcBnMOPhSjJDJMUqKQ","content":"TH regrets the promotion of religion in countries formerly ruled by communist regimes in Eastern Europe.","language":"English","id":"KNYbkdjy9Jq2yQHmJmdE"},{"tournamentID":"4qwhZS2zOsdzzkyQlcaW","language":"English","division":"","round":"Novice_Semi","link":"","topic":{},"infoSlide":"","content":"THR the rise of business schools.","id":"KNpal5MuR8CjAnDgpAsW"},{"topic":{},"content":"This house believes that states should hold binding national referendums on major peace agreements.","link":"","tournamentID":"NYyJaJXo1SigW6G8Y1Lm","infoSlide":"","round":"9","division":"","language":"English","id":"KO4EUJfxNGkSuvOF7ops"},{"language":"English","infoSlide":"","tournamentID":"81ULNwgwoeeJz6JyR6aq","division":"","topic":{},"round":"1","link":"","content":"THW put a high minimum price on meat.","id":"KOJldLuEcDMzGsLPRR7m"},{"infoSlide":"","language":"English","round":"2","content":"THBT twitter should require individuals to use accounts uner their own name.","link":"","topic":{},"tournamentID":"BEmSFvOGfvfXfJxFm9a7","division":"","id":"KPFA4D6kJfsXP2Z9byN5"},{"topic":{},"content":"THW only allow lawyers to reject work in areas in which they practice based on the prospects of success as opposed to the client’s identity.","infoSlide":"","tournamentID":"75jspJDrwq3Ldwex90Qr","round":"3","link":"","division":"","language":"English","id":"KQej4lG9nbaP7H87FLYk"},{"tournamentID":"Cx2GIJEWrhOBR3DTErNu","division":"","topic":{},"language":"English","infoSlide":"","round":"4","link":"","content":"TH regrets the rise and dominance of Facebook (and other social media sites like Twitter) in Western liberal democracies.","id":"KSUNiGXo4hkK7J9uECAE"},{"tournamentID":"9JqIpRhRkA8gulRio4t9","language":"English","link":"","infoSlide":"","round":"Open_Semis","topic":{},"division":"","content":"In legal systems where constitutional courts practice judicial review, this House would apply the \"no precedential effect rule\" to judgments by single judge margins.","id":"KSkiRlWXxZCW3pUwzJjR"},{"infoSlide":"","language":"English","division":"","round":"Open_Partial_Double_Octos","content":"THW abolish gated communities in the developing world.","link":"","tournamentID":"pvKZkg6sqicG5nXA2mvY","topic":{},"id":"KT1S3UlxsjMRdniQ9bqH"},{"infoSlide":"","link":"","tournamentID":"HjQJA65fZ9igHKO8DLAP","content":"In a world in which humans have obtained the ability of interstellar travel, humans should never make contact with, or interfere with, the development of alien civilisations that are not also capable of interstellar travel.","division":"","round":"Open_Semi","language":"English","topic":{},"id":"KTSbOmCsGme8c2TOmdin"},{"round":"2","division":"","topic":{},"tournamentID":"7lMrN2aiwSzD5rzPFwHz","link":"","language":"English","infoSlide":"","content":"THW ban Google Glasses.","id":"KTXD5ZI190QbA7OM7e0W"},{"topic":{},"language":"English","division":"","content":"THBT criminal punishments should be based only on the offenders' culpability rather than the damages caused by the criminal act or other outcomes derived from the punishment.","round":"9","link":"","infoSlide":"","tournamentID":"92dIEXeOXUVvlcFeGCIr","id":"KUGjmOyYCg8pesZVJwF3"},{"topic":{},"tournamentID":"dYmkkVK8aVn1dCgd4UDy","division":"","link":"","language":"English","round":"Open_Semis","content":"Should the West support the uprising in Syria militarily?.","infoSlide":"","id":"KUiZOSfQkaEPd1JV8OYR"},{"language":"English","division":"","content":"That legislative bodies (e.g. parliament, congress, senate, councils) should be formed by sortition democracy.","round":"6","tournamentID":"5Qomv7BFHTKmY4PchwDr","infoSlide":"","topic":{},"link":"","id":"KVIoztxjfSyqiIXje1zO"},{"round":"2","topic":{},"language":"English","content":"THBT politicians should not have public profiles on twitter and other social networking sites.","tournamentID":"o29IKQqCI95UODWABA9Y","division":"","link":"","infoSlide":"","id":"KW0GUC7OyagYfv6PH44T"},{"round":"Non_Schools_Final","topic":{},"division":"","infoSlide":"","language":"English","link":"","tournamentID":"ti8CFKwd5Fq6RHmrGph0","content":"TH supports the creation of grammar schools.","id":"KW3taMErEFRcnLFwKJ2n"},{"link":"","infoSlide":"","content":"THW prefer US Presidential candidates to be selected exclusively by party elites.","topic":{},"language":"English","tournamentID":"Sdm6UfNcXB7Ppj4BkdLe","round":"4","division":"","id":"KWGvRHgyU2bW5LOnzmTE"},{"topic":{},"link":"","infoSlide":"","tournamentID":"IrZL7r0XTyBpGGSAYVYR","division":"","content":"THW lower income tax and impose higher wealth taxes (e.g. on inheritance, property and other assets) instead.","language":"English","round":"5","id":"KWoVa8g1fb2BsbQAawIt"},{"division":"","round":"Open_Final","topic":{},"infoSlide":"","content":"You are a cardinal with evidence of corruption in the Vatican. That you should destroy the evidence.","tournamentID":"HjQJA65fZ9igHKO8DLAP","language":"English","link":"","id":"KYkCtFAcMVWTRuIIOvZn"},{"division":"","tournamentID":"lzwPRjjdpUi2iKUXkOjp","language":"English","infoSlide":"","round":"1","topic":{},"content":"This House would allow offenders serving a prison term of ten or more years to opt to remain in prison indefinitely beyond their court appointed release date.","link":"","id":"KZVnt5D2a1Ge70tE2LCu"},{"topic":{},"content":"THW, assuming it were feasible to enforce, support a global inheritance tax of 100% on all cash and assets beyond the first €5000 (and substantial taxes on high-value gifts during one's lifetime).","tournamentID":"UWHKNxWBfNyw2FCQAxdk","link":"","round":"1","division":"","language":"English","infoSlide":"","id":"KZZFyL9bR0YRFmPuiIir"},{"language":"English","division":"","round":"1","topic":{},"link":"","content":"THB India should remove its ban on 'The Satanic Verses'.","tournamentID":"jhyT1LK3YdR0do1cosc6","infoSlide":"","id":"KZk1KIEruhSPUqPb9uLd"},{"language":"English","tournamentID":"sXtyoMtY4Bb7XJvcqA3J","content":"This house would move Pakistan’s capital to Karachi.","topic":{},"round":"3","link":"","division":"","infoSlide":"","id":"KZuZnQ1WYNDFBYa9HeIq"},{"round":"7","language":"English","tournamentID":"QDGMrdrzlFCxVT5WcqNn","topic":{},"content":"This house would classify catcalling as a felony.","infoSlide":"","division":"","link":"","id":"KbIFGJTybn8qibXYvgTG"},{"topic":{},"tournamentID":"y6YpD63Uuk3t3fbBC7Tk","division":"","round":"1","language":"English","link":"","infoSlide":"","content":"THBT American news media should cease to invite major Trump surrogates (e.g. Kellyane Conway, Sean Spicer) to comment on news events.","id":"KcT2PMng47iTy0fSsko9"},{"infoSlide":"","link":"","tournamentID":"SGpBjVPnJkFrJB0hnxYv","topic":{},"division":"","round":"Open_Quarters","content":"TH, as the EPP, Would Expel Fidesz.","language":"English","id":"KdBOhE4UWpj4ePC0tXDg"},{"division":"","infoSlide":"","content":"THW facilitate religious prosletysation in areas of high socio-economic deprivation.","link":"","tournamentID":"KUgzKY5FHtox24CaztLJ","round":"Open_Quarters","topic":{},"language":"English","id":"KdZPlJhihnUhkZLbICFg"},{"content":"Should cultural institutes be self-sufficient?.","round":"2","language":"English","tournamentID":"8OIcp0isoNfvCv3ZWmkt","link":"","infoSlide":"","division":"","topic":{},"id":"KehTjAnxHcsthjGLSpeP"},{"link":"","content":"As the democrat party, THW nominate Hillary Clinton (assuming she makes herself available) as the democrat candidate for the 2020 presidential elections.","round":"Open_Final","language":"English","division":"","topic":{},"infoSlide":"","tournamentID":"v3Bq7DLUeCcPyvQZjJbj","id":"Kex9zgf4npB2YdMP1wWK"},{"link":"","topic":{},"tournamentID":"PFH5XRScthpwd2dxC2T5","language":"English","division":"","round":"4","content":"THW enforce affirmative action of the poor, rather than minorities.","infoSlide":"","id":"Kf0S1QTGN2ro4o2sporq"},{"link":"","content":"THW directly elect the members of the US Supreme Court.","round":"2","topic":{},"language":"English","infoSlide":"","division":"","tournamentID":"L8JGtnnMnhA8w9ooOx0S","id":"KftayxR3fWPongcf5Hrc"},{"link":"","round":"Open_Partial_Double_Octos","content":"This House prefers religions in which all individuals have roughly equal religious obligations and are encouraged to develop a personal connection with the divine, over religions in which religious obligation and access to the divine are concentrated in religious authority figures.","division":"","infoSlide":"","topic":{},"tournamentID":"wA1XDLHJESmSgLsfZ9Qe","language":"English","id":"KgbkCbXG5OJLimb7TyrO"},{"content":"TH, which is Brazil, regrets its bid for hosting the 2014 World Cup.","division":"","round":"4","infoSlide":"","link":"","topic":{},"tournamentID":"LHNbcjmFANvMo9zTZOWN","language":"English","id":"KgdnWf8XWqfzDELoEN3m"},{"division":"","language":"English","topic":{},"content":"THW penalise a person who knows they have HIV and has sexual contacts with others without informing them.","link":"","tournamentID":"yFALyexswW7KtxRDS4He","round":"6","infoSlide":"","id":"Kh767wxbEjdHWFQbTjLw"},{"link":"","topic":{},"round":"Open_Semi","tournamentID":"sQqCNuWw9nlSsN5agLhC","language":"English","content":"THW include regret as a factor in sentencing.","division":"","infoSlide":"","id":"KhQxJqWPfIMC5qGWJK3Q"},{"link":"","content":"THW revoke the citizenship of Western citizens who travel to the Middle East to join Jihadi groups.","round":"4","tournamentID":"POdYlP5an146yzuVI1Xg","division":"","topic":{},"language":"English","infoSlide":"","id":"KhbTxUtNkymhaZ3GlWzC"},{"content":"TH celebrates (approves of) the existence of religion.","link":"","round":"2","tournamentID":"vx330P6CYx2QKwkFUJiX","language":"English","infoSlide":"","division":"","topic":{},"id":"Khh26xV4YT0A5m515XPJ"},{"language":"English","link":"","infoSlide":"","tournamentID":"gUFKQBcgvghmUX6k0Dj3","content":"This House, as a member of a single-parent and only-child family, would sacrifice themselves for the sake of their family.","round":"1","topic":{},"division":"","id":"KiVmGQjjQ1VBFavfhS7C"},{"link":"","content":"TH advocates black liberation groups to admit and adopt violence as a strategy.","round":"","infoSlide":"","tournamentID":"3B01KdqnCVzQEVjKcHiT","topic":{"others":{"title":"Others","check":true}},"language":"English","division":"","id":"Kip1Jibe1cSxMxyDj6Su"},{"division":"","link":"","infoSlide":"","tournamentID":"wA1XDLHJESmSgLsfZ9Qe","round":"7","topic":{},"language":"English","content":"This House believes that ASEAN should abandon \"the ASEAN Way\".","id":"Kit3gU4MKukGMFsHdd1a"},{"language":"English","content":"THBT state education should purposely undermine the normal gender roles.","link":"","division":"","topic":{},"tournamentID":"pF81od0IQBmQsiQKDxoc","round":"Open_Final","infoSlide":"","id":"KjRGCiwpzJDxbDksXEQ8"},{"link":"","topic":{},"language":"English","infoSlide":"","division":"","content":"TH opposes the glorification of professional e-sports players.","tournamentID":"uJGjvsaThnluwVzoHFXm","round":"4","id":"Kk24qYeyP3uRCkOYY7vM"},{"topic":{},"tournamentID":"efp9mMZFiy8fVwkom17I","link":"","infoSlide":"","division":"","content":"THBT having children is immoral.","round":"Novice_Semis","language":"English","id":"KkC0M0XaDqXxHcS7xS9V"},{"link":"","topic":{},"infoSlide":"","tournamentID":"q7pvo4zkG31lg89ofmeq","content":"THBT the US and EU should seek to promote peace by heavily subsidising Israeli businesses who invest in the Palestinian territories.","round":"8","language":"English","division":"","id":"KkHVH0bCNR1eAtByvcbU"},{"content":"THBT political representatives should deliberately seek to achieve the best political outcomes for their own local community or constituency, even at the expense of the national interest.","link":"","tournamentID":"bTRRi7oLbaQA5e1qz6Qc","infoSlide":"","division":"","topic":{},"round":"1","language":"English","id":"KlTxwhNhD4c8zhQZiZ7A"},{"round":"1","division":"","content":"This house would force single parents receiving welfare to seek work.","language":"English","link":"","infoSlide":"","tournamentID":"JdCT4CooyPOkRsmbNNLg","topic":{},"id":"KmG2pOi4PAvv7Dd9Q2Fr"},{"content":"The House would add a \"notwithstanding\" clause to the Constitution of the United States and allow Congress to override decisions of the U.S. Supreme Court by normal legislative processes.","round":"Open_Quarters","tournamentID":"2C0TX71TRjIIOcsN7CbL","division":"","infoSlide":"","language":"English","topic":{},"link":"","id":"KmiWmD4SCftPn3ZeI0MW"},{"division":"","content":"TH, when testing life-extending treatments for terminally ill patients, would not use control groups.","round":"3","tournamentID":"VWMKb2j3CmLwgnB7Jl4O","language":"English","infoSlide":"","link":"","topic":{},"id":"KmlfsRC8ziB46l9ZdIHk"},{"tournamentID":"ZClJskShp09gm6WCITGC","round":"3","topic":{},"division":"","infoSlide":"","content":"THW, as a parent, teach their daughters to devalue romantic relationships.","link":"","language":"English","id":"KoDgkglIa0KLiNjISB8J"},{"content":"THBT indigenous groups in parliamentary democracies should form independent political parties instead of encouraging their members to vote for, and run on behalf of, existing parties.","infoSlide":"","link":"","division":"","language":"English","round":"2","topic":{},"tournamentID":"macdlwUjYqFCGHKvQS20","id":"KoKTAzpnzftnZtXmPNWc"},{"division":"","topic":{},"tournamentID":"p3EOrIRx2qBcnN8fXbHh","round":"Open_Semis","language":"English","link":"","content":"TH supports the prominence of the American Dream in the national American discourse.","infoSlide":"","id":"Koki7MPg4tjcNLz017xY"},{"language":"English","round":"Novice_Finals","link":"","tournamentID":"Hk8f1ASR1JhJdfu9tmfK","content":"TH fears the development of independent artificial intelligence.","infoSlide":"","division":"","topic":{},"id":"Kor1MxPzgBlVx74p0NAq"},{"round":"4","topic":{},"tournamentID":"o7IbmAZdAZ1UWeWnX7IL","division":"","infoSlide":"","language":"English","content":"THBT China should join the TPP.","link":"","id":"KotRNryUUZC0qploUodY"},{"round":"Open_Final","tournamentID":"mk4ycJh6yz0VDCnkysot","infoSlide":"","content":"THBT free sharing of copyrighted information should be tolerated.","language":"English","topic":{},"link":"","division":"","id":"KpT761m1ghDLBtIVCt2P"},{"round":"2","content":"THBT feminists should not use rhetoric about women being more empathetic or more caring than men as part of their advocacy (e.g. “Women are good leaders because they are more gentle and nurturing.”).","infoSlide":"","language":"English","division":"","topic":{},"tournamentID":"bH0N4QlKzNNQ8zL97OyO","link":"","id":"KpXFkOINaocKJvN540Lm"},{"language":"English","round":"Open_Finals","tournamentID":"wZYAoJ8UubcT3x3E0CVj","topic":{},"infoSlide":"","division":"","link":"","content":"THS diversity quotas for university admissions.","id":"Kpor1xQNmufjo1YUuuqg"},{"content":"THBT the EU should impose an embargo on countries where child labour exists.","round":"4","link":"","tournamentID":"uk4xP1Lp7BjYaOzgd3Xi","topic":{},"language":"English","division":"","infoSlide":"","id":"Kq8xMSrOHZBxKE3l4xUu"},{"tournamentID":"i00RSzvK4b1TDEgnpFJd","link":"","division":"","infoSlide":"","language":"Vietnamese","round":"4","content":"Trong thế giới hậu Covid-19, chúng tôi tin rằng các quốc gia đang phát triển nên ưu tiên đảm bảo sự tăng trưởng của thị trường nội địa thay vì ngoại thương.","topic":{},"id":"Kri2wUwg2I8PWaD95QyS"},{"language":"English","link":"","content":"THW ban the appearance of children on reality television.","topic":{},"infoSlide":"","division":"","round":"Schools Semifinals","tournamentID":"CBVZREYhjV5bhCHOuWjU","id":"KsQfk4X51QS65reKPJQ6"},{"tournamentID":"wXcojonR6N4b28c9T963","round":"Open_Final","infoSlide":"","link":"","division":"","topic":{},"language":"English","content":"THB schools in the USA should teach rap lyrics as part of their core English literature curricula.","id":"KsRIJeeP2yyFl6EsLTbC"},{"content":"THBT it is in the interests of the Chinese Communist Party to allow state-owned firms to default on domestic bond repayments.","link":"","division":"","tournamentID":"dgRU54McMXqo1MXISAFt","round":"Open_Semi","topic":{},"language":"English","infoSlide":"","id":"KsfNZX1GNAZgTXvMJLy8"},{"tournamentID":"DLFJWaIyHnSlvFofovjc","topic":{},"language":"English","division":"","link":"","round":"2","content":"THBT parties with overdue debts should not be allowed to participate in elections.","infoSlide":"","id":"KsudLSeHl4HzfXr6CRTk"},{"division":"","link":"","content":"This House would abandon the use of economic sanctions as a tool for achieving political aims.","tournamentID":"4WWD63gqcbSKMNoFf5ly","language":"English","infoSlide":"","round":"3","topic":{},"id":"KtMxBP9q8bsXf8CjTxGD"},{"content":"This house would force all companies worth over $1 billion to list publicly.","topic":{},"round":"Open_Quarters","language":"English","tournamentID":"MIrEXPHnAIOpqQw6kxky","infoSlide":"","division":"","link":"","id":"Ktu0U0j0r1nCb8tJidK5"},{"round":"ESL Final","link":"","division":"","language":"English","tournamentID":"uJGjvsaThnluwVzoHFXm","content":"THBT governments would be justified in heavily pursuing Longtermism.","topic":{},"infoSlide":"For the purposes of this debate, supporters of Longtermism believe that significantly more beings will be alive during the future, and that we should assign moral value to the unborn. Thus, they conclude that when evaluating our actions today, the largest consideration is how they affect the future. Potential examples of Longtermist policies can include encouraging people to dedicate their lives to reducing long-run existential risks, allocating a substantial portion of the budget to try and improve the welfare of future generations, or trying to expand humanity to other planets. Under a Longtermist view such policies are ethical even if they come at the very strong expense of more immediate and certain goals like poverty reduction, providing healthcare or increasing the happiness of the living.","id":"KuyFvSsynz0dKFGEPOXB"},{"infoSlide":"","language":"English","link":"","division":"","topic":{},"content":"Should punishment for use of doping be subject to a statute of limitation?.","round":"2","tournamentID":"N8WiUFJpvPmLaaYYsbsD","id":"Kw13vw7ADFPURC9JlTrM"},{"language":"English","infoSlide":"","content":"TH, as a Jeff Gordon, would publicly come out.","link":"","tournamentID":"pp2oK2CPkxitjQPpwO4o","topic":{},"division":"","round":"3","id":"KwjbrhrttZyAtcsJ5tDV"},{"topic":{},"link":"","content":"THW abolish the concept of limited liability.","tournamentID":"cp0MD0ZRWeTfahcPD6wj","infoSlide":"","division":"","round":"3","language":"English","id":"KxMQK2pXbtVCRC5qtSzC"},{"content":"This House approves of \"hacktivism\" against misbehaving corporations.","division":"","round":"2","language":"English","link":"","topic":{},"infoSlide":"","tournamentID":"wuDBbL4uYIZXIthzVv4V","id":"KxSLlbtv2h20ONiT40m6"},{"division":"","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","infoSlide":"","language":"English","content":"THBT governments should not fund reconstruction in areas prone to natural disasters.","round":"2","link":"","topic":{},"id":"KxhSNenNopWmq9KgThkH"},{"language":"English","link":"","tournamentID":"Kpa8GUvqSrTVoNVUqmI4","round":"Open_Final","content":"This House Still Believes in \"Liberty, Equality, Fraternity\".","division":"","topic":{},"infoSlide":"","id":"KyLPJEX16k18uCeWYY5I"},{"content":"THW anonymize the funding, display, and sale of art.","round":"2","link":"","topic":{},"division":"","language":"English","tournamentID":"NBT7RwLHeAApXuOtrQpt","infoSlide":"","id":"KyZ6U5a3t7kQxdGg8eLy"},{"division":"","round":"3","infoSlide":"","content":"This house believes that women who have experienced gender based discrimination are justified in committing misandry.","language":"English","topic":{},"link":"","tournamentID":"L0ovxzciizWhfK3fHJU8","id":"KyZpAIAwQN7LJ5Nfq4TX"},{"infoSlide":"","division":"","content":"THBT states should place constitutional limits on regressive taxation policies.","language":"English","link":"","round":"Open_Semis","topic":{},"tournamentID":"QV74kB5iA6iDiqLCNz2F","id":"KyhiWj10dh7Y68w85dT4"},{"content":"THB that developed countries should be forced to accept climate refugees.","division":"","round":"","tournamentID":"3B01KdqnCVzQEVjKcHiT","topic":{"environment":{"check":true,"title":"Environment"}},"infoSlide":"","language":"English","link":"","id":"KyjbDBuTUr4KcCmHwba2"},{"content":"THBT the feminist movement should actively recruit conservative women.","infoSlide":"","language":"English","round":"1","tournamentID":"NtnveNmZosTMD9TU0qA8","topic":{},"link":"","division":"","id":"KzVAtxtE58rz4ntWCmby"},{"language":"English","tournamentID":"Sf5YtAJo1vVmULRLSMAt","infoSlide":"","division":"","topic":{},"link":"","round":"Open_Quarter","content":"THBT the heads of central banks (eg: the Federal Reserve, the European Central Bank) should be democratically elected.","id":"KzWXENn3qYYvmgVLerMq"},{"language":"English","content":"THW forbid universities in the US from accepting research funding from China.","link":"","infoSlide":"","division":"","tournamentID":"xwOMY1HAkkxJbFVQIUFJ","round":"5","topic":{},"id":"KzheWDQjeKtDAGNNAYcU"},{"division":"","topic":{},"round":"3","tournamentID":"FvCiiwW1VYBNdYW8QTUA","link":"","content":"This house supports the cult of productivity.","language":"English","infoSlide":"The cult of productivity refers to a set of norms where being continuously productive and busy in both your professional and personal life is seen as desirable and virtuous.","id":"KzrpmLXW2bP9OnKWra3N"},{"language":"English","topic":{},"tournamentID":"roH9ICCjwscIePFGM61P","content":"This house believes that foreign mercenaries, employed by the West, should unionise.","round":"7","link":"","infoSlide":"","division":"","id":"L0TPTypcrMofE3Ys9tnp"},{"division":"","infoSlide":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","link":"","language":"English","content":"THBT ASEAN should establish a closer partnership with China than the US.","round":"","topic":{"irw":{"check":true,"title":"International Relations/War"}},"id":"L1PViMTxoDMfftDQHpSX"},{"content":"THW embrace the rise of private cities (i.e. Eko Atlantic,Tatu City,Hope City,Cite le Flueve).","round":"1","topic":{},"infoSlide":"","division":"","language":"English","link":"","tournamentID":"1DUltfq5WOlWowHiNs5h","id":"L1t2Bq9iXM7ZfiblwpZo"},{"round":"2","division":"","content":"This House, as the WWE, would recognize Chris Benoit's achievements and induct him into the Hall of Fame.","language":"English","topic":{},"tournamentID":"aHKO046eJRUWaom1jPG8","link":"","infoSlide":"","id":"L1xkosZ1Izn093jOETyT"},{"link":"","infoSlide":"","tournamentID":"sv4AWOKZYbl1PfCObw21","content":"TH prefers, as a means of enrolling people in the army, conscription by lottery rather than aggressive recruitment of volunteers.","language":"English","division":"","round":"Open_Semi","topic":{},"id":"L1yfMj0nSWnuEomq2kBj"},{"tournamentID":"FvCiiwW1VYBNdYW8QTUA","infoSlide":"","language":"English","link":"","round":"Final","content":"THBT the legacy of historical figures should not suffer due to those figures' immoral actions, if those actions were generally seen as morally unproblematic by their own society.","topic":{},"division":"","id":"L29mz6UgQoPoK1mAJNQz"},{"round":"Open_Semis","infoSlide":"","language":"English","link":"","division":"","content":"TH, as an astronaut, would take part in Mars One (one way trip to Mars).","tournamentID":"uUwIAKIDo0apui0AqOxG","topic":{},"id":"L2LKfUMZopNwUEb1xPEf"},{"content":"This house would deny public funding to parties with explicitly ethnic-based membership or platforms.","tournamentID":"OuMJNWJJy88lWhwWuJmy","round":"5","topic":{},"link":"","language":"English","infoSlide":"","division":"","id":"L2a2Bg7JT4XhbWKav9Sl"},{"round":"Open_Semis","topic":{},"content":"THW introduce blind voting in national elections.","link":"","language":"English","infoSlide":"","tournamentID":"ch7bmkDPz31zOvzM3txF","division":"","id":"L3Zuvd9ESq3i8kROLztp"},{"link":"","content":"THW legalize champerty.","tournamentID":"yDvj9tks9IvE2CTAVfzV","division":"","topic":{},"language":"English","infoSlide":"Champerty is a process at which an external party (normally companies) purchase an individual's right to sue even when that external party has no direct bearing to the legal suit. The individual and the third party could strike their own agreement; whether it is to split the settlement or if the third party pays a flat fee to the individual upfront to completely take over the legal case. This practice is currently illegal.","round":"Open Octofinals","id":"L3hXzMvDON6JUVBqQVZ4"},{"language":"English","round":"6","content":"THW require all isolated religious communities (eg. Hasidic Jews, Jehova's Witnesses) to give all 18-year-olds a 'Rumspringa' [Amish tradition of sending off 18-y.-olds to live in outside world for 1 year, after which they may chose to return or not].","topic":{},"infoSlide":"","tournamentID":"Iv1dWODCjV8TBafyTxx7","division":"","link":"","id":"L3kNNN77X5IsvCWG3SdM"},{"infoSlide":"","division":"","link":"","round":"Quarterfinals","language":"English","topic":{},"content":"That we would prefer sending old parents to nursing homes to caring for them at home regardless of financial burden.","tournamentID":"SPjgjrpUBIPs6H9gmx9P","id":"L48QHEo5uQrGIzg5NtAa"},{"link":"","language":"Vietnamese","content":"Chúng tôi sẽ coi giáo dục là một loại dịch vụ và học sinh là khách hàng - họ trả tiền để được giảng dạy.","topic":{},"infoSlide":"","round":"1","division":"","tournamentID":"znXRdnU2llK8fXmHlci5","id":"L4UN6sJ2kaU8RzlPtBXn"},{"division":"","topic":{},"tournamentID":"8EaRfOcTe47s5VRlQeNv","content":"issues that are classically seen as part of the political domain are increasingly decided on by courts through legislation. Examples include, but are not limited to: the Dutch state successfully being sued to take stronger measures against climate change (Urgenda) and forcing political parties to allow women as candidates (SGP), the British Supreme Court deciding whether the Lower House should have a vote on Brexit and Trumps measures being increasingly challenged in courts. Motion: THR the judicialisation of politics.","round":"3","link":"","infoSlide":"","language":"English","id":"L5Qosd39gfX7FTUt9HpH"},{"content":"THW create separate schools for LGBTQ youth.","topic":{},"tournamentID":"swAbmAXdPnojWIXuZFwm","infoSlide":"","round":"4","division":"","link":"","language":"English","id":"L66k9LIcRZSqel9aTZdO"},{"link":"","tournamentID":"8PjX16DCJ3bPRWbiNKNn","topic":{},"division":"","infoSlide":"","content":"THW prohibit all research aiming to create sentient artificial intelligences.","round":"Novice_Final","language":"English","id":"L6OSg5XwFPnHoTxZ8Sbo"},{"infoSlide":"","tournamentID":"ZKj5YfRQe4wJF8bx4fLp","content":"This house would abolish all forms of affirmative action.","link":"","division":"","language":"English","topic":{},"round":"4","id":"L6erhAXvY9gnaxQTWZNx"},{"content":"This house believes that the Labour Party should have worked to rehabilitate Tony Blair’s image in its campaigning, prior to the 2015 General Election.","division":"","topic":{},"tournamentID":"L5MIrW7phE11xSIVutdB","infoSlide":"","language":"English","round":"2","link":"","id":"L6qMRXxCCyv98EEmsfLV"},{"tournamentID":"etTxnyhPGMITmcNf2DkM","topic":{},"link":"","infoSlide":"","content":"THW force insurance companies to have equal insurance premiums for men and women.","round":"1","division":"","language":"English","id":"L765XArYrlaGO9NVNB03"},{"topic":{},"round":"2","division":"","infoSlide":"","language":"English","link":"","content":"THW defend that universities give preference to disadvantaged students.","tournamentID":"0WQ7djfo2FawxEAC95E0","id":"L7nAai696wWHixjSpWqT"},{"topic":{},"division":"","tournamentID":"1dwGdjAn9pODo8bQfmJW","infoSlide":"","link":"","language":"English","round":"Novice Final","content":"THBT refugee centers should be constructed with the intention of serving as permanent relocation centers rather than temporary areas before returning refugees to their home countries.","id":"L8KENzsLdXjcmYbsjN6g"},{"language":"English","topic":{},"content":"THBT China should remove its restrictions on rural to urban migrants.","link":"","division":"","round":"2","tournamentID":"WnH3YWwA4xB4HPfqIqea","infoSlide":"","id":"L8bXPrGnTrQsL1njqQyp"},{"round":"5","infoSlide":"","link":"","division":"","tournamentID":"xeyFK25uSH9TtPga8ALE","content":"THBT MGM Film Studios should cast a woman as the next James Bond.","language":"English","topic":{},"id":"L99ZPNx5PGfumpF3nVXn"},{"division":"","link":"","language":"Vietnamese","topic":{},"content":"Chúng tôi ủng hộ một thế giới không có cạnh tranh, mâu thuẫn, trách nhiệm.","infoSlide":"","round":"Grand Final","tournamentID":"mAqW9Go1ryAbaaM1OY8z","id":"L9avXl7rykEFazxwosYw"},{"topic":{},"round":"EFL_Final","content":"This house would eliminate all non state-run schools.","tournamentID":"gsX4dlvvsr6lcKP3eM2T","infoSlide":"","link":"","division":"","language":"English","id":"LAmRCQKBY63rkdA7Z9W7"},{"division":"","tournamentID":"KncW7pH1nDIom3xK89VG","link":"","round":"Grand Final","topic":{"fiction":{"check":true,"title":"Fiction"}},"infoSlide":"Có một nền văn minh gần Trái Đất được trang bị bởi công nghệ tiên tiến. Công nghệ này có thể tự che giấu và tránh bị phát hiện một cách khá đáng tin cậy.","language":"Vietnamese","content":"Chúng tôi, với tư cách là nhân loại, khuyến khích người ngoài hành tinh tiết lộ thân phận với Trái Đất.","id":"LAsn3gRT8WZRoqfUvRrD"},{"round":"3","topic":{},"tournamentID":"vzoLJmfiPRVvjgiu4Nrs","language":"English","content":"THS the complete demetrication of all social media.","infoSlide":"Social media demetrication is the process of removing all metrics such as likes, views, number of shares, etc. from all posts.","division":"","link":"","id":"LBRzMDCufdtPSxuUnP6w"},{"division":"","round":"Open_Semi","content":"THR the existence of caste-based political parties in India.","language":"English","topic":{},"tournamentID":"Gx29hnXeBrSjBZrrDKx8","infoSlide":"","link":"","id":"LBdbEx6A2o0Q3YWGad9l"},{"division":"","tournamentID":"vTB5rmh37ZMzdOCJ34sF","infoSlide":"","content":"THBT when faced with the choice between spending discretionary income on non-essentials or giving to charity, individuals should always choose to give to charity.","round":"Novice_Final","link":"","topic":{},"language":"English","id":"LCIMj9imEKqofIAZ5kBp"},{"round":"EFL Final","tournamentID":"uJGjvsaThnluwVzoHFXm","division":"","link":"","infoSlide":"Examples of self-censorship: AI conferences avoiding discussions on the implications of the use of a certain technology by oppressive regimes; competitions censoring topics; moderators removing politically sensitive content from discussion boards.","content":"THBT international discussion forums should not self-censor in an attempt to increase inclusivity to people from countries with stringent freedom-of-speech rules.","topic":{},"language":"English","id":"LCrICUaZNEBmVXL2IbWr"},{"tournamentID":"vx330P6CYx2QKwkFUJiX","language":"English","content":"THW make membership of a political party mandatory.","division":"","round":"1","topic":{},"link":"","infoSlide":"","id":"LD58QlB7yENA4XPPa7nb"},{"link":"","content":"THS countries withdrawing from the International Criminal Court in order to create their own regional replacements (e.g. an African Criminal Court, an InterAmerican Criminal Court).","round":"2","language":"English","tournamentID":"ChiU8yMbLI2Y2q5rwURP","infoSlide":"","division":"","topic":{},"id":"LDMxIVJXZTwfuaDRR6wH"},{"topic":{},"link":"","tournamentID":"3Gl2F99bU3ZHa2ZjcrUR","infoSlide":"","division":"","round":"2","content":"THBT prominent female athletes should reject offers to play in professional male leagues.","language":"English","id":"LDXaGVahP5xc7jYlbr0g"},{"round":"3","topic":{},"tournamentID":"KauhYz2zVxnSCnoC8XMr","link":"","infoSlide":"","language":"English","division":"","content":"THW wage war using only games fought via computers.","id":"LFbPOTIEojFcv5PZpFnJ"},{"link":"","division":"","content":"THW introduce a 30-hour work week.","infoSlide":"","topic":{},"language":"English","round":"Open_Final","tournamentID":"1cJ1sn6hYwZuN7mUjUE9","id":"LFfnKjskUnzaGZ8WefKK"},{"round":"1","division":"","content":"THBT schools should aggressively stream students, according to their ability, from a young age.","infoSlide":"","tournamentID":"zpoYhp2wK06V8pO2Ljrp","language":"English","topic":{},"link":"","id":"LG43InEaxK0lzY7J7Hmh"},{"round":"Open_Final","division":"","tournamentID":"jJ6q3uq5BHRM31WhI18D","content":"THW introduce mandatory military service.","topic":{},"link":"","language":"English","infoSlide":"","id":"LGuT50fHX4BOc1pl95tn"},{"infoSlide":"","tournamentID":"fHaBEm9PW7QYO4ZKFbwi","language":"English","round":"5","topic":{},"link":"","content":"THW allow police to provoke citizens for committing crimes.","division":"","id":"LGw1uijJgLIivYkHauk3"},{"link":"","topic":{},"infoSlide":"","division":"","content":"THBT in countries where abortion is illegal, no exceptions should be made for cases of incest or rape.","round":"Novice_Final","language":"English","tournamentID":"NxB6ercynISK3sISgci5","id":"LH6EPxHHi0iX6kVJxkQ6"},{"topic":{},"language":"English","division":"","link":"","content":"THBT all Government Policy Should Follow the Strict Logic of Maximizing Total Happiness.","infoSlide":"","tournamentID":"Iv1dWODCjV8TBafyTxx7","round":"Open_Semis","id":"LHnhpKhZmWW1Dfra6CWz"},{"division":"","link":"","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"round":"Grand Final","infoSlide":"A citizen consultation council is a group of 100 or so randomly selected within guidelines reflecting the population as a whole in terms of gender, age, income and education. Over the couse of weeks or months, they meet to discuss a potential legislative decision in a considered, careful way. Often they are paid for their time. At the end they present their recommendations to politicians.","tournamentID":"xAdc6R4uC1xkQxvmPedU","language":"English","content":"THBT all major legislative decisions must be approved.","id":"LIFURxbsBws7pojb56Uq"},{"tournamentID":"MeKByJc38Yt4otefONa7","division":"","infoSlide":"","link":"","topic":{},"content":"THW make fines relative to wealth.","round":"3","language":"English","id":"LIN3RJQKitXKO6xCgnOe"},{"round":"2","division":"","tournamentID":"zkhDsyR1rpDZXDiA2JUj","content":"TH regrets the demise of the Green Party.","link":"","infoSlide":"","topic":{},"language":"English","id":"LK4l5dAu6RmEbWFuOL9z"},{"language":"Vietnamese","division":"","link":"","round":"1","content":"Chúng tôi sẽ tước tất cả các phúc lợi y tế được chính phủ trợ cấp cho những cá nhân chọn lối sống không lành mạnh.","tournamentID":"WEotTkb6ok8UfUOl0Lwb","topic":{},"infoSlide":"Trong bối cảnh của trận tranh biện này, lối sống không lành mạnh bao gồm các hành động như:Hút thuốc, ăn uống không điều độ, lạm dụng chất cấm và KHÔNG bao gồm chế độ sinh hoạt như ngủ muộn, làm việc nhiều giờ.","id":"LKDWxELhlmom1PmSNYRW"},{"infoSlide":"","division":"","round":"2","tournamentID":"X7iAuOHrSqi0EHPkRNls","link":"","topic":{},"language":"English","content":"THW punish attempted and committed crimes equally.","id":"LKGN1M1kqxByuCxMWu49"},{"link":"","content":"THW legalise entrapment.","tournamentID":"o2dx25z3TGRcLxLt33Qk","language":"English","round":"3","infoSlide":"","topic":{},"division":"","id":"LKgGBNMPY4hiGQcqM93X"},{"topic":{},"tournamentID":"9WoIT6ofG5A9j3MeLxh4","language":"English","content":"This House believes that the LGBT movement should embrace the message that sexuality is a choice.","infoSlide":"","division":"","link":"","round":"3","id":"LL25KQxVR5SLgDsajEv6"},{"content":"TH Regrets the Existence of Valentine's Day.","tournamentID":"BjyPWHMlV10O4VN8B1XE","link":"","language":"English","division":"","topic":{},"round":"3","infoSlide":"","id":"LLT74FSN00RLKC4ekHl3"},{"infoSlide":"","tournamentID":"1MV3spmbrmWLKhisZDU8","content":"This House Believes That 'armies of opinion shapers' should never be a legitimate political tool for states.","division":"","language":"English","topic":{},"round":"Open_Final","link":"","id":"LM3O0s0qmU1SJmeMcBtk"},{"content":"THBT China should abolish the “Gaokao” in favour of allowing universities to establish their own (admission) criteria.","division":"","infoSlide":"","language":"English","round":"3","tournamentID":"PIBLfC67BXtpF7r3aqIV","topic":{},"link":"","id":"LMBC6BLeBTqE6QuArfWB"},{"round":"2","infoSlide":"","division":"","content":"Chúng tôi sẽ cho phép việc sử dụng những chứng cứ được thu thập một cách trái pháp luật (hacking, đặt máy nghe lén, ...) trong các phiên tòa hình sự.","link":"","tournamentID":"fBPBbh32BZ2p0Y1Fy5Yi","language":"Vietnamese","topic":{},"id":"LMGkUKwE3qHZhw3ZlX8j"},{"division":"","round":"Open_Final","tournamentID":"FISzpNaGZKCHkhtDdzPp","topic":{},"infoSlide":"","language":"English","content":"Assuming the technology exists, TH supports the use of augmented eternity for people in highly influential positions (e.g: top academics, researchers, CEOs or politicians).","link":"","id":"LMHSPhtce5NArtzkFbDa"},{"infoSlide":"","division":"","content":"THBT women in the Netherlands are emancipated enough.","language":"English","topic":{},"round":"2","tournamentID":"NNES6CXrTQ3wDbdnrNDb","link":"","id":"LMNGiEIgrHbCLdpZcmPZ"},{"division":"","round":"1","infoSlide":"","language":"English","content":"THW enable people to sue their partner for compensation in case of infedility.","tournamentID":"oopKRuBfN6tSw3UTWZKT","link":"","topic":{},"id":"LMPLuQCYj8Ju8IsqV6zR"},{"content":"THW force companies to pay their interns.","division":"","infoSlide":"","link":"","language":"English","topic":{},"round":"1","tournamentID":"eBNO1FMsif7tzOa9LlnU","id":"LMbM51T2eFf9THc4KLVf"},{"division":"","language":"English","round":"Open_Semis","link":"","content":"THW abolish patents on computer software.","tournamentID":"2XJwkUOw6JeegMJHT6Hl","infoSlide":"","topic":{},"id":"LOCTyted2Pv7d7jzcG9E"},{"infoSlide":"","round":"","topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"tournamentID":"FZTHJ19pUWQG2SZNeOvr","content":"THBT celebrities have corrupted the feminist movement.","division":"","language":"English","link":"","id":"LOOijC7EyRlDXTyWXF6V"},{"division":"","tournamentID":"p6ZWMCxUvbu1V0BT5gJg","topic":{},"infoSlide":"","link":"","language":"English","content":"THBT sports assocciation’s ultimate goal should be the integration of women into mixed teams rather than achieving parity between male and female teams.","round":"3","id":"LOVOLDMyYo3Xp9TN3kt6"},{"division":"","round":"Novice_Final","link":"","topic":{},"language":"English","content":"TH regrets commercialization of counter-cultural or oppositional sub-genres of music.","infoSlide":"","tournamentID":"eXqHjvQ9MTXYhyv8NeW7","id":"LObAXDUUYyoFTSCvSwi2"},{"content":"THW falsify history in post-war societies in order to ensure peace.","division":"","topic":{},"language":"English","tournamentID":"44zszGOLcUfUSx7uRJTD","link":"","infoSlide":"","round":"4","id":"LOpxf96ve7mTroJe5Npb"},{"content":"TH, as the Catholic Church, would vote in the Pope through a referendum amongst all Church-going Catholics when electing a new Pope, rather than amongst Cardinals.","language":"English","division":"","link":"","round":"Open_Semis","topic":{},"tournamentID":"54Voc2YjynWxScz0a04o","infoSlide":"","id":"LOzTdlQvOHKtkHYJJ3Vp"},{"infoSlide":"","link":"","division":"","language":"English","content":"THBT Western States Should Ban Depictions of the Prophet Muhammad (Peace be upon him).","round":"Open_Final","tournamentID":"hoxSwibt3yivmk88aoAD","topic":{},"id":"LPGZsCtjsn7HJOgvxABa"},{"round":"Open_Final","content":"THBT Jitse Akse should not be punished for his fight in Syria.","infoSlide":"","language":"English","division":"","tournamentID":"IxT6Qaz01G1Db87fU73z","link":"","topic":{},"id":"LPRCiKtdor4aCu9uhJCm"},{"topic":{},"link":"","round":"3","language":"English","infoSlide":"","tournamentID":"macdlwUjYqFCGHKvQS20","division":"","content":"This House believes that governments should make available a publicly searchable database containing the income, wealth and taxes paid by all citizens.","id":"LQTWWmKeb2o9lUzXZpj2"},{"infoSlide":"Shock and awe (technically known as rapid dominance) is a tactic based on the use of overwhelming power and spectacular displays of force to paralyze the enemy's perception of the battlefield and destroy their will to fight. This tactic was used as a primary tactic by the USA in the Gulf War and the Iraq intervention.","content":"With the benefit of hindsight, TH, as the United States, Would not have used the 'shock and awe' tactic in the Middle East intervention.","link":"","tournamentID":"C09YJyBGrNu3L4IxdHCw","division":"","topic":{},"round":"Semifinals","language":"English","id":"LQqO7PdTdaqUOkIae6kr"},{"tournamentID":"5Qomv7BFHTKmY4PchwDr","language":"English","link":"","infoSlide":"","round":"6","division":"","content":"That the Democratic Party should not embrace 'Never Trump' Republicans.","topic":{},"id":"LRGgVVd5GWWhrLOFWgIA"},{"language":"English","infoSlide":"","content":"THR the rise of the commercialisation of surrogacy in developing countries.","topic":{},"round":"2","link":"","tournamentID":"nZHihOHKbvuiGhhtsXam","division":"","id":"LRXQguW2y9WzEeXiOjor"},{"tournamentID":"UefabB9q8iptn7SCi47p","content":"THBT the Bulgarian government should pay reparations to all those who were subjected to the Revival process.","round":"3","link":"","division":"","infoSlide":"","topic":{},"language":"English","id":"LShTq7ArylVOkbs8zN4u"},{"language":"English","round":"1","tournamentID":"TwRuBI9R9WS6estcrif9","link":"","infoSlide":"","division":"","content":"THBT developing states should aggressively incentivize collective farming.","topic":{},"id":"LTTyN5RE1jToepZm2qa7"},{"division":"","content":"This House Would Not Provide State Funding for Art Based Higher Education, eg. art, music, drama.","tournamentID":"3Zgv6Gsne7dxEbg36SPO","infoSlide":"","link":"","language":"English","round":"1","topic":{},"id":"LUHaNZAL5jEtnezIEHWT"},{"topic":{},"language":"English","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","division":"","round":"Open_Semi","infoSlide":"","content":"With the benefit of hindsight, TH, as the USA would not order the killing of the Iranian major general Qasem Soleimani at the beginning of this year.","link":"","id":"LUJKBEaBMkHMXuXev1pt"},{"topic":{},"tournamentID":"tKXlShZl2vec49jC1bif","link":"","division":"","round":"Open_Semi","content":"THW create special intellectual property rights of indefinite duration for the traditional knowledge and culture of indigenous peoples (e.g. gurana berry processing for the Gurani people of South America; ka mate haka for Ngati Toa; dot paintings for the Papunya Tula people in Australia).","language":"English","infoSlide":"","id":"LUuC0A5Sxy5r8OMzV6gx"},{"tournamentID":"hY7icY7k8fuatysSqMFr","division":"","round":"1","topic":{},"link":"","language":"English","content":"TH, as Catholics, would oppose the canonisation of Mother Theresa.","infoSlide":"","id":"LWGPijwt9BmIR9hSkhPi"},{"language":"English","division":"","infoSlide":"","link":"","round":"4","topic":{},"tournamentID":"RlKeUHJPWxI30cOSUIu3","content":"This House would disproportionately hire African Americans in the US police force.","id":"LWLCbRN7DbfB7EqOOz6a"},{"language":"English","topic":{},"round":"6","content":"TH supports politicians who pass progressive legislation, even where this is contrary to the wishes of the democratic electorate.","link":"","tournamentID":"zngB1WF8viOW2uGu6swZ","infoSlide":"","division":"","id":"LXSOOeyWytnpY2OM7wXj"},{"language":"English","content":"TH applauds the social pressure on teenage girls to initiate promiscuous sexual activity;.","tournamentID":"WcTEqzk0ckiyLGdszyy6","link":"","division":"","infoSlide":"","round":"Open_Semi_1","topic":{},"id":"LYKWAgqrqfU0aAxUTQxm"},{"link":"","round":"Novice_Final","infoSlide":"","tournamentID":"QZvopTthxxEkyvHXmzp3","division":"","content":"THW create and enforce filial responsibility laws (mandating that people take care of their parents)\" - or words to that effect.","language":"English","topic":{},"id":"LYdAiQaazruGVbOEdmNs"},{"division":"","round":"Open_Semi_1","infoSlide":"","tournamentID":"eECtQ29Kd45vZq8n2XAr","content":"THW introduce graduate tax.","link":"","topic":{},"language":"English","id":"LYwehui1Uh8MY62HDsnk"},{"language":"English","content":"THBT states should allow all non-citizen migrant workers to vote in local and national elections.","division":"","link":"","tournamentID":"XnmecTVfWWNVfWZaANER","infoSlide":"","topic":{},"round":"4","id":"LZCQ1da92vJL1crMBybr"},{"topic":{},"tournamentID":"5ETrS816OeSAWdPhWEHf","division":"","round":"7","content":"“THB that Barack Obama's Presidency has been a Success”.","infoSlide":"","link":"","language":"English","id":"LaIJVu8JuO4ykwCvToYv"},{"division":"","round":"Open_Final","infoSlide":"","content":"This House Would suspend the right of free movement of people in the EU.","link":"","tournamentID":"hUGuNPuqow1Qx4Z2fgOz","topic":{},"language":"English","id":"LaZBZdSRn4hyUcMDH1so"},{"division":"","round":"Open_Semis","infoSlide":"","tournamentID":"ZvEJb11Ww6RpoVmg4QV3","language":"English","link":"","topic":{},"content":"THBT the US should sell arms to Nigeria to fight Boko Haram.","id":"LbQ1cb4ZfXOGyXSM9tQT"},{"round":"Novice_Final","content":"THR Breadtubers' prioritisation of trying to de-radicalise alt-righters.","topic":{},"infoSlide":"","link":"","tournamentID":"7l98EUanZ85SaCAlZg2X","division":"","language":"English","id":"Ld8VlOKoqz4Jk25a71QD"},{"topic":{},"division":"","content":"TH prefers a world without a concept of an afterlife.","tournamentID":"Wn4nk4Gju7tmDZTbrogC","round":"5","language":"English","infoSlide":"","link":"","id":"LeI62aRSsaReSnyYbVm8"},{"tournamentID":"9mfNKBqpq9HzOZ9GltTe","round":"2","content":"This House believes that democratic countries should not allow family members of recent presidents to run for office.","topic":{},"link":"","infoSlide":"","language":"English","division":"","id":"LegZ6qlED29MIg9zBbod"},{"round":"2","link":"","infoSlide":"","content":"THB The State Should Not Attach any Legal or Fiscal Privileges to the Family Unit (e.g tax breaks, spousal exemptions etc).","language":"English","division":"","tournamentID":"qLVUbjlIT84ro50ixBwk","topic":{},"id":"LfWYOLVySW50N3vFgNeZ"},{"division":"","topic":{},"content":"In art and popular culture, THBT creating new lead characters for minorities (e.g. Hancock, Black Panther) is better than recasting them in existing roles already played by other actors/communities (eg Ghosbusters, The Little Mermaid).","link":"","tournamentID":"OyqUfVFCTQ5A8iecmNK1","infoSlide":"","language":"English","round":"3","id":"Lfk3fHpuJIrZGiLDNNjX"},{"tournamentID":"E5iEI92yocDkjANxDoF9","topic":{},"link":"","division":"","content":"TH, as a wealthy individual, rather than paying the full rate of tax, would avoid taxation in order to donate to charity, according to his/her own moral preferences.","language":"English","infoSlide":"","round":"Open_Final","id":"LhMET8aaSC7grGaTEocs"},{"language":"English","link":"","infoSlide":"","division":"","topic":{},"tournamentID":"3G6HklWR08yKYY0GbDsU","round":"Open_Semis","content":"THBT state policies should actively discourage a consumerist lifestyle.","id":"LhlysSUrNzTHU2LvIKvN"},{"link":"","tournamentID":"q7pvo4zkG31lg89ofmeq","topic":{},"division":"","language":"English","infoSlide":"","round":"Open_Partials","content":"THW allow corporations to use hackers to retaliate against cyberattacks where the state seems unwilling or unable to do so.","id":"Li5psIHi3oTVapLi0olG"},{"language":"English","division":"","round":"Novice_Final","infoSlide":"","content":"TH regrets the use of nationalism by colonial liberation movements (e.g. the Indian National Congress, Sinn Fein).","link":"","topic":{},"tournamentID":"a40eH2E5w4GGnWQ3oDT6","id":"LifzziWbFV75CLYgXqx2"},{"content":"THB the US should unilaterally intervene in Syria.","tournamentID":"z4fwjDZ02juoVx4MeEih","topic":{},"division":"","link":"","infoSlide":"","language":"English","round":"5","id":"Ljxiof6qrypMy6TLoebg"},{"language":"Vietnamese","content":"Chúng tôi ủng hộ thế giới nơi mọi người có thể hoàn toàn làm chủ cảm xúc của bản thân.","infoSlide":"","topic":{"philosophy":{"title":"Philosophy","check":true}},"link":"","round":"","division":"","tournamentID":"sgcqNV5ntCoa4H8glRBu","id":"Lk6bkZUMJtopCBLkuRyf"},{"infoSlide":"","content":"THR teaching children to believe in the notion that good people win over bad guys.","division":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","link":"","language":"English","topic":{"hr":{"title":"Human Relationships","check":true}},"round":"","id":"LkuSqJSKZzLeukJAaqqr"},{"division":"","infoSlide":"","round":"Open_Semi","content":"This House believes that the Israeli government should grant citizenship to permanent Palestinian residents in Israeli-controlled areas.","link":"","topic":{},"language":"English","tournamentID":"lWGI0B8QpTMEA8NW8UYQ","id":"LlkSd4yC6ZYbcHPKLzeD"},{"tournamentID":"m6JzV67uYJSVBRpAbgL7","division":"","round":"High School Semifinals","language":"English","content":"THBT LGBTQIA+ activists in religiously conservative countries should seek to actively solicit support, funding, and endorsement from religious entities.","link":"","infoSlide":"","topic":{},"id":"LmBJmIinLjByOp65KhNx"},{"tournamentID":"g7nlvxejABAgCXhGkJg8","infoSlide":"","content":"THW require corporate boards to allocate a substantial number of board seats to representatives of the employees of the company.","language":"English","link":"","division":"","round":"1","topic":{},"id":"LmCvr0hbu2l5eHopB9Lc"},{"content":"THBT western liberal democracies should criminalize and permanently disavow private military contractors.","language":"English","infoSlide":"","tournamentID":"81tUVTFSIzBinbpptw4G","link":"","round":"Open_Semi","division":"","topic":{},"id":"LmfQyvi8ur9JfPpa5uhT"},{"division":"","tournamentID":"UfGg9gZEXlU744RWE1Y1","content":"THW create state-run centres where individuals can purchase and consume psychedelic* drugs *drugs whose primary effect is to alter cognition and perception e.g. LSD and Magic Mushrooms.","round":"3","language":"English","link":"","infoSlide":"","topic":{},"id":"LmhX2WJRddmqcBKJ3UgN"},{"tournamentID":"kReIJGsf14VAB0aHbDhJ","round":"2","language":"English","link":"","content":"THW make Ulysses contracts legally enforceable.","infoSlide":"","division":"","topic":{},"id":"Lmpw5hoKqkIlfyrJtELQ"},{"language":"English","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","round":"Open_Semi","link":"","content":"That Student Unions should not take political positions that do not directly pertain to tertiary education.","infoSlide":"","topic":{},"division":"","id":"LonsRaMHPX6H0aJEMc46"},{"round":"","division":"","language":"Vietnamese","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"tournamentID":"FZTHJ19pUWQG2SZNeOvr","link":"","infoSlide":"","content":"Chúng tôi, với tư cách là một người nghệ sĩ nổi tiếng đã đánh mất thiện cảm từ công chúng, sẽ ưu tiên việc cống hiến các tác phẩm chuyên môn chất lượng cao hơn là những hoạt động khác (làm từ thiện, tham gia gameshow, ...) để lấy lại danh tiếng.","id":"LoonJu28i068ZoZvAn3f"},{"tournamentID":"6AnUBd9SLIBHmD9Uy5dS","language":"English","division":"","infoSlide":"","link":"","topic":{},"round":"3","content":"Given political feasibility, TH prefers a carbon tax to cap-and-trade.","id":"LorcPpqVs4XIsI39j16N"},{"link":"","tournamentID":"LDEsIQgDXxAdqGHF4x4e","round":"2","topic":{},"content":"THW ban foreign citizens from adopting Armenian children.","language":"English","division":"","infoSlide":"","id":"LpECnP42C3zr5Ks0uITa"},{"round":"3","content":"TH believes that states should make developmental aid contingent on the human rights record of the recipient country.","language":"English","division":"","infoSlide":"","link":"","tournamentID":"ti8CFKwd5Fq6RHmrGph0","topic":{},"id":"LpH7YUVYepDxUdsTBpt5"},{"content":"THBT English should be the only language of education in developing countries.","language":"English","infoSlide":"","topic":{},"tournamentID":"1V1INGo8OX49g8hUFTF3","link":"","round":"2","division":"","id":"LpSGpfKCg3r9AgNWaHfT"},{"round":"Novice_Semis","link":"","infoSlide":"","content":"This house regrets the corporatization of higher education.","topic":{},"language":"English","division":"","tournamentID":"MgpFX31hoBasrUiOV7Eu","id":"LqbQHTT7ovZTVUR4uKPZ"},{"content":"Giả sử ở một thế giới hậu COVID, chúng tôi ủng hộ xu hướng làm việc tại nhà.","division":"","language":"Vietnamese","infoSlide":"","link":"","round":"2","topic":{"others":{"title":"Others","check":true}},"tournamentID":"KncW7pH1nDIom3xK89VG","id":"LqdLTfYHkMbkRFy3AumH"},{"tournamentID":"rEUwN5dFZYjeXBNtp4NG","content":"THR the creation and adoption of cryptocurrencies.","infoSlide":"","division":"","round":"Open_Quarters","language":"English","link":"","topic":{},"id":"LrcPcnS12wSCUcsomPEq"},{"tournamentID":"Z9WBfg1yDJgSR34BGYp1","round":"Grand Final","link":"","language":"English","infoSlide":"In the universe of Girls' Last Tour, you and your companion are traveling across a post-apocalyptic world and you have been told by an omniscient alien lifeform that you are the last two people alive. One of your life’s big projects has been keeping a journal of your travels and of your life with your companion. You are running out of fuel and food. There is no way to replenish your fuel or get more food.","division":"","content":"THW burn the journal for fuel.","topic":{},"id":"Ls7xnSEhd2V0LEpS10GB"},{"round":"3","tournamentID":"EK7bkCOLaLHjVsqCcikk","link":"","infoSlide":"","language":"English","topic":{},"division":"","content":"THBT universities should abolish all committees that deal with sexual crimes against their students and defer to the Police.","id":"LsvEVrrAMmOAju9LpPGw"},{"tournamentID":"54Voc2YjynWxScz0a04o","content":"THBT developing nations should no longer sell land to foreign companies.","link":"","language":"English","division":"","round":"2","infoSlide":"","topic":{},"id":"LsxWh60ZOlOboiwH0n6J"},{"tournamentID":"v1Vi2iS2rLowvyk3vIMm","topic":{},"language":"English","division":"","content":"THW make conscription a war crime.","round":"Open_Semis","link":"","infoSlide":"","id":"Lt15oXZZnPLyUfHnuDl6"},{"link":"","division":"","tournamentID":"bWRhS5k8Iv19aHOMEz5C","language":"English","content":"THBT the European Union should open its borders for immigrants from third world countries.","infoSlide":"","topic":{},"round":"Open_Final","id":"LtN2jbIAWMDjQKjFRNiG"},{"link":"","tournamentID":"uikc98CupbamVyAQIHsf","topic":{},"infoSlide":"","division":"","round":"5","content":"THW determine income tax based on the relative privilege of an individuals’ upbringing.(Privilege includes such things as private education, parental wealth, childhood home).","language":"English","id":"LtnbwHuncz7z5Bok53Uy"},{"round":"Open_Semis","division":"","infoSlide":"","tournamentID":"LRHTkoiYpBfYWWuS1rtT","link":"","language":"English","content":"THBT all states should adopt the Flemish system of university admissions.","topic":{},"id":"LtnzS8PqgZ8voLqui4OH"},{"topic":{},"language":"English","link":"","infoSlide":"","content":"This house supports a 35 hour working week.","division":"","round":"Masters_Final","tournamentID":"VPUCPVj9FHFW0uzJinv0","id":"LuVw5Y1Rea7W8jJgvWVP"},{"division":"","content":"That we should abolish literary awards (e.g. the Man Booker Prize, the Nobel Prize for Literature).","topic":{},"link":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","infoSlide":"","language":"English","round":"ESL_Octa","id":"Lw7s1lWXqVIt24QZYv1K"},{"infoSlide":"","round":"5","content":"THBT democratic governments should never be allowed to exercise prior restraint, even in cases of national security.","language":"English","division":"","tournamentID":"krSr8LWxSpEc6v45L1uv","topic":{},"link":"","id":"LwteDCEOGUJ7ukDFHlpB"},{"topic":{},"round":"4","tournamentID":"w1cmIhewdRlJLYHGdtbg","language":"English","content":"THW offer NATO membership to all former Soviet Union states.","infoSlide":"","division":"","link":"","id":"LxDzdTXqM293Eh7yZp2E"},{"language":"English","tournamentID":"JJmcUH5Gil0nuJObmDP8","link":"","topic":{},"round":"5","content":"THBT the IMF and the World Bank should not make debt relief for highly indebted poor countries conditional on trade liberalisation.","infoSlide":"","division":"","id":"LyALFneTchKZ3rWUv8RJ"},{"link":"","division":"","topic":{},"infoSlide":"","round":"4","tournamentID":"YktmX9iQ8HNzyE1aE4yf","content":"THBT the Church of England should not take official stances on social, political and economic issues not directly related to items of doctrine.","language":"English","id":"LyL69NyiZzbaC7bchZqd"},{"division":"","infoSlide":"","topic":{},"tournamentID":"jQjuYOl7gbKBTiUrvWM2","link":"","content":"THW fine news organisations who consistently fail to meet a standard of fair and balanced reporting.","language":"English","round":"1","id":"LyP0A9tpp9ICVdRhe2gp"},{"infoSlide":"","topic":{},"link":"","content":"THW give the Rohingya Arms.","round":"Open_Quarters","tournamentID":"XGnGWhzkfstV6wutkTXQ","language":"English","division":"","id":"LzMOh7dbKQONJPn1LmdK"},{"language":"English","link":"","division":"","round":"Masters_1","topic":{},"content":"Assuming the technology to do so easily and safely exists, THW force everyone in society to undergo periodic sex changes.","tournamentID":"92dIEXeOXUVvlcFeGCIr","infoSlide":"","id":"M07js26NnvTLYRkhoaiW"},{"link":"","round":"Open_Semi","topic":{},"division":"","tournamentID":"7zFzGfa6wAGs2h8bbVhq","infoSlide":"","language":"English","content":"THW camp out in solidarity with the “Occupy” protestors.","id":"M0b0HrO31J550xCRdnfg"},{"link":"","tournamentID":"jpLuasMJYB40s1bJk2Ia","topic":{},"division":"","content":"THBT voters should always vote on policy and principles regardless of electability in all elections (general, local, or party leadership).","infoSlide":"","round":"3","language":"English","id":"M0mif5aF2WpQMsaym45a"},{"link":"","topic":{"education":{"title":"Education","check":true}},"tournamentID":"Wpv6iXJkIPUXYIkl0dST","infoSlide":"","content":"Chúng tôi ủng hộ một thế giới nơi mà việc nghiên cứu, ghi chép và giảng dạy lịch sử tập trung vào nghiên cứu cuộc sống của những con người bình thường thay vì của các nhà lãnh đạo quan trọng trong xã hội.","round":"Grand Final","language":"Vietnamese","division":"","id":"M24fF4A72cbdHLx3w0HR"},{"infoSlide":"A common practice among people of color and children of immigrants is to be called by a western name instead of their ethnic name.","tournamentID":"g7nlvxejABAgCXhGkJg8","division":"","round":"6","link":"","language":"English","topic":{},"content":"THBT people of color and children of immigrants living in Western nations should not adopt Western variants of their name.","id":"M3le4PD5fkRZMTHhDtJ7"},{"division":"","content":"THW implement total surveillance.","infoSlide":"","topic":{},"round":"3","link":"","tournamentID":"655ljihoF4Mh7lzjZruS","language":"English","id":"M4EgLctKZxpRCZmEJa6X"},{"round":"4","language":"English","tournamentID":"tKXlShZl2vec49jC1bif","topic":{},"content":"TH prefers religions that teach salvation is achieved through certain behaviours (e.g. good works, five pillars of Islam), over religions that teach salvation is achieved through faith alone.","infoSlide":"","division":"","link":"","id":"M4VPHsr0pr6pheJlgJOC"},{"division":"","round":"4","infoSlide":"","tournamentID":"mAqW9Go1ryAbaaM1OY8z","topic":{},"link":"","language":"Vietnamese","content":"Chúng tôi lấy làm tiếc về sự phổ biến của các video Tiktok nói về các phong trào xã hội bởi người dùng mạng xã hội. (VD: lên tiếng về dreadlocks, phản đối việc bạn trai là người trả tiền trong các buổi hẹn,...)","id":"M4biBRlxv4BYBWPInkPL"},{"language":"English","infoSlide":"","division":"","topic":{},"round":"Open_Semis","content":"THR that cultural identities and practices are primarily bound to racial heritage- Semi Final 2.","link":"","tournamentID":"nXN2yUG7soxwCp4xidzj","id":"M4dpgHzueR7iurtzACYR"},{"tournamentID":"OY8sAGz8SAjQpWA2PicY","topic":{},"content":"That college athletes in the Us should be paid as professionals.","infoSlide":"","link":"","round":"4","language":"English","division":"","id":"M54WgIyRVxj0EwFAl8kr"},{"content":"THBT all national economic policy (taxation, monetary policy, tariffs, etc) should be set by an appointed panel of economists rather than by elected officials.","round":"Open_Quarters","language":"English","infoSlide":"","topic":{},"tournamentID":"NHUypnZQCfkPD98j8TYR","division":"","link":"","id":"M5QE3jocu24VfEn7xJh6"},{"division":"","language":"Vietnamese","tournamentID":"FiF24Yc0spiBkvTxiYwD","link":"","round":"4","content":"Chúng tôi hối tiếc về việc những người dùng mạng xã hội tham gia vào việc truy đuổi tên sát nhân.","infoSlide":"Don’t F**k With Cats là bộ phim tài liệu cuộc săn lùng kẻ sát nhân. Đầu tiên, tên này đã giết mèo và đăng tải clip, cư dân mạng lập tức lập các hội nhóm anti và truy lùng. Vô tình, tên sát nhân này là một kẻ vô cùng thích được quan tâm và muốn có được sự nổi tiếng. VIệc lập các group truy lùng khiến hắn nghĩ mình được quan tâm nên đã tiếp tục giết người để gây chú ý. Tuy nhiên, việc lập các group này cũng đã hỗ trợ rất nhiều trong việc giúp theo dõi các hành động của tên sát nhân và báo cáo với cảnh sát.","topic":{},"id":"M5ml6c33EpZ2rzlXNkH4"},{"tournamentID":"X7PfztBaTR2KFk3oINtG","link":"","round":"Open_Final","language":"English","topic":{},"division":"","content":"THR the overwhelming narrative of good triumphing over evil in children’s entertainment.","infoSlide":"","id":"M5uEyjX8VGgmmAUsioUf"},{"round":"4","content":"THW refuse to extradite criminals to countries with the death penalty.","topic":{},"tournamentID":"4gQdvZTMKBCThKxmhfmU","division":"","link":"","language":"English","infoSlide":"","id":"M6T96lP5OFQgiZ0DnbF0"},{"division":"","content":"In a minimal state, a government's role is exclusively to protect property rights and people's physical security. Beyond this, such a state would not intervene in people's lives, or provide any public services. THBT a minimal state is justified.","round":"Open_Finals","tournamentID":"jpLuasMJYB40s1bJk2Ia","language":"English","topic":{},"link":"","infoSlide":"","id":"M7yXp0kbSPJ5srp1SqMJ"},{"tournamentID":"fkUHa28aVk8LYYEAdofu","content":"That war criminals should be tried in their home country instead of the International Criminal Court (ICC).","language":"English","round":"Open_Semi","division":"","topic":{},"link":"","infoSlide":"","id":"M8UWkWjieqLbdhgaJC5c"},{"tournamentID":"zZRXGDm7RC8LjYJKzubm","round":"Open_Final","content":"THW leave Omelas.","link":"","topic":{},"language":"English","infoSlide":"","division":"","id":"M9PnXpnKDtDbeq5RZicf"},{"division":"","tournamentID":"LuNDiT9YYZhQScUmMX82","infoSlide":"","link":"","content":"TH, as the UK Labour party, would participate in a cross party initiative to reform the Human Rights Act.","round":"Open_Final","language":"English","topic":{},"id":"MA92mI5TxYwg6l63TsqM"},{"link":"","round":"1","topic":{},"content":"THP a parliamentary electoral system which includes a constituency link.","division":"","language":"English","infoSlide":"","tournamentID":"Te8CYa0tImwgHXE99O7W","id":"MADLZCl7ZVkZ2fldZ1NP"},{"link":"","division":"","topic":{},"tournamentID":"QVxXxjR8GyCAclYLIVU9","infoSlide":"","content":"THW only invest in those African countries that put adequate effort into the protection of biological diversity.","round":"2","language":"English","id":"MAd4mhgqywBht5mh8CuS"},{"language":"English","division":"","tournamentID":"KUgzKY5FHtox24CaztLJ","infoSlide":"","topic":{},"link":"","content":"THW cooperate with any leader or regime to defeat non-state actors that systematically violate human rights.","round":"2","id":"MBkHsRnCsxxZm90Ahun9"},{"link":"","division":"","round":"3","language":"English","topic":{},"infoSlide":"","content":"THW Make US military aid to Israel dependent on Israel accepting the two-state solution.","tournamentID":"D3NiQxizKJ06MnU4DU06","id":"MBlKtUavPA4txJX7S5RY"},{"tournamentID":"JdCT4CooyPOkRsmbNNLg","round":"5","content":"This house would build power stations in ex-Soviet states to reduce their dependence on Russia.","link":"","language":"English","division":"","topic":{},"infoSlide":"","id":"MCb08vBzQbOo2e2skz1M"},{"language":"English","tournamentID":"9jfZRYzidDD9sleXlrNL","content":"TH welcomes the death of god at the hands of science.","topic":{},"link":"","round":"Open_Final","infoSlide":"","division":"","id":"MCnCY7jETIZ1IPqcn2rX"},{"round":"2","topic":{},"link":"","tournamentID":"ti8CFKwd5Fq6RHmrGph0","infoSlide":"","division":"","language":"English","content":"TH believes that major political decisions should be made by parliament rather than a public referendum.","id":"MEoGDVyFIH0KYhvU6Eir"},{"infoSlide":"","tournamentID":"o2dx25z3TGRcLxLt33Qk","division":"","link":"","language":"English","round":"Open_Semis","content":"THBT that the UN Security Council should sanction companies that buy 'booty futures' from rebel movements.","topic":{},"id":"MFE6ibYNeFXNqrJVgdPx"},{"round":"2","division":"","link":"","tournamentID":"z4fwjDZ02juoVx4MeEih","topic":{},"content":"THW prohibit the military from embedding journalists.","language":"English","infoSlide":"","id":"MGNe5iM7qKwxGFaPYadT"},{"content":"THW Cap the Amount Corporations Can Spend in Any One Course of Litigation.","language":"English","link":"","tournamentID":"IpWyfCcksctR86jKX66g","infoSlide":"","round":"6","topic":{},"division":"","id":"MGpic8jfMlywGnllkTXu"},{"content":"THW abolish private home ownership.","topic":{},"language":"English","tournamentID":"X8TtbynGKBJ2Z158R7Sw","infoSlide":"","round":"2","link":"","division":"","id":"MGvNKY8kSPL1NmgEId2k"},{"language":"Vietnamese","content":"Chúng tôi tin rằng Brexit mang lại nhiều tác hại hơn lợi ích.","round":"Semifinals","link":"","division":"","topic":{},"tournamentID":"mkrRVvz5EWSZie6LBtCH","infoSlide":"Việc Vương quốc Liên hiệp Anh và Bắc Ireland rời khỏi Liên minh châu u, hay còn được gọi tắt là Brexit, là một mục tiêu chính trị chủ nghĩa dân tộc được nhiều cá nhân, nghiệp đoàn và đảng phái chính trị theo đuổi nhằm yêu cầu Vương quốc Liên hiệp Anh và Bắc Ireland rút khỏi với tư cách thành viên từ Liên minh Châu Âu theo Điều 50 của Hiệp ước Liên minh Châu Âu.","id":"MH1j0SUEL6vnSviyAv2t"},{"infoSlide":"","round":"Open_Quarter_3","division":"","topic":{},"content":"THW abolish the two categories for Best Actor/Actress and Best Supporting Actor/Actress at the Academy Awards and award only gender neutral Oscars for Best Acting and Best Supporting Acting.","language":"English","tournamentID":"1XuVJxN52ldgExm8K3T2","link":"","id":"MI69v1HonsGcNWXATJMO"},{"tournamentID":"lmRNEraLEkD31bc6Nbnn","infoSlide":"","link":"","topic":{},"division":"","content":"This House Opposes the centrality of sport to national identity.","round":"5","language":"English","id":"MJ88p0Syhxmq9w9RFMCM"},{"topic":{},"content":"TH, as the EU, would actively prevent EU countries (like Italy, Slovenia, Lithuania, etc.) from achieving closer ties with China.","link":"","round":"3","tournamentID":"683xp6VC99fyKWXfWS9H","infoSlide":"","division":"","language":"English","id":"MLhKnYVrxaYId6upmlry"},{"language":"English","round":"4","link":"","topic":{},"division":"","content":"THW provide strong financial support to families who decide to bring a foetus with Down syndrom to term and raise it by themselves.","infoSlide":"","tournamentID":"YZ4nedbden9wBJH2zqb4","id":"MMXLWZqVxWdf2RheJ42b"},{"tournamentID":"FBVfHrOa3NYALcBMtKIC","infoSlide":"","division":"","content":"This house believes that the gay rights movement should campaign for the abolition of marriage, rather than marriage equality.","round":"4","link":"","topic":{},"language":"English","id":"MMxu3dcxgnsjkIOTfpOo"},{"round":"4","link":"","topic":{},"content":"THW grant those diagnosed with terminal illnesses the right to access treatments that have not completed clinical testing.","infoSlide":"","tournamentID":"L8JGtnnMnhA8w9ooOx0S","division":"","language":"English","id":"MO2dzlzjFC7eGTSJW62J"},{"content":"This house supports a one state solution for the Israeli-Palestinian conflict.","link":"","tournamentID":"Biz1VRjjdg8eWbm4NJr3","topic":{},"round":"EFL_Semis","infoSlide":"","language":"English","division":"","id":"MOeKzJg7bKNCJJ2LaNEe"},{"language":"English","division":"","tournamentID":"48Ba3dAlJxoct1Z9f7GA","link":"","infoSlide":"","content":"THBT it is justified for society to demand of migrants that they accept the dominance of existing norms and values.","round":"Open_Final","topic":{},"id":"MP1FduzdFTUK7fkag1bi"},{"link":"","tournamentID":"zidC2m00xOQF4gT3tgiY","infoSlide":"","language":"English","round":"1","content":"THW prohibit the dismissal of employees for their use of free speech or expression.","division":"","topic":{},"id":"MPEPM44R7AT3p2TLb7xj"},{"round":"4","language":"English","division":"","topic":{},"infoSlide":"","content":"THBT Governments Ought To Use The Technology To Detect The “Criminal Gene”.","tournamentID":"i4XbygF4ZWUtQg8NFKqw","link":"","id":"MQ7acjbjvNtA3bTTbB1G"},{"language":"English","topic":{},"division":"","content":"THW sell the script.","tournamentID":"y6YpD63Uuk3t3fbBC7Tk","link":"","infoSlide":"","round":"Novice_Final","id":"MQqiwuSuICNPkVDqPcqC"},{"round":"3","content":"THR the rise of self-help books.","topic":{},"link":"","language":"English","tournamentID":"mf3XudZleydnsr0lEvkg","infoSlide":"","division":"","id":"MRdbO6q9ipTfydwccloF"},{"language":"English","tournamentID":"lmRNEraLEkD31bc6Nbnn","topic":{},"link":"","infoSlide":"The Black Panthers began as a group of black citizens in Oakland, California who engaged in armed patrols of the city streets, specifically focusing on observing police behavior and arrests. In response, California enacted much stricter gun control legislation.","content":"This house believes that the Black Lives Matter movement should embrace open carry gun laws and engage in armed community patrols.","round":"Open_Final","division":"","id":"MRkdD1t10Y78xJdhcDfy"},{"round":"4","topic":{},"infoSlide":"","division":"","tournamentID":"hUGuNPuqow1Qx4Z2fgOz","link":"","content":"THBT homosexual football players from top western leagues should publicly declare their sexuality.","language":"English","id":"MRvpAYNgwlrameJ2hqua"},{"round":"5","division":"","topic":{},"language":"English","infoSlide":"","content":"Should James Bond retire?.","link":"","tournamentID":"N8WiUFJpvPmLaaYYsbsD","id":"MSEMQrjt9UHzHyyZuhVK"},{"topic":{},"tournamentID":"4WWD63gqcbSKMNoFf5ly","link":"","round":"Novice_Final","infoSlide":"You have the ability to know when and how people are going to die. .","division":"","language":"English","content":"THW not tell anyone.","id":"MSxviA8kdlNyJ833uQXL"},{"division":"","language":"English","round":"4","infoSlide":"","link":"","tournamentID":"wdL4H8i9EHTz4mqKuZHP","content":"This House, as the Catholic Church, would sell all wealth (including, but not limited to, art, property, and religious artefacts) to the highest bidder and donate the profit to the alleviation of poverty.","topic":{},"id":"MU8Eb8CCFz5pTuP2tyTf"},{"language":"English","content":"THW abolish all hate crime laws and instead prosecute according to criminal law.","division":"","round":"2","topic":{},"infoSlide":"","link":"","tournamentID":"9jfZRYzidDD9sleXlrNL","id":"MUJB3LAZukhmzJ5YM0FZ"},{"link":"","topic":{},"round":"2","language":"English","infoSlide":"","content":"THBT gender and sexual minority groups (feminist and LGBTQIA+) should ensure that decision making and representation for their cause is done by members of the minority group and limit the advocacy of allies to support and mass action (such as protests and petitions).","division":"","tournamentID":"vzoLJmfiPRVvjgiu4Nrs","id":"MUYTjdk36BoKH5lV76He"},{"topic":{},"division":"","link":"","language":"English","content":"THBT liberal media organizations should actively glorify political candidates of color.","tournamentID":"CBVZREYhjV5bhCHOuWjU","infoSlide":"","round":"1","id":"MUgO6WUP6MhILEj6e3aX"},{"division":"","content":"THBT the European Union should guarantee membership to regions of member states that secede from their parent state.","language":"English","infoSlide":"","topic":{},"link":"","round":"2","tournamentID":"xeyFK25uSH9TtPga8ALE","id":"MVRfrsilWiodphYBQciq"},{"tournamentID":"h5ajoFHOT7mXoe90wbQ3","division":"","language":"English","link":"","content":"The US federal government should rewrite its constitution every 25 years.","round":"Open_Final","infoSlide":"","topic":{},"id":"MW5S6uUrRaLlLZAO9PAo"},{"division":"","tournamentID":"KMhBpmj1LWPj5LN0aFUK","topic":{},"infoSlide":"","round":"3","language":"English","content":"TH prefers the US modernizing its military at the cost of reducing its military size.","link":"","id":"MWQ0JN2KIsbRi9Kwe81K"},{"infoSlide":"","topic":{},"language":"English","content":"THR the overwhelming narrative of good triumphing over evil in childrens.","division":"","link":"","tournamentID":"LYTCjoO4snxI4nOKTVZB","round":"5","id":"MWVRkDmTbs5lljcWOSFE"},{"topic":{},"link":"","language":"English","content":"THBT United States would suspend all foreign aid to Israel unless they withdraw from the West Bank.","infoSlide":"","round":"Open_Semis","tournamentID":"EK7bkCOLaLHjVsqCcikk","division":"","id":"MX5Ubv2WtAauAAe0WOIY"},{"topic":{},"infoSlide":"","tournamentID":"tKXlShZl2vec49jC1bif","content":"THBT the UK Parliament should cancel Brexit.","link":"","round":"Open_Final","language":"English","division":"","id":"MYPRhohEW9M4aT99vsjD"},{"link":"","language":"English","infoSlide":"","content":"If we could only choose one of the two, we, as students of the below average intelligence group, would choose a world where everyone has an average education instead of a world where 50% of the population who have low intellectual level enjoy basic education, and the rest 50% of the population with high intellectual level enjoy advanced education.","topic":{"education":{"title":"Education","check":true}},"tournamentID":"OqQWJjNQBpGOYwMntw3z","round":"","division":"","id":"MYpReoYnF15XCMBHJWOX"},{"topic":{},"tournamentID":"q7pvo4zkG31lg89ofmeq","division":"","infoSlide":"","round":"ESL_Quarters","link":"","language":"English","content":"THBT the African-American community should actively oppose 'broken windows policies'.","id":"MZGkw6uvYluweYs50DWC"},{"infoSlide":"","link":"","language":"English","content":"THP a world in which all people actively believed in determinism as opposed to a world in which they believed in free will.","division":"","round":"Open_Final","topic":{},"tournamentID":"TpCKtGVry2w5xrgb90jZ","id":"MaWTUk8QV76ILxLGlupO"},{"tournamentID":"SGpBjVPnJkFrJB0hnxYv","content":"THS the creation of a global citizenship market.","division":"","round":"Novice_Final","topic":{},"infoSlide":"","link":"","language":"English","id":"MarFJgAIAT5oGFtcIRgq"},{"topic":{},"language":"English","link":"","infoSlide":"","round":"Open_Final","division":"","tournamentID":"54Voc2YjynWxScz0a04o","content":"THBT the State should pay to each and every citizen 15,000 pounds per year unconditionally.","id":"MatITVXEC5yxGKY3JSDe"},{"content":"THW ban all further research into artificial intelligence that can independently learn and develop.","link":"","round":"Open_Final","infoSlide":"","division":"","language":"English","topic":{},"tournamentID":"bcb5yQt6p8cx9SACsvYL","id":"Md3n3OXIpKbZQahXpIBQ"},{"division":"","tournamentID":"V8KRgdahxIEUYFHrRWYb","round":"7","infoSlide":"","language":"English","topic":{},"content":"THW help/support snitches (informants, informers).","link":"","id":"MfexrTXvEGTdN8VAsIG9"},{"content":"THW ban plea bargaining.","language":"English","division":"","topic":{},"round":"1","link":"","infoSlide":"","tournamentID":"8umdzosR2LakbIpLGOan","id":"MgTxuG2d7harOs4vrzKJ"},{"tournamentID":"kBpjU5iP0oBmNFZAtFoS","infoSlide":"","division":"","round":"2","link":"","language":"English","topic":{},"content":"THW aplaude that the Member States of the EU would participate in the Olympics under only one flag.","id":"Mhg7JxCi4cBtrpTF5hgc"},{"division":"","infoSlide":"","content":"THW create a common European defence force.","round":"Open_Semis","tournamentID":"UVd3X0lgKy2dOb5Yx1c7","language":"English","topic":{},"link":"","id":"MhuwfcTi9CImmLxHpfgE"},{"round":"3","language":"English","infoSlide":"","division":"","content":"THW ban zoos.","topic":{},"tournamentID":"Ke3vqa3ZpQMmG6mDtn1z","link":"","id":"Mi4ziTrZPWNK1sBGkH5z"},{"tournamentID":"yplVU35a69J2hHBBmAJC","content":"THB that in times of war, the state should conscript a military by means of a draft lottery.","language":"English","infoSlide":"","division":"","topic":{},"round":"3","link":"","id":"MidGeQMiJugYTLim0Ynw"},{"content":"THBT the Norwegian Nobel Prize commitee should retrospectively remove Barrack Obama's peace prize.","round":"Open_Final","infoSlide":"","tournamentID":"YktmX9iQ8HNzyE1aE4yf","division":"","language":"English","topic":{},"link":"","id":"MieK4IeDSwxVsosDyv5p"},{"tournamentID":"9PjiZBOUlI39GMCrggZs","infoSlide":"","content":"THB the world is a safer place since the collapse of the USSR.","link":"","division":"","round":"Open_Final","topic":{},"language":"English","id":"MjHJTdjbsNJgdcuWWV3S"},{"division":"","link":"","round":"1","infoSlide":"","content":"This house prefers secular governments that exclude all religion from public spaces to those that allow all religions in public.","topic":{},"tournamentID":"wLfoMQYsV3E4fiFQ126i","language":"English","id":"MjUsjiqJ5gwy6qd1GPdu"},{"link":"","tournamentID":"6NSl7moQPnBVA2R4Z66b","round":"5","division":"","topic":{},"infoSlide":"","language":"English","content":"This House believes that pro-refugee advocacy groups should portray refugees as valuable contributors to society, rather than victims of their circumstances.","id":"MjeAgRvGSb67F7ABaHVa"},{"infoSlide":"","division":"","language":"English","content":"This House would rather save the live of a single child over extending the life of 5 adults by 10 years.","round":"Open_Final","tournamentID":"vS5BTr7lDW40h5Qw31FI","topic":{},"link":"","id":"Mk5TzyNqjsgaZSXqUvXf"},{"tournamentID":"JdCT4CooyPOkRsmbNNLg","division":"","link":"","language":"English","infoSlide":"","topic":{},"content":"This house believes that the First World should prohibit the immigration of doctors and nurses from the Third World.","round":"3","id":"MkrDoDsPWAoVzgZWlR7D"},{"tournamentID":"S5UzkuOf9XN6BnhOSbRC","link":"","content":"This House Believes That it is in the interest of the Russian Federation for Vladimir Putin to run for a fifth term as President in 2024.","language":"English","topic":{},"round":"Open_Quarters","infoSlide":"","division":"","id":"MlLnLYlvskhv1H7DPZB3"},{"round":"Octofinals - Motion 2","language":"English","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","infoSlide":"","division":"","content":"THBT social movements should actively use anger to mobilise support for their cause.","link":"","topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"}},"id":"MmEOV7yaJqWCuZnfhpeD"},{"tournamentID":"tC9C0k05cAmtT3IBK2AV","topic":{},"language":"English","division":"","infoSlide":"","content":"THBT unpaid domestic workers should strike for state pay.","link":"","round":"Open_Final","id":"MnNKdE7sXTNY1tOipXIi"},{"infoSlide":"","content":"Chúng tôi tin rằng các cộng đồng thiểu số nên tích cực ưu tiên dạy trẻ con về những giá trị của chủ nghĩa cá nhân.","round":"","topic":{"education":{"title":"Education","check":true}},"link":"","language":"Vietnamese","tournamentID":"mNwitMoNsjWupgwG8pR5","division":"","id":"Mo0I9HJbqwj1JjHh1qOz"},{"content":"Should employees of energy and transport companies be banned from striking?.","link":"","round":"2","language":"English","division":"","topic":{},"tournamentID":"MULqjXPKLke2z3n3Aafx","infoSlide":"","id":"MoSBecdS0PM3mCa9aOyb"},{"tournamentID":"7lMrN2aiwSzD5rzPFwHz","infoSlide":"","division":"","language":"English","round":"4","content":"You are an Israeli nuclear submarine commander. You learn that Israel has been wiped out by an iranian nuclear strike. THW return Fire.","topic":{},"link":"","id":"Mp5xmeof4iyuK1HdopHd"},{"topic":{},"tournamentID":"ZKj5YfRQe4wJF8bx4fLp","infoSlide":"","division":"","link":"","content":"This house would criminalise individuals and organisations who do not recycle.","round":"3","language":"English","id":"MqBFVia5gyiItuqnyX2V"},{"tournamentID":"9akG27VqSvbqsF3kGa1l","language":"English","content":"This House, as religious individual would prefer to be a part of a religious community that proselytizes over the one that does not.","topic":{},"division":"","link":"","infoSlide":"","round":"2","id":"MqheZBTSz0AykX3JUFgW"},{"round":"4","content":"THS the Sibyl system","tournamentID":"Z9WBfg1yDJgSR34BGYp1","division":"","link":"","topic":{},"language":"English","infoSlide":"In the universe of PSYCHO-PASS, criminal activity in society is monitored by a central system called the \"Sibyl System\". The Sibyl system holistically assesses the various external characteristics of a person (age, gender, race, body movements, etc..) and outputs a coefficient of how much they are likely to commit a crime within the next minute. If the coefficient crosses a certain threshold (meaning it is highly likely that the person will commit a crime) and if that crime is particularly awful (such as violent sexual assault or murder), police officers are allowed to preemptively kill the target person.","id":"Mr0JefNdRuPuuFFTd8Wj"},{"tournamentID":"0sEnEupsuf6b6sQ6tqCB","infoSlide":"","content":"“THB in a State of Anarchy”.","round":"Open_Semi_2","link":"","language":"English","division":"","topic":{},"id":"Mr65Xvzy4FncKTipP61c"},{"division":"","content":"TH, as the LGBT+ movement, regrets the decline of \"gay areas\" e.g. Soho, le marais and Chelsea.","topic":{},"round":"2","language":"English","tournamentID":"b3eMPaD8uywgZW5hZca1","link":"","infoSlide":"","id":"Mr9h1lV4cQMCibExGVCj"},{"round":"Open_Final","link":"","infoSlide":"","content":"You are a scientist. You have discovered absolute conclusive proof that God does not exist. This house would destroy the information.","topic":{},"language":"English","division":"","tournamentID":"POdYlP5an146yzuVI1Xg","id":"MrGaZO9jFuqiTdZ9M9dT"},{"language":"English","division":"","content":"THR the commercialization of feminism.","round":"5","infoSlide":"","tournamentID":"DWR60IgakRS9N3GeNemc","topic":{},"link":"","id":"MsGsU81QxITeebo9BZkX"},{"link":"","tournamentID":"KE7jdAyW9az9nKVb9FMV","content":"THBT these countries should establish a new economic institutions to relace existing ones (WB, IMF, etc.)","infoSlide":"BRICS is the name of a large bloc that includes newly connected economies such as Brazil, Russia, India, China and South Africa. Because they felt they were not properly represented in their position in the international agencies, a new forum was created to express interests and plan activities in the bloc.","language":"English","topic":{"irw":{"check":true,"title":"International Relations/War"}},"round":"","division":"","id":"MsOlyFK7emz594N269ND"},{"infoSlide":"Mafia Association Laws criminalize membership of specific powerful organised crime groups.","tournamentID":"CBVZREYhjV5bhCHOuWjU","language":"English","division":"","link":"","content":"THS Mafia Association Laws.","topic":{},"round":"2","id":"MssOHg4mXZudtNdh1bBW"},{"division":"","link":"","infoSlide":"","content":"THBT the Romanian state should cut all ties to all churches.","round":"1","language":"English","topic":{},"tournamentID":"PNpMzinCvz3Z9bTJfV9t","id":"Mtr4SFZNtOXM4rLMcij0"},{"infoSlide":"","link":"","round":"Open_Final","topic":{},"tournamentID":"SfEIDDzpv3y19flsWYFH","division":"","language":"English","content":"THS Black rights movements in the West's strategy of actively campaigning to defund the police instead of pushing for institutional reforms.","id":"MuAEbi6m9Ch9jS6XKdKk"},{"topic":{},"infoSlide":"","language":"English","content":"THW allow \"Just following orders\" as a defence.","link":"","tournamentID":"KErVXbqRahyWD7ZB1Q1m","division":"","round":"3","id":"Mv8JGtwRR7AmXf6WKPRb"},{"division":"","topic":{},"round":"3","content":"This house would prefer a world without religious beliefs.","link":"","tournamentID":"DFNWZhapl7SHDFBrFsMi","language":"English","infoSlide":"","id":"MvA8EqSnVSkeYSe7VtZv"},{"language":"English","tournamentID":"Pt1Z2dTdUinRviVucbZA","content":"That, as a Hobbit, we would go on a grand adventure.","link":"","infoSlide":"","division":"","topic":{},"round":"1a","id":"MvYaI5yyzUwlvYPIVyBc"},{"language":"English","division":"","round":"2","tournamentID":"pq9R1PqBqzQNX8jAplt5","link":"","content":"This house regrets Wikileaks decision to release the DNC emails.","infoSlide":"","topic":{},"id":"Mw7vCIGppTX1HZ1rLrRD"},{"division":"","round":"2","tournamentID":"tKXlShZl2vec49jC1bif","link":"","infoSlide":"","topic":{},"language":"English","content":"THW militarily intervene in Venezuela.","id":"MwAjWgsLeaDqWKmYMPYc"},{"division":"","topic":{},"tournamentID":"LRHTkoiYpBfYWWuS1rtT","link":"","content":"THBT the British education system should aim to give students from all backgrounds a high level of familiarity with the cultural knowledge prized by white, upper and middle class elites.","language":"English","infoSlide":"","round":"Open_Final","id":"MwHMrSwO16g1DBbu0Te3"},{"content":"This House believes that the Britain Stronger in Europe campaign should pursue a 'Project Fear' strategy of negative campaigning similar to Better Together* in the upcoming referendum.","division":"","infoSlide":"","tournamentID":"3eIqWfLtHDOZRmzJt05T","language":"English","round":"Open_Semis","link":"","topic":{},"id":"MxOdYbCq1LcuI2vRGs6M"},{"link":"","round":"Open_Semis","division":"","language":"English","infoSlide":"","topic":{},"tournamentID":"t2juKb62UT5HJ0kruUAw","content":"THB that the United States government should subsidize Twitter to liberalize oppressed societies.","id":"MxP2FB9ibyLGJsO3neju"},{"content":"This House, as Mexico, would end all security cooperation with the United States aimed at limiting illegal immigration into the US.","tournamentID":"2C0TX71TRjIIOcsN7CbL","language":"English","round":"Open_Final","link":"","division":"","topic":{},"infoSlide":"","id":"MykfPF4RNJ5nmVUBdiGd"},{"round":"Open_Semis","tournamentID":"Y9leM2xAYiRjIMMIqgfX","division":"","content":"THB the EU should not pay rural subsidies.","language":"English","topic":{},"link":"","infoSlide":"","id":"Mypng07eRWYRBB6aW2OQ"},{"topic":{},"tournamentID":"UfGg9gZEXlU744RWE1Y1","division":"","round":"ESL_Quarters","infoSlide":"","content":"THBT Western States should fund the spread of atheism in Iraq through provision of education, health care and welfare.","language":"English","link":"","id":"MzHPoDqI59aIOVPrFpVG"},{"content":"THBT life is nasty, brutish and short.","infoSlide":"","topic":{},"tournamentID":"zppT86F7lAE0Gpp7tWYo","language":"English","link":"","division":"","round":"C3","id":"MzdCE2fxdFayOwyiGJ16"},{"content":"THW create power-sharing with the Taliban in exchange for disarmament.","link":"","tournamentID":"AZDyYLAFE8Mh41BShv5m","round":"4","language":"English","infoSlide":"","topic":{},"division":"","id":"MzkGgy8RB1A1PIBdZ4XC"},{"infoSlide":"","topic":{"economics":{"check":true,"title":"Economics"}},"tournamentID":"D8AtyrmDZV48giPFtym5","content":"THBT governments should not provide preferential treatment to local firms when allocating investment incentives.","language":"English","round":"","link":"","division":"","id":"N06dhLOfIrjP4zBUtcv9"},{"infoSlide":"","content":"THBT that the EU should impose sanctions on Hungary if the Jobbik party takes office after the upcoming national election.","link":"","division":"","tournamentID":"hF5AdOa0t9O6mkaChm75","round":"3","language":"English","topic":{},"id":"N0KxN5xtSetbKbObGted"},{"content":"THBT notable LGB figures should not describe their sexuality as a choice.","round":"Open_Quarter_4","language":"English","tournamentID":"1XuVJxN52ldgExm8K3T2","infoSlide":"","division":"","link":"","topic":{},"id":"N0U0ea5eNnYBApJFWH1j"},{"round":"6","tournamentID":"OZYKzIzIg9zKy9OOiaP3","division":"","content":"THW ban student parties who are backed by national political parties from participating in elections for student unions.","topic":{},"infoSlide":"","language":"English","link":"","id":"N0z4zFBxrUYYOorkoXlX"},{"language":"English","infoSlide":"","round":"1","content":"THBT same sex couples should be allowed to adopt children.","tournamentID":"STaEp3vuXBuTT2bP0vgU","division":"","topic":{},"link":"","id":"N1BbQuPCVJtzDjWbKWdn"},{"topic":{},"link":"","language":"English","tournamentID":"gsX4dlvvsr6lcKP3eM2T","content":"This House would force religious adoption agencies to place children with homosexual couples.","infoSlide":"","division":"","round":"Open_Quarters","id":"N2zmFdSRXRgtQmMjPn24"},{"content":"TH as Nicolas Maduro would seek to voluntarily step down from power.","language":"English","round":"4","division":"","topic":{},"link":"","tournamentID":"3NTAi2gNk5Uyy3NuACO5","infoSlide":"","id":"N36GnILv1Vsh6Iomt2Ry"},{"link":"","infoSlide":"","tournamentID":"GFxILtaCaIOzQVLckGus","language":"English","round":"Open_Final","topic":{},"division":"","content":"\"Forced to vote between Haddad and Bolsonaro, This House would vote for Haddad.\".","id":"N4AHPIfi1FY6hBbMDaLC"},{"content":"THW ban political parties and require all candidates for national public office to seek election as independents.","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","topic":{"politics":{"title":"Politics","check":true}},"round":"4","division":"","infoSlide":"","link":"","language":"English","id":"N4SC1kWQ5tMP6wBazPcV"},{"content":"Chúng tôi phản đối văn hóa review.","round":"3","division":"","language":"Vietnamese","topic":{},"tournamentID":"mkrRVvz5EWSZie6LBtCH","link":"","infoSlide":"","id":"N5cXFpKBrFbq5s6Js3NL"},{"content":"THR the westernization of the elites in post-colonial countries.","language":"English","infoSlide":"","link":"","tournamentID":"8DernPpRwzBf2YIkESEX","round":"3","division":"","topic":{},"id":"N5o6HnBpdMZfOhG1Zr3Z"},{"link":"","topic":{},"tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","infoSlide":"","content":"That we should tax and redistribute wealth contained in university endowment funds.","division":"","round":"1.1","language":"English","id":"N5sHa8ZCaa3XNmbB8GH4"},{"content":"TH, as a prominent pro-independence activist in Hong Kong, would align as pro-China in an effort to run for upcoming elections.","topic":{},"round":"Open_Semi","division":"","tournamentID":"fzLPoPRlME1NEcvf7oVd","language":"English","infoSlide":"","link":"","id":"N5yEhMvuYW3OZtxL77FW"},{"language":"English","round":"2","infoSlide":"","tournamentID":"7nPyt59LCWbXBYzvRfL4","link":"","content":"THBT a referendum on Scotland’s independence should include all UK citizens.","division":"","topic":{},"id":"N5ySfjElrje90saFGFTw"},{"content":"THBT police forces should accurately reflect the racial demographic of the population they protect.","round":"5","division":"","link":"","tournamentID":"EK7bkCOLaLHjVsqCcikk","language":"English","infoSlide":"","topic":{},"id":"N62GJPpVBqBgOqN6uSCQ"},{"division":"","language":"Vietnamese","tournamentID":"FOAZQcGDy003yv7fx3AI","topic":{},"round":"4","link":"","infoSlide":"","content":"Chúng tôi tỉn rằng phong trào bảo vệ môi trường nên xây dựng hình ảnh “Môi trường là để phục vụ con người”.","id":"N7h0ucBmzsao0ywJkyCb"},{"round":"2","division":"","topic":{},"infoSlide":"","tournamentID":"TN94ucwzVJ2xKpp2fcrc","content":"THBT the state should not fund blueskies research.","language":"English","link":"","id":"N8eacC5ppouSAzXMqgzE"},{"infoSlide":"","tournamentID":"WMhTu5CeggGVUPxkfYq6","topic":{},"language":"English","round":"2","division":"","content":"This house would institute a mandatory retirement age for politicians.","link":"","id":"N96xLcLjxLK7XPfSV9DA"},{"tournamentID":"TtoxDZeWyCKcOginS4mH","infoSlide":"","language":"English","link":"","content":"TH declares the war on drugs a failure.","round":"Open_Semis","topic":{},"division":"","id":"N9Kb6T036J7wbTKQfSvT"},{"topic":{},"round":"1","language":"English","content":"This house regrets written constitutions.","infoSlide":"","tournamentID":"bxhnmh9CZq21XJcRU2BX","division":"","link":"","id":"N9fA1hojH8Mbi3hJt3MF"},{"topic":{},"tournamentID":"VyYxJ0FaIE4LYaWheUyL","round":"4","link":"","content":"THBT the state should make funding for political parties proportionate to the number of members from low-income brackets in those parties.","language":"English","infoSlide":"","division":"","id":"NAnTwhPDsq2tYVdHsZBU"},{"tournamentID":"rTCB6GUTIjymEKsbO01i","round":"2","infoSlide":"","content":"THBT Turkey should intervene militarily in Syria.","language":"English","topic":{},"division":"","link":"","id":"NB7pLoXKjThLfjoz5BYW"},{"infoSlide":"","tournamentID":"axWwnyCM8L14pVHljukt","content":"Assuming it is legal, THW justify that federal states with high rates of violence, hire mercenaries (private armies) to fight organized crime.","link":"","division":"","language":"English","round":"Open_Final","topic":{},"id":"NBMwH8J6lcgQannyXCvA"},{"division":"","link":"","content":"THP a world where radical revolutionaries (Malcolm X, Bhagat Singh) are celebrated over peaceful revolutionaries (Mahatma Gandhi, MLK Jr).","language":"English","round":"4","tournamentID":"1bBjpR84rI88s6EveWzm","infoSlide":"","topic":{},"id":"NBQYlOoSEoE0uTjD917a"},{"link":"","infoSlide":"","division":"","content":"THW allow prosecutors and victims to veto assigned judges.","round":"","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"tournamentID":"nALUKfkpmOnWnQCzecru","language":"English","id":"NBXOx7Dhf0ophyGaLeYJ"},{"language":"English","tournamentID":"x1XtlIYDR23OSfEzPpkf","link":"","infoSlide":"","topic":{},"round":"Open_Final","division":"","content":"THW ban the reporting of hostage taking.","id":"NBieed9ZtmVYGBazDxGy"},{"division":"","link":"","tournamentID":"LbgZumsAetYW4T3JVQrG","topic":{},"infoSlide":"","language":"English","content":"TH believes that it is in Indonesia’s interests to join the TPP.","round":"Open_Final","id":"NDId5yYAUtnn7H9Mw3R4"},{"content":"TH, as the Dutch government, would ban all depictions, and the impersonating, of Zwarte Piet.","tournamentID":"BvbIXgEeyaIcozyDf6R5","round":"1","division":"","language":"English","link":"","topic":{},"infoSlide":"","id":"NFPJOnsvXaCMwrAbJ9ab"},{"tournamentID":"P4io30tN10TYMqGkj2sX","content":"THBT children have a right to know who their biological parents are (e.g. adoptees, children of reproductive donors, children of estranged parents).","division":"","round":"Open_Semis","infoSlide":"","topic":{},"language":"English","link":"","id":"NGAoMcgiq247OJ29pwi9"},{"tournamentID":"gsX4dlvvsr6lcKP3eM2T","topic":{},"division":"","content":"This House would assassinate Vladimir Putin.","language":"English","round":"7","link":"","infoSlide":"","id":"NGUclaTvCqnXuJkqeWqz"},{"topic":{},"content":"THW ban works of art that glorify criminality.","tournamentID":"Ns60Gy3xxrtFcpflRpTk","division":"","link":"","language":"English","round":"1","infoSlide":"","id":"NIDU4sbrnKdH2rxno9UQ"},{"division":"","topic":{},"link":"","content":"TH would implement a negative income tax.","infoSlide":"","language":"English","round":"2","tournamentID":"PULmrzx6k00EzEt7BxfG","id":"NIDcYyvvt22zlvnPVEau"},{"tournamentID":"0vUzx1fMW06W65BNi8Wn","topic":{},"link":"","content":"This House Would violate the ceasefire and kill the leaders.","infoSlide":"","round":"ProAm_Final","division":"","language":"English","id":"NIRat99g6GsLezR85apr"},{"infoSlide":"","division":"","link":"","round":"Open_Semi","content":"THBT the \"Tax Mix\" should be set by reserve banks.","topic":{},"language":"English","tournamentID":"m6JzV67uYJSVBRpAbgL7","id":"NIhSw2QmLjjsN4fIhjA4"},{"content":"THBT a state's primary obligation is towards its own citizens.","infoSlide":"","tournamentID":"gmusL4yQ3HD8FyegVRpk","division":"","round":"Open_Final","link":"","topic":{},"language":"English","id":"NK1Ml5UxTN7S2LujI9j1"},{"link":"","content":"THW abolish geographical constituencies and hold only national elections.","tournamentID":"0DgXee32WEP3hxmGZExS","infoSlide":"","round":"7","language":"English","division":"","topic":{},"id":"NK53G5MHBTebh0okcepm"},{"infoSlide":"","link":"","topic":{},"language":"English","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","division":"","content":"THO the depiction of women in mythology as feminists (eg: Athena, Draupadi).","round":"6","id":"NKdu6VGooml0JJCUY10F"},{"infoSlide":"","tournamentID":"bTRRi7oLbaQA5e1qz6Qc","content":"THW make rehabilitation the sole criteria for releasing criminals from prison.","round":"Open_Semis","link":"","language":"English","division":"","topic":{},"id":"NL5FxZnB0HkoGhstlRtu"},{"topic":{},"content":"THBT the use of violence to advance the cause of disenfranchised sexual minorities and women in Russia is legitimate.","round":"Open_Final","infoSlide":"","link":"","tournamentID":"yK2aesNii4f0c4vvqYng","language":"English","division":"","id":"NLkAivAFXoz2Za784LEg"},{"language":"English","content":"THS recall elections for national leaders (i.e. presidents, prime:ministers, ministers).","link":"","round":"2","tournamentID":"Vis5yhSVMHubvgdJTwP1","topic":{},"infoSlide":"","division":"","id":"NMMZBMSBySEa5yN4wA62"},{"topic":{},"link":"","infoSlide":"","content":"THW establish quotas for immigrants on national sports teams.","round":"2","language":"English","tournamentID":"vgTQs0itA0pIPKzwI7CK","division":"","id":"NNdj2veUbUGKDU5R7mLh"},{"content":"This House believes that the Mexican government should adopt measures that enable one cartel to monopolise the drug market. (These measures can include but are not limited to: targeting enemy cartels; selective arrests; stopping military deployments to areas controlled by this cartel; and renouncing the headhunt on its current leaders.).","tournamentID":"wA1XDLHJESmSgLsfZ9Qe","division":"","language":"English","round":"5","infoSlide":"","link":"","topic":{},"id":"NNjoqt3i89wMHwhLqVeu"},{"language":"English","division":"","content":"In response to climate change THS an immediate, indefinite, international workers strike.","link":"","round":"Open_Final","infoSlide":"","tournamentID":"4qwhZS2zOsdzzkyQlcaW","topic":{},"id":"NOnj9LBKiRSlXGWaeUSO"},{"content":"THBT democracies should allow people to opt into religious courts that punish them for acts that are deemed to be offences under their religion, as long as they remain members of that religion.","tournamentID":"H8ZxEfGXutRQeJ3mqisV","division":"","link":"","round":"1","infoSlide":"","language":"English","topic":{},"id":"NPIgPO7YhSodrZFT7mmf"},{"content":"THW remove all copyright protection for material deemed to be morally objectionable.","language":"English","link":"","infoSlide":"","topic":{},"tournamentID":"pvKZkg6sqicG5nXA2mvY","round":"ESL_Quarters","division":"","id":"NPbsaAk2oIHA1W8z06zZ"},{"language":"English","content":"Should we abolish adding to wages until the income reaches the poverty line?.","round":"5","topic":{},"infoSlide":"","division":"","link":"","tournamentID":"Ef5RtQo9Rr0nt7Nnhncq","id":"NQqWHUIqEicsDFEkDdBA"},{"language":"English","tournamentID":"PFH5XRScthpwd2dxC2T5","link":"","division":"","infoSlide":"","content":"TH supports Nicki Minaj's \"Anaconda\" album cover.","round":"2","topic":{},"id":"NQtU8QWEvDZaoU8Hvo44"},{"tournamentID":"pq9R1PqBqzQNX8jAplt5","content":"This house believes female chess players should refuse to participate in this years women's world chess championships.","division":"","infoSlide":"","link":"","round":"Open_Quarters","topic":{},"language":"English","id":"NR2bOdqF4gGFSoXtlUKu"},{"round":"2","tournamentID":"JdCT4CooyPOkRsmbNNLg","infoSlide":"","division":"","content":"This house would use quotas to desegregate Northern Ireland religious schools.","topic":{},"language":"English","link":"","id":"NRKc33ac8irmV6UR0dkP"},{"division":"","topic":{},"round":"2","infoSlide":"","content":"THBT Germany should grant asylum to Edward Snowden.","tournamentID":"x0FqHVU6TNo1z8egQZct","language":"English","link":"","id":"NRSMZF0tb6x8rgSgPbNH"},{"infoSlide":"","link":"","round":"Open_Semis","content":"THBT that extraordinary taxation of saving deposits in times of crisis is justified.","topic":{},"tournamentID":"d0CBbRAyIQhiX69bWaKA","division":"","language":"English","id":"NRa9choV2FNUm7nE5bMK"},{"round":"4","topic":{},"content":"TH, as a progressive female candidate, would not use conventional gender roles (e.g. marketing oneself as a mother or a wife) as a tactic in political campaign.","tournamentID":"rkItJ1M9he5ApXeOVBjJ","division":"","infoSlide":"","link":"","language":"English","id":"NRhpeHVisoVWRCtE2rS1"},{"infoSlide":"","tournamentID":"Nzien6R9RXvOTrNMJsza","division":"","language":"English","topic":{},"round":"5","link":"","content":"This house believes that it is immoral to consume the art of creators who have been proven to be guilty of heinous offences.","id":"NRtw6TTcAlGrzSxqAxpi"},{"language":"English","link":"","round":"Grand Final","tournamentID":"Wpv6iXJkIPUXYIkl0dST","division":"","content":"THP a world where the research, writing and teaching of history focuses on studying the lives of ordinary people as opposed to that of important leaders of society.","topic":{"education":{"title":"Education","check":true}},"infoSlide":"","id":"NSmr6Udu9DO7Lr5uFtTN"},{"link":"","division":"","round":"","infoSlide":"","tournamentID":"mNwitMoNsjWupgwG8pR5","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"language":"English","content":"Chúng tôi tin rằng chính phủ nên bù đắp về mặt tài chính cho các trọng tội gây ra bởi những tái phạm nhân.","id":"NT9FadThvOom6KO3HJ8h"},{"topic":{},"tournamentID":"m97biSF63NO9Jn1yenBI","round":"3","content":"THW grant independence to territories in which the majority of people vote for it.","link":"","division":"","infoSlide":"","language":"English","id":"NUK7LF1HkwBzXJYLsL7s"},{"division":"","link":"","content":"THBT the unemployed, living in areas of high unemployment and low private investment, should relocate to areas where their employment is more likely in order to keep their benefits.","infoSlide":"","topic":{},"tournamentID":"V6eoj3ztq5t3sX9oPVue","language":"English","round":"Open_Semis","id":"NUbHdIRZ3UuPQ0R8UdUw"},{"tournamentID":"H2Xg2NvZoEwZtgc8tzmz","content":"TH, as Wakanda, would reveal itself to the world and adopt globalism, rather than remain in isolation.","round":"Open_Semi","link":"","division":"","topic":{},"infoSlide":"","language":"English","id":"NUdYGxxX6KWwl6lC1ubx"},{"link":"","division":"","round":"","infoSlide":"","language":"English","content":"THO social media blocking president Donald Trump' account.","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"tournamentID":"KE7jdAyW9az9nKVb9FMV","id":"NVaJumbxTrUwt9WsDvw1"},{"division":"","topic":{},"infoSlide":"","content":"THP a world where everyone has Highly Superior Autobiographical.","round":"3","language":"English","link":"","tournamentID":"WnH3YWwA4xB4HPfqIqea","id":"NVdDrgYmscz1nYa9mriD"},{"infoSlide":"","division":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","link":"","round":"Open_Double","content":"That we prefer transformative to curatorial fandom.","language":"English","topic":{},"id":"NW02VkvDicN4gyLkRqUk"},{"language":"English","round":"4","tournamentID":"7lMrN2aiwSzD5rzPFwHz","topic":{},"content":"THW build 500,000 social homes in the London Greenbelt.","infoSlide":"","link":"","division":"","id":"NWZUxNVmTSI3oK4UJGzX"},{"infoSlide":"","division":"","round":"4","tournamentID":"jJ6q3uq5BHRM31WhI18D","content":"THW ban convicted criminals from holding elected office.","topic":{},"language":"English","link":"","id":"NWmcDH6jmG5mvUVVfcyG"},{"topic":{},"content":"THW Abolish Prisons.","division":"","tournamentID":"51E7OUgehZFAtBNKOqe4","link":"","language":"English","round":"Open_Final","infoSlide":"","id":"NX21YyMo5wYb4RWrj0Lf"},{"link":"","content":"THBT the discovery of a means to stop the human aging process would be a curse to humanity.","division":"","infoSlide":"","round":"4","tournamentID":"wZYAoJ8UubcT3x3E0CVj","language":"English","topic":{},"id":"NXHNPD9B6MkbVxE51fLL"},{"tournamentID":"eNRfEfbvRNeRnZhk4TS2","link":"","topic":{},"division":"","infoSlide":"","round":"1","language":"English","content":"THBT governments should make children’s vaccinations obligatory.","id":"NXNkrGr0Qejb6T1wtQWp"},{"content":"In a Battlestar Galactica-themed scenario (where humanity is drifting in space), THW ban abortion.","link":"","round":"1","tournamentID":"KErVXbqRahyWD7ZB1Q1m","language":"English","infoSlide":"","topic":{},"division":"","id":"NXPTVWoEySfKOBmzdIfs"},{"content":"THBT majority liberal supreme courts should actively misapply constitutions in order to advance progressive rights.","link":"","infoSlide":"","language":"English","topic":{},"round":"Open_Final","division":"","tournamentID":"4V6pb0chg0WcRQyc6Zde","id":"NXPysg1cp7zPQqEN3epE"},{"link":"","content":"This House believes that the present condition of humanity is preferable to its condition in 100 years time.","language":"English","round":"Open_Final","infoSlide":"","division":"","tournamentID":"EP5HDm4G3OfMlciId6YM","topic":{},"id":"NXedKLya3jOQ3aDXTDC3"},{"language":"English","content":"THBT the Arab League should impose an oil embargo on the EU until the EU member states lift their ban on the Islamic Veil.","topic":{},"link":"","round":"2","infoSlide":"","division":"","tournamentID":"riEZk6ypdW0s5dnVIggc","id":"NXeurdecedMkqRcN0wnE"},{"tournamentID":"9mfNKBqpq9HzOZ9GltTe","content":"This House would cut all benefits from those able but unwilling to work.","topic":{},"link":"","infoSlide":"","division":"","language":"English","round":"Novice_Final","id":"NYak88hjcSALvL7LBqF7"},{"round":"3","link":"","division":"","topic":{},"tournamentID":"YZ4nedbden9wBJH2zqb4","content":"THBT parents should monitor the electronic communications of their children, for example by installing spyware, requiring their children to give them their passwords, or reading browser histories.","language":"English","infoSlide":"","id":"NYkqRggtWy1uLYxdMGRT"},{"division":"","round":"5","tournamentID":"7L67NrnE93IENW8OW03k","link":"","content":"THB, in times of economic crisis, economic bodies should (strategically) withhold information that may damage market confidence.","language":"English","topic":{},"infoSlide":"","id":"NZNROuR64vCtQsn6Ptm8"},{"content":"THW prioritise the funding of grassroots over elite sports.","language":"English","infoSlide":"","round":"1","topic":{},"division":"","link":"","tournamentID":"MyZkPsGPMuQ4XmFzJLVW","id":"Na7tXnuPg3AKGlz4ApM3"},{"round":"3","topic":{},"division":"","link":"","content":"THW abolish all non-comprehensive schools and require children to attend their geographically closest school.","infoSlide":"","language":"English","tournamentID":"sgkzjS4WeJfa3Df1l3zo","id":"NaFUKra4wzxeduulcqIv"},{"link":"","topic":{},"tournamentID":"n7qv29PmNuF5SOe42oiz","division":"","round":"2","content":"That we should allow scientific journals to publish anonymous papers.","infoSlide":"","language":"English","id":"NawyoLtX02nhsiWo8Arw"},{"infoSlide":"Shinhwa - một trong những tập đoàn lớn mạnh nhất của Hàn Quốc được điều hành bởi nữ chủ tịch Kang Hee Soo, mẹ của nam chính. Trong F4 là một nhóm các chàng trai hào hoa và quyền lực nhất trường, tượng trưng cho sự bất bình đẳng xã hội, đây là 4 người con của 4 gia đình giàu nhất trường TRung học Shinhwa, có khả năng và cũng là nhóm chuyên bắt nạt và ức hiếp các học sinh yếu hơn.","topic":{},"content":"Chúng tôi, với tư cách người ở cấp quản lý các trường THPT, sẽ chủ động lập nhóm F4 tại trường của mình.","round":"1","link":"","language":"Vietnamese","tournamentID":"FiF24Yc0spiBkvTxiYwD","division":"","id":"NbAKgJfUZ1yJjcCzRQ6c"},{"topic":{},"infoSlide":"","content":"THW require both parties to use state lawyers, instead of private lawyers, in defamation trials.","division":"","link":"","round":"5","language":"English","tournamentID":"m6JzV67uYJSVBRpAbgL7","id":"NbI9ppjPsHLLRUFRDKKV"},{"language":"English","content":"THW use all dead human bodies for the benefit of those waiting for organ transplants.","link":"","tournamentID":"DLFJWaIyHnSlvFofovjc","division":"","topic":{},"infoSlide":"","round":"2","id":"Nc3E77Wrx4Z4ypevUXhR"},{"topic":{},"round":"1.3","language":"English","content":"That the state should employ more non university graduates and use tax penalties to encourage other employers to do the same.","infoSlide":"","tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","link":"","division":"","id":"NdB99uJ6qmi5unEZo4CL"},{"link":"","infoSlide":"","topic":{},"language":"English","tournamentID":"yDUOVgl6qLMa2DH8lCD5","round":"1","division":"","content":"THBT governments should stop funding scientific programmes that have no immediate benefit for humankind (such as space travel and exploration, human cloning).","id":"NdXwH6u7gcDZmVZ9MI3j"},{"tournamentID":"9yZPq4vkPBjWs9gMF8AS","language":"English","infoSlide":"","content":"Ban the use of persistent surveillance systems by police forces.","round":"3","topic":{},"link":"","division":"","id":"NeBgMuwSPdVfk9bDjS3H"},{"content":"THW create and enforce filial responsibility laws (mandating that people take care of their parents.","tournamentID":"NHUypnZQCfkPD98j8TYR","infoSlide":"","round":"1","topic":{},"division":"","language":"English","link":"","id":"NeadR8b9C5DREjWGfhyc"},{"round":"4","division":"","tournamentID":"FwXwhiD8hyS9iD7pTyRe","infoSlide":"","link":"","language":"English","topic":{},"content":"THW oblige prospective parents with a genetic disease to use embryo selection.","id":"NekianGsgx9uIj0NFyt6"},{"infoSlide":"","division":"","content":"You have a machine that allows you to know when you will die. THW use the machine. - Round 4.","tournamentID":"Ryhdb4JOJYP96e5oa49b","round":"4","language":"English","topic":{},"link":"","id":"Nell1YxJyPjEyDLdyT2l"},{"infoSlide":"","content":"THO films/TV shows that depict a minority narrative through a white heteronormative lense.","tournamentID":"xik6XdvZ0JGG1hySfuwC","link":"","division":"","topic":{},"language":"English","round":"5","id":"Nfj9c3WBq1PCvNBP0N7h"},{"division":"","topic":{},"link":"","language":"English","tournamentID":"xoiSW3hTToX15wvrD6gA","round":"Novice_Final","content":"THBT Facebook has done more harm than good.","infoSlide":"","id":"NgGTBXEHn9frvaSTiRg1"},{"infoSlide":"","tournamentID":"GnB4dJJK9KmnatnkLGmS","topic":{},"link":"","division":"","content":"TH welcomes the end of American hegemony.","language":"English","round":"3","id":"Nj4UH8Mw5hz5GYkZmn9i"},{"content":"That we would abolish corporate tax.","division":"","topic":{},"round":"2","language":"English","link":"","infoSlide":"","tournamentID":"fkUHa28aVk8LYYEAdofu","id":"NlAJbXyvgcMFAvG2B10j"},{"language":"English","topic":{},"division":"","tournamentID":"Biz1VRjjdg8eWbm4NJr3","round":"Masters_1","infoSlide":"","content":"This wouse would buy local.","link":"","id":"NlaSHnJ2m1Sd4k7fkMyA"},{"division":"","infoSlide":"","topic":{},"content":"THS THE GLORIFICATION OF START-UP CULTURE THAT ENCOURAGES PEOPLE TO CREATE THEIR OWN BUSINESSES RATHER THAN PURSUE TRADITIONAL CAREER PATHS.","link":"","language":"English","tournamentID":"fYRQ3gsDALGgMYQf58zt","round":"1","id":"NmF8G79GqGAIWQlmXuAU"},{"link":"","tournamentID":"7bjgBH4vUAY8LwONR9i6","round":"Final","infoSlide":"","division":"","language":"English","topic":{},"content":"Your 'one true soulmate' exists. There is a test that allows you to determine whether someone is your one true soulmate. You are in love with the person you have been dating for a while.\r\nTHW take the test to determine whether the person you are in love with is your 'soulmate'.","id":"Nnd28rlBUNrK7AcvhXY3"},{"content":"TH supports the creation of a feminist political party.","link":"","division":"","tournamentID":"0bOkf8RbGJTfzpOQVOgY","round":"Open_Final","language":"English","topic":{},"infoSlide":"","id":"Nnxnl6RoFGRYmiTkLNXz"},{"link":"","content":"THW decide the number of children a couple can have based on their financial condition.","infoSlide":"","round":"","language":"English","division":"","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"tournamentID":"OqQWJjNQBpGOYwMntw3z","id":"NoMi5GGOCirVk0o3MCDz"},{"link":"","division":"","infoSlide":"","topic":{},"content":"thr the recreational ownership of pets.","round":"Novice_Final","language":"English","tournamentID":"4Nqwg2GbRwaUJ5LaWcSt","id":"NoRBPJSdE0CCYR4FMZpk"},{"language":"English","topic":{},"tournamentID":"NDBMTXQSiGk8gHdwlPou","division":"","round":"2","infoSlide":"","link":"","content":"It is the end of the year 1862. THW, as Abraham Lincoln, give up on the demand to abolish slavery, provided it would help end the Civil War.","id":"NpVxNqZGq6vjhJeqYCEd"},{"link":"","tournamentID":"DTutOgCItM4x30SyVavv","division":"","infoSlide":"","topic":{},"round":"6","language":"English","content":"THBT the feminist movement should actively work with liberal religious leaders to change the religions' perception about women.","id":"NpWxG7uRozbfvgJ85MYk"},{"language":"English","link":"","content":"THW make the weight of votes proportional to a person’s expected remain lifespan.","round":"3","topic":{},"tournamentID":"54Voc2YjynWxScz0a04o","division":"","infoSlide":"","id":"NprbPs6hnRb0t7Nlak2k"},{"tournamentID":"7lMrN2aiwSzD5rzPFwHz","content":"THB feminists should oppose capitalism.","language":"English","topic":{},"round":"2","link":"","infoSlide":"","division":"","id":"NqTMm0e1X3KF1DlwIb0N"},{"link":"","division":"","round":"2","language":"English","infoSlide":"","topic":{},"tournamentID":"ehtU8lykIOIyhZiaczym","content":"THW assassinate North Korean nuclear scientists.","id":"NqXxGHbJDJ1ibqFdRNYS"},{"content":"THW force broadcasters to display, promote and report women’s sport equally to men’s sport.","division":"","link":"","tournamentID":"tPdF4vGV6F0ucJaSF5md","topic":{},"infoSlide":"","language":"English","round":"1","id":"NqbAJgtr4j9AqJdVnMkj"},{"link":"","division":"","content":"THS the use of Sanctuary City Policies by US cities.","round":"2","language":"English","topic":{},"infoSlide":"","tournamentID":"aL5gnSWQ3OQq2Lb3mRix","id":"Nquu7UiABDGheP03xnkV"},{"tournamentID":"GfEZYNzXPpqDU3CX6qxi","link":"","division":"","round":"3","content":"THW not (as the USA) support Israel in a pre-emptive strike on Iraq.","language":"English","infoSlide":"","topic":{},"id":"NrY2tGL59TvS3rylJPfB"},{"link":"","language":"English","content":"In developing states, THW highly incentivize students to pursue vocational school.","tournamentID":"TwRuBI9R9WS6estcrif9","topic":{},"division":"","round":"Open_Semi","infoSlide":"","id":"NrbLv1yz1gOxjqB3hdD3"},{"content":"THBT all media organizations should be owned and run by journalists.","division":"","topic":{},"tournamentID":"p3EOrIRx2qBcnN8fXbHh","language":"English","link":"","infoSlide":"","round":"Open_Quarters","id":"NsQg5mTXtmmzzI94BzON"},{"infoSlide":"Social housing is residential property that the state uses to house people who cannot afford decent housing.","link":"","topic":{},"division":"","language":"English","tournamentID":"CBVZREYhjV5bhCHOuWjU","round":"3","content":"THW confiscate persistently vacant residential properties to use as social housing.","id":"NsTCLW96Rys5UXyvOnNP"},{"language":"English","topic":{},"round":"Open_Final","division":"","content":"THW allow individuals to sue religious organisations for making decisions that harm them.","tournamentID":"gDONpxWgr0bu13hZzxYr","link":"","infoSlide":"","id":"NsXyQsTBnlUmqrH4SufR"},{"topic":{},"language":"English","link":"","division":"","content":"THBT women should reject practices that alter the appearance of their genitalia, such as waxing and labiaplasty.","round":"Open_Semis","tournamentID":"pvKZkg6sqicG5nXA2mvY","infoSlide":"","id":"Nt8318kcj661MX4SjXyr"},{"tournamentID":"j9tMf10ACsn6VW6vG9gA","division":"","language":"English","round":"3","topic":{},"infoSlide":"","link":"","content":"THBT developing countries should ban non citizens from purchasing real estate.","id":"NtJuybZzUqjYFdkRvLrN"},{"infoSlide":"","link":"","tournamentID":"LbgZumsAetYW4T3JVQrG","topic":{},"content":"TH believes that the governments of developing nations should actively encourage slum tourism.","round":"1","division":"","language":"English","id":"NtNMJ5nElEIfrbKnpG8T"},{"content":"TH regrets the rise of globalisation.","round":"Open_Semi_1","infoSlide":"","language":"English","tournamentID":"xiDAjYVVSR0PYlxr0F2u","topic":{},"link":"","division":"","id":"NtVnYaXFLeJoC6NWHgGp"},{"tournamentID":"irYSGlHj76RukmyCwWOG","infoSlide":"","content":"Regardless of whether or not sexual identity is a choice, TH regrets the born this way narrative.","link":"","language":"English","division":"","topic":{},"round":"7","id":"NtYxW4SHjLRTzEEfDYHO"},{"content":"This house believes a healthy democracy needs term limits for heads of government.","infoSlide":"","topic":{},"round":"Open_Final","tournamentID":"hlf4hP8CehYHd5yHET3L","link":"","language":"English","division":"","id":"NuEczWu3CSpc28NhEpyd"},{"content":"THBT all countries should abandon the fight against climate change and should just seek to adapt to its consequences.","round":"2","infoSlide":"","language":"English","tournamentID":"kFgdnpZDLOmYAkEJ1Zu6","link":"","topic":{},"division":"","id":"NuYkDi1T3iXjJ2JwPbBG"},{"round":"Open_Semi_5","language":"English","infoSlide":"","division":"","content":"THB in the primacy of serving others as opposed to seeking one’s own happiness.","tournamentID":"WcTEqzk0ckiyLGdszyy6","topic":{},"link":"","id":"NueW5rzHgwaVVpeRk8w2"},{"tournamentID":"hrSRQu49cq5gHsXJLBgQ","topic":{},"infoSlide":"","language":"English","content":"The United States of Africa is a proposed concept for a federation of some or all of the 55 sovereign states on the African continent. The concept takes its origin from the writing of Marcus Garvey, an influential pan-Africanist leader in the early 20th century.","link":"","division":"","round":"Open_Semis","id":"NufkW8sMwAefXyFXz86h"},{"tournamentID":"q7pvo4zkG31lg89ofmeq","infoSlide":"","round":"Open_Quarters","topic":{},"link":"","language":"English","content":"TH regrets the decline of secular pan-Arab nationalism.","division":"","id":"NuhdFeGqaLOsdAU522P3"},{"topic":{},"tournamentID":"bmpPSwtqn5KEm26j6EB7","content":"TH Regrets the rise of Reality Television.","infoSlide":"","language":"English","link":"","division":"","round":"Open_Final","id":"NvpSEqGRzvxsVnQP3o0k"},{"round":"1","link":"","infoSlide":"","topic":{},"tournamentID":"WcNueZiJXeg9z82dijdL","division":"","content":"THR World Athletics' decision to put an indefinite moratorium on future advances in shoe technology.","language":"English","id":"NvpaCyLnKvGqb620EYsV"},{"division":"","link":"","content":"That we should implement a Mastery Learning framework at all levels of education.","round":"3","language":"English","infoSlide":"","topic":{},"tournamentID":"oaIuwyOX7NBIwaiSaVJ8","id":"NwU6EIn5Q2kQjthNopS2"},{"content":"THW ban private schools.","language":"English","infoSlide":"","division":"","round":"2","topic":{},"tournamentID":"N6GD6E8q4Mbzt8Xexnyy","link":"","id":"NwbjIWPc6WtxrSDmfYO3"},{"content":"That we should prohibit research into the de-extinction of human-like species such as the Neanderthal.","topic":{},"round":"1","division":"","infoSlide":"","link":"","tournamentID":"HjQJA65fZ9igHKO8DLAP","language":"English","id":"NyAEPgH4JncsjnOHJkRj"},{"link":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","round":"EFL_Semi","infoSlide":"","content":"That developing countries should prioritise the massive construction of infrastructure over the direct provision of high subsidies and social welfare.","topic":{},"division":"","language":"English","id":"NyEzTIx59mrCnK1cMVRu"},{"tournamentID":"OwplBrh3NruD1YwoexiY","round":"3","division":"","language":"English","topic":{},"content":"THW ban transport of persons and goods by beaming.","link":"","infoSlide":"","id":"NyllAk9vZGwNBN4Mq6pp"},{"language":"Vietnamese","tournamentID":"I4LkoGhDJmtXsINMJVjW","division":"","infoSlide":"","link":"","topic":{},"content":"Chúng tôi sẽ đặt mức giá trần cho các nhu yếu phẩm (VD: gạo, thuốc men, v.v).","round":"1","id":"Nyzw0laQ2An86xpnQyfK"},{"division":"","content":"This House Believes That Ireland should significantly raise its corporate tax.","language":"English","tournamentID":"0vUzx1fMW06W65BNi8Wn","topic":{},"link":"","infoSlide":"","round":"3","id":"O1GUrpXqbGTWLP1XtJOG"},{"topic":{},"division":"","content":"Chúng tôi hối tiếc về cuộc điều tra luận tội của Tổng thống Donald Trump.","link":"","language":"Vietnamese","infoSlide":"","round":"2","tournamentID":"uqR5rN63m5rX9CiOtJjb","id":"O278xl1wN0rsYKc4feT6"},{"language":"English","tournamentID":"ZClJskShp09gm6WCITGC","round":"1","link":"","topic":{},"division":"","content":"THBT DINOs do more harm than good to the Democratic Party.","infoSlide":"","id":"O2XJkltwCAN53fw9t7Z3"},{"infoSlide":"","link":"","division":"","language":"English","content":"THB that it is in the interests of women’s equality to campaign against maternity leave.","topic":{},"round":"24","tournamentID":"0DgXee32WEP3hxmGZExS","id":"O3PVOPvHaDIE4Kj0aVRw"},{"division":"","topic":{},"round":"2","language":"English","content":"THW introduce tax cuts for qualified foreigners who want to settle in Poland.","infoSlide":"","tournamentID":"oeH2vC3Ht09TthfmAx2F","link":"","id":"O3d5fT4VArm9QbXxiuRM"},{"round":"5","topic":{},"division":"","content":"TH, as the heir to any European throne, would refuse to become a monarch.","link":"","tournamentID":"LH17DUUbXDstAFfMNJyf","infoSlide":"","language":"English","id":"O3xB7U7D25BUDHa51e7G"},{"division":"","language":"English","link":"","tournamentID":"4NEhQx2m4XcXy6SxnoqS","infoSlide":"","content":"THW oblige pharmaceutical companies to spend half of their research budgets on illnesses that occur primarily in developing countries.","topic":{},"round":"1","id":"O41BF1xn5orPektjF8Tw"},{"tournamentID":"m6JzV67uYJSVBRpAbgL7","division":"","round":"Grand Final","link":"","infoSlide":"","topic":{},"language":"English","content":"THO the use of scientific discoveries obtained through unethical means.","id":"O4R6hhLggxTvmCG8ZuFl"},{"language":"English","division":"","content":"THW arm Syrian rebels.","topic":{},"infoSlide":"","round":"1","tournamentID":"d0CBbRAyIQhiX69bWaKA","link":"","id":"O4thT8h7135M4i7njkrM"},{"infoSlide":"","link":"","topic":{},"tournamentID":"PhJT1xhigiWcZot2PdLn","division":"","content":"This house would ban organisations from promoting abstinence.","language":"English","round":"Open_Quarters","id":"O5DPJsm4M5e7wudlox3n"},{"topic":{},"content":"THBT all sentencing should be decided according to an algorithm that considers purely the probability of recidivism of the convict.","tournamentID":"m6JzV67uYJSVBRpAbgL7","division":"","infoSlide":"","language":"English","link":"","round":"5","id":"O5RCyREznTZudgjFKGHc"},{"link":"","content":"THS international commercial surrogacy.","language":"English","division":"","round":"3","topic":{},"infoSlide":"","tournamentID":"BsGevifhMX1weZjFgh7y","id":"O5X1xZOmKoC8Xwaic4EY"},{"content":"THBT the European Union should immediately grant full membership rights to Bosnia and Herzegovina.","division":"","infoSlide":"","topic":{},"link":"","language":"English","round":"3","tournamentID":"cTxMF0myfwbQDPdL8Ral","id":"O5c91yERLhsopuIvzNAs"},{"language":"English","tournamentID":"8vo3c8Tz12muCmAoWSv2","infoSlide":"","content":"THW Punish Parents when Their Children Bully Others at School.","link":"","division":"","round":"4","topic":{},"id":"O6Ap3JQg7UyAhvSxlOq8"},{"infoSlide":"","round":"Open_Semis_3","topic":{},"content":"That illegally gathered evidence should be admissible in court.","division":"","link":"","language":"English","tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","id":"O6Hxi27dB8iJCvHwvag8"},{"infoSlide":"","division":"","link":"","tournamentID":"9wxPRUMGICTUrE7xSaCG","topic":{},"content":"THW abolish prison sentences for all non-violent crimes.","round":"4","language":"English","id":"O6fFnvZkyJQE07Nbqqis"},{"link":"","content":"THBT parents of children from lower socio economic backgrounds should discourage their children from pursuing majors with low employability (sociology, history, fine arts, etc).","topic":{},"infoSlide":"","language":"English","round":"1","tournamentID":"KMhBpmj1LWPj5LN0aFUK","division":"","id":"O6yCp9yJSuqWTycEynNl"},{"language":"English","division":"","infoSlide":"","content":"THBT developing democracies with a history of ethnic tensions should have ethnic quotas in government.","link":"","tournamentID":"vIcSl55fwy2uPdlGUXsg","topic":{},"round":"4","id":"O8J5WizIuXMSVHoPZNDv"},{"tournamentID":"Te8RVa4tAIQJaY0sFp5C","infoSlide":"","link":"","topic":{},"content":"THW have minimum quotas for different ethnic groups living in public housing estates.","round":"2","division":"","language":"English","id":"O8OHWTR3v8zUTqB5phEz"},{"content":"This house believes that the United States of America should invade, and forcibly partition Iraq.","round":"Open_Semis","division":"","topic":{},"infoSlide":"","link":"","tournamentID":"NYyJaJXo1SigW6G8Y1Lm","language":"English","id":"O8PoqaSI38czqYsE1WXq"},{"link":"","round":"Open_Quarters","division":"","infoSlide":"","language":"English","tournamentID":"fYRQ3gsDALGgMYQf58zt","topic":{},"content":"THR THE WOKE CALL-OUT CULTURE.","id":"O9nRwWWp5uYpTCWdjT1I"},{"link":"","content":"THW abolish academic journals and make all academic research freely available to the public online.","division":"","language":"English","infoSlide":"","topic":{},"round":"3","tournamentID":"E5iEI92yocDkjANxDoF9","id":"O9t9JjHcRvdmMRNegYbB"},{"content":"Should prisoners temporarily lose their right to vote?.","division":"","round":"1","infoSlide":"","tournamentID":"N8WiUFJpvPmLaaYYsbsD","topic":{},"link":"","language":"English","id":"O9xkBWvD5gE9JxU4EHWA"},{"division":"","topic":{},"link":"","round":"1","content":"This House regrets the decline of the humanities in higher education.","tournamentID":"lmRNEraLEkD31bc6Nbnn","infoSlide":"","language":"English","id":"OAkX3sVX2cM9iuPKk2kg"},{"language":"English","link":"","content":"THW ban all advertising of consumer goods and services.","infoSlide":"","division":"","tournamentID":"0bpNzjTgN71TZQEkHTak","topic":{},"round":"Open_Quarters","id":"OAmQqzoTV3uy7RiBnMWS"},{"topic":{},"link":"","infoSlide":"","tournamentID":"py2YomguZSylDKYhWlhK","language":"English","round":"5","division":"","content":"THW prohibit hospitals from being owned by or affiliated with religious organizations (eg, Catholic hospitals).","id":"OB7KJyT3mmkEZQ6EbFdr"},{"infoSlide":"","round":"Open_Final","topic":{},"content":"Assuming the switch will never be discovered, this house will tell the poor couple their baby died and hand the surviving baby over to the wealthy couple.","language":"English","link":"","tournamentID":"eSbb5Usou5B1Drm2Dmyl","division":"","id":"OBS3Lmevmk5kdLcbUelj"},{"language":"English","tournamentID":"m97biSF63NO9Jn1yenBI","content":"THW criminalize sick people who hid their illness during epidemic situations.","topic":{},"round":"2","division":"","infoSlide":"","link":"","id":"OBZcwwHb5ucrJSttCSHF"},{"content":"THW ban all political polls before any election.","round":"5","language":"English","tournamentID":"aWnK845Eg0cHNR0VZu3e","division":"","infoSlide":"","link":"","topic":{},"id":"ODCq4ExdXEX5519v3yP8"},{"link":"","division":"","language":"English","tournamentID":"6j3LrbKUgx9arVygXUjf","infoSlide":"","topic":{},"content":"THS governments donating the organs of an individual after death, even against the wishes of that person or their family.","round":"5","id":"ODVipSib7MDFUEv8LY4w"},{"division":"","infoSlide":"","round":"3","link":"","tournamentID":"gf4DgO2PbJKuaj3RSFTp","language":"English","topic":{},"content":"THBT the European Union should guarantee membership to regions of existing EU member states, such as Catalonia or Scotland, that secede.","id":"ODrB9GCowXyf40EP0zdM"},{"link":"","round":"2.3","infoSlide":"","content":"TH prefers a religion that believes thaat people are inherently good to one that believes they are inherently flawed.","language":"English","tournamentID":"bvHOR7Oow9PPlKPlA2BT","topic":{},"division":"","id":"ODzmYV8vzprQZOFavn8O"},{"infoSlide":"","content":"THBT the feminist movement should support monogamy.","division":"","topic":{},"round":"2","tournamentID":"aUwwV3DTC7VLF1KaHJqj","link":"","language":"English","id":"ODzrCWhOWUFYbAgZcxDg"},{"topic":{},"language":"English","tournamentID":"QePDCf8cQ2AX4XfcvR3T","infoSlide":"","round":"1","link":"","division":"","content":"THBT Brazil should fully privatize Petrobras / ECCQ Brasil debería privatizar por completo Petrobras.","id":"OEE9L4s36IMl1CoYjU8L"},{"round":"Open_Final","division":"","infoSlide":"","content":"THBT mainstream political parties in Europe should impose a \"cordon sanitaire\" on radical populist parties (e.g. VOX, AFD, PPV).","tournamentID":"jS13nU6Cack3rcPrnNZ5","link":"","topic":{},"language":"English","id":"OEH159CwDnaXbTE6DaxM"},{"round":"Novice_Final","infoSlide":"","tournamentID":"3VTSywK012zU6GDLqZzC","link":"","language":"English","content":"THW Pull the Switch.","topic":{},"division":"","id":"OEduv3elYG286lHrJSkj"},{"round":"4","link":"","topic":{},"tournamentID":"oaIuwyOX7NBIwaiSaVJ8","infoSlide":"","division":"","content":"That local communities should be able to cap the number of tourists that enter their region over a specific period of time.","language":"English","id":"OFs9KPxze3uAGNHX1AXk"},{"round":"4","infoSlide":"","content":"TH believes that provocation should not be a consideration in legal sentencing.","link":"","topic":{},"language":"English","tournamentID":"NbIgaSiRmXdh3BAZ88Vm","division":"","id":"OG2lG8UcHLQyHQhwrYuK"},{"infoSlide":"","link":"","division":"","content":"Chúng tôi phản đối quan niệm dân chủ là một quyền con người.","tournamentID":"mNwitMoNsjWupgwG8pR5","topic":{"politics":{"check":true,"title":"Politics"}},"language":"Vietnamese","round":"","id":"OGJirzLxEZdPG14FqaBg"},{"content":"TH, as an educational institution, would prohibit all sports programs that pose a risk of CTE.","infoSlide":"","round":"3","language":"English","division":"","topic":{},"tournamentID":"oaIuwyOX7NBIwaiSaVJ8","link":"","id":"OGQL4meSECHkKxw1lO1a"},{"language":"English","division":"","infoSlide":"","tournamentID":"QZvopTthxxEkyvHXmzp3","round":"1","topic":{},"content":"This House Would Ban Religious Primary and Secondary Schools.","link":"","id":"OGejyBUV76Pc0PR8RaY6"},{"link":"","language":"Vietnamese","tournamentID":"u39lMiqXE91heMDxEgQe","division":"","infoSlide":"","content":"Chúng tôi tin rằng ASEAN nên từ bỏ nguyên tắc đồng thuận chung (10/10 quốc gia phải đồng ý), thay bằng nguyên tắc đại đa số phiếu (7/10 quốc gia đồng ý).","round":"4","topic":{},"id":"OGx5FlXVNRuCw0p7Sy0u"},{"infoSlide":"","content":"Assuming this medicine exists and is widely accessible, This House Believes That universities should ban and actively test for this drug.","round":"2","link":"","topic":{},"tournamentID":"7l98EUanZ85SaCAlZg2X","language":"English","division":"","id":"OHe7T2aJL8JEfUxVxcmo"},{"tournamentID":"m2l0j7TwryKeK2YnXK9e","topic":{},"content":"THBT the USA should militarily intervene in the Philippines.","round":"3","link":"","infoSlide":"","division":"","language":"English","id":"OHzXGl2QaNb5DkjqeJzw"},{"link":"","infoSlide":"","round":"1","topic":{},"content":"THW compel colleges to pay athletes as professionals.","language":"English","division":"","tournamentID":"PULmrzx6k00EzEt7BxfG","id":"OI8DrxTSaYhaIBFWCwY2"},{"tournamentID":"B63fWPacAJNcBJdaEpVz","round":"4","topic":{},"division":"","language":"English","link":"","content":"THB that developing countries should disregard intellectual property rights on life saving/preserving medicine.","infoSlide":"","id":"OKAuyioRWRfWvqKUan3G"},{"round":"3","tournamentID":"9wxPRUMGICTUrE7xSaCG","language":"English","infoSlide":"","link":"","content":"TH regrets the Arab Spring.","topic":{},"division":"","id":"OKPnRzlmIrLxURIrTsKc"},{"division":"","content":"Should the position of national president be abolished?.","topic":{},"round":"Open_Final","link":"","language":"English","tournamentID":"1wIdZYeTVkyLU5yJfjda","infoSlide":"","id":"OKhqNzrKuXB9G7nL86wM"},{"language":"English","round":"3","division":"","topic":{},"infoSlide":"","link":"","content":"This house believes that Hollywood should blacklist anyone credibly accused of sexual misconduct.","tournamentID":"TmlbBgqJnPvT2UGB0Lbb","id":"OLAVdSZ6UZB1qpw1gBsj"},{"infoSlide":"","round":"Open_Final","content":"THB in the right to bear arms.","language":"English","division":"","tournamentID":"if0ptVr0NjWKFiLehpRT","link":"","topic":{},"id":"OLTwiOFBDtzjibZCmYyu"},{"infoSlide":"","link":"","division":"","language":"English","tournamentID":"Biz1VRjjdg8eWbm4NJr3","topic":{},"content":"This house opposes organised religion.","round":"Open_Semis","id":"OM2rM55T1JCPS1J2xZUO"},{"round":"Open_Quarters","tournamentID":"efp9mMZFiy8fVwkom17I","language":"English","topic":{},"content":"THW ban non-disclosure agreements in the private sector.","infoSlide":"","link":"","division":"","id":"OOyW6hrkPaJDPFw8q6D4"},{"tournamentID":"JWLA0D1GfpyCkzoL1qX9","division":"","topic":{},"infoSlide":"","content":"THW, as the EU, suspend the membership of any nation that elects extremist parties.","language":"English","link":"","round":"2","id":"OPx7izrGHsbTtnpuIQgC"},{"link":"","language":"English","topic":{},"infoSlide":"","division":"","content":"TH, as Germany, would ban all emission vehicles by 2020.","tournamentID":"KErVXbqRahyWD7ZB1Q1m","round":"2","id":"OPxPmfYTq3stXNDxTaMa"},{"round":"Grand Final","language":"Vietnamese","tournamentID":"I4LkoGhDJmtXsINMJVjW","topic":{},"division":"","content":"Chúng tôi sẽ ngừng mọi nỗ lực liên lạc với các trí tuệ ngoài hành tinh.","infoSlide":"","link":"","id":"OQQbg7XywCH7KXBZLvHu"},{"content":"THBT the EU should issue a directive to all its member states to legalise gay marriage.","link":"","tournamentID":"sgkzjS4WeJfa3Df1l3zo","division":"","infoSlide":"","topic":{},"language":"English","round":"2","id":"OQpDRtzIC2FTZaA2TCJ8"},{"link":"","round":"Open_Final","topic":{},"infoSlide":"","language":"English","content":"TH, as the United States, does not regret the dropping of the atomic bomb.","division":"","tournamentID":"O8G3JSrsKEY7mvvg6szT","id":"ORI4VMbYaHcTyQVqmzgd"},{"division":"","topic":{},"tournamentID":"aUwwV3DTC7VLF1KaHJqj","language":"English","infoSlide":"","link":"","round":"4","content":"THBT the entire UK housing stock should be owned by the state.","id":"ORpswvInUXkliokuz22s"},{"division":"","infoSlide":"","round":"1","language":"English","content":"THW only imprison criminals who pose a continuing threat to society.","link":"","tournamentID":"FAvjs63H5vSbEY0I97Zs","topic":{},"id":"ORysVgK5wgY2LCpsyQ3A"},{"infoSlide":"","language":"English","content":"THBT former colonial powers have an obligation to promote economic development in their former colonies.","topic":{},"division":"","tournamentID":"eXqHjvQ9MTXYhyv8NeW7","link":"","round":"4","id":"OS9T5hduQ2xwAvNDo3gL"},{"division":"","round":"1","topic":{},"link":"","tournamentID":"3VTSywK012zU6GDLqZzC","infoSlide":"","language":"English","content":"THR The Rise of Far Left Politics in Western Countries.","id":"OSRdnhim5a4X7zqf5q17"},{"tournamentID":"JHo8pIpzQxzUKHUwVDFf","topic":{},"content":"TH regrets the second impeachment of Donald Trump.","division":"","round":"3","infoSlide":"Donald Trump was impeached for the second time by the House of Representatives on January 13, 2021. The US Congress adopted one article of impeachment against Trump: incitement of insurrection, alleging that Trump incited the storming of the U.S. Capitol on January 6.","link":"","language":"English","id":"OUHJxy31YP3pAz0WVZm4"},{"tournamentID":"SE4KfMNAU58WSM6yajEF","link":"","division":"","round":"Quarterfinals","language":"Vietnamese","topic":{},"infoSlide":"","content":"Chúng tôi ủng hộ việc Việt Nam lấy tiếng Anh làm ngôn ngữ thứ hai.","id":"OUaBztZa3yB7gh4IGVSc"},{"topic":{},"link":"","round":"2","tournamentID":"FISzpNaGZKCHkhtDdzPp","content":"THBT, instead of attempting to mitigate the effect of climate change, states should re-divert all existing environmental funding to geoengineering projects.","language":"English","division":"","infoSlide":"","id":"OWSVcXjlQhDurmYngKWD"},{"content":"Given the consent of Ukraine's government, THBT the West should assist in maintaining peace and territorial integrity in Eastern Ukraine.","language":"English","division":"","topic":{},"infoSlide":"","link":"","round":"Open_Final","tournamentID":"ARfoyigbkuieCEyKI1GV","id":"OWrSjMiz4TqQZsYcR1Su"},{"content":"THW abolish awards in creative fields (e.g., the Oscars for film, the Booker Prize or the Nobel for literature, the Future Generation Art Prize for art).","round":"1","division":"","tournamentID":"DIDaTQVu3sv4iXbqf3eE","link":"","language":"English","topic":{},"infoSlide":"","id":"OX6ISaFdqYkS9fBIXVQl"},{"division":"","round":"3","language":"English","link":"","topic":{},"infoSlide":"","content":"That evidence that is reliable but illegally obtained by the police should be excluded as evidence in all criminal trials.","tournamentID":"fkUHa28aVk8LYYEAdofu","id":"OXMDzTa9ay3XgCDzVdA8"},{"link":"","topic":{},"division":"","tournamentID":"URJkYB098qcNUnuKdfHJ","language":"English","content":"THBT the EU should make English the primary language of instruction for all students above the age of 14.","infoSlide":"","round":"1","id":"OY9KBFKLXABsJdIeEUI6"},{"language":"English","link":"","division":"","topic":{},"infoSlide":"","round":"1","content":"THO the use of deferred prosecution agreements for large companies.","tournamentID":"Nzien6R9RXvOTrNMJsza","id":"OYA1KLkZc8VuZnoaUbHt"},{"language":"English","division":"","link":"","tournamentID":"0bpNzjTgN71TZQEkHTak","infoSlide":"","content":"THBT the US should cut off military aid to Egypt.","round":"Open_Octos","topic":{},"id":"OZJHvwDbBFomLvPlcdUL"},{"content":"THW ban the orange march in the UK.","division":"","round":"3","topic":{},"tournamentID":"vIcSl55fwy2uPdlGUXsg","language":"English","link":"","infoSlide":"","id":"OZQmySlUnwIPJ8AnCdlN"},{"link":"","division":"","language":"English","tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","content":"That we should replace the institution of the family with well run state child raising facilities.","topic":{},"infoSlide":"","round":"5.2","id":"OZQxrUrH7PDTnitUUmEV"},{"language":"English","link":"","infoSlide":"","tournamentID":"G40265rxZRrwSbZ3fQSJ","division":"","round":"Novice_Semis","content":"THBT unconditional cash transfer charities are preferable to project based charities.","topic":{},"id":"OZhgJ9iB8m44w6IohuY8"},{"link":"","round":"4","tournamentID":"jiJ3t0fz2aMel6atC1HM","topic":{},"content":"THBT Syria would be better off if Assad won the civil war.","infoSlide":"","division":"","language":"English","id":"OZsfHAQHP59DqV8oiwrY"},{"language":"English","round":"Open_Semi","topic":{},"division":"","tournamentID":"2C0TX71TRjIIOcsN7CbL","infoSlide":"","content":"Assuming it would be possible to do so, this House would ban the creation of strong artificial intelligence.","link":"","id":"OanAYzODBHdWskMnxfus"},{"tournamentID":"kFgdnpZDLOmYAkEJ1Zu6","topic":{},"link":"","infoSlide":"","content":"THW criminalise all forms of racist speech and behaviour, even where it falls short of directly inciting racial hatred or violence.","division":"","round":"Open_Final","language":"English","id":"Oaw4Ht7MvXEquKC0BoXa"},{"round":"Open_Final","topic":{},"content":"THBT the EU should force member states to adopt socially progressive legislation (e. g. same-sex marriage, abortion rights, ethnic and religious minority rights).","language":"English","division":"","infoSlide":"","link":"","tournamentID":"aC5itVCb0EApgG8DEaqA","id":"Ob1XYUjWNUEoPUl6myBM"},{"division":"","topic":{},"tournamentID":"AZDyYLAFE8Mh41BShv5m","link":"","infoSlide":"","round":"Open_Finals","language":"English","content":"THW never, ever ban books.","id":"ObICMYAbAPja78HBijuY"},{"division":"","language":"English","content":"THW lift all limits on international migration.","topic":{},"link":"","tournamentID":"rMtZQSWssQ8170WIyJTX","round":"5","infoSlide":"","id":"ObdfxGVn7DX1TXymw0g2"},{"language":"English","topic":{},"link":"","round":"Open_Final","tournamentID":"zm3L9uKWbGV2QY1WRlcJ","infoSlide":"","content":"THBT even in an oppressive state, citizens should not turn to violence as a means of opposition.","division":"","id":"OcCRMDt4v9VyeFgHebg9"},{"language":"English","link":"","tournamentID":"CjeO3WtFoEPJ0YkMQ3T2","infoSlide":"","division":"","topic":{},"round":"3","content":"THW impose prohibition on alcohol consumption for all college students. [Round 3].","id":"OcD4Lxn7wwZobsGqU9d9"},{"tournamentID":"x0AmWHi8lm3JhQyyhsfo","division":"","language":"English","infoSlide":"","topic":{},"link":"","round":"Open_Final","content":"TH supports armed vigilante groups in high crime areas.","id":"OcDjDaYIjtZZXZUO49wK"},{"round":"4","topic":{},"link":"","tournamentID":"znXRdnU2llK8fXmHlci5","infoSlide":"","content":"Giả sử công nghệ cho phép, tôi sẽ yêu cầu tất cả các bản án phải được quyết định theo một thuật toán xem xét xác suất tái phạm của người bị kết án.","division":"","language":"Vietnamese","id":"Ocyn6c7gIDUgAs0NdWix"},{"topic":{},"round":"Novice_Final","division":"","language":"English","link":"","content":"As environmental movements, THW focus on campaigning against having children as opposed to campaigning to reduce all forms of consumption.","infoSlide":"","tournamentID":"seLxlAUewt8fbZdlsCGC","id":"OdYRPoYi3y8w0nggmxKf"},{"round":"ESL_Final","link":"","infoSlide":"","language":"English","topic":{},"division":"","content":"THW grant automatic asylum to women from countries under sharia law.","tournamentID":"jhyT1LK3YdR0do1cosc6","id":"OdedVbUNXgAr1LoebwIi"},{"content":"THW impose strong political and economic sanctions on tax havens.","tournamentID":"bkOT9pwqHsKTlwricRHY","topic":{},"infoSlide":"","division":"","link":"","language":"English","round":"3","id":"OdnuiRoqDwJ4bemmMv8x"},{"topic":{},"language":"English","division":"","tournamentID":"MSWulSxGMLEhqYJrBR62","content":"TH, as the EU, would withhold development aid from countries with poor women's rights records, e.g. age of consent, laws around domestic violence or property laws.","link":"","infoSlide":"","round":"3","id":"OeoeXJb7i749UEhCC9Wo"},{"infoSlide":"","content":"THW allow simulated child pornography.","division":"","round":"4.2","language":"English","tournamentID":"BXqPhfwak2R1kYHV48bp","link":"","topic":{},"id":"OfUgxKhn962pwwbSvIGR"},{"content":"THBT oil exporting Islamic states should enact embargoes against states that pass laws discriminating against Muslims.","round":"3","link":"","division":"","language":"English","tournamentID":"wP5I8OZ057B9BO0Js6MR","topic":{},"infoSlide":"","id":"OfYNLdFEOjXMK5GFhuRb"},{"link":"","infoSlide":"There exists technology to record and replay dreams - called Indian Poker. Some people are extremely good at capturing dreams and can create any scenario a dreamer might want. Using Indian Poker is extremely easy - you buy a trading card off a street vendor and place it on your forehead before you sleep. The dreams are extremely realistic, incorporating all senses. The dreams available through Indian Poker are extremely varied - from lewd fantasies to dreams of flight to instructional dreams that can improve real life abilities and skills while you sleep.","language":"English","tournamentID":"Z9WBfg1yDJgSR34BGYp1","round":"4","content":"THW ban Indian Poker.","topic":{},"division":"","id":"OfdLumS2RhHPi9NgEIVq"},{"round":"Open_Semis","content":"THW apply universal jurisdiction to crimes against the environment.","tournamentID":"qDUBTulIlHZP0un39LYK","topic":{},"infoSlide":"","language":"English","link":"","division":"","id":"OhIQa56MnUpTe0DzJQ7G"},{"tournamentID":"O0uPnjb8M1dIGLUmO4NP","content":"THW Allow and enforce prenuptial agreements that punish infidelity.","infoSlide":"","language":"English","topic":{},"round":"3","link":"","division":"","id":"OhgFZNWB2fhud6JHvU6G"},{"language":"English","link":"","round":"4","topic":{},"division":"","infoSlide":"","content":"THBT the Arab Spring has been bad for Egypt.","tournamentID":"980ImkvfswyUVd54XFQd","id":"Oi7i8rcSrTUr3wyKvjgQ"},{"division":"","link":"","language":"English","infoSlide":"","topic":{},"content":"THBT Times Magazine should have chosen Miley Cyrus to be person of the year.","round":"1","tournamentID":"KauhYz2zVxnSCnoC8XMr","id":"Ok1dIdVxAhrWzATq4OhK"},{"division":"","content":"THBT China should make extracting a full apology for Japan’s war crimes a top strategic priority.","link":"","language":"English","tournamentID":"7xqpYA72Sruch4lr5Uzj","topic":{},"infoSlide":"","round":"4","id":"Ok3oL4FF1ch02tLeEIbG"},{"topic":{},"content":"THBT the government should be blamed for slow economic growth.","link":"","tournamentID":"G1nDRe3mbR7XzsaLbAGR","language":"English","round":"Open_Final","division":"","infoSlide":"","id":"OkZVFeafg7TNTOzHwq7W"},{"topic":{},"infoSlide":"","division":"","tournamentID":"McARyCvnNLDmzAARI8jE","round":"Open_Semis","link":"","content":"THBT a universal minimum standard of education is a prerequisite for democracy.","language":"English","id":"OkbBBD8Eon9e3IRHwA2X"},{"division":"","link":"","tournamentID":"keyU5X5APEvFXLaZwxeM","infoSlide":"","topic":{},"round":"1","language":"English","content":"THW require internet users to disclose their identities.","id":"OlDrHXpTwIUsu2VKIQy9"},{"topic":{},"content":"THBT members of parliament should be appointed by lottery.","division":"","round":"Open_Final","link":"","infoSlide":"","tournamentID":"eNRfEfbvRNeRnZhk4TS2","language":"English","id":"OmEsUsU9mCJflksnKgb5"},{"language":"English","link":"","division":"","content":"THW eliminate trial by jury and replace it with trial by judge.","round":"1","tournamentID":"vURFmLn4wdqX6ZbK0ini","topic":{},"infoSlide":"","id":"OmHrzOiztOTN6U2VuImK"},{"language":"Vietnamese","link":"","division":"","tournamentID":"KE7jdAyW9az9nKVb9FMV","topic":{"education":{"title":"Education","check":true}},"content":"Chúng tôi tin rằng hệ thống giáo dục châu Á nên tích cực thúc đẩy quan niệm văn hóa châu Á tốt đẹp hơn văn hóa phương Tây.","infoSlide":"","round":"","id":"OmbpT4E4hyBfTwlcZQXh"},{"infoSlide":"","division":"","tournamentID":"7iuaP5vcRAvHJFM4QYmP","language":"English","link":"","content":"THBT Finland should join NATO.","round":"Open_Semis","topic":{},"id":"Omulo5ZwIv8mLrEvIaMf"},{"content":"TH opposes the popular trend which encourages people to “be themselves” despite the opinions of others.","language":"English","tournamentID":"OQmCXCvJatQN0zG3lklx","topic":{},"division":"","link":"","infoSlide":"","round":"4","id":"On4Qz3KPmhpLLTmZnTUn"},{"content":"THW build vocational schools and bring in low performing students here.","topic":{"education":{"title":"Education","check":true}},"tournamentID":"OqQWJjNQBpGOYwMntw3z","link":"","round":"","division":"","language":"English","infoSlide":"","id":"On4YVpuLxenEFEcOmsST"},{"language":"English","content":"THBT Asian immigrants to Western countries should assimilate in the culture of their host country even at the expense of losing their original culture.","infoSlide":"","division":"","round":"1","topic":{},"tournamentID":"m6JzV67uYJSVBRpAbgL7","link":"","id":"Oov6AKMXrVauGd9qv8ee"},{"topic":{},"tournamentID":"wYhrxey2tVddZfEkGSYA","link":"","round":"2","infoSlide":"","content":"Should we put a limit to the time parties can be in parliament?.","division":"","language":"English","id":"Oq6Lj2D1IstQMmkHwVY8"},{"link":"","topic":{},"round":"9","content":"THR Americans' recent and unprecedented opposition to military intervention.","infoSlide":"","tournamentID":"aywt5Kt0TqoeqngKQ0I4","division":"","language":"English","id":"OqgMBcaTIR9zUge1GuKp"},{"language":"English","division":"","tournamentID":"2fNmUq1mfr7IP3WAvr0Q","link":"","content":"Should all Members of Parliament be selected, not through elections, but through a lottery from among all citizens?.","topic":{},"round":"3","infoSlide":"","id":"OrAfO2gm7gxILQ53iYCM"},{"language":"English","content":"THW allow individuals to nominate a charity of their choosing to receive all inheritance tax that would be otherwise paid to the state upon their death.","infoSlide":"","round":"5","division":"","tournamentID":"tKaZ8QEH0Hjz3Oiknfdr","topic":{},"link":"","id":"Orl1VCtv77hoYcOMBlh1"},{"link":"","division":"","tournamentID":"37eWQ7OoHqsPgaN53lHV","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"round":"","language":"Vietnamese","infoSlide":"","content":"Chúng tôi phản đối các chương trình mai mối trên truyền hình.","id":"Ort25o5SeCdR2qtAfuwj"},{"infoSlide":"","round":"4","topic":{},"tournamentID":"SGpBjVPnJkFrJB0hnxYv","link":"","division":"","content":"THBT the IMF should require collateral in exchange for loans.","language":"English","id":"OuU6MTkEl9B614yr3SBu"},{"tournamentID":"SYgBNIxUimP727BA2md3","language":"English","content":"THW go on a treasure hunt.","topic":{},"division":"","link":"","round":"4","infoSlide":"","id":"OuZCOJuRW0BFJIFvorJ2"},{"division":"","tournamentID":"75jspJDrwq3Ldwex90Qr","round":"2","infoSlide":"For the purpose of this debate \"touching fish\" refers to the rising Chinese Gen Z workplace trend and philosophy of taking the chance to \"slack off\", when others are already hard at work. \"Touching fish\" is not uncommon among older generations of China but was generally not as widespread as it is today among Generation Zs. The term takes after a Chinese proverb that says, \"muddy waters make it easy to catch fish\" which means the more convoluted a situation, the easier it is for opportunistic behaviour.","language":"English","content":"THO the trend of the Chinese work philosophy of \"touching fish.\"","topic":{},"link":"","id":"OuzlMMWIQ0Mnbyfn0WJR"},{"link":"","infoSlide":"","language":"English","round":"5","content":"In 49BC, the general Julius Caesar attempted to return from a successful campaign in Gaul to Rome. The Roman Senate, fearing Caesar’s popularity with his army and the people, issued an ultimatum that Caesar was to not cross the border marked by the River Rubicon, else he would be named a traitor and spark a civil war. TH, as Caesar, would cross the Rubicon - Round 5.","division":"","topic":{},"tournamentID":"nXN2yUG7soxwCp4xidzj","id":"Ow4UcLdSed9wJWagnAx2"},{"content":"TH repents of the Spanish colonisation of Latin America.","round":"Open_Final","language":"English","division":"","infoSlide":"","topic":{},"tournamentID":"V8KRgdahxIEUYFHrRWYb","link":"","id":"Ow5J0yYybEUzE37u4csq"},{"tournamentID":"Aic5TDtU01Sp43Neh8N2","language":"English","division":"","link":"","round":"Open_Semis","infoSlide":"","topic":{},"content":"Assuming some willingly do this already, TH as a super-powered individual would unmask and register.","id":"OwFpQyxiWN6L7uofkGwJ"},{"infoSlide":"","tournamentID":"yLkpGc1iaQe5cfQPrNvl","round":"2","language":"English","content":"THBT a world in which there is no more sexual instinct and reproduction is only in vitro and through similar technologies is a better world.","link":"","topic":{},"division":"","id":"OxDqJZoU9xRLpm2HZnYq"},{"round":"Open_Quarters","tournamentID":"UfGg9gZEXlU744RWE1Y1","link":"","content":"THW require the economic policies of political parties to be approved by an independent panel of experts before being used in campaigns.","topic":{},"division":"","language":"English","infoSlide":"","id":"OxWQy1ieENtezGukL6fr"},{"infoSlide":"","division":"","content":"That, as Aman, we would have professed our love and married Naina.","topic":{},"round":"4","link":"","language":"English","tournamentID":"Pt1Z2dTdUinRviVucbZA","id":"Oy1jz8OJlXymeuVEgK9l"},{"content":"THBT GLOBAL SPORTS GOVERNING BODIES (EG. FIFA) SHOULD PRIORITISE GEO POLITICAL CONSIDERATIONS IN SITUATING CHAMPIONSHIPS.","division":"","tournamentID":"M23yN5DieB5FwQ5wfjDl","round":"3","link":"","infoSlide":"","topic":{},"language":"English","id":"Oy6pR4rOCCWp4QbeUg9p"},{"link":"","division":"","topic":{},"tournamentID":"d13kY0BTy5kVOwwqu54R","language":"English","infoSlide":"","round":"Open Quarterfinal","content":"THW Introduce a system of tradable quotas for asylum seekers in the European Union.","id":"OyLu7fHHlMDFeNKG7XYH"},{"language":"English","round":"3","tournamentID":"Y8UBPz5agTr6QKYI2kXS","content":"THW show only movies that pass the bechdel test (with info).","division":"","infoSlide":"","topic":{},"link":"","id":"Oybf27PIVBDVMGsl6f6U"},{"link":"","division":"","content":"THW allow the use of nootropics for academic and professional purposes.","round":"1","language":"English","topic":{},"tournamentID":"RPKNKQNkycR35T4aIzhw","infoSlide":"","id":"Oyfl4bl6DXMawqJhflwe"},{"division":"","language":"English","tournamentID":"jfv01DUCOrtLcsyMO6qo","round":"Novice_Final","content":"THBT, given feasibility, companies should move to work from home.","infoSlide":"","link":"","topic":{},"id":"OyildO32VXJ2aFtRh9gm"},{"round":"2","topic":{"environment":{"check":true,"title":"Environment"}},"division":"","tournamentID":"xAdc6R4uC1xkQxvmPedU","language":"English","link":"","content":"THW legalise the licensed hunting of endangered animals.","infoSlide":"","id":"OysOTRbJQ3iDGYu2jfNK"},{"topic":{},"language":"English","link":"","infoSlide":"","round":"Open_Final","tournamentID":"ERxjvEIrmiL3iSgvcfdB","division":"","content":"THBT the fight against Climate Change should include taking international action against sovereign countries (such as exclusion from international institutions, sanctions, military intervention, etc.), which allow environmental abuses through direct action or negligence.","id":"Oz1TquawS9MAoezWdheX"},{"division":"","content":"THW Permit The Cloning Of Genius And Extraordinary Individuals For The Good Of The Society.","language":"English","link":"","topic":{},"round":"5","tournamentID":"i4XbygF4ZWUtQg8NFKqw","infoSlide":"","id":"Oz70hN0xnpC01UN1ra4F"},{"tournamentID":"RA6EqhjHK7wF8NHgzThB","language":"English","division":"","link":"","content":"THW only teach gender neutral pronouns in school.","infoSlide":"","round":"5","topic":{},"id":"P0XO9WnBBvGUNuymr6kE"},{"content":"TH prefers secular governments that exclude all religion from public spaces to those that allow unlimited religious expression.","language":"English","tournamentID":"X4613Kz1qYjZyFPJzJlB","round":"5","infoSlide":"","topic":{},"division":"","link":"","id":"P11TmYd5LIcFcFpqdDrd"},{"language":"English","content":"TH would begin writing only in your first language.","link":"","tournamentID":"7DiEtR3YNKR69fHccj5Y","topic":{},"infoSlide":"","round":"4","division":"","id":"P1Yz4CBBFsTHfox0rXgE"},{"round":"2","link":"","infoSlide":"","language":"English","content":"TH supports the Iraqi Government’s policy of paying citizens rewards to kill jihadist insurgents.","division":"","tournamentID":"SjQ6g8g2URks9WV96X0G","topic":{},"id":"P1ntBwir9jwR4AJb5SxS"},{"content":"THBT social movements should focus on publicly shaming corporations to change business practices rather than trying to achieve these outcomes through legislative action.","language":"English","topic":{},"infoSlide":"","round":"4","link":"","division":"","tournamentID":"V7FJhUQXRQ0Z4dnL94bu","id":"P2V4yD1MYhLKWHMGpwmx"},{"content":"You are a dutch person. THBT you should campaign against Zwarte Piet and should routinely condemn it as a racist institution.","language":"English","round":"Open_Final","tournamentID":"UWHKNxWBfNyw2FCQAxdk","topic":{},"division":"","link":"","infoSlide":"","id":"P2VxbFHU3k7ae94u9yeJ"},{"content":"This House believes that children should not block their parents from their social media accounts.","topic":{},"language":"English","infoSlide":"On most social media platforms (Facebook, Twitter, Instagram, etc, there usually exists a feature for a person to block another user. The blocked user will not be able to view the content or interact with that person on the platform.","round":"2","tournamentID":"gUFKQBcgvghmUX6k0Dj3","division":"","link":"","id":"P36B3thDBXW36i5mxl8j"},{"tournamentID":"se3rzB8xVp0Ph3sVbug3","topic":{},"content":"THS the concept of orgasm intervention.","language":"English","infoSlide":"","round":"Open_Semis","division":"","link":"","id":"P3M7lejr09IZARCLqmRg"},{"infoSlide":"","division":"","language":"English","topic":{},"tournamentID":"URJkYB098qcNUnuKdfHJ","content":"THBT parents should push their kids to achieve, even if that comes at the expense of their child’s happiness.","round":"Open_Semis","link":"","id":"P3XC1CrXLODt1de1nJUo"},{"tournamentID":"wA1XDLHJESmSgLsfZ9Qe","link":"","round":"Open_Octos","language":"English","infoSlide":"","division":"","topic":{},"content":"This House prefers a cynical and pessimistic perception of democratic politics to an idealistic and optimistic one.","id":"P5Is44pfkHXzOAWNEXZ1"},{"topic":{},"round":"Open_Final","content":"THW offer EU membership to Middle Eastern and North African states that achieve successful democratic transition.","division":"","language":"English","tournamentID":"8ayi1XeWc8ZG8jPzG8bt","infoSlide":"","link":"","id":"P7OqC62EV3s6Bz1mccda"},{"tournamentID":"ZetjyvhBc3exk1eBvmTd","round":"3","infoSlide":"","language":"English","topic":{},"division":"","link":"","content":"In the near future, scientist Thomas Harbor has discovered conclusive scientific evidence that afterlife exists. It has also been determined that it is impossible to to find out the specific nature of afterlife. Motion: TH, as Thomas Harbor, would destroy the research.","id":"P8fy5rqaKgMnGBIb8606"},{"topic":{},"tournamentID":"jkJhYCzI3XvX3Zgm0Ivc","division":"","link":"","language":"English","round":"3","content":"THW remove exemptions from anti-discrimination law for religious organisations.","infoSlide":"","id":"P8xhBt6MLCqxbQ1EyM4n"},{"language":"English","topic":{},"tournamentID":"m6JzV67uYJSVBRpAbgL7","content":"THBT developing nations should distribute, as a dividend to citizens, income derived from nature resource extraction.","round":"Open Semifinals","infoSlide":"","division":"","link":"","id":"P91lLEL8Uk46R2HSklEn"},{"infoSlide":"","language":"English","topic":{},"link":"","division":"","content":"THW ban all religions from actively seeking to convert non-believers.","round":"Open_Final","tournamentID":"hF5AdOa0t9O6mkaChm75","id":"P9H3vYfQsUY6HViKiqVs"},{"tournamentID":"0NYsqnVN9ZPLLJvXAZdI","division":"","round":"1","topic":{},"content":"THW financially incentivise businesses to diversify their boards.","link":"","infoSlide":"","language":"English","id":"P9PZYAnUt22ykTH5YUMG"},{"division":"","tournamentID":"ukcS5bJ2TUuNfMuzta0w","content":"TH, as the UN, would give Venezuela humanitarian aid with no strings attached.","infoSlide":"","topic":{},"round":"2","language":"English","link":"","id":"P9jRZvl7SlUXb6rHCrbD"},{"language":"English","topic":{},"link":"","tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","infoSlide":"","round":"2.1","content":"That the EU should require member states to set common rules and rates for corporate taxation.","division":"","id":"P9qNMrCYigAvnJmXVNkM"},{"link":"","topic":{},"tournamentID":"I5iTcVABscgCPPKzr8Oa","round":"1","content":"THBT South Korea should develop its own nucler weapons.","infoSlide":"","language":"English","division":"","id":"PA8SbWfE7q6ZJFohZvwp"},{"link":"","tournamentID":"nALUKfkpmOnWnQCzecru","division":"","content":"Chúng tôi sẽ tiết lộ thông tin này.","round":"","infoSlide":"Bối cảnh: Một thành viên nổi bật trong phong trào LGBT đã phát hiện ra rằng một nhà chính trị gia ủng hộ LGBT có ảnh hưởng vô cùng lớn đã nói dối về xu hướng tính dục của mình (người này bảo mình đồng tính nhưng thực ra người đó dị tính).","topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"}},"language":"Vietnamese","id":"PAYZM0VBljg7z3lWIesO"},{"tournamentID":"qj5XULQcWvkGn23VActf","division":"","infoSlide":"","topic":{},"round":"3","language":"English","content":"THW ban male circumcision.","link":"","id":"PAlcievQnPpXJmUPcQuI"},{"content":"THW eliminate the minimum wage.","link":"","division":"","topic":{},"language":"English","round":"Open_Quarters","tournamentID":"yFALyexswW7KtxRDS4He","infoSlide":"","id":"PB27m6ewGkDEGUICEYjv"},{"infoSlide":"","link":"","language":"English","division":"","tournamentID":"WuHMyE7RKYgEDPOjOxp6","round":"Open_Semi","topic":{},"content":"THW abolish private property.","id":"PBbqAeXqmacqGxuxJ8c2"},{"division":"","link":"","round":"Open_Semis","language":"English","topic":{},"tournamentID":"Wn4nk4Gju7tmDZTbrogC","content":"TH supports the inclusion of FARC as a political party in Colombian elections.","infoSlide":"","id":"PBpkOrHlXrnJK0HNlmjV"},{"infoSlide":"","tournamentID":"BtqBGdAUsTtPKorZOcBX","round":"6","link":"","division":"","content":"TH applauds the rise of songs by female pop artists that glorify assertive female sexuality. For example: Nothing on, I strut around; I do it big, I shut it down; I wonder if you’ll be able to handle me; Rita Ora – R.I.P.","topic":{},"language":"English","id":"PDQOV1OKYDCXNJKJy7zK"},{"round":"3","division":"","tournamentID":"lmRNEraLEkD31bc6Nbnn","language":"English","content":"In the event that current talks produce a compromise Brexit deal, this house would put it to a referendum, with “remain” as the alternative.","infoSlide":"","link":"","topic":{},"id":"PDV9FuZd1J2KNXpHcXMn"},{"content":"It is 1952. Should the Bundersrepublik Deutschland agree to the Stalin-Note?.","topic":{},"link":"","tournamentID":"wYhrxey2tVddZfEkGSYA","division":"","infoSlide":"","round":"4","language":"English","id":"PEJXMtTzNEMuUO1axyuK"},{"language":"Vietnamese","content":"Chúng tôi tin rằng việc có các ngôi sao thể thao gây hại nhiều hơn lợi cho đội chơi.","topic":{"sports":{"check":true,"title":"Sports"}},"link":"","division":"","round":"","infoSlide":"","tournamentID":"nALUKfkpmOnWnQCzecru","id":"PF71c6OFNQuTiTctXzhH"},{"topic":{},"infoSlide":"","language":"English","tournamentID":"bxhnmh9CZq21XJcRU2BX","link":"","division":"","round":"Open_Semis","content":"This house believes that we should recognise a right to be free from intentionally offensive speech.","id":"PFnYcVpGRlFgNuCdBdRH"},{"language":"English","round":"ESL_Semis","topic":{},"link":"","infoSlide":"","division":"","tournamentID":"aVcqgGmAccQ09iBh9iS1","content":"THBT the LBGT movement should not support Gay Pride marches.","id":"PFqOqOQ4Tu8IucOHUckp"},{"division":"","tournamentID":"jkJhYCzI3XvX3Zgm0Ivc","round":"Novice_Final","language":"English","link":"","content":"TH, as a wealthy individual, would use that wealth to become a vigilante (e.g. Batman) in areas of high crime and a corrupt police force (e.g. Mexico City).","infoSlide":"","topic":{},"id":"PGQdUL9qCnqUqtPNWo2Y"},{"infoSlide":"","tournamentID":"K6vtfx7dBNzsAtTkNiF1","division":"","topic":{},"language":"English","round":"Open_Quarter","content":"This House believes that the protections of international law conventions and treaties should not apply to combatants from terrorist organisations (e.g. prohibition on torture, prisoner of war status, guarantee of post-conflict release).","link":"","id":"PGQpcysjrjlltc8nlpGP"},{"topic":{},"language":"English","infoSlide":"","tournamentID":"zngB1WF8viOW2uGu6swZ","link":"","content":"THBT when doctors discover a patient has STDs, they should reveal that info to the patient’s partner.","division":"","round":"EFL_Semis","id":"PGzD2kJ3y7R125P4gTz2"},{"topic":{},"language":"English","infoSlide":"","content":"THBT supporters of Medicare For All should advocate for the abolition of private insurance.","tournamentID":"py2YomguZSylDKYhWlhK","link":"","division":"","round":"Open_Semi","id":"PHINihEesCnnB52HbPgO"},{"division":"","link":"","topic":{},"tournamentID":"0DgXee32WEP3hxmGZExS","round":"32","content":"THW Allow People To Sell Their Organs.","infoSlide":"","language":"English","id":"PHN04RBzLqu5h6FmTbAP"},{"language":"English","round":"2","content":"THBT India should abandon the Make in India policy.","infoSlide":"","tournamentID":"DWR60IgakRS9N3GeNemc","division":"","topic":{},"link":"","id":"PHwzg4ycm5y07eD7ICH3"},{"link":"","language":"English","round":"3","infoSlide":"","tournamentID":"9jfZRYzidDD9sleXlrNL","topic":{},"division":"","content":"THS eco-terrorism.","id":"PIbNMD8TvPAJRjdJsuSI"},{"language":"English","tournamentID":"khQAvAFibcPAXBKfxTNY","content":"THW impose a quota ensuring that more than half of the London Metropolitan Police Service, across all ranks, is composed of people from ethnic minorities.","topic":{},"round":"3","infoSlide":"","division":"","link":"","id":"PJ3F7NOkQwHPTDuts1Ku"},{"language":"English","topic":{},"content":"THS affirmative action for male educators.","link":"","division":"","round":"2","infoSlide":"","tournamentID":"PRCVo2dP9UPdRU9tVW31","id":"PJv5Y7YmwtMCFffRFsnQ"},{"topic":{},"division":"","content":"THBT immigration from developing countries should be made illegal.","infoSlide":"","tournamentID":"mk4ycJh6yz0VDCnkysot","round":"2","link":"","language":"English","id":"PK5mIjFdvi6VPZWMQyES"},{"round":"3","link":"","tournamentID":"1aLx5bJZiwmW3mkmtmNO","language":"English","topic":{},"infoSlide":"","content":"TH would allow teacher unions to veto education policy that is not linked to pay and benefits.","division":"","id":"PK6apHmPnlcvLMWqtZaP"},{"tournamentID":"gsX4dlvvsr6lcKP3eM2T","language":"English","link":"","content":"This House would allow the use of torture.","round":"1","topic":{},"division":"","infoSlide":"","id":"PKg3hNrophjtdNX1TDqH"},{"language":"English","round":"Open_Final","infoSlide":"","topic":{},"division":"","link":"","tournamentID":"m2emSLcIwdpH2tsVpRhp","content":"THO Arab nationalism.","id":"PKuI99X19id392n9NCNp"},{"infoSlide":"","division":"","round":"Open_Semis","language":"English","link":"","topic":{},"tournamentID":"SjQ6g8g2URks9WV96X0G","content":"THBT the ICC should hire mercenaries to capture indicted individuals and put them on trial at The Hague.","id":"PLQpPzCfR6Zf42jLwXAU"},{"link":"","division":"","round":"1","infoSlide":"","topic":{},"content":"As feminists, this house supports all forms of self-commodification of one's sex appeal, escorting, sugardaddying / mommying, and starring in porn videos.","tournamentID":"L0ovxzciizWhfK3fHJU8","language":"English","id":"PLTSuR9VkVP73XN772vq"},{"round":"Open_Final","topic":{},"infoSlide":"","content":"THBT Western nations should not attend sporting events in countries with bad human rights records.","language":"English","division":"","tournamentID":"sgkzjS4WeJfa3Df1l3zo","link":"","id":"PM78UG6W9IqM48OlAkBc"},{"infoSlide":"","link":"","language":"English","round":"4","topic":{},"tournamentID":"xwOMY1HAkkxJbFVQIUFJ","division":"","content":"THW grant all nation states the right to veto any transfer, out of their country, of art which is deemed to be cultural heritage.","id":"PMFvIXE2YWoUhavsOrwB"},{"infoSlide":"","link":"","tournamentID":"mf3XudZleydnsr0lEvkg","round":"1","division":"","content":"This House Regrets the tradition of parents not living with and being cared for by their children in old age.","topic":{},"language":"English","id":"PMVykUi5ucZsqZoG2RDD"},{"tournamentID":"yDUOVgl6qLMa2DH8lCD5","round":"2","topic":{},"content":"THBT Western states should permanently revoke the citizenship of citizens who join terrorist organisations.","division":"","infoSlide":"","link":"","language":"English","id":"PN58yntM9CKxMLySvik5"},{"link":"","content":"THW legalize all drugs.","division":"","infoSlide":"","round":"4","language":"English","tournamentID":"aT0uKXAE6J8EslDVKzO1","topic":{},"id":"PNy2Lm0Ei4YaGDBTrOaf"},{"content":"A ‘sham marriage’ (also known as xinghun or co-operative marriage) is a marriage between a gay man and a lesbian woman for the purposes of creating the appearance of being straight and evading the social stigmas of being gay or being ‘left on the shelf’. They are particularly common in China. That, as a homosexual person in China, would enter into a sham marriage.","round":"Open_Quarters","infoSlide":"","link":"","topic":{},"language":"English","tournamentID":"HjQJA65fZ9igHKO8DLAP","division":"","id":"PO1nkNcwrJo9WIdx2KKE"},{"link":"","language":"English","tournamentID":"zppT86F7lAE0Gpp7tWYo","infoSlide":"","round":"D4","topic":{},"content":"THBT peace depends on fear.","division":"","id":"POATVRgefgVEup2rYV4v"},{"division":"","topic":{},"round":"5","tournamentID":"m9Mkt1xdSA1jDsNN4zgu","content":"THW allow countries to pay other countries to settle refugees who reach their borders.","infoSlide":"","link":"","language":"English","id":"POreXs8atfClHoocA3Jy"},{"link":"","infoSlide":"","division":"","round":"1","content":"THW allow legislation through voter initiated referenda.","language":"English","topic":{},"tournamentID":"wZYAoJ8UubcT3x3E0CVj","id":"POsgBbvZgCmozyu7X1tV"},{"infoSlide":"","tournamentID":"dL45ZXh9u0IhHmAuaa0r","content":"THW abandon the search for extraterrestrial life.","language":"English","topic":{},"link":"","round":"2","division":"","id":"PQMpYYGpOQsZSoprwTqo"},{"language":"English","content":"THBT the environmental movement should adopt the message of Eco optimism rather than pessimism.","division":"","link":"","tournamentID":"g7nlvxejABAgCXhGkJg8","topic":{},"round":"4","infoSlide":"Eco optimism focuses the messaging of the environmental movement around its success stories, and minimizes the use of doom and gloom figures.","id":"PR5HfpPsqdgPkpsMqNjn"},{"division":"","round":"Open_Quarters","language":"English","tournamentID":"1MV3spmbrmWLKhisZDU8","content":"This House Would impose heavy penalties on planned obsolescence.","infoSlide":"","topic":{},"link":"","id":"PR5iTlhoXdatHjR6kAd2"},{"infoSlide":"","language":"English","topic":{},"division":"","round":"3","link":"","content":"THW allow assisted suicide for terminally ill children with the consent of their parents.","tournamentID":"aC5itVCb0EApgG8DEaqA","id":"PRY91ncwGWhbY9EYC5Zp"},{"infoSlide":"","link":"","division":"","content":"THBT citizens have no moral obligation to obey laws which they personally believe may be unjust.","tournamentID":"Er03o2M51g3s6dYyUHHm","topic":{},"round":"1","language":"English","id":"PRyY3aoiSbO6bqNw9WBU"},{"tournamentID":"tkDLesahiehQ4Nqbr4eC","content":"Chúng tôi phản đối hệ tư tưởng chủ nghĩa toàn cầu.","division":"","infoSlide":"","topic":{"irw":{"check":true,"title":"International Relations/War"}},"link":"","round":"","language":"Vietnamese","id":"PSBW2EQ93rebSfhY5R07"},{"infoSlide":"","link":"","language":"English","round":"9","tournamentID":"DSFg77BvC9y4FK5pBVIv","content":"THB politicians should have a sense of humor.","division":"","topic":{},"id":"PShXs68Nd1zXfqjXmXLn"},{"division":"","tournamentID":"kpTzHelXPi3MmxVjSizP","language":"English","link":"","infoSlide":"","round":"3","topic":{},"content":"THBT feminist political activists should form a separate political party based on feminist ideology, rather than joining existing parties.","id":"PTVDlQR4p8OAbfib9uYC"},{"division":"","infoSlide":"","round":"5","tournamentID":"hUGuNPuqow1Qx4Z2fgOz","language":"English","content":"TH supports the radical redistribution of wealth.","topic":{},"link":"","id":"PTcRhhcI4b1VlSlnatGO"},{"content":"TH would implement the death penalty for crimes against humanity.","tournamentID":"o60DawGVHvdGOC58c4vF","round":"5","language":"English","topic":{},"link":"","infoSlide":"","division":"","id":"PToxhtZKPbPqKgqV0ooC"},{"tournamentID":"bxhnmh9CZq21XJcRU2BX","infoSlide":"","link":"","topic":{},"division":"","content":"This house believes that charities should not accept money from donors they consider immoral.","language":"English","round":"Open_Semis","id":"PTzqAdZkRhJYgQq9ArUk"},{"infoSlide":"","tournamentID":"wdL4H8i9EHTz4mqKuZHP","link":"","topic":{},"content":"This House Believes That feminists should actively adopt stereotypically \"male\" traits (such as being assertive, emotionally distant, \"man-spreading\" etc.).","division":"","round":"2","language":"English","id":"PW39QK1t5wGCFvA4TKky"},{"language":"English","division":"","link":"","topic":{},"tournamentID":"CEIVtMmh2XElfzcXXjzn","content":"Assuming feasibility, THW create a matriarchal state within each nation and allow anyone to move there.","round":"Open_Final","infoSlide":"","id":"PW4aNKEdkj3JeLNG3Hwg"},{"division":"","tournamentID":"70rnu3F4Q3ntkA4t3Wfl","language":"English","link":"","infoSlide":"","content":"THW legally require the consent of artists for the resale and use of their art.","round":"1","topic":{},"id":"PWFyXyq1uL90oA1j2LR5"},{"topic":{},"division":"","link":"","language":"English","content":"This House, as a feminist, would adopt traditionally masculine traits and behaviours.","tournamentID":"jpLuasMJYB40s1bJk2Ia","infoSlide":"","round":"ESL_Final","id":"PWOHUkIEhyJd1dXTlvS3"},{"topic":{},"language":"English","link":"","content":"TH prefers a world in which the Resident Evil machine exists.","round":"EFL Semifinals","tournamentID":"uJGjvsaThnluwVzoHFXm","division":"","infoSlide":"Resident Evil is a VR machine. It leads its user through a set of scenarios aimed at testing whether the user would diverge from universal moral norms. These norms could include not killing, not stealing, not betraying others, or similar. While connected, the simulated scenarios feel completely real to the user. All adults are tested on Resident Evil and their results are publicly available.","id":"PWRJ2D5NIsBbLkx9SgTV"},{"topic":{},"language":"English","tournamentID":"4gQdvZTMKBCThKxmhfmU","infoSlide":"","division":"","round":"8","link":"","content":"THW use military force to deliver aid in humanitarian crises.","id":"PX5Yl9Dn1kn9egtKWLjN"},{"language":"English","division":"","topic":{},"round":"1b","tournamentID":"Pt1Z2dTdUinRviVucbZA","content":"That, as a competitive and socially conscious young Pokémon trainer, we would not participate in Pokémon battles.","infoSlide":"","link":"","id":"PX7IQGf4yQdxxYAyz7pv"},{"content":"THW remove the right to religious freedom from the constitution.","topic":{},"round":"3","language":"English","infoSlide":"","link":"","division":"","tournamentID":"TjdO3rhaUn53D48P0jlp","id":"PXwAHo79Pca9ADwH9EZx"},{"division":"","language":"English","topic":{},"infoSlide":"","round":"2","tournamentID":"KErVXbqRahyWD7ZB1Q1m","link":"","content":"TH supports unmanned aerial vehicles in warfare.","id":"PYDCM9IRvFh8e7bAfpEd"},{"language":"English","infoSlide":"","round":"3","content":"This house would globally create a tax on financial transactions.","link":"","tournamentID":"XryJ0KVA6GiVngJthv3K","topic":{},"division":"","id":"PYUBOkfkBIhwzDNfTi4E"},{"round":"PDOs - Motion 2","link":"","infoSlide":"","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"language":"English","content":"Chúng tôi tin rằng các tổ chức quốc tế lớn (như Liên Hợp Quốc & Ngân hàng Thế giới) chỉ nên chấp nhận các đại biểu quốc gia nữ.","division":"","id":"PYbg7KmkxOxAFwE5tBAK"},{"language":"English","round":"Open_Final","tournamentID":"0bpNzjTgN71TZQEkHTak","division":"","topic":{},"content":"THW not allow religious communities to expel members on the basis of views or actions that contradict doctrinal teachings.","link":"","infoSlide":"","id":"PYvppG5g6yHMuxDmbxWK"},{"infoSlide":"","content":"This House would rather be a part of the \"Club 27\" than live an average anonymous life.","round":"Open_Semis","language":"English","division":"","topic":{},"tournamentID":"6UClYEkoQLViAru2xei4","link":"","id":"PZ0QjuC5oxspGSDvtU54"},{"content":"THO the rise of entrepreneurs selling off their businesses to large corporations.","division":"","topic":{},"tournamentID":"H2Xg2NvZoEwZtgc8tzmz","infoSlide":"","round":"4","link":"","language":"English","id":"PZEmawvuJoqvoOaWQqaB"},{"link":"","infoSlide":"","language":"English","content":"For nonviolent infractions (e.g. failure to pay tax or debts, possession of illict substances), THP an individual social credit system over incarceration.","tournamentID":"H6MeeIis6pg2gQbgEyuB","round":"2","division":"","topic":{},"id":"PZILoCrfM6hIirb6Prcd"},{"language":"English","tournamentID":"CbtTNoNzLTvfNvRWmMc2","division":"","link":"","content":"We believe that African countries should accept a \"re-borrow\" of antiques instead of fighting for the return of them.","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"infoSlide":"","round":"","id":"PZTiUfZwQwrRiJsigziu"},{"round":"2","link":"","tournamentID":"xDKR551AqNCcautWV6YI","division":"","topic":{},"content":"THW ban circumcision of minors.","infoSlide":"","language":"English","id":"PZXF5aHBYNP5eEMEV3vW"},{"language":"English","division":"","round":"Open_Final","content":"THBT South Africa should ban apartheid symbols and flags, along with those of other oppressive regimes.","topic":{},"infoSlide":"","tournamentID":"IgBrZRMArYLwB0oVtcRa","link":"","id":"Pa3r6U4Gw9g7buDT3iP2"},{"round":"3","tournamentID":"axWwnyCM8L14pVHljukt","link":"","content":"THBT government must grant economic compensation to those unemployed by the automation of their work.","infoSlide":"","division":"","topic":{},"language":"English","id":"PaQU9WLKa69sOyOSvbOl"},{"link":"","language":"English","tournamentID":"kaKFVFzhrgSOIPlruLU6","round":"3","division":"","content":"THS the decline of American influence in East Asia.","infoSlide":"","topic":{},"id":"PalYXbgvNfWd5Yv9V48M"},{"division":"","tournamentID":"2C0TX71TRjIIOcsN7CbL","round":"1","topic":{},"content":"This House would not allow serving politicians or their immediate families to use private services where public ones are available (i.e. education, healthcare).","infoSlide":"","language":"English","link":"","id":"Pb7MoDTs8Ohfnc8xVMFv"},{"round":"Open_Semis","language":"English","content":"TH supports the full separation of religious and political activities in Muslim-majority States.","division":"","infoSlide":"","link":"","tournamentID":"Mp1zDBiaN3PYnRnjPVIk","topic":{},"id":"Pc6tbQ9i751ApGltGW5U"},{"infoSlide":"","topic":{},"link":"","round":"Open_Final","tournamentID":"QVeTcZONRdDbH5LSNeSf","content":"THW suspend elections in countries with very high levels of government debt.","language":"English","division":"","id":"PcCHKr1TCJO6lGouQblv"},{"round":"ESL_Final","language":"English","infoSlide":"","topic":{},"division":"","link":"","tournamentID":"EP5HDm4G3OfMlciId6YM","content":"In the lead up to the 1994 negotiated settlement in South Africa, this house believes that the ANC should have demanded further concessions (e.g. removing the amnesty provision in the TRC, greater land and economic rights) even at the expense of prolonging the conflict.","id":"Pcl4OChDHx60dTWv52Ex"},{"tournamentID":"BhBkit7bGTegIhEEknJU","language":"English","division":"","infoSlide":"","content":"THW assess pupils on individual academic development instead of standardized examination results.","link":"","topic":{},"round":"2","id":"PdWBBl4aNhnHExPbDoAz"},{"round":"9","infoSlide":"","topic":{},"division":"","tournamentID":"6KzwZLwpFJv7ICEsknpO","link":"","content":"This house supports the creation and use of Lethal Autonomous Robots (Lethal Autonomous Robots are fully autonomous military weapons that can select and engage targets without human intervention).","language":"English","id":"Pdtkg3MdAvSInH6rhKWk"},{"content":"THW break up Disney.","division":"","infoSlide":"","tournamentID":"YbdPFTE9FbO3iQjZo87D","language":"English","topic":{},"round":"6","link":"","id":"PecJ2GB0SPoZFJhiZLaH"},{"content":"THBT NZ should return to First Past the Post (FPP).","infoSlide":"","link":"","topic":{},"tournamentID":"tKXlShZl2vec49jC1bif","division":"","language":"English","round":"Open_Final","id":"PeohSPkVqyQF4iUAImuS"},{"tournamentID":"jQjuYOl7gbKBTiUrvWM2","round":"3","topic":{},"language":"English","division":"","link":"","infoSlide":"","content":"THW abolish and ban all agricultural subsidies in the European Union.","id":"PezGrwrNKHxLVsL2egxJ"},{"language":"English","infoSlide":"","topic":{},"round":"1","content":"THW allow family members to forcibly commit proven alcoholics and drug addicts to rehabilitation clinics.","link":"","tournamentID":"7xqpYA72Sruch4lr5Uzj","division":"","id":"Pfgu6hlvXvrkRbm47yYf"},{"infoSlide":"Sex Education là bộ phim về giáo dục giới tính, chủ yếu dựa trên nền tảng quan niệm tình dục phóng khoáng của phương Tây.","content":"Chúng tôi, với tư cách bố mẹ tại các quốc gia châu Á, sẽ phản đối bộ phim Sex Education.","division":"","tournamentID":"FiF24Yc0spiBkvTxiYwD","language":"Vietnamese","link":"","round":"1","topic":{},"id":"PgGXx3cON1JsWPjYs5p6"},{"round":"2","division":"","language":"English","content":"THW ban all media (such as music, films and video games) which glorify misogyny.","topic":{},"infoSlide":"","link":"","tournamentID":"kDr04nbGJ33SICZ9XUHJ","id":"Pgb0n6Vdva1JJLfdTPA0"},{"tournamentID":"hrSRQu49cq5gHsXJLBgQ","division":"","language":"English","link":"","round":"5","topic":{},"content":"TH, as a prominent African-American group, would seek to create autonomous spaces of politics, economics etc. rather than integrating with American society.","infoSlide":"","id":"Ph66SwKmPuPupdUaFFwP"},{"topic":{},"tournamentID":"5mJg23unORtxSJCvBzd9","round":"Open_Final","content":"Should journalists be banned from participating actively (as speakers or writers) in political or scientific events?.","infoSlide":"","division":"","link":"","language":"English","id":"PhX2z2fWuWKGklmyviYT"},{"content":"THBT comedians should not use racist, sexist, or homophobic language, even for the purposes of satire.","topic":{},"tournamentID":"exPe8nnWDA3806gTTyfK","infoSlide":"","round":"3","link":"","language":"English","division":"","id":"PhdNGOtznjReKcJjP5Ii"},{"content":"TH opposes the Black Lives Matters' endorsement of BDS.\".","topic":{},"round":"4","division":"","link":"","language":"English","infoSlide":"","tournamentID":"hfhyqiLO3boM6Fbp0Jvs","id":"PhiGzT0iwgg8EZ0QBK5S"},{"infoSlide":"","tournamentID":"oeH2vC3Ht09TthfmAx2F","language":"English","link":"","topic":{},"content":"THBT political parties should be subject to anti-monopoly laws.","division":"","round":"Open_Final","id":"PhycQJA6cHhLNnZcWLFy"},{"link":"","topic":{},"infoSlide":"","round":"2","language":"English","tournamentID":"7zFzGfa6wAGs2h8bbVhq","content":"THBT Israel should unilaterally preemptively strike Iran.","division":"","id":"PjBLm1Z8AMXXKOUeb1jS"},{"topic":{},"tournamentID":"zNyImaL5diiDsd93AVoW","content":"THBT military conscription should be regarded as a war crime.","infoSlide":"","division":"","link":"","language":"English","round":"Open_Final","id":"PjakGLQ5JQiW3zXax8n6"},{"tournamentID":"b9wXoxHWMOjvJu54cv9Q","division":"","language":"English","topic":{},"infoSlide":"","content":"THW prosecute violent fouls as criminal assault.","link":"","round":"3","id":"Pk2LL1sxxwKuZb7xJEMy"},{"link":"","round":"3","division":"","topic":{},"content":"THW create a scheme to aggressively encourage university graduates to marry and reproduce.","language":"English","tournamentID":"dxiwBIWlq2trjdp62R0U","infoSlide":"","id":"PkJmQsHg1jmFHHqUnE8P"},{"tournamentID":"wL3wAKRctC8syY2eg8t3","link":"","round":"Novice_Final","topic":{},"content":"THR society's focus on the perspectives of mass murderers.","infoSlide":"","language":"English","division":"","id":"PkPgStck7D1fzDIHJDKj"},{"round":"4","division":"","tournamentID":"Wpv6iXJkIPUXYIkl0dST","language":"Vietnamese","link":"","infoSlide":"","topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"}},"content":"Chúng tôi tin rằng các nhà nữ quyền nên phản đối chủ nghĩa quân phiệt thay vì đấu tranh cho 'quyền chiến đấu' (ví dụ như thúc đẩy việc bao gồm phụ nữ trong quá trình ghi danh quân dịch quốc gia và nghĩa vụ chiến đấu).","id":"Pl0GFmTVIK45HK8sEhE3"},{"topic":{},"infoSlide":"","tournamentID":"XL594Q2oZbvHmfmYKFvT","content":"That no media platform should receive public funding.","division":"","language":"English","link":"","round":"Open_Semi","id":"Pm5CiFC5G7wqeBzuPpaL"},{"link":"","round":"3","content":"THB The state should financially support newspapers.","language":"English","division":"","topic":{},"infoSlide":"","tournamentID":"0DgXee32WEP3hxmGZExS","id":"PmDqUCdSnVK0QdNN5ZAD"},{"topic":{},"content":"THW legalise squatting.","round":"1","language":"English","division":"","tournamentID":"DvsGvQWaYzshd3lSsDGu","infoSlide":"","link":"","id":"PmMcM6RgWsuJETEN9WFD"},{"tournamentID":"5Qomv7BFHTKmY4PchwDr","topic":{},"content":"That it is morally wrong to use subconscious manipulation to nudge citizens towards socially desirable choices.","round":"EFL_Final","language":"English","infoSlide":"","link":"","division":"","id":"Pn4ph5UGHo5J5gQd7UtM"},{"link":"","division":"","language":"English","content":"THW establish and subsidize gender minority divisions in competitive gaming.","topic":{},"infoSlide":"Competitive gaming (e-sports) is where professional players of multiplayer video games compete for prizes as competitors would in physical Olympics. Currently, competitive gaming, participated and watched mostly by male gamers, only has age/experience-based categories (junior leagues, novice championship, etc.) and does not have any specific gender categories/divisions.","tournamentID":"1dwGdjAn9pODo8bQfmJW","round":"1","id":"PnIVcCdZJABuxOlsr4XB"},{"tournamentID":"KE7jdAyW9az9nKVb9FMV","infoSlide":"","round":"","link":"","language":"English","content":"THB that Asian educational system should promote the opinion that Asian culture is better than Western culture.","topic":{"education":{"check":true,"title":"Education"}},"division":"","id":"Pnd4FYrcP5l9dWoThaqm"},{"round":"Open_Final","language":"English","content":"THO the commercialization of competitive debating (such as for profit debate training, paid workshops, paying IAs a salary, paying pros to speak with wealthy beginners, etc).","tournamentID":"3NTAi2gNk5Uyy3NuACO5","link":"","infoSlide":"","division":"","topic":{},"id":"Pnku2bWI5adgou1xmBPP"},{"infoSlide":"","link":"","round":"2","language":"English","topic":{},"content":"That the #MeToo movement has failed working class women.","tournamentID":"5Qomv7BFHTKmY4PchwDr","division":"","id":"PntuDoKGNjXBTQ1nAquV"},{"division":"","round":"Open_Final","topic":{},"infoSlide":"","link":"","language":"English","tournamentID":"BXqPhfwak2R1kYHV48bp","content":"THBT FB should manipulate users’ newsfeeds in order to promote progressive content.","id":"Pnw2nFSyIjDszMsWjiH9"},{"topic":{},"infoSlide":"","link":"","language":"English","tournamentID":"368JyxQNhxMm3WEWlba7","round":"3","content":"THBT the LGBTQ lobby should make up evidence that prominent anti-LGBTQ rights campaigners are, themselves LGBTQ.","division":"","id":"PoVwyMvHOS8mFsiGAx7a"},{"language":"English","infoSlide":"","link":"","topic":{},"content":"TH, as the Nicaraguan people, opposes the construction of the Nicaraguan Canal.","round":"Open_Semis","tournamentID":"sA03ySqGdgfByNOTfDfC","division":"","id":"PpSoyp1sqTmdJF0AtThf"},{"division":"","infoSlide":"","tournamentID":"7xqpYA72Sruch4lr5Uzj","content":"THBT feminism should not campaign against polygamy in poor countries.","topic":{},"link":"","language":"English","round":"5","id":"PqbruqYAo2XYj30GZmGI"},{"round":"1","division":"","tournamentID":"9MaCpfb2p23wkk8OOSBf","topic":{},"content":"THP a world in which social media platforms use paid subscriptions rather than collect and monetize users' data.","link":"","infoSlide":"","language":"English","id":"PqgXBG5HsAG5u2R8nCAb"},{"language":"English","content":"Assuming feasibility, in countries with conscription, This House Would forcibly delete all soldiers' memories of combat situations upon their discharge.","topic":{},"round":"6","division":"","link":"","infoSlide":"","tournamentID":"MKOx1AvBmfWL7cHrRXg2","id":"PqtrYMWP5oExIxexme4i"},{"round":"Semifinals","division":"","infoSlide":"","topic":{},"content":"Chúng tôi lấy làm tiếc việc sử dụng tôn giáo làm chất liệu cho thị trường văn hóa.","language":"Vietnamese","link":"","tournamentID":"SE4KfMNAU58WSM6yajEF","id":"Pr4mEfXAX0yTplAWlqPB"},{"content":"THW institute a negative basic income - Round 2.","language":"English","tournamentID":"Ryhdb4JOJYP96e5oa49b","topic":{},"link":"","division":"","round":"2","infoSlide":"","id":"PrACcvcBHkbHJZNOsG1K"},{"content":"THBT it is in the interests of organized religions to adopt the \"rigorous mission scheme\".","division":"","round":"5","link":"","infoSlide":"","language":"English","tournamentID":"3NTAi2gNk5Uyy3NuACO5","topic":{},"id":"PrRSHWRYdJZbJo0TB137"},{"content":"A zombie infection has broken out, THBT it is morally legitimate to kill uninfected humans to increase your own chances of survival.","division":"","topic":{},"language":"English","tournamentID":"GfEZYNzXPpqDU3CX6qxi","link":"","infoSlide":"","round":"Open_Final","id":"PreGnjMEMPlWJmDSIaKd"},{"topic":{},"content":"THW create country quotas for the acceptance of refugees and allow for trade of these obligations.","round":"Open_Semis","language":"English","infoSlide":"","link":"","tournamentID":"B63fWPacAJNcBJdaEpVz","division":"","id":"PsWVxnvzYenboBonOjRh"},{"round":"4","language":"English","tournamentID":"yZaksTbsPteB6mPHwkvl","infoSlide":"","topic":{},"division":"","link":"","content":"The year is 2020 and in the UK a second referendum on Brexit has reversed the original decision. TH, as the EU, W not allow the UK to cancel Brexit.","id":"PsgW2Rh24RgUPEiBTzmo"},{"topic":{},"division":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","infoSlide":"","link":"","content":"That we regret narratives that portray human progress as inevitable.","round":"Open_Semi","language":"English","id":"Pun70k0s1W60R2iWY6uY"},{"link":"","infoSlide":"","tournamentID":"GnB4dJJK9KmnatnkLGmS","content":"TH, which is Mabel Wisse Smit (of Orange), would end the life of Prince Friso.","round":"2","language":"English","division":"","topic":{},"id":"PutwBEr8qyFOm7S5bvCE"},{"content":"THS filial responsibility laws.","division":"","round":"7","language":"English","infoSlide":"","link":"","tournamentID":"NtnveNmZosTMD9TU0qA8","topic":{},"id":"PuwHmFfpjxG9Ns7GYFrz"},{"infoSlide":"","division":"","round":"7","link":"","topic":{},"language":"English","tournamentID":"IpWyfCcksctR86jKX66g","content":"THW Require the Military to Recruit Soldiers in Direct Proportion to the Socio-Economic Make-up of the Country.","id":"Pv28tsvMsiY7knXtA3Ja"},{"topic":{},"language":"English","round":"4","content":"THW Introduce an Excise Tax on Tabloids to Finance a Subsidy of Broadsheet.","link":"","infoSlide":"","tournamentID":"qLVUbjlIT84ro50ixBwk","division":"","id":"PvCMda71tvK6z1wQGV2r"},{"content":"THP a world where Karmic reincarnation exists.","infoSlide":"","link":"","language":"English","tournamentID":"DIDaTQVu3sv4iXbqf3eE","round":"Open_Final","topic":{},"division":"","id":"Pw1EXtbwIxHOTiHhnsYS"},{"language":"English","topic":{},"infoSlide":"","division":"","tournamentID":"0anPdjjejinL3DGvB4L1","round":"Open_Final","content":"TH, as the researchers, would have eaten the crops during the siege.","link":"","id":"PwfajAbWv92VpJ2W9050"},{"language":"English","tournamentID":"1lhrrHzfpU4TfWb63MLz","link":"","infoSlide":"","division":"","round":"2","content":"Should the water supply be nationalised all over Europe?.","topic":{},"id":"Pwl88wMNJdRd7ridh2Xy"},{"round":"3","infoSlide":"","language":"English","content":"THBT Putin’s conduct of the Crimea crisis was in Russia’s strategic interest.","topic":{},"division":"","tournamentID":"VAfi19aZTAIKaUuELBL1","link":"","id":"Pwme8Gf8AY9UyYFgKHEl"},{"link":"","topic":{},"language":"English","tournamentID":"miNjiX9yX5Oq25V4yWeo","round":"5","infoSlide":"","content":"THBT it is legitimate for politicians to lie to the electorate about their real views.","division":"","id":"Pxe5GDUyqTT6tDm6StCW"},{"topic":{},"tournamentID":"HjQJA65fZ9igHKO8DLAP","language":"English","division":"","content":"As a curator of a prominent museum or gallery, you should only display works created by women.","infoSlide":"","round":"Open_Quarters","link":"","id":"PxtSX0ae8QzDryfJGFuj"},{"infoSlide":"","round":"3","topic":{},"link":"","language":"Vietnamese","tournamentID":"uqR5rN63m5rX9CiOtJjb","division":"","content":"Chúng tôi tin rằng các doanh nhân xã hội nên loại bỏ lợi nhuận làm tích lũy cá nhân.","id":"Py5THb8kaOLliQAiLUJt"},{"topic":{},"tournamentID":"WqXUc7EMDvkqqg3BVCtf","link":"","division":"","content":"TH believes that it is legitimate for individuals to punish people they deem to have committed online harassment by revealing their identity online.","language":"English","round":"8","infoSlide":"","id":"Py7iUsAodmJEsA9mwjcn"},{"link":"","topic":{},"tournamentID":"9hmPqfKzlDmhAISeJsts","round":"2","infoSlide":"","content":"thbt countries should implement strong worker protection laws even at the cost of economic growth (ie, collective bargaining, overtime hours, worker compensation, etc).","language":"English","division":"","id":"PyX8nRBkqv5VnRK4VTHv"},{"link":"","topic":{},"tournamentID":"2iPGMwcaQqidqlVq1gzJ","infoSlide":"","language":"English","round":"1","division":"","content":"THW make people pay for private car ownership (not exact wording).","id":"PyacwAntPH8YsUxgh9Cv"},{"link":"","round":"Novice_Final","infoSlide":"","topic":{},"division":"","language":"English","tournamentID":"x0AmWHi8lm3JhQyyhsfo","content":"THBT Schools should raise the expectations of children beyond what they can realistically achieve.","id":"Pyjl7qimhZTtB38BYIAl"},{"content":"THW include paintings by Wolfgang Beltracchis in the collectinos of leading German art museums.","division":"","topic":{},"round":"3","infoSlide":"","link":"","tournamentID":"1WET2zUA9uN6rpHTGR8k","language":"English","id":"Pz2noZwGSdtvswIks1xr"},{"tournamentID":"ZKj5YfRQe4wJF8bx4fLp","content":"\\ This house believes that the Palestinians should give up the Right of Return.","language":"English","division":"","infoSlide":"","topic":{},"link":"","round":"6","id":"PzbKUANBUTQ5JfsOqPgx"},{"division":"","tournamentID":"48Ba3dAlJxoct1Z9f7GA","language":"English","link":"","infoSlide":"","round":"4","topic":{},"content":"THW nationalise social media.","id":"Q04ruCK9grpq9aqN1ENJ"},{"content":"THBT humanitarian organisations should, and should be allowed to, give funding, resources or services to illegal armed groups when this is made a condition for access to vulnerable civilians.","topic":{},"round":"Open_Final","link":"","tournamentID":"q7pvo4zkG31lg89ofmeq","infoSlide":"","language":"English","division":"","id":"Q1hFxA2hZzv9H7KumYxW"},{"tournamentID":"AbrZ6leGJBXAmv4md2Zw","division":"","content":"You are an incredibly respected art critic. You own a private art gallery which the rich, famous, and influential fly from around the world to visit. Recently a photograph has come to prominence among elite art circles, and as a consequence has become incredibly sought after - hailed for its gritty realism. It is a graphic photograph of a woman killed and raped by her husband, taken by police as evidence. You have been offered the original photograph for your collection. This house would refuse.","infoSlide":"","language":"English","topic":{},"link":"","round":"5","id":"Q2MLYyJ7Lq02YnbS74Am"},{"round":"3","language":"English","topic":{},"tournamentID":"DV29K6gIIl6nTiYeWo2j","division":"","content":"Assuming Israel will accept, as Palestinian Authority, This House Would let go of the Gaza Strip in exchange of Palestinian independence in the West Bank.","link":"","infoSlide":"","id":"Q2UaTWDSUv9msjKSHAXq"},{"infoSlide":"","content":"This House regrets the rise of Xi Jinping.","topic":{},"tournamentID":"MIrEXPHnAIOpqQw6kxky","division":"","round":"5","link":"","language":"English","id":"Q3BkK6KZqBK5DaXekldm"},{"topic":{},"infoSlide":"","link":"","round":"7","tournamentID":"0mv3ToZPy0AwAsRnpZBN","division":"","language":"English","content":"This House believes that the NATO Enhanced Forward Presence in Eastern Europe is doing more harm than good.","id":"Q3IFsq4W4czAmXUnxv4Z"},{"content":"THBT literature curriculum at schools should replace classic literature (Tắt đèn, Số đỏ, 1984, Weathering Heights, Crime and Punishment) with popular young adult books (To All the Boys I have Loved Before, The Fault in Our Stars, Twilight Saga).","topic":{"education":{"check":true,"title":"Education"}},"round":"","infoSlide":"","language":"English","link":"","tournamentID":"KE7jdAyW9az9nKVb9FMV","division":"","id":"Q3MUn5SckPIQNyoJkLS3"},{"language":"English","infoSlide":"","division":"","link":"","topic":{},"round":"3","content":"THW apply the technology as an alternative to regular imprisonment.","tournamentID":"44zszGOLcUfUSx7uRJTD","id":"Q3VfhXBoe7mUBDEZkIrE"},{"link":"","division":"","topic":{},"language":"English","tournamentID":"m6JzV67uYJSVBRpAbgL7","content":"In the aftermath of the COVID-19 Outbreak, THBT Western liberal democracies/governments should actively promote the narrative that individuals ought to sacrifice/make sacrifices for the collective community.","round":"2","infoSlide":"","id":"Q3WIjqKjO8i2gkewkk4A"},{"infoSlide":"","link":"","content":"This House Would create an international court to prosecute leaders adopting disastrous economic policies.","language":"English","topic":{},"tournamentID":"YaTXOaEvPKh8XHB3VTBK","division":"","round":"2","id":"Q4nJKQYFWnIQB779Pvu3"},{"tournamentID":"MIEMFyC8nYMlqXU4wtOC","round":"3","infoSlide":"","link":"","topic":{},"language":"English","division":"","content":"THBT Blockchain does more harm than good to developing countries.","id":"Q67MASiIOSLWu8EBC5Vg"},{"topic":{},"division":"","tournamentID":"pgslzxqwnT5Ei6UMGh69","language":"English","infoSlide":"","round":"Novice_Final","link":"","content":"This House Believes That acts of political protest that intentionally result in the death of an individual protester should not be stopped by others (for example: self immolation, in protest of Tibet).","id":"Q6jJCL3MntAYWsZ1onLN"},{"infoSlide":"Bride importing is where a man agrees to pay a woman and sponsor immigration into his country, in exchange for her agreeing to marry him.","topic":{},"language":"English","content":"THW ban the practice of \"importing brides\".","tournamentID":"OyqUfVFCTQ5A8iecmNK1","link":"","division":"","round":"8","id":"Q6tbc9WD5EIicBXx9NdS"},{"topic":{},"tournamentID":"n7qv29PmNuF5SOe42oiz","language":"English","division":"","round":"Open_Semi","infoSlide":"","link":"","content":"That the Bretton Woods institutions (i.e. the International Monetary Fund and the World Bank) have done more harm than good.","id":"Q7g8nUpbhztSFEvgniR0"},{"topic":{},"round":"Open_Quarter","infoSlide":"","division":"","language":"English","content":"THBT governments should require the portfolios of all multinational e-commerce companies (Amazon, Alibaba, Rakuten etc) to constitute of a minimum 50% of local products in value.","link":"","tournamentID":"myGQJSUNqcxcCjm3bONn","id":"Q7gB2M67YmHM6eGE7YMr"},{"round":"5","topic":{},"link":"","content":"This house would allow citizens to vote on individual bills in place of their representative, with the representative retaining the voting power of those of their constituents who did not directly vote on that specific bill.","tournamentID":"vS5BTr7lDW40h5Qw31FI","language":"English","division":"","infoSlide":"","id":"Q7lG5Mu5WjWbDlvXOdrN"},{"infoSlide":"","language":"English","round":"Open_Semis","content":"THW criminalise the use and creation of unauthorised anonymous communication providers and network browsers.","tournamentID":"AKtcioaPMHcBM5C3fCCP","topic":{},"division":"","link":"","id":"Q7wV1MyeMZcgzaVQndKE"},{"topic":{},"infoSlide":"","tournamentID":"zUT5H7Cgh7l0a0sJSIba","link":"","language":"English","content":"THW make the number of votes an individual has inversely proportional to their wealth (i.e. the more wealth an individual has the fewer votes in an election).","division":"","round":"1","id":"Q8sQVi4i3YIhUtrwwDGF"},{"infoSlide":"","link":"","round":"1","content":"THW provide the disabled access to sex workers as part of national health care.","tournamentID":"W8zmuuOkdBsEHQw2r0RP","division":"","language":"English","topic":{},"id":"Q9UXPFKNhQ7I5tKvIynT"},{"link":"","infoSlide":"","content":"THR the continuation of NATO after the dissolution of the USSR.","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"division":"","language":"English","tournamentID":"3b2nSsxJIMIXNPKJTeQx","round":"2","id":"Q9XTuzCUFrCe2MVbz0RG"},{"topic":{},"round":"ESL_Semis","infoSlide":"","content":"THW allow constituents to recall their elected representatives.","tournamentID":"Te8RVa4tAIQJaY0sFp5C","link":"","language":"English","division":"","id":"Q9p0tX6STgHoS0GS87Yf"},{"division":"","topic":{},"link":"","language":"Vietnamese","round":"2","infoSlide":"Iruma là cậu bé 14 tuổi sống trong một gia đình nghèo, không được đi học, phải làm việc cực khổ. Cậu bị bố mẹ mình ký giấy bán cho một ác ma. Cứ ngỡ cuộc đời cậu chấm dứt, nhưng cuộc sống của cậu ở Ma giới lại tốt đẹp hơn với đầy đủ tiện nghi, được đi học đầy đủ, có những người bạn tốt. Cậu chỉ có một nỗi sợ duy nhất là các ác ma khác phát hiện ra cậu là con người và ăn thịt cậu.","content":"Chúng tôi, với tư cách là Iruma, sẽ không quay lại thế giới loài người.","tournamentID":"FiF24Yc0spiBkvTxiYwD","id":"Q9uXGGDodaPZIsbYNivL"},{"tournamentID":"Pt1Z2dTdUinRviVucbZA","topic":{},"content":"Without having regard to future events of the show, That the protagonists of the 100 were wrong to seek to expose the Primes.","infoSlide":"","round":"Open_Final","link":"","language":"English","division":"","id":"QAB5In76GI2zqfGnlo1N"},{"round":"4","link":"","infoSlide":"","topic":{},"content":"THW institute a lottery system whereby Olympic ticket purchasers may be drafted in as athletes.","division":"","tournamentID":"KErVXbqRahyWD7ZB1Q1m","language":"English","id":"QC1PGrNHpDtGPTcUMVN1"},{"tournamentID":"jdV8jBuLPUpb2I5gYBQc","infoSlide":"","division":"","link":"","language":"English","topic":{},"round":"Open_Final","content":"THW Require the Public Registration of All Psychics and the Suppression of their Abilities with Drugs.","id":"QC45ceckCxGwQG0JMKAZ"},{"division":"","tournamentID":"JtHb8gJ24LeJcHq82rm5","infoSlide":"","content":"THBT American political parties should hold their primaries nation-wide on one day.","language":"English","link":"","round":"1","topic":{},"id":"QCt7cBdXGiC9GCQ2HnXU"},{"infoSlide":"","round":"Open_Quarters","tournamentID":"MNBafFvHXt5WwIet1zGa","language":"English","link":"","division":"","content":"This house believes that the southern african development community (SADC) should pursue political union.","topic":{},"id":"QD2FG9YABMMywcyNx3JH"},{"round":"","language":"English","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"infoSlide":"","content":"THBT states should financially compensate victims of serious crimes committed by reoffenders.","link":"","tournamentID":"mNwitMoNsjWupgwG8pR5","division":"","id":"QDAyz99RqpGPLz6f4EIt"},{"topic":{},"link":"","tournamentID":"QjQ9aMJIggiNR9zYImnN","content":"Should media be banned from publishing information about the sexual preferences or orientations of public figures without their consent?.","round":"5","language":"English","infoSlide":"","division":"","id":"QDMvxdBkACJE4ksyB6Xq"},{"language":"English","round":"1","infoSlide":"","link":"","tournamentID":"QVeTcZONRdDbH5LSNeSf","division":"","topic":{},"content":"THW prohibit religious organizations from speaking out against homosexuality.","id":"QDROIDeg3tmMzFO8EISO"},{"language":"English","content":"THBT the education system should promote expectations according to the students’ realistic potential, ability and social status.","division":"","round":"2","tournamentID":"O8PsW6uDBzwzQZ3zO447","topic":{},"infoSlide":"","link":"","id":"QER2bjR2Vj81Pusr0qoK"},{"infoSlide":"","round":"Open_Semi","language":"English","content":"That we regret Netflix remakes of cartoons for adult audiences (eg. Riverdale, Avatar the Last Airbender).","division":"","tournamentID":"Pt1Z2dTdUinRviVucbZA","topic":{},"link":"","id":"QEqcohJIJBvFh5DFZ8jB"},{"content":"THBT Israel should set aside a certain percentage of seats in the Knesset to be elected by diaspora Jews.","topic":{},"round":"5","tournamentID":"7bcIb5yS1YVpFE3hzoDf","link":"","language":"English","infoSlide":"","division":"","id":"QFFlqggpz9B7fGzyV2pD"},{"content":"TH welcomes the proliferation of porn online.","tournamentID":"m357g5mmEMxSAwbDEk5d","link":"","infoSlide":"","round":"1","topic":{},"language":"English","division":"","id":"QFYijJODMtizKM8bLBC4"},{"division":"","link":"","infoSlide":"","topic":{},"language":"English","content":"THBT police officers should pose as children on social networking sites to entrap paedophiles.","tournamentID":"D3NiQxizKJ06MnU4DU06","round":"5","id":"QFhFRbJCMDqcTxQmm2EI"},{"tournamentID":"nALUKfkpmOnWnQCzecru","topic":{"education":{"title":"Education","check":true}},"infoSlide":"","language":"English","link":"","division":"","round":"","content":"THBT college entrance examinations should accept students on the basis of their academic performance in secondary education.","id":"QG7RkHWDHQAGGzdopV6L"},{"topic":{},"infoSlide":"","language":"English","round":"4","content":"THBT school children in the UK should be taught that their country engaged in war crimes.","link":"","division":"","tournamentID":"LH17DUUbXDstAFfMNJyf","id":"QGERroZODz7kOzCXPpqJ"},{"content":"Assuming adequate child support services exist, This house would allow opponents of abortion to sign legally-binding contracts with pregnant women, in which they pay the pregnant women not to have an abortion.","topic":{},"language":"English","round":"1","tournamentID":"rinK386NjH990vvie6wL","division":"","link":"","infoSlide":"","id":"QGYh7JtzK93PLaTYIxvF"},{"language":"English","link":"","tournamentID":"IgBrZRMArYLwB0oVtcRa","topic":{},"content":"THBT leaders of minority religions within Europe should strongly encourage their congregations to refrain from overt public displays of their faith (assuming theologically possible.","round":"3","infoSlide":"","division":"","id":"QGtCkHBIvhCY3cJGN4UD"},{"division":"","link":"","tournamentID":"Hq4qmpVpWAzn16SzuUU8","topic":{},"round":"5","content":"THW grant Maduro and main officials of the Venezuelan regime amnesty in exchange for handing power over to Juan Guadio.","infoSlide":"","language":"English","id":"QGzvSwkWTJ26s959xecd"},{"infoSlide":"","round":"Open_Final","link":"","tournamentID":"g87X9iRsC0CxxtZdAjMP","division":"","language":"English","topic":{},"content":"THW choose to be born in a world without religion.","id":"QHkn9b4nutHDPnUqJnjE"},{"infoSlide":"","language":"English","topic":{},"tournamentID":"v3Bq7DLUeCcPyvQZjJbj","link":"","division":"","content":"THW disestablish all local councils and authorities in developed nations.","round":"5","id":"QIJz0OygQsgG8X9PXQnw"},{"infoSlide":"","language":"English","tournamentID":"OY8sAGz8SAjQpWA2PicY","division":"","topic":{},"round":"Open_Final","link":"","content":"This house believes that the west should forgive debt owed by governments of developing countries.","id":"QIZkkYgJmWuJOGXTo9Em"},{"content":"THW get councils to put out tenders for all NHS services in a local area.","round":"7.3","link":"","division":"","infoSlide":"","tournamentID":"BXqPhfwak2R1kYHV48bp","language":"English","topic":{},"id":"QLAkeV5TXLExAujSzNrt"},{"infoSlide":"","link":"","tournamentID":"v1Vi2iS2rLowvyk3vIMm","division":"","language":"English","content":"THW abolish all immigration restrictions other than those required for national security.","round":"3","topic":{},"id":"QLvRn9dgDL8aNqYwkZXG"},{"round":"4","topic":{},"tournamentID":"3eIqWfLtHDOZRmzJt05T","content":"This House Believes the Eurozone should adopt a policy of fiscal union.","division":"","infoSlide":"","language":"English","link":"","id":"QM4phDO9Uq3xXBeiuhBL"},{"round":"3","content":"In the European Union, asylum seekers can only apply for asylum in the country they first enter. They cannot reapply nor be reallocated to another EU country. Motion: THBT the EU should divide up asylum seekers amongst its member states proportional to member states' GDP per cap.","tournamentID":"XBBB3MfIKpYpUaioBlLB","topic":{},"infoSlide":"","division":"","link":"","language":"English","id":"QMUWFcoTscdm4rKbgSsU"},{"language":"English","infoSlide":"","link":"","tournamentID":"YcxOXVvo0TolX2RquRlw","round":"4","content":"TH Supports Vigilanteism in high crime areas.","division":"","topic":{},"id":"QMlEmxr5IZRWDFYlrL7q"},{"link":"","round":"5","infoSlide":"","topic":{},"language":"English","content":"That we would ban Microtransactions in video games.","division":"","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","id":"QNUTx0iahv6R9hmAUnws"},{"language":"English","topic":{},"division":"","tournamentID":"DfdqiFdfgcruP1pBNiHK","link":"","round":"10","infoSlide":"","content":"THBT newly democratised Arab countries should not allow religious parties to participate in elections.","id":"QNbXxOmus68QywQYirY9"},{"infoSlide":"","content":"That US presidential primaries in all states should be run on the same date.","tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","link":"","language":"English","division":"","round":"Open_Finals_2","topic":{},"id":"QNqMJ6OLIG003BmDYYhF"},{"tournamentID":"wE88mu5ettNTfJEaJQY1","language":"English","link":"","topic":{},"division":"","infoSlide":"","round":"Open_Final","content":"THBT states should construct data based profiles of their citizens (China social credit for example).","id":"QNsyy0cUBylEjCuKBkwB"},{"round":"","infoSlide":"","link":"","content":"We believe ASEAN should have a common currency.","division":"","language":"English","tournamentID":"OqQWJjNQBpGOYwMntw3z","topic":{"irw":{"title":"International Relations/War","check":true}},"id":"QOZOBr6wJABo7tX55g5b"},{"language":"English","tournamentID":"KTeMrrauFpZYvjtBUkLJ","division":"","topic":{},"content":"THW make business that are making unprecedented profit from the pandemic (E.g. Zoom, Netflix, Amazon) donate a portion of their profits to be redistributed to businesses that have taken losses.","round":"4","link":"","infoSlide":"","id":"QOlXiL29KF6aN7fZC8e6"},{"language":"English","round":"1","division":"","content":"This House would abolish prisons.","link":"","topic":{},"infoSlide":"","tournamentID":"Hpsxcd5Zzu5xq9ehtKkj","id":"QP7JwIzlyRzJHbwrRI2w"},{"content":"Shareholders have the right to vote on various important issues pertaining to a company (e.g. hiring and firing executives, mergers and acquisitions, budgets, and major changes in corporate strategy). THW weight shareholder votes in line with the length of time their shares have been held.","topic":{},"division":"","round":"2","infoSlide":"","tournamentID":"jpLuasMJYB40s1bJk2Ia","language":"English","link":"","id":"QPSMNzeZp0aBiJWPqOjF"},{"tournamentID":"MSkvKRc0Dq8mooTLp6T8","content":"THBT policy pertaining to religion in the public sphere in Israel should be set on a local level.","round":"Open_Final","link":"","infoSlide":"","language":"English","topic":{},"division":"","id":"QQKiVjS1ZEAPoIpmsuZq"},{"round":"Open_Semis","division":"","tournamentID":"MNBafFvHXt5WwIet1zGa","link":"","infoSlide":"","language":"English","topic":{},"content":"TH regrets art that glorifies gaining material wealth.","id":"QQVfzjCeqqTcEnkKEvYW"},{"topic":{},"language":"English","infoSlide":"","division":"","content":"This House would support the use of mercenaries by the United Nations.","link":"","round":"ESL_Octos","tournamentID":"gsX4dlvvsr6lcKP3eM2T","id":"QQelwyKdxXp0NJmvOzjD"},{"infoSlide":"","tournamentID":"LHNbcjmFANvMo9zTZOWN","language":"English","link":"","division":"","round":"2","topic":{},"content":"THW support separatist movements in the EU.","id":"QSpSQ0ABtIQGz15KvvMI"},{"content":"TH supports BRICS* countries creating alternatives to the current international economic institutions (i.e. the IMF, the World Bank, and the World Trade Organisation) * Brazil, Russia, India, China, South Africa.","infoSlide":"","topic":{},"tournamentID":"UfGg9gZEXlU744RWE1Y1","language":"English","link":"","division":"","round":"Open_Partial_Octos","id":"QSpX8ucnOangAz0kvppo"},{"round":"Open_Quarters","division":"","language":"English","topic":{},"content":"THBT the IMF should not make financial support conditional on recipient states adopting austerity measures.","infoSlide":"","link":"","tournamentID":"NBT7RwLHeAApXuOtrQpt","id":"QTgZ3WDRykjjCGJkcmxZ"},{"content":"THBT comedians from minority communities should not base their comedy on stereotypes and slurs about their own groups.","infoSlide":"","tournamentID":"H8ZxEfGXutRQeJ3mqisV","division":"","language":"English","round":"Open_Final","topic":{},"link":"","id":"QU0je6ZXAgupY1tghTIb"},{"infoSlide":"","topic":{},"round":"1","tournamentID":"CBVZREYhjV5bhCHOuWjU","division":"","content":"THBT progressive political candidates and parties should refuse to accept donations from corporations and high-net individuals.","link":"","language":"English","id":"QUGN5mQK3WueqXOQ9RkZ"},{"content":"THW, as President Trump, fire Robert Mueller.","language":"English","topic":{},"tournamentID":"hrSRQu49cq5gHsXJLBgQ","link":"","round":"Novice_Final","infoSlide":"","division":"","id":"QUQsCkYVn8sK5NUz8DF9"},{"link":"","content":"THR the success of white artists who co-opt minority dominated music subcultures (e.g. Rap, jazz, hip-hop, etc.).","tournamentID":"yxjvIJregbdMEVkOnzCg","language":"English","topic":{},"infoSlide":"","round":"5","division":"","id":"QUspkk8LnN064dunyRne"},{"language":"English","tournamentID":"Y8UBPz5agTr6QKYI2kXS","round":"4","infoSlide":"","topic":{},"division":"","content":"THBT animal suffering should not be an obstacle for satisfying societal needs.","link":"","id":"QVB6fPsfl7ao3OhXWB8Z"},{"topic":{},"link":"","tournamentID":"S5UzkuOf9XN6BnhOSbRC","language":"English","infoSlide":"","division":"","round":"3","content":"This House Believes That the West should massively discourage and disincentivise economic collaboration and exchange with China.","id":"QWRK9xqcb1yTJEQhAENz"},{"tournamentID":"qDZwjZ3HER1wsZxsFjBb","round":"Open_Semi","infoSlide":"","link":"","division":"","language":"English","topic":{},"content":"This House prefers a world where people do not enter romantic relationships before they turn 18.","id":"QXVaxlHN1QkWcFKISthq"},{"tournamentID":"S3X3UeH5zIQsGlSEttfv","language":"English","topic":{},"content":"THB there are no good wars with the following exceptions: the American Revolution, World War 2 and the Star Wars Trilogy.","round":"1","division":"","infoSlide":"","link":"","id":"QXpdebJWRNrEbyK1eyP4"},{"infoSlide":"","content":"That we prefer the establishment of truth and reconciliation commissions to attempts at pursuing retributive justice (e.g. prosecuting perpetrators) in post-conflict states.","language":"English","topic":{},"link":"","round":"1","division":"","tournamentID":"XL594Q2oZbvHmfmYKFvT","id":"QXuVptmes4kDTHUAQLqp"},{"division":"","link":"","round":"Open_Final","topic":{},"content":"THW allow doctors treating terminally ill patients patients to offer them treatments that are still in the experimental stages.","infoSlide":"","language":"English","tournamentID":"6SkyoBySWDSJCqeHrA9S","id":"QYK3s7ohq1mRO0GcAmXP"},{"infoSlide":"","topic":{},"content":"TH regrets the approach taken by prominent business women of giving advice on succeeding in the business world as it is rather than highlighting the need to drastically change that world.","tournamentID":"FfDrngjMOaUCYfZgnHPC","language":"English","link":"","division":"","round":"5","id":"QYNhdy17rPfa64rmuzGN"},{"tournamentID":"c74XLjeeNJzVbzpMjGlo","round":"1","division":"","language":"English","content":"THW provide mobile teachers for the compulsory education of children in travelling communities (e.g. Roma and Irish travellers).","topic":{},"infoSlide":"","link":"","id":"QYm19Vk0BmzUrQfHtjK9"},{"tournamentID":"aHKO046eJRUWaom1jPG8","content":"This House Believes That Imran Khan should pivot away from China and towards India.","link":"","division":"","infoSlide":"","language":"English","topic":{},"round":"Open_Final","id":"QZdnyPWR2Bbd3yhpElk8"},{"link":"","language":"English","topic":{},"round":"5","infoSlide":"","content":"That we regret Hamilton.","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","division":"","id":"QaaJCkAhiahWlFaBu1su"},{"link":"","topic":{},"division":"","tournamentID":"4Nqwg2GbRwaUJ5LaWcSt","content":"th, as the actress would accept the role.","round":"4","infoSlide":"","language":"English","id":"QaiHuekd6xjhSK2n5r7m"},{"round":"2","tournamentID":"sA03ySqGdgfByNOTfDfC","division":"","topic":{},"infoSlide":"","language":"English","content":"THBT continued membership in the UN should be contingent on countries opting into universal jurisdiction.","link":"","id":"QbESW908gBAPLsqg3yl6"},{"link":"","tournamentID":"jHRVS3aznjPPQaxWT8bs","round":"Open_Semis","content":"THBT the state should never ever fund the arts or cultural activities.","topic":{},"infoSlide":"","division":"","language":"English","id":"QbLSVS59i5RNWIWiuaXV"},{"tournamentID":"n7qv29PmNuF5SOe42oiz","round":"3","infoSlide":"","division":"","language":"English","link":"","topic":{},"content":"That we should allow doctors to override Advance Care Directives.","id":"QdtU694ocxzQsmnZXG05"},{"division":"","content":"THW ban individuals credibly accused of corruption from running for public office.","infoSlide":"","round":"Open_Semi","topic":{},"language":"English","tournamentID":"o85wPSMfUIKlsHQtkpnr","link":"","id":"QeDVK3l4VqYq3Qew2Otf"},{"link":"","tournamentID":"V6eoj3ztq5t3sX9oPVue","division":"","language":"English","round":"2","topic":{},"content":"TH, as Israel, would grant exemptions from compulsory military service to all and only those citizens that give up their right to vote.","infoSlide":"","id":"QeaCmGL4zAA5TmHUrXuV"},{"content":"THBT the right to bear arms is the right to be free.","topic":{},"round":"1","division":"","infoSlide":"","language":"English","tournamentID":"jdV8jBuLPUpb2I5gYBQc","link":"","id":"QfYn46r98M4VLetUmugL"},{"round":"4","content":"THBT celebrities should be banned from making political statements.","infoSlide":"","language":"English","division":"","topic":{},"tournamentID":"PEAicxOTn0uGyCAGiXLX","link":"","id":"QgVdXOgQnpr7WWI36ffI"},{"link":"","tournamentID":"yxjvIJregbdMEVkOnzCg","round":"1","infoSlide":"","content":"THB existing welfare programs should be replaced by unconditional cash transfers.","division":"","topic":{},"language":"English","id":"QgepKGknn3Nm3UfpV0ah"},{"language":"English","content":"This House believes that every criminal defendant should be required to use a government provided defense lawyer.","round":"5","infoSlide":"","topic":{},"tournamentID":"gsX4dlvvsr6lcKP3eM2T","link":"","division":"","id":"Qh6Xpjf8Ze0u4X3rDB2s"},{"division":"","tournamentID":"mUHCV4981T5cYALNdYBk","infoSlide":"","content":"THBT developing nations should choose to protect their own industries rather than be more open to trade.","link":"","topic":{},"language":"English","round":"3","id":"QhQ8LbputisP82Lc6qgS"},{"infoSlide":"","language":"English","content":"THBT artists should refrain from actively and openly interpreting their own art.","tournamentID":"m6JzV67uYJSVBRpAbgL7","link":"","division":"","round":"1","topic":{},"id":"QiEIm8ZO5as84LQ8bYnb"},{"language":"English","round":"3","topic":{},"content":"That we, as India, would rejoin the RCEP.","link":"","infoSlide":"","division":"","tournamentID":"XL594Q2oZbvHmfmYKFvT","id":"QiNx76lDPBUTUV1xer3p"},{"tournamentID":"9tZJ2IRGMD2GsDxXtVJA","language":"English","link":"","content":"THBT every European state should significantly increase military spending.","division":"","infoSlide":"","round":"2","topic":{},"id":"QiPn68fOKWMwV2eh641x"},{"language":"English","division":"","tournamentID":"Z9FMqY7i0SmIcw5xUsUL","topic":{},"link":"","round":"1","infoSlide":"","content":"THBT GOVERNMENTS SHOULD HAVE AUTONOMY TO DIVERT A PORTION OF CHARITY DONATIONS TO CHARITIES THEY DEEM TO BE MORE USEFUL/RELEVANT.","id":"Qk9hI0ScguiNxCT50HUL"},{"round":"1","division":"","language":"English","topic":{},"link":"","infoSlide":"","tournamentID":"fD5a3Vi9JDUEndfjCOKz","content":"THW prosecute (in western courts) anyone who buys people out of slavery in the developing world.","id":"QkQkMIrNrrKfj5aQRZwZ"},{"round":"Open_Final","topic":{},"content":"THW die for its country (literally: die for nation and fatherland).","link":"","division":"","infoSlide":"","tournamentID":"GnB4dJJK9KmnatnkLGmS","language":"English","id":"Ql4ynlOF1fmcwCHFMYvt"},{"link":"","infoSlide":"","language":"English","division":"","content":"There are states which prescribe quota for the number of women in Boards of companies. THW prohibit companies from other states that do not fill the required quota in their Board to participate in public tenders in states with quotas.","topic":{},"tournamentID":"LnHXZbgsbq5JIVU7k21X","round":"2","id":"QlFt8zq21bRFMS9Qq8Is"},{"round":"4","content":"THR the narrative that family love should be unconditional.","infoSlide":"","topic":{},"division":"","tournamentID":"jfv01DUCOrtLcsyMO6qo","language":"English","link":"","id":"QlZFAeHv0Sl8JfUnNiHW"},{"tournamentID":"eBNO1FMsif7tzOa9LlnU","division":"","round":"3","content":"THW allocate votes inversely proportional to wealth (where everyone gets at least one vote).","infoSlide":"","link":"","language":"English","topic":{},"id":"Qlg3bcC7MRX12sUgcn5f"},{"division":"","round":"6","link":"","tournamentID":"kFpM1KUkMmDded3L4Zmm","topic":{},"infoSlide":"","language":"English","content":"This house would criminalise adultery.","id":"QlksVEK0lcby1pBbSVQh"},{"division":"","topic":{},"language":"English","content":".","round":"Open_Quarters","tournamentID":"caeYE7341tdQiO1TJafq","link":"","infoSlide":"","id":"QmBGA1OPhTRVApNG70Zo"},{"content":"That we would create financial incentives for companies to expose the law breaking of their competitors.","topic":{},"division":"","round":"2","link":"","language":"English","tournamentID":"fkUHa28aVk8LYYEAdofu","infoSlide":"","id":"QnGmVhgWeau6JqhP9Dlk"},{"infoSlide":"","round":"4","language":"English","link":"","division":"","tournamentID":"y0zBNckmXRI4bCqMyXLg","content":"THW require all isolated communities to have a rumspringa.","topic":{},"id":"QncdJIb052lMgXT0aDH0"},{"link":"","infoSlide":"","content":"This House would immediately abolish Two Schools under One Roof.","division":"","tournamentID":"qDZwjZ3HER1wsZxsFjBb","language":"English","round":"4","topic":{},"id":"QnxND0od2aGVBIKpj3fs"},{"content":"Should Robin be allowed to drive the Batmobil too?.","round":"1","infoSlide":"","tournamentID":"Awa41MBby9wm71OwFQyo","link":"","language":"English","division":"","topic":{},"id":"QpE4dRZztJxcUGI5tFsT"},{"infoSlide":"","division":"","round":"","content":"We believe that a society with only 1 culture is better than a multicultural society.","tournamentID":"OqQWJjNQBpGOYwMntw3z","language":"English","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"link":"","id":"QqM7H5pSh4WsGK3iv2Af"},{"division":"","infoSlide":"","content":"THW spend all of Jeff Bezos's money.","topic":{},"language":"English","link":"","round":"Open_Final","tournamentID":"81tUVTFSIzBinbpptw4G","id":"QsfaZhbsrJwJMuO9yQQP"},{"infoSlide":"","round":"Open_Semi","language":"English","content":"This house prefers bail-in over bail-out.","topic":{},"division":"","tournamentID":"eSbb5Usou5B1Drm2Dmyl","link":"","id":"Qshkh07jin32SRXEFHba"},{"content":"THBT cancel culture does progressive movements more harm than good.","round":"","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"tournamentID":"mNwitMoNsjWupgwG8pR5","language":"English","link":"","infoSlide":"Cancel culture refers to the popular practice that originated on social media of withdrawing all support for (cancelling) public figures and/or companies after they have done or said something considered objectionable or offensive. This cancelling can be initiated by individuals or groups. Cancel culture usually involves, but is not limited to; the calling out of bad behaviour, the boycott of works (e.g. products, music, movies) and demands for removal from public platforms.","division":"","id":"QtPQBq9o5P0OyswfcAS0"},{"infoSlide":"","language":"English","link":"","topic":{},"round":"5","division":"","tournamentID":"LHNbcjmFANvMo9zTZOWN","content":"THW abolish the separation period (Trennungsfristen) for marriages - (i.e. create quick ends to marriage?).","id":"Qta8ADL7ThCxfrk0vL9u"},{"content":"Chúng tôi, với tư cách cha mẹ, sẽ dạy con gái mình hạ thấp giá trị của tình yêu lãng mạn.","infoSlide":"","round":"Pre Quarterfinals","link":"","language":"Vietnamese","division":"","topic":{},"tournamentID":"mkrRVvz5EWSZie6LBtCH","id":"QufIY399KAuEvSexn0jW"},{"topic":{},"infoSlide":"","language":"English","tournamentID":"lmRNEraLEkD31bc6Nbnn","link":"","round":"Open_Final","division":"","content":"This House believes that the Black Lives Matter movement should embrace open carry gun laws and engage in armed community patrols.","id":"Quvou6TZyIuLZg6XUE2b"},{"tournamentID":"tC9C0k05cAmtT3IBK2AV","topic":{},"content":"THBT Google should inform the authorities about suicide searches.","infoSlide":"","round":"ESL_Semis","division":"","link":"","language":"English","id":"QvLvliZReNjvUk6zr7om"},{"round":"3","infoSlide":"","topic":{},"content":"THW tax low-brow art to subsidize high-brow art.","language":"English","tournamentID":"ZvEJb11Ww6RpoVmg4QV3","link":"","division":"","id":"QvZNZX3FuzuRQIx54EkE"},{"language":"English","topic":{},"tournamentID":"3G6HklWR08yKYY0GbDsU","round":"Open_Final","content":"TH regrets the founding of the European Union.","infoSlide":"","division":"","link":"","id":"QvbsJJnvjiAgC6sN6601"},{"round":"9","link":"","division":"","infoSlide":"","tournamentID":"irYSGlHj76RukmyCwWOG","topic":{},"language":"English","content":"THW not allow revolutionary leaders and their families in post-conflict societies to run for political office.","id":"QvoqC3x2HgybIiCkJA5m"},{"topic":{},"division":"","round":"Open_Semi","infoSlide":"","content":"Assuming feasibility exists and with benefit of hindsight, TH as USA would go back in time and choose not to invade Afghanistan.","link":"","tournamentID":"DTutOgCItM4x30SyVavv","language":"English","id":"QvpYGMV6qIyeLJ5JzAwN"},{"topic":{},"language":"English","round":"2","content":"THBT emerging democracies should limit their presidents to a single term in office.","division":"","infoSlide":"","tournamentID":"ZqM3Me0eKutOMMTkPwgA","link":"","id":"QwXsUeAreZH93bSmTwDm"},{"content":"THW disallow exclusive private arbitration for contracts between corporations and individuals.","language":"English","round":"3","tournamentID":"HlR3H86XBK4mqvL9v5HT","division":"","link":"","infoSlide":"","topic":{},"id":"Qx3B0H8snASJWbHsgCfO"},{"infoSlide":"","division":"","tournamentID":"yOWDiguNGQHwr42mgnqv","language":"English","topic":{},"content":"THBT states should incentivize wealthy people to move to economically insolvent cities.","round":"2","link":"","id":"QxIivaMg54a98aKlo7nj"},{"division":"","topic":{},"language":"English","link":"","infoSlide":"","round":"2","tournamentID":"5YavcNMFjpdq8R1u3M2H","content":"THBT it is better for Egypt to get secular authoritarian leadership than a democratic government.","id":"QxY6pHXikpwlua1l55eJ"},{"round":"3","topic":{},"division":"","language":"English","content":"THW allow law enforcement agencies to monitor the phones, emails, internet activity and text messages of anyone who has been convicted of a crime linked to organised crime (as opposed to a hypothetical status quo where permission is granted on a case by case basis, where a judge must approve it based on evidence that the person is currently committing a crime).","link":"","tournamentID":"idhVYyUwgWnlyak17o8K","infoSlide":"","id":"QxrSO5oxmZh6b6nJU6py"},{"round":"5","language":"English","content":"THR the prominence of religious rehabilitation programs in prisons.","link":"","division":"","infoSlide":"","tournamentID":"8Vk7pWjDHtGhxQVWidIQ","topic":{},"id":"QxycM6Nu2QG29jIZjxaK"},{"content":"THW ban boarding schools.","round":"3","tournamentID":"mEr4tnJE0kt1V0JvT2KG","division":"","infoSlide":"","link":"","topic":{},"language":"English","id":"QyfJ2AfT70H90Ma2mFtE"},{"topic":{},"link":"","round":"2","infoSlide":"","language":"English","division":"","tournamentID":"Gx29hnXeBrSjBZrrDKx8","content":"THB the EU should offer automatic membership to any constituent member that leaves the United Kingdom.","id":"QyiZp9x1CSLcVGHft5BP"},{"division":"","round":"Open_Final","tournamentID":"UlbXxRnvnqr2PXimcFud","language":"English","content":"TH regrets the decline of socialism.","topic":{},"link":"","infoSlide":"","id":"QyjVgBHZ9x50pBGoqm8Z"},{"link":"","content":"This House supports Student-Designed Curricula in secondary schools.","round":"1","language":"English","division":"","infoSlide":"","topic":{},"tournamentID":"V4GiH1luZDgYtx44QdOh","id":"QyzXYUcQArJ9SoZ4uN1E"},{"content":"THW allow individuals in prison to serve their sentences in the armed forces.","link":"","infoSlide":"","round":"1","language":"English","tournamentID":"SIrskBVMCwGNCZibcnP1","division":"","topic":{},"id":"Qzm0kzpV5IR9cQ4mPWcZ"},{"topic":{},"language":"English","tournamentID":"1WET2zUA9uN6rpHTGR8k","division":"","content":"THW ban the defamation of religious symbols or authorities.","infoSlide":"","link":"","round":"Open_Semis","id":"R0pvu1iN4nK0UQIpCJ6N"},{"division":"","content":"THW create a state-run monopoly of porn and use it for social engineering.","topic":{},"infoSlide":"","round":"2","tournamentID":"DLFJWaIyHnSlvFofovjc","link":"","language":"English","id":"R0sXJWtMiyJtHq850Fa1"},{"tournamentID":"xeyFK25uSH9TtPga8ALE","language":"English","division":"","infoSlide":"","round":"Open_Semis","topic":{},"link":"","content":"THBT Japanese Leaders are justified in honouring the Yasukuni War Shrines.","id":"R0wdvvl8vah6dJSbPYp7"},{"infoSlide":"","language":"English","link":"","content":"THBT it would be good for the Catholic Chuch to let the next pope be elected by a vote by all Catholics.","round":"Open_Semis","topic":{},"tournamentID":"HXAIZhpnUdFYuB97wMF8","division":"","id":"R15xQJhbMdyXafezHniv"},{"tournamentID":"pvKZkg6sqicG5nXA2mvY","link":"","language":"English","round":"2","content":"THW allow first-time offenders to, with the consent of the victims, pay compensation to them in place of a prison sentence.","infoSlide":"","topic":{},"division":"","id":"R17d2A08KiuaByuxskfK"},{"round":"1","tournamentID":"MKnFsrIKq8equaMluK21","infoSlide":"","language":"English","topic":{},"division":"","content":"The state should pay a living wage to stay at home parents.","link":"","id":"R1bxGR7RfXym10xJZgbj"},{"link":"","division":"","topic":{},"round":"Open_Semis","content":"THW Ban Mens’ Rights Activist Groups.","language":"English","tournamentID":"qLVUbjlIT84ro50ixBwk","infoSlide":"","id":"R1zwGWWLxFYNaTNVE1cK"},{"infoSlide":"","division":"","content":"TH, as Israel, would form a strategic military alliance with the Kurds in Syria.","topic":{},"link":"","tournamentID":"YF6iuqxO6eUISnAz4iMp","language":"English","round":"Open_Semi","id":"R3l153bkJLjuimUjl2pr"},{"division":"","content":"This wouse would buy countries votes in international organizations.","infoSlide":"","link":"","language":"English","topic":{},"round":"Open_Octos","tournamentID":"Biz1VRjjdg8eWbm4NJr3","id":"R3oUqCnUWxgCU44Leskh"},{"division":"","link":"","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"infoSlide":"","tournamentID":"KncW7pH1nDIom3xK89VG","language":"Vietnamese","content":"Chúng tôi ủng hộ thế giới nơi mà việc xét xử được định đoạt bởi một AI (trí tuệ nhân tạo) đưa ra quyết định thông qua máy học hơn là những người thẩm phán.","round":"1","id":"R4WGjvcuQplERV4INzCM"},{"language":"English","round":"3","content":"THBT the media should show the full horrors of war.","topic":{},"link":"","division":"","infoSlide":"","tournamentID":"DNe0c1xNBVoG02MsO66g","id":"R4avfZfaA9bboF0iUlU3"},{"content":"TTHW abolish the practice of plea bargaining.","round":"8","tournamentID":"ZHpmROZ4G7eY4iB9dTsM","topic":{},"link":"","infoSlide":"","division":"","language":"English","id":"R4pj8YOovRBAFV4wUr7H"},{"division":"","tournamentID":"6NSl7moQPnBVA2R4Z66b","topic":{},"content":"This House, as an individual, prefers believing that they can singlehandedly change the world over believing that they are just one pawn in the grand scheme of things.","round":"4","infoSlide":"","language":"English","link":"","id":"R5YjKOoAGJtlF5dALShH"},{"content":"We believe all countries should replace their GDP with the GNH Index.","language":"English","round":"","division":"","infoSlide":"","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"link":"","tournamentID":"CbtTNoNzLTvfNvRWmMc2","id":"R5pO9TdPm2jmUhIbHnZ4"},{"link":"","tournamentID":"nRov7JujhUP4fNtRUQTt","content":"THS the Comprehensive Sexuality Education programme in elementary schools in Africa.","language":"English","topic":{},"division":"","round":"4","infoSlide":"","id":"R6qZcrcBNJqxoIlWhYoy"},{"round":"Open_Final","infoSlide":"","tournamentID":"NxB6ercynISK3sISgci5","link":"","division":"","topic":{},"language":"English","content":"THBT every Dutch family with an average or higher income has a moral obligation to take in a foster child (child from foster care).","id":"R7KfF44iZ9cA3buSyaZF"},{"language":"English","link":"","content":"THW allow audio and video recording of court procedures and the public dissemination of the recordings.","infoSlide":"","tournamentID":"HXAIZhpnUdFYuB97wMF8","division":"","round":"Open_Final","topic":{},"id":"R85jopl73emkbnu5nAUa"},{"link":"","content":"THW not grant developing countries the right to host major sporting events.","infoSlide":"","language":"English","round":"5","division":"","tournamentID":"euj80C6nkxdgEhkTaI0g","topic":{},"id":"R8Z4ezWhEk3su6og6Rij"},{"topic":{},"division":"","round":"Open_Final","language":"English","infoSlide":"","content":"THR \"self-crit\" culture.* * ”Self-crit culture” refers to a culture where individuals are encouraged to publicly and openly criticise themselves for their shortcomings.","link":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","id":"R8eel55elO7rm2XXY2sK"},{"language":"English","tournamentID":"WcTEqzk0ckiyLGdszyy6","link":"","infoSlide":"","round":"Open_Final","topic":{},"division":"","content":"THBT young Portuguese should recognize the existence of a generational struggle (with divergent and conflicting interests between generations) and prepare to win.","id":"R91010TYek2zqYJz43Qf"},{"link":"","topic":{},"infoSlide":"","tournamentID":"L5MIrW7phE11xSIVutdB","language":"English","division":"","round":"Open_Semis","content":"This house would allow people to opt into religious structures with the power to punish them in this life (e.g., Beth Din courts, or Sharia courts) for infractions.","id":"R9EBpTf4vfiT7oGnI7Bg"},{"language":"English","infoSlide":"","round":"3","tournamentID":"UFyGWwwkKkZKyD4oHYoI","division":"","content":"THW prohibit people with criminal records from running for political office.","link":"","topic":{},"id":"RANl1DTSK7LVbtnc8HKT"},{"language":"English","round":"4","division":"","topic":{},"infoSlide":"","link":"","content":"THBT the west should put heavy sanctions on Russia until Putin abdicates and democratic elections are held.","tournamentID":"rmnZcOUQU2iED2r3pXca","id":"RAOM10bet9AesvjlTvc8"},{"infoSlide":"","tournamentID":"7l98EUanZ85SaCAlZg2X","language":"English","division":"","content":"THBT feminist movements should adopt feminist icons that are adversarial and embody violence as opposed to icons that promote traditional norms, monetary prosperity and working within the system through cooperation.","round":"5","link":"","topic":{},"id":"RAQVPxFkL9VHPnrGrCNr"},{"infoSlide":"","round":"4","division":"","topic":{},"language":"English","link":"","content":"THW remove veto powers from permanent security council members and redistribute it to historically neutral countries (e.g. Ireland, Switzerland, Panama, etc).","tournamentID":"fzTALe8bGudT9BWcFtDO","id":"RAZ5RZJ2857FKwzQ6gu9"},{"link":"","topic":{},"infoSlide":"","division":"","round":"2","language":"Vietnamese","tournamentID":"SE4KfMNAU58WSM6yajEF","content":"Chúng tôi tin rằng các quốc gia đang phát triển nên ưu tiên chủ nghĩa bảo hộ mậu dịch hơn thương mại tự do.","id":"RAdXJJdCBmoKiWfoEjQ9"},{"division":"","language":"English","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"link":"","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","infoSlide":"","round":"3","content":"THW allocate the majority of government sports funding to encourage grassroots participation (e.g. amateur community clubs, after school sports clubs, etc.) rather than invest in achieving success in prestigious competitions (e.g.: intensive coaching academies, player and personnel salaries, etc.)","id":"RAkrmAceRshNqhwxMh0x"},{"infoSlide":"","topic":{},"content":"THW make EU voting compulsory.","tournamentID":"av1jBA9UCgf82WNPu88k","language":"English","link":"","round":"1","division":"","id":"RC52AUID8kTe7L0VTCel"},{"tournamentID":"o83Oqm9vDtGaG6SVldke","division":"","language":"English","topic":{},"round":"4","infoSlide":"","content":"THW require close relatives of the homeless to pay their welfare costs to the extent that they can afford to do so.","link":"","id":"RCOe04XkM77mmmNpzPpC"},{"topic":{},"tournamentID":"iARNjQG0MiYXxp1Qk22E","link":"","language":"English","infoSlide":"","round":"Open_Semis","division":"","content":"THW only imprison individuals who have committed violent crimes and pose a continuing threat to society.","id":"RCdDvU5ZIGlka2gGN4MN"},{"division":"","language":"English","link":"","topic":{},"infoSlide":"","content":"THW ban the use of religious rhetoric in political campaigns.","tournamentID":"ODzhGSyV71DaUGhZEWGT","round":"4","id":"RDT5P1mdHy5wfVDQPVLp"},{"language":"English","tournamentID":"7lMrN2aiwSzD5rzPFwHz","link":"","round":"2","division":"","content":"THW replace juries with panels of philosophers who will decide cases purely on utilitarian grounds.","topic":{},"infoSlide":"","id":"REIDjVYAt827awgaVaba"},{"infoSlide":"","link":"","round":"Grand Final","content":"Chúng tôi ủng hộ lối sống \"làm việc để hưởng thụ\" hơn là \"làm việc để tích lũy\".","tournamentID":"i00RSzvK4b1TDEgnpFJd","topic":{},"language":"Vietnamese","division":"","id":"REQ3sT6EXbKgig4yHEAQ"},{"infoSlide":"Hip hop is an art and culture movement that is said to encompass music, dance, fashion, style, use of language and social attitudes. It originated in the predominantly African American neighbourhood of South Bronx, New York City in the late 1970s. Although widely considered to be a synonym for rap music, the term hip-hop refers to a broader complex culture comprising four key elements: (i) deejaying, \"scratching\" or \"turntabling\"; (ii) rapping, also known as \"MCing\" or \"rhyming\"; (iii) graffiti painting, also known as \"graf\" or \"writing\"; and (iv) breakdancing or \"B-boying\".","division":"","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"round":"","link":"","content":"THR the commercialisation of hip hop.","tournamentID":"mNwitMoNsjWupgwG8pR5","language":"English","id":"RExqSx1mswz62GltX3hT"},{"topic":{"education":{"check":true,"title":"Education"}},"tournamentID":"mNwitMoNsjWupgwG8pR5","division":"","link":"","infoSlide":"","round":"","language":"English","content":"THBT minority communities should heavily prioritise teaching values of individualism to children.","id":"RF0c6ID2NG1wrA3UzWot"},{"link":"","tournamentID":"Er03o2M51g3s6dYyUHHm","division":"","language":"English","infoSlide":"","content":"TH supports direct elections of governors in Russia.","topic":{},"round":"2","id":"RF2nJAa5KmxS12FLQ7IY"},{"tournamentID":"C1d7IlBx1VcZ4eBTl6cr","content":"THW always execute those sentenced to death publicly.","round":"4","division":"","topic":{},"link":"","language":"English","infoSlide":"","id":"RFw6SeHjyFDoLOzXYQZv"},{"infoSlide":"","content":"THW require all major infrastructure projects (eg. motorways, major apartment blocks, mines etc.) to be approved by public vote of the affected geographic community.","round":"Open Semifinals","topic":{},"division":"","link":"","tournamentID":"JHo8pIpzQxzUKHUwVDFf","language":"English","id":"RGfVgzI47NjChQgTN0qF"},{"tournamentID":"oFJV1Acc1Gr7t6B77LSK","language":"English","link":"","division":"","infoSlide":"","round":"Open_Final","topic":{},"content":"This House believes that middle-class families should adopt a model of extended adolescence for their children, rather than one of early independence.","id":"RGosQkWbtXkqlMiOShQ9"},{"language":"English","round":"EFL_Final","tournamentID":"X4613Kz1qYjZyFPJzJlB","content":"THBT mainstream Spanish political parties should operate cordon sanitaire policies towards radical populists (e.g. VOX).","topic":{},"link":"","infoSlide":"","division":"","id":"RGt6iDf0mouBuZv00TYo"},{"infoSlide":"","division":"","round":"Open_Final","topic":{},"content":"THBT it is justified for an individual to prioritise their own self-interest over alleviating universal suffering.","tournamentID":"1zpwTG4R66xy1c4CrMeq","link":"","language":"English","id":"RHH6yRei87va5QHz5Ndl"},{"infoSlide":"","content":"TH supports hydraulic fracturing.","topic":{},"division":"","link":"","tournamentID":"8mQg9HgZBO4ebq8ubmRJ","language":"English","round":"4","id":"RI3Zvhjf0M4HB3nsWBee"},{"topic":{},"link":"","division":"","round":"Novice_Semi","tournamentID":"S2mG18EWYdh2bPEadyd9","infoSlide":"","content":"THBT the feminist movement should support polyamorous relationships.","language":"English","id":"RI4vbGer12BVVmyxBfu9"},{"tournamentID":"Awa41MBby9wm71OwFQyo","language":"English","content":"Do we need an ECO-label for organs?.","topic":{},"infoSlide":"","link":"","division":"","round":"Open_Semis","id":"RIICCzuftytpAimXyA00"},{"division":"","round":"1","infoSlide":"","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"language":"Vietnamese","link":"","tournamentID":"Wpv6iXJkIPUXYIkl0dST","content":"Chúng tôi tin rằng chính sách tư pháp hình sự (ví dụ như lệnh giam giữ bắt buộc, hình phạt cấp thấp nhất, điều kiện được tại ngoại, v.v.) nên được quyết định bởi chuyên gia thay vì các đại biểu cử tri.","id":"RIM1JpIloSqz05vigwlr"},{"language":"English","round":"3","tournamentID":"AbrZ6leGJBXAmv4md2Zw","infoSlide":"","division":"","topic":{},"content":"This house believes that socially progressive organisations and institutions should aggressively pursue policies to accommodate underprivileged groups, such as mandatory preferred gender pronoun introductions, trigger warnings prior to discussion on sensitive topics and the creation of autonomous spaces.","link":"","id":"RIVZ8gmv8In5gsOYlbNf"},{"topic":{},"language":"English","content":"This House believes that the WHO should adopt a convention which bans the sell of drugs with high resistance tendencies (e.g. antibiotics) to countries which do not comply with WHO guidelines regarding their medical and agricultural use.","round":"Open_Partial_Double_Octos","tournamentID":"EP5HDm4G3OfMlciId6YM","infoSlide":"","division":"","link":"","id":"RIkBcpdHbq2GMRqsJUfZ"},{"topic":{},"division":"","content":"THO vaccine nationalism.","infoSlide":"","round":"Octofinals","tournamentID":"9yPqE2fe1oaHsd7ankOa","language":"English","link":"","id":"RIlJbqkc5fQ3n7UiIuyf"},{"round":"2","division":"","tournamentID":"YZ4nedbden9wBJH2zqb4","topic":{},"content":"THW offer immigrants who cannot claim welfare benefits in Germany a loan for “livelihood/existence costs” that they would have to repay after five years.","infoSlide":"","language":"English","link":"","id":"RItVGp8H5gOfpLW3bvsS"},{"language":"English","content":"THB the US Federal Government should continue to enforce the national prohibition on drugs in states which legalise the personal use of cannabis.","round":"8","tournamentID":"GQttZR3FjAIw20Ek36nP","infoSlide":"","topic":{},"link":"","division":"","id":"RJ4aYakUhC7UBbUvJGN1"},{"division":"","topic":{},"link":"","infoSlide":"","tournamentID":"IpWyfCcksctR86jKX66g","content":"THBT The ECB Should Unconditionally Buy Government Debt from Struggling Eurozone Economies.","language":"English","round":"5","id":"RJ8E9kYIixJAAgANWaNh"},{"link":"","language":"English","tournamentID":"QZvopTthxxEkyvHXmzp3","division":"","topic":{},"round":"5","content":"This house would allow opponents of abortion to sign legally-binding contracts with pregnant women, in which they pay those pregnant women not to have an abortion.","infoSlide":"","id":"RJyHpfF2BYYLQipftBwY"},{"division":"","content":"THBT Western states should maintain travel bans on Modi in the event of his ascension to Prime Minister.","infoSlide":"","language":"English","link":"","tournamentID":"khQAvAFibcPAXBKfxTNY","topic":{},"round":"2","id":"RKMqGprgygmrge25a4dz"},{"division":"","content":"THBT the BDS movement reduces the likelihood of a two state solution to the Israeli-Palestinian conflict.","link":"","language":"English","topic":{},"tournamentID":"Hq4qmpVpWAzn16SzuUU8","round":"3","infoSlide":"","id":"RLN7SWKR7cTHOVRUtiJU"},{"language":"Vietnamese","division":"","tournamentID":"OLVGf3rE3KKirerr2vyk","round":"3","content":"Chúng tôi tin rằng người nổi tiếng nên chịu hình phạt nặng hơn mức phạt thông thường vì những tội họ gây ra.","infoSlide":"","link":"","topic":{},"id":"RLQl3UxiHjzgevsCeWLg"},{"link":"","language":"English","content":"THW break up Disney.","round":"5","tournamentID":"V4GiH1luZDgYtx44QdOh","infoSlide":"","division":"","topic":{},"id":"RLS2LNkgNZHaXrY9H3pm"},{"round":"3","division":"","infoSlide":"","language":"English","tournamentID":"vTB5rmh37ZMzdOCJ34sF","topic":{},"link":"","content":"THW ban the Orange Walk.","id":"RLyLpktkzKcEHOpRJsdg"},{"topic":{},"round":"Open_Final","infoSlide":"","content":"THP a world where entry into Heaven is decided on peer-based evaulation as opposed to religious doctrine.","division":"","tournamentID":"Sf5YtAJo1vVmULRLSMAt","language":"English","link":"","id":"RLzxZ9sniHWwzJ3Mmgw2"},{"link":"","language":"English","division":"","content":"In states with persistent ethnic conflict, THB governments should censor works of historical fiction that portray oppressed minority groups in a negative way.","round":"Novice_Finals","topic":{},"infoSlide":"","tournamentID":"ovD89w3g4H3GjEFmXcRL","id":"RMRw4zi9nJSGDlpKk9F5"},{"link":"","division":"","infoSlide":"","round":"4","content":"THW prohibit non-disclosure agreements tied to the settlement of civil lawsuits.","language":"English","tournamentID":"XBFpAL1r3TobjAN8vT20","topic":{},"id":"RNKAa6ihcC1JAAAqinv2"},{"division":"","tournamentID":"zUT5H7Cgh7l0a0sJSIba","round":"7","link":"","language":"English","topic":{},"infoSlide":"","content":"THW release inmates from jail solely on the basis of their rehabilitation and not upon the completion of a predetermined period of time.","id":"RNim3ugAEQVGSUm0IhmL"},{"round":"3","link":"","content":"THBT minority groups seeking public support for equal rights should emphasize distinct cultures over similarity to the mainstream.","topic":{},"tournamentID":"TAVBVNzO0c2PrQ44iAyC","language":"English","division":"","infoSlide":"","id":"RO0vSBgJkZyej5W3MwFz"},{"link":"","division":"","tournamentID":"AsoDjVHcLSyKMQmLkB7S","infoSlide":"","topic":{},"language":"English","round":"5","content":"THS the creation and use of Autonomous Killing Robots. Info: Autonomous Killing Robots are a form of military technology which when activated, can identify and engage targets* without further human intervention. *targets include humans and light armoured vehicles.","id":"RQFXEjygLHrbhCUbz4mG"},{"topic":{"education":{"title":"Education","check":true}},"round":"","language":"English","infoSlide":"","content":"THW prioritize the training of debate in Vietnamese over English.","division":"","link":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","id":"RRKvy28Wqc6fhb5aXvRB"},{"language":"Vietnamese","topic":{"education":{"title":"Education","check":true}},"tournamentID":"37eWQ7OoHqsPgaN53lHV","round":"","link":"","infoSlide":"","content":"Chúng tôi tin rằng từ cấp phổ thông trung hộc (THCS và THPT), trường học nên đối xử với học sinh như khách hàng.","division":"","id":"RS2Y4NIrBykNk2JMG4pi"},{"link":"","tournamentID":"JdCT4CooyPOkRsmbNNLg","division":"","topic":{},"round":"6","language":"English","infoSlide":"","content":"This house would ban the broadcast and dissemination of terrorist videos.","id":"RSV6bQwYafyQBEWWabZV"},{"link":"","round":"2","content":"THS \"Cancel Culture\".","division":"","topic":{},"language":"English","tournamentID":"py2YomguZSylDKYhWlhK","infoSlide":"","id":"RStEQ1KQpa3K2ffsQU8x"},{"link":"","topic":{},"language":"English","division":"","round":"Open_Quarters","content":"THBT Vladmir Putin should make a credible public offer to the United States for joint decommissioning of their entire nuclear arsenal.","infoSlide":"","tournamentID":"jhyT1LK3YdR0do1cosc6","id":"RTO4K8fM9heLhQa5wGdS"},{"language":"English","topic":{},"link":"","tournamentID":"8OIcp0isoNfvCv3ZWmkt","division":"","round":"3","infoSlide":"","content":"Should combat sports/martial arts be forbidden?.","id":"RTqPwln2J9HTAbff0GCw"},{"round":"15","content":"THBT greed is good.","topic":{},"division":"","infoSlide":"","link":"","language":"English","tournamentID":"DSFg77BvC9y4FK5pBVIv","id":"RUB1iCIDOzaPRqh6gfKb"},{"link":"","content":"Chúng tôi ủng hộ việc cảnh sát có quyền tư pháp để trấn áp, với mức độ cao nhất là giết người, tại các khu vực có tỷ lệ tội phạm cao thường xuyên.","infoSlide":"Tư pháp là việc phán quyết hình phạt đối với phạm nhân. Toà án là chính thể duy nhất có quyền tư pháp.","round":"4","tournamentID":"RF6WJZV8JYPwFqSpNxlR","division":"","topic":{},"language":"Vietnamese","id":"RV7V282VGIEKAL8bDwZm"},{"content":"Should Telecommunications providers be required by law to ensure net neutrality?.","division":"","infoSlide":"","tournamentID":"kveNSL63Zo9kOYIUJlW2","language":"English","topic":{},"round":"Open_Semis","link":"","id":"RVBX0rbLxywez3tYiPQZ"},{"round":"4","content":"THBT Pixar's next animated motion picture should have a same-sex couple as protagonists.","division":"","tournamentID":"dqyYdikn4cY0oz6DCMkq","topic":{},"link":"","language":"English","infoSlide":"","id":"RVtOnnX23hQcAM6nbJSP"},{"content":"THBT feminists in India should attempt to infiltrate and reform the arranged marriage industry as opposed to fight for its abolishment.","tournamentID":"fzLPoPRlME1NEcvf7oVd","language":"English","infoSlide":"","topic":{},"link":"","round":"1","division":"","id":"RVxBVwt8oJJYzS22OBME"},{"content":"THBT social disgust is sufficient justification for censoring art.","link":"","topic":{},"tournamentID":"Mi4A41wAaOQFffgxIvSR","division":"","infoSlide":"","round":"2","language":"English","id":"RW32I76W7qwKv6OvuG4x"},{"round":"2.5","topic":{},"content":"THBT anything good in life is either illegal, immoral or fattening.","language":"English","division":"","infoSlide":"","tournamentID":"1leOvfvlbNAIDzW6UnkK","link":"","id":"RWU4F1CysQXZ5KqERJAr"},{"round":"4","division":"","tournamentID":"sgcqNV5ntCoa4H8glRBu","infoSlide":"","content":"Chúng tôi lấy làm tiếc về quan niệm \"Sự già đi là căn bệnh cần phải chữa.\"","topic":{"publicHealth":{"check":true,"title":"Public Health"}},"link":"","language":"Vietnamese","id":"RWdYqFw42niqykZBDT5K"},{"division":"","infoSlide":"","content":"THW never hold referenda on measures of social lpolicy.","topic":{},"link":"","round":"Open_Final","tournamentID":"BEmSFvOGfvfXfJxFm9a7","language":"English","id":"RWoki2glHJUrMlWuydOP"},{"round":"5","topic":{},"division":"","content":"THBT the US should pay reparations to its Muslim population for policies carried out in the aftermath of 9/11.","tournamentID":"uOrbqWx5KdpXchUpHb3Z","link":"","infoSlide":"","language":"English","id":"RXDWt7juhhKawJh2Lnib"},{"round":"Open_Final","link":"","infoSlide":"","tournamentID":"sv4AWOKZYbl1PfCObw21","division":"","content":"THBT the scientific community should reject the notion of \"non-overlapping magisteria\".","language":"English","topic":{},"id":"RY1rqG4xI4BvN9w59ovT"},{"tournamentID":"6kzErQkhNrOjgjEPAYjE","infoSlide":"","division":"","content":"THW ban the German Chancellor, Angela Merkel, from adopting children.","language":"English","round":"2","link":"","topic":{},"id":"RYwRJcva9C0jodIfCGGQ"},{"infoSlide":"Parler is a microblogging/social media web service / app. It is often positioned as a free-speech, no-moderation alternative to Twitter and other social media networks. In the aftermaths of the 2021 attack on the U.S. Capitol, many tech companies have taken action against Parler - e.g. Apple and Google has removed the Parler app from their stores, and Amazon Web Services have stopped its hosting services for Parler. In letters sent to Parler about their decisions, Amazon, Apple, and Google all cited the social media company’s lack of a workable system to keep violent content off its platform.","round":"4","link":"","language":"English","division":"","content":"THO the deplatforming of Parler by tech giants.","topic":{},"tournamentID":"1dwGdjAn9pODo8bQfmJW","id":"RYxtPjUvcJ8EXAlP7wEm"},{"division":"","language":"English","infoSlide":"","link":"","tournamentID":"Sf5YtAJo1vVmULRLSMAt","content":"THR the rise of Nihilism in popular culture.","round":"Open_Semi","topic":{},"id":"RZb6R4GjsaiYDAnJllun"},{"language":"English","round":"3","link":"","topic":{},"infoSlide":"","division":"","content":"This House believes that feminists should not engage in sex strikes.","tournamentID":"2C0TX71TRjIIOcsN7CbL","id":"RZfzzSPhBiXe8xglKU7w"},{"infoSlide":"","link":"","division":"","round":"4","content":"TH Regrets the 2001 invasion of Afghanistan.","topic":{},"tournamentID":"xeyFK25uSH9TtPga8ALE","language":"English","id":"RZpBgrydS1PSAIbEb7Ic"},{"language":"English","topic":{},"division":"","content":"THW abolish all term limitations for elected officials in high offices.","tournamentID":"gaW3hl0mF758MDm7UkNs","link":"","round":"4","infoSlide":"","id":"RZtsKUL6ECSarQ03llZu"},{"division":"","content":"THS the leaking of Ashley Madison data.","tournamentID":"V8TulSs5yNLpZX8Xohpq","link":"","infoSlide":"","language":"English","round":"3","topic":{},"id":"Ra3AQw10Lp3rgrvwCcVm"},{"topic":{},"link":"","round":"4","content":"THW cease all austerity measures in favour of a massive increase in government spending.","infoSlide":"","tournamentID":"9PjiZBOUlI39GMCrggZs","division":"","language":"English","id":"Ra4ghlSvvCARPczCRoeg"},{"content":"THW welcome the downfall of global capitalism.","infoSlide":"","topic":{},"division":"","tournamentID":"1hlmlrX6In8aTapDJoTu","language":"English","link":"","round":"Open_Final","id":"RbBSBQZQ1QwQGw8mTV4H"},{"round":"Novice_Semi","topic":{},"link":"","content":"THO the humanisation of villains in popular media.","language":"English","division":"","tournamentID":"ltPXjwYNooGAx72v9bz6","infoSlide":"","id":"RbcPQ0RyZeqZKYjHUyX1"},{"content":"THBT all control of disputed religious sites should be ceded to the UN.","round":"Open_Final","division":"","infoSlide":"","language":"English","topic":{},"tournamentID":"ZjN9B5kqPitiGVpXIpHO","link":"","id":"Rd0p2XFEvDgeMDoMDh2p"},{"round":"4","tournamentID":"VWMKb2j3CmLwgnB7Jl4O","topic":{},"language":"English","content":"THBT Pakistan should not engage in peace talks with the Taliban.","infoSlide":"","link":"","division":"","id":"ReD3GU4umDhWC0fnDiw7"},{"tournamentID":"FiF24Yc0spiBkvTxiYwD","infoSlide":"Các nhà khoa học, được thuê bởi lãnh đạo nhóm Hỏa Tiễn, đã tạo ra một pokemon là Mewtwo có sức mạnh ngang ngửa với pokemon mạnh nhất - Mew. Sức mạnh này cho phép Mewtwo đánh bại hầu hết tất cả pokemon và phá hủy thế giới. Sau khi biết sự thật rằng mình sẽ bị lợi dụng cho mục đích con người, Mewtwo đã giải phóng sức mạnh và giết toàn bộ nhà khoa học. Sau đó rời đi với âm mưu trả thù loài người.","topic":{},"round":"2","link":"","language":"Vietnamese","content":"Chúng tôi hối tiếc việc các nhà khoa học không kiểm soát được Mewtwo.","division":"","id":"RenjpA3QEXMnpFEZJm2J"},{"topic":{},"division":"","infoSlide":"","tournamentID":"BtqBGdAUsTtPKorZOcBX","link":"","round":"ESL_Final","content":"THBT the state should not fund any works of art or performances that the average citizen would not recognize as having artistic merit.","language":"English","id":"Rfdb18pEEQ5sIruXuHQI"},{"division":"","content":"THBT government agencies that regulate drugs should only test whether a drug is safe, not whether it is effective, before approving it for public use.","language":"English","topic":{},"round":"7","link":"","infoSlide":"","tournamentID":"pvKZkg6sqicG5nXA2mvY","id":"Rfv1VoUvJNt5RzDrZCgW"},{"language":"English","infoSlide":"","content":"THP a world where homo sapiens are not the sole surviving human species.","round":"Open_Quarter","link":"","tournamentID":"sQqCNuWw9nlSsN5agLhC","topic":{},"division":"","id":"RgEYIYeRMH0WNTYqLJGe"},{"tournamentID":"MqWoP2HpVv77T14aPCqR","content":"TH, as the French Parliament, would not have recognised the Armenian Genocide.","infoSlide":"","topic":{},"language":"English","round":"2","division":"","link":"","id":"RgTeXQrwFLsf520EsInq"},{"content":"THW construct brothels on military bases.","division":"","link":"","language":"English","topic":{},"tournamentID":"wXcojonR6N4b28c9T963","infoSlide":"","round":"4","id":"Rgs7Zh1FKTPf4nhSiztc"},{"tournamentID":"t1jiRXU99xeGdoIkTeyF","topic":{},"round":"Open_Semis","content":"TH, as the Chinese Communist Party, will allow fair and competitive elections for local elections.","link":"","division":"","infoSlide":"","language":"English","id":"Rgyi8zF1Qhp3JPSHaHdF"},{"division":"","tournamentID":"8DernPpRwzBf2YIkESEX","content":"Assuming that technology to do so existed, THW would progressively tax happiness and redistribute it.","link":"","topic":{},"infoSlide":"","round":"Novice_Final","language":"English","id":"Rj0seIsFPcgo54vuGVWE"},{"content":"TH can't seriously want to ban alcohol. It tastes great, makes women appear more attractive and makes a person virtually invulnerable to alcohol.","tournamentID":"S3X3UeH5zIQsGlSEttfv","link":"","round":"Open_Final","infoSlide":"","division":"","language":"English","topic":{},"id":"Rjpowsw3SNI5zVLpPs5J"},{"topic":{},"link":"","tournamentID":"GnB4dJJK9KmnatnkLGmS","division":"","infoSlide":"","round":"1","language":"English","content":"THW allow companies to pay more salary to its employees in exchange for not having children.","id":"RknPcMNCAhqVKIcMgfzj"},{"topic":{},"link":"","tournamentID":"1DUltfq5WOlWowHiNs5h","round":"4","division":"","language":"English","content":"THP a world where Homo Sapiens is not the sole surviving human species.","infoSlide":"","id":"RlKIMGjA4sNlixSBoDIN"},{"language":"English","infoSlide":"","tournamentID":"0DgXee32WEP3hxmGZExS","topic":{},"division":"","round":"23","link":"","content":"THW not lie to its children about Santa Claus.","id":"RmLeht9JnvPqJkUY1uay"},{"round":"2","tournamentID":"MIrEXPHnAIOpqQw6kxky","language":"English","content":"THR the substitution of digital entertainment (e.g. tv, movies, video games) for written materials (e.g. novels, Kindle, comic books) in the lives of children.","division":"","link":"","infoSlide":"","topic":{},"id":"RmRHTnNHupMmRkjhYVC2"},{"division":"","round":"5","infoSlide":"","link":"","tournamentID":"XzAs4cMVeW91DHEgxF0k","topic":{},"language":"English","content":"THBT Supreme Court justices should adopt Originalist stances in applying constitutional law.","id":"RmRz20SBorZpOEA4bihs"},{"content":"TH as Socrates would not have drunk the hemlock.","tournamentID":"U2WbXKmpxuh7OC6qZ1zX","link":"","infoSlide":"","round":"Open_Final","topic":{},"division":"","language":"English","id":"RmW1kBlZsxwwvzqTfMjU"},{"content":"You are an innkeeper. It is approximately 0BC. The King has issued an edict requiring all newborns to be handed to his soldiers in pain of death. You know of such a newborn, he is in your inn’s stable. You suspect the child may be sacred to your God. This house would hand over the child.","division":"","link":"","round":"5","tournamentID":"bxhnmh9CZq21XJcRU2BX","language":"English","topic":{},"infoSlide":"","id":"RmYC7IA3GUcMk6uUXAz2"},{"infoSlide":"","tournamentID":"3thiHP0WT1SpBvjVmMFz","content":"THBT the LGBTQ+ Community should include Side B Christians.","round":"Open_Semi","language":"English","topic":{},"division":"","link":"","id":"RnLeL0KuVbXMQmT89E5u"},{"content":"THS the rise of homeschooling among minority communities.","round":"1","division":"","infoSlide":"","topic":{},"link":"","tournamentID":"TAVBVNzO0c2PrQ44iAyC","language":"English","id":"Rnp5BZjTzcMIeDUOCxtr"},{"topic":{},"round":"4","tournamentID":"8ayi1XeWc8ZG8jPzG8bt","division":"","infoSlide":"","content":"THBT Barack Hussein Obama should call off the prosecution of NSA whistleblower Edward Snowden.","link":"","language":"English","id":"Ro8HwHWE11GrPdvnrHnS"},{"content":"THW abandon the use of Hierarchical Diversity Targets.","infoSlide":"","language":"English","division":"","round":"1","tournamentID":"myGQJSUNqcxcCjm3bONn","link":"","topic":{},"id":"RoCHuzf3JQW85iephZUO"},{"division":"","link":"","content":"THBT local governments in developing countries should allocate significant portions of their budget via Participatory Budgeting.","topic":{},"infoSlide":"","language":"English","tournamentID":"YbdPFTE9FbO3iQjZo87D","round":"Open_Octos","id":"RoY1YfUOkLuFjMsJciit"},{"infoSlide":"","division":"","topic":{},"tournamentID":"riEZk6ypdW0s5dnVIggc","round":"Open_Semis","content":"THBT the State should give everyone an equal salary, paid for by the government, even if they are unemployed.","language":"English","link":"","id":"Rp5fREo9Fp6gTGlt44vI"},{"topic":{},"division":"","content":"THBT university students should be required to work in their countries of origin for a temporary period after graduation.","language":"English","infoSlide":"","tournamentID":"DNe0c1xNBVoG02MsO66g","round":"2","link":"","id":"RpT3KbST9TaVvH0MNu43"},{"tournamentID":"exPe8nnWDA3806gTTyfK","infoSlide":"","division":"","topic":{},"link":"","content":"TH, as Prometheus, would snub mankind.","round":"4","language":"English","id":"RpT7H9l9lh03b7hZEgcF"},{"link":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","division":"","topic":{},"language":"English","infoSlide":"","content":"That we oppose the medicalisation of learning disabilities.","round":"1","id":"RpgzXz7h1pxvQleMwEbY"},{"round":"Open_Semis","tournamentID":"FYOADGgnZTJQdU2kOcYb","division":"","language":"English","infoSlide":"","content":"THBT states should prioritise the lives of their own soldiers over those of enemy non-combatants.","topic":{},"link":"","id":"RpwyHOCI6H1LuBvZW0nT"},{"infoSlide":"","round":"1","division":"","link":"","language":"English","topic":{},"tournamentID":"GQttZR3FjAIw20Ek36nP","content":"THW create a permanent seat for the Travelling Community in the Dáil.","id":"RqUH7dYvqzZjfvcHKNaK"},{"content":"That as the Catholic church we should deny communion to politicians who vote contrary to its teachings.","topic":{},"infoSlide":"","tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","division":"","round":"3.1","link":"","language":"English","id":"RqewU2x0QM6RDln2BgtJ"},{"topic":{},"tournamentID":"TAVBVNzO0c2PrQ44iAyC","division":"","infoSlide":"","content":"THS genderless parenting.","language":"English","round":"Novice_Finals","link":"","id":"RrH8lI4EGoMPxZu1633M"},{"round":"4.2","content":"As a juror, this house would in no circumstances consider nullification.","division":"","language":"English","tournamentID":"bvHOR7Oow9PPlKPlA2BT","infoSlide":"","link":"","topic":{},"id":"RroksQGoRYuOcOklHnkw"},{"division":"","content":"THS the continued remilitarisation of Japan.","tournamentID":"zbDMNQdzWmUf0FHPwYDO","infoSlide":"","topic":{},"link":"","round":"4","language":"English","id":"RsrtkpixWHktKtZVWwSr"},{"content":"THW ban imports from countries where workers do not have the liberty to form unions.","tournamentID":"2XJwkUOw6JeegMJHT6Hl","link":"","division":"","infoSlide":"","topic":{},"round":"5","language":"English","id":"RtPpcBG3keXbwnZsk8d1"},{"division":"","topic":{},"link":"","round":"Open_Quarters","infoSlide":"","tournamentID":"a40eH2E5w4GGnWQ3oDT6","language":"English","content":"TH supports the creation of women only economic zones in Saudi Arabia.","id":"RtRXVb9Rrz2W9ToHaa9v"},{"language":"English","round":"1.3","content":"THBT it is only justifiable to leak classified information when that information details clearly illegal government conduct.","tournamentID":"bvHOR7Oow9PPlKPlA2BT","division":"","topic":{},"link":"","infoSlide":"","id":"Rtf3ZPVhfg4XANKS3GyB"},{"division":"","language":"English","infoSlide":"","link":"","content":"THW reinstitute the Czecho-Slovak federation.","tournamentID":"iFjWzR2mR3mBo4zzvGeZ","round":"1","topic":{},"id":"RtwbAvms6bmF49dyBFY4"},{"language":"English","round":"Open_Semis","topic":{},"division":"","tournamentID":"KpispxU2MtVt41R9j5bV","link":"","infoSlide":"","content":"THW require all companies over a certain size to be fully publicly listed.","id":"RufyxIrNIZJWEqvCe8jx"},{"topic":{},"language":"English","link":"","round":"Open_Final","content":"TH Regrets the strong social norms in favour of lifelong monogamy.","tournamentID":"W8zmuuOkdBsEHQw2r0RP","division":"","infoSlide":"","id":"RvNFyMG1VBEX78iIHPgy"},{"topic":{},"content":"This house believes that national sporting teams should reflect the diversity of the national population.","language":"English","round":"1","infoSlide":"","division":"","tournamentID":"Biz1VRjjdg8eWbm4NJr3","link":"","id":"RvY1HX51esn2A9xDdaJl"},{"round":"4","tournamentID":"DYYa510cEyzz1viLavRR","content":"THS vigilantism in areas of severe socio-economic deprivation.","language":"English","link":"","division":"","topic":{},"infoSlide":"","id":"RvvhsRNUm4rnK9KVzhnD"},{"tournamentID":"RautsrmlhwL2BBMyTRVG","division":"","topic":{},"language":"English","link":"","round":"Novice_Finals","content":"THW prevent people from signing up for a one-way mission to Mars.","infoSlide":"","id":"RwxKCkMIBaVThTP7vfws"},{"round":"3","content":"THBT Western governments should buy the freedom of slaves.","topic":{},"division":"","infoSlide":"","tournamentID":"B2zJ5QeyI7MVcboS7m4U","language":"English","link":"","id":"RxC6OuDfbNsw9L01MntO"},{"tournamentID":"UfGg9gZEXlU744RWE1Y1","division":"","topic":{},"link":"","language":"English","content":"THW nationalize and provide public access to the Metadata being gathered by online multinational companies.","infoSlide":"","round":"Open_Final","id":"RxhdiZMw0UphFljsMq1u"},{"infoSlide":"","tournamentID":"hlf4hP8CehYHd5yHET3L","topic":{},"link":"","round":"3","content":"Assuming it is technologically possible, this house would require individuals in liberal democracies to reveal their actual identity when communicating on the internet.","language":"English","division":"","id":"Ry6bJ3UMlnJc48m8XJzS"},{"content":"THW encourage its citizens to break laws in other countries that violate human rights.","link":"","language":"English","tournamentID":"DPlum9M6fh8xjiyYGBxO","topic":{},"infoSlide":"","round":"3","division":"","id":"Ry7bONNvGOsJf42MTOhu"},{"content":"Assuming feasibility, THW mandate a central global authority to control food markets (supply, production, price, etc.)","link":"","tournamentID":"xAdc6R4uC1xkQxvmPedU","infoSlide":"In 2020, the World Food Programme (WFP) was awarded the Nobel Peace Prize for its efforts in combatting hunger. Globally, the agricultural industry produces enough food to meet the energy needs of all people alive today. However, the UN estimated that 815 million people, over 10% of the world's population, are suffering from chronic undernourishment; although technological advances have increased production, food shortages remain an issue.","language":"English","round":"3","division":"","topic":{"environment":{"check":true,"title":"Environment"}},"id":"RyYEAVm8DEjWSkc4xqTQ"},{"content":"THW replace the Bundestag by permanent “delegated voting”.","language":"English","division":"","topic":{},"infoSlide":"","link":"","round":"Open_Semis","tournamentID":"IKVZuvI9noj2HK4GNxgS","id":"Rz9hwbXvhOcATAuOkrEk"},{"round":"3","language":"English","infoSlide":"","content":"THBT the USA should fund Private Military Companies (PMCs) to fight the war on drugs in Mexico.","tournamentID":"yrT248aRWPJC4Vb6MsRt","link":"","division":"","topic":{},"id":"RzIvtrfgA3mdgdobGry8"},{"content":"The Twin Towers were a recognizable part of the famous New York skyline. On the 11th of September on 2001 they were destroyed by a terrorist attack. In 2011 the New York City Office commissioned the building of the Freedom Tower on Ground Zero. Motion: THW have instead rebuilt the world trade centre to original specifications, but one floor higher.","language":"English","link":"","round":"Open_Final","topic":{},"tournamentID":"ZQQO7Q0LBTeQnU1Rb8fK","infoSlide":"","division":"","id":"RzlbwvxhhwngrKbNpYbD"},{"link":"","round":"Open_Final","content":"This house would ban anti EU parties from participating in the EU elections.","tournamentID":"TPp4G8lciZrkipphcyZG","infoSlide":"","topic":{},"division":"","language":"English","id":"S06ZBcnByWbkwGT4OGcj"},{"topic":{},"content":"THP a world where, starting tomorrow, women can shoot lightning from their fingertips.","link":"","division":"","tournamentID":"pFBjdI3lKCaS5TpjBKVP","round":"3","infoSlide":"","language":"English","id":"S0GttkNgTet5P4oXGm7F"},{"round":"1","topic":{},"infoSlide":"","division":"","link":"","tournamentID":"7abz3Ipf2RhGUArcqBwg","content":"Should the state provide drug checking options in all areas with higher than average drug use?.","language":"English","id":"S0Lq9HcBcOI7wQkVP0wf"},{"language":"English","link":"","division":"","infoSlide":"","topic":{},"tournamentID":"k3ijyeg4qJCcExIHRlhv","content":"THO artwork that humanizes pro-regime germans during the Second World War.","round":"Open_Final","id":"S0MNQSzIpwKwTqZBJler"},{"round":"4","infoSlide":"","link":"","division":"","topic":{},"language":"English","tournamentID":"4XkvQJQxtOHIIF6sH97v","content":"THW break up banks like Goldman Sachs, JP Morgan Chase and HSBC, that are deemed \"too big to fail\".","id":"S0vC66VMqpLg2V5sW3zg"},{"link":"","topic":{},"round":"ESL_Semis","content":"THW not allow members of the royal family to serve in active combat.","tournamentID":"Xt0UV62VgaP360hvHqWG","language":"English","infoSlide":"","division":"","id":"S1guGalHpZqjt0EAtjrw"},{"link":"","language":"English","topic":{},"division":"","tournamentID":"H8XCoxhHfhkNSTYxwR42","content":"TH, as President Obama, would grant a presidential pardon to Edward Snowden.","round":"Open_Final","infoSlide":"","id":"S1nyq76wIND2EpxkaEng"},{"infoSlide":"","round":"Open_Final","content":"THR the concept of undonditional love.","tournamentID":"mUHCV4981T5cYALNdYBk","link":"","division":"","language":"English","topic":{},"id":"S1sdHjB8OXqEgdSv9st7"},{"division":"","infoSlide":"","topic":{},"language":"English","content":"TH, as the European Union, would suspend Hungary's EU-membership if they do not reform within a set period of time.","round":"2","link":"","tournamentID":"CIIwPxm7lqd3hGr5g8JP","id":"S3cWupjhbsWTQml9fmPn"},{"language":"English","round":"Open_Semi_2","infoSlide":"","tournamentID":"eECtQ29Kd45vZq8n2XAr","content":"THW ban tobacco.","topic":{},"division":"","link":"","id":"S5YqCrSlDPS6uYHDQfyd"},{"topic":{},"division":"","content":"THW make abortion mandatory in cases of severe medical conditions that lead to short and painful lives.","language":"English","tournamentID":"owvW9MKLd7Sqv8hm9HMq","link":"","round":"Open_Final","infoSlide":"","id":"S6CA9LstR0y2XbHDdiA3"},{"round":"Open_Final","link":"","tournamentID":"nFeuKMAFpK6Amwi6OMai","content":"Should same-sex couples receive full adoption rights?.","topic":{},"language":"English","division":"","infoSlide":"","id":"S6Xs2UrrWhIPa3ge5VS0"},{"division":"","tournamentID":"owvW9MKLd7Sqv8hm9HMq","link":"","infoSlide":"","language":"English","round":"4","content":"THW introduce corporal punishment.","topic":{},"id":"S6sIEUkymrOebE8im1lq"},{"round":"Open_Quarters","content":"This House regrets the demonization of Donald Trump.","topic":{},"division":"","link":"","infoSlide":"","language":"English","tournamentID":"db8a4cSMVYVFuxZgcf0y","id":"S7D6aKs6rAAmptzgaAlo"},{"topic":{},"tournamentID":"mzvnxBrGLKyjonGHD82N","content":"THW die for a cause.","language":"English","round":"Open_Semis","division":"","link":"","infoSlide":"","id":"S9JYi9YLuDJ2d0SRPg96"},{"link":"","round":"4","topic":{},"language":"English","division":"","infoSlide":"","content":"THBT developing nations should hold the Catholic Church financially liable for the medical expenses of Catholic HIV/AIDS victims in areas where the church campaigns against condom use.","tournamentID":"368JyxQNhxMm3WEWlba7","id":"SARjdycBP4haK9ocAE0g"},{"round":"3","language":"English","division":"","content":"This house regrets that President Obama did not enforce the 'red line' in Syria.","infoSlide":"","link":"","topic":{},"tournamentID":"jU6ofoRVsACbu04pXrg6","id":"SAuJKzBawsFbQVb5L4NM"},{"division":"","round":"2","topic":{},"content":"THW ban all traveling in and out of epidemic countries under the light of outbreaking infectious virus.","language":"English","link":"","tournamentID":"m97biSF63NO9Jn1yenBI","infoSlide":"","id":"SBSFfk7uYZoOWFSDZfUE"},{"infoSlide":"Chịu trách nhiệm là thực hiện đúng nghĩa vụ theo pháp luật vì một hành vi hoặc sự kiện cụ thể nào đó. Thông tin giả: đây là loại tin tức bao gồm hầu hết là thông tin sai sự thật và được cố tình phát tán qua các phương tiện truyền thông truyền thống cũng như mạng xã hội/internet.","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"round":"","link":"","language":"Vietnamese","division":"","content":"Chúng tôi sẽ bắt các công ty mạng xã hội chịu trách nhiệm cho sự phát tán thông tin giả.","tournamentID":"LlsxibXteGBGML9aitY2","id":"SD0T44af1nyWlpdDpP4Z"},{"tournamentID":"nDjxmwMznw4ZJasK7Taj","infoSlide":"","round":"Novice_Final","division":"","link":"","content":"THB in the use of fear to instill values in children.","language":"English","topic":{},"id":"SD2UXqVOaFiv1zozL9Pu"},{"tournamentID":"Cx2GIJEWrhOBR3DTErNu","link":"","round":"Open_Final","topic":{},"division":"","infoSlide":"","content":"THBT the African Union should refuse to cooperate with the ICC and instead pursue their own means of justice.","language":"English","id":"SEZoKnwHMpWI1WLaiIrh"},{"infoSlide":"","division":"","topic":{},"tournamentID":"K6vtfx7dBNzsAtTkNiF1","language":"English","link":"","round":"Open_Semi","content":"THP a world in which African nations persued aggressive trade deals with China at the expense of all western aid.","id":"SEtvfDhBqxf5lWooBTR1"},{"topic":{},"tournamentID":"4XrkYxI1Z9BN4Rn7DC4S","content":"THBT pieces of major social legislation, notably gay marriage, should be passed only by referendum.","division":"","infoSlide":"","link":"","language":"English","round":"Open_Final","id":"SFV9vv4gk8KQdZA25pwe"},{"tournamentID":"2C0TX71TRjIIOcsN7CbL","content":"When restoring works of art, this House would restore to appear as close as possible to how they appeared when they were originally produced, rather than appeal to contemporary aesthetic tastes.","language":"English","division":"","topic":{},"link":"","round":"5","infoSlide":"","id":"SFk8tOq1LnDdvIfGahtM"},{"round":"1","content":"THBT adults who are not on the organ donor list should not be eligible to receive organ transplants.","division":"","topic":{},"link":"","tournamentID":"Sdm6UfNcXB7Ppj4BkdLe","language":"English","infoSlide":"","id":"SFlCoHvk1YdG4iP0ICta"},{"tournamentID":"g87X9iRsC0CxxtZdAjMP","language":"English","round":"Open_Quarters","content":"THBT cities should not use investment incentives to attract businesses.","link":"","topic":{},"division":"","infoSlide":"","id":"SFoLaOaXKloQZy1P2JIy"},{"round":"Open_Octos","infoSlide":"","language":"English","content":"This house would ban advocacy for religious belief in public places.","division":"","link":"","tournamentID":"t1jiRXU99xeGdoIkTeyF","topic":{},"id":"SGtvE27NFbNmOoh0KCvk"},{"infoSlide":"","language":"English","round":"ESL_Octa","link":"","topic":{},"tournamentID":"5Qomv7BFHTKmY4PchwDr","division":"","content":"That we support the creation of children's literature which teaches that people are neither good nor evil.","id":"SH7Sz0HrS8Eq3D7a4zhj"},{"topic":{},"content":"This House Would Establish Brothels on Military Bases.","tournamentID":"6GQGSjlsY612FPwbXRbB","infoSlide":"","link":"","language":"English","round":"2","division":"","id":"SHT7IjyhtvMISRQWkxDO"},{"tournamentID":"Nzien6R9RXvOTrNMJsza","infoSlide":"","round":"1","topic":{},"language":"English","division":"","content":"THW abolish all legislatively set sentencing guidelines.","link":"","id":"SIPaubWcP0Z0GUiKamJ9"},{"topic":{},"link":"","content":"TH supports the decision of female athletes to use their sexuality to market themselves.","infoSlide":"","round":"1","language":"English","tournamentID":"BsGevifhMX1weZjFgh7y","division":"","id":"SIYcM7Bcq3Oi9uPPiaMZ"},{"infoSlide":"","link":"","topic":{},"language":"English","content":"Assuming that it would be illegal for anyone to become stateless, THW create a marketplace for the buying and selling of citizenship between private individuals.","division":"","tournamentID":"ZClJskShp09gm6WCITGC","round":"Open_Final","id":"SJiHwBXEY4ejN2zqfOKg"},{"content":"This house believes the ICC should use bounty hunters to capture and, if necessary, kill indicted war criminals.","division":"","round":"Open_Final","language":"English","infoSlide":"","topic":{},"link":"","tournamentID":"2oCOivyDrGd4jrwjPjKk","id":"SKB4TJpEYS3RiU4DMjuP"},{"link":"","tournamentID":"0bpNzjTgN71TZQEkHTak","division":"","round":"1","infoSlide":"","language":"English","content":"THW create public housing for the poor in wealthy areas.","topic":{},"id":"SKz1fWBgRANf4uBE1dC1"},{"content":"THB former colonial powers should maintain a presence in former colonies,in the interest of benefiting those colonies.","language":"English","topic":{},"link":"","tournamentID":"2b9xHhyeUjald2Iu585W","round":"4","infoSlide":"","division":"","id":"SL52t7Ns2rbDyCkoYu3U"},{"tournamentID":"C4Vv4FZW36V7ONi9kULg","infoSlide":"","round":"2","link":"","language":"English","content":"TH regrets the influence of computer games on the next generation.","topic":{},"division":"","id":"SLSz0uD71eq9XgYUq1MS"},{"tournamentID":"KauhYz2zVxnSCnoC8XMr","link":"","infoSlide":"","content":"THBT governments should not regulate the use of any new currency.","division":"","topic":{},"language":"English","round":"4","id":"SLcUMSksZMowqUoXxI67"},{"content":"THP the notion that people should appreciate the differences between themselves and others instead of trying to find common values.","division":"","round":"","link":"","infoSlide":"","tournamentID":"3B01KdqnCVzQEVjKcHiT","language":"English","topic":{"hr":{"check":true,"title":"Human Relationships"}},"id":"SLwbvq7EbZAcPxyNmnaQ"},{"round":"1","language":"English","link":"","content":"THW Allow athletes to compete in the gender category they self identify with.","topic":{},"infoSlide":"","division":"","tournamentID":"Jy8kbmlTXWgf8pRg3dUy","id":"SLzM1C2ivNRRRSs5YCCq"},{"topic":{},"content":"That we should allow individuals to enter contracts specifying conditions on their relationship e.g. salary level, weight limits, frequency of sex.","language":"English","infoSlide":"","link":"","tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","division":"","round":"5.3","id":"SMoDFVJlXOGM2e4hBiRC"},{"content":"THBT liberal states should fund the hacking of infrastructure designed to limit freedom of speech in authoritarian states.","division":"","topic":{},"round":"4","infoSlide":"","tournamentID":"6UClYEkoQLViAru2xei4","link":"","language":"English","id":"SNGuybt6q20zsbH6m3nm"},{"division":"","language":"English","link":"","tournamentID":"mf3XudZleydnsr0lEvkg","round":"Open_Final","infoSlide":"","content":"THS the conception of morality as a scientifically determined innate characteristic.","topic":{},"id":"SNUADIR0yWs9l8xMREhO"},{"tournamentID":"mf3XudZleydnsr0lEvkg","link":"","topic":{},"content":"THW remove all patents on green technology.","infoSlide":"","division":"","round":"Open_Semi","language":"English","id":"SNjr3lei9sZHlxXu6tBr"},{"tournamentID":"t1jiRXU99xeGdoIkTeyF","language":"English","round":"1","infoSlide":"","content":"This House believes that post-genocidal regimes should destroy all places of extermination (for example, death camps).","division":"","topic":{},"link":"","id":"SNkKRUzgM574EGrCVGZq"},{"content":"THW allow companies to buy the rights to govern economically failing cities.","division":"","round":"Open_Final2","tournamentID":"nKWTDNECNNvbMxNcdVJM","language":"English","topic":{},"link":"","infoSlide":"","id":"SNopyoc16vy2LiRqVBdW"},{"infoSlide":"","link":"","language":"English","division":"","round":"Open_Final","topic":{},"content":"THB in the right to bear arms.","tournamentID":"B2zJ5QeyI7MVcboS7m4U","id":"SOAjTKuzhNv6wXI9Coig"},{"division":"","tournamentID":"CIIwPxm7lqd3hGr5g8JP","topic":{},"language":"English","infoSlide":"","content":"THW allow virtual child pornography.","link":"","round":"4","id":"SOrhW7g45VRAx8wg5PCD"},{"division":"","topic":{},"link":"","language":"English","tournamentID":"4PekAtlXMCWdSTTJuMol","content":"This house believes that the Democratic Party should move toward socialism in candidate selection and policy platform.","round":"3","infoSlide":"","id":"SPEEjbt8KM3b1p4CqBAB"},{"content":"Should wearing national symbols like flags, colours, make up, costumes and sports shirts be banned during international sport events?.","division":"","infoSlide":"","tournamentID":"5mJg23unORtxSJCvBzd9","topic":{},"language":"English","round":"3","link":"","id":"SPHx25ZTH00zH5ykwItH"},{"infoSlide":"","topic":{},"round":"ESL_Quarters","link":"","language":"English","division":"","content":"This house, as the Chinese Communist Party, would lift all restrictions on foreign investments in China, except restrictions critical to national security.","tournamentID":"vS5BTr7lDW40h5Qw31FI","id":"SPZFfZ3m3UhASLymrXvR"},{"link":"","round":"Open_Semi","infoSlide":"","division":"","language":"English","topic":{},"tournamentID":"6AnUBd9SLIBHmD9Uy5dS","content":"THBT the threater and musical community should abandon the \"no-change\" norm.","id":"SPxxCWaQvNRQG04dpUJK"},{"content":"THBT parents should conceal their use of the \"Happy Families\" service from their children.","round":"","link":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","infoSlide":"In 2050, the company \"Happy Families\" invented an AI parent that can take care of children like their real parents and the children cannot distinguish.","language":"English","topic":{"hr":{"title":"Human Relationships","check":true}},"division":"","id":"SQWxlHP2rfiIiEqsfMEa"},{"division":"","content":"THW not allow religious proselytization in the developing world.","language":"English","round":"1","tournamentID":"y7meTgIUCGSo7UqVkUQq","infoSlide":"","topic":{},"link":"","id":"SREmQS3WydeIZv9jaGV7"},{"link":"","infoSlide":"","round":"4","division":"","language":"English","content":"from the view of Iran: THW Build a Nuclear Weapon.","topic":{},"tournamentID":"BjyPWHMlV10O4VN8B1XE","id":"SRGjFrV5hBD3CiO3OyWb"},{"language":"English","round":"3","link":"","infoSlide":"","tournamentID":"MqWoP2HpVv77T14aPCqR","division":"","content":"THW choose a comprehensive education system where the only selection process is geographical location and NOT intelligence, ability or talent.","topic":{},"id":"SRQUJB8AkLM6WSwHAywP"},{"division":"","topic":{},"round":"4","link":"","language":"English","infoSlide":"","tournamentID":"eQMzhfh3p9amGITvLICM","content":"This House believes that Italian high school students should be allowed to choose their own study subjects from those offered by the school.","id":"SRTynolgZz9gROedsquU"},{"language":"Vietnamese","topic":{"sports":{"check":true,"title":"Sports"}},"tournamentID":"sgcqNV5ntCoa4H8glRBu","round":"","link":"","content":"Chúng tôi sẽ yêu cầu các CLB thể thao chuyên nghiệp có ít nhất 50% cổ phần (nắm quyền quyết định chính) sở hữu bởi người dân địa phương.","division":"","infoSlide":"","id":"SRkWYAjF1pKUlDmRxbd1"},{"infoSlide":"","topic":{},"link":"","division":"","language":"English","tournamentID":"XnmecTVfWWNVfWZaANER","round":"8","content":"THR the rise of call-out culture.","id":"SRoMgZZDfKb5bisIrov8"},{"infoSlide":"","language":"English","topic":{},"division":"","link":"","round":"Open_Final","content":"The Conservative Party is the main centre-right party in the UK. The Conservative Party is wildly unpopular in Scotland with just one seat in Westminster Parliament, despite winning many seats in England. Polls of Scottish voters see them expressing economic and social views generally in line with the majority of UK voters. It has been proposed that the Conservative Party in Scotland split with UK Conservative Party. The new party would have an independent policy platform. Motion: In the event of a 'no' vote in the independence referendum, THBT the Scottish Conservative Party should split from the UK Conservative Party.","tournamentID":"Ben6dcgLsdnzfbpJrHhp","id":"SRyjiQy20S1p9Z1K2zqH"},{"language":"English","topic":{},"link":"","tournamentID":"1V1INGo8OX49g8hUFTF3","round":"1","infoSlide":"","content":"THW criminalize women that drink alcohol during pregnancy.","division":"","id":"SScZMLsst3b1A9YRUgKJ"},{"division":"","content":"THBT after 50 years of ownership the state should have the right to repossess all works of painting or sculpture for the purpose of public display.","round":"Open_Semis","tournamentID":"QZvopTthxxEkyvHXmzp3","link":"","infoSlide":"","language":"English","topic":{},"id":"STcJmrDyqs75eDkgw39w"},{"content":"This House Regrets cancel culture within progressive movements.","topic":{},"tournamentID":"TXUiH5ezPBItq39Het98","round":"Open_Quarters","language":"English","link":"","division":"","infoSlide":"","id":"STy6V6Kp8xiXDXlzIdK2"},{"topic":{},"tournamentID":"bvHOR7Oow9PPlKPlA2BT","language":"English","division":"","round":"4.1","content":"THW allow jurors to pose questions to anyone testifying.","infoSlide":"","link":"","id":"SU4TG53IXXYV4WsHjbga"},{"content":"THBT a minister must have the background and qualifications associated with that department.","round":"","topic":{"politics":{"title":"Politics","check":true}},"language":"English","division":"","infoSlide":"","link":"","tournamentID":"CJKUeBIUibEtZYahoUQV","id":"SUEdg2WScIeP0ah1lTrR"},{"infoSlide":"","link":"","topic":{},"content":"TH, as the EPP, Would Expel Fidesz.","tournamentID":"SGpBjVPnJkFrJB0hnxYv","round":"Open_Quarters","division":"","language":"English","id":"SV7xB4Ba8CirTjRQtizU"},{"infoSlide":"","division":"","link":"","content":"THBT Canada should allow foreigners to access their right to die policy.","round":"5","language":"English","topic":{},"tournamentID":"KMM87DnmWFjc4UzTdkjp","id":"SVJMQ2adG6seWIOEtwl9"},{"link":"","round":"Open_Semis","content":"THW pardon Bashar al-Assad for all his crimes in exchange for him stepping down from power.","language":"English","infoSlide":"","tournamentID":"PNpMzinCvz3Z9bTJfV9t","topic":{},"division":"","id":"SVMnnb6ZyFnOeZtzES7D"},{"round":"ESL_Final","link":"","infoSlide":"","language":"English","content":"THBT even if human life could be extended indefinitely, society should choose to end their lives at 100 years.","tournamentID":"AKtcioaPMHcBM5C3fCCP","topic":{},"division":"","id":"SVo9fBlvxrECfLDiFvzD"},{"tournamentID":"OqQWJjNQBpGOYwMntw3z","infoSlide":"Giả sử một loại virus zombie có khả năng lây lan mạnh và có thể dễ dàng lây nhiễm một nửa dân số thế giới. Những người mắc bệnh sẽ có trong hai trạng thái: khi không phát bệnh vẫn có nhân tính như người thường; khi phát bệnh hoàn toàn mất đi nhân tính. Tất cả những bệnh nhân này đã được tập trung trong một khu vực riêng.","topic":{"fiction":{"check":true,"title":"Fiction"}},"content":"Chúng tôi sẽ giết tất cả những người bị nhiễm virus zombie này thay vì tiếp tục cách ly họ.","division":"","language":"Vietnamese","round":"","link":"","id":"SWAi5D8cg2fx9bwlMnCc"},{"link":"","infoSlide":"","tournamentID":"S2mG18EWYdh2bPEadyd9","content":"TH as the UK Supports the PM's proposal and would expand the proposal to grant unconditional citizenship to all residents of Hong Kong.","topic":{},"round":"4","division":"","language":"English","id":"SWDQU1tRcbpxurrbVkvO"},{"link":"","infoSlide":"","topic":{},"tournamentID":"Bx1uUqHBcAJ7qAZcUwyz","round":"3","language":"English","content":"TBHT universities that invite congroversial speakers should be required, within a reasonable time frame, to invite a speaker that supports the other side of the controversy.","division":"","id":"SWTUuvgauq9cjDEUTsaU"},{"round":"Open_Semi","link":"","infoSlide":"","language":"English","division":"","topic":{},"content":"That we support the Hollywood Blockbuster model.","tournamentID":"Pt1Z2dTdUinRviVucbZA","id":"SWdkTEfBaGPXLv2i6cMr"},{"round":"4","link":"","infoSlide":"","content":"THB in a state that only provides the most basic services.","topic":{},"tournamentID":"v33DcPMMQZsLJormVjyz","language":"English","division":"","id":"SWj3sA6or7BQh602O51c"},{"infoSlide":"","division":"","topic":{},"tournamentID":"zngB1WF8viOW2uGu6swZ","language":"English","link":"","round":"4","content":"THW require individuals to use all their wealth beyond USD 5 million for philanthropic projects.","id":"SXDQlVcysxlUg4xWCNJ5"},{"topic":{},"content":"This house would hire police personnel in proportion to society’s demography.","link":"","language":"English","division":"","tournamentID":"O8PsW6uDBzwzQZ3zO447","infoSlide":"","round":"3","id":"SXZS574959aIY2t1mTby"},{"tournamentID":"pF81od0IQBmQsiQKDxoc","infoSlide":"","content":"THW take charitable status away from religious institutions that do not teach comprehensive sexual education.","round":"3","topic":{},"division":"","link":"","language":"English","id":"SXkfMNSkfxjqak9XSGFx"},{"content":"THR the rise of the gig economy.","tournamentID":"uqR5rN63m5rX9CiOtJjb","infoSlide":"","round":"3","language":"English","link":"","division":"","topic":{},"id":"SYcKeusOloqFsHuF4DYH"},{"round":"1","tournamentID":"LuNDiT9YYZhQScUmMX82","content":"THBT governments should negotiate with terrorists when their citizens are taken hostage by terrorist groups.","division":"","infoSlide":"","language":"English","link":"","topic":{},"id":"SZVbmPjvPccqlXzoQpfp"},{"topic":{},"tournamentID":"0EfM3HXUbP8eg9asv3MM","link":"","language":"English","division":"","content":"TH regrets that President Obama did not enforce the ‘red line’ in Syria.","infoSlide":"","round":"3","id":"SZeaReTHiHuKVDlN60Ro"},{"tournamentID":"DSFg77BvC9y4FK5pBVIv","round":"17","division":"","infoSlide":"","language":"English","topic":{},"content":"THBT the best is yet to come.","link":"","id":"SZecyEJd09F4hHbDrWm6"},{"infoSlide":"","link":"","content":"THW require all public and private schools to teach Darwin’s theory of evolution as a scientific consensus. [Round 1].","round":"1","topic":{},"division":"","tournamentID":"CjeO3WtFoEPJ0YkMQ3T2","language":"English","id":"SaRXdvHInBH8AQ7rxWAH"},{"round":"Open_Semis","division":"","content":"THR the creation of the Western canon.","topic":{},"infoSlide":"","link":"","tournamentID":"ZQbHv8rs6yqxtH8VBbkr","language":"English","id":"SafhqIsg4gB9je7wlpkP"},{"content":"TH prefers 'an eye for an eye' in modern society.","language":"English","division":"","infoSlide":"","link":"","topic":{},"tournamentID":"KErVXbqRahyWD7ZB1Q1m","round":"4","id":"SajFDfA8n1DqxsbLct6I"},{"tournamentID":"O0uPnjb8M1dIGLUmO4NP","division":"","infoSlide":"","link":"","topic":{},"round":"Open_Final","content":"This House Believes that NATO Should Launch a Retaliatory Nuclear Strike.","language":"English","id":"SeLC8R50DMna5VSlUwZn"},{"division":"","link":"","content":"THBT it is legitimate for states to deny residency to immigrants who openly contradict their predominant values.","round":"4","tournamentID":"1XSX7FHkgfyCn1pjSqbi","language":"English","topic":{},"infoSlide":"","id":"Sh61z2U6rUquKL1w2q1E"},{"round":"3","link":"","tournamentID":"YAsriFfh4M2kLN2FBQPq","division":"","content":"This House regrets the glorification of entertainers by the LGBTQ+ community.","infoSlide":"","topic":{},"language":"English","id":"ShDpITTrAZhV50xRH2Kc"},{"content":"THW ban 24 Hour News Media.","division":"","tournamentID":"02vn4ksQhlUNksv2wu0q","topic":{},"language":"English","infoSlide":"","round":"1","link":"","id":"SjPQ9nNtQfadVNz7fSZ6"},{"tournamentID":"axWwnyCM8L14pVHljukt","content":"THS the creation of similar groups to the Gulabi Gang in Latin America.","link":"","division":"","infoSlide":"","topic":{},"round":"8","language":"English","id":"Sjcd1aawV3yry6OGdcze"},{"infoSlide":"","language":"English","division":"","link":"","tournamentID":"bxhnmh9CZq21XJcRU2BX","round":"6","topic":{},"content":"This house would enforce surrogacy contracts, even if the surrogate mother refuses after giving birth.","id":"SkZZOvhQLTY3uiCLuJ0J"},{"tournamentID":"LJpNoy6NIxtIr7pXj25B","link":"","language":"English","infoSlide":"","content":"This house supports health insurance companies offering optional lump sum payments to terminally ill patients who choose to forgo expensive life extending medical treatments.","division":"","round":"4","topic":{},"id":"SkuQqpMFhIeq1ZsuyQ3Z"},{"language":"English","topic":{},"round":"Open_Quarters","infoSlide":"","tournamentID":"Nzien6R9RXvOTrNMJsza","content":"THBT the United States should leave Iraq.","division":"","link":"","id":"Sm2O9tz7ETO8FVmpmMH8"},{"tournamentID":"6UClYEkoQLViAru2xei4","link":"","topic":{},"division":"","language":"English","infoSlide":"","round":"5","content":"This House regrets the increasing presence of nihilism in popular culture (eg. BoJack Horseman, Rick and Morty, Nihilist Memes etc.).","id":"SmG1blfQSMePntnrO6J9"},{"language":"English","round":"Open_Semis","division":"","topic":{},"tournamentID":"RlGrdg8aVMD5XQVuPN3W","link":"","content":"In today’s world, THW choose a craft rather than the university education.","infoSlide":"","id":"SmG9phLXG77k8FHXQZQH"},{"division":"","language":"English","topic":{},"infoSlide":"","link":"","round":"1","content":"THBT universities should not be allowed to patent technology they develop.","tournamentID":"yOWDiguNGQHwr42mgnqv","id":"SmOjhc59WcJ3Bqp7oNjF"},{"tournamentID":"ZQbHv8rs6yqxtH8VBbkr","infoSlide":"","topic":{},"round":"4","link":"","division":"","content":"THBT the introduction of the Euro was not in Germany’s interest.","language":"English","id":"SmW0v1C8bAUigHKFag6R"},{"tournamentID":"KpispxU2MtVt41R9j5bV","topic":{},"language":"English","link":"","division":"","round":"Open_Semi","content":"THW force large companies above a certain size to be fully publicly listed.","infoSlide":"","id":"SmbCwh81xPOSDx07DQiq"},{"link":"","content":"Chúng tôi phản đối sự phát triển của quan niệm “Tình yêu sẽ chiến thắng khoảng cách”.","tournamentID":"FiF24Yc0spiBkvTxiYwD","infoSlide":"Phim “Hạ Cánh Nơi Anh” kể câu chuyện tình yêu giữa một nữ doanh nhân thành đạt Hàn Quốc và một quân nhân Triều Tiên. Sau nhiều khó khăn, cuối cùng người quân nhân đã theo đuổi đam mê của mình là nghệ sĩ piano. Từ đó, mỗi năm, họ lại gặp nhau một lần trong chuyến lưu diễn của anh quân nhân đến Thụy Sỹ.","language":"Vietnamese","topic":{},"division":"","round":"3","id":"Smuq0q31UhvKwLWUBErm"},{"link":"","infoSlide":"","language":"English","round":"Open_Semis","division":"","content":"THW charge a (prohibitively) high customs duty on imports of solar cells from China.","topic":{},"tournamentID":"YRWxNK3sQq47UacBwpjn","id":"SojqMVnRtr5ipPhr5o7C"},{"tournamentID":"0sEnEupsuf6b6sQ6tqCB","content":"“THB Feminism has Run it's Course”.","link":"","division":"","infoSlide":"","language":"English","topic":{},"round":"Open_Semi_3","id":"SolB8PqSQZFurcktVdRY"},{"topic":{},"round":"2","infoSlide":"","link":"","content":"THBT the citizens of countries under military occupation of a western liberal democracy should be granted the right to vote in the elections of that occupying state!.","division":"","language":"English","tournamentID":"UWHKNxWBfNyw2FCQAxdk","id":"SorHkqC6QkctFS7eZCpH"},{"division":"","tournamentID":"FAvjs63H5vSbEY0I97Zs","link":"","infoSlide":"","topic":{},"round":"Open_Final","language":"English","content":"THBT Rolling Stone should not have portrayed Dzhokhar Tsarnaev in a sympathetic manner.","id":"SpN6YOIpcIm6kmi1PoTN"},{"topic":{},"round":"2","content":"This House Supports the rise of websites that provide free access to open source and pay-wall protected academic resources.","infoSlide":"","link":"","tournamentID":"8EaRfOcTe47s5VRlQeNv","language":"English","division":"","id":"SpyFHQOTzo0wH5XcYnij"},{"topic":{},"content":"THW create a small network of public schools accessible only to students with outstanding academic backgrounds.","tournamentID":"WcTEqzk0ckiyLGdszyy6","link":"","round":"Open_Semi_2","infoSlide":"","language":"English","division":"","id":"SrDhikBAlXkqulR7WiNt"},{"topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"}},"round":"","tournamentID":"D8AtyrmDZV48giPFtym5","language":"Vietnamese","infoSlide":"","division":"","content":"Chúng tôi tin rằng các tổ chức hoạt động nữ quyền không nên phê bình các chính trị gia nữ vì góc nhìn của họ về các vấn đề liên quan đến phụ nữ.","link":"","id":"SrK9ldEnfWdCOgMfzFUr"},{"topic":{},"round":"4","link":"","infoSlide":"","language":"English","content":"THBT non-LGBT+ people should not play LGBT+ roles in TV/film (e.g. that a lesbian role should only be played by a lesbian).","division":"","tournamentID":"6mCNGJYhhrCUYIhAm6FN","id":"Ss29F0q7FOY1TTXSyGQm"},{"link":"","tournamentID":"7lMrN2aiwSzD5rzPFwHz","language":"English","division":"","topic":{},"content":"THW choose immortality over fertility.","round":"1","infoSlide":"","id":"SsDuu4Sqt2n5kq4XsAtG"},{"link":"","language":"English","division":"","tournamentID":"I5iTcVABscgCPPKzr8Oa","topic":{},"infoSlide":"","content":"THBT it is in Mahathir's interest to cede leadership of the Opposition to Anwar Ibrahim.","round":"Open_Final","id":"Ssa6jXEy1YdBYgVDdgGC"},{"division":"","language":"English","infoSlide":"","link":"","tournamentID":"Biz1VRjjdg8eWbm4NJr3","topic":{},"round":"ESL_Quarters","content":"This house believes that domestic courts should try foreign nationals who commit war crimes abroad.","id":"Ssjh9YLjRmWkMeYpraCp"},{"infoSlide":"","topic":{},"division":"","language":"English","tournamentID":"keyU5X5APEvFXLaZwxeM","link":"","round":"Open_Final","content":"TH regrets the acceptance of Atheism in the form promoted by Richard Dawkins in The God Delusion.","id":"StrBZatk9XiSMS3ygIk6"},{"content":"This House believes that when multi-national corporations conduct any business in Western states, these nations should enforce their environmental standards at all stages of production.","infoSlide":"","tournamentID":"WqXUc7EMDvkqqg3BVCtf","round":"2","language":"English","division":"","topic":{},"link":"","id":"StzRX8PoECJeNqKAnSgz"},{"content":"THBT when systemically important financial institutions are in need of financial assistance during recessions, creditors, rather than the government, should be liable.","topic":{},"tournamentID":"SGi6PbXyMszZpWzTP1JN","language":"English","infoSlide":"","link":"","round":"2","division":"","id":"SvP6FmqnXGlgUk1r2oU1"},{"language":"English","infoSlide":"Lethal autonomous weapons are a type of autonomous military robot designed to select and attack military targets (people or installations) without intervention by a human operator.","content":"THO the development of lethal autonomous weapons.","link":"","topic":{},"tournamentID":"XnmecTVfWWNVfWZaANER","round":"2","division":"","id":"SwI6yhmXrKOZRGe9X5l0"},{"topic":{},"round":"Open_Semi","content":"THBT the general economic policy of countries should aim to increase Gross National Happiness rather than standard economic measures (eg, Gross Domestic Product).","language":"English","tournamentID":"xv0FPHxLsij7LUJlUmBy","link":"","infoSlide":"","division":"","id":"Szp3ScaEcuYXLeEeDNUM"},{"language":"English","content":"This house supports the use of “eye in the sky” policing in urban areas with high crime rates.","topic":{},"link":"","division":"","round":"1","tournamentID":"dF61f0kc1Q0KQCGUhM1l","infoSlide":"","id":"SzzMrbaFzOG0UucD49p0"},{"topic":{},"division":"","link":"","round":"Open_Semi","content":"THBT it is in the interest of the Aam Aadmi Party to join in a coalition with the Indian National Congress before contesting in the next general election.","language":"English","tournamentID":"Sf18naS6qmQzDSIMNRFV","infoSlide":"","id":"T0Jz0tvihY0X0GbzU6LV"},{"content":"This house would apply all libel law to content produced on social networking sites.","link":"","infoSlide":"","tournamentID":"XryJ0KVA6GiVngJthv3K","topic":{},"division":"","language":"English","round":"4","id":"T11ZOzF3YNUFNzIyxYIw"},{"language":"English","content":"THW abolish the use of referenda.","infoSlide":"","topic":{},"round":"1","tournamentID":"ZQbHv8rs6yqxtH8VBbkr","link":"","division":"","id":"T1EergBIFkPucJwaCwtA"},{"topic":{},"infoSlide":"","tournamentID":"o2dx25z3TGRcLxLt33Qk","language":"English","round":"1","content":"THW compel doctors to report suspected cases of domestic abuse to the police.","division":"","link":"","id":"T1Ib9ww5tlnSJnt5K9Jt"},{"content":"This house believes that feminists should criticise decisions made by women that seem to entrench patriarchal norms even where women claim it is their choice (e.g. foregoing careers to raise children, having cosmetic surgery).","topic":{},"link":"","division":"","round":"5","language":"English","infoSlide":"","tournamentID":"VQZZXpisO7Sjz81KUlh9","id":"T2yhl4AKCNhck2bMSVXn"},{"topic":{},"infoSlide":"","round":"3","link":"","content":"THR the rise of “Sharing Culture”.","division":"","tournamentID":"6KzwZLwpFJv7ICEsknpO","language":"English","id":"T4Hx55gTaEo0VypuiRtY"},{"language":"English","tournamentID":"1dEXZTvvRtTWhdBLmzFt","link":"","content":"THR the decline of labour union power in the West.","topic":{},"infoSlide":"","division":"","round":"ESL_Semis","id":"T5SzVB30iSsm7kba77jP"},{"language":"English","content":"THB the Greek Government should reject the latest EU, ECB & IMF bailout agreement.","topic":{},"round":"3","link":"","infoSlide":"","division":"","tournamentID":"jhyT1LK3YdR0do1cosc6","id":"T6Hlsc1CzJu065d8DoGh"},{"content":"TH, as Mowgli W stay in the jungle.","infoSlide":"","link":"","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","language":"English","round":"3","topic":{},"division":"","id":"T6tZpC6vwPfqkpmW8mvU"},{"content":"THBT televised debates between the leaders of major parties before general elections do more harm than good.","language":"English","link":"","tournamentID":"a7Zdmoc5GpY9KlKkDEVg","division":"","round":"5","topic":{},"infoSlide":"","id":"T7WGt5qf2jG9gI5hc5HH"},{"link":"","tournamentID":"YxG2TWeoQ8BT0rpxmfxT","division":"","topic":{},"infoSlide":"","language":"English","round":"6","content":"TH AS NIGERIA WILL PURSUE ISOLATIONIST ECONOMIC POLICIES.","id":"T7ZeiKw72xsoWOH4JbbK"},{"infoSlide":"","topic":{},"tournamentID":"kFpM1KUkMmDded3L4Zmm","division":"","link":"","round":"ESL_Final","language":"English","content":"This house would implement quotas for domestic players in national football leagues.","id":"T7qQ8OgPx32MVH39oc2m"},{"division":"","round":"5","tournamentID":"nXN2yUG7soxwCp4xidzj","topic":{},"language":"English","infoSlide":"","content":"In 49BC, the general Julius Caesar attempted to return from a successful campaign in Gaul to Rome. The Roman Senate, fearing Caesar’s popularity with his army and the people, issued an ultimatum that Caesar was to not cross the border marked by the River Rubicon, else he would be named a traitor and spark a civil war. TH, as Caesar, would cross the Rubicon - Round 5.","link":"","id":"T89JFL7GMc8HH327z9XT"},{"link":"","tournamentID":"DfdqiFdfgcruP1pBNiHK","content":"THW give every citizen a positive and a negative vote in elections.","language":"English","round":"6","infoSlide":"","division":"","topic":{},"id":"T8AUFm0vt34nEuyPyaHH"},{"division":"","language":"English","link":"","round":"Open_Final","infoSlide":"","tournamentID":"GyiwbDg4TBAWCn1HmjKi","content":"THS a single-payer healthcare system.","topic":{},"id":"T8Y1JhbHmghKc3DcfPU4"},{"link":"","topic":{},"infoSlide":"","language":"English","round":"Open_Semis","division":"","tournamentID":"ukcS5bJ2TUuNfMuzta0w","content":"THW remove the power of impeachment from the legislature.","id":"T9LeXwzPhmghG5ZnuZSk"},{"tournamentID":"KErVXbqRahyWD7ZB1Q1m","infoSlide":"","round":"1","language":"English","link":"","topic":{},"content":"THW create a market in internal organs.","division":"","id":"T9gwpxyLssQ2AyDhcYkE"},{"topic":{},"language":"English","round":"4","infoSlide":"","link":"","content":"TH, which is technically capable to do so, would clone Neandertalers.","division":"","tournamentID":"4NEhQx2m4XcXy6SxnoqS","id":"TAQ32Wj8YtuVp7kAEcfv"},{"division":"","infoSlide":"The \"Candle Light Will\" is a term derived from the symbolic candle-light protests for the impeachment of the late president Park Geun Hye, commonly used to mean the people's will to fight against corrupt governments. The Moon Administration has frequently referred to the Candle Light Will as the driving force behind its election that grants legitimacy to this policy.","round":"","topic":{"politics":{"title":"Politics","check":true}},"link":"","language":"English","content":"THR the \"Candle Light Will\" narrative in the political discourse of South Korea.","tournamentID":"nALUKfkpmOnWnQCzecru","id":"TAV3ZJFNFvLsCks8RgHM"},{"language":"Vietnamese","infoSlide":"","link":"","round":"","division":"","content":"Chúng tôi tin rằng người nổi tiếng đã làm biến chất phòng trào nữ quyền.","topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"tournamentID":"FZTHJ19pUWQG2SZNeOvr","id":"TAhdB3rqmwKsymau1F1x"},{"link":"","round":"Open_Final","topic":{},"tournamentID":"S2mG18EWYdh2bPEadyd9","language":"English","infoSlide":"","content":"THP a world in which most people are determinists to a world in which most people believe in free will.","division":"","id":"TAn8H2b8Vs61ipOaK8y5"},{"tournamentID":"KErVXbqRahyWD7ZB1Q1m","language":"English","division":"","infoSlide":"","link":"","topic":{},"content":"THW allow people to ascertain their lifespan via the 'Bethesda' device.","round":"1","id":"TBg6ZnzRVnrJNG8vRDxC"},{"division":"","round":"2","topic":{},"infoSlide":"","tournamentID":"fIr3uLdOpGeGuZzpnEMf","content":"THBT resource-rich developing nations should severely restrict the extraction and sale of natural resources.","link":"","language":"English","id":"TBjY8NeABwcd9cvkL6Yr"},{"language":"English","link":"","round":"2","topic":{},"tournamentID":"1iGKg5a8rDH4ci9OIYEG","content":"THBT feminists should support the death penalty for crimes of severe sexual assault in countries with extreme gender inequality.","infoSlide":"","division":"","id":"TBluoYRf6M6pxtqEzeMe"},{"round":"3","language":"English","topic":{},"link":"","content":"This House supports accelerated land redistribution in South Africa.","infoSlide":"","tournamentID":"VPUCPVj9FHFW0uzJinv0","division":"","id":"TBwsPYSSxf2UkbfG6evY"},{"tournamentID":"LYTCjoO4snxI4nOKTVZB","division":"","link":"","topic":{},"infoSlide":"","content":"TH, as China, would allow women, and only women, to marry multiple male partners.","language":"English","round":"3","id":"TCVyGYCxkVry9CSlbmyf"},{"language":"English","infoSlide":"","content":"After a speaker has been invited, THW allow university students to vote to reject the speaker from coming to campus.","division":"","topic":{},"link":"","round":"1","tournamentID":"g87X9iRsC0CxxtZdAjMP","id":"TCZAA2BebkUacdPh53rz"},{"tournamentID":"BXqPhfwak2R1kYHV48bp","topic":{},"division":"","language":"English","infoSlide":"","content":"TH, as the US government, would create a separate Kurdish state.","round":"2.1","link":"","id":"TE8ENlh13icoQlVnJ7Dn"},{"tournamentID":"qDUBTulIlHZP0un39LYK","language":"English","round":"6","topic":{},"division":"","infoSlide":"","content":"THB the dead are the property of the state.","link":"","id":"TEBWggg5OtSgJDC7vJBO"},{"tournamentID":"vURFmLn4wdqX6ZbK0ini","content":"TH prefers a world where romantic relationships are initiated by an algorithm that matches prospective partners to a near-perfect degree.","topic":{},"division":"","round":"Open_Final","infoSlide":"","link":"","language":"English","id":"TECojG0Xf1LshIXxP0h6"},{"topic":{},"link":"","content":"THP a conception of human rights which derives its authority from a divine being rather than a secular source.","language":"English","division":"","infoSlide":"","round":"Open_Final","tournamentID":"8Vk7pWjDHtGhxQVWidIQ","id":"TEJTCzkJWGOosDnMgnCE"},{"division":"","content":"That we should abolish the grading system in schools.","topic":{},"language":"English","tournamentID":"SPjgjrpUBIPs6H9gmx9P","link":"","round":"Semifinals","infoSlide":"","id":"TFG1k5CaKD2AQJ2K4AnJ"},{"tournamentID":"vzoLJmfiPRVvjgiu4Nrs","division":"","link":"","round":"4","content":"THR the fall of the Soviet Union.","topic":{},"infoSlide":"The dissolution of the Soviet Union was the process of internal disintegration within the Soviet Union, which began with growing unrest in its various constituent republics developing into an incessant political and legislative conflict between the republics and the central government, and ended when the leaders of three primal republics (the Russian SFSR, the Ukrainian SSR and the Byelorussian SSR) declared it no longer existed, later accompanied by 11 more republics, resulting in President Mikhail Gorbachev having to resign and what was left of the Soviet parliament formally acknowledging what had already taken place.","language":"English","id":"TFTzEm2y0k0LQzLMxYUO"},{"topic":{},"language":"English","tournamentID":"Te8CYa0tImwgHXE99O7W","infoSlide":"","round":"ESL_Semi","content":"Given the opportunity, TH, as a talented young individual living in a Western Balkan country, would emigrate to pursue a career in the EU.","link":"","division":"","id":"TFecyafOCT80w2uSiaAq"},{"topic":{},"infoSlide":"","division":"","tournamentID":"0bpNzjTgN71TZQEkHTak","round":"EFL_Final","content":"TH welcomes the decline of the USA as the sole global super power.","language":"English","link":"","id":"TGoXAtuGooJOCxXFuODf"},{"topic":{},"link":"","content":"THBT western liberal democracies should use any effective means at their disposal to uphold the human rights of women.","infoSlide":"","round":"Open_Final","division":"","language":"English","tournamentID":"l8sHmpUe0bZ9QUWrf0pm","id":"TH4CW4j4T2qFjXntKUS0"},{"division":"","round":"6","topic":{},"tournamentID":"NxB6ercynISK3sISgci5","link":"","infoSlide":"","content":"THW abolish the income criteria for family reunification (when bringing family members to the Netherlands for permanent settlement, the applicant must have an income significantly higher than the minimum wage).","language":"English","id":"THE8eErDPzFbDghxQUZ6"},{"content":"That liberal supreme court s should misinterpret the constitution to advance civil rights.","link":"","round":"2","language":"English","division":"","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","topic":{},"infoSlide":"","id":"TIU345KVJiyONHmw5Wkb"},{"content":"THW dramatically reduce the patent life on life saving drugs.","topic":{},"link":"","infoSlide":"","tournamentID":"pEzcbhejynC2gAdvgw1f","language":"English","round":"Open_Final","division":"","id":"TJ9e3uzagTC7pN9W6wqu"},{"link":"","round":"1","language":"English","topic":{},"content":"This house believes that hacking is a legitimate form of protest against large corporations.","tournamentID":"kqAjVyDOCBYWRYze158e","infoSlide":"","division":"","id":"TJnUAdq0CLaRjGMocysn"},{"division":"","link":"","language":"English","content":"THW allow sex offenders to choose to undergo castration in return for a considerably shorter sentence.","topic":{},"infoSlide":"","tournamentID":"Kv7YNlz47VitorsH2zY7","round":"2","id":"TKhBznx5tMf4VMvhen2F"},{"round":"Open_Semi","infoSlide":"","division":"","topic":{},"link":"","content":"TH, as the feminist movement, would oppose the practice of female pop artists sexualising themselves in their work.","tournamentID":"ltPXjwYNooGAx72v9bz6","language":"English","id":"TL0VQHnYnTTpcy7fuFk2"},{"infoSlide":"","round":"Open_Final","division":"","tournamentID":"3thiHP0WT1SpBvjVmMFz","language":"English","content":"TH prefer a world where human life naturally ends at 50.","link":"","topic":{},"id":"TL1fUGDA6cUBxgjpELlu"},{"division":"","round":"4","content":"THBT extreme economic need should be grounds for asylum.","language":"English","link":"","infoSlide":"","topic":{},"tournamentID":"S2mG18EWYdh2bPEadyd9","id":"TL4vxlbVVEesss8SX0Oh"},{"content":"That, as environmentalists, we would choose a strategy of working closely with corporations.","infoSlide":"","link":"","round":"Open_Final","division":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","topic":{},"language":"English","id":"TMOrgg6nKS607LlWDsdm"},{"link":"","topic":{},"infoSlide":"A monetary union is a group of countries that collectively decide to adopt similar monetary policies through a common central bank (e.g. European Central Bank). The union typically shares a common currency. An example of a monetary union is the European Union.","tournamentID":"C09YJyBGrNu3L4IxdHCw","round":"3","content":"THBT ASEAN should reform into a monetary union.","language":"English","division":"","id":"TMdwyN6HNMN2PEvjNeQ6"},{"topic":{},"tournamentID":"FwXwhiD8hyS9iD7pTyRe","content":"THW give police the same investigative powers as under the anti-terrorism framework when dealing with ‘loverboys’ (men who trick young women into becoming prostitutes).","round":"2","infoSlide":"","language":"English","division":"","link":"","id":"TMfKw7rIGSK17nReLZYY"},{"language":"English","topic":{},"link":"","round":"8","content":"This House supports a permanent seat with veto power on the UN Security Council for Africa.","tournamentID":"h5ajoFHOT7mXoe90wbQ3","division":"","infoSlide":"","id":"TMjDZFldPLvzYV7v7O03"},{"link":"","topic":{},"division":"","round":"2","content":"A Computer Operated Police (or C.O.P) Machine is a non-autonomous humanoid domestic drone currently being developed by the State to carry out operations deemed to be too dangerous for human officers. They are remote operated and fully armed. Motion: TH supports the deployment, throughout the Police Force, of C.O.P.s.","infoSlide":"","language":"English","tournamentID":"f1thAYfptp3bklFlrsSe","id":"TNSkeaV4luESG3Y3x2qH"},{"tournamentID":"gLCKOLupIE8JBGxBG9vu","infoSlide":"","round":"2","link":"","content":"Should E-sports be recognised, promoted and valued as equals to other sports?.","language":"English","division":"","topic":{},"id":"TNwoaH5FpRYrdRvY6t2v"},{"content":"THBT liberal states should sponsor the hacking of infrastructure designed to limit freedom of speech in authoritarian states.","link":"","infoSlide":"","language":"English","tournamentID":"tp2xo2eFva2we2bqlQBC","round":"Novice_Final","division":"","topic":{},"id":"TOBlRUOCHLY0UhGCI6D3"},{"round":"3","division":"","infoSlide":"","content":"THO the norm that popular culture aimed at children should have happy ending.","tournamentID":"Wpv6iXJkIPUXYIkl0dST","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"language":"English","link":"","id":"TPuwySaLhBLn2AiketId"},{"language":"English","content":"THW ban private political donations, and fund all political parties and campaigns from general taxation.","round":"1","link":"","division":"","tournamentID":"bcb5yQt6p8cx9SACsvYL","infoSlide":"","topic":{},"id":"TQNS8YwEd5XlyrqgdcWm"},{"topic":{},"link":"","infoSlide":"","round":"2","division":"","tournamentID":"3dDCV3YYSGl8TNe5f3iO","language":"English","content":"THW allow euthanasia for patients suffering from dementia (and therefore legally incapable) who have signed an advance directive (request for euthanasia) Info.","id":"TQZLX6blbH69z9vd2Ysk"},{"infoSlide":"","round":"1","topic":{},"division":"","content":"THBT, western democracies should send military ground forces against the organisation ISlamic State (formerly ISIS).","tournamentID":"nzVlQYCb0rPo23sPMkA5","language":"English","link":"","id":"TQgkikJZL4ddSAw2zCqM"},{"content":"THS the creation of LGBTQIA+-only schools.","division":"","link":"","language":"English","tournamentID":"mNwitMoNsjWupgwG8pR5","topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"round":"","infoSlide":"","id":"TQnRvu77FiS08xXjsqTe"},{"link":"","infoSlide":"Medicare for All là chính sách cung cấp bảo hiểm y tế dành cho tất cả người Mỹ. Chính sách này sẽ được chi trả bởi chính phủ.","content":"Chúng tôi tin rằng Mỹ nên thay thế các công ty bảo hiểm tư nhân bằng Medicare for All.","language":"English","topic":{"publicHealth":{"check":true,"title":"Public Health"}},"tournamentID":"CbtTNoNzLTvfNvRWmMc2","round":"","division":"","id":"TQt77c1iEMPSpltX9wUQ"},{"round":"Open_Semi","division":"","language":"English","topic":{},"link":"","tournamentID":"Hpsxcd5Zzu5xq9ehtKkj","content":"This house prefers the transhumanist world to the current state of humanity in the western world.","infoSlide":"","id":"TRR91v53ri81JtslIgdZ"},{"language":"English","division":"","content":"THW disclose this information.","round":"","tournamentID":"nALUKfkpmOnWnQCzecru","link":"","topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"infoSlide":"Context: A prominent member of the LGBT movement has discovered that a very influential politician helping the LGBT movement has been lying about their sexual orientation as being gay when they are straight.","id":"TSOLGzlN8ztvorgXzfer"},{"link":"","topic":{},"infoSlide":"","language":"English","tournamentID":"swAbmAXdPnojWIXuZFwm","content":"TH, as Turkey, would intervene militarily in the Syrian civil war.","round":"Open_Finals","division":"","id":"TTRhZQlajiAaXr0pTkWn"},{"content":"THR tv shows and movies that humanize violent, antisocial protagonists (ex: Barry, You, Killing Eve, The Assassination of Gianni Versace, My Friend Dahmer).","round":"2","topic":{},"language":"English","infoSlide":"","division":"","tournamentID":"81tUVTFSIzBinbpptw4G","link":"","id":"TTmguOPZDFmH49MqL10X"},{"division":"","language":"English","round":"3","infoSlide":"","content":"THW pay a living wage to stay-at-home parents.","topic":{},"link":"","tournamentID":"pEzcbhejynC2gAdvgw1f","id":"TUnXA3upr5EoGhJoq67s"},{"topic":{},"language":"English","infoSlide":"","division":"","round":"1","tournamentID":"7DiEtR3YNKR69fHccj5Y","content":"THBT the governments of Europe should censor media from publishing articles, videos or cartoons which promote racist views or stereotypes.","link":"","id":"TW7Er5fFJ63OwqBe64eW"},{"link":"","topic":{},"language":"English","round":"4","division":"","infoSlide":"","content":"THW cancel all debts to international organisations (e.g. the IMF) or other countries held by the governments of the poorest 20% of countries.","tournamentID":"HtADLvDpWQsx5qtLh5A9","id":"TWUhgHs5Rm2iPfnrpXef"},{"language":"English","tournamentID":"2fNmUq1mfr7IP3WAvr0Q","division":"","content":"Should journalists hand the Offshore-Leaks data to the competent authorities?.","infoSlide":"","round":"Open_Semis","link":"","topic":{},"id":"TX383wr4IydZB6AyA0PQ"},{"language":"English","infoSlide":"","division":"","link":"","topic":{},"round":"3","tournamentID":"ZqM3Me0eKutOMMTkPwgA","content":"THW not contact, trade or otherwise engaging with uncontacted Yanomami communities in the Amazon forest.","id":"TXMN8aCn1izxFnwbX7PH"},{"content":"THBT the Israeli MoD museum department should stop all it's funding for sites and museums commemorating the Etzel and Lechi groups.","infoSlide":"","language":"English","division":"","topic":{},"link":"","round":"1","tournamentID":"epYFKCbv9IIbdGwlLvYy","id":"TY6BioCmEmM6vwjQjaHV"},{"language":"English","infoSlide":"","link":"","division":"","content":"THBT spouses of political figures should not be recognized as public figures.","topic":{},"tournamentID":"CEIVtMmh2XElfzcXXjzn","round":"2","id":"TYW7COiKVRsFrqJKzGwF"},{"tournamentID":"fzLPoPRlME1NEcvf7oVd","infoSlide":"","division":"","link":"","round":"Ope_Quarter","content":"THBT South Indian film industries should integrate with Bollywood.","topic":{},"language":"English","id":"TYjTH9ALFOewsuiOELtJ"},{"infoSlide":"","division":"","round":"3","tournamentID":"70rnu3F4Q3ntkA4t3Wfl","link":"","content":"THBT the US and EU should apply economic sanctions to Russia unless there is a full withdrawal of troops from territorial Ukraine.","topic":{},"language":"English","id":"TZcSIQZy9cADKVM5PeHH"},{"infoSlide":"","round":"Open_Semi","division":"","language":"English","tournamentID":"I5iTcVABscgCPPKzr8Oa","topic":{},"link":"","content":"THW prefer not to be born than to live a deeply immoral yet pleasurable life.","id":"TZhux5IcJVxc3A23IQFr"},{"topic":{},"infoSlide":"","round":"3","tournamentID":"qotkEeWGxvmIXOZx52qZ","language":"English","link":"","division":"","content":"THBT states should seek to prioritise reducing income inequality over GDP growth.","id":"TaJFWchFT73dTJqcWnr2"},{"link":"","topic":{},"infoSlide":"","content":"TH,as the US Republican Party,would end the use of primaries to select their presidential nominee.","division":"","tournamentID":"Kv7YNlz47VitorsH2zY7","round":"Open_Semis","language":"English","id":"TaPci08OlTao7Baru5Jh"},{"link":"","infoSlide":"","tournamentID":"ZvEJb11Ww6RpoVmg4QV3","topic":{},"content":"TH regrets the prominence of pop culture celebrities in feminist discourse.","language":"English","division":"","round":"Open_Finals","id":"Tac5TjzgoOD5BHpvExny"},{"division":"","infoSlide":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","round":"","topic":{"technology":{"title":"Technology","check":true}},"link":"","language":"Vietnamese","content":"Giả sử công nghệ cho phép, tại các quốc gia có nghĩa vụ quân sự bắt buộc, chúng tôi sẽ ép quân lính xoá toàn bộ ký ức về những trận chiến họ tham gia trước khi cho họ xuất ngũ.","id":"Tbkk7N3B4A02OJPsSdcN"},{"content":"Chúng tôi ủng hộ bỏ hệ thống điểm số và thay thế bằng hệ thống đánh giá tại trường học.","tournamentID":"sIrS2zWJD8m7ibVjvyDN","infoSlide":"","round":"3","language":"Vietnamese","link":"","division":"","topic":{},"id":"TcAEgVd5zQGJGnaQQvEE"},{"link":"","content":"THW forcibly relocate indigenous peoples where their presence prevents the extraction of valuable resources.","language":"English","tournamentID":"B63fWPacAJNcBJdaEpVz","topic":{},"division":"","round":"1","infoSlide":"","id":"TcPB8IhoTZIconuti5ki"},{"tournamentID":"o83Oqm9vDtGaG6SVldke","link":"","language":"English","infoSlide":"","content":"This House would support policies of ‘ever increasing political union’ – i.e. progressive political integration aimed at the distant goal of federal unification – amongst members of the League of Arab States.","round":"Open_Final","topic":{},"division":"","id":"TcriZnPUr9rR7U2uTmAp"},{"content":"TH opposes the narrative that we should be empathetic.","round":"","link":"","infoSlide":"Empathy is the capacity for one to feel or understand what another person is experiencing.","topic":{"philosophy":{"title":"Philosophy","check":true}},"division":"","language":"English","tournamentID":"LlsxibXteGBGML9aitY2","id":"TetlKp7cDFUER13UcqAY"},{"division":"","content":"THBT the EU should suspend the membership rights of countries if they elect extremist parties to government (for example, Greece's Golden Dawn or the UK's British National Party).","topic":{},"link":"","tournamentID":"ch7bmkDPz31zOvzM3txF","infoSlide":"","round":"4","language":"English","id":"TfrT3WWlPWr8jkjdxGVI"},{"tournamentID":"02vn4ksQhlUNksv2wu0q","content":"THW ban Zero Hour Contracts.","division":"","topic":{},"link":"","language":"English","infoSlide":"","round":"3","id":"Tgxzr69hENTbMfyfWf8d"},{"division":"","link":"","topic":{},"round":"1","tournamentID":"BtqBGdAUsTtPKorZOcBX","language":"English","content":"THW ban video games in which the player engages in brutal and immoral violence in a realistic setting.","infoSlide":"","id":"Th7RwabnZVjCOPh9WI97"},{"link":"","topic":{},"tournamentID":"YF6iuqxO6eUISnAz4iMp","division":"","content":"THR the trend of central banks setting extremely low interest rates after the 2008 financial crisis.","language":"English","round":"5","infoSlide":"","id":"ThHYlaCUejPQF8l78vRx"},{"tournamentID":"7DiEtR3YNKR69fHccj5Y","infoSlide":"","link":"","language":"English","division":"","round":"Open_Quarters","content":"THW only allow the media to publish or broadcast government produced releases on suspected terrorist attacks.","topic":{},"id":"ThlBnPgha7Zwx2Facgl7"},{"round":"6","content":"This House believes that the world would be a better place if women from privileged backgrounds turned down any benefits arising from affirmative action programs.","link":"","division":"","tournamentID":"t1jiRXU99xeGdoIkTeyF","infoSlide":"","topic":{},"language":"English","id":"Tjzm7s3FB5SnQWJU3LxG"},{"content":"THW set the burden of proof in criminal trials to \"balance of probabilities\" rather than \"beyond reasonable doubt\".","round":"2","division":"","topic":{},"infoSlide":"","tournamentID":"DXCgscK3BkzAJGRnyZpD","language":"English","link":"","id":"TkPDZVPYJJleoxjREvfl"},{"content":"THW remove all restrictions on allowable areas of scientific research.","topic":{},"division":"","language":"English","round":"Open_Semi","infoSlide":"","link":"","tournamentID":"jfv01DUCOrtLcsyMO6qo","id":"TkzKZ42pE9sb52o5Oey5"},{"language":"English","content":"Should it be a duty to report recognised injustices committed by fellow citizens (Sollen es eine Pflicht geben, erkanntes Unrecht seiner Mitbürger zur Anzeige zu bringen?).","round":"3","division":"","infoSlide":"","tournamentID":"mveJVSu6tAxKx2Vp4IB0","topic":{},"link":"","id":"TlGD6vGDtcat1MoXMQvS"},{"infoSlide":"","language":"English","topic":{},"content":"THW require all low wage employees of large corporations to be unionized.","round":"4","link":"","division":"","tournamentID":"wP5I8OZ057B9BO0Js6MR","id":"TlTfgMppXXbjYDzYMY6V"},{"tournamentID":"kIlyrRRnzkKK1188i1Qf","topic":{},"division":"","link":"","content":"THW bring back the Assisted Places Scheme (info).","infoSlide":"","language":"English","round":"1","id":"TmmcUFKB6mVWiZugTCZ2"},{"topic":{},"infoSlide":"","round":"5","content":"THW significantly censor the depiction of alcohol in popular culture.","language":"English","tournamentID":"kaKFVFzhrgSOIPlruLU6","link":"","division":"","id":"TpUATnpFoT4wmpTiVAIg"},{"topic":{},"content":"THBT all regionally concentrated ethnic minorities should be granted territorial autonomy.","language":"English","tournamentID":"bWRhS5k8Iv19aHOMEz5C","link":"","round":"Open_Semis","division":"","infoSlide":"","id":"TqYWWxHH8JiivzvP4HNZ"},{"content":"Chúng tôi tin rằng ASEAN nên phá bỏ nguyên tắc đồng thuận.","topic":{"irw":{"title":"International Relations/War","check":true}},"division":"","round":"","language":"Vietnamese","link":"","infoSlide":"Đồng thuận có nghĩa là không có sự phản đối nào dựa trên sự tự nguyện. Theo đó, quyết định sẽ không được thông qua nếu chỉ có một quốc gia thành viên phản đối.","tournamentID":"OqQWJjNQBpGOYwMntw3z","id":"TqrRGpN0UcksjcqBco9U"},{"division":"","topic":{},"infoSlide":"","content":"THW continue to drill the Arctic.","round":"6.2","tournamentID":"BXqPhfwak2R1kYHV48bp","language":"English","link":"","id":"Tr0cJIzCK9j6GL9CxQkZ"},{"round":"1","language":"English","content":"THW limit the time in office for heads of state to two terms.","infoSlide":"","division":"","topic":{},"link":"","tournamentID":"hfhyqiLO3boM6Fbp0Jvs","id":"Tsq11E7mhf2re8FEhCfO"},{"tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","round":"3.2","division":"","topic":{},"link":"","infoSlide":"","content":"That we should have a truth and reconciliation commission for Catholic church abuse.","language":"English","id":"Tsuv6rQ95a4qzGbLpoJg"},{"division":"","link":"","tournamentID":"N8WiUFJpvPmLaaYYsbsD","language":"English","round":"3","content":"Should people who are in a relationship with an enemy of the constitution (Verfassungsfeinden) be considered enemies of the constitution too?.","topic":{},"infoSlide":"","id":"TtioqAzROSDeFsIeVHNt"},{"infoSlide":"","division":"","language":"English","tournamentID":"6mCNGJYhhrCUYIhAm6FN","round":"2","topic":{},"link":"","content":"THBT singing-based reality TV shows (e.g. X Factor, American Idol, The Voice) have done more harm than good.","id":"Tu7EaAeoGDxuFQkz8VBL"},{"language":"English","topic":{},"infoSlide":"","tournamentID":"WcNueZiJXeg9z82dijdL","division":"","content":"TH, as climate activists, would use interpretation of religious texts as a tool for climate action ( Eg invoking stories from the Ramayana’s Aranya Kaand to create narratives around forests, etc.","link":"","round":"3","id":"TuayqFBSoOgAB1oSvTBa"},{"round":"2","link":"","language":"English","division":"","tournamentID":"LSZbchiNq33jtWsW0vWQ","infoSlide":"","topic":{},"content":"THW ban pornography.","id":"Tv6pkvXJomJM9XrLyhO0"},{"division":"","infoSlide":"","topic":{},"language":"English","tournamentID":"WqXUc7EMDvkqqg3BVCtf","round":"ESL_Quarters","content":"TH would legalise surrogacy for profit in Western Liberal Democracies.","link":"","id":"TvLmsjsQmHr9oa8tcefx"},{"round":"ESL_Final","tournamentID":"ChiU8yMbLI2Y2q5rwURP","division":"","language":"English","infoSlide":"","content":"TH prefers a world in which all children are conceived with DNA from a global genetic database.","topic":{},"link":"","id":"TvReTqOwbrjMbhFcZcET"},{"division":"","content":"THBT Barack Obama should nominate an individual considered to be a moderate conservative by US citizens to the Supreme Court.","round":"Open_Semis","infoSlide":"","link":"","tournamentID":"bcb5yQt6p8cx9SACsvYL","language":"English","topic":{},"id":"TvgH50wuFfpBoz5pQKNq"},{"language":"English","content":"THW disproportionately teach colonialism in schools.","tournamentID":"KErVXbqRahyWD7ZB1Q1m","topic":{},"division":"","round":"2","link":"","infoSlide":"","id":"TxDN1maO8Q2UktaUIfJ0"},{"topic":{},"division":"","link":"","content":"THW ban meat consumption.","tournamentID":"owvW9MKLd7Sqv8hm9HMq","infoSlide":"","round":"2","language":"English","id":"TxSBseoJrmcvo6uq4N8z"},{"content":"THBT Greece should immediately default and leave the Euro.","language":"English","topic":{},"tournamentID":"BXqPhfwak2R1kYHV48bp","infoSlide":"","division":"","link":"","round":"7.2","id":"TyOnm64cWNY8ui2zY8fx"},{"content":"Chúng tôi sẽ cho các nước đang phát triển hai phiếu bầu (thay vì một) trong các buổi họp về thương mại của Liên Hợp Quốc.","language":"Vietnamese","round":"Quarterfinals","topic":{},"division":"","tournamentID":"i00RSzvK4b1TDEgnpFJd","link":"","infoSlide":"","id":"TylcVipBLAM2UkwuLr4W"},{"content":"THBT work is overrated.","language":"English","tournamentID":"1leOvfvlbNAIDzW6UnkK","topic":{},"link":"","division":"","round":"4.1","infoSlide":"","id":"TzMGYRHWLUU5Pq4h1De1"},{"division":"","link":"","content":"This House believes that Western states should not use private military contractors in combat.","round":"3","tournamentID":"WqXUc7EMDvkqqg3BVCtf","language":"English","topic":{},"infoSlide":"","id":"TzU9rHBSlrG5iTgpBoBG"},{"language":"English","infoSlide":"","division":"","content":"THW ban the production, sale, and use of Poké Balls.","round":"2","topic":{},"link":"","tournamentID":"KErVXbqRahyWD7ZB1Q1m","id":"TzUbjzFjn0U6t6pjR4gA"},{"link":"","division":"","infoSlide":"","topic":{},"language":"English","tournamentID":"MPR74LYpg8Ru6paM45U9","round":"3","content":"TH hopes the United Kingdom will leave the European Union.","id":"U0VCxwU0v1i0QQGmBiCo"},{"link":"","content":"THBT in order for a law to be enacted, it should have to be passed by the legislature and then by a body chosen at random from eligible voters.","infoSlide":"","language":"English","topic":{},"division":"","round":"1","tournamentID":"OuMJNWJJy88lWhwWuJmy","id":"U0Vpjr9mqoIlSWe0VeFF"},{"infoSlide":"","link":"","content":"THBT state x should increase taxes as opposed to cutting government spending.","topic":{},"language":"English","round":"Open_Final","tournamentID":"MIEMFyC8nYMlqXU4wtOC","division":"","id":"U0YISZRhBoqOayjpSAqH"},{"language":"English","link":"","topic":{},"division":"","infoSlide":"","tournamentID":"tPdF4vGV6F0ucJaSF5md","round":"Open_Semis","content":"THW prevent foreign ownership of significant domestic companies.","id":"U22R50L2wnxLJXwkDbsF"},{"language":"English","division":"","round":"Open_Final","topic":{},"tournamentID":"ZKj5YfRQe4wJF8bx4fLp","infoSlide":"","link":"","content":"This House believes freer markets, rather than more government intervention, are the solution to the current economic crisis.","id":"U29vheiekF3ovwHcLpcy"},{"language":"English","topic":{},"round":"3","link":"","content":"THBT individuals should be required by governments to invest a defined portion of their salary for their retirement.","infoSlide":"","tournamentID":"7zFzGfa6wAGs2h8bbVhq","division":"","id":"U2AUbuFcdOBX03QR63jh"},{"topic":{},"division":"","content":"THS THE PRACTICE OF CULTURAL CHRISTIANITY.","link":"","round":"4","tournamentID":"fYRQ3gsDALGgMYQf58zt","language":"English","infoSlide":"","id":"U2bXP3Xa6EGjKVc24WrO"},{"language":"English","topic":{},"infoSlide":"","round":"1","tournamentID":"l8sHmpUe0bZ9QUWrf0pm","content":"THW not allow governments to electronically intercept communications without a warrant.","division":"","link":"","id":"U3Dd7IIwWmFKhPpJ4gf8"},{"infoSlide":"A reserve currency (or anchor currency) is a foreign currency that is held in significant quantities by central banks or other monetary authorities. The reserve currency can be used in international transactions, international investments and all aspects of the global economy, and can be used in emergencies where a country’s own currency has lost its value.","content":"TH, as developing states, would prefer the use of a neutral aggregate currency to the US Dollar as the global reserve currency.","link":"","division":"","topic":{},"round":"6","language":"English","tournamentID":"CBVZREYhjV5bhCHOuWjU","id":"U3GgkIjUwQa9QP1Lihsm"},{"topic":{},"link":"","content":"This House believes that United States foreign policy should seek to significantly restrict Iran's influence over Syria.","round":"4","division":"","tournamentID":"9WoIT6ofG5A9j3MeLxh4","infoSlide":"","language":"English","id":"U3u2CF6AyJoXcQtSnRu1"},{"content":"THBT complete gender emancipation requires the end of family as a dominant social construct.","tournamentID":"9yPqE2fe1oaHsd7ankOa","topic":{},"infoSlide":"","division":"","language":"English","link":"","round":"5","id":"U40HChyss5mfftltxdmA"},{"tournamentID":"nXN2yUG7soxwCp4xidzj","division":"","infoSlide":"","language":"English","topic":{},"round":"6","content":"The South China Sea is the cause of several territorial and resource-based disputes between several surrounding nations. China has been a particularly aggressive claimant of rights to resources and territory within the area. The United States publicly disagrees with China’s claims and has deployed military vessels into the area to “by monitor the situation”. THB the United States should end all involvement in the dispute - Round 6.","link":"","id":"U4hCGblkyH1Edq94NmvP"},{"round":"1","infoSlide":"","tournamentID":"4BdwKPHB1LrpVYqE4E51","link":"","division":"","content":"THR the prominence of creator-driven content.","language":"English","topic":{},"id":"U5BaWsPnLCF0BiYathK8"},{"content":"THW only release prisoners if they are rehabilitated.","language":"English","infoSlide":"","tournamentID":"zNrcKb4T08IU7LfuYSUz","link":"","topic":{},"round":"1","division":"","id":"U7AWXxd52Tf8THLGmAUX"},{"link":"","language":"English","content":"THBT the state should aggressively discourage university attendance and promote college.","tournamentID":"RautsrmlhwL2BBMyTRVG","topic":{},"division":"","infoSlide":"","round":"Open_Semis","id":"U7pcLSozsUxLAqKgAU6N"},{"infoSlide":"","tournamentID":"yOWDiguNGQHwr42mgnqv","division":"","round":"Open_Semis","content":"THR the decline of Marxist political parties.","link":"","topic":{},"language":"English","id":"U8KhYDXPpxG4xnPqG94A"},{"link":"","round":"3","content":"THW force violent offenders to undergo the Ludovico technique.","tournamentID":"3tMy4nyufgrwLpV8f6da","infoSlide":"","division":"","language":"English","topic":{},"id":"U8cKAE9q4esHh15TeR7R"},{"topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"infoSlide":"","round":"","link":"","content":"We believe that economic policies should be decided by a panel of experts instead of politicians.","tournamentID":"CbtTNoNzLTvfNvRWmMc2","division":"","language":"English","id":"U9B6fs2E0A5MjTmRgNKD"},{"round":"2","content":"This House Regrets the prominent use of self deprecating humor by female comedians.","division":"","language":"English","link":"","infoSlide":"","topic":{},"tournamentID":"ptDJAxuw5pGiwabyHZil","id":"U9FUqN6oEt4o0ZC3Hm2z"},{"topic":{},"link":"","content":"This house opposes democracy.","infoSlide":"","division":"","round":"Novice_Final","language":"English","tournamentID":"qvnbu5KYCFZ7nM9hTZ2E","id":"U9HcHszKI994o9p0cnEn"},{"division":"","language":"English","infoSlide":"","content":"THBT female political candidates in liberal democracies should not appeal to traditional female roles in their campaigns.","tournamentID":"yDUOVgl6qLMa2DH8lCD5","link":"","topic":{},"round":"Open_Final","id":"U9Mc5tJKm4xTjh9b4GmX"},{"division":"","language":"English","link":"","round":"1","infoSlide":"","content":"THW allow companies to pay a higher salary to employees who contractually agree not to have children.","tournamentID":"W9AVDusjw9BvQds3bmVL","topic":{},"id":"U9RpRBHmtTasYIEEizUy"},{"infoSlide":"","round":"Open_Semi","topic":{},"content":"THP the hypersexualisation of men rather than the desexualisation of women.","language":"English","division":"","tournamentID":"CEIVtMmh2XElfzcXXjzn","link":"","id":"U9v8muFvgqrEwOu4fXwR"},{"division":"","link":"","round":"2","tournamentID":"Jy8kbmlTXWgf8pRg3dUy","content":"THBT Hamid Karzai should sign the Bilateral Security Agreement.","topic":{},"language":"English","infoSlide":"","id":"UA05uFCASex1yzYTEgv1"},{"language":"English","division":"","tournamentID":"UefabB9q8iptn7SCi47p","infoSlide":"","link":"","round":"5","topic":{},"content":"THR the increasing presence of nihilism in popular culture (eg. BoJack Horseman, Rick and Morty etc.).","id":"UBOb8OQnNb4rnvX5n7Fa"},{"tournamentID":"djnlK5jZ2kM6hDrC6E9d","link":"","round":"2","infoSlide":"","division":"","language":"English","content":"THBT Kashmir should strive for independence rather than political unification with Pakistan.","topic":{},"id":"UBjDjwkcUciHymTP58rx"},{"tournamentID":"y6twZcPBW4VtQsAZQ3Mw","link":"","topic":{},"language":"English","round":"Open_Semi_1","division":"","content":"Assad should win.","infoSlide":"","id":"UBnSfHIViEdDH48TCMJi"},{"round":"Open_Semi","tournamentID":"SfEIDDzpv3y19flsWYFH","content":"THBT the GNA and its allies should abandon any attempts at peace negotiations and continue its current push against the LNA.","division":"","topic":{},"language":"English","infoSlide":"","link":"","id":"UC1s3c3lCchFMllR3oS0"},{"topic":{},"division":"","infoSlide":"","language":"English","round":"Open_Partial_Double_Octos","content":"This house believes that ASEAN should negotiate all investment deals with Chinese government entities as a bloc (with decisions made by majority vote of its members), so that no member state can enter into investment deals without the rest of the world.","tournamentID":"vS5BTr7lDW40h5Qw31FI","link":"","id":"UC4tweWb3mlilbSCKdwY"},{"infoSlide":"","link":"","round":"1","language":"English","division":"","content":"THW give a higher child subsidies to couples composed by persons from different Member States of the EU.","tournamentID":"6nBP9jzzLtVU7k4sXrZu","topic":{},"id":"UCBPPoGd0hMlPCLrTX5F"},{"round":"Open_Final","division":"","language":"English","infoSlide":"","tournamentID":"rEUwN5dFZYjeXBNtp4NG","topic":{},"content":"Assuming it could be done peacefully, THW replace all existing governments with a single global democratic government.","link":"","id":"UD621yw5wDec4yXCwQG6"},{"topic":{},"infoSlide":"Middleware is software that rides on top of an existing platform and can modify the presentation of underlying data. Middleware allows users to choose how information is curated and filtered for them. For social media platforms, users could hypothetically select middleware services that would block, prioritise and reconfigure different types of data, and social media platforms would use those determinations to curate what those users saw.","round":"Open Semifinals","link":"","tournamentID":"5SXUtPGKmOtgXxWouFAs","language":"English","division":"","content":"THW mandate that social media users select middleware packages to curate the information they see on their social media accounts.","id":"UD7hlpI7UQXynbUTRs1V"},{"content":"THW not punish offenders for non-violent crimes with prison sentence.","language":"English","round":"4","topic":{},"infoSlide":"","tournamentID":"HbzzxzNaEfw54UvTulVq","link":"","division":"","id":"UDD6yi0Q2vFtSN1x5pvU"},{"language":"English","round":"3","tournamentID":"bmpPSwtqn5KEm26j6EB7","topic":{},"infoSlide":"","division":"","content":"TH welcomes the creation of strong forms of artificial intelligence.","link":"","id":"UDHtTB0VMN7GiatALVh4"},{"division":"","infoSlide":"\"Culture of denial\" is the act of stopping the public in favor of celebrities or companies because of what they have done/said is considered evil. Culture of denial is often discussed on social media.","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"language":"English","link":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","round":"","content":"THW eliminate \"culture of denial\".","id":"UDXqgNG5DLvHDs8x69fs"},{"tournamentID":"HjQJA65fZ9igHKO8DLAP","topic":{},"content":"Assuming the technology were available, and you were the only one who could use it, that you should choose to become immortal.","link":"","infoSlide":"","language":"English","division":"","round":"1","id":"UDpfQQ726kXXGQkpQaVe"},{"content":"TH prefers common law legal systems.","division":"","tournamentID":"if0ptVr0NjWKFiLehpRT","link":"","language":"English","round":"Open_Semis","infoSlide":"","topic":{},"id":"UE5CfuEN2TiXl0OUA1Ka"},{"round":"3","infoSlide":"","language":"English","division":"","content":"THR the fetishization of athletic success in popular culure.","link":"","tournamentID":"mf3XudZleydnsr0lEvkg","topic":{},"id":"UEC93J3FnGgz97kf9I3y"},{"round":"Open_Final","content":"THBT Romania should strengthen its relationship with China, even if that impacts its relationship with the EU.","link":"","tournamentID":"yLkpGc1iaQe5cfQPrNvl","topic":{},"infoSlide":"","language":"English","division":"","id":"UFD6y8AKwKMLvxDCZaNq"},{"content":"THW not allow public schools to expel students - Round 1.","infoSlide":"","round":"1","link":"","tournamentID":"Ryhdb4JOJYP96e5oa49b","topic":{},"language":"English","division":"","id":"UFJSMTyF5n5PuBn5qtqO"},{"topic":{},"tournamentID":"XzAs4cMVeW91DHEgxF0k","division":"","language":"English","infoSlide":"","round":"1","content":"This House would give financial incentives to people who live a healthy lifestyle (eg. no smoking, exercising regularly, healthy diet).","link":"","id":"UFPr8t3aobKSqUqTcHfF"},{"round":"4","language":"English","topic":{},"tournamentID":"mf3XudZleydnsr0lEvkg","content":"THS the trending of pairing differently-abled people.","link":"","division":"","infoSlide":"","id":"UFbxnE6o7YdopXtERlof"},{"tournamentID":"H2Xg2NvZoEwZtgc8tzmz","topic":{},"infoSlide":"","division":"","link":"","round":"6","language":"English","content":"TH, as the LGBTQ+ community, supports Queer baiting.","id":"UFllDpQcC4KqENUknhVH"},{"infoSlide":"","link":"","content":"THW only give funding to indigenous groups that are democratically organised.","language":"English","round":"5","tournamentID":"OY8sAGz8SAjQpWA2PicY","division":"","topic":{},"id":"UGHwEbDHwANfIsCwkWgk"},{"topic":{},"tournamentID":"6mCNGJYhhrCUYIhAm6FN","language":"English","round":"3","link":"","division":"","content":"THW make at least 10 years of non-political work experience a prerequisite for standing for national elected office.","infoSlide":"","id":"UJ4ew3GrHlspeBMfP7wP"},{"topic":{},"tournamentID":"CLp8pjuIm6vddMdiBEC5","division":"","content":"This house, as an upper-middle-class African American, would resettle in Africa.","round":"Open_Semis","link":"","infoSlide":"","language":"English","id":"UJxLglyNsMRtowF9eY5l"},{"content":"THBT society should not celebrate violent and militant revolutionary figures.","language":"English","link":"","infoSlide":"","division":"","tournamentID":"mNwitMoNsjWupgwG8pR5","round":"","topic":{"politics":{"check":true,"title":"Politics"}},"id":"UK4gbjLkBrVdehqXEcM1"},{"language":"Vietnamese","link":"","infoSlide":"","division":"","content":"Chúng tôi tin rằng việc phụ nữ nói dối về tình trạng mối quan hệ của họ và kế hoạch tương lai khi phỏng vấn xin việc là chính đáng.","tournamentID":"znXRdnU2llK8fXmHlci5","round":"2","topic":{},"id":"UK5Jf5OS90jKPWrm230k"},{"infoSlide":"","link":"","division":"","language":"English","round":"4","content":"THW introduce a statute of limitation on murder.","topic":{},"tournamentID":"z4fwjDZ02juoVx4MeEih","id":"UK8SS4QlClXrzush9Aag"},{"round":"3","content":"THW pay stay at home parents.","language":"English","tournamentID":"U5BIn9cy3EEIjFx2mHye","topic":{},"division":"","infoSlide":"","link":"","id":"UKDYNc43W17gCxvNEXTX"},{"topic":{},"language":"English","tournamentID":"pq9R1PqBqzQNX8jAplt5","division":"","infoSlide":"","link":"","round":"1","content":"This house believes that Pakistani Feminists should campaign for the end of gender segregation in mosques, and the right of female imams to preach in mosques.","id":"UKP5aTPQCfuGiUlr5yKF"},{"link":"","round":"2","tournamentID":"TXUiH5ezPBItq39Het98","content":"Assuming Personal Protective Equipment is sufficiently available, THBT medical workers during a pandemic should have the right to opt out of service.","topic":{},"division":"","language":"English","infoSlide":"","id":"UKaGfDSmP3unlpwOQzT5"},{"link":"","language":"English","tournamentID":"2YfQ1XbNnQfXwnjeGyDd","topic":{},"round":"4","division":"","infoSlide":"","content":"TH regrets universalization of western liberal values.","id":"UKgus997swZTgZkELOdB"},{"division":"","tournamentID":"B2zJ5QeyI7MVcboS7m4U","link":"","content":"THW give extra votes to youths over the age of 18.","round":"ESL_Final","language":"English","infoSlide":"","topic":{},"id":"ULXDt0b23QEeqA9w2XFs"},{"tournamentID":"68SrKFb9XtsQrLtqLtjO","round":"ESL_Final","language":"English","link":"","infoSlide":"","division":"","content":"THBT social movements should reject the glorification of political violence.","topic":{},"id":"UMCC2DTx7Hm5FJPKzF34"},{"language":"English","division":"","tournamentID":"mzvnxBrGLKyjonGHD82N","topic":{},"infoSlide":"","round":"3","content":"THW not grant amnesty to people who commit atrocities in conflicts.","link":"","id":"UMI7RgN82zSFM9IoHJPb"},{"link":"","language":"English","content":"THS government collection of private information as a security measure.","infoSlide":"","tournamentID":"N6GD6E8q4Mbzt8Xexnyy","round":"3","topic":{},"division":"","id":"UMhFqEoXX1TVZ9TuIKRp"},{"link":"","infoSlide":"","topic":{},"content":"TH, as an average resident of Gaza, would support Hamas and their agendas.","round":"Open_Quarter","division":"","language":"English","tournamentID":"1bBjpR84rI88s6EveWzm","id":"UNW6NSRHK6lz16DAe2iH"},{"content":"THBT \"All's well that ends well\".","division":"","language":"English","link":"","tournamentID":"fKuU1uxdPh1ZwmKwjOza","round":"Open_Final","infoSlide":"","topic":{},"id":"UOAEhuwBkY3aklreIyam"},{"round":"6","content":"THR the narrative that Americans must \"support\" the troops.","tournamentID":"zZRXGDm7RC8LjYJKzubm","infoSlide":"","division":"","link":"","language":"English","topic":{},"id":"UOQYprxo1qxtGAdxXhOQ"},{"language":"Vietnamese","infoSlide":"","content":"Chúng tôi sẽ cấm ngành công nghiệp lông thú và da thú.","link":"","division":"","round":"3","topic":{},"tournamentID":"i00RSzvK4b1TDEgnpFJd","id":"UOWAMKYFBWbkD4n6ieh0"},{"infoSlide":"","topic":{},"tournamentID":"onvxs89P4PKzVuAFoTHr","round":"2","language":"English","division":"","content":"This House believes that the rise in illegal downloading and streaming services has been beneficial to the world of music.","link":"","id":"UPmGD3liqP1c6g2nfP43"},{"link":"","infoSlide":"","topic":{},"content":"This House prefers a world with a dominant norm of not expressing strong emotions.","division":"","round":"Novice_Semis","tournamentID":"MKOx1AvBmfWL7cHrRXg2","language":"English","id":"UPp9wW98t5ixhoOLEdn1"},{"tournamentID":"9hmPqfKzlDmhAISeJsts","round":"Open_Semis","topic":{},"infoSlide":"","content":"thbt the kurdish people should abandon attempts to establish an independent state, in favour of seeking greater poliitical inclusion in iraq and in turkey.","language":"English","link":"","division":"","id":"UPpYWF9LmRpHctUbqY9x"},{"infoSlide":"","content":"THS the use of extra-legal and illegal methods to provide wider access to knowledge (e.g. sci-hub, hacking Jstor, unauthorised distribution of files and copies).","link":"","division":"","topic":{},"tournamentID":"HcngLxXLU8ahxFRQkeYc","language":"English","round":"2","id":"UQ1KKHqEBWHH4hNSaVC1"},{"division":"","topic":{},"round":"1","language":"English","content":"THBT the administration of professional licensure examinations should be in the hands of the private sector instead of the government.","infoSlide":"","tournamentID":"ukcS5bJ2TUuNfMuzta0w","link":"","id":"UQXOWDnO3qMWstW0Y7Gq"},{"division":"","link":"","round":"Open_Semis","topic":{},"language":"English","infoSlide":"","content":"HBT change comes through molotov cocktails, not with a voting ballot.","tournamentID":"aT0uKXAE6J8EslDVKzO1","id":"UQhWDBBBhTELZJ0fh53I"},{"tournamentID":"7Jdvl74EMNCm0P5fq9PJ","division":"","topic":{"education":{"title":"Education","check":true}},"link":"","round":"2","language":"Vietnamese","content":"Chúng tôi cho các gia đình được hưởng thêm phúc lợi dựa trên kết quả học tập của con họ ở trường.","infoSlide":"","id":"UQwHB95UTuLpyPjy0T2g"},{"topic":{},"tournamentID":"GFxILtaCaIOzQVLckGus","language":"English","link":"","division":"","infoSlide":"","round":"Open_Semis","content":"\"Thanks to the hierarchy, this House believes that combating \"class oppression\" is more important than combating \"oppression of identities\".\".","id":"UR2TCheLoVf0Tp7yLAbZ"},{"link":"","tournamentID":"kFpM1KUkMmDded3L4Zmm","topic":{},"infoSlide":"","content":"This house would ban abortion at all stages of pregnancy.","division":"","round":"Open_Final","language":"English","id":"URBndHrEedbEIAAQfufj"},{"language":"Vietnamese","tournamentID":"mkrRVvz5EWSZie6LBtCH","topic":{},"division":"","content":"Chúng tôi lấy làm tiếc sự nhấn mạnh các hiện tượng học sinh nghèo đạt thành công trong giáo dục.","round":"1","link":"","infoSlide":"","id":"URUy6YKssF1FGxSkH7OO"},{"content":"Chúng tôi, với tư cách là các quốc gia đang phát triển, sẽ ưu tiên đơn vị tiền tệ tổng hợp làm tiền tệ dự trữ thay vì sử dụng đồng đô la Mỹ.","tournamentID":"WEotTkb6ok8UfUOl0Lwb","infoSlide":"Tiền tệ dự trữ (hoặc tiền tệ neo) là một loại ngoại tệ được các ngân hàng trung ương hoặc các cơ quan quản lý tiền tệ khác nắm giữ giữ với định lượng đáng kể. Tiền tệ dự trữ có thể được sử dụng trong các giao dịch quốc tế, đầu tư quốc tế và tất cả các khía cạnh của nền kinh tế toàn cầu, và có thể được sử dụng trong trường hợp khẩn cấp khi đồng tiền của quốc gia bị mất giá trị. Đồng tiền dự trữ toàn cầu hiện tại là đô la Mỹ. Đơn vị tiền tệ tổng hợp là đơn vị tiền tệ toàn cầu có giá trị được tính từ nhiều loại tiền tệ hàng đầu tổng hợp.","topic":{},"round":"Quarterfinals","language":"Vietnamese","division":"","link":"","id":"USUeF39RDz31SaHElD0s"},{"division":"","link":"","infoSlide":"","round":"4","content":"THW will move the Israeli Capital from Jerusalem to Tel-Aviv.","tournamentID":"epYFKCbv9IIbdGwlLvYy","topic":{},"language":"English","id":"USlv49yEqo28tu9ZxPen"},{"content":"TH regrets \"Aloni Mora\" (euphemism for the settlements).","infoSlide":"","language":"English","division":"","topic":{},"link":"","round":"3","tournamentID":"epYFKCbv9IIbdGwlLvYy","id":"UU5tEBv40llQRVa8oI42"},{"infoSlide":"","language":"English","tournamentID":"TMUPfAyolz9JkKMmWlLC","content":"THW NOT enforce pharmaceutical patent infringements within developing nations.","topic":{},"division":"","link":"","round":"5","id":"UU8m01SrAx6yPsnBKGNm"},{"content":"This wouse would prioritise asylum Seekers who have engaged in armed struggle against oppressive regimes.","round":"5","infoSlide":"","tournamentID":"Biz1VRjjdg8eWbm4NJr3","link":"","division":"","topic":{},"language":"English","id":"UUHKKFekNhAe7DsABKHD"},{"tournamentID":"zppT86F7lAE0Gpp7tWYo","infoSlide":"","round":"A3","language":"English","link":"","content":"THBT limitation nurtures creativity.","division":"","topic":{},"id":"UUS9TE8Nh5OfyoGhWsiJ"},{"topic":{},"link":"","round":"4","infoSlide":"","division":"","tournamentID":"DWR60IgakRS9N3GeNemc","language":"English","content":"THBT the Rohingya should prioritize advocating for an independent state over citizenship and acceptance within Myanmar.","id":"UVcyWKodrrFhdOaG569l"},{"division":"","round":"Open_Finals","tournamentID":"oVagPVQLXErhZIkOTqQn","link":"","infoSlide":"","language":"English","topic":{},"content":"THW ban scientific research into the genetics of race.","id":"UXuLAPApkAWRwwAW0C1R"},{"language":"English","infoSlide":"","round":"1","link":"","content":"Assuming feasibility, THW ban all research into the possible genetic origins of sex, race and sexuality.","tournamentID":"68SrKFb9XtsQrLtqLtjO","topic":{},"division":"","id":"UY2jSLOsZUGnxqodAUJO"},{"round":"6","infoSlide":"","link":"","topic":{},"tournamentID":"nXN2yUG7soxwCp4xidzj","division":"","language":"English","content":"THB that South Korea should develop nuclear weapons - Round 6.","id":"UYPcjAghI7LWIdNpHPur"},{"infoSlide":"","division":"","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","round":"Semifinals","topic":{"economics":{"title":"Economics","check":true}},"language":"English","content":"Chúng tôi tin rằng nhà nước nên thu hồi phần lớn tổng cộng các khoản đóng góp cho các tổ chức từ thiện và phân phối lại dựa trên cơ sở là tính hiệu quả của chúng.","link":"","id":"UYw50eFxD0ZuhDeNaTIx"},{"tournamentID":"Iv1dWODCjV8TBafyTxx7","infoSlide":"","round":"1","link":"","language":"English","topic":{},"division":"","content":"This house, as Germany, would immediately cease all reparations to the State of Israel.","id":"UZ89duXKjgM66URiqKwV"},{"language":"English","round":"1","tournamentID":"ZxUcdMSTBBFZQIuIsGtb","topic":{},"link":"","infoSlide":"","content":"THBT religious organisations should be subject to all aspects of civilian law (including, but not limited to: employment practice, adoption policy,...).","division":"","id":"UZLcn7bcri2OuNeYWlwC"},{"division":"","link":"","topic":{},"infoSlide":"","tournamentID":"RA6EqhjHK7wF8NHgzThB","round":"Open_Final","content":"THW reject a Western conception of property rights in favour of collective ownership.","language":"English","id":"UZZN5wNxOEc5fH2upVXl"},{"tournamentID":"4Nqwg2GbRwaUJ5LaWcSt","infoSlide":"","language":"English","division":"","content":"thr the glorification of altruism.","link":"","round":"Open_Final","topic":{},"id":"UZd9NUkymErrOZfmfUhb"},{"round":"3","infoSlide":"","topic":{},"content":"THBT the state should not pay any university students tuition fee.","division":"","language":"English","tournamentID":"dhjYMHAKQ3baHl4HMJbh","link":"","id":"UaYX0ed9RS30EPe1zoxq"},{"link":"","infoSlide":"","language":"English","tournamentID":"Sf18naS6qmQzDSIMNRFV","content":"TH, in times of economic crisis, would ease bank capital adequacy requirements.","topic":{},"round":"2","division":"","id":"Uasp3KFVfgDBzjGrPhFv"},{"tournamentID":"uHY8OFiOXYb0VdlJt20c","content":"This House supports individuals publicizing the identity of people who attend far right protests and gatherings in the USA to their community (coworkers, employers, family etc.).","topic":{},"division":"","link":"","infoSlide":"","language":"English","round":"1","id":"UawwahOMJ2OE9VCj8fey"},{"content":"THBT parents, where concerned, should install spyware to monitor their children's online activity and communications.","tournamentID":"QV74kB5iA6iDiqLCNz2F","round":"3","link":"","division":"","topic":{},"language":"English","infoSlide":"","id":"Uc1bDZ0vHo1mn4n75VXP"},{"tournamentID":"RpQnqbHAxB8fhWBQcnaj","link":"","division":"","language":"English","round":"Open_Final","content":"This House Supports the EU Backed Western Balkans Customs Union, Even at the Price of Terminating the Free Trade Agreement With Russia And of Joining the EU Sanctions on Russia.","infoSlide":"","topic":{},"id":"UcnjwTMYas47pChMUIaw"},{"infoSlide":"","topic":{},"content":"THBT The British Government should publish the communications in their entirety.","link":"","round":"Open_Final","division":"","language":"English","tournamentID":"IliTD9CbISxS4XPApnIH","id":"UdLxGXyMPa87mFgzebLE"},{"tournamentID":"DLFJWaIyHnSlvFofovjc","topic":{},"infoSlide":"","link":"","content":"THW gradually stop paying old age pensions.","language":"English","division":"","round":"4","id":"UdaShssumFtBxv3vjTGL"},{"link":"","division":"","tournamentID":"pMiBCGHX80oXMgUJCqkc","infoSlide":"","language":"English","topic":{},"round":"7","content":"THBT it can be legitimate for a person to claim to identify as a race other than the one they were born into.","id":"Ue5baPNdCmJgnpKokipF"},{"topic":{},"round":"Open_Final","language":"English","link":"","content":"THW rebuild the Husartsan memorial.","infoSlide":"","division":"","tournamentID":"lpOfAtUfJZtb1VnGzV0G","id":"UeX1G4xjUTS5Os7ZCwwI"},{"infoSlide":"","link":"","division":"","language":"English","round":"Novice_Final","content":"THBT the feminist movement should focus its efforts on encouraging men to \"lean out\" rather than on encouraging women to \"lean in\".","tournamentID":"1zpwTG4R66xy1c4CrMeq","topic":{},"id":"Ueub4IgeVuCDDKke5Kta"},{"infoSlide":"","tournamentID":"DpY0fOiqQ2FcccIfvmaH","round":"Open_Semis","link":"","topic":{},"language":"English","division":"","content":"THW offer all citizens, upon request, a second chance.","id":"UfEju3qY5ClO4wNF7wQQ"},{"round":"2","infoSlide":"","topic":{},"content":"THBT congressional Democrats should support a policy of total obstruction during Trump's term.","link":"","language":"English","tournamentID":"zZRXGDm7RC8LjYJKzubm","division":"","id":"UfMeatjFpIg9ax07oe6V"},{"content":"TH would require children, to the extent they are able, to financially support their parents in old age.","topic":{},"division":"","language":"English","round":"2","tournamentID":"Wb0k9XSEirfd7kuffEGF","infoSlide":"","link":"","id":"Ufbr1HCmYJFsmOGsSUy2"},{"tournamentID":"hfhyqiLO3boM6Fbp0Jvs","infoSlide":"","round":"Open_Semis","topic":{},"content":"THBT European countries should compel migrants and refugees to attend lessons about the sexual norms prevalent in the country.","division":"","link":"","language":"English","id":"UggBmxdWikgjoOvbfIn3"},{"infoSlide":"","language":"English","tournamentID":"uUwIAKIDo0apui0AqOxG","division":"","content":"TH supports voluntourism.","round":"2","topic":{},"link":"","id":"UhXFpxHuIWVUqex4M8ZC"},{"infoSlide":"","content":"That we should adopt the Fisher Suggestion.","tournamentID":"1bHNYzF6GWRqdpr3f5vt","link":"","round":"Open_Final","language":"English","topic":{},"division":"","id":"UhXILfvvl2JGexNO8QCU"},{"tournamentID":"CEIVtMmh2XElfzcXXjzn","link":"","round":"1","division":"","language":"English","topic":{},"content":"TH, as the feminist movement, would advocate for the ban of violent/ unrealistic porn.","infoSlide":"","id":"UhzJn30bBX9MIrCeSqfV"},{"link":"","tournamentID":"3puXPIrnWCPTSNlOtl3R","division":"","round":"1","topic":{},"infoSlide":"","content":"THW stop all efforts to cease the international drug trade and put all funding into education and rehab.","language":"English","id":"UiVDqCeBGLLkX4FzlY0T"},{"content":"THBT jewish-americans have a moral obligation to suspend their participation in organizations (hillel, birthright, aipac, etc) that endorses israel’s current settlement program.","division":"","topic":{},"round":"4","link":"","language":"English","infoSlide":"","tournamentID":"9hmPqfKzlDmhAISeJsts","id":"UihLHXWRCOg53XQ5uvFz"},{"language":"English","tournamentID":"HbzzxzNaEfw54UvTulVq","infoSlide":"","round":"Open_Final","content":"THW censor art that desecrates religious symbols.","link":"","division":"","topic":{},"id":"UjGgnxph9K5D0BBy7D2Z"},{"link":"","division":"","language":"English","content":"THW require all schools that teach religion to discuss militant atheism at an equal footing with all major religions.","infoSlide":"","topic":{},"tournamentID":"3dDCV3YYSGl8TNe5f3iO","round":"4","id":"UjS1XkksaTnJkITOzOi4"},{"division":"","link":"","tournamentID":"G40265rxZRrwSbZ3fQSJ","round":"1","topic":{},"language":"English","content":"THW require that companies with >15 employees give 50% of their voting rights to employees.","infoSlide":"","id":"UkEMzbTTWu7YCwuK3pKt"},{"language":"English","topic":{},"division":"","infoSlide":"","content":"THBT Joe Biden should have picked Elizabeth Warren as the Democratic Party's Vice Presidential candidate.","link":"","round":"4","tournamentID":"ltPXjwYNooGAx72v9bz6","id":"UkQDep4Ni04qZMaaMc7j"},{"content":"THW legalise euthanasia.","tournamentID":"SxA6fvGmUbCEyPLjj4Sw","language":"English","round":"1","link":"","infoSlide":"","topic":{},"division":"","id":"UkaRkWfPwh2D0KyZiy1W"},{"tournamentID":"g87X9iRsC0CxxtZdAjMP","topic":{},"content":"THBT food ethics movements should disavow sustainable consumption marketed by large corporations (eg, Starbucks, Chipotle).","infoSlide":"","round":"6","link":"","language":"English","division":"","id":"UlYe3zjIo3jxk6WroLdd"},{"infoSlide":"","round":"Masters_2","language":"English","division":"","tournamentID":"q7pvo4zkG31lg89ofmeq","topic":{},"content":"THBT judges should deliberately misinterpret constitutions to protect important liberties.","link":"","id":"Uldw9jiO74FB3DK4GEw9"},{"language":"English","round":"A2","content":"THBT we are clever enough to engineer our doom but not to prevent it.","topic":{},"tournamentID":"zppT86F7lAE0Gpp7tWYo","division":"","link":"","infoSlide":"","id":"UmcuYHmNaSrONousLhaA"},{"topic":{},"division":"","content":"TH, being a teenager, would not open a Facebook account.","language":"English","infoSlide":"","round":"3","link":"","tournamentID":"tnPBotxO7gOOKcyCXAUw","id":"UmrSWuPBEHrty1Joq6CD"},{"round":"1","content":"THW Prosecute The Parents/Guardians of Obese Children For Neglect.","tournamentID":"Izblbv0LXDRNyAVA9nPW","link":"","division":"","topic":{},"language":"English","infoSlide":"","id":"UnHDtiUX6NTwgrEJe3IT"},{"tournamentID":"RF6WJZV8JYPwFqSpNxlR","division":"","content":"Giả sử công nghệ cho phép, chúng tôi sẽ đánh thuế lũy tiến hạnh phúc với mọi người dân và dùng tiền đó để thay đổi phúc lợi xã hội.","link":"","round":"Grand Final","topic":{},"language":"Vietnamese","infoSlide":"Thuế lũy tiến hạnh phúc (tiếng Anh: Progressive tax) là loại thuế áp dụng mức thuế suất tùy thuộc vào mức độ hạnh phúc của công dân (thấp hơn đối với người có mức hạnh phúc thấp và ngược lại), được nộp dưới hình thức hiện kim.","id":"Unf1A8n6UzUrlkcyaWqT"},{"division":"","topic":{},"language":"English","tournamentID":"wYsVMTqiPYP1HFjzExu2","infoSlide":"","round":"4","link":"","content":"THW still pronounce a verdict for civil cases which have been settled out of court.","id":"Up1CUwwBg52OlTyzBRG1"},{"link":"","topic":{},"division":"","content":"In world that has eradicated racism, THW prefer that people were/were not able to recognise differences in physical appearance.","language":"English","round":"Open_Final","infoSlide":"","tournamentID":"7lMrN2aiwSzD5rzPFwHz","id":"Up26p8CGOsfBo2V9gVir"},{"division":"","tournamentID":"g87X9iRsC0CxxtZdAjMP","round":"5","link":"","content":"TH, as an indvidual, W not consume works produced by immoral artists.","language":"English","infoSlide":"","topic":{},"id":"Upq4iNw26gtWSU98r1n2"},{"topic":{},"language":"English","infoSlide":"","link":"","division":"","round":"Open_Final","tournamentID":"5YavcNMFjpdq8R1u3M2H","content":"In light of the right to representative democracy, TH defends the fact that independent candidates compete.","id":"UqJOzlYvA6b5M4cS75G6"},{"round":"Open_Semi","link":"","language":"English","topic":{},"tournamentID":"p6ZWMCxUvbu1V0BT5gJg","content":"THR the integration of PR China into the global economy.","infoSlide":"","division":"","id":"UqLl2UabqUFGsFXcfCMg"},{"tournamentID":"m6JzV67uYJSVBRpAbgL7","division":"","content":"THBT philanthropic figures focussed on COVID-19 should focus on prevention (e.g. distributing PPE) to possible cures/vaccines","topic":{},"language":"English","round":"2","link":"","infoSlide":"","id":"UqQS1enqqteQECcQUM9Z"},{"language":"English","link":"","infoSlide":"","content":"THW require men to take paternity leave.","topic":{},"round":"1","division":"","tournamentID":"jJ6q3uq5BHRM31WhI18D","id":"UqXzY07Kx6JnesodbcGE"},{"infoSlide":"","topic":{},"link":"","content":"TH supports public funding of blasphemous art.","tournamentID":"E5iEI92yocDkjANxDoF9","language":"English","round":"2","division":"","id":"UqbjXbAzzpZZYxnuIgyW"},{"link":"","round":"Open_Final","tournamentID":"B63fWPacAJNcBJdaEpVz","division":"","language":"English","infoSlide":"","topic":{},"content":"THW create a Supreme Court to protect future generations from current lawmakers.","id":"Ur33sBnAtiMMcgXvZX5U"},{"content":"THBT the Right to Rest should be upheld in all public spaces.","infoSlide":"","division":"","link":"","topic":{},"language":"English","tournamentID":"YZNcM4Wgq9Um4e7kNLdH","round":"1","id":"UsBZnsptVrQavdCQkgg0"},{"tournamentID":"Biz1VRjjdg8eWbm4NJr3","topic":{},"link":"","infoSlide":"","division":"","round":"Open_Final","content":"This wouse would invade Zimbabwe.","language":"English","id":"UsVIJDICJ753ZWXiV6cE"},{"round":"2","tournamentID":"myGQJSUNqcxcCjm3bONn","content":"TH as Israel would no longer label itself a Jewish nation state.","language":"English","topic":{},"infoSlide":"","link":"","division":"","id":"UsaWBm19PtPxaaoG7gIN"},{"round":"Open_Final","infoSlide":"","division":"","content":"THW compel prisoners to be subject to medical experiments.","topic":{},"tournamentID":"SxA6fvGmUbCEyPLjj4Sw","language":"English","link":"","id":"UshVCYciyAe90N08T7ZB"},{"round":"3","language":"English","content":"THBT regions should always be able to call a referendum for independence.","division":"","link":"","tournamentID":"v33DcPMMQZsLJormVjyz","topic":{},"infoSlide":"","id":"UtilaiWx5hGXRKp8dvpi"},{"tournamentID":"NHUypnZQCfkPD98j8TYR","content":"TH, as a female climate change activist, would choose not to have children.","topic":{},"infoSlide":"","division":"","round":"4","link":"","language":"English","id":"Uu10OMDGOo5eCLv2cgbR"},{"link":"","tournamentID":"IgBrZRMArYLwB0oVtcRa","round":"4","topic":{},"division":"","language":"English","infoSlide":"","content":"THW grant artists a percentage of the resale value of their artwork (the amount the art is sold on for if and when the initial inquirer decides to sell it on.","id":"UuNuwaXjIsEAkeTrU98b"},{"language":"English","round":"Open_Semi","topic":{},"infoSlide":"","content":"This house supports the 'Right to be Forgotten' on the internet.","link":"","tournamentID":"sXtyoMtY4Bb7XJvcqA3J","division":"","id":"UukcH5wsvgynhRPZqbZt"},{"division":"","link":"","language":"English","round":"Open_Quarters","content":"You are a citizen living in today’s world. You have the ability to create a perfect world by picking a random child by global lottery and condemning them to a condition of abject misery. The lottery is unbiased. The child will endure all the world’s extreme suffering in perpetuity (i.e. lack of human contact, torture, starvation, disease). The child’s suffering creates a world without war, famine, disease, or poverty: there is perfect prosperity and happiness. THW do it.","tournamentID":"1XSX7FHkgfyCn1pjSqbi","infoSlide":"","topic":{},"id":"Uux7iyAIkjd6y2XWYs34"},{"infoSlide":"","language":"English","round":"2","division":"","topic":{},"content":"TH, as a POC witnessing a non-violent crime (theft, trespassing, drug possession) by another POC, would choose to not call the cops.","link":"","tournamentID":"zidC2m00xOQF4gT3tgiY","id":"UuysfHzX8w8yqyYYmiL1"},{"round":"4","tournamentID":"mkrRVvz5EWSZie6LBtCH","division":"","content":"Chúng tôi sẽ xóa bỏ đồng tiền chung châu Âu.","language":"Vietnamese","topic":{},"link":"","infoSlide":"Euro là đơn vị tiền tệ chính thức của Liên minh châu u, đối với 19 quốc gia thành viên và 6 nước và lãnh thổ không thuộc Liên minh châu Âu.","id":"UvJFXsGWAN2YBwi9U5p7"},{"round":"Novice_Final","content":"THR the Narrative of Having one Great Calling or Purpose in Life.","language":"English","division":"","infoSlide":"","tournamentID":"qLVUbjlIT84ro50ixBwk","topic":{},"link":"","id":"UvZJfQOzwUqFQqAkUyUg"},{"content":"THW abolish eminent domain.","language":"English","infoSlide":"minent domain refers to the power of the government to take private property and convert it into public use. In different contexts, it may be required that the government only exercise this power if they provide just compensation to the property owners.","topic":{},"tournamentID":"AhKyFYR1ZI0UjUmZnaXu","link":"","round":"4","division":"","id":"UvxzbkVkX4seQYS4hItw"},{"division":"","content":"THBT human beings must sow terrestrial life forms on other planets even if that destroys endemic life forms of those planets.","link":"","tournamentID":"axWwnyCM8L14pVHljukt","infoSlide":"","topic":{},"round":"7","language":"English","id":"UwIsP4VFLmeJKlmhuEdy"},{"topic":{},"link":"","division":"","content":"That we regret the stigmatisation of hedonistic lifestyles.","infoSlide":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","round":"ESL_Octa","language":"English","id":"UxJdVMmlB07uFh7byO5w"},{"round":"5","content":"Chúng tôi tin rằng Mỹ nên cản trở Trung Quốc trở thành cường quốc khu vực Châu Á Thái Bình Dương bằng mọi giá (trừng phạt kinh tế, chiến tranh, ...)","tournamentID":"sIrS2zWJD8m7ibVjvyDN","link":"","language":"Vietnamese","topic":{},"infoSlide":"","division":"","id":"UxYCCQpXnjJyuoMtFXC4"},{"round":"5","content":"THW give parliament power to decide over weapons exports.","tournamentID":"YRWxNK3sQq47UacBwpjn","division":"","infoSlide":"","topic":{},"language":"English","link":"","id":"UxfRZySDvFN96fkUeNXh"},{"round":"5","link":"","language":"English","division":"","topic":{},"tournamentID":"kFgdnpZDLOmYAkEJ1Zu6","infoSlide":"","content":"THBT single parents in prison should be provided with special treatment to allow them to raise their young children from behind bars.","id":"UxtWk9LhYBIouONtCUOy"},{"division":"","content":"THW allow illegally obtained evidence to be admissable in court.","link":"","tournamentID":"JsJHH6odeVuMVnQ8A5bN","infoSlide":"","topic":{},"round":"1","language":"English","id":"UyuJYWoXYdzgHOL2eaDs"},{"link":"","round":"5","division":"","content":"Conscription is mandatory in Egypt for males of ages between 18 to 30. The service obligation is between 12 to 36 months and is followed by a 9-year reserve duty. THBT Egypt Should Conscript Women to Female-Only Units.","infoSlide":"","tournamentID":"zUT5H7Cgh7l0a0sJSIba","language":"English","topic":{},"id":"Uz6PelBJ0Y6dPXGvA8dE"},{"content":"TH would allow communities to pay for increased police presence in their area.","language":"English","tournamentID":"PULmrzx6k00EzEt7BxfG","round":"1","link":"","topic":{},"infoSlide":"","division":"","id":"UzHWzM6Da5uJnrYY1XsS"},{"infoSlide":"","topic":{},"content":"TH regrets campaigns by feminists to shut down female empowerment events exclusively for cis women, like Michfest.","tournamentID":"G40265rxZRrwSbZ3fQSJ","division":"","round":"Open_Semis","language":"English","link":"","id":"UzJCHF2Gn8eEBg0ZIbiv"},{"topic":{},"round":"2","link":"","infoSlide":"","division":"","tournamentID":"jiJ3t0fz2aMel6atC1HM","content":"THW forcibly remove the children of Roma parents who refuse to integrate.","language":"English","id":"UzfnnCxgjjPs8UmAWr7Y"},{"tournamentID":"1qq9g2ApB8UdvPr2ewx1","link":"","infoSlide":"","topic":{"fiction":{"title":"Fiction","check":true}},"round":"","division":"","language":"English","content":"Assuming technological feasibility, THW allow people to change their racial identity (skin color, ethnicity, etc.)","id":"UzqiiJuKrD8FBDSr804e"},{"division":"","language":"English","round":"4","content":"THBT courts should not allow gag orders to be part of settlement offers in environmental damage lawsuits.","tournamentID":"V4GiH1luZDgYtx44QdOh","link":"","infoSlide":"","topic":{},"id":"V04d8qKiBEbvctB2zMdR"},{"content":"THB the state should provide no further services beyond those of basic law and order.","language":"English","division":"","infoSlide":"","tournamentID":"Izblbv0LXDRNyAVA9nPW","topic":{},"link":"","round":"Open_Final","id":"V0ravgytZypUIrnUErxo"},{"content":"THW prohibit the media from reporting on the mental illness of those accused of crimes.","infoSlide":"","round":"Open_Final","link":"","tournamentID":"TN94ucwzVJ2xKpp2fcrc","language":"English","topic":{},"division":"","id":"V18iG5UyckW2DLqZp9Qn"},{"link":"","content":"THW not offer theology at state universities.","tournamentID":"rTasJ7TWWuEMSXmebOaC","topic":{},"infoSlide":"","round":"Open_Final","language":"English","division":"","id":"V1TBsaQTATQtdf0ZBggB"},{"topic":{},"round":"Open_Quarters","link":"","division":"","language":"English","tournamentID":"oFJV1Acc1Gr7t6B77LSK","infoSlide":"","content":"Given the dichotomy, This House believes that animal rights activists should focus on the environmental impacts that meat consumption has on humans, rather than empathy for animals.","id":"V2EwAtfXSr3snstBygz0"},{"content":"THW abolish state imposed heritage protection.","division":"","round":"1","language":"English","link":"","infoSlide":"","tournamentID":"LnHXZbgsbq5JIVU7k21X","topic":{},"id":"V2qugIjlay55ar1P0ktk"},{"division":"","content":"THS charter schools.","round":"1","link":"","infoSlide":"","topic":{},"language":"English","tournamentID":"e3m3vjjIT1UO4munSqvD","id":"V31v1YuzmmAu2U5nW8Gp"},{"infoSlide":"","division":"","topic":{},"round":"2","tournamentID":"EpjauMajAi9smGSUAKpC","content":"THW make mandatory that all European treaties would be submitted to a referendum under only one electoral cycle.","link":"","language":"English","id":"V3AgwMldmKmKdp6dF1s0"},{"division":"","content":"THBT the US and it's allies should announce Intentions to capture and try, as opposed to assassinate the leaders of Da'esh (IS).","tournamentID":"9STOHMmWtLnanVavJzB2","infoSlide":"","round":"Open_Final","topic":{},"link":"","language":"English","id":"V3bDL9pN70Ggls10CgUw"},{"topic":{},"link":"","content":"TH, as Canada, would not extradite Meng Wanzhou to the United States.","infoSlide":"","tournamentID":"6AnUBd9SLIBHmD9Uy5dS","round":"Open_Quarters","division":"","language":"English","id":"V4E0c2v2qO2Kn9qomaZI"},{"infoSlide":"Vào ngày 1/7/2020, Nga sửa đổi Hiến pháp, đặc cách xóa bỏ giới hạn nhiệm kỳ cho chức vụ Tổng thống của ông Putin.","round":"Quarterfinals","language":"Vietnamese","link":"","division":"","content":"Chúng tôi lấy làm tiếc về việc Putin trở thành tổng thống trọn đời của Nga.","tournamentID":"i00RSzvK4b1TDEgnpFJd","topic":{},"id":"V4GDn9QkT0zgJe8369lc"},{"link":"","language":"English","division":"","topic":{},"infoSlide":"","content":"THW suspend trade unions and labour protection laws in times of economic crisis.","tournamentID":"zUT5H7Cgh7l0a0sJSIba","round":"4","id":"V4dWir5USjuMgPHP3Nbh"},{"language":"English","tournamentID":"3tMy4nyufgrwLpV8f6da","content":"THBT Libya should repeal its ban on senior members of the Gaddaffi Regime (military and civil) from holding positions in government.","topic":{},"round":"2","infoSlide":"","link":"","division":"","id":"V5TvsD3LFkrYiMRlQX6G"},{"infoSlide":"","content":"That states should be allowed to buy and sell votes in international organizations.","tournamentID":"fkUHa28aVk8LYYEAdofu","division":"","topic":{},"link":"","round":"Open_Semi","language":"English","id":"V5x3UnHL5sUADcBqC35t"},{"link":"","infoSlide":"","tournamentID":"Ryhdb4JOJYP96e5oa49b","topic":{},"division":"","round":"Open_Final","language":"English","content":"THBT the media should not ‘out’ authors who publish under a pseudonym - Grand Final.","id":"V6YRbpkmskTjy8x9smRe"},{"content":"THW not allow anybody under the age of 18 to leave school without first having passed all of their exams.","infoSlide":"","round":"1","tournamentID":"4XrkYxI1Z9BN4Rn7DC4S","language":"English","link":"","division":"","topic":{},"id":"V70kSHa0Kway0L5n5iRM"},{"tournamentID":"xik6XdvZ0JGG1hySfuwC","division":"","link":"","topic":{},"round":"Open_Finals","content":"THBT individuals should not share their political views on social media platforms.","infoSlide":"","language":"English","id":"V9CguTM9lbwOozyEIJoK"},{"topic":{},"division":"","language":"English","link":"","round":"4","content":"THBT developing countries should pursue investment agreements that require state-to-state arbitrations, compared to agreements which grant foreign investors standing to sue governments in investor-state arbitrations.","infoSlide":"","tournamentID":"1zpwTG4R66xy1c4CrMeq","id":"V9kbA3WJUfSXFc63JFnV"},{"link":"","infoSlide":"","tournamentID":"SGpBjVPnJkFrJB0hnxYv","language":"English","round":"Open_Final","content":"THR the narrative that forgiveness is a virtue.","division":"","topic":{},"id":"V9smR4pIuCk15jl6Qo92"},{"language":"English","division":"","content":"THBT there is no significant moral difference between the life of a human and the life of a pig.","link":"","tournamentID":"e3m3vjjIT1UO4munSqvD","topic":{},"infoSlide":"","round":"Open_Final","id":"V9xqOvuWh9GpQQdaw5Do"},{"division":"","link":"","round":"5","content":"THBT prosecutors should never offer reduced sentences in exchange for testifying against others.","topic":{},"infoSlide":"","language":"English","tournamentID":"MKnFsrIKq8equaMluK21","id":"VA5GKfEwXwnfQjyv0n6j"},{"round":"ProAm_Final","link":"","topic":{},"infoSlide":"","division":"","language":"English","tournamentID":"7DiEtR3YNKR69fHccj5Y","content":"TH supports climate change activists engaging in acts, regardless of legality, which cause mass disruption to carbon-intensive infrastructure networks.","id":"VBKKTYvkqtqm6kHQUsR0"},{"topic":{},"content":"THW give transnational EU citizenship to Roma.","tournamentID":"wuDBbL4uYIZXIthzVv4V","infoSlide":"","division":"","language":"English","link":"","round":"3","id":"VBRkpRtcv55VQhn7A8QT"},{"language":"English","link":"","round":"Open_Semis","tournamentID":"DvsGvQWaYzshd3lSsDGu","division":"","infoSlide":"","content":"THW renationalise essential services that were previously privatised (such as water, electricity and gas).","topic":{},"id":"VBTCOYSFcKfQxHkEC1yz"},{"content":"THW significantly restrict military recruitment in impoverished areas.","infoSlide":"","topic":{},"division":"","link":"","tournamentID":"ltPXjwYNooGAx72v9bz6","language":"English","round":"Open_Quarter","id":"VBtsPeuRdIu4nSzey89r"},{"infoSlide":"","link":"","division":"","topic":{},"content":"THW not subsidize national flag carrier airlines.","tournamentID":"3NTAi2gNk5Uyy3NuACO5","round":"1","language":"English","id":"VCFq9ttSqbRaXSZrtirA"},{"link":"","language":"Vietnamese","topic":{"politics":{"title":"Politics","check":true}},"tournamentID":"D8AtyrmDZV48giPFtym5","infoSlide":"","round":"","content":"Chúng tôi, với tư cách là cơ quan hành chính dưới quyền Tổng thống Biden, sẽ không khởi tố Donald Trump vì những tội ác mà Trump bị cáo buộc (gian lận thuế và ngân hàng, gian lận bất động sản, quấy rối tình dục, kích động bạo lực đám đông, sự can thiệp của Nga vào cuộc bầu cử năm 2016, v.v)","division":"","id":"VCNmLxvD2XbWM5MFo2Rp"},{"division":"","content":"Should we abolish all family (welfare) benefits in exchange for a one-off children premium of 100.000 Euros?.","topic":{},"link":"","language":"English","infoSlide":"","round":"2","tournamentID":"2fNmUq1mfr7IP3WAvr0Q","id":"VEMvOc0khO1e3guvLdKP"},{"content":"THBT governments should actively prevent gentrification.","topic":{},"tournamentID":"OyqUfVFCTQ5A8iecmNK1","round":"1","link":"","division":"","infoSlide":"","language":"English","id":"VEmrEVZFdSbZEvtysXcz"},{"round":"3","link":"","tournamentID":"9yPqE2fe1oaHsd7ankOa","content":"TH, as the Radical Left, supports Liberation theology.","language":"English","division":"","topic":{},"infoSlide":"Liberation theology was a late 20th-century Roman Catholic movement arising in Latin America. The Liberationists said the church should act to bring about social change, and should ally itself with the working class to do so. Some radical priests became involved in politics and trade unions; others even aligned themselves with violent revolutionary movements.","id":"VFnQJ1Y9UM7XZWj8AWN3"},{"round":"Open_Final","language":"English","content":"THW grant protesters the right to use non-lethal weapons to violently, but proportionately retaliate.","tournamentID":"K8mVAYwcb9xlXvnmmJBY","infoSlide":"","link":"","division":"","topic":{},"id":"VGMjOdHZzPSBvrWJ6DWB"},{"content":"THW PROSECUTE LEADERS WHO REFUSE TO IMPLEMENT UNIVERSAL HEALTH COVERAGE (UHC) POLICIES FOR MENTAL HEALTH CASES AND OTHER PRIMARY HEALTH CARE EMERGENCIES.","topic":{},"tournamentID":"fYRQ3gsDALGgMYQf58zt","infoSlide":"","division":"","language":"English","link":"","round":"7","id":"VGcJkTSqNObxaNdgMGVN"},{"round":"Open_Semis","tournamentID":"Er03o2M51g3s6dYyUHHm","content":"THW remove all special legal privileges from religious organisations.","language":"English","topic":{},"division":"","infoSlide":"","link":"","id":"VGlu4hG5wuZmQVUX07kb"},{"round":"2","language":"English","topic":{},"division":"","tournamentID":"XL594Q2oZbvHmfmYKFvT","link":"","content":"That we regret central bank independence.","infoSlide":"","id":"VGzwnmpJn1qx7J0jKtN4"},{"round":"1","content":"THW hold religious leaders liable when identifiable adult believers are harmed by adhering to doctrinal teaching (e.g. gay people who opt into conversion therapy, Jehovah's witnesses refusing blood transfusions).","infoSlide":"","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"tournamentID":"3b2nSsxJIMIXNPKJTeQx","language":"English","division":"","link":"","id":"VHReakPqmCksffuDSrRE"},{"content":"THW establish an official single currency for all ASEAN countries.","infoSlide":"","division":"","tournamentID":"DxF0p5X2fi9LhbzCFGTd","link":"","round":"Grand Final","language":"English","topic":{},"id":"VIKapPeP0q19t8CnR12a"},{"content":"THBT war journalists should be forced to reveal their sources in international criminal tribunals (including the International Criminal Court) trying cases of war crimes, crimes against humanity or genocide.","link":"","division":"","topic":{},"tournamentID":"swAbmAXdPnojWIXuZFwm","infoSlide":"","language":"English","round":"2","id":"VJ2EWgutpBcXRawXyEMv"},{"round":"Open_Semis","division":"","infoSlide":"","language":"English","topic":{},"tournamentID":"9WoIT6ofG5A9j3MeLxh4","content":"This House believes that the Obama administration should have prioritized affordable tertiary education over affordable healthcare.","link":"","id":"VJHM4sFX5BG7kpZrRiV9"},{"infoSlide":"","link":"","round":"3","topic":{},"tournamentID":"qvnbu5KYCFZ7nM9hTZ2E","language":"English","content":"This house, as the European Union, would reject Turkey's membership application to the European Union.","division":"","id":"VKBURzCB4NQqhtnsBM0x"},{"topic":{},"language":"English","division":"","round":"5","link":"","infoSlide":"","tournamentID":"EWgHoIX1nWCnY5U0tfPp","content":"THBT decisions to allocate funding to scientific research programs should be taken solely by a group of professional scientists.","id":"VKCXTKSdyr6VW5H04fjP"},{"tournamentID":"VAfi19aZTAIKaUuELBL1","content":": THW temporarily recolonise former colonies that have developed into “failed states”.","topic":{},"infoSlide":"","round":"Open_Semis","division":"","link":"","language":"English","id":"VKat8DvzKoPuu99hL4ku"},{"division":"","topic":{},"round":"Open_Semis","infoSlide":"","tournamentID":"idhVYyUwgWnlyak17o8K","language":"English","content":"THBT western nations should launch pre-emptive air strikes against Iranian nuclear facilities.","link":"","id":"VKdPlx2LTDUdCvR08hbv"},{"content":"This House Would abolish the statute of limitations for heinous crimes (e.g. murder, sexual assault, grievous bodily harm).","round":"1","topic":{},"division":"","language":"English","tournamentID":"1MV3spmbrmWLKhisZDU8","infoSlide":"","link":"","id":"VKny6R90AR8k0T9uHGN0"},{"topic":{},"round":"29","tournamentID":"0DgXee32WEP3hxmGZExS","content":"THBT Trade Unions do more harm than good for workers.","link":"","infoSlide":"","language":"English","division":"","id":"VKpJSgzvrXHglj5dcFHW"},{"tournamentID":"x0FqHVU6TNo1z8egQZct","content":"THBT the jury in all medical malpractice trials should consist solely of medical professionals.","division":"","language":"English","topic":{},"round":"3","infoSlide":"","link":"","id":"VLL6VkbjKC0MskdWcyvw"},{"tournamentID":"qQd3HyiFI5fx18xViLoe","round":"4","content":"THBT a simple majority of the legislature of an established democracy should be able to change or overturn any piece of legislation (including constitutions).","language":"English","link":"","infoSlide":"","topic":{},"division":"","id":"VLgMH9Y8qHpnB525d2Z3"},{"division":"","language":"Vietnamese","round":"Grand Final","tournamentID":"FiF24Yc0spiBkvTxiYwD","topic":{},"content":"Chúng tôi, với tư cách Netflix, sẽ xóa bỏ rào cản vùng trên nền tảng của mình.","infoSlide":"Netflix thực hiện chính sách cản trở vùng dành cho người dùng ở các khu vực khác nhau, Điều đó có nghĩa là sẽ có một số bộ phim không được phát ở một số quốc gia hoặc vùng lãnh thổ.","link":"","id":"VLujlwBqryHNZd2CaYuW"},{"language":"English","content":"THW give parliaments the right to appoint an absolute dictator for a limited period of time.","link":"","topic":{},"infoSlide":"","round":"1","tournamentID":"NNES6CXrTQ3wDbdnrNDb","division":"","id":"VM5LOu2iyKNUjX1DnlYR"},{"infoSlide":"","language":"English","tournamentID":"H6MeeIis6pg2gQbgEyuB","division":"","link":"","topic":{},"content":"THBT housing activists in San Francisco should advocate for the abolition of zoning regulations rather than increased rent control..","round":"1","id":"VMNzLy62sSxjNYIlfrZK"},{"division":"","content":"THBT IMF should pay reparations to Greece.","tournamentID":"4AUWV6dX7gzPml1BbN5u","topic":{},"infoSlide":"","language":"English","round":"4","link":"","id":"VMpRAjGLfO0Uz8a10UDj"},{"division":"","link":"","tournamentID":"zngB1WF8viOW2uGu6swZ","infoSlide":"","language":"English","round":"1","topic":{},"content":"THW make fathers take paternity leave.","id":"VNDZDgbenuHt9ofsOEMO"},{"link":"","round":"Open_Quarters","infoSlide":"","tournamentID":"LczIO0anMv6dKnbpRYYr","division":"","language":"English","topic":{},"content":"THW require the state to compensate individuals who face criminal prosecution but are not found guilty.","id":"VOB5LSVV9XOyHYPQWVrk"},{"tournamentID":"7Jdvl74EMNCm0P5fq9PJ","round":"Octofinals - Motion 1","topic":{"religion":{"title":"Religion","check":true}},"infoSlide":"","language":"Vietnamese","division":"","link":"","content":"Chúng tôi ủng hộ thế giới nơi mà mỗi tín đồ tự thiết lập liên kết của riêng họ với Chúa thay vì thông qua các tổ chức tôn giáo.","id":"VOUR3FiIHDU6QkjxnPwI"},{"topic":{},"division":"","language":"English","link":"","content":"This house believes that social media companies should aggressively exclude extremist political content from their platforms.","infoSlide":"","round":"4","tournamentID":"bxhnmh9CZq21XJcRU2BX","id":"VOeQQxrlFlo939Z8dSlG"},{"infoSlide":"","tournamentID":"5YavcNMFjpdq8R1u3M2H","round":"4","content":"TH regrets the Portuguese decolonisation.","topic":{},"division":"","link":"","language":"English","id":"VPGhAuNBBkczOv2wLyoJ"},{"content":"Chúng tôi tin rằng Hàn Quốc và Triều Tiên nên ngừng mọi nỗ lực thống nhất và coi nhau như 2 quốc gia độc lập.","link":"","division":"","language":"English","topic":{"irw":{"title":"International Relations/War","check":true}},"infoSlide":"","tournamentID":"sgcqNV5ntCoa4H8glRBu","round":"","id":"VPh9ydrD7T5SwMrmlY0V"},{"division":"","tournamentID":"683xp6VC99fyKWXfWS9H","topic":{},"round":"4","language":"English","content":"THR the romanticisation of art that is pursued for non material gain.","link":"","infoSlide":"","id":"VQMsTN8HDRTyqTdM6yln"},{"link":"","division":"","tournamentID":"uHY8OFiOXYb0VdlJt20c","topic":{},"infoSlide":"","round":"2","language":"English","content":"This House would privatize NASA.","id":"VRlq4xVRcEuYGBcNQq0N"},{"round":"1","language":"English","tournamentID":"yhJgdE0VFcsqlvWffep1","topic":{},"link":"","content":"THW ban the advertising of financial products that entail an obligation of consumer debt.","division":"","infoSlide":"","id":"VS0I4fkQCFBe2tYm5JnL"},{"tournamentID":"aywt5Kt0TqoeqngKQ0I4","link":"","content":"THW create an age-restricted rating that warns the audience when a film has failed the Bechdel Test.","infoSlide":"","division":"","topic":{},"round":"5","language":"English","id":"VS2t2azDlWxN4qxD2eAK"},{"topic":{},"infoSlide":"","content":"THBT the disappearance of marriage from society will be more beneficial for LGBT individuals than their inclusion in it.","tournamentID":"yrT248aRWPJC4Vb6MsRt","link":"","division":"","round":"2","language":"English","id":"VSKy76wmL9Rr72MSqRyN"},{"content":"Should doping be allowed in professional sport (Leistungssport)?.","division":"","round":"2","infoSlide":"","language":"English","link":"","topic":{},"tournamentID":"vRdckCLdD0l2Rjc63y5T","id":"VSajtou7QOPGorjW6s9m"},{"round":"3","content":"THW make voting in European Parliament Elections mandatory (not exact wording).","infoSlide":"","tournamentID":"2iPGMwcaQqidqlVq1gzJ","link":"","topic":{},"language":"English","division":"","id":"VSsX1W5VcTfkVWvDNMU2"},{"infoSlide":"","language":"English","link":"","round":"2.1","topic":{},"division":"","tournamentID":"1leOvfvlbNAIDzW6UnkK","content":"THBT the bare necessities are enough.","id":"VSut8NKmBhLNKfUutxEL"},{"link":"","topic":{},"content":"THBT press agencies should not purchase or publish the work of freelance war reporters.","language":"English","division":"","infoSlide":"","tournamentID":"OuMJNWJJy88lWhwWuJmy","round":"2","id":"VT4nwJlvPmtIbVRKfMPK"},{"topic":{},"tournamentID":"0zMaoLN7qmzWGSYIzhjh","infoSlide":"","link":"","content":"THW remove all non-military sanctions on Iran.","division":"","language":"English","round":"2","id":"VTBeRGqQkSFk1TbdJfNY"},{"topic":{},"content":"THW allow all doping in professional sports.","tournamentID":"E6Cr0CYWyZinduIgwsMe","language":"English","link":"","infoSlide":"","division":"","round":"2","id":"VTTAxczp5mlKc690mkYb"},{"round":"ESL_Final","division":"","infoSlide":"","content":"THW financially incentivise interracial and interfaith marriage.","language":"English","tournamentID":"VZL2SmUXq00WGPbW0ZRt","topic":{},"link":"","id":"VTmkMEZui41lWIiYp6cG"},{"topic":{},"language":"English","tournamentID":"vgTQs0itA0pIPKzwI7CK","content":"THBT lack of Intent should not be considered a legitimate defence in hate speech trials.","link":"","infoSlide":"","round":"5","division":"","id":"VTr7jb1kfzrdzV0SNB0d"},{"language":"English","tournamentID":"ZQQO7Q0LBTeQnU1Rb8fK","content":"THW rather spend the money on subsidised housing and living costs for migrants in the centre of Paris than investment in the Banlieues.","link":"","infoSlide":"","division":"","topic":{},"round":"5","id":"VUqNFUbwsqFnM9BCdRLu"},{"infoSlide":"","round":"","topic":{"education":{"title":"Education","check":true}},"content":"THBT Vietnam should not teach history in a way that emphasizes the praise of the nation's victories.","tournamentID":"CJKUeBIUibEtZYahoUQV","link":"","division":"","language":"English","id":"VUtQECdrDpXQ4tVn9uPk"},{"link":"","division":"","topic":{},"round":"1","language":"English","infoSlide":"","content":"This House would make voting power depreciate with age.","tournamentID":"lWGI0B8QpTMEA8NW8UYQ","id":"VVkdGqf4oZVFc9kYGYot"},{"content":"THW allow workers to sell their rights in exchange for higher pay (e.g. health and safety protections, right to maternity/paternity leave etc.).","infoSlide":"","link":"","tournamentID":"Vis5yhSVMHubvgdJTwP1","topic":{},"round":"5","division":"","language":"English","id":"VXEVBv3k6SJPYC8bcAIG"},{"content":"This house believes that the West should engage in covert efforts to overthrow Vladimir Putin.","link":"","language":"English","round":"4","tournamentID":"mXeF4ypkhHofmXrxLWxA","infoSlide":"","division":"","topic":{},"id":"VXN0pA9UubkDcIJNOLYn"},{"division":"","tournamentID":"XL594Q2oZbvHmfmYKFvT","language":"English","round":"Open_Semi","infoSlide":"","content":"That we should regulate social media entities as publishers/news organisations.","topic":{},"link":"","id":"VXd9aYtPPOxpWwxXycPa"},{"topic":{},"round":"4.2","division":"","language":"English","tournamentID":"1leOvfvlbNAIDzW6UnkK","link":"","infoSlide":"","content":"THB in free speech.","id":"VYB8D1MrjsvP8n1nRlTC"},{"infoSlide":"","content":"THW reinstate the Wet Foot, Dry Foot policy.","division":"","tournamentID":"pMiBCGHX80oXMgUJCqkc","link":"","round":"6","language":"English","topic":{},"id":"VYXlVMLgzZxOVLNJQIeA"},{"infoSlide":"","topic":{},"division":"","tournamentID":"Z2fhe3NoSvpEOVSzVxzj","content":"THBT patriotism is a virtue.","language":"English","round":"4","link":"","id":"VYe0SlifFv3BTZPw6AQK"},{"language":"English","division":"","round":"5","content":"TH prefers a world where all tertiary education shifts online permanently.","infoSlide":"","topic":{},"link":"","tournamentID":"AhKyFYR1ZI0UjUmZnaXu","id":"VZEj319hMGNFf99wpmzT"},{"division":"","link":"","infoSlide":"","topic":{},"language":"English","round":"3","tournamentID":"JtHb8gJ24LeJcHq82rm5","content":"THW nationalise the banking sector.","id":"Va6yEwFFkcCt4NhMEdrP"},{"language":"English","infoSlide":"","tournamentID":"0anPdjjejinL3DGvB4L1","round":"2","content":"THR the ideological dominance of the left in the feminist movement.","division":"","link":"","topic":{},"id":"VaKwUgxgOrEN34MZZjfu"},{"topic":{},"infoSlide":"","round":"4","tournamentID":"5ETrS816OeSAWdPhWEHf","content":"“THB Manchester City and Teams of their Ilk are Ruining Football”.","division":"","language":"English","link":"","id":"Vaf6LNwWdeVMSrH492OF"},{"topic":{},"infoSlide":"","language":"English","round":"3.1","division":"","content":"More financial support for students is preferable over travel subsidies.","tournamentID":"h373wn3dFw9UcWDcJpyy","link":"","id":"Vai3qbGPSzFsX0qUOQ4f"},{"topic":{},"division":"","content":"THW, as the West, invade Syria with the objectives to depose the Assad regime and oversee a transition to democracy.","round":"4","link":"","tournamentID":"f1thAYfptp3bklFlrsSe","language":"English","infoSlide":"","id":"Vblci15aJg1BM2xxuBUv"},{"language":"English","round":"Novice2_Final","tournamentID":"SfEIDDzpv3y19flsWYFH","infoSlide":"","content":"THR the Heroisation of Covid-19 Frontliners.","division":"","link":"","topic":{},"id":"VbzTcgcWbJ3DcWCWk9Yu"},{"round":"Novice Grand Final","content":"This House Supports the Regional Comprehensive Economic Partnership.","topic":{},"tournamentID":"ruG3JCf2Mh62VDkchi11","link":"","division":"","infoSlide":"The Regional Comprehensive Economic Partnership is a trade pact signed by Australia, China, Japan, New Zealand, South Korea, and the ten members of the Association of South-East Asian Nations (ASEAN). The Regional Comprehensive Economic Partnership will create the world’s biggest trading bloc, and cover almost a third of the world’s GDP, to the exclusion of the United States of America.","language":"English","id":"VeTDNUBu6EUCdytjtNs6"},{"content":"It is mandatory in Germany to reserve one percent of your public building budget for art projects. Motion: Should we stop the mandatory art requirement for public building projects?.","language":"English","topic":{},"tournamentID":"QjQ9aMJIggiNR9zYImnN","round":"Open_Semis","link":"","infoSlide":"","division":"","id":"VeTFoa3gEx991uwjW1Rc"},{"round":"","content":"We will break Apple's monopoly.","division":"","link":"","tournamentID":"CbtTNoNzLTvfNvRWmMc2","infoSlide":"","language":"English","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"id":"VfxyFmvE9mGJF5x7pD7p"},{"infoSlide":"","tournamentID":"VmS29bKnoZWYDeWGOc08","round":"3","topic":{},"content":"Should there no longer be a possibility of early release in case of life sentences?.","link":"","division":"","language":"English","id":"VgUZqbTMD6WwM1dZkCXv"},{"language":"English","round":"4","link":"","tournamentID":"6AnUBd9SLIBHmD9Uy5dS","content":"THBT the LGBTQ+ movement should not have focused on military inclusion as a major policy initiative.","division":"","infoSlide":"","topic":{},"id":"Vh3HuoWLlBb0vHDNWACa"},{"tournamentID":"q7pvo4zkG31lg89ofmeq","division":"","infoSlide":"","link":"","topic":{},"language":"English","round":"4","content":"THW prohibit the media from reporting on the mental illness of those accused of crimes.","id":"Vh8RcTHq5pw4fRIi0adX"},{"topic":{},"tournamentID":"ZQk7wGWckTLOk9Y0j9z4","round":"9","division":"","infoSlide":"","content":"This House believes that religious institutions should use radically leftist interpretations of their teachings in areas of high rates of poverty (e.g Liberation Theology, Islamic Socialism).","language":"English","link":"","id":"VhP9iqj6M26hTa6yJ2OD"},{"division":"","content":"THBT LGBT should split into its constituent parts.","topic":{},"round":"10.1","infoSlide":"","tournamentID":"BXqPhfwak2R1kYHV48bp","language":"English","link":"","id":"VhcbIMAwQXX9y3pvvTkh"},{"division":"","infoSlide":"","tournamentID":"Sf18naS6qmQzDSIMNRFV","language":"English","topic":{},"round":"4","content":"THW allow \"religious duty\" as a mitigating defense for crimes.","link":"","id":"VibJwkPbnwiTdwJl9KM6"},{"language":"English","division":"","content":"That Gotham would be safer if Batman abandoned his 'No Killing' rule.","infoSlide":"","round":"5","link":"","topic":{},"tournamentID":"Pt1Z2dTdUinRviVucbZA","id":"VjBBiS6ZRERx2MZvGVl3"},{"division":"","topic":{},"round":"Spanish_Final","language":"English","infoSlide":"","content":"ECCQ el involucramientode Estados Unidos en Panama (presencia militar, influencia cultural, relaciones economicas estrechas, etc) beneficia a los panamenos.","tournamentID":"QePDCf8cQ2AX4XfcvR3T","link":"","id":"VjFSkkCHTcnfNcD8xc55"},{"language":"Vietnamese","tournamentID":"i00RSzvK4b1TDEgnpFJd","content":"Chúng tôi, với tư cách là một công ty có thương hiệu sản phẩm uy tín trên thị trường nhưng đang trong thời kỳ khó khăn về tài chính, sẽ ưu tiên nhượng quyền thương hiệu thay vì tiếp tục duy trì hoạt động kinh doanh tại các cửa hàng bán lẻ của doanh nghiệp.","division":"","round":"3","topic":{},"infoSlide":"Nhượng quyền thương hiệu là một chiến lược chủ yếu được sử dụng bởi các công ty dịch vụ, qua đó doanh nghiệp bán thương hiệu cho nhiều chủ sở hữu khác nhau để lập nên nhiều chi nhánh. Các chi nhánh này hoạt động độc lập với chất lượng và quy trình khác nhau nhưng vẫn mang thương hiệu ban đầu của doanh nghiệp. VD: Cộng Cà Phê, Sữa chua trân châu Hạ Long, trà chanh Bụi phố, lẩu Phan,..","link":"","id":"VjfJ4mqtWgExE5bdavMZ"},{"tournamentID":"yDvj9tks9IvE2CTAVfzV","content":"TH prefers a tolerant religious society over an atheist one.","topic":{},"division":"","round":"5","link":"","infoSlide":"","language":"English","id":"VkY933PNnq9yUICgMBW5"},{"division":"","round":"0","infoSlide":"","tournamentID":"gaW3hl0mF758MDm7UkNs","content":"TH regrets the turn away from socialism.","language":"English","topic":{},"link":"","id":"VkeeAc6OMJo3yO19nUJk"},{"tournamentID":"lM9u9z6CfHfA9HPucSIT","link":"","round":"2","content":"In situations where it's not possible to achieve both aims and the decision lies with the doctor, THBT doctors should prioritize prolonging life over the quality of that life.","division":"","language":"English","infoSlide":"","topic":{},"id":"Vl13zXgHTqH7pRhWWuEg"},{"link":"","infoSlide":"","content":"This House would allow private corporations to donate to political campaigns in Brazil.","round":"3","division":"","language":"English","topic":{},"tournamentID":"WCy3lEpZMYjWgaZ7Qx1o","id":"Vlpz6dRI7vfEB9DHOtHg"},{"round":"6","topic":{},"link":"","tournamentID":"WqXUc7EMDvkqqg3BVCtf","language":"English","infoSlide":"","division":"","content":"This House would only allow the media and campagning organisations to depict or publish information about the deceased in a tragedy with the explicit permission of the family.","id":"VmHZ05aefrcFlZZezo6v"},{"tournamentID":"nMUJTA4Krf9MyO7MGVzA","round":"14","infoSlide":"","link":"","content":"THW resist the supremacy of English by any means available.","division":"","language":"English","topic":{},"id":"VmK5ybENfCYRVFTQiqo0"},{"content":"THW preference a strong social media over a physical presence in protest culture.","division":"","round":"Novice_Finals","topic":{},"language":"English","tournamentID":"sA03ySqGdgfByNOTfDfC","infoSlide":"","link":"","id":"Vmda5iBvjIVLsOi3yXRb"},{"content":"THW create Hamsterdams in cities with a high level of drug use.","tournamentID":"CIIwPxm7lqd3hGr5g8JP","round":"3","infoSlide":"","topic":{},"language":"English","division":"","link":"","id":"VmxD6CEuhWI6SYHPzobT"},{"tournamentID":"V8TulSs5yNLpZX8Xohpq","round":"4","division":"","topic":{},"infoSlide":"","link":"","content":"THW prohibit the transfer of football players outside their home leagues until the age of 26.","language":"English","id":"VnBxmsqOq3zYsVZczwf4"},{"tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","infoSlide":"","round":"Open_Semis_1","link":"","division":"","language":"English","topic":{},"content":"That we regret the possibility of jury nullification.","id":"VnlcuSD8BP0JbidmZ8Vw"},{"content":"TH regrets the commercialisation of indigenous cultures.","infoSlide":"","tournamentID":"BXqPhfwak2R1kYHV48bp","round":"9.3","topic":{},"language":"English","division":"","link":"","id":"VojX1GyFjxlP4LDmvkLv"},{"tournamentID":"AhKyFYR1ZI0UjUmZnaXu","content":"THBT all hospitals should be run by the state.","division":"","language":"English","topic":{},"link":"","round":"3","infoSlide":"","id":"VpTH7PJvffyd8KQpzggF"},{"topic":{},"round":"1","infoSlide":"","division":"","link":"","language":"English","content":"THW remove all constraints on companies firing workers.","tournamentID":"JsQrI80phRuvDHr37q5N","id":"VrIeuwApasllBg9xKtIv"},{"content":"THBT all universities should permanently move from letter grades to pass/fail systems.","topic":{},"round":"2","infoSlide":"","division":"","tournamentID":"pu7FduCxL7IOOrWe0ypf","language":"English","link":"","id":"Vsb6I6fJkepGWnkaylAx"},{"content":"TH regrets the societal acceptance of promiscuity.","division":"","topic":{},"language":"English","infoSlide":"","tournamentID":"QV74kB5iA6iDiqLCNz2F","round":"Open_Final","link":"","id":"VspHzECnBNON7ivBAJJN"},{"tournamentID":"AKtcioaPMHcBM5C3fCCP","language":"English","round":"Open_Quarters","content":"TH, as an up and coming female artist, would publically decline a leading role in a Roman Polanski film.","division":"","infoSlide":"","topic":{},"link":"","id":"Vtlkoso7BJcEzwKrICcr"},{"tournamentID":"eQMzhfh3p9amGITvLICM","link":"","language":"English","content":"This House believes that every European school system should abolish homework to combat school drop-out.","topic":{},"round":"2","division":"","infoSlide":"","id":"VtqXwJQh7XDj1NS6vqvj"},{"division":"","infoSlide":"","language":"English","round":"Open_Final","link":"","tournamentID":"db8a4cSMVYVFuxZgcf0y","content":"Assuming that a technology exists that can accurately measure and transfer intelligence This House would radically redistribute intelligence among the population.","topic":{},"id":"Vu2Clx5mms848zCpfciH"},{"content":"This house believes it is illegitimate for governments to prevent any peaceful protest in public space.","tournamentID":"pLQyWywMwoV4AU3XoFJO","topic":{},"infoSlide":"","link":"","language":"English","round":"Novice_Final","division":"","id":"VuxMEZdTySOOeeUod5y9"},{"link":"","language":"English","round":"2","topic":{},"division":"","tournamentID":"qotkEeWGxvmIXOZx52qZ","infoSlide":"","content":"THW launch a ground invasion to fight the Islamic State (ISIS) in Iraq.","id":"VwFiP4Xx9sLENhS2A7OB"},{"topic":{},"language":"English","tournamentID":"w1cmIhewdRlJLYHGdtbg","link":"","round":"3","division":"","content":"THW ban research into the genetic origins of homosexuality.","infoSlide":"","id":"VwGPcRCf82B7MJ7gEQm6"},{"topic":{},"tournamentID":"xewLQXUxvfe0Xal1qtHM","round":"5","link":"","content":"THBT copyright should expire on the death of the author/artist.","division":"","infoSlide":"","language":"English","id":"VwlubAHqQIOGHm0QTBcH"},{"link":"","division":"","language":"English","round":"4","tournamentID":"uOrbqWx5KdpXchUpHb3Z","topic":{},"infoSlide":"","content":"THBT the feminist groups should not campaign against abortion.","id":"Vxt59wyst1CPhUfQjdYB"},{"link":"","language":"English","infoSlide":"","tournamentID":"G40265rxZRrwSbZ3fQSJ","topic":{},"content":"THW ban eminent domain rights.","round":"4","division":"","id":"Vy81vh8q7wKBlDFXj8Et"},{"tournamentID":"MSkvKRc0Dq8mooTLp6T8","division":"","content":"THW allow jury nullification.","round":"4","topic":{},"link":"","language":"English","infoSlide":"","id":"VyIe1xAkHb6OYUnGkeMQ"},{"content":"This House Supports the increased presence of the \"intellectual dark web\" on mainstream media.","infoSlide":"","tournamentID":"YaTXOaEvPKh8XHB3VTBK","division":"","language":"English","link":"","round":"4","topic":{},"id":"VyrFZdhfU6Ry6szlS2dS"},{"tournamentID":"H6MeeIis6pg2gQbgEyuB","division":"","link":"","topic":{},"infoSlide":"","content":"THBT liberal media outlets should prioritize sensational reporting (e.g., Daily Kos, Young Turks) over neutral journalism (e.g., CNN, New York Times).","round":"3","language":"English","id":"Vyxk018hQzneUUEmep1k"},{"language":"Vietnamese","division":"","content":"Chúng tôi, với tư cách Mỹ, sẽ hợp tác với Trung Quốc để giải quyết vấn đề đại dịch COVID-19.","round":"Semifinals","link":"","infoSlide":"","topic":{},"tournamentID":"mkrRVvz5EWSZie6LBtCH","id":"VzDoTEgEPUBbYdOcBfHh"},{"topic":{},"link":"","division":"","content":"THBT states should adopt sunset clauses that legally force them to review and either re-authorize or revise their constitutions every generation.","language":"English","infoSlide":"","tournamentID":"92dIEXeOXUVvlcFeGCIr","round":"6","id":"VzGT6QHtia3XaH9Wbk7y"},{"round":"3","tournamentID":"V4GiH1luZDgYtx44QdOh","infoSlide":"","division":"","language":"English","topic":{},"content":"THBT children do not owe a special moral obligation to their parents.","link":"","id":"VzIW4onN3cecno3Dk430"},{"language":"English","round":"Open_Quarters","content":"THBT Boston College should release the IRA tapes.","division":"","tournamentID":"uOrbqWx5KdpXchUpHb3Z","link":"","infoSlide":"","topic":{},"id":"VzQwYUBbfVtTv8UbHx68"},{"round":"Open_Final","content":"THBT individuals should vote based on their principles rather than on the electability of the candidates (eg by vote-spoiling in the #undirosak movement, or by voting for fringe candidates).","tournamentID":"xv0FPHxLsij7LUJlUmBy","infoSlide":"","division":"","link":"","language":"English","topic":{},"id":"VzitpY1QluFH6vyBQoFo"},{"link":"","round":"3","infoSlide":"","tournamentID":"uES9ygXHa8tJuYB7dFEM","language":"English","topic":{},"content":"THR the rise of movements based on ethical consumption.","division":"","id":"W0DiBqa8Yo9lzOxaD3fD"},{"content":"THW set up brothels in military bases abroad.","topic":{},"infoSlide":"","round":"Open_Final","language":"English","division":"","link":"","tournamentID":"OwplBrh3NruD1YwoexiY","id":"W0HIQ8Ao5jRES3jCNsZA"},{"link":"","tournamentID":"tC9C0k05cAmtT3IBK2AV","content":"THW require that any houses or apartments left vacant for six months or more be surrendered to the State.","division":"","infoSlide":"","language":"English","topic":{},"round":"4","id":"W0pFTe6meb0KZbJn8x4U"},{"infoSlide":"","topic":{},"link":"","language":"English","round":"4","content":"THW assassinate Iranian and North Korean nuclear scientists.","division":"","tournamentID":"tLlByvzEQCgHw5hl7kZg","id":"W18ShMe5wVh0pRTqjrgX"},{"tournamentID":"Izblbv0LXDRNyAVA9nPW","division":"","language":"English","round":"Open_Semis","infoSlide":"","content":"THB one should not be entitled to seek removal of any links to any data irrespective of their being ‘‘inadequate, irrelevant or excessive“.","topic":{},"link":"","id":"W1rBzg6gKAOlgseRUj78"},{"round":"ESL_Final","content":"THBT that Japan should not abandon nuclear power.","infoSlide":"","topic":{},"division":"","tournamentID":"MKnFsrIKq8equaMluK21","language":"English","link":"","id":"W23F69WvtHKeVGMJuZKh"},{"division":"","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","language":"English","round":"5","content":" This House prefers a world where all land was held in government trust and leased out on limited-term contracts.","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"infoSlide":"","link":"","id":"W2IbqU8bgSGr6310SgDX"},{"topic":{},"infoSlide":"","link":"","round":"5","language":"English","content":"THW prosecute the perpetrators of domestic violence without the victim's consent.","tournamentID":"mzvnxBrGLKyjonGHD82N","division":"","id":"W2ry71UyR9s8RGdhAMY7"},{"link":"","content":"THW allow victims of miscarriages of justice to sue expert witnesses for incompetence.","infoSlide":"","tournamentID":"IIWebjlC0qunFyLmEiVa","language":"English","division":"","topic":{},"round":"3","id":"W3sRwnsFeoPX1kCxRHjM"},{"content":"THS protectionism in developing countries.","language":"English","division":"","link":"","infoSlide":"","tournamentID":"FISzpNaGZKCHkhtDdzPp","topic":{},"round":"5","id":"W429LzoUenoFdjADv3sz"},{"language":"English","tournamentID":"9pAAcbund4BvOXScZxre","infoSlide":"","content":"THW allow individuals to contract out of all basic employment provisions in their contracts (such as health & safety, unfair dismissal etc) in return for compensation.","link":"","round":"3","topic":{},"division":"","id":"W43YubVpFlkZUoeBhq09"},{"round":"3","topic":{},"tournamentID":"7bcIb5yS1YVpFE3hzoDf","infoSlide":"","content":"THBT criminal defendants who hire private counsel should not be afforded the right against self-incrimination at trial.","division":"","link":"","language":"English","id":"W4XnPgvLfYTjVLthimsa"},{"link":"","infoSlide":"","tournamentID":"GyiwbDg4TBAWCn1HmjKi","language":"English","topic":{},"division":"","content":"THW prefer the creation of class-based affirmative action programs over race-based affirmative action programs at higher education institutions.","round":"5","id":"W52sTZYEjOy3CxGgyXBo"},{"content":"TH supports minority ethnic parties.","link":"","infoSlide":"","tournamentID":"jkJhYCzI3XvX3Zgm0Ivc","round":"5","topic":{},"division":"","language":"English","id":"W5DUD6jjayqGvGmm0850"},{"tournamentID":"7Jdvl74EMNCm0P5fq9PJ","topic":{"economics":{"check":true,"title":"Economics"}},"infoSlide":"","language":"Vietnamese","division":"","content":"Chúng tôi sẽ cấm người đi xin việc tiết lộ tên của trường đại học đã cấp bất kỳ bằng cấp nào mà họ có.","link":"","round":"6","id":"W5fdT743rO4mMqu5Qydz"},{"content":"As left-wing progressive political parties, THW prioritize pushing for reduced voting age, at the expense of pushing for reform of race-based voter suppression (including discrimination against immigrants).","tournamentID":"yDvj9tks9IvE2CTAVfzV","infoSlide":"","topic":{},"language":"English","division":"","round":"1","link":"","id":"W5wkdwHb9EvDP2y9MjRQ"},{"content":"THW not publicly fund universities.","tournamentID":"XBBB3MfIKpYpUaioBlLB","link":"","language":"English","round":"1","infoSlide":"","division":"","topic":{},"id":"W7GE6S86S341R8yGHhyt"},{"link":"","topic":{},"round":"Semifinals","language":"Vietnamese","content":"Chúng tôi tin rằng nghệ thuật là thành tựu lớn nhất của nhân loại.","tournamentID":"mAqW9Go1ryAbaaM1OY8z","division":"","infoSlide":"","id":"W83GEBjRfOWjOr0xzIsq"},{"link":"","topic":{},"infoSlide":"","division":"","content":"THBT movements should not use civil disobedience as a strategy to achieve their goals.","tournamentID":"m6JzV67uYJSVBRpAbgL7","round":"High School Semifinals","language":"English","id":"W8fz7224icQPgGtRBxIA"},{"language":"English","topic":{},"division":"","content":"THW nationalize credit rating agencies.","infoSlide":"","link":"","tournamentID":"Hk8f1ASR1JhJdfu9tmfK","round":"6","id":"W9AQ1mvCv5w2dL0gGB6N"},{"language":"English","round":"Open_Quarters","link":"","topic":{},"tournamentID":"wKhC6L9zPycGKlqYWb6j","infoSlide":"","division":"","content":"THW not vote for protest candidates in primary elections.","id":"W9FgQdrYqwaSVo2NHbPI"},{"language":"English","division":"","topic":{},"tournamentID":"fYRQ3gsDALGgMYQf58zt","link":"","round":"Open_Final","content":"THR THE BORDER CLOSURE.","infoSlide":"","id":"W9Isqk1DZmsw7YvTRq1a"},{"link":"","topic":{"religion":{"check":true,"title":"Religion"}},"tournamentID":"nALUKfkpmOnWnQCzecru","infoSlide":"","division":"","content":"Chúng tôi, với tư cách là một người lãnh đạo tôn giáo/tổ chức tôn giáo, sẽ dừng các nỗ lực tăng số lượng người theo đạo mà thay vào đó củng cố niềm tin của những người đã theo đạo đó.","language":"Vietnamese","round":"","id":"W9MYZv4aLvmdlwPTcmXs"},{"link":"","division":"","topic":{},"infoSlide":"","language":"English","tournamentID":"DFNWZhapl7SHDFBrFsMi","content":"This house believes that medical staff should be able to opt out of providing treatments on religious or ethical grounds.","round":"1","id":"W9Y4pZVMw3eKBLRU51QQ"},{"language":"English","tournamentID":"9JqIpRhRkA8gulRio4t9","division":"","content":"This House would remove quarterly reporting requirements for publicly traded companies.","round":"1","infoSlide":"","link":"","topic":{},"id":"WA2TdKz5VQfuPuRu9Qtq"},{"content":"THW take the Blue Pill (to forget).","division":"","round":"1","infoSlide":"","language":"English","link":"","topic":{},"tournamentID":"onvxs89P4PKzVuAFoTHr","id":"WA6TmOtUYMCuomjfQmI4"},{"infoSlide":"","language":"English","link":"","content":"THW place pictures of poverty on all luxury goods.","round":"Open_Final","tournamentID":"av1jBA9UCgf82WNPu88k","division":"","topic":{},"id":"WAGnqNpUtC6K8XqHWWYC"},{"tournamentID":"ns7JoMyNUkrrS5A6Rbw7","round":"4","link":"","content":"TH as Israel would immediately intervene in Syria.","division":"","language":"English","topic":{},"infoSlide":"","id":"WBIP3Zsoyj3Cgc9ATs8P"},{"link":"","topic":{},"division":"","language":"English","round":"ESL_Quarters","infoSlide":"","tournamentID":"IpWyfCcksctR86jKX66g","content":"TH Supports Life Sentences Without the Possibility of Parole For Serial Serious Re-Offenders.","id":"WBRy7CouQYaUNu4NaOhh"},{"language":"English","link":"","infoSlide":"","topic":{},"round":"8","content":"THBT developing countries should nationalise companies that extract their national resources.","division":"","tournamentID":"V8KRgdahxIEUYFHrRWYb","id":"WBtiwBdSks34XJVYWqz6"},{"link":"","infoSlide":"","round":"Open_Semis","tournamentID":"Wg2225mgODwBGF4GMBLR","division":"","language":"English","topic":{},"content":"THBT minority comedians should not play up stereotypes based upon their own identity within performances.","id":"WCKJRpoG5Iv3YEH3mhL5"},{"topic":{},"link":"","language":"English","division":"","tournamentID":"Fu8k3vJxi4iJsdZw9d7j","round":"2","content":"THBT major film studios should substantially increase the number of lead roles for female villains in their blockbuster films.","infoSlide":"","id":"WCqigsS1dbtZGlsjT7Th"},{"tournamentID":"vgTQs0itA0pIPKzwI7CK","link":"","language":"English","round":"Open_Final","topic":{},"infoSlide":"","division":"","content":"THBT South Africans should engage in a frank and critical discussion of the life achievements and legacy of Nelson Mandela, rather than continue to uncritically revere him.","id":"WDKnx4dcRxyC2FUhdukN"},{"content":"THBT major news-media organisations should not interview people with views outside the consensus of the scientific community.","language":"English","infoSlide":"","topic":{},"tournamentID":"UT720iaDHtta4VRkpcnp","round":"2","link":"","division":"","id":"WEjERMu0VG5OpIPgukKj"},{"division":"","content":"THW offer citizenship to illegal immigrants in exchange for meaningful information on their traffickers and illegal employers.","topic":{},"round":"ESL_Final","infoSlide":"","link":"","language":"English","tournamentID":"uikc98CupbamVyAQIHsf","id":"WGDqLzEoQEnNM3XYv9KT"},{"tournamentID":"yZaksTbsPteB6mPHwkvl","link":"","content":"THBT all military strategies are justified if they save more lives than they cost.","topic":{},"infoSlide":"","language":"English","round":"5","division":"","id":"WGnYOuTyQehD4mCbVITx"},{"division":"","round":"2","topic":{},"link":"","language":"English","content":"This house believes US immigration policy should only prioritise merit-based standards of acceptance over the reunification of families.","tournamentID":"QZvopTthxxEkyvHXmzp3","infoSlide":"","id":"WHSbT4baJvVD3Qs61MKA"},{"content":"THR the usage of religious appeals as a rallying call for humanitarian causes.","topic":{},"round":"Open Quarterfinals","link":"","division":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","infoSlide":"","language":"English","id":"WIDQemtAkJ0GR852ypj2"},{"topic":{},"link":"","language":"English","infoSlide":"","tournamentID":"zppT86F7lAE0Gpp7tWYo","round":"B2","content":"THBT technology is killing our work ethic.","division":"","id":"WIMlezxmDyMiEnOYdCvd"},{"division":"","link":"","infoSlide":"","language":"English","round":"2","topic":{},"tournamentID":"yxjvIJregbdMEVkOnzCg","content":"THB political polling and major election analytics do more harm than good.","id":"WIRVP1wKQFX4dYbO256T"},{"division":"","round":"Open_Semi","tournamentID":"rinK386NjH990vvie6wL","language":"English","content":"In a post COVID-19 world, THBT developing countries should prioritize the growth of their domestic markets/industries over foreign trade.","infoSlide":"","link":"","topic":{},"id":"WJaidop0ingQ2lubU7zb"},{"round":"Open_Partial_Quarters","infoSlide":"","link":"","language":"English","division":"","tournamentID":"EHPcBnMOPhSjJDJMUqKQ","content":"THBT governments in the developing world should limit migration to megacities.","topic":{},"id":"WKW5AeAAdOzEeE70LDH9"},{"topic":{},"link":"","round":"1","division":"","tournamentID":"1bHNYzF6GWRqdpr3f5vt","content":"That as the superdelegates, we would give the nomination to Biden.","infoSlide":"","language":"English","id":"WKZuNWYpEsQsOLqRmCpF"},{"infoSlide":"","language":"English","round":"2","link":"","topic":{},"content":"This house believes that pro-remain political parties and campaign groups should launch a class action suit against prominent members of the Leave campaign for Fraud.","division":"","tournamentID":"PhJT1xhigiWcZot2PdLn","id":"WKmbUwALCkGz3wGRcxxj"},{"content":"THW allow parents of children with Klüver-Bucy syndrome to sterilise those children.","link":"","infoSlide":"","round":"1","topic":{},"language":"English","tournamentID":"2b9xHhyeUjald2Iu585W","division":"","id":"WKv7l8w6gFrpo6kXfN5i"},{"tournamentID":"pMiBCGHX80oXMgUJCqkc","language":"English","content":"THW stop teaching children that all opinions are valid.","round":"2","link":"","division":"","infoSlide":"","topic":{},"id":"WLglBfxnHIfEUQGVK1pV"},{"tournamentID":"7Jdvl74EMNCm0P5fq9PJ","content":"Chúng tôi phản đối việc miêu tả công việc của các lao động thiết yếu trong một trận đại dịch như một sự hi sinh.","division":"","link":"","language":"Vietnamese","infoSlide":"","topic":{"publicHealth":{"check":true,"title":"Public Health"}},"round":"PDOs - Motion 1","id":"WLr131cWfPslnBEI03Sb"},{"round":"","content":"Chúng tôi tin rằng văn hóa tẩy chay gây hại nhiều hơn mang lại lợi ích cho các phong trào tiến bộ.","tournamentID":"mNwitMoNsjWupgwG8pR5","division":"","infoSlide":"\"Văn hóa tẩy chay\" là một hành động phổ biến phát triển trên mạng xã hội, khi mọi người dừng ủng hộ những người nổi tiếng/các nhãn hàng sau khi họ nói hoặc làm thứ gì đó phản cảm. Hành động tẩy chay này có thể được khởi xướng bởi một cá nhân hoặc một tập thể. Văn hóa tẩy chay thường bao gồm một số hành động như lên tiếng chỉ trích những hành động xấu, tẩy chay các sản phẩm của một nhân vật/công ty nào đó và yêu cầu hình ảnh của họ bị xóa bỏ khỏi những phương tiện truyền thông công cộng. ","link":"","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"language":"Vietnamese","id":"WMr6slwPRJS2VK0FkUBW"},{"topic":{},"tournamentID":"GQttZR3FjAIw20Ek36nP","infoSlide":"","link":"","division":"","round":"5","content":"THW require the unemployed to participate in community work to be eligible for social welfare.","language":"English","id":"WMyqEOOuECIVcP5isK4g"},{"link":"","infoSlide":"","round":"4","language":"English","division":"","tournamentID":"4qwhZS2zOsdzzkyQlcaW","topic":{},"content":"You are a woman in a healthy non-abusive long-term relationship with a man. You make a stable salary with which you can support yourself. Your partner has/makes significantly(ridiculously) more money than you. THW Let him pay for the vast majority of expenses incurred during your relationship.","id":"WNGmVx6pnJCLoOvnUR3a"},{"infoSlide":"","division":"","tournamentID":"yhJgdE0VFcsqlvWffep1","topic":{},"content":"THW ban the use of artificial human augmentation, either by surgical or genetic therapy.","round":"Open_Quarter_1","language":"English","link":"","id":"WNiEDrjdVN0wBe9BJVxE"},{"content":"Should we ban the import of goods that were not produced under the social and ecological standards of the EU?.","link":"","infoSlide":"","topic":{},"round":"Open_Semis","division":"","tournamentID":"1lhrrHzfpU4TfWb63MLz","language":"English","id":"WNyDPu1DjbOU6vRcg5k3"},{"content":"THB freedom of speech should never be curtailed.","topic":{},"language":"English","link":"","tournamentID":"eECtQ29Kd45vZq8n2XAr","division":"","infoSlide":"","round":"Open_Semi_3","id":"WO7eWRxQ8kAmzfOl2HEU"},{"language":"English","round":"Open_Semis","link":"","topic":{},"content":"Should scientific writings be freely available?.","division":"","infoSlide":"","tournamentID":"LK6lSp8gpBGbLjuv9caV","id":"WOMydp3oLqgKXuyj3BHi"},{"topic":{"philosophy":{"title":"Philosophy","check":true}},"tournamentID":"1qq9g2ApB8UdvPr2ewx1","infoSlide":"","content":"Chúng tôi ưu tiên một thế giới tối đa hoá năng suất hơn một thế giới tối đa hoá sự hưởng thụ.","link":"","round":"","division":"","language":"Vietnamese","id":"WPLssXsD3SuLlvOX454v"},{"language":"English","tournamentID":"yLkpGc1iaQe5cfQPrNvl","topic":{},"round":"4","link":"","content":"THW eliminate any legal or ethical limitations from the field of genetic research on improving the human body.","division":"","infoSlide":"","id":"WPvSHJcdYX2J59WByE2U"},{"infoSlide":"","tournamentID":"ShdZSmrzSQfbl0RYDnj8","content":"This House Would ban gay conversion therapy.","link":"","language":"English","division":"","topic":{},"round":"4","id":"WQ19yI3sNv8U3f0cTbxe"},{"content":"THW ban violent video games.","link":"","infoSlide":"","language":"English","tournamentID":"WuHMyE7RKYgEDPOjOxp6","topic":{},"division":"","round":"3","id":"WQ6DxjxlbfRn8SUF09U8"},{"infoSlide":"","division":"","content":"THBT developed countries should deploy protectionist policies to protect low-wage workers.","language":"English","round":"","link":"","tournamentID":"mNwitMoNsjWupgwG8pR5","topic":{"economics":{"check":true,"title":"Economics"}},"id":"WQHSLxR5neGjv980cASM"},{"language":"English","content":"THBT developed countries should set maximum rents for residential properties in large urban centres.","topic":{},"division":"","infoSlide":"","tournamentID":"4XkvQJQxtOHIIF6sH97v","link":"","round":"2","id":"WQKPHEfYgWpNWXZz9sq8"},{"link":"","round":"7","language":"English","division":"","tournamentID":"GQttZR3FjAIw20Ek36nP","content":"THW grant the police the ability to stop and search without reasonable suspicion in designated areas and times.","infoSlide":"","topic":{},"id":"WQhqJh8EmDrfK9r8XXuB"},{"round":"1","division":"","tournamentID":"6kzErQkhNrOjgjEPAYjE","language":"English","link":"","topic":{},"content":"TH supports lifting the celibacy of the Catholic Church.","infoSlide":"","id":"WQuTaiwHcXyJCMexKzzo"},{"link":"","topic":{},"tournamentID":"uJGjvsaThnluwVzoHFXm","infoSlide":"","round":"Master's Grand Final","language":"English","content":"TH loves online debating and supports all competitive debating being held exclusively online indefinitely regardless of external factors e.g. pandemic.","division":"","id":"WRFqAgSfa5HMYL8CiDkA"},{"infoSlide":"","tournamentID":"2gsOERqtXqSETJffXbnj","content":"THBT Asian governments should actively suppress the influence of Western media in their own countries (through tariffs, direct censorship, replacing with national alternatives, etc.).","topic":{},"division":"","language":"English","link":"","round":"5","id":"WRGw0vPBakS9yAnkXhzD"},{"round":"3","tournamentID":"i3UU49z9MRO6phe9r1BH","language":"English","topic":{},"content":"Of religions that promise reward for faithful practice, THW prefer religions that promise reward will come in the afterlife as opposed to those that promise material reward in this life.","link":"","division":"","infoSlide":"","id":"WRooeMYxhKDH6xlCuP3b"},{"topic":{},"link":"","content":"That Australia should automatically trigger an election when the governing party replaces the prime minister.","round":"4.2","division":"","tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","infoSlide":"","language":"English","id":"WSyMkquHrthqMizCnVld"},{"content":"THW elect the Chief of Army Staff of the Pakistani Military.","language":"English","infoSlide":"","topic":{},"tournamentID":"WuHMyE7RKYgEDPOjOxp6","division":"","round":"Open_Final","link":"","id":"WTjgmPiL1vhnfkRuZjbh"},{"content":"THW incentivize employers to hire non-college graduates.","round":"2","language":"English","infoSlide":"","link":"","topic":{},"division":"","tournamentID":"Iv1dWODCjV8TBafyTxx7","id":"WU23ttNXtUL1WdFkBshd"},{"language":"English","topic":{},"infoSlide":"","link":"","round":"2","division":"","tournamentID":"lgIRNhKweWPgrrSL34Lh","content":"THW end the use of jailhouse informants.","id":"WUJxO44hVsktUmTlwCsL"},{"link":"","infoSlide":"","tournamentID":"98I1jSQnLhtFnsr8fu0R","round":"4","topic":{},"content":"“to secure for the workers by hand or by brain the full fruits of their industry and the most equitable distribution thereof that may be possible upon the basis of the common ownership of the means of production, distribution and exchange and the best attainable system of popular administration and control of each industry or service” (clause 4, part 4)Clause 4 as a whole was the symbol of the Labour Party’s commitment to “public ownership” and the Party’s principled opposition to market capitalism. Clause 4 was abolished under the leadership of Tony Blair at a special party conference in Easter 1995. Motion: THBT the Labour party should not have revoked Clause 4.","division":"","language":"English","id":"WUNdjj5FLGSgATwIu2CX"},{"round":"5","infoSlide":"","tournamentID":"WqsdOIKQnJkQdFDBVNtA","language":"English","division":"","content":"THBT it is not the role of a Government to reduce the relative poverty of its citizens.","topic":{},"link":"","id":"WVf89CqrflELCyPJqXyj"},{"round":"3","infoSlide":"","content":"TH regrets the remilitarisation of Japan.","language":"English","tournamentID":"Wb0k9XSEirfd7kuffEGF","link":"","topic":{},"division":"","id":"WWd1K19MhFIbBmWzsEpj"},{"language":"English","topic":{"economics":{"title":"Economics","check":true}},"link":"","round":"4","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","infoSlide":"A supply chain is a system of organizations, people, activities, information, and resources involved in supplying a product or service to a consumer. Supply chain activities involve the transformation of natural resources, raw materials, and components into a finished product that is delivered to the end customer.","content":"THBT multinational companies should be liable for human rights abuses that occur anywhere in their supply chains.","division":"","id":"WXqkqxPmEqygTTPtJOAX"},{"language":"English","link":"","content":"THBT human beings must sow terrestrial life forms on other planets even if that destroys endemic life forms of those planets.","tournamentID":"axWwnyCM8L14pVHljukt","infoSlide":"","division":"","topic":{},"round":"7","id":"WZ6X2EXGDTGrWIrjMjy9"},{"topic":{},"infoSlide":"","division":"","content":"THBT EU should offer Middle Eastern and North African states membership in exchange for successful democratic transformation.","round":"5","link":"","language":"English","tournamentID":"NE3BXrt6CASI2EExAgUk","id":"WZjLTBrH2DYCzS9w0Paj"},{"infoSlide":"","language":"English","round":"1","link":"","content":"TH house prefers karmic-based religious systems over religious systems based on eternal reward or punishment/ divine mercy.","tournamentID":"6GQFhlc28xUwjga5E5G3","topic":{},"division":"","id":"WZozODETPhvBnXnpcC86"},{"tournamentID":"2YfQ1XbNnQfXwnjeGyDd","language":"English","round":"3","topic":{},"infoSlide":"","link":"","division":"","content":"THS the rise of Roseanne in mainstream media.","id":"WaQUfa1mT5mP4DJmOja2"},{"language":"English","content":"TH, As the EU, would trigger Article 7 if Hungary failed to commit to democratic reform.","tournamentID":"3VTSywK012zU6GDLqZzC","topic":{},"infoSlide":"","link":"","round":"Open_Semis","division":"","id":"Wb5xpIHEEmdvVvhslbax"},{"topic":{},"tournamentID":"AhKyFYR1ZI0UjUmZnaXu","link":"","language":"English","infoSlide":"\"Girl boss\" or \"#girlboss\" is a concept/phrase coined to signify a woman who is seen as being \"in control\", dominant, determined and rebellious in pursuing her ambitions. The phrase is often used in campaigns as a slogan to inspire women to embody success by abandoning compliance and avoiding traits that have traditionally been associated with femininity and subservience, while pursuing their career ambitions. Examples of proponents of this persona can range from CEOs/COOs like Sheryl Sandberg, to political figures, and instafamous online celebrities and entrepreneurs.","round":"2","division":"","content":"TH opposes the prominence of the \"girl boss\" concept.","id":"Wb9MZ2HoSt4PWxlZqh37"},{"content":"This House Believes That all wealth beyond the necessary to meet one’s basic needs is immoral.","division":"","tournamentID":"9akG27VqSvbqsF3kGa1l","language":"English","topic":{},"round":"4","link":"","infoSlide":"","id":"WbISHTJBNAmfObNI44je"},{"topic":{},"language":"English","content":"THB the state should send all underage overweight children to a summer far camp.","link":"","round":"1","division":"","infoSlide":"","tournamentID":"TtPU6Lwr9qKhUvLMeyVD","id":"Wbu93rP9B5JFhOqAvTAI"},{"infoSlide":"","division":"","round":"3","tournamentID":"WcNueZiJXeg9z82dijdL","language":"English","link":"","content":"THR the vilification of \"money mindedness\" in individuals.","topic":{},"id":"WconaQOaSlfcHnVpseby"},{"language":"English","topic":{},"link":"","division":"","tournamentID":"tKXlShZl2vec49jC1bif","infoSlide":"","round":"4","content":"THR the Reformation.","id":"WdjFrT0Gv7KJMykh3PBN"},{"tournamentID":"UVd3X0lgKy2dOb5Yx1c7","division":"","content":"THBT free health care should cover cosmetic surgery.","infoSlide":"","language":"English","link":"","round":"3","topic":{},"id":"Wdsf3Ck9mbd5iaEia1rl"},{"content":"THW stop providing tactical training and equipment to \"neighbourhood watch\" groups in Israeli settlements in the West Bank.","infoSlide":"","language":"English","link":"","topic":{},"tournamentID":"OZYKzIzIg9zKy9OOiaP3","round":"Open_Semis","division":"","id":"WekbtzF7uqxyx7k2NEQA"},{"language":"English","round":"Open_Final","content":"TH as the Kremlin would commemorate the 1917 Russian Revolution as a tradegy rather than a triumph for the nation.","link":"","infoSlide":"","tournamentID":"6KzwZLwpFJv7ICEsknpO","topic":{},"division":"","id":"Wft0ZcSjHjljrlVDoS46"},{"language":"English","division":"","infoSlide":"","topic":{},"round":"ESL_Final","tournamentID":"aVcqgGmAccQ09iBh9iS1","content":"THBT the leaders of big world corporations should be democratically chosen by national elections.","link":"","id":"WfwFiyMsts59XIoMUyMY"},{"infoSlide":"","content":"This House regrets the large number of UN resolutions issued against Israel.","link":"","topic":{},"round":"3","language":"English","tournamentID":"RlKeUHJPWxI30cOSUIu3","division":"","id":"Wh40mXTSxsBY4DRTAQs8"},{"link":"","division":"","topic":{},"infoSlide":"","round":"3","content":"THW ban serving military generals from talking to the media.","language":"English","tournamentID":"Kv7YNlz47VitorsH2zY7","id":"WhP45OZWp5xkWU0ggGYw"},{"language":"English","content":"THBT political parties should not take gender into account when selecting candidates for voting lists.","link":"","round":"1","infoSlide":"","division":"","tournamentID":"NxB6ercynISK3sISgci5","topic":{},"id":"WhrIwr2JfRaLFP5rF28g"},{"content":"THR the firing of employees who have been found guilty by the court of public opinion.","link":"","language":"English","round":"Open_Final","topic":{},"tournamentID":"DeCtrDtTjNPkklRZT0x6","division":"","infoSlide":"","id":"Whwf6vNUWqNXoaZ1ORhy"},{"topic":{},"language":"English","link":"","division":"","round":"7","content":"TH supports the implementation of a global Robin Hood tax.","tournamentID":"DfdqiFdfgcruP1pBNiHK","infoSlide":"","id":"Wi9R7yWl9FDyHrg4GR4F"},{"infoSlide":"","round":"5","content":"THBT the states of former Yugoslavia should create a unified football league.","tournamentID":"jhyT1LK3YdR0do1cosc6","division":"","language":"English","link":"","topic":{},"id":"WiOrE0GiCULFcsmecFuf"},{"topic":{},"round":"Novice_Semi","link":"","content":"TH Prefers Western entertainment (TV Shows, Movies, Theatre) which assumes fluid sexuality (How to Get Away With Murder, Imagine Me & You, High Fidelity, Game of Thrones, Trinkets) for its characters rather than centering a narrative of non-hetero sexuality (Love Simon, Carol, One Day at a Time, The Half of It).","language":"English","infoSlide":"","division":"","tournamentID":"Pr7RhJp1TWbTZsqRvQt4","id":"WiUCjh35EdPBb5JiTumD"},{"infoSlide":"","language":"English","tournamentID":"PRCVo2dP9UPdRU9tVW31","round":"4","topic":{},"content":"THS substantial corporate funding for university research.","division":"","link":"","id":"WilvzFRnONXph3OSLsxZ"},{"language":"English","content":"That we regret the depiction of Supergirl frequently saving the day through idealism and hope.","topic":{},"division":"","link":"","infoSlide":"","round":"5","tournamentID":"Pt1Z2dTdUinRviVucbZA","id":"WiuDU5rYO1omrSlc5U99"},{"round":"Open_Quarters","topic":{},"tournamentID":"7xqpYA72Sruch4lr5Uzj","content":"THW consider the use of conscripts a war crime.","infoSlide":"","division":"","language":"English","link":"","id":"Wj4BxSu6QCNxLRNx5gUU"},{"tournamentID":"i6DM0q3jQYZrDmXJHzfr","topic":{},"round":"1","language":"English","link":"","infoSlide":"","division":"","content":"R1 - THW allow medical professionals to give medicine to underage children irrespective of the children's and their parent's consent.","id":"WjZjDfGeXAJXDqTVPpoc"},{"tournamentID":"7lMrN2aiwSzD5rzPFwHz","division":"","content":"THBT Bilbo should have killed Gollum when he had the chance.","infoSlide":"","language":"English","topic":{},"round":"1","link":"","id":"Wjr7pZHnfByvfspPAV1T"},{"language":"English","round":"3","tournamentID":"X7iAuOHrSqi0EHPkRNls","division":"","topic":{},"content":"THBT Brazil should fully privatise Petrobras.","infoSlide":"","link":"","id":"WjtmsFK38jzRtcbjtnUh"},{"link":"","topic":{},"language":"English","infoSlide":"","content":"This House believes that if humanity becomes capable of interstellar travel, it should implement and enforce the \"Prime Directive\".","round":"3","division":"","tournamentID":"6tyiq2GnlmVmI452js6u","id":"Wk6kbYVIUv5fmc6t5Fmc"},{"language":"English","link":"","content":"This House supports hacking as a form of social protest.","topic":{},"infoSlide":"","tournamentID":"i1HAMqWg9Epu5Ys9FJg5","round":"2","division":"","id":"WmMDT3WYNbXCHUEwqE1P"},{"infoSlide":"","round":"3","division":"","language":"English","tournamentID":"x0mst3SfcsgMKKZ3eg7G","link":"","topic":{},"content":"TH believes that Hillary Clinton should put her experience overcoming sexism to the forefront of her campaign.","id":"WmXdC5p1c7Ga8Y7NptoV"},{"language":"English","link":"","topic":{},"division":"","tournamentID":"SPjgjrpUBIPs6H9gmx9P","content":"That we oppose the rise of sharing culture on social media.","round":"Preliminary","infoSlide":"","id":"WmafXNEp2zNAuk5LrRDc"},{"division":"","content":"Giả sử chiến tranh nổ ra, chúng tôi sẽ bắt buộc tất cả các nghệ sĩ nổi tiếng chỉ được tạo ra tác phẩm âm nhạc phục vụ cách mạng.","round":"3","language":"Vietnamese","link":"","topic":{},"infoSlide":"","tournamentID":"mkrRVvz5EWSZie6LBtCH","id":"WnmLNjh5OZz6G6Az5ZIH"},{"round":"1","topic":{},"language":"English","content":"THW ban TV programmes and entertainment media from portraying convicted criminals as innocent.","infoSlide":"","division":"","tournamentID":"rkItJ1M9he5ApXeOVBjJ","link":"","id":"WnqT9WAEDFdIssfAengl"},{"infoSlide":"","topic":{},"tournamentID":"O8PsW6uDBzwzQZ3zO447","division":"","language":"English","content":"This house, as China, would legalize gay marriage.","round":"Open_Final","link":"","id":"WoSQEMmJBaE68IlWovue"},{"topic":{},"link":"","round":"Novice_Final","content":"TH disapproves of movements that aim to further the acceptation of obesity in society.","division":"","language":"English","infoSlide":"","tournamentID":"48Ba3dAlJxoct1Z9f7GA","id":"Woyds0qqzd0j6OZd6kmU"},{"topic":{},"language":"English","round":"Grand Final","infoSlide":"","link":"","tournamentID":"V4GiH1luZDgYtx44QdOh","division":"","content":"This House celebrates the decline of Capitalism.","id":"WozQWyPHTkFs2IH5XYHI"},{"round":"1","content":"Chúng tôi lấy làm tiếc về quan niệm phổ biến \"Đại học là con đường cơ bản dẫn tới thành công\".","infoSlide":"","topic":{},"tournamentID":"OLVGf3rE3KKirerr2vyk","link":"","language":"Vietnamese","division":"","id":"Wp1NDH6UnSR9VAuQuQFA"},{"infoSlide":"","round":"4","link":"","tournamentID":"khQAvAFibcPAXBKfxTNY","topic":{},"language":"English","content":"THW compel doctors to facilitate the deaths of consenting and competent patients.","division":"","id":"WqCFEaiA0QCSjhWjZZK2"},{"division":"","language":"English","round":"1","content":"TH regrets the creation of shows like 'teen mom' and '16 and pregnant'.","infoSlide":"","link":"","topic":{},"tournamentID":"y0zBNckmXRI4bCqMyXLg","id":"WrD9NczYLOvegwLHI778"},{"infoSlide":"","division":"","language":"English","tournamentID":"9wxPRUMGICTUrE7xSaCG","topic":{},"round":"Open_Quarters","link":"","content":"TH regrets the declIne of labor unions.","id":"WrERZusa3l5266f15aC2"},{"topic":{},"round":"Open_Finals","division":"","language":"English","link":"","infoSlide":"","content":"THW allow communities to vote to suspend police supervision.","tournamentID":"H2ZQZD4EPmxpktxvJnUz","id":"WrSmtk1uDRCuNeGttN7D"},{"link":"","topic":{},"division":"","tournamentID":"gsX4dlvvsr6lcKP3eM2T","content":"This house would let them eat whale.","round":"Masters_3","language":"English","infoSlide":"","id":"WraA99klqgIvZjPCpviT"},{"tournamentID":"bxhnmh9CZq21XJcRU2BX","round":"3","topic":{},"language":"English","content":"This house would prefer a world where it is commonly believed that free will does not exist.","infoSlide":"","division":"","link":"","id":"WspTDczyl2aFfw1kyU7e"},{"tournamentID":"UlbXxRnvnqr2PXimcFud","infoSlide":"","link":"","division":"","round":"3","language":"English","topic":{},"content":"THBT developing countries should limit rural to urban migration.","id":"WsuLDOfvdMF8fvWp5SQP"},{"link":"","infoSlide":"","tournamentID":"o83Oqm9vDtGaG6SVldke","division":"","topic":{},"language":"English","round":"2","content":"THW require prospective owners or large shareholders of sport clubs / teams to gain majority support from season ticket holders or other representatives of the fan base to complete their acquisition.","id":"Wt9bWmogxNmVblnuEwjc"},{"language":"English","content":"THBT Courts in Emerging Democracies should break up persistently dominant political parties.","division":"","topic":{},"infoSlide":"","round":"Open_Final","link":"","tournamentID":"K2iCOiuVrS3D8RzjGpNe","id":"WtEM7syt5DvCJH9g7Y8b"},{"language":"English","tournamentID":"6AnUBd9SLIBHmD9Uy5dS","topic":{},"round":"Novice_Final","infoSlide":"","content":"THBT the threater and musical community should abandon the \"no-change\" norm.","link":"","division":"","id":"WtkFkUOwvQ5btMaMs9f3"},{"division":"","topic":{},"round":"Quarterfinals","infoSlide":"Phim 3% nói về một tương lai thế giới bị chia cắt làm hai: Offshore và Inland. Một bên sống trong sung sướng, văn minh, tiến bộ và một bên sống trong thiếu thốn, khó khăn và lo sợ. Hằng năm, những cư dân đủ 20 tuổi sẽ được trao một cơ hội tham gia vào Quá TRình Chọn Lọc, khi tham gia, họ sẽ phải trải qua nhiều bài kiểm tra khác nhau, để xem họ có đủ khả năng lọt vào 3% trên tổng số người được đến với Offshore (Bên sống tốt đẹp hơn).","language":"Vietnamese","content":"Chúng tôi, với tư cách những người đứng đầu cuộc tuyển chọn, ngoài việc chọn 3% ưu tú nhất từ Inland để được đến Offshore thì cũng sẽ chọn 3% kém ưu tú nhất từ Offshore để gửi vào Inland.","tournamentID":"FiF24Yc0spiBkvTxiYwD","link":"","id":"WuOEsHSA7MTHg7XBYEwc"},{"topic":{},"tournamentID":"DNe0c1xNBVoG02MsO66g","round":"Open_Final","division":"","content":"THW create and enforce filial responsibility laws.","infoSlide":"","language":"English","link":"","id":"WusgJenFv4COysD7dfNT"},{"tournamentID":"18IIGMrqE33YyULmp5EY","topic":{},"link":"","language":"English","division":"","content":"THW forbid the Supreme Court to annul legislation.","infoSlide":"","round":"1","id":"WvvEm63oNGGl4eLqzKwz"},{"infoSlide":"","language":"English","link":"","topic":{},"tournamentID":"VPUCPVj9FHFW0uzJinv0","round":"Open_Quarters","division":"","content":"This house believes that people sentenced to life imprisonment should be allowed to choose the death penalty instead.","id":"Ww4hSSKtbRlN1F3utiJh"},{"round":"Open_Semis","tournamentID":"1Zlx7tjmmkRhrDxYF8Qr","infoSlide":"","language":"English","link":"","content":"THW ban presidential pardon.","topic":{},"division":"","id":"WwIv4xcVdISFpKhJ9Zq7"},{"link":"","topic":{},"infoSlide":"","division":"","tournamentID":"Mp1zDBiaN3PYnRnjPVIk","language":"English","content":"TH opposes the ownership of pets.","round":"1","id":"WwIytJakCqNZWZnznbD8"},{"round":"Quarterfinals","link":"","division":"","content":"Chúng tôi tin rằng các nhà lãnh đạo cách mạng không nên tham gia các chính phủ hậu xung đột.","tournamentID":"RF6WJZV8JYPwFqSpNxlR","language":"Vietnamese","topic":{},"infoSlide":"Thời kỳ hậu xung đột là thời kỳ mà xã hội đã đạt được trạng thái hòa bình sau các xung đột nội chiến kéo dài. Khi này, các tổ chức chính phủ, tổ chức phi chính phủ, và tổ chức quốc tế nỗ lực để ổn định chính trị, kinh tế, quân sự, và cấu trúc xã hội thông qua các dự án tái thiết.","id":"Wwg6bQJtswvNk09Y3yqN"},{"link":"","round":"Open_Final","tournamentID":"NyCp19C1AzxXzCUQLio8","infoSlide":"","language":"English","division":"","content":"Should politicians and diplomats in general no longer hold immunity status?.","topic":{},"id":"WwtSuf2ZjmVQ5q2S4qbj"},{"tournamentID":"zZRXGDm7RC8LjYJKzubm","link":"","division":"","topic":{},"round":"3","content":"THP ad hoc tribunals over the ICC.","infoSlide":"","language":"English","id":"Wx7Yk6eqAIgfGCucs7D5"},{"tournamentID":"5Qomv7BFHTKmY4PchwDr","content":"That criminal trials should continue even when the accused is deceased.","infoSlide":"","division":"","link":"","topic":{},"round":"EFL_Quarter","language":"English","id":"WxitfifiUFSsgtJ9j8dn"},{"topic":{},"content":"This house would make membership of Trade Unions compulsory.","division":"","link":"","infoSlide":"","tournamentID":"PhJT1xhigiWcZot2PdLn","round":"5","language":"English","id":"WyiH2SfnL8suQOm19zCM"},{"topic":{},"content":"THW impose the Working Time Act on politicians as well.","round":"2","tournamentID":"JTOMyeCSk6IujHBgAOMi","division":"","infoSlide":"","link":"","language":"English","id":"WyvxqcKgsLKj36PRpsv0"},{"link":"","infoSlide":"","language":"English","topic":{},"division":"","tournamentID":"cTxMF0myfwbQDPdL8Ral","content":"THBT the feminist movement in the West should heavily promote the concept of 'self-partnership'.","round":"2","id":"WzMzTsssNGSwVrlMhRCw"},{"division":"","tournamentID":"9akG27VqSvbqsF3kGa1l","infoSlide":"","topic":{},"content":"This House prefers a world where family love was seen as unconditional as opposed to conditional.","language":"English","round":"Open_Final","link":"","id":"WzeSIP12cTNn8ZtJfJhM"},{"infoSlide":"","topic":{},"tournamentID":"JsJHH6odeVuMVnQ8A5bN","link":"","round":"Open_Semi","language":"English","content":"THBT in the event of an all out war between India and China the US should not intervene.","division":"","id":"WzsE1iORmm5atmuUBX4s"},{"content":"THW abolish the UN Security Council.","topic":{},"division":"","language":"English","infoSlide":"","tournamentID":"owvW9MKLd7Sqv8hm9HMq","link":"","round":"Open_Semis","id":"X0OfygkdMhHlmlY0M06z"},{"language":"English","content":"In post-conflict societies, THW actively suppress information and interpretation, that paints any past dictator in a sympathetic light.","division":"","topic":{},"infoSlide":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","round":"High School Grand Final","link":"","id":"X1PvcQqMHYQ1BvOGyqgr"},{"infoSlide":"","round":"8","tournamentID":"92dIEXeOXUVvlcFeGCIr","content":"THBT the creation of feminist icons and their cults of personality are good for the feminist movement.","division":"","topic":{},"language":"English","link":"","id":"X1Q1ALAFYQwegDiPptIX"},{"language":"English","link":"","infoSlide":"","division":"","tournamentID":"3dDCV3YYSGl8TNe5f3iO","topic":{},"round":"Open_Semis","content":"THW liberate slaves in Mauritania with a military intervention.","id":"X1hiGiOOkHxKzCt7O86S"},{"topic":{},"round":"1","infoSlide":"","link":"","content":"We should be able to fire (Rabobank) Board members that were responsible for fraud, without a severance bonus.","division":"","language":"English","tournamentID":"y6twZcPBW4VtQsAZQ3Mw","id":"X2G9c2rimTjE06eySXHX"},{"round":"Open_Final","infoSlide":"","tournamentID":"LH17DUUbXDstAFfMNJyf","division":"","link":"","content":"THW hold a referendum among all churchgoing Catholics to elect the new Pope rather than having Cardinals elect him.","topic":{},"language":"English","id":"X2sGGz6bziTpyhyu8rom"},{"division":"","language":"English","link":"","tournamentID":"PULmrzx6k00EzEt7BxfG","infoSlide":"","round":"4","topic":{},"content":"THW ban adoption agencies which select families on religious grounds.","id":"X3hSqjlACB7jZIV4D5by"},{"topic":{},"round":"Novice_Final","content":"THW ban women older than 40 from having children.","tournamentID":"w1cmIhewdRlJLYHGdtbg","infoSlide":"","division":"","language":"English","link":"","id":"X4fDGYgFOsavIeavbCdn"},{"language":"English","link":"","tournamentID":"NyCp19C1AzxXzCUQLio8","topic":{},"round":"4","division":"","content":"Should private pensions be abolished?.","infoSlide":"","id":"X4zNbwWQ23E1byRMA4cs"},{"language":"English","content":"That we regret the 2019 election of Alberto Fernandez and Cristina Fernandez de Kirschner in Argentina.","tournamentID":"1bHNYzF6GWRqdpr3f5vt","topic":{},"infoSlide":"","round":"5","link":"","division":"","id":"X4zpRjK3acsOwGLWl4CH"},{"content":"THW teach children to question and undermine authority.","link":"","language":"English","infoSlide":"","topic":{},"division":"","round":"Open_Semis","tournamentID":"m2l0j7TwryKeK2YnXK9e","id":"X5VBvMos5cUNgOuxEabB"},{"topic":{},"tournamentID":"9yPqE2fe1oaHsd7ankOa","infoSlide":"","content":"THW allow citizens from specific localities to vote on whether big corporates should set up business operations in those regions.","division":"","language":"English","link":"","round":"Semifinals","id":"X5tKQK0OlESwdjCkfWrT"},{"tournamentID":"xik6XdvZ0JGG1hySfuwC","division":"","link":"","content":"THR the rise of the sharing economy.","infoSlide":"","language":"English","round":"Open_Quarters","topic":{},"id":"X71qcJjGFdtL4QNiFegy"},{"language":"English","topic":{"education":{"check":true,"title":"Education"}},"round":"Semifinals","division":"","tournamentID":"Wpv6iXJkIPUXYIkl0dST","link":"","infoSlide":"","content":"THBT formerly colonised nations should only teach local indigenous literature, to the exclusion of literature from other countries.","id":"X76KYntfSblFzw47AgJ9"},{"link":"","division":"","round":"1","tournamentID":"OqjcHyR2p27nlpvjQ5oq","infoSlide":"","language":"English","topic":{},"content":"TH, as an individual feminist, would boycott tinder.","id":"X7IwK9KNSjtgF54x10QQ"},{"language":"English","content":"THB America has no culture.","infoSlide":"","division":"","round":"Open_Semi_2","tournamentID":"vILiSHUm95tqQYsTjFZs","topic":{},"link":"","id":"X7alhptpqPe4d0Whaevt"},{"tournamentID":"n7qv29PmNuF5SOe42oiz","division":"","link":"","language":"English","topic":{},"content":"That we should ban pregnant women from working during the last month of their pregnancy.","round":"1","infoSlide":"","id":"X7muEdOOpbNvpnsX3yVY"},{"link":"","language":"English","tournamentID":"lItvEbHHU24VVqcwipRq","content":"THBT science is the key to human flourishing.","topic":{},"round":"3","infoSlide":"","division":"","id":"X7tL2sDRdADsk07TPzQu"},{"infoSlide":"","round":"3","link":"","language":"English","topic":{},"division":"","tournamentID":"LuNDiT9YYZhQScUmMX82","content":"THS “No Platform” policies in student unions.","id":"X8R9JAapl5R5dLI1JBN1"},{"tournamentID":"MIrEXPHnAIOpqQw6kxky","content":"This house would give companies tax breaks on all revenues paid as renumeration (salaries and bonus) to all female employees.","infoSlide":"","division":"","topic":{},"language":"English","link":"","round":"1","id":"X8t6qctkK8ODE6UTMtSP"},{"infoSlide":"","division":"","language":"English","topic":{},"tournamentID":"1MV3spmbrmWLKhisZDU8","content":"- very severe dementia; - vegetative state etc. Advanced directives are irreversible - they remain binding. NON-voluntary euthanasia is NOT INvoluntary euthanasia. It merely means that no EXPLICIT CONSENT is granted at the time. \" Motion: This House Would legalize advanced directives requesting non-voluntary euthanasia for oneself.","link":"","round":"ESL_Final","id":"X938VByGW9X7kxaxm8lm"},{"topic":{},"round":"2","language":"English","tournamentID":"jQjuYOl7gbKBTiUrvWM2","link":"","content":"THW require gaming companies to offer their products free of charge to women, in cases where there is a significant gender disparity in consumption.","infoSlide":"","division":"","id":"X9FPfRwrz3zOhYqZXtDR"},{"round":"2","link":"","content":"Bitcoins should become the official currency in the Netherlands.","topic":{},"division":"","tournamentID":"y6twZcPBW4VtQsAZQ3Mw","language":"English","infoSlide":"","id":"X9Kw9K7FnqY3TTaxSGA2"},{"link":"","topic":{},"tournamentID":"djnlK5jZ2kM6hDrC6E9d","language":"English","round":"1","division":"","content":"THP a unified state-dominated public policy research landscape to one dominated by ideologically defined think tanks.","infoSlide":"","id":"X9u4VS5aWuzi7fz6JjKP"},{"content":"THB the state should not recognise marriage (e.g. through special tax breaks, visitation rights, adoption privileges or other forms of differential treatment).","tournamentID":"iebTUsXIgV5US8LjoNw7","division":"","link":"","round":"2","language":"English","infoSlide":"","topic":{},"id":"XAMuNeEV6PgRAIB2w3jV"},{"topic":{},"infoSlide":"","content":"THW fund hymen reconstruction.","tournamentID":"xeyFK25uSH9TtPga8ALE","language":"English","division":"","link":"","round":"3","id":"XAp45yvXbt1ytQoXpNTS"},{"topic":{},"division":"","tournamentID":"8vo3c8Tz12muCmAoWSv2","infoSlide":"","link":"","language":"English","round":"Open_Final","content":"THB that the Press Cannot be Trusted to Regulate Itself :.","id":"XBDQFzdOPA1vSMjZRFOl"},{"division":"","round":"Open_Final","language":"English","link":"","content":"Assuming that a technology exists that can accurately measure and transfer intelligence This House would radically redistribute intelligence among the population.","infoSlide":"","topic":{},"tournamentID":"683xp6VC99fyKWXfWS9H","id":"XBPt26RcSKUAbYVi6oTb"},{"language":"English","topic":{},"division":"","link":"","tournamentID":"XBBB3MfIKpYpUaioBlLB","content":"THBT women activists in Saudi Arabia should not drive cars in their protest against the ban.","infoSlide":"","round":"4","id":"XBux88EcjKuMcHnCWAYS"},{"round":"Open_Semi","topic":{},"tournamentID":"myGQJSUNqcxcCjm3bONn","division":"","content":"TH supports rainbow capitalism.","infoSlide":"","language":"English","link":"","id":"XC1x8d48HTeuc3uldAkI"},{"language":"English","infoSlide":"","division":"","link":"","tournamentID":"GeB6bvqs5FhYEP99Q8Ax","content":"THBT the International Criminal Court should hire private military contractors to arrest individuals who refuse to surrender after an indictment.","round":"4","topic":{},"id":"XCDMMjuSsT4hfCsecC9D"},{"link":"","infoSlide":"","topic":{},"round":"Open_Final","tournamentID":"Wn4nk4Gju7tmDZTbrogC","content":"TH supports the creation of an artificial island for those who do not want to live under the jurisdiction of any state.","division":"","language":"English","id":"XDn7ygSAIf5GlXjd5uGh"},{"tournamentID":"QVxXxjR8GyCAclYLIVU9","content":"(Open motion) THW sacrifice anything for safety.","topic":{},"infoSlide":"","division":"","round":"3","language":"English","link":"","id":"XEA1Oqsy4jxBtrhEdHWX"},{"round":"5","content":"THBT sport's governing bodies, such as IOC and FIFA, should allow performance enhancing pharmaceuticals.","language":"English","infoSlide":"","tournamentID":"Y9leM2xAYiRjIMMIqgfX","link":"","topic":{},"division":"","id":"XEn5iU2ZKS6EdD2g7Dmh"},{"language":"English","division":"","tournamentID":"zeR0rFnynHhmmEJ04jfo","content":"TH regrets the centralisation of organised religion.","infoSlide":"","topic":{},"round":"4","link":"","id":"XF6qngavsn0my3ap8GX8"},{"link":"","tournamentID":"CJKUeBIUibEtZYahoUQV","division":"","round":"","infoSlide":"","topic":{"politics":{"title":"Politics","check":true}},"content":"THBT a society with more widespread charity and donation is better than a society with a state-run social welfare system.","language":"English","id":"XFAYVrf9SKU5sVkxk1ai"},{"infoSlide":"","division":"","link":"","round":"3","language":"English","tournamentID":"ptDJAxuw5pGiwabyHZil","topic":{},"content":"This House Regrets the trend of self destructive/anti social characters as protagonists in media (e.g Bojack Horseman, Rick and Morty, Crazy Ex-Girlfriend, Sherlock, Mad Men etc).","id":"XFQcNGLphQeT7F58blfS"},{"link":"","infoSlide":"","language":"English","round":"1","topic":{},"division":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","content":"That, as Joe Biden, we would choose to run on a ‘Medicare-for-All’ platform.","id":"XFef5U8K7VzaOKhRhVbb"},{"topic":{},"link":"","content":"THW create a Pan Scandinavian-Baltic military alliance.","infoSlide":"","division":"","language":"English","round":"3","tournamentID":"H4i4RR7JXk14xDRe7PUX","id":"XGBlsO06fy5uClMl7rlC"},{"language":"English","tournamentID":"Z9WBfg1yDJgSR34BGYp1","link":"","topic":{},"division":"","content":"THR the rise of the isekai genre.","infoSlide":"Isekai (異世界 meaning \"different world\") is a genre of LN/manga/anime/video games that revolve around a person from Earth who is transported to and has to survive in another world. Usually some bullshit plot device involving Truck-Kun. You all know the drill. The previous decade was indeed the decade of the isekais (\"In Another World with My… Debate Partner?\")","round":"Semifinals","id":"XHCoa53eKIMcJNlAXhod"},{"link":"","content":"You are a 19 year old boy who just finished his Abitur. As this boy, THW join the Bundeswehr.","infoSlide":"","round":"2","tournamentID":"av1jBA9UCgf82WNPu88k","language":"English","topic":{},"division":"","id":"XHDAfqJERNaKBBPksWxR"},{"topic":{},"division":"","tournamentID":"m2l0j7TwryKeK2YnXK9e","infoSlide":"","content":"THW allow major medical charities and providers (e.g. Cancer Research, Alzheimer Society of Ireland, Irish Heart Foundation) to sue media outlets and organisations who share incomplete, incorrect or misleading medical information.","round":"2","link":"","language":"English","id":"XHTavI7nv1P1Ea7I5u6X"},{"round":"4","content":"THBT the Greek military should suspend democratic government until economic recovery.","language":"English","tournamentID":"B2zJ5QeyI7MVcboS7m4U","division":"","topic":{},"infoSlide":"","link":"","id":"XHeWMvzqzOcXBQuh0Vfa"},{"tournamentID":"FOAZQcGDy003yv7fx3AI","link":"","topic":{},"infoSlide":"","division":"","language":"Vietnamese","content":"Chúng tôi sẽ loại bỏ phương thức bình chọn của khán giả để quyết định kết quả của các cuộc thi tài năng.","round":"2","id":"XJGeB0lJ4y7EAdkNnQBm"},{"tournamentID":"c5YoJ5qkI2DsrQ7PAhum","content":"THBT Miley Cyrus is bad for feminism.","infoSlide":"","topic":{},"link":"","language":"English","round":"Open_Final","division":"","id":"XJHfbrbJR6NaOxXG9d1l"},{"language":"English","division":"","round":"3","content":"THBT western countries should invest primarily in air power rather than ground troops for future military interventions.","infoSlide":"","link":"","topic":{},"tournamentID":"xQkVRRUcXZJgGzxXZ2t0","id":"XJdPng33Pq0hBxufHWRA"},{"content":"THW make college admissions a randomized lottery.","division":"","round":"1","tournamentID":"wL3wAKRctC8syY2eg8t3","infoSlide":"","topic":{},"link":"","language":"English","id":"XKhxsbQmg2CnNyLZs8Jo"},{"content":"This House prefers a \"Brave New World\" to the status quo in Western Liberal Democracies.","topic":{},"language":"English","round":"Open_Semis","tournamentID":"wA1XDLHJESmSgLsfZ9Qe","link":"","infoSlide":"","division":"","id":"XLONOXYAExDvoYxxHBnz"},{"topic":{},"link":"","round":"3","infoSlide":"","language":"English","division":"","tournamentID":"7L67NrnE93IENW8OW03k","content":"TH regrets the branding of Burka Avenger as a feminist icon.","id":"XMAAASuZwCLltm4H7wbP"},{"tournamentID":"7Jdvl74EMNCm0P5fq9PJ","language":"English","round":"Quarterfinals - Motion 2","link":"","topic":{"irw":{"check":true,"title":"International Relations/War"}},"content":"THBT the West should withdraw their military cooperation from India until they restore special privileges to Kashmiris in the J&K region.","infoSlide":"There is an ongoing dispute between India, Pakistan, and China over territory in the former federal unit of Jammu and Kashmir (J&K). J&K was the only state in India to have a majority Muslim population, and there has been a longstanding secessionist movement in this state. The Government of India has consistently responded to this with brutal military repression. Formerly, J&K also enjoyed 'special status'. They had a separate constitution, flag, and autonomy over internal administration of the state. Only designated permanent residents of J&K could own property, obtain government jobs in the state, receive govt. scholarships, etc. In late 2019, the Government of India placed major political leaders under house arrest, revoked its special status, and partitioned the state into two territories that the Government of India has direct and complete control over. Non Kashmiris now can buy land and own property, access government positions, etc, effectively ending any special protections for Kashmiris.","division":"","id":"XMM6xY64erKgrGMk1GZv"},{"language":"English","division":"","tournamentID":"0WQ7djfo2FawxEAC95E0","round":"3","topic":{},"infoSlide":"","link":"","content":"THBT illegal downloading is not criminal.","id":"XMeSH5Ay8D4DYS2FXCMF"},{"infoSlide":"","link":"","round":"Open_Semis","content":"THB in international military intervention in foreign countries.","topic":{},"language":"English","tournamentID":"STaEp3vuXBuTT2bP0vgU","division":"","id":"XMjOQhyR7ADYu1XX0HN8"},{"round":"Open_Semi","content":"TH, as a parent, would send their children to a kohanga reo school (Māori immersion schools).","division":"","topic":{},"language":"English","link":"","infoSlide":"","tournamentID":"tKXlShZl2vec49jC1bif","id":"XMkK2pH4z4QH6sPaWmZO"},{"round":"5","link":"","content":"THBT welfare and pensions policy should be determined by a panel of experts selected by their peers, not accountable to government.","division":"","topic":{},"infoSlide":"","language":"English","tournamentID":"jpLuasMJYB40s1bJk2Ia","id":"XNkjEV4ikiHVy1E2bAwd"},{"tournamentID":"VPUCPVj9FHFW0uzJinv0","infoSlide":"","division":"","language":"English","topic":{},"content":"This house believes that governments should provide heroin addicts with safe injection facilities.","round":"Masters_2","link":"","id":"XO5uuDrYcrLykuMEE3ry"},{"topic":{"politics":{"check":true,"title":"Politics"}},"infoSlide":"","tournamentID":"CJKUeBIUibEtZYahoUQV","link":"","content":"Chúng tôi tin rằng một Bộ trưởng phải có lý lịch cá nhân và bằng cấp liên quan đến ban ngành đó.","language":"Vietnamese","round":"","division":"","id":"XOKejkc6QjzuXJ1JZq9Y"},{"round":"1","language":"English","tournamentID":"wYhrxey2tVddZfEkGSYA","topic":{},"content":"Should we allow the police to use racial profiling?.","infoSlide":"","link":"","division":"","id":"XOSMK0RTiuz0oV8MlzHf"},{"tournamentID":"UPn4syqdx9T0fJyHm2Ej","content":"something about clones being happier if they didn't know they were clones. (Never Let Me Go).","topic":{},"language":"English","infoSlide":"","link":"","division":"","round":"4","id":"XPUSV02K0fOhKV0k1HfB"},{"topic":{},"tournamentID":"0DgXee32WEP3hxmGZExS","round":"28","language":"English","content":"THW (assuming the technology existed) implant irremovable tracking chips in its citizens.","infoSlide":"","link":"","division":"","id":"XPZy8Tb7K9UQcnEiCLmR"},{"link":"","division":"","tournamentID":"4BdwKPHB1LrpVYqE4E51","content":"THBT feminists should primarily combat pseudo-scientific claims of sex and gender based differences (e.g. claims that men are more intelligent/brave/strong) on the basis of their scientific inaccuracy as opposed to focusing on deconstructing the social value placed on those differences.","language":"English","topic":{},"infoSlide":"","round":"Open_Quarters","id":"XR2q9FeZGabwrE0dmQrm"},{"infoSlide":"","content":"Should self-incriminating reports for tax evasion no longer lead to amnesty/ower punishment?.","tournamentID":"kveNSL63Zo9kOYIUJlW2","language":"English","topic":{},"division":"","round":"1","link":"","id":"XREV4trbezS2z8JvdeTF"},{"content":"THW abolish university ranking systems.","division":"","language":"English","topic":{"education":{"check":true,"title":"Education"}},"round":"","link":"","tournamentID":"37eWQ7OoHqsPgaN53lHV","infoSlide":"","id":"XS2cDIomVtvLtNaeg9Vy"},{"infoSlide":"","division":"","topic":{},"link":"","round":"7","language":"English","tournamentID":"OyqUfVFCTQ5A8iecmNK1","content":"THW reserve seats in parliament for candidates under 30.","id":"XS83lGB0ihdcvdDs79HE"},{"infoSlide":"","topic":{},"division":"","content":"THW mandate that all contributions from sponsors to athletic teams of one gender also be made to an equivalent team of the opposite gender.","tournamentID":"2gsOERqtXqSETJffXbnj","language":"English","round":"2","link":"","id":"XSlAh246mlBDQPa4o0sL"},{"round":"2","topic":{},"division":"","infoSlide":"","link":"","content":"THBT former colonial powers should never intervene militarily in their former colonies.","language":"English","tournamentID":"gaW3hl0mF758MDm7UkNs","id":"XT3jWBWV3gaIP9YK2nAx"},{"topic":{},"link":"","tournamentID":"c5YoJ5qkI2DsrQ7PAhum","division":"","language":"English","round":"1","infoSlide":"","content":"THW allow individuals to sell their non-vital organs.","id":"XTaeHEW2yVdehCxBX7cM"},{"link":"","content":"THW strictly limit the replacement of workers with technology by companies.","language":"English","division":"","tournamentID":"q7pvo4zkG31lg89ofmeq","round":"ESL_Semis","infoSlide":"","topic":{},"id":"XTtBYa7NSJDS4WCgVlsI"},{"round":"6","topic":{},"content":"THW punish natural or legal persons who are accused of cultural appropriation.","tournamentID":"axWwnyCM8L14pVHljukt","language":"English","division":"","link":"","infoSlide":"","id":"XU9YSDJ32ZgNoBNTIF0K"},{"tournamentID":"JcJtvTXBcNJ3kYX5noH9","division":"","infoSlide":"","content":"THBT the feminist movement should renounce the title of \"Feminism\".","link":"","language":"English","topic":{},"round":"3","id":"XUt3seQ1ukrHO7y83ru3"},{"division":"","content":"THB corrupt, benevolent and capable dictatorship is preferable to corrupt and inept democracy.","topic":{},"link":"","tournamentID":"jdV8jBuLPUpb2I5gYBQc","infoSlide":"","language":"English","round":"Open_Semis","id":"XVSA5cgVttMjfzWhr02L"},{"topic":{},"content":"THBT a democratic world government is a worthwhile long-term human project.","division":"","link":"","infoSlide":"","round":"Open_Finals_2","language":"English","tournamentID":"bvHOR7Oow9PPlKPlA2BT","id":"XWNn8l7E0FFMvCYGrjSD"},{"content":"THW prefer a world where people cannot lie.","tournamentID":"uvPQBxEeKffyHUkLa5PV","division":"","infoSlide":"","round":"Open_Final","link":"","topic":{},"language":"English","id":"XXIYKMcyuz2aQMtJEztl"},{"link":"","infoSlide":"","tournamentID":"DXCgscK3BkzAJGRnyZpD","division":"","round":"Open_Semis","language":"English","topic":{},"content":"THW impose the death penalty for pretty crime, if we knew that it would be 100% effective in deterring pretty crime and would never be used.","id":"XXkZ9UIoXRCr7bbwcIdt"},{"tournamentID":"OuMJNWJJy88lWhwWuJmy","language":"English","round":"3","content":"THBT the EU should suspend Hungary’s membership rights.","division":"","topic":{},"infoSlide":"","link":"","id":"XY0BPqLkYnBzVTJtuPvk"},{"topic":{},"content":"THW prefer Afterlife A over Afterlife B.","tournamentID":"8PjX16DCJ3bPRWbiNKNn","language":"English","infoSlide":"","division":"","round":"Open_Final","link":"","id":"XYJtXC4DXeqKCrtYRZad"},{"language":"English","round":"Open_Final","tournamentID":"FpzYvT6Prqbibn0xYvov","topic":{},"link":"","division":"","infoSlide":"","content":"Given that a trade-off is required, THBT history education in post-conflict societies should focus on reconciliation at the cost of truth.","id":"XYy2Gnh7uvgMSDyKeOrC"},{"language":"English","division":"","topic":{},"link":"","content":"THBT the Olympic Idea has outlived itself.","tournamentID":"ovqKzpSVsRvBQDmmn1yj","round":"Open_Semis","infoSlide":"","id":"XZ7rttJwHuAcXw6NEQk3"},{"infoSlide":"","language":"English","round":"ESL_Semis","link":"","content":"This house prefers a non-adversarial legal system.","division":"","topic":{},"tournamentID":"vS5BTr7lDW40h5Qw31FI","id":"XZbAeyPmv9kVbBLJYkyy"},{"infoSlide":"","language":"English","division":"","content":"THW make the use of public transport free.","round":"1","link":"","tournamentID":"uk4xP1Lp7BjYaOzgd3Xi","topic":{},"id":"XZzHmuJfNjxE5AGpLaS6"},{"link":"","topic":{},"content":"(inkl.Factsheet) Should we reserve prostheses and implants for people with physical deficiencies?.","division":"","tournamentID":"1cqzoXItQEaNAhU2qjNL","round":"2","infoSlide":"","language":"English","id":"XaEwL6oJ33cLgVbPgkrO"},{"round":"8","language":"English","tournamentID":"MgpFX31hoBasrUiOV7Eu","link":"","topic":{},"content":"THW create matriarchal semi-autonomous regions within countries, and provide legal, political, and economic support to them.","infoSlide":"","division":"","id":"XaM6b6GpgWN76M0cKIZU"},{"division":"","topic":{},"round":"3","link":"","tournamentID":"FISzpNaGZKCHkhtDdzPp","infoSlide":"","language":"English","content":"THR the decision to let the FARC run as a political party.","id":"XaiB39MItVjcrqun8BY3"},{"link":"","language":"English","round":"Novice_Final","content":"TH prefers a world in which people can’t lie.","division":"","infoSlide":"","topic":{},"tournamentID":"cBdmYwHV9z5pBS0q23lF","id":"XbhhmBWyMvSSjlokvK1w"},{"content":"THW punish illegal tax avoidance (evasion) by the deprivation of citizenship.","language":"English","tournamentID":"980ImkvfswyUVd54XFQd","round":"5","infoSlide":"","division":"","link":"","topic":{},"id":"Xcwl7Ctec2eqSrTgJ2VS"},{"topic":{},"link":"","tournamentID":"zngB1WF8viOW2uGu6swZ","content":"THBT images designed to even slightly sexually attract/aroused viewer should be restricted to specialist adult shot/xxx domain.","infoSlide":"","language":"English","division":"","round":"Open_Semis","id":"XdGst9S22v4vT1gLeMax"},{"topic":{},"infoSlide":"","language":"English","link":"","round":"Open_Final","content":"In retrospect, THW have preferred Truth and Reconciliation Comissions over the ICTY to deal with the aftermath of the Yugoslav Wars.","tournamentID":"LYTCjoO4snxI4nOKTVZB","division":"","id":"XdWW2ukAQuRoqxrPBEKi"},{"round":"5","content":"THBT the state should construct false historical narratives that promote social cohesion (e.g. racial and religious tolerance).","topic":{},"infoSlide":"","tournamentID":"BXqPhfwak2R1kYHV48bp","division":"","language":"English","link":"","id":"Xdhtt0OrEpkl5kpNQdIA"},{"topic":{},"language":"English","division":"","tournamentID":"JdCT4CooyPOkRsmbNNLg","infoSlide":"","link":"","round":"Open_Final","content":"This House believes Amnesty International should campaign for abortion rights.","id":"XeiJU16jPzMixoOffkj3"},{"round":"4","language":"English","content":"Should genetic testing right after birth be made mandatory?.","topic":{},"infoSlide":"","link":"","tournamentID":"kveNSL63Zo9kOYIUJlW2","division":"","id":"XesCWRZmzFSTrjsM7UTp"},{"tournamentID":"jGziThakECOfXgvs0uHl","language":"English","content":"THW force pregnant minors to have an abortion or give their child up for adoption.","infoSlide":"","round":"1","division":"","topic":{},"link":"","id":"Xf7ToaZCmWCO3BWT2BaB"},{"round":"2","division":"","link":"","infoSlide":"","topic":{},"content":"THBT the Palestinian movement should abandon its claim for the right to return in exchange for significant financial reparations.","language":"English","tournamentID":"caeYE7341tdQiO1TJafq","id":"XfLAnErnnBO5LDmgEC9b"},{"language":"English","link":"","topic":{},"infoSlide":"","round":"Open_Final","content":"TH prefers a world where co-parenting is primarily non-romantic (conducted by consenting partners who have no romantic or sexual relationship, eg. friends).","tournamentID":"Mp1zDBiaN3PYnRnjPVIk","division":"","id":"XgBmVsZ8BEZ3gH4HSbv0"},{"language":"English","division":"","round":"2","topic":{},"content":"THP a world without lying.","link":"","tournamentID":"TwRuBI9R9WS6estcrif9","infoSlide":"","id":"XgpizU4mSOB3QLwItK4d"},{"division":"","tournamentID":"BtqBGdAUsTtPKorZOcBX","link":"","infoSlide":"","topic":{},"content":"THBT African countries should adopt English as the principle language of instruction.","round":"Open_Quarters","language":"English","id":"XgwFGcc6U2Pmnoh8d1Tz"},{"division":"","round":"Open_Final","tournamentID":"H6MeeIis6pg2gQbgEyuB","link":"","language":"English","infoSlide":"","topic":{},"content":"THBT capitalism and feminism are fundamentally incompatible.","id":"Xhi1dgFnJthYpxw97GLu"},{"topic":{},"language":"English","infoSlide":"","content":"This House would prohibit the use of predictive algorithms in criminal trials.","link":"","round":"4","division":"","tournamentID":"macdlwUjYqFCGHKvQS20","id":"Xj8HUhOtuSsRJcxAPtOm"},{"division":"","language":"English","round":"3","link":"","infoSlide":"","topic":{},"content":"THW add a right to internet access to the Armenian constitution.","tournamentID":"LDEsIQgDXxAdqGHF4x4e","id":"XjVGdS2ED0iCM9u0xLFm"},{"topic":{},"round":"Open_Finals","content":"THBT individuals have an obligation not to consume artwork from artists that have committed highly immoral actions.","tournamentID":"EK7bkCOLaLHjVsqCcikk","division":"","language":"English","link":"","infoSlide":"","id":"Xk09WzykfTgBgcudhu81"},{"tournamentID":"tnPBotxO7gOOKcyCXAUw","language":"English","link":"","division":"","content":"THW allow the Supreme Court to reject laws if they contradict the constitution (this is not SQ in the Netherlands).","topic":{},"infoSlide":"","round":"5","id":"XlPTsiG0CDhx89o8hVTr"},{"division":"","tournamentID":"sgcqNV5ntCoa4H8glRBu","language":"Vietnamese","topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"}},"content":"Chúng tôi tin rằng phong trào nữ quyền nên tán dương sự giảm thiểu tỉ lệ sinh đẻ.","link":"","round":"3","infoSlide":"","id":"XmHiw2SBg1Ysd2OEb1mF"},{"round":"4","language":"English","division":"","content":"That we prefer a world where cooperatives (employee owned businesses) were the norm.","link":"","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","infoSlide":"","topic":{},"id":"XmOlG6z6YBd734FROTrz"},{"round":"1","tournamentID":"MNBafFvHXt5WwIet1zGa","language":"English","topic":{},"link":"","division":"","infoSlide":"","content":"THW require all isolated religious communities (eg. Hasidic Jews, Jehovah's Witnesses, etc.) to give all 18-year-olds a 'Rumspringa'.","id":"XmVV14XBgVZ2RHCkUXdg"},{"language":"English","round":"1","topic":{},"infoSlide":"","tournamentID":"H4i4RR7JXk14xDRe7PUX","division":"","content":"THBT political parties' electoral campaigns should only be funded by the state.","link":"","id":"Xmsp0sHcJMP7aACG5sOC"},{"topic":{},"round":"3","link":"","division":"","infoSlide":"","tournamentID":"3G6HklWR08yKYY0GbDsU","content":"THBT the ICC should offer Joseph Kony an amnesty from prosecution.","language":"English","id":"XmyK2x9gJa9DPeirB1H4"},{"tournamentID":"8umdzosR2LakbIpLGOan","language":"English","division":"","round":"Open_Quarters","topic":{},"infoSlide":"","content":"THBT retribution should not be a part of the criminal justice system.","link":"","id":"XndrgWdyim9xKzurQfY7"},{"content":"THBT parents should teach morality to their children through religious context (e.g. “it is a sin to lie”; \"help thy neighbour\" etc.).","tournamentID":"nKWTDNECNNvbMxNcdVJM","division":"","link":"","topic":{},"language":"English","infoSlide":"","round":"Open_Final3","id":"Xo0FRzRS0xkj1hfJlmlr"},{"topic":{"irw":{"title":"International Relations/War","check":true}},"language":"English","round":"","division":"","link":"","content":"THO the ideology of globalism.","infoSlide":"","tournamentID":"tkDLesahiehQ4Nqbr4eC","id":"Xo2BviSwhK9FaEzKAPdI"},{"division":"","round":"4","topic":{},"content":"THW subsidize companies who have a 50% share or more owned by a woman or minority.","language":"English","link":"","tournamentID":"zZRXGDm7RC8LjYJKzubm","infoSlide":"","id":"XpDvjkQ6A4psbUUXlYBI"},{"language":"English","link":"","tournamentID":"D3NiQxizKJ06MnU4DU06","content":"THW force state officials to keep all their financial assets in domestic banks.","topic":{},"division":"","round":"4","infoSlide":"","id":"XprJWTHWIusoRYcxRza4"},{"division":"","language":"English","content":"THR the narrative that difficulties and struggles in one's lived experience are \"empowering\" (e.g. glorified stories about Oprah's harsh experiences with racism and misogyny).","tournamentID":"S2mG18EWYdh2bPEadyd9","infoSlide":"","topic":{},"round":"Novice_Semi","link":"","id":"XqLcFDkwTDSkGDb4DJMW"},{"link":"","topic":{},"language":"English","division":"","round":"Open_Final","infoSlide":"","tournamentID":"cp0MD0ZRWeTfahcPD6wj","content":"THW use the influences gained from these abilities and beliefs to propagate socialist values that are justified through faith.","id":"XqW7y5XghZmgHxWh3p4n"},{"topic":{},"link":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","round":"3","language":"English","content":"In the aftermath of the COVID-19 Outbreak, THBT Western liberal democracies/governments should actively promote the narrative that individuals ought to sacrifice/make sacrifices for the collective community.","division":"","infoSlide":"","id":"Xr4RjJlZAHqnzWc1EwL2"},{"infoSlide":"","content":"The dangers of fat acceptance outweigh the harms of fat shaming.","topic":{},"language":"English","round":"5","link":"","division":"","tournamentID":"9yZPq4vkPBjWs9gMF8AS","id":"Xr98E3YEHelXFAecJcTy"},{"link":"","language":"English","division":"","tournamentID":"t1jiRXU99xeGdoIkTeyF","content":"THW force all news organisations to operate as non-profits.","topic":{},"round":"ESL_Final","infoSlide":"","id":"XrYlzOo2goq1qV0XzypQ"},{"division":"","link":"","topic":{},"content":"THBT past colonial empires should pay reparations to their former colonies who are still classed as developing.","round":"2","tournamentID":"kpTzHelXPi3MmxVjSizP","language":"English","infoSlide":"","id":"XspthlL4Sht9ci5u34ly"},{"link":"","tournamentID":"wP5I8OZ057B9BO0Js6MR","division":"","topic":{},"infoSlide":"","content":"THBT it would be principally just for a state that is unable to provide a social safety net to allow a greatly impoverished individual to sell themselves into slavery.","language":"English","round":"Open_Quarters","id":"XsthpKQpAevms4ieKDxP"},{"topic":{},"infoSlide":"","content":"TH, as a leftist politician, would adopt political disinformation campaign tactics.","round":"1","division":"","link":"","tournamentID":"jDG8reClMB02DIxLR5LL","language":"English","id":"Xu0rAySpgvVWgNoofZUF"},{"content":"This house would compel media to declare a political bias - Round 1.","round":"1","topic":{},"language":"English","tournamentID":"nXN2yUG7soxwCp4xidzj","infoSlide":"","link":"","division":"","id":"XuqmxxZ6FiU6BfO1M4Da"},{"language":"English","link":"","tournamentID":"MSWulSxGMLEhqYJrBR62","division":"","topic":{},"infoSlide":"","content":"For crimes with low prosecution and conviction rates (e.g. sexual assault, domestic violence or membership of criminal gangs), THW lower the burden of proof from \"beyond reasonable doubt\" to \"on the balance of probabilities\".","round":"Open_Final","id":"XvayMVIB49H3DlWgENzG"},{"tournamentID":"4XkvQJQxtOHIIF6sH97v","round":"1","language":"English","content":"THW give primates and cetaceans the same rights to life, freedom from physical harm and freedom of movement as humans.","division":"","topic":{},"infoSlide":"","link":"","id":"XwDgvS4dRJMRH2vmxxx1"},{"round":"4","content":"Assuming the technology existed, This House would allow the use of technology X.","tournamentID":"db8a4cSMVYVFuxZgcf0y","division":"","link":"","topic":{},"language":"English","infoSlide":"","id":"XwNJKfhVP67v5ihLSVqE"},{"infoSlide":"","tournamentID":"b1sXr4qyDgdbj0UNSjmS","division":"","link":"","topic":{},"content":"THR The Use of Medical Data From Nazi Experiments.","round":"Open_Semis","language":"English","id":"XwmSfDfPZsM3Q13WNzJy"},{"division":"","content":"Giả sử có thể đo được mức độ cải tạo, chúng tôi sẽ trả tự do cho tù nhân phụ thuộc hoàn toàn vào mức độ họ cải tạo thay vì đặt các án tù cố định.","round":"","link":"","language":"Vietnamese","infoSlide":"Cải tạo là quá trình giáo dục và đào tạo lại những cá nhân đã bị kết tội để giúp họ hòa nhập lại với xã hội. Nó bao gồm nhiều phương thức tiếp cận khác nhau, từ việc cố vấn tâm lí cho đến đào tạo lao động.","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"tournamentID":"LlsxibXteGBGML9aitY2","id":"Xx4Rq8vg8knje9c2j8Uq"},{"round":"1","content":"This House Would significantly decrease income tax rates for women.","division":"","tournamentID":"oFJV1Acc1Gr7t6B77LSK","infoSlide":"","link":"","language":"English","topic":{},"id":"Xxd5KjSqfPXqxfNGgz1Y"},{"content":"In the event of a terrorist attack by radical Islamists, THW fabricate evidence (which wouldn't be found out to be untrue) that the attack was committed by someone from the dominant (religious/ethnic) group in that society.","topic":{},"language":"English","round":"Open_Semis","infoSlide":"","tournamentID":"FaBy9PfDE8gfy5w00VdM","division":"","link":"","id":"XxnhOmALlFpruRT307ZZ"},{"division":"","content":"THBT it is the duty of any state to grant political asylum to whistleblowers from other countries.","tournamentID":"DLFJWaIyHnSlvFofovjc","link":"","topic":{},"infoSlide":"","language":"English","round":"1","id":"Xxs5WHb7tcdL9q9hEMcC"},{"division":"","language":"English","content":"THW refuse war veterans the right to vote.","topic":{},"infoSlide":"","tournamentID":"riEZk6ypdW0s5dnVIggc","round":"Open_Final","link":"","id":"XysBLuY50WVMoV7AzPo4"},{"division":"","link":"","tournamentID":"MgpFX31hoBasrUiOV7Eu","infoSlide":"","topic":{},"language":"English","round":"Open_Final","content":"THW divide the United States of America into multiple countries.","id":"XzH6N0ZfG7U1s5iBUTmn"},{"language":"English","tournamentID":"ZxUcdMSTBBFZQIuIsGtb","infoSlide":"","division":"","round":"5","content":"THB it is legitimate to use violence to defend private property.","link":"","topic":{},"id":"Xzntr3OkjUjVGkxYRNNA"},{"round":"1","division":"","topic":{},"content":"THW legalise simulated child pornography.","infoSlide":"","language":"English","link":"","tournamentID":"VWMKb2j3CmLwgnB7Jl4O","id":"Y1OwbuMimbcvLUSnEEtJ"},{"round":"5","tournamentID":"sol1oNvzZmBI1NXc28Lh","link":"","content":"TH as the UK Conservative Party would hold a second Brexit referendum.","language":"English","infoSlide":"","division":"","topic":{},"id":"Y24QtdJbOLp0sqn0aFxm"},{"topic":{},"tournamentID":"KErVXbqRahyWD7ZB1Q1m","language":"English","round":"4","link":"","content":"THBT feminists should oppose global capitalism.","division":"","infoSlide":"","id":"Y2ahSVZQCMyiwFAeFrbg"},{"infoSlide":"","link":"","language":"Vietnamese","tournamentID":"mkrRVvz5EWSZie6LBtCH","division":"","topic":{},"round":"Pre Quarterfinals","content":"Chúng tôi ủng hộ tình yêu thực dụng.","id":"Y2xT3WhsWgvVSjsELiAE"},{"link":"","content":"THBT Western European countries should teach an overwhelmingly negative version of their imperial histories.","infoSlide":"","tournamentID":"jhyT1LK3YdR0do1cosc6","round":"Open_Final","topic":{},"division":"","language":"English","id":"Y34y9X3vUpDUgcYuPz5I"},{"language":"Vietnamese","round":"2","tournamentID":"WEotTkb6ok8UfUOl0Lwb","content":"Chúng tôi, với tư cách là một người nhập cư bất hợp pháp, sống trong quốc gia có sự kỳ thị với nhóm người của mình, sẽ ưu tiên một cuộc sống tội phạm nhưng kiếm được nhiều tiền thay vì một công việc hợp pháp (hình thức công việc không vi phạm pháp luật).","infoSlide":"","link":"","division":"","topic":{},"id":"Y3cSG5kWoE1Ns9HZCbh2"},{"infoSlide":"","language":"English","topic":{},"link":"","round":"3","division":"","content":"THW Require all school history curricular to focus 50% of their time and resources on women.","tournamentID":"aL5gnSWQ3OQq2Lb3mRix","id":"Y4BMuKqRsuY2Upvuy6jV"},{"tournamentID":"q7pvo4zkG31lg89ofmeq","division":"","round":"5","topic":{},"language":"English","content":"THBT the international community should cut off internet access in Syria.","link":"","infoSlide":"","id":"Y5cVofcpXofIV26WjAEW"},{"infoSlide":"","tournamentID":"zNrcKb4T08IU7LfuYSUz","division":"","language":"English","link":"","round":"2","content":"THBT slacktivism has harmed activism more than it has benefited it.","topic":{},"id":"Y5dje6xwPg0AdOBVO9ss"},{"content":"THW make parents pass a test before having children.","tournamentID":"E91ZTw8wNjTYuX6RmZCc","round":"1","language":"English","topic":{},"infoSlide":"","link":"","division":"","id":"Y5j23wNSIFXn3eSflM70"},{"division":"","round":"Open_Semis","link":"","content":"THW impose high property and land taxes on foreign buyers and owners of property.","tournamentID":"EpANk5V3VQNFWagnktFN","topic":{},"language":"English","infoSlide":"","id":"Y73URBjPLasGfB8s2VUE"},{"tournamentID":"0uv0Q5NYNxSkCbhPLLRo","round":"3","content":"THBT governments in developing countries should prioritize increasing foreign tie-ups in public universities, over allowing the entry of foreign universities.","link":"","topic":{},"division":"","infoSlide":"","language":"English","id":"Y9LT3GwB0UofVdTtlHwx"},{"infoSlide":"","link":"","content":"THW replace the national sport teams of Ex-Yugoslavian republics with new unified teams.","language":"English","division":"","topic":{},"tournamentID":"NE3BXrt6CASI2EExAgUk","round":"Open_Final","id":"Y9XEbGYHmMhmCCQY0Kj4"},{"link":"","division":"","infoSlide":"","language":"English","content":"THS the public outing of gay public figures.","topic":{},"tournamentID":"y7meTgIUCGSo7UqVkUQq","round":"Open_Semis","id":"Y9s1GbiQOx5e5uSGZYIL"},{"division":"","language":"English","tournamentID":"pu7FduCxL7IOOrWe0ypf","link":"","round":"Open_Final","infoSlide":"","content":"THW rename Yale.","topic":{},"id":"YAFsBe9M97y4NWOk68iY"},{"topic":{},"tournamentID":"8EaRfOcTe47s5VRlQeNv","round":"4","content":"THW allow natural persons to pay people not to vote.","infoSlide":"","language":"English","division":"","link":"","id":"YAVuebquSju6WzaDhkyW"},{"topic":{},"infoSlide":"","language":"English","content":"This House regrets rising commodification of close and intimate relationships (including but not limited to hiring actors to play your family members; commercial hugging; premium accounts on dating apps).","division":"","tournamentID":"6NSl7moQPnBVA2R4Z66b","round":"Open_Final","link":"","id":"YAuIlGTerxGxK352RgvI"},{"content":"THBT environmental refugees should be granted citizenship in countries that have contributed most heavily to global pollution.","round":"2","link":"","infoSlide":"","language":"English","division":"","topic":{},"tournamentID":"TAVBVNzO0c2PrQ44iAyC","id":"YBKmaXAvpLSVORFFO5go"},{"infoSlide":"","division":"","topic":{},"link":"","language":"English","tournamentID":"TtPU6Lwr9qKhUvLMeyVD","round":"3","content":"THBT Amercia is justified in keeping the Second Amendment.","id":"YCE9lCIMKPlruPh77ybM"},{"division":"","content":"This house believes that the US should issue guest worker visas, under which minimum wage laws would not apply.","language":"English","tournamentID":"dF61f0kc1Q0KQCGUhM1l","round":"5","link":"","topic":{},"infoSlide":"","id":"YD1sDXUB30oSC72fLSEu"},{"tournamentID":"OQmCXCvJatQN0zG3lklx","topic":{},"division":"","infoSlide":"","content":"THW support a vigilante terrorist organisation combatting violence against women in African and the Middle East.","link":"","round":"Open_Semis","language":"English","id":"YDCmR4FvLTlqn6Nti5q1"},{"round":"2","division":"","language":"English","tournamentID":"M23yN5DieB5FwQ5wfjDl","link":"","topic":{},"infoSlide":"","content":"THIS HOUSE AS THE US CIA WILL DISCLOSE IT.","id":"YDPFGpDOkEqgy4R1B3K7"},{"infoSlide":"","content":"This House believes that in wartime, there is no material moral difference between civilian and non-civilian casualties.","round":"Novice_Final","link":"","division":"","tournamentID":"2C0TX71TRjIIOcsN7CbL","language":"English","topic":{},"id":"YDPwmjEk438McqIxZISy"},{"division":"","link":"","language":"English","round":"Open_Semi","content":"In cities and areas with rapidly increasing housing costs, THW tax new residents and use the revenue to subsidize housing costs for citizens already residing in the area.","tournamentID":"SGpBjVPnJkFrJB0hnxYv","infoSlide":"","topic":{},"id":"YEPfCdFIOLGozY9ys6sI"},{"tournamentID":"o7IbmAZdAZ1UWeWnX7IL","division":"","language":"English","infoSlide":"","topic":{},"content":"TH believes in God.","round":"Novice_Final","link":"","id":"YF4ywYVHKbzc8J0RTgOq"},{"division":"","link":"","round":"3","infoSlide":"","tournamentID":"DIDaTQVu3sv4iXbqf3eE","topic":{},"content":"THBT the education system should teach children to believe that they are personally culpable for the death and suffering in the developing world.","language":"English","id":"YF9mVws6XTjdWyC8V2g0"},{"topic":{},"language":"English","round":"Open_Final","division":"","tournamentID":"Pt1Z2dTdUinRviVucbZA","infoSlide":"","link":"","content":"That we would prefer prominent authors to write books about utopia, not dystopia.","id":"YFDFLWT50XnK77mEPSgp"},{"topic":{},"infoSlide":"","link":"","division":"","tournamentID":"yplVU35a69J2hHBBmAJC","language":"English","content":"THW abolish the welfare state.","round":"4","id":"YG1DEJt4lRHnbHfUKtp0"},{"tournamentID":"0DgXee32WEP3hxmGZExS","round":"19","division":"","content":"THW impose a moratorium on home foreclosures.","link":"","infoSlide":"","topic":{},"language":"English","id":"YG8Vtd2FDkQBX1KrnkKg"},{"infoSlide":"","link":"","content":"THR the social preference for positivity and optimism.","division":"","tournamentID":"cTxMF0myfwbQDPdL8Ral","language":"English","round":"Novice_Final","topic":{},"id":"YHWDhyfw5i1enlnTC4zv"},{"round":"3","infoSlide":"","division":"","topic":{},"link":"","language":"English","content":"TH, as the UK government, would remove charitable status from religious institutions that teach socially regressive ideas (e.g. that women belong in the home, etc.).","tournamentID":"d2f6RXp0B99iQq4RFZeE","id":"YIXK28Bc6wdaafQ3GiVt"},{"topic":{},"link":"","round":"1","content":"This house would require companies to hire a significant percentage of employees without university degrees across all levels of their organisation.","division":"","infoSlide":"","tournamentID":"cBdmYwHV9z5pBS0q23lF","language":"English","id":"YJbB0wgcmssaiFcZ9Tox"},{"infoSlide":"","division":"","topic":{},"round":"3","content":"This house would allow the Roma to settle in autonomous communities.","language":"English","tournamentID":"Jy8kbmlTXWgf8pRg3dUy","link":"","id":"YKahXW9AJTzxlVWYtTjY"},{"content":"THBT all state funding of the art should be allocated to artists through a random and equal lottery.","tournamentID":"z4fwjDZ02juoVx4MeEih","topic":{},"round":"3","infoSlide":"","language":"English","link":"","division":"","id":"YMA95uIToAg29g0rG9Bj"},{"topic":{},"language":"English","link":"","tournamentID":"nXN2yUG7soxwCp4xidzj","division":"","infoSlide":"","round":"7","content":"THS white progressives criticising illiberal practices in non-Western and/or minority cultures - Round 7.","id":"YMbzABBZXjLgpaemwnnY"},{"infoSlide":"","round":"4","link":"","content":"TH, as a parent belonging to a minority religion, would discourage their children from expressing their faith publicly (e.g. wearing yarmulkes, hijabs or other articles of faith, etc.).","topic":{},"division":"","language":"English","tournamentID":"TpCKtGVry2w5xrgb90jZ","id":"YMnk8YSZN5R3ih0OD3WD"},{"division":"","round":"8","topic":{},"link":"","infoSlide":"","tournamentID":"t1jiRXU99xeGdoIkTeyF","content":"This House regrets the glamorization of start-up culture that encourages people to start their own companies rather than pursue traditional career paths.","language":"English","id":"YMtDnyAx7rF8rSl7aOUQ"},{"division":"","round":"3","link":"","content":"Ottakring is a neighbourhood with a high percentage of immigrants, particularly from former Yugoslavia.","infoSlide":"","language":"English","topic":{},"tournamentID":"lM9u9z6CfHfA9HPucSIT","id":"YO47s9sa7YFJLT2mAYG0"},{"link":"","division":"","tournamentID":"37eWQ7OoHqsPgaN53lHV","content":"THBT that from secondary schools, schools should treat students as clients.","topic":{"education":{"check":true,"title":"Education"}},"infoSlide":"","round":"","language":"English","id":"YONyplfC74SDllarNTc9"},{"round":"3","language":"English","tournamentID":"Awa41MBby9wm71OwFQyo","link":"","infoSlide":"","division":"","topic":{},"content":"Do we need a women’s quota in prison?.","id":"YOja7FzIK3kmFsoICEju"},{"round":"","topic":{"technology":{"title":"Technology","check":true}},"language":"English","infoSlide":"Nationalisation refers to the process of transforming privately-owned assets into public-owned assets by bringing them under ownership and control of the national government or state.","division":"","link":"","content":"THW nationalise all development and usage of AI that are likely to replace human labour.","tournamentID":"LlsxibXteGBGML9aitY2","id":"YPd6vbu2BRN3AGilxRyc"},{"round":"8.2","topic":{},"language":"English","link":"","tournamentID":"BXqPhfwak2R1kYHV48bp","infoSlide":"","division":"","content":"THW prevent guilty nations of human rights violations from hosting sporting events.","id":"YPzBIcQlzTuWR18VuWE4"},{"tournamentID":"TN94ucwzVJ2xKpp2fcrc","topic":{},"division":"","link":"","infoSlide":"","language":"English","content":"THBT using Human Shield tactics, by the weaker side, is legitimate in asymmetrical wars.","round":"4","id":"YRkldRCiRxHT7gZob9XX"},{"division":"","language":"English","content":"THBT in developed countries the minimum wage should guarantee a middle class lifestyle.","infoSlide":"","topic":{},"tournamentID":"013M8EetYEKwpGlokURQ","round":"2","link":"","id":"YSB26skxLtA6M5k9bAl2"},{"topic":{},"infoSlide":"","language":"English","content":"THBT political centrism does more harm than good.","tournamentID":"C4TfAdkoNgavFucgidJK","division":"","round":"2","link":"","id":"YUILYjEFNyMrQZtEiZer"},{"division":"","link":"","content":"Assuming you would not be found out, in the event of a terrorist attack on US soil, committed by Islamist extremists THW fabricate evidence that attack was committed by dominant ethnic and socio-economic group, e.g. white Anglo-Saxons.","infoSlide":"","tournamentID":"3tMy4nyufgrwLpV8f6da","language":"English","round":"Open_Final","topic":{},"id":"YUtQKpAvXyDZdsoYwDID"},{"language":"English","topic":{},"round":"2","content":"THBT for certain criminal offenses, torture is a just punishment.","division":"","tournamentID":"wP5I8OZ057B9BO0Js6MR","infoSlide":"","link":"","id":"YVdEMwz9F2nmh6WrhLAj"},{"language":"English","round":"2","division":"","topic":{},"link":"","infoSlide":"","content":"THS The Depiction Of The USSR as Absolutely Evil.","tournamentID":"i4XbygF4ZWUtQg8NFKqw","id":"YW00krSYw5kZUnEwX9dj"},{"infoSlide":"","round":"3","language":"English","topic":{},"link":"","content":"THW encourage women to be selfish.","tournamentID":"YbdPFTE9FbO3iQjZo87D","division":"","id":"YWUPBWJdlWquPf3esmKZ"},{"division":"","link":"","topic":{},"round":"3","infoSlide":"","content":"That we should abolish all statutes of limitations in criminal cases.","language":"English","tournamentID":"fkUHa28aVk8LYYEAdofu","id":"YWsjHSt2Yifdh1E3gMaq"},{"tournamentID":"7bjgBH4vUAY8LwONR9i6","topic":{},"infoSlide":"","language":"English","round":"2","link":"","division":"","content":"THW provide financial incentives (e.g. tax breaks) to companies that require skilled labour who hire non-graduates.","id":"YXRHklY4hz45OrkjsBCt"},{"tournamentID":"gsX4dlvvsr6lcKP3eM2T","content":"This House believes that Taiwan should declare independence now.","division":"","language":"English","topic":{},"link":"","infoSlide":"","round":"2","id":"YXXINN7ui53yA9DIpGgr"},{"division":"","content":"TH, as Greta Thunberg, would openly denounce capitalism as the root of climate change.","tournamentID":"uES9ygXHa8tJuYB7dFEM","round":"4","language":"English","link":"","infoSlide":"","topic":{},"id":"YYpomzgVXkExaIHcTlY5"},{"round":"2","infoSlide":"","content":"THW would allow parents to microchip their children without the child's consent.","language":"English","topic":{},"division":"","tournamentID":"9pAAcbund4BvOXScZxre","link":"","id":"YaJpMlNXwbTnztd2MKk1"},{"topic":{},"content":"TH supports the decision to stop British development aid to India.","round":"2","infoSlide":"","link":"","language":"English","division":"","tournamentID":"0bOkf8RbGJTfzpOQVOgY","id":"YbFfXgfl4RvcsKvaDtc7"},{"language":"English","tournamentID":"9l3qvCwMUUUzEdTVXCoM","division":"","link":"","topic":{},"infoSlide":"","content":"THW, as the UK, give up its nuclear arsenal.","round":"Open_Final","id":"YbabLLLTvU7e6fWDaBN3"},{"link":"","infoSlide":"","content":"THBT EU countries should promote Christianity and not other religions.","division":"","round":"Open_Semis","language":"English","tournamentID":"vY2MtSrfiAgUKzGbzzMm","topic":{},"id":"YbwcvR7xJ7ngZOe5b0vp"},{"content":"THBT The Music Industry Should Not Facilitate the Comebacks of Artists Who Commit Violent Crimes.","topic":{},"link":"","round":"3","division":"","infoSlide":"","language":"English","tournamentID":"IpWyfCcksctR86jKX66g","id":"YcKzCniWeOZL4aLj1xay"},{"language":"English","division":"","topic":{},"round":"1","content":"THO the demonisation of nationalism.","infoSlide":"","tournamentID":"p6ZWMCxUvbu1V0BT5gJg","link":"","id":"YdRlblJdSwuJi8FBpSsR"},{"tournamentID":"x0AmWHi8lm3JhQyyhsfo","link":"","round":"1","division":"","language":"English","infoSlide":"","topic":{},"content":"THBT Facebook, Google+,and other social media platforms should remove all content produced by extremist political parties.","id":"YdzMFyR1JL7ZZWiMGqVg"},{"tournamentID":"KE7jdAyW9az9nKVb9FMV","content":"Chúng tôi, với tư cách là Jane, sẽ chọn làm việc ở một ngôi trường THPT Công giáo ưu tú thay vì một ngôi trường THPT nữ sinh công lập tại một khu dân cư có điều kiện kinh tế khó khăn.","infoSlide":"Jane là một nữ giáo viên trẻ có tư tưởng chính trị tiến bộ và quan tâm đến các hoạt động phong trào xã hội. Cô có nhiều năm kinh nghiệm và chuyên môn trong ngành giáo dục vận động các phong trào xã hội.","link":"","round":"","division":"","language":"Vietnamese","topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"},"education":{"title":"Education","check":true}},"id":"YeXolCNcUMctTCdUbZJg"},{"round":"4","content":"This House Believes That Republika Srpska Should Be an Independent State.","tournamentID":"RpQnqbHAxB8fhWBQcnaj","topic":{},"infoSlide":"","link":"","language":"English","division":"","id":"YfYMEw2O3x5eJ80cfp2Z"},{"tournamentID":"b9wXoxHWMOjvJu54cv9Q","topic":{},"division":"","link":"","infoSlide":"","language":"English","round":"Open_Final","content":"THBT state funded space programs are a waste of tax payers' money.","id":"YfipFUmvr7b1THaChrGo"},{"link":"","infoSlide":"","content":"THW stop playing “The Star-Spangled Banner”.","topic":{},"division":"","round":"3","language":"English","tournamentID":"KMM87DnmWFjc4UzTdkjp","id":"YfwihbooA8faE3O6tOR2"},{"infoSlide":"","language":"English","division":"","content":"THBT education in the developing world should be conducted primarily in English - Round 1.","topic":{},"link":"","tournamentID":"Ryhdb4JOJYP96e5oa49b","round":"1","id":"YgtMhFB33URnPnNQ6JEL"},{"content":"THW invest in big casinos to rejuvenate economically disadvantaged areas.","topic":{},"infoSlide":"","language":"English","link":"","division":"","round":"2","tournamentID":"jhyT1LK3YdR0do1cosc6","id":"Ygw8YAEqmwbfyPONQx2c"},{"division":"","language":"English","content":"THBT the states should pay reparations to ethnic minorities.","topic":{},"round":"Open_Final","tournamentID":"4ENxr34b5j7GiIcVWnv9","link":"","infoSlide":"","id":"YhRavAK9CVxuuKTT89jK"},{"language":"English","link":"","tournamentID":"WcTEqzk0ckiyLGdszyy6","topic":{},"content":"THBT the LGBT movement should stop using the concept of “gay pride”.","infoSlide":"","round":"Open_Quarters_Partial","division":"","id":"YiRa72gTAUqeGzfl4J0G"},{"round":"4","tournamentID":"7L67NrnE93IENW8OW03k","language":"English","link":"","content":"TH, as Pope Francis, would allow women to become priests.","infoSlide":"","division":"","topic":{},"id":"YiddqiRIL8R9crcUtk9y"},{"round":"Masters_2","infoSlide":"","topic":{},"division":"","tournamentID":"gsX4dlvvsr6lcKP3eM2T","content":"This house would stop the search for the gay gene.","language":"English","link":"","id":"Yim8xDJZXv0njXuqYE4L"},{"link":"","infoSlide":"","language":"English","content":"This House would allow negative voting.","tournamentID":"JLyF99Vg0hk3hhYCwEgp","division":"","round":"2","topic":{},"id":"YkA0LPtLsdL5kSbOTAD8"},{"infoSlide":"","link":"","tournamentID":"0bpNzjTgN71TZQEkHTak","topic":{},"division":"","content":"THBT European Union nations should forgive Greece’s sovereign debt.","language":"English","round":"7","id":"YkRRlO95s5bPDq88pq2G"},{"topic":{},"infoSlide":"","division":"","language":"English","content":"In minority communities, THW prioritize free access to university over higher standards of schools education.","link":"","tournamentID":"ZClJskShp09gm6WCITGC","round":"2","id":"YlFKRFxQU2xBsFbSt549"},{"language":"English","topic":{},"tournamentID":"m6JzV67uYJSVBRpAbgL7","link":"","content":"THR the narrative that ideal deliberation should exclude display or involvement of emotions.","infoSlide":"","division":"","round":"Open_Final","id":"YmMYhKZPJuruZQMRObPF"},{"link":"","content":"THR the idolization of individuals who achieved success without going through traditional education (Bill Gates, Mark Zuckerberg, etc).","round":"1","language":"English","division":"","topic":{},"infoSlide":"","tournamentID":"Y81hIZM2YzXWwwRuxR0R","id":"Ynb05aiWHXE3g7zzNVas"},{"language":"English","division":"","infoSlide":"","tournamentID":"t1jiRXU99xeGdoIkTeyF","topic":{},"link":"","round":"ESL_Semi","content":"TH would establish English as primary language for education in China (inexact).","id":"YoF8xQDHKdgXKFaUTiEk"},{"round":"2","language":"English","topic":{},"infoSlide":"","content":"Should the inclusion of disabled children in German schools be stopped?.","link":"","division":"","tournamentID":"dYmkkVK8aVn1dCgd4UDy","id":"YpfgUi8m3oTZ2HQ6DOpd"},{"infoSlide":"","division":"","tournamentID":"qQd3HyiFI5fx18xViLoe","content":"THW tax low-brow entertainment (e.g WWE wrestling, Keeping Up with The Kardashians, mainstream popular music) in order to subsidise high-brow art (e.g. Shakespeare, Bach, some arthouse film).","topic":{},"link":"","round":"3","language":"English","id":"Yq2Koq9c6ZXlJLz01CRD"},{"infoSlide":"","content":"THW eliminate the government's ability to enact back to work legislation for all education workers.","topic":{},"link":"","tournamentID":"krSr8LWxSpEc6v45L1uv","division":"","language":"English","round":"4","id":"Yq54g3lHhUYXWjFZDmo3"},{"topic":{},"round":"22","division":"","infoSlide":"","language":"English","tournamentID":"0DgXee32WEP3hxmGZExS","content":"THW Would Reintroduce Hard Labour in Prisons.","link":"","id":"YqbUIqKdWEiiVD81n83L"},{"round":"Open_Semi","topic":{},"division":"","link":"","tournamentID":"OY8sAGz8SAjQpWA2PicY","infoSlide":"","content":"This house would not prosecute individuals for pirating entertainment media for their own use.","language":"English","id":"Yqf7rJYc2oF8JVt04ude"},{"round":"3","language":"English","link":"","tournamentID":"Mi4A41wAaOQFffgxIvSR","content":"THW legally permit soldiers to refuse to participate in military actions or missions on the basis of conscience.","topic":{},"division":"","infoSlide":"","id":"YrGLCZbxl31QQX3Yew6S"},{"topic":{},"tournamentID":"Ryhdb4JOJYP96e5oa49b","language":"English","content":"TH regrets Treaty settlements - Semi Final 1.","round":"Open_Semis","link":"","division":"","infoSlide":"","id":"YrJwPsFVhAJUL98ZqZUm"},{"round":"2","topic":{},"division":"","link":"","content":"TH supports private ownership of 3D printers.","language":"English","infoSlide":"","tournamentID":"7L67NrnE93IENW8OW03k","id":"YrWrLUoIJikjAtuF7o67"},{"language":"English","topic":{},"tournamentID":"nMUJTA4Krf9MyO7MGVzA","round":"1","link":"","content":"THW prohibit works of art that undermine/go against morality.","infoSlide":"","division":"","id":"Ys9syRZX0JdRyKZksC7M"},{"language":"English","tournamentID":"Wpv6iXJkIPUXYIkl0dST","division":"","link":"","round":"Grand Final","infoSlide":"","topic":{"fiction":{"title":"Fiction","check":true}},"content":"THP a world where the research, writing and teaching of history focuses on studying the lives of ordinary people as opposed to that of important leaders of society.","id":"YsLXilmCgB5sTwJde920"},{"tournamentID":"DLFJWaIyHnSlvFofovjc","topic":{},"content":"THW ban any religious influence on people below the age of 18.","link":"","language":"English","infoSlide":"","division":"","round":"3","id":"YtcsF5djJBmg78EskeSF"},{"language":"English","division":"","round":"1","infoSlide":"","content":"THBT websites such as Sci-Hub cause more harm than good.","topic":{},"tournamentID":"3XjkQ3xKYDnPNq07ZvXY","link":"","id":"YtkZVwKqrp7AXN0TOc4C"},{"division":"","round":"2","infoSlide":"","topic":{},"link":"","language":"English","content":"THBT football fans should boycott the 2022 world cup in Qatar.","tournamentID":"gDONpxWgr0bu13hZzxYr","id":"YtxDIhZyiBnVr506OKcO"},{"infoSlide":"","round":"","topic":{"others":{"title":"Others","check":true}},"link":"","tournamentID":"3B01KdqnCVzQEVjKcHiT","content":"Chúng tôi ủng hộ các nhóm giải phóng người da đen công nhận và sử dụng bạo lực như một chiến thuật.","language":"Vietnamese","division":"","id":"YuPj6Fqk7j2StPvRG4Af"},{"division":"","round":"4","topic":{},"tournamentID":"FvCiiwW1VYBNdYW8QTUA","language":"English","link":"","content":"THW replace \"real world\" prison incarceration with simulated incarceration, for people not sentenced to a life sentence.","infoSlide":"For the purposes of this debate, there exists a safe technology which can accurately simulate the experience of being in prison. A person within the simulation will experience the simulation as fully real, including time passing slowly as in \"real life\", while not interacting with others in the \"real world\". In reality, even a long sentence in the simulation will be done in a matter of days.","id":"YvGhelFHy8ytgCRtNiN6"},{"division":"","link":"","round":"5","content":"THBT African states should extend dual citizenship status to members of their diaspora, including the right to vote in elections, and right of return, as part of the AU's diaspora initiative.","infoSlide":"","language":"English","tournamentID":"3VTSywK012zU6GDLqZzC","topic":{},"id":"YvO72WXmyg3XRbbGglZa"},{"tournamentID":"FZTHJ19pUWQG2SZNeOvr","topic":{"environment":{"title":"Environment","check":true}},"division":"","link":"","content":"Chúng tôi tin rằng công cuộc chống biến đổi khí hậu nên bao gồm các gây các ảnh hưởng quốc tế lên các quốc gia đã cho phép hoặc thờ ơ với những hành động trực tiếp ảnh hưởng đến môi trường.","infoSlide":"Các ảnh hưởng quốc tế có thể kể đến bao gồm bị khai trừ khỏi các tổ chức quốc tế, cấm vận, can thiệp quân sự, v.v.","language":"Vietnamese","round":"","id":"YvoLmuWtgK090uzfIgTk"},{"division":"","tournamentID":"m2l0j7TwryKeK2YnXK9e","link":"","infoSlide":"","round":"5","language":"English","topic":{},"content":"TH supports the existence of sex and relationship sections in popular media.","id":"YwrJMTM5qhH1VrC6wQR1"},{"language":"English","infoSlide":"","link":"","content":"This House believes that language should, to the greatest extent possible, be stripped of gender references.","topic":{},"round":"1","tournamentID":"XBFpAL1r3TobjAN8vT20","division":"","id":"YxuMyI7dY0kHob3JBau3"},{"round":"Open_Finals","language":"English","division":"","link":"","content":"THBT the US should dissolve its military capabilities.","tournamentID":"c74XLjeeNJzVbzpMjGlo","infoSlide":"","topic":{},"id":"Yxucfkq8v3MVZILpwLWb"},{"division":"","topic":{},"infoSlide":"","language":"English","content":"TH, as NATO, W not offer assistance in case of the armed forces of Russia entering any of the Baltic states.","link":"","tournamentID":"QVxXxjR8GyCAclYLIVU9","round":"Open_Final","id":"Yy8mZCzc3TpEecxGCjLG"},{"language":"English","tournamentID":"0WQ7djfo2FawxEAC95E0","division":"","topic":{},"infoSlide":"","round":"4","content":"THW allow private companies to resort to openly discriminatory hiring practices.","link":"","id":"YyZ52N1hsCj1nP6P8cWa"},{"link":"","topic":{"sports":{"title":"Sports","check":true}},"content":"THR the emphasis on winning a medal in the Olympics as a core example of success.","infoSlide":"","division":"","round":"","tournamentID":"nALUKfkpmOnWnQCzecru","language":"English","id":"Z08AAhMsKs4DvhYyfeIb"},{"infoSlide":"","content":"THW abolish trial by jury.","language":"English","topic":{},"tournamentID":"980ImkvfswyUVd54XFQd","round":"1","division":"","link":"","id":"Z1Jon4Xap1xRfe6Ripkc"},{"link":"","tournamentID":"7zFzGfa6wAGs2h8bbVhq","division":"","topic":{},"round":"Open_Final","content":"THBT newly democratised Arab nations should not allow religious parties to run for office.","language":"English","infoSlide":"","id":"Z1Lyk4c6dmWJc0daWf5L"},{"language":"English","tournamentID":"KncW7pH1nDIom3xK89VG","topic":{"environment":{"check":true,"title":"Environment"}},"link":"","content":"THO the narrative that technological development (e.g. investing heavily in renewable energy, building sea walls) should be the primary approach to solving climate change.","round":"Octofinals","division":"","infoSlide":"","id":"Z1Qyuwl2TGCXQioGSbSY"},{"round":"3","content":"THBT a stable dictatorship is better than an unstable democracy.","link":"","division":"","tournamentID":"HXAIZhpnUdFYuB97wMF8","language":"English","infoSlide":"","topic":{},"id":"Z1RRxzp3EKsuOldOqrip"},{"tournamentID":"pEzcbhejynC2gAdvgw1f","link":"","round":"1","content":"THW impose gender and racial quotas in government cabinets.","division":"","infoSlide":"","topic":{},"language":"English","id":"Z3B3feCQV5LoClK5XNPr"},{"language":"Vietnamese","infoSlide":"","content":"Chúng tôi tin rằng giới trẻ nên theo đuổi lối sống tiêu dùng thay vì lối sống tiết kiệm.","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"tournamentID":"37eWQ7OoHqsPgaN53lHV","link":"","round":"","division":"","id":"Z3lM55Vd4LrAPFeZL0Ez"},{"link":"","division":"","infoSlide":"","topic":{},"tournamentID":"MgpFX31hoBasrUiOV7Eu","language":"English","content":"THO employer-provided benefits (e.g. health insurance, childcare, retirement investment accounts).","round":"7","id":"Z4GvEtOSTYSqlRGC9QTe"},{"language":"English","link":"","tournamentID":"yK2aesNii4f0c4vvqYng","infoSlide":"","division":"","round":"2","content":"THW remove all restrictions on sexual activities between mutually consenting adults.","topic":{},"id":"Z4ssgWKHNo18Jt6eJRmG"},{"content":"THBT a world without organized religion would be a better world.","topic":{},"infoSlide":"","link":"","language":"English","division":"","round":"2","tournamentID":"4yVRmMNHzHW12EVIlnyZ","id":"Z5RZqwGIP3gaKs8mFjlO"},{"tournamentID":"q7pvo4zkG31lg89ofmeq","round":"3","content":"THBT in areas of socio-economic deprivation, schools should train students in vocational skills to the exclusion of the liberal arts.","topic":{},"infoSlide":"","language":"English","link":"","division":"","id":"Z5SPq2DdhnnTJEUiOIL8"},{"infoSlide":"","round":"Open_Finals","tournamentID":"TAVBVNzO0c2PrQ44iAyC","link":"","topic":{},"division":"","content":"THBT private education institutions should facilitate student demands for spaces of protest to be kept free of media.","language":"English","id":"Z5xmwNuQvWQnpl0Lb2yH"},{"content":"THW condition development aid on the progress of human rights.","language":"English","link":"","tournamentID":"GN3wIECpidF8WB3WC2l0","topic":{},"round":"2","division":"","infoSlide":"","id":"Z6K04YCpDhTU274AcThx"},{"language":"English","topic":{},"tournamentID":"DIDaTQVu3sv4iXbqf3eE","content":"THBT policies regarding the teaching and use of language should be descriptive rather than prescriptive.","infoSlide":"","link":"","division":"","round":"ESL_Final","id":"Z7QLaQdVY9oOepbS5wu7"},{"language":"English","topic":{},"division":"","content":"THW ban rape pornography.","link":"","tournamentID":"BsGevifhMX1weZjFgh7y","infoSlide":"","round":"5","id":"Z81RgisekxSc3jBlVc7N"},{"round":"3","language":"English","content":"THW make any language which is spoken by at least 5% of the population an official state language and offer all state service in that language.","division":"","infoSlide":"","tournamentID":"eBlrzVaoBbfX5kbian3T","topic":{},"link":"","id":"Z9O7g0SEh2LNHDOpSq5d"},{"link":"","infoSlide":"","tournamentID":"LczIO0anMv6dKnbpRYYr","language":"English","topic":{},"division":"","content":"THBT the LGBT movement should not take a position on whether sexual preferences are a choice.","round":"Open_Finals","id":"Z9dZe0vBOhAud71DkLku"},{"topic":{},"content":"That individuals who breach COVID-19 lockdown requirements while unknowingly infectious should be liable for manslaughter for any resulting deaths.","round":"2","division":"","infoSlide":"","language":"English","link":"","tournamentID":"HjQJA65fZ9igHKO8DLAP","id":"ZAUZbC6E9qZrMB0kx4sK"},{"content":"THR the erosion of national sovereignty by large supranational bodies (eg the EU and the UN).","round":"2","link":"","division":"","tournamentID":"uES9ygXHa8tJuYB7dFEM","language":"English","topic":{},"infoSlide":"","id":"ZAfyVUMyz4G7FkbX7S6J"},{"division":"","language":"English","topic":{},"tournamentID":"uvPQBxEeKffyHUkLa5PV","infoSlide":"","round":"4","link":"","content":"THR the hook-up culture.","id":"ZB56b145PCUZTscQDkmJ"},{"division":"","round":"4","content":"Chúng tôi sẽ không ưu tiên việc phân phát vắc xin Covid 19 cho những người có hành vi ảnh hưởng đến sức khỏe cộng đồng (VD: trốn cách li, tuyên truyền những thông tin sai lệch về dịch bệnh, ...)","language":"Vietnamese","infoSlide":"","link":"","tournamentID":"OLVGf3rE3KKirerr2vyk","topic":{},"id":"ZBfvM4Xkhp2brsBZOYrj"},{"infoSlide":"","link":"","round":"Open_Final","division":"","topic":{},"content":"TH welcomes the rise of the far left in continental Europe (e.g. Syriza in Greece & Podemos in Spain).","tournamentID":"AKtcioaPMHcBM5C3fCCP","language":"English","id":"ZBmAhlJEm4M3eQXwJvx4"},{"topic":{},"round":"2","link":"","tournamentID":"BsGevifhMX1weZjFgh7y","division":"","content":"THW publicly flog the perpetrators of minor sexual misconduct such as harassment and eve teasing.","language":"English","infoSlide":"","id":"ZCBeK8wtzDAPUfz5MH9R"},{"language":"English","division":"","topic":{},"content":"THW ban its citizens from visiting illiberal states whose economies depend on tourism.","link":"","infoSlide":"","tournamentID":"q7pvo4zkG31lg89ofmeq","round":"EFL_Semis","id":"ZCbdhgvzMXuFDvgURqM3"},{"division":"","language":"English","link":"","topic":{},"infoSlide":"","tournamentID":"2C0TX71TRjIIOcsN7CbL","round":"6","content":"This House believes that prominent individuals outside politics (e.g. business leaders, philanthropists) from emerging market countries with mixed international reputations (e.g. China, India, Iran) should focus on emphasizing the positive aspects of their country, rather than the negative aspects, when speaking on an international platform.","id":"ZCmQOcpdenJi8eSdJelx"},{"tournamentID":"LlsxibXteGBGML9aitY2","division":"","topic":{"philosophy":{"check":true,"title":"Philosophy"}},"link":"","round":"","content":"Chúng tôi phản đối quan niệm rằng chúng ta nên đồng cảm.","infoSlide":"Đồng cảm là khả năng cảm nhận hoặc thấu hiểu những gì người khác đang trải qua.","language":"Vietnamese","id":"ZCoW9X5wQ1Hhs0Cxl7om"},{"language":"English","content":"THBT the world has become better through Facebook.","tournamentID":"JTOMyeCSk6IujHBgAOMi","infoSlide":"","division":"","round":"1","topic":{},"link":"","id":"ZDC42wF44rG7GBi6vcOu"},{"topic":{},"infoSlide":"","tournamentID":"6UClYEkoQLViAru2xei4","division":"","content":"This House believes that Tech Giants (e.g. Google, Amazon, Facebook) should NOT be permitted to sue for patent infringement.","link":"","language":"English","round":"Open_Final","id":"ZEPnK7IIjEzqyQWwRSHN"},{"link":"","infoSlide":"","division":"","round":"Open_Quarters","topic":{},"tournamentID":"tC9C0k05cAmtT3IBK2AV","language":"English","content":"THW prohibit all research aiming to create sentient artificial intelligences.","id":"ZGH67j2DetMXlDkzsjjO"},{"tournamentID":"JJmcUH5Gil0nuJObmDP8","topic":{},"link":"","division":"","content":"THBT feminist campaigns directed specifically at men are harmful to the feminist cause.","round":"4","language":"English","infoSlide":"","id":"ZHXz2eg8kqkaOmGkkV8b"},{"tournamentID":"VmS29bKnoZWYDeWGOc08","link":"","round":"1","language":"English","infoSlide":"","content":"Do we need mandatory voting?.","division":"","topic":{},"id":"ZIGjG4WIlKPoCA1WWsDh"},{"content":"That we would bail out airlines failing due to COVID-19.","infoSlide":"","division":"","tournamentID":"fkUHa28aVk8LYYEAdofu","topic":{},"link":"","round":"4","language":"English","id":"ZIgB9gH0Zi5B9e20u5S7"},{"tournamentID":"p3EOrIRx2qBcnN8fXbHh","round":"1","infoSlide":"","division":"","content":"THW abolish spousal privilege.","link":"","topic":{},"language":"English","id":"ZJIbEvtBrRX2RuzGmRSf"},{"round":"","link":"","tournamentID":"nALUKfkpmOnWnQCzecru","infoSlide":"","content":"Assuming feasibility, THP a world where a panel of church leaders would create a universally accepted interpretion of the Bible that the believers should abide by.","topic":{"religion":{"title":"Religion","check":true}},"language":"English","division":"","id":"ZJoGDTwCbCAmR2z2MJzT"},{"language":"English","round":"2","topic":{},"division":"","tournamentID":"ZQQO7Q0LBTeQnU1Rb8fK","infoSlide":"","content":"THW allow employers to offer a contract to their female employees giving up their right to become pregnant.","link":"","id":"ZKCGUjnTcfiinwwZxBTm"},{"division":"","topic":{},"content":"THR the institutions of marriage and civil partnership.","round":"ESL_Final","tournamentID":"QZvopTthxxEkyvHXmzp3","language":"English","infoSlide":"","link":"","id":"ZKIFFNwUux3V4IHXCQLa"},{"link":"","round":"4","language":"English","infoSlide":"","division":"","tournamentID":"nDjxmwMznw4ZJasK7Taj","content":"This House as the LGBTQIA Community Would Oppose Pornography.","topic":{},"id":"ZKNSijZQMmNjfeT056It"},{"language":"English","round":"2","tournamentID":"jGziThakECOfXgvs0uHl","content":"THW introduce trial by jury.","division":"","topic":{},"link":"","infoSlide":"","id":"ZKSSls1V6BvXxWP0mrme"},{"division":"","topic":{},"round":"Open_Final","infoSlide":"","language":"English","content":"THBT intelligence agencies should be allowed to monitor all people without their consent.","link":"","tournamentID":"DLFJWaIyHnSlvFofovjc","id":"ZKbwKw6FMjtbMSuPs4Ip"},{"infoSlide":"","link":"","tournamentID":"N8WiUFJpvPmLaaYYsbsD","topic":{},"round":"Open_Final","content":"Should corporate sponsorship of dangerous (life-threatening) sports and stunts?.","division":"","language":"English","id":"ZKp6BrYSm9r4HJih7lP3"},{"round":"3","division":"","content":"THW put Jeremy Deller's piece (of a bombed car) on the plinth ( on Trafalgar Square).","infoSlide":"","tournamentID":"JA7aghUhZy7G7yhivxxG","language":"English","topic":{},"link":"","id":"ZLNBkKoVNfERL0dDFg24"},{"tournamentID":"B2zJ5QeyI7MVcboS7m4U","division":"","topic":{},"language":"English","infoSlide":"","link":"","round":"ESL_Semis","content":"THB governments should actively discourage consumerist lifestyles.","id":"ZMNpSPrEq93Drped91if"},{"link":"","division":"","topic":{},"tournamentID":"jS13nU6Cack3rcPrnNZ5","language":"English","infoSlide":"","content":"THW introduce a maximum wage.","round":"Novice_Final","id":"ZMOWbUiSimOq0VwAjtmB"},{"infoSlide":"","tournamentID":"kaKFVFzhrgSOIPlruLU6","link":"","content":"THR the narrative that love should be unconditional.","language":"English","topic":{},"division":"","round":"Novice_Final","id":"ZMnWkVuBMXFnOSlMi4P5"},{"content":"THBT western media outlets should collectively decline to cover any ISIS actions primarily intended to attract western attention (e.g. Hostage takings/executions).","division":"","topic":{},"link":"","infoSlide":"","tournamentID":"zNyImaL5diiDsd93AVoW","round":"2","language":"English","id":"ZMrUn9IHXYZr3COuxrxw"},{"content":"THO the practice of selling the land-use-rights of previously-owned land, at discounted prices, to corporations to develop for residential and/or tourism purposes. (e.g. Ecopark, Vinhomes, etc.).","language":"English","topic":{},"division":"","link":"","infoSlide":"","tournamentID":"2gsOERqtXqSETJffXbnj","round":"3","id":"ZMu6HgjuvGVVdBXueAz8"},{"round":"3","link":"","infoSlide":"","division":"","language":"English","content":"This House believes that the West should impose an arms embargo on Saudi Arabia.","topic":{},"tournamentID":"db8a4cSMVYVFuxZgcf0y","id":"ZNXjdVeD1GLmnrU9LeDl"},{"topic":{},"content":"THW refuse American statehood to Puerto Rico.","tournamentID":"5dx9HmyPaBDPB6JstQGb","division":"","link":"","infoSlide":"","language":"English","round":"Open_Semis","id":"ZNgNWTau1j4GnrM6sGuo"},{"content":"THP a world where there is no belief in the afterlife.","division":"","link":"","infoSlide":"","tournamentID":"Z9FMqY7i0SmIcw5xUsUL","round":"Novice_Final","topic":{},"language":"English","id":"ZNhJvLOwLvEkfMnZTG5O"},{"tournamentID":"JJmcUH5Gil0nuJObmDP8","content":"THW offer full amnesty to any European citizen currently fighting on behalf of ISIL as long as they immediately return to Europe.","topic":{},"language":"English","division":"","link":"","infoSlide":"","round":"ESL_Final","id":"ZOTvGUmUDOBWzjJeRcNj"},{"tournamentID":"9JqIpRhRkA8gulRio4t9","language":"English","round":"5","topic":{},"division":"","link":"","infoSlide":"","content":"This House believes that developing countries should never commit to having their sovereign debt disputes settled by courts in foreign countries.","id":"ZOainBnrfMHbMN7YZ6el"},{"division":"","tournamentID":"DPlum9M6fh8xjiyYGBxO","language":"English","topic":{},"round":"1","link":"","infoSlide":"","content":"When paying teachers, THW take into account their students' academic performance.","id":"ZOp57soT23menhW8taKP"},{"language":"English","topic":{},"division":"","tournamentID":"jVtcrR58DYEPrz6PXM17","infoSlide":"","content":"This House believe that only people who take the law into their hands can save us.","link":"","round":"Open_Semis","id":"ZOqSaEPIUsoetImMfa5v"},{"topic":{},"link":"","tournamentID":"exPe8nnWDA3806gTTyfK","infoSlide":"","content":"TH, as a parent in a western liberal democracy, would teach its child to respect authority.","language":"English","round":"2","division":"","id":"ZPqrQNTpm71MjVV9ESuM"},{"tournamentID":"o60DawGVHvdGOC58c4vF","topic":{},"round":"2","content":"THW allow the homeless to seize long-term unoccupied properties.","language":"English","division":"","link":"","infoSlide":"","id":"ZQ4E48Hs76qQAGPfRs9Y"},{"tournamentID":"qoRL9POR1sxdsrdIdj6B","content":"THW make voting power depreciate with age.","link":"","language":"English","division":"","round":"1","topic":{},"infoSlide":"","id":"ZRglLw1SsIGvADgJZtwi"},{"topic":{},"language":"English","division":"","content":"THBT the UK should adopt a federal statehood structure which establishes regions and large counties as states.","link":"","round":"2","infoSlide":"","tournamentID":"dgRU54McMXqo1MXISAFt","id":"ZS4pBDQJmBEJvPlHdnQJ"},{"link":"","infoSlide":"","tournamentID":"qDUBTulIlHZP0un39LYK","topic":{},"round":"Open_Quarters","division":"","language":"English","content":"THW not tax \"bitcoin\" transactions.","id":"ZSpFIJxy9GxZ4I2JG34h"},{"content":"THBT the City of Thessaloniki should name one of its major avenues after Kemal Atatürk.","tournamentID":"U2WbXKmpxuh7OC6qZ1zX","language":"English","division":"","link":"","infoSlide":"","round":"Open_Semis","topic":{},"id":"ZSww8MydAVyEOUgKaDtl"},{"content":"Chúng tôi sẽ bắt các nhà lãnh đạo tôn giáo chịu trách nhiệm khi mà những tín đồ trưởng thành được xác định bị tổn hại khi tuân thủ giáo lý (VD: những người đồng tính chọn tham gia liệu pháp chuyển đổi, những nhân chứng Jehovah từ chối truyền máu).","link":"","round":"1","infoSlide":"","language":"Vietnamese","division":"","tournamentID":"3b2nSsxJIMIXNPKJTeQx","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"id":"ZT0sBLvFuUgCyYNZmnEb"},{"language":"English","round":"2","tournamentID":"FpzYvT6Prqbibn0xYvov","content":"THW establish and monitor centres for animal prostitution.","infoSlide":"","link":"","topic":{},"division":"","id":"ZTMJpEqmBROj8dEgFLiV"},{"language":"English","division":"","topic":{},"content":"THBT crimes committed by police officers should be punished more severely.","tournamentID":"xFs2K66Nme7uYTCMS6Vw","infoSlide":"","round":"3","link":"","id":"ZUCMIrOAHTnNQa6SFSIF"},{"infoSlide":"","language":"English","link":"","tournamentID":"xoiSW3hTToX15wvrD6gA","round":"3","content":"THBT trans legal advocates should seek to establish precedent that protects trans people under existing sex discrimination law, rather than pursuing anti-discrimination laws for trans communities.","division":"","topic":{},"id":"ZUX3Zjw2WIcQHBJDappM"},{"link":"","topic":{},"division":"","tournamentID":"jHRVS3aznjPPQaxWT8bs","language":"English","content":"THW, as Russia, offer all Western European millionaires a low tax asylum and full Citizenship in the Russian federation.","round":"4","infoSlide":"","id":"ZUaECkr8E2067uq0p4e2"},{"infoSlide":" \"Charter Cities\" are tracts of uninhabited land set aside by host nations that would be semi-autonomous and administered by a developing third-party government. Citizens of the host nation could move in and out as they so desire. In recent years, Honduras has explored the option of establishing a charter city administered by the Canadian government.","content":"This house supports the creation of charter cities in developing nations.","link":"","language":"English","tournamentID":"PGbz2bx1wifAEJU64jdo","division":"","topic":{},"round":"Open_Final","id":"ZV2MkqKoVZgtrDSl8Ffc"},{"language":"English","topic":{},"tournamentID":"44zszGOLcUfUSx7uRJTD","division":"","infoSlide":"","content":"THW award state funding for the arts through lottery.","link":"","round":"2","id":"ZVAsVbR12GBh0c6Y2oqe"},{"tournamentID":"pEzcbhejynC2gAdvgw1f","infoSlide":"","topic":{},"division":"","link":"","round":"4","language":"English","content":"THBT environmentalists should launch violent campaigns against major polluting companies.","id":"ZVhfa4vwS3jG6Y84E9L6"},{"topic":{},"content":"TH welcomes the increasing automation of labour.","link":"","tournamentID":"HcngLxXLU8ahxFRQkeYc","infoSlide":"","division":"","language":"English","round":"1","id":"ZWAGzBGyTybnU8YnvRsr"},{"link":"","infoSlide":"","content":"THS the monetisation of reproduction (e.g. sale of oocysts, commercial surrogacy).","language":"English","round":"Open_Semis","topic":{},"division":"","tournamentID":"xUGmMsj95M2w5CV6WYVA","id":"ZWKDL695G32ScJY2jOJn"},{"link":"","topic":{},"infoSlide":"","tournamentID":"ZvEJb11Ww6RpoVmg4QV3","content":"TH opposes slum tourism.","language":"English","round":"1","division":"","id":"ZWdPT5NgoGHgRh1zDEZE"},{"division":"","infoSlide":"Ấn Độ, Pakistan và Trung Quốc đang có tranh chấp về lãnh thổ của đơn vị liên bang cũ là Jammu và Kashmir (J&K). J&K là bang duy nhất ở Ấn Độ có đa số dân theo đạo Hồi và đã có một phong trào ly khai lâu đời ở bang này. Chính phủ Ấn Độ đã liên tục đáp trả điều này bằng các cuộc đàn áp quân sự tàn bạo. Trước đây, J&K được hưởng một 'chế độ đặc biệt'. Họ có một hiến pháp, lá cờ riêng và quyền tự trị trong việc quản lý nội bộ của bang. Chỉ những công dân thường trú được chỉ định của J&K mới có thể sở hữu tài sản, làm việc trong chính phủ của bang, nhận được học bổng của chính phủ, v.v. Vào cuối năm 2019, Chính phủ Ấn Độ đã đặt lệnh giam giữ tại nhà một số các nhà lãnh đạo chính trị lớn, thu hồi 'chế độ đặc biệt' và chia bang này thành hai vùng lãnh thổ mà Chính phủ Ấn Độ có toàn quyền kiểm soát trực tiếp. Những người không phải người Kashmir hiện có thể mua đất và sở hữu tài sản, tiếp cận các vị trí trong chính phủ, v.v., chấm dứt hiệu quả mọi biện pháp bảo vệ đặc biệt dành cho người Kashmir.","language":"Vietnamese","topic":{"irw":{"check":true,"title":"International Relations/War"}},"content":"Chúng tôi tin rằng các nước phương Tây nên rút hợp tác quân sự khỏi Ấn Độ cho đến khi họ khôi phục các đặc quyền đặc biệt cho người Kashmir trong khu vực J&K. ","round":"Quarterfinals - Motion 1","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","link":"","id":"ZWgaKFhx9mzSkMYRXOSl"},{"infoSlide":"","link":"","division":"","language":"English","tournamentID":"NHUypnZQCfkPD98j8TYR","topic":{},"content":"The year is 2018. This house, as Imran Khan, would rather lose the election than side with the Establishment.","round":"6","id":"ZWvmDo5TuO7omXD99qDM"},{"infoSlide":"","topic":{},"round":"2","content":"THR the Valorisation of the 1916 Rising.","link":"","tournamentID":"Aic5TDtU01Sp43Neh8N2","language":"English","division":"","id":"ZXFfzRYGaSeTK2zdh98g"},{"language":"English","content":"Dutch mayors should be elected.","infoSlide":"","round":"3","link":"","division":"","topic":{},"tournamentID":"xLHei5vZFgpmhHOsyDv6","id":"ZXSc7RH8G7mY7Dqs2i4D"},{"division":"","content":"This House Believes That 10 Minute School should remove the videos.","link":"","infoSlide":"","topic":{},"tournamentID":"YF6iuqxO6eUISnAz4iMp","round":"6","language":"English","id":"ZXrr0lvekkM2uIrfY85t"},{"topic":{},"infoSlide":"","tournamentID":"h373wn3dFw9UcWDcJpyy","link":"","round":"2.2","language":"English","division":"","content":"We should prosecute homegrown Jihadis.","id":"ZYrbRVS9tXNyDrNuVdrh"},{"content":"This House would replace human judgment with computer algorithms in criminal sentencing decisions.","language":"English","link":"","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"round":"3","infoSlide":"","division":"","id":"ZZM7FFUmoqaYBSdPT7dG"},{"content":"THBT the media should show the full horrors of war.","language":"English","topic":{},"tournamentID":"PFH5XRScthpwd2dxC2T5","round":"1","infoSlide":"","division":"","link":"","id":"ZZmiA3P9qwLW02zSgjZs"},{"link":"","language":"English","infoSlide":"","content":"That as established feminist artists, we should systematically produce art and media that actively ridicules heroic masculine archetypes.","round":"Open_Octa","division":"","topic":{},"tournamentID":"oaIuwyOX7NBIwaiSaVJ8","id":"ZaAtqkspx6KC5XAiTutr"},{"topic":{},"infoSlide":"","content":"THBT the age of digital information (e.g. social media, online news, etc.) has done more harm than good in protecting democracy.","round":"1","link":"","tournamentID":"Pr7RhJp1TWbTZsqRvQt4","language":"English","division":"","id":"ZabauC97InfaEQqdSk9D"},{"division":"","link":"","topic":{},"content":"This house believes that international sporting events, such as the Olympics or Football World Cup, should not be held in countries with poor human rights records.","language":"English","tournamentID":"xDjVbl80WAVFcLqsVPo5","round":"3","infoSlide":"","id":"Zb5PJaubfgt9HX1HS6ap"},{"infoSlide":"","round":"Open_Quarters","link":"","content":"This House Opposes cancel culture.","language":"English","division":"","topic":{},"tournamentID":"a6rNMpZKAK9f2nCSkXu1","id":"ZbYGtnJOuwP9vFCeDgTU"},{"tournamentID":"nXN2yUG7soxwCp4xidzj","language":"English","infoSlide":"","division":"","content":"This house, as the GOP establishment, would prevent Donald Trump from receiving the nomination in a contested convention even if he receives the largest share of delegates - Round 8.","topic":{},"round":"8","link":"","id":"ZbyKj4J8Fg5qedefnjlm"},{"division":"","topic":{},"round":"1","content":"THBT the salaries and the continuation of employment of teachers should be dependent on the academic performance of their students.","language":"English","tournamentID":"98I1jSQnLhtFnsr8fu0R","link":"","infoSlide":"","id":"Zcf4cZnUDsRm5BTu6BwE"},{"content":"THW take away essential service givers' (such as policemen, firemen and doctors) right to strike.","tournamentID":"lleJhm2ki2Ixm97fXI7b","language":"English","division":"","topic":{},"round":"2","link":"","infoSlide":"","id":"ZcsdZaxW1plLzSRroFpJ"},{"language":"English","round":"6","division":"","content":"THW end all censorship apart from age restrictions.","topic":{},"tournamentID":"5O13410pDrHfcvKnpppR","infoSlide":"","link":"","id":"ZdP9del6eAFXaaVwy4jp"},{"topic":{},"content":"THBT governments with racially diverse populations should never record the ethnic or racial background of their residents.","infoSlide":"","round":"4","division":"","language":"English","link":"","tournamentID":"92dIEXeOXUVvlcFeGCIr","id":"ZdTxXBz4BmpMXnKfloVC"},{"topic":{},"division":"","round":"1","infoSlide":"","content":"TH opposes the portrayal of criminal lifestyles as “cool” in popular entertainment (e.g. Narcos, Breaking Bad, Scarface).","link":"","tournamentID":"o85wPSMfUIKlsHQtkpnr","language":"English","id":"ZeR0mZOIh8APib53Z11m"},{"division":"","topic":{},"round":"5","content":"THW ban treatments that claim to cure homosexuality.","infoSlide":"","link":"","tournamentID":"xFs2K66Nme7uYTCMS6Vw","language":"English","id":"ZezlRWv7y07zPpwXovEH"},{"link":"","round":"3","topic":{},"content":"This House Regrets the feminist movement's devaluation of traditionally feminine roles.","language":"English","infoSlide":"","division":"","tournamentID":"pgslzxqwnT5Ei6UMGh69","id":"ZfCymYDpTyoG6wErlFkM"},{"language":"English","infoSlide":"","tournamentID":"9JqIpRhRkA8gulRio4t9","link":"","division":"","round":"Novice_Final","topic":{},"content":"This House believes that the horrors of history are incompatible with a belief in a Judeo-Christian God.","id":"ZfGXWwEQQX3Owgnh2JRv"},{"infoSlide":"","round":"3","content":"THR the rise of comedy shows with journalistic content as a prominent news source (e.g. John Oliver, Stephen Colbert, Trevor Noah, Samantha Bee)","division":"","tournamentID":"mxxjZaa0262HoUjjXfj8","link":"","language":"English","topic":{},"id":"ZhKJgZjbv6Uzmf4TEAmQ"},{"link":"","topic":{},"language":"English","tournamentID":"fIr3uLdOpGeGuZzpnEMf","content":"THW teach children to question authority, even if it undermines discipline in the classroom.","round":"Open_Semis","infoSlide":"","division":"","id":"ZhT9ouaoevRhAOegQ1bB"},{"language":"English","link":"","content":"Dutch athletes should boycott the Sochi Winter Olympics.","infoSlide":"","tournamentID":"y6twZcPBW4VtQsAZQ3Mw","division":"","round":"Open_Semi_2","topic":{},"id":"Zht8yJ8vQyQE0H70xtng"},{"topic":{},"division":"","content":"THBT Islamic Authorities in South East Asia should issue a fatwa declaring Wahhabism to be un-Islamic.","link":"","infoSlide":"","tournamentID":"djnlK5jZ2kM6hDrC6E9d","language":"English","round":"5","id":"Zi2qeuQPXR2q0JTJ51dM"},{"language":"English","round":"5","topic":{},"infoSlide":"","link":"","division":"","content":"THW in this religiously conservative society actively engage in religious activities and events (attend worshop ceremonies, share blessings, say prayers).","tournamentID":"rTasJ7TWWuEMSXmebOaC","id":"ZigXjcSIX6AeAQMh6W1h"},{"infoSlide":"","topic":{},"link":"","division":"","tournamentID":"GfEZYNzXPpqDU3CX6qxi","language":"English","round":"1","content":"THBT it is morally wrong for companies to base hiring/firing/promotion decisions on info taken from social networking sites.","id":"ZiwCEVdbE7ibA9Jwqlr7"},{"division":"","language":"English","link":"","round":"Open_Final","topic":{},"tournamentID":"rdyGzmsfHNjLJBTBIlbG","content":"Should the West cut all economic ties with Russia as long as it occupies Crimea?.","infoSlide":"","id":"ZjNXMRsTx3nf3Tu57AWu"},{"topic":{},"language":"English","division":"","content":"In cities with scarce housing availability THW reallocate funds intended for building or subsidizing affordable housing to providing the means for those in need to relocate to different cities with lower costs of living.","round":"2","tournamentID":"s6w7WZApDWnBBmzeKY4h","link":"","infoSlide":"","id":"ZjTsl1YIHXPtVOfq21lh"},{"language":"English","round":"4","infoSlide":"","division":"","tournamentID":"Biz1VRjjdg8eWbm4NJr3","link":"","topic":{},"content":"This house believes that central banks should set limits on government spending.","id":"ZkSAOxDtRVeCJB66zM6b"},{"language":"English","infoSlide":"","round":"5","link":"","tournamentID":"y6YpD63Uuk3t3fbBC7Tk","division":"","content":"THBT the West should support the Russian-backed Syrian peace talks.","topic":{},"id":"ZkrFiY6s5weVijWDdkDN"},{"infoSlide":"","language":"English","tournamentID":"i4XbygF4ZWUtQg8NFKqw","link":"","content":"TH Prefers a Multipolar World To US Hegemony.","round":"Open_Semis","topic":{},"division":"","id":"ZlRZxX55UssyFFKVPhWN"},{"round":"1","division":"","topic":{},"infoSlide":"","content":"TH condemns the actions of Edward Snowden.","link":"","tournamentID":"aOxBzmkAGXikdnjOD33g","language":"English","id":"Zlequr9TRm7b9qKlxCWn"},{"tournamentID":"jDG8reClMB02DIxLR5LL","topic":{},"content":"THP a world in which religious leaders (Priests, Imams, Rabbis etc.) are not seen as having a deeper connection with religious deities (ex: God or Allah) than regular members of the faithful.","round":"4","division":"","language":"English","infoSlide":"","link":"","id":"ZlhJUpL8GW9y567uVNxS"},{"language":"English","round":"1","tournamentID":"DSFg77BvC9y4FK5pBVIv","content":"THBT we live in a mediaocracy.","infoSlide":"","link":"","division":"","topic":{},"id":"Zm1stJnLJtX32yXcwUW8"},{"topic":{},"tournamentID":"5SXUtPGKmOtgXxWouFAs","division":"","link":"","content":"THBT progressive activists in conservative societies should aggressively adopt conservative language/rhetoric in advocating for their agenda.","language":"English","infoSlide":"","round":"Novice Semifinals","id":"ZmiWztL8xb7B0ktsJzjo"},{"tournamentID":"7bjgBH4vUAY8LwONR9i6","language":"English","infoSlide":"","topic":{},"round":"1","content":"THW ban religious or faith-based rehabilitation programmes in prison.","division":"","link":"","id":"ZmmlUxRluus308QxM2ts"},{"link":"","tournamentID":"4ptLj1Lmq40xJg12oRVd","infoSlide":"","language":"English","topic":{},"round":"Open_Final","division":"","content":"THBT revolution is inevitable.","id":"Zns9svLl9ehB8AgEHneN"},{"infoSlide":"","tournamentID":"gDONpxWgr0bu13hZzxYr","round":"1","content":"THW legalise the buying and selling of sexual services.","division":"","language":"English","link":"","topic":{},"id":"ZoCNclJOEsems3XUGvoP"},{"tournamentID":"3B01KdqnCVzQEVjKcHiT","round":"","content":"THBT government's act of emphasizing the detrimental effects of social problems in order to introduce policies not widespread approved but thought to be beneficial to national defense is justified.","link":"","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"infoSlide":"","division":"","language":"English","id":"ZoIa1jEZcBqxZJ5tS6MI"},{"infoSlide":"","link":"","tournamentID":"oVagPVQLXErhZIkOTqQn","division":"","topic":{},"content":"TH, as the West, would cooperate with Russia in its military intervention in Syria.","round":"4","language":"English","id":"Zq4kfg4CAi3XBtYEwHx4"},{"topic":{},"tournamentID":"2puDg94cQDrpdSauuA78","link":"","round":"Open_Final","content":"TH would prefer a monocultural society over a multicultural society.","language":"English","infoSlide":"","division":"","id":"ZqHB8ud93CHBXoPHr8U1"},{"infoSlide":"The Central Asian Union (CAU) was a tentative agreement to establish greater regional cooperation among Kazakhstan, Kyrgyzstan, Tajikistan, and Uzbekistan following the dissolution of the USSR. This included a collective peacekeeping force, closer economic integration (e.g. negotiating as a bloc in international trade agreements, a proposed common currency), and coordinating on foreign policy. The CAU was never fully realized.","language":"English","content":"THBT it is in the interests of the four central Asian states to establish the CAU.","link":"","round":"2","topic":{},"division":"","tournamentID":"PGbz2bx1wifAEJU64jdo","id":"Zqnod0DSt9GM8CDOwhbx"},{"round":"3","infoSlide":"","division":"","link":"","tournamentID":"RautsrmlhwL2BBMyTRVG","topic":{},"language":"English","content":"THBT the LGBT movement should oppose gay bars that ban entrance to straight customers.","id":"ZrRRoU86JUffmhM9wRSF"},{"infoSlide":"","division":"","topic":{},"round":"4","link":"","content":"THW ban religious proselytising and faith-based rehabilitation programmes in prisons.","tournamentID":"QV74kB5iA6iDiqLCNz2F","language":"English","id":"ZrTCjxQBq3CBklMW25YR"},{"content":"Chúng tôi phản đối quan niệm “Lấy người yêu mình thay vì lấy người mình yêu”.","language":"Vietnamese","link":"","division":"","tournamentID":"u39lMiqXE91heMDxEgQe","topic":{},"round":"1","infoSlide":"","id":"ZsIJkYnjYMZYTbBynYJT"},{"link":"","topic":{},"round":"Open_Quarters","tournamentID":"o85wPSMfUIKlsHQtkpnr","language":"English","infoSlide":"","division":"","content":"THP a world in which this machine exists.","id":"ZsctxROVUvXS6Q6a4IZ5"},{"topic":{},"tournamentID":"PGbz2bx1wifAEJU64jdo","content":"This house would become a scientist.","round":"5","link":"","infoSlide":"You are a citizen in a state that issues a mandatory aptitude test. You are not required to pursue a career based on the results of the test. You scored the highest in your country on math and science, you are predicted to be one of the best scientists of your generation. You are also a very talented artist. Your true passion lies in art.","language":"English","division":"","id":"ZsjquUFExfY78o3rmosp"},{"language":"English","topic":{},"infoSlide":"","tournamentID":"1V1INGo8OX49g8hUFTF3","division":"","round":"3","link":"","content":"THW forcibly settle the Roma.","id":"ZsnFjbn7tfA8srMd7V4g"},{"division":"","topic":{},"language":"English","content":"THR the rise of T-10 cricket.","infoSlide":"","round":"3","tournamentID":"ubSWFCyfoCllO0KSjdjy","link":"","id":"ZsqdOLsWIwEMaC95tdgO"},{"round":"4","division":"","language":"English","link":"","infoSlide":"","topic":{},"content":"TH welcomes the downfall of global capitalism.","tournamentID":"4ENxr34b5j7GiIcVWnv9","id":"ZtR7zVNszRZL5HFmQaIo"},{"language":"English","link":"","tournamentID":"a40eH2E5w4GGnWQ3oDT6","division":"","round":"2","infoSlide":"","content":"THBT all international peacekeeping operations in Africa should be carried out solely by African troops.","topic":{},"id":"ZtXiOrVFRLCye1nbIogO"},{"language":"English","link":"","infoSlide":"","round":"Novice_Semis","tournamentID":"8DernPpRwzBf2YIkESEX","division":"","content":"THR the celebration of soldiers as heroes.","topic":{},"id":"ZtfLhlnhwWrHuwakAanO"},{"link":"","topic":{},"infoSlide":"","division":"","language":"English","round":"Open_Semis","content":"THBT Germany should renew the ban on the publication of Mein Kampf.","tournamentID":"LczIO0anMv6dKnbpRYYr","id":"ZuAqwH2R1OLlKgHIHBin"},{"topic":{},"round":"1","language":"English","link":"","tournamentID":"exPe8nnWDA3806gTTyfK","division":"","content":"THBT in areas where there is a high level of drug-related crime, that laws surrounding the sale and use of drugs should not be enforced.","infoSlide":"","id":"ZuvMNP76miP3mAQZbg7c"},{"tournamentID":"C1d7IlBx1VcZ4eBTl6cr","round":"3","language":"English","content":"THW subsidise sex workers visits for severely handicapped persons.","topic":{},"link":"","division":"","infoSlide":"","id":"ZxWp5PufpTxf8yJv3mCw"},{"content":"Given that private gun ownership is legal, THS the existence of women's gun rights organizations.","topic":{},"infoSlide":"","link":"","language":"English","division":"","tournamentID":"WnH3YWwA4xB4HPfqIqea","round":"4","id":"Zy6C8ABx4lYgcgU4z11o"},{"infoSlide":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","division":"","topic":{"publicHealth":{"check":true,"title":"Public Health"}},"content":"THW prohibit those who obstruct the Covid-19 anti-epidemic efforts (spreading false information, intentionally making a false medical report, deliberately spreading the virus on a large scale) from being vaccinated.","round":"","link":"","language":"English","id":"ZyAZkYkyd4S1bW9hX2mj"},{"round":"2","language":"English","tournamentID":"pQSBc1H8lG2P8ftbCWZ8","division":"","link":"","topic":{},"content":"This House believes that the music press should publish unrepresentatively negative reviews of the music of artists whose conduct they view as reprehensible.","infoSlide":"","id":"Zyvg4aLQnrWxTMGzxkjr"},{"infoSlide":"","link":"","tournamentID":"zppT86F7lAE0Gpp7tWYo","round":"B4","content":"THW sooner befriend an evil genius than a dull hero.","topic":{},"language":"English","division":"","id":"Zz6mjSrPZAIZTafmXn4M"},{"topic":{},"language":"English","division":"","tournamentID":"92dIEXeOXUVvlcFeGCIr","infoSlide":"","link":"","round":"Open_Octos","content":"TH would nationalize all systemically important financial institutions, such as banks and insurance companies.","id":"ZzCgB3t9gelBCKx6FnQ0"},{"language":"English","topic":{},"infoSlide":"","round":"Open_Final","link":"","division":"","content":"THW melt the polar ice caps if it gave drought-stricken countries drinking water.","tournamentID":"GN3wIECpidF8WB3WC2l0","id":"ZzdupA8mMQg10JUynZVD"},{"content":"THBT cartographical asymmetries should be resolved using mechanisms of local referendums of bonafide residents.","infoSlide":"","division":"","tournamentID":"mf3XudZleydnsr0lEvkg","round":"5","topic":{},"link":"","language":"English","id":"ZzmUdtiEMOivDorrCD3u"},{"link":"","tournamentID":"IliTD9CbISxS4XPApnIH","content":"THR the rise of internet piracy.","language":"English","round":"2","infoSlide":"","division":"","topic":{},"id":"a07qeAkKL6sWRpAFHdUh"},{"round":"Semifinals","language":"English","link":"","infoSlide":"The progressive media are socially liberal and open to inclusion of migrants into society. Examples include: The Guardian, The Huffpost, etc.","division":"","content":"THBT progressive media should focus on “success stories” of immigrants, rather than instances of their exclusion, suffering, or vulnerabilities.","topic":{},"tournamentID":"mxxjZaa0262HoUjjXfj8","id":"a0YE9XsIGD5ctilJjbDn"},{"language":"English","round":"Open_Final","tournamentID":"aT0uKXAE6J8EslDVKzO1","link":"","topic":{},"content":"In the case where human space exploration efforts locate an inhabitable planet, THBT the settlers of that planet should construct a society without private property.","infoSlide":"","division":"","id":"a1BMFnSs7hDXSiYBBm28"},{"tournamentID":"KpispxU2MtVt41R9j5bV","content":"THW greatly reduce economic prosperity, progress and growth in favour of increasing individual’s leisure time.","language":"English","round":"3","infoSlide":"","link":"","division":"","topic":{},"id":"a1yMoi8vZkm6fUGBo7nk"},{"link":"","division":"","language":"English","content":"This house regrets the eastward expansion of the European Union during and since 2004.","infoSlide":"","round":"2","tournamentID":"DFNWZhapl7SHDFBrFsMi","topic":{},"id":"a202iEbvAfT4jgYVCiIW"},{"topic":{},"language":"English","content":"THW allow companies to buy the rights to govern economically failing cities.","infoSlide":"","link":"","tournamentID":"3XjkQ3xKYDnPNq07ZvXY","division":"","round":"2","id":"a2mEJaHXJ9dG1IakVUMq"},{"tournamentID":"MSkvKRc0Dq8mooTLp6T8","link":"","division":"","infoSlide":"","content":"THBT First Ladies/Gentlemen should not publicly advocate for policies or political positions during their partner's term in office.","language":"English","round":"2","topic":{},"id":"a2sXbwgpmoLYvu67L9Tn"},{"content":"This House would allow members of the armed forces to form labour unions.","division":"","link":"","infoSlide":"","round":"2","tournamentID":"t1jiRXU99xeGdoIkTeyF","language":"English","topic":{},"id":"a2x2GQGFknxarP9RvBLZ"},{"topic":{},"language":"English","round":"5","division":"","tournamentID":"Nzien6R9RXvOTrNMJsza","infoSlide":"","content":"THP a world in which individuals did not feel strong emotions.","link":"","id":"a3YUOakjQU2bvuWIkI2r"},{"content":"THBT feminist movement should praise the decline in childbirth rates.","topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"round":"3","language":"English","infoSlide":"","tournamentID":"sgcqNV5ntCoa4H8glRBu","link":"","division":"","id":"a4DdyjCO2fcJvSPNG8OD"},{"infoSlide":"","round":"3","division":"","language":"English","content":"THBT social movements should not adopt works of art as symbols where the artist does not identify with that movement (e.g. the feminist movement adopting the close-up of flowers painted by Georgia O’Keeffee believing the paintings to be sexual depictions of female anatomy; the adoption of the horror fim the Babadook by the queer rights movement).","topic":{},"tournamentID":"tKXlShZl2vec49jC1bif","link":"","id":"a4yB6VtRM2FOoxQhAZK6"},{"link":"","division":"","tournamentID":"C1d7IlBx1VcZ4eBTl6cr","infoSlide":"","round":"Open_Semis","language":"English","topic":{},"content":"As a homosexual person in a very homophobic country, THW emigrate.","id":"a6miPu8dQVGuW13P1v7A"},{"infoSlide":"","language":"English","division":"","link":"","topic":{},"content":"THW Implement the Prime Directive.","round":"Open_Semis","tournamentID":"CIIwPxm7lqd3hGr5g8JP","id":"a6qgduPW0K8FvCvfZtE1"},{"round":"","infoSlide":"","link":"","tournamentID":"CJKUeBIUibEtZYahoUQV","division":"","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"language":"Vietnamese","content":"Chúng tôi phản đối việc công khai danh tính người nhiễm COVID-19.","id":"a6rqsRm5kQqnJeBub1k6"},{"link":"","infoSlide":"","content":"This house would prefer a world in which we never found out that Joseph Boyden has no Indigenous heritage.","language":"English","topic":{},"tournamentID":"qvnbu5KYCFZ7nM9hTZ2E","round":"Open_Semis","division":"","id":"a7u4fYbsl1hNxv91AOkv"},{"content":"THBT the state should approve all loans.","division":"","infoSlide":"","topic":{},"language":"English","tournamentID":"1V1INGo8OX49g8hUFTF3","link":"","round":"Open_Semis","id":"a87lNLKsCjCMAwFCgGpG"},{"tournamentID":"kReIJGsf14VAB0aHbDhJ","link":"","topic":{},"round":"4","content":"TH, as Turkey, would heavily align its foreign policy agenda towards Russia.","language":"English","division":"","infoSlide":"","id":"a8CqBLtUC9KyKPEAssZM"},{"infoSlide":"","language":"English","content":"THW Retrospectively Remove Amnesties Granted to Those Who Committed Crimes As Part of Oppressive Regimes.","division":"","tournamentID":"IpWyfCcksctR86jKX66g","topic":{},"round":"ESL_Final","link":"","id":"a8PL46dPUslJmZ6GYplF"},{"link":"","topic":{},"division":"","content":"THS austerity.","round":"4","language":"English","infoSlide":"","tournamentID":"yIBeLUbSZELobFcw30WY","id":"a92ELE2mETctCsFtxqWw"},{"infoSlide":"","language":"English","round":"","link":"","content":"THBT it is justified for women to lie about their relationship status and future plans during job interviews.","topic":{"hr":{"title":"Human Relationships","check":true}},"division":"","tournamentID":"LlsxibXteGBGML9aitY2","id":"a9VslPnUjBuze5MzrBQZ"},{"link":"","topic":{"irw":{"title":"International Relations/War","check":true}},"division":"","content":"Chúng tôi hối tiếc sự kiện Mùa xuân Ả Rập.","round":"","infoSlide":"","language":"Vietnamese","tournamentID":"1qq9g2ApB8UdvPr2ewx1","id":"aATnruBiRkNyDD23GAbp"},{"division":"","link":"","tournamentID":"wn4DAqBcGTWBviyQc0CR","infoSlide":"","language":"English","content":"THW set up an online voting system for citizens to directly choose the distribution of a specified portion of the national budget.","round":"3","topic":{},"id":"aAqbEprAJuIyiqy6AzHJ"},{"link":"","content":"THBT it is in the interest of womens' rights groups to adopt violent female goddesses as prominent symbols in patriarchal societies.","tournamentID":"C09YJyBGrNu3L4IxdHCw","infoSlide":"Violent goddesses are goddesses who represent liberation through force, violence, aggression and power. An example of a violent female goddess is Kali, often portrayed wearing a garland of skulls of the men she has killed around her neck and standing on her lover, the Hindu God Shiva, who lies calm and submissive beneath her.","round":"Pre Semifinals","division":"","language":"English","topic":{},"id":"aB5IU0ABH9wZQ8p65gn1"},{"topic":{},"infoSlide":"","content":"THBT the Scottish Government should allow England to vote in the referendum on Scottish Independence.","tournamentID":"XKnRXbL5iWiOHmPMcGVz","language":"English","round":"Open_Final","division":"","link":"","id":"aBqE9kQC0gaEu5AxJ7Dv"},{"content":"THBT schools should attempt to indoctrinate school children with the belief that they are personally culpable for death, poverty and abject misery in the developing world.","language":"English","round":"4","division":"","topic":{},"infoSlide":"","link":"","tournamentID":"YWYo651ohahlD6OyzCXj","id":"aBxtC7Ky0yotFkX34Idj"},{"content":"Chúng tôi tin rằng các nước phương Tây nên tích cực hỗ trợ cho hoạt động của các tập đoàn đa quốc gia tại các nước Châu Phi để đối đầu với chiến lược “Vành đai - Con đường” của Trung Quốc trong khu vực.","link":"","round":"3","division":"","language":"Vietnamese","infoSlide":"","topic":{},"tournamentID":"JaZQ7l5B4R6smBKTdFQJ","id":"aCMeF5WsgZ4D8lxhUUp3"},{"division":"","round":"2","language":"English","tournamentID":"xFs2K66Nme7uYTCMS6Vw","content":"THW not participate in international sporting events held in countries that abuse human rights.","link":"","infoSlide":"","topic":{},"id":"aCNpPmS4g5R4wtEwj0iB"},{"tournamentID":"VT7J9JrIu3vEI0gMHsS2","infoSlide":"","round":"Open_Semi_3","language":"English","topic":{},"division":"","link":"","content":"THBT the Constitution of Ireland has served the country well.","id":"aCaFahDDkaOJQ5wNCjUd"},{"content":"THBT the state has a duty to provide free, unlimited and uncensored access to the Internet at every home.","division":"","language":"English","link":"","round":"2","topic":{},"infoSlide":"","tournamentID":"wYsVMTqiPYP1HFjzExu2","id":"aCwCFEUoQnd4t8Y4KczS"},{"tournamentID":"KErVXbqRahyWD7ZB1Q1m","link":"","round":"4","topic":{},"content":"TH welcomes the advent of emerging genetic enhancements on the human body.","infoSlide":"","language":"English","division":"","id":"aDAMsmKDkjazgywxkpOA"},{"tournamentID":"683xp6VC99fyKWXfWS9H","content":"THBT national policies that may have significant environmental consequences should be subject to a veto by a national level appointed panel of scientific experts.","topic":{},"language":"English","division":"","infoSlide":"","link":"","round":"2","id":"aDPgvmiZnhcfkDDd0OtJ"},{"division":"","tournamentID":"nALUKfkpmOnWnQCzecru","link":"","round":"","infoSlide":"","topic":{"politics":{"check":true,"title":"Politics"}},"language":"Vietnamese","content":"Chúng tôi sẽ cho thế hệ trẻ thêm phiếu bầu cử.","id":"aEG5wrw7Xi3rZ7RSW4cL"},{"round":"5","content":"THB that Western states should engage in covert cyber-attacks against infrastructure designed to limit freedom of speech* in authoritarian states. *e.g., the Great Firewall of China.","division":"","topic":{},"infoSlide":"","tournamentID":"7DiEtR3YNKR69fHccj5Y","language":"English","link":"","id":"aFZkeIvhrx2h8tlffZgu"},{"infoSlide":"","tournamentID":"bvHOR7Oow9PPlKPlA2BT","topic":{},"link":"","division":"","round":"2.1","language":"English","content":"THW remove the image of Mohammed from the US surpreme court building.","id":"aFlkxqSJ6vqZeLmZPthg"},{"language":"English","round":"Masters_1","infoSlide":"","topic":{},"tournamentID":"VPUCPVj9FHFW0uzJinv0","link":"","content":"This house would designate one city to permanently host the Olympics.","division":"","id":"aFwCRnxELdGJEc3s5zH2"},{"tournamentID":"c74XLjeeNJzVbzpMjGlo","infoSlide":"","round":"Open_Semis","link":"","language":"English","division":"","topic":{},"content":"THBT identity-based social movements should not include in their movements allies who are not part of the identity group in question.","id":"aHpW3TmAfkKw3cRWFPnF"},{"link":"","content":"THBT all corporations should become cooperatives owned and operated by the workers.","language":"English","division":"","tournamentID":"qDUBTulIlHZP0un39LYK","round":"5","topic":{},"infoSlide":"","id":"aI9UcCAPaeDj4amjLXdq"},{"link":"","language":"Vietnamese","topic":{},"infoSlide":"","content":"Chúng tôi phản đối hình tượng siêu anh hùng trẻ em.","round":"Quarterfinals","division":"","tournamentID":"mkrRVvz5EWSZie6LBtCH","id":"aJ1tPrsUDhSUNor9lViC"},{"round":"1","infoSlide":"","topic":{},"tournamentID":"6j3LrbKUgx9arVygXUjf","content":"THP a world without state-funded news organizations (e.g. BBC, AlJazeera, China Xinuan News, Russia Today (RT), etc.).","language":"English","division":"","link":"","id":"aKIIe9f5z6bNH6P8UkAx"},{"link":"","tournamentID":"9MaCpfb2p23wkk8OOSBf","language":"English","division":"","content":"THR the widespread use of war-like terminology by world leaders in combating the COVID-19 pandemic.","topic":{},"round":"Open_Final","infoSlide":"","id":"aKIznmlxsBrTzJyP2dwo"},{"tournamentID":"3um2E0WAP1AdkOXCUDfL","language":"English","round":"3","division":"","infoSlide":"","link":"","content":"Should the morning after pill be available without doctor’s recipe?.","topic":{},"id":"aKgysCoT0l9Tmz3JNSJ3"},{"tournamentID":"D9jVXR7QB0BrNFTW3MDz","topic":{},"infoSlide":"","language":"English","link":"","division":"","content":"THW ban homeschooling.","round":"1","id":"aLEIabE09ZNLQeTu387L"},{"topic":{},"division":"","language":"English","round":"4","tournamentID":"UfGg9gZEXlU744RWE1Y1","infoSlide":"","content":"TH supports strong government intervention to prevent gentrification* *process when significant numbers of wealthier people move to a poor area.","link":"","id":"aLaAfjjoBO5sTybvcVhW"},{"language":"English","tournamentID":"h2z0CGY0CzqfLCKUb3wz","link":"","content":"THW bail out Detroit.","round":"1","infoSlide":"","division":"","topic":{},"id":"aM7hwrQDplwT1wSb579y"},{"infoSlide":"","link":"","round":"Open_Final","topic":{},"content":"TH supports large-scale migration from poor to rich regions in the European Union.","division":"","language":"English","tournamentID":"4NEhQx2m4XcXy6SxnoqS","id":"aMBJvWgdotsuohER2Jnc"},{"round":"ProAm_Final","content":"THR the rise of silicon valley culture.","language":"English","tournamentID":"iWZAiFK5ukpLd7JEkH5z","link":"","topic":{},"infoSlide":"","division":"","id":"aMEIEBKquRXhg2pjklB5"},{"link":"","infoSlide":"","division":"","topic":{},"round":"2","content":"THR the characterization of large scale policy reforms against social vices as wars For example --‘combating’.","tournamentID":"WcNueZiJXeg9z82dijdL","language":"English","id":"aMhJ0G1EW2cHECUbEPoU"},{"infoSlide":"","division":"","topic":{},"link":"","round":"Open_Final","content":"THBT the time for the United States of Europe has come.","language":"English","tournamentID":"eBlrzVaoBbfX5kbian3T","id":"aMqrlLRh5vyssacsvTGi"},{"link":"","topic":{},"division":"","round":"Open_Quarter","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","infoSlide":"","language":"English","content":"THW allow doctors to disclose incurable and terminal hereditary conditions to their patient's life partner against the patient's wishes.","id":"aN47XMNripr2Bqth4H3i"},{"topic":{},"infoSlide":"","tournamentID":"4ptLj1Lmq40xJg12oRVd","round":"3","content":"Granted that technology exist, THW not use technology to get superpowers.","language":"English","division":"","link":"","id":"aNVjYrxpUhLirKArLP9V"},{"topic":{},"tournamentID":"EP5HDm4G3OfMlciId6YM","division":"","content":"This House supports governments significantly increasing their use of big data-based predictive models in decision-making to replace human judgements (e.g. criminal justice policy, allocation of healthcare resources, housing development).","language":"English","infoSlide":"","round":"ESL_Semis","link":"","id":"aNkvJIr1Ta9rAujaQish"},{"link":"","topic":{},"content":"THW make income tax for all women directly proportional to the national wage gap (e.g. if women earn on average 70% of what men earn, they would pay 70% of the income tax men pay for the same salary).","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","division":"","round":"4","language":"English","infoSlide":"","id":"aOUWRpVZwwzzgFKUTYyC"},{"infoSlide":"","content":"Should Spartengewerkschaften (craft unions) be abolished? Spartengewerkschaften abgeschafft werden?.","division":"","link":"","topic":{},"language":"English","round":"2","tournamentID":"QjQ9aMJIggiNR9zYImnN","id":"aPldOAjT1bCdY2dDwku2"},{"tournamentID":"0EfM3HXUbP8eg9asv3MM","division":"","round":"6","infoSlide":"","topic":{},"content":"You are a relatively successful indie film-maker who has been approached by a major movie studio to direct a major film franchise. THW turn down the offer.","language":"English","link":"","id":"aQbiLoNXCxNPNyfIOcPQ"},{"link":"","content":"THW commemorate the First World War.","tournamentID":"VT7J9JrIu3vEI0gMHsS2","infoSlide":"","topic":{},"language":"English","round":"Open_Semi_1","division":"","id":"aQkI3Vgk63zFNAnDu6P5"},{"infoSlide":"","round":"","tournamentID":"CJKUeBIUibEtZYahoUQV","content":"THW allow courts to accept evidences collected illegally in cases on high-level corruption.","language":"English","division":"","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"link":"","id":"aR2Lp48FpcEbz2mlb8si"},{"division":"","link":"","tournamentID":"BvbIXgEeyaIcozyDf6R5","content":"TH supports the rise of Social Impact Bonds to fund public projects.","round":"4","infoSlide":"","language":"English","topic":{},"id":"aRF08gLHbNiZPTZd8TM1"},{"link":"","round":"4","language":"English","content":"THBT European Leaders should not have agreed to renegotiate the terms of Britain's EU membership.","topic":{},"division":"","tournamentID":"bcb5yQt6p8cx9SACsvYL","infoSlide":"","id":"aRY7IN1rc6i99nPnlYSe"},{"division":"","language":"English","content":"THBT the media should portray mass shootings as exclusively the result of social narratives of masculinity and systemic misogyny.","infoSlide":"","topic":{},"tournamentID":"efp9mMZFiy8fVwkom17I","round":"Open_Final","link":"","id":"aRdFO6MmqDiPxrHKMA60"},{"tournamentID":"LjEl8Sog63zZMpDhsInz","infoSlide":"","topic":{},"link":"","content":"THBT any form of conscription is a war crime.","division":"","language":"English","round":"4","id":"aRoWpT5ilZt1beFvWadZ"},{"round":"4","link":"","tournamentID":"lPXoAGmpaSNRUUBSEwTy","infoSlide":"","division":"","language":"English","topic":{},"content":"THW allow pharmaceutical companies to advertise prescription drugs.","id":"aTMcBVANTAzrGka2d3b9"},{"infoSlide":"","round":"1","division":"","topic":{},"language":"English","link":"","tournamentID":"9pAAcbund4BvOXScZxre","content":"THW give more votes to those who live in areas with high levels of political apathy and low voter turnout.","id":"aU7YHKKnwfDsoK3GGk7O"},{"round":"4","topic":{},"language":"English","division":"","link":"","content":"THBT you should use the beliefs of your fellow human beings to promote and establish socially progressive norms in society.","infoSlide":"","tournamentID":"nzVlQYCb0rPo23sPMkA5","id":"aV0v24NOdleifw3GTXLf"},{"language":"English","tournamentID":"hF5AdOa0t9O6mkaChm75","division":"","content":"THW support the use of violent protest.","round":"4","infoSlide":"","topic":{},"link":"","id":"aVDm6ckDIptk5mYFHtrE"},{"division":"","link":"","language":"Vietnamese","round":"Semifinals","tournamentID":"i00RSzvK4b1TDEgnpFJd","infoSlide":"","content":"Chúng tôi ưu tiên 1 thế giới nơi tất cả mọi tác phẩm nghệ thuật đều ẩn danh.","topic":{},"id":"aVjGIBTvtT5CFf1txijf"},{"content":"THW ban sports, where the main purpose is to inflict pain (e.g. boxing, martial arts).","language":"English","infoSlide":"","division":"","tournamentID":"aWnK845Eg0cHNR0VZu3e","round":"1","link":"","topic":{},"id":"aXh1Te8dUZdHNp7A574p"},{"link":"","topic":{},"content":"THBT the environmental movement should abandon the narrative of personal responsibility in favor of one which emphasizes institutional accountability.","round":"2","tournamentID":"Pr7RhJp1TWbTZsqRvQt4","division":"","language":"English","infoSlide":"","id":"aZ4dMxmN2zcnbRQW3ScO"},{"topic":{},"round":"8","link":"","division":"","content":"THS THE BANNING OF POLITICAL PARTIES ADVERTISEMENTS ON SOCIAL MEDIA PLATFORMS.","tournamentID":"fYRQ3gsDALGgMYQf58zt","infoSlide":"","language":"English","id":"aZDk8i35uzZBcK9Uj4gK"},{"division":"","tournamentID":"BXqPhfwak2R1kYHV48bp","language":"English","infoSlide":"","round":"5.3","content":"THBT Palestinians should accept demilitarisation in exchange for US recognition as a state.","link":"","topic":{},"id":"aa9sxoyUMqbGvNSLdlDG"},{"language":"English","topic":{},"division":"","link":"","content":"THW publicly designate men's rights movements as hate groups and monitor them accordingly.","infoSlide":"","tournamentID":"U5yvbgLSUvue8vCmib81","round":"1","id":"abSssqRU9C96USsjhl5C"},{"division":"","round":"2","language":"English","topic":{},"content":"THBT a North American sports league, in seeking to expand beyond North America, should prioritize access and development to the Latin American market over the Chinese market.","link":"","tournamentID":"4qwhZS2zOsdzzkyQlcaW","infoSlide":"","id":"ac7zRFacpMCcu3P3egLa"},{"link":"","language":"English","tournamentID":"s6w7WZApDWnBBmzeKY4h","division":"","infoSlide":"","content":"Assuming feasibility, THW distribute development aid to individual citizens rather than governments.","round":"4","topic":{},"id":"adDWL7E0nFJrtArIeeRg"},{"language":"English","division":"","round":"1","link":"","content":"THW financially compensate children who fail to achieve employable grades at school.","infoSlide":"","tournamentID":"vgTQs0itA0pIPKzwI7CK","topic":{},"id":"adPpxMIeniNpdodpGn9b"},{"round":"","link":"","division":"","language":"English","content":"THBT the Vietnamese government should actively and aggressively impose policies of cultural protectionism. (e.g. preferential tax incentives for local firm production groups, government subsidy for shows and music videos that depict Vietnamese culture and history).","tournamentID":"KE7jdAyW9az9nKVb9FMV","infoSlide":"","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"id":"adTyzimTUsMfngGEFm9q"},{"topic":{},"content":"THW Allow Deaf Parents to Refuse Treatment for Deafness On Behalf of their Children.","tournamentID":"nDjxmwMznw4ZJasK7Taj","language":"English","division":"","link":"","infoSlide":"","round":"2","id":"aejTkrSwqUut2BEl8jrF"},{"language":"English","link":"","infoSlide":"","round":"Open_Semis","topic":{},"content":"THS supreme court rulings based on natural rights not enumerated in constitutions.","tournamentID":"Hk8f1ASR1JhJdfu9tmfK","division":"","id":"afBr9q3rE42zocowcgtv"},{"topic":{},"link":"","language":"English","infoSlide":"","round":"2","content":"THBT African Countries should pivot towards the Global East rather than the Global West.","tournamentID":"tKXlShZl2vec49jC1bif","division":"","id":"agCMYp3kifIFTUdR5ouf"},{"link":"","language":"English","infoSlide":"","division":"","tournamentID":"U2WbXKmpxuh7OC6qZ1zX","content":"THW abolish national sports teams.","topic":{},"round":"5","id":"agSLI72BNSqwuqS2gxi8"},{"tournamentID":"m6JzV67uYJSVBRpAbgL7","content":"THBT US Senators who approved (in confidential briefings) the CIA's use of enhanced interrogation (waterboarding, sleep deprivation, exposure to low temperatures for extended periods etc.) should be tried for war crimes.","infoSlide":"","round":"Open_Octa","division":"","link":"","language":"English","topic":{},"id":"agktY7kLHCa2Ydfg1AQe"},{"round":"3","link":"","language":"English","topic":{},"tournamentID":"lFdTm9Bd7AxKRkVImhbS","infoSlide":"","content":"THBT Canada should have boycotted the Commonwealth meeting in Sri Lanka.","division":"","id":"ah92jtlhap5UfiSHJ34I"},{"link":"","infoSlide":"","topic":{},"tournamentID":"ZQk7wGWckTLOk9Y0j9z4","language":"English","round":"8","division":"","content":"‪This House, as the trans community, would prioritize psychosocial rather than physical makeup as a metric for gender dispositions.","id":"ahPjQIaLvkhIKOqsufjC"},{"content":"THBT states should guarantee legally enforceable socio-economic rights.","tournamentID":"wuDBbL4uYIZXIthzVv4V","division":"","round":"6","infoSlide":"","link":"","language":"English","topic":{},"id":"ahbRLZlATHjFI4pBqf0e"},{"round":"","topic":{"education":{"check":true,"title":"Education"}},"content":"THW abolish all requirements and evaluation criteria in higher education (e.g. attendance, exams, assignments, etc.)","language":"English","tournamentID":"nALUKfkpmOnWnQCzecru","link":"","division":"","infoSlide":"","id":"ahuge9gIWrIDMba1kk9i"},{"language":"English","infoSlide":"","division":"","tournamentID":"5oYH1K5oILZA6OqwhGhz","topic":{},"content":"TH regrets the narrative of college as the primary path to success (not sure if exact wording).","link":"","round":"Novice_Final","id":"ai0qdbSOrPgvCG0CrLNf"},{"link":"","language":"Vietnamese","infoSlide":"Trong The Umbrella Academy, Allison là nhân vật có khả năng thôi miên khi cô nói “Tôi đoán là…”. Ví dụ, khi cô muốn đứa con đi ngủ cô nói “Mẹ đoán là con đã buồn ngủ”. Trong phim, Allison đã dùng năng lực để thôi miên con gái của mình trong quá trình chăm sóc và nuôi dạy con.","topic":{},"tournamentID":"FiF24Yc0spiBkvTxiYwD","content":"Chúng tôi sẽ cấm bố mẹ sở hữu siêu năng lực dùng siêu năng lực đó trong việc chăm sóc và nuôi dạy con cái.","round":"Quarterfinals","division":"","id":"ai2uSfZZsCkSTmBsWqZM"},{"round":"Open_Quarters","division":"","infoSlide":"","link":"","language":"English","content":"THBT Dutch labour unions should agree to a structural decrease in pay for older employees.","topic":{},"tournamentID":"DpY0fOiqQ2FcccIfvmaH","id":"ai98RoZFRUIP2FO4ouPl"},{"round":"4","division":"","tournamentID":"vBIhHuSgrqmR27ZqUcfZ","content":"THW give Parliament the right to initiate foreign deployment of the army.","language":"English","infoSlide":"","topic":{},"link":"","id":"aiNaP3GQRCXyP6J30IU4"},{"content":"This house would prohibit research into human augmentation designed to facilitate transhumanism.","tournamentID":"inOeJRfxqTpVMfq0i7Ze","topic":{},"division":"","infoSlide":"","round":"6","link":"","language":"English","id":"aidrBjWmtDopfHuo7Uid"},{"content":"THW allow violent offenders to opt in, at a judges discretion, to the Ludovico technique as a substitution for jail time.","language":"English","tournamentID":"HI456ixwVeFxETFg4P5i","round":"Open_Finals","link":"","division":"","topic":{},"infoSlide":"","id":"aisO1kVGnxSRXOEkplcv"},{"division":"","tournamentID":"Pt1Z2dTdUinRviVucbZA","infoSlide":"","topic":{},"link":"","content":"That Curtis should destroy the train and end humanity rather than taking control.","language":"English","round":"Open_Final","id":"aj7lBw2JfSyovXJkwAB1"},{"infoSlide":"","division":"","language":"English","content":"THBT science has replaced philosophy.","link":"","topic":{},"round":"11","tournamentID":"DSFg77BvC9y4FK5pBVIv","id":"ajP4dDJ1kTn6ohptrYma"},{"infoSlide":"","link":"","tournamentID":"HI456ixwVeFxETFg4P5i","content":"THBT Western governments should renounce democratization of developing states as a foreign policy objective.","language":"English","round":"5","topic":{},"division":"","id":"ajXTaEvqhtZMIKCj9p4k"},{"language":"Vietnamese","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"round":"","division":"","tournamentID":"mNwitMoNsjWupgwG8pR5","link":"","content":"Chúng tôi phản đối \"Văn hóa khiêm tốn\"","infoSlide":"Trong hoàn cảnh của trận tranh biện này, \"Văn hóa khiêm tốn\" là một loại văn hóa mà mọi người được khuyến khích (bởi người khác, hoặc bản thân, hoặc cả hai) chủ động hạn chế công khai/tiết lộ về những thành công, của cải và thành tích của mình.","id":"akHsDM3B6qV4HOUovGie"},{"link":"","division":"","round":"3","content":"THW pay male teachers in primary school more than female teachers.","tournamentID":"vx330P6CYx2QKwkFUJiX","topic":{},"language":"English","infoSlide":"","id":"alOmpxa9fM2WVChWFOwA"},{"topic":{},"language":"English","infoSlide":"","tournamentID":"WcNueZiJXeg9z82dijdL","link":"","content":"THS privatisation of prisons.","round":"5","division":"","id":"amOSzhqbRfdTydCPPBa3"},{"content":"THBT the Black Lives Matter(BLM) movement should campaign for the inclusion of more African American police officers instead of the defunding of the police force.","round":"6","topic":{},"language":"English","tournamentID":"683xp6VC99fyKWXfWS9H","link":"","infoSlide":"","division":"","id":"amfKyKok7sK2omN8mU3j"},{"content":"This House Would covertly fabricate evidence that politicians who promote demonisation or criminalisation of homosexuality are gay (approximation).","language":"English","tournamentID":"B63fWPacAJNcBJdaEpVz","division":"","topic":{},"infoSlide":"","link":"","round":"5","id":"amkUdVzMZjL0PRp4RfYF"},{"link":"","topic":{},"infoSlide":"","content":"Congratulations, you command the armies of Greece and now have the means to embark on your life goal to sail to and conquer Troy. Alas, you have offended the goddess Artemis who has stymied your plans by sending unfavourable winds. The only way to achieve your goal is to sacrifice your only child and you will win the war. That you should sacrifice your child.","round":"3","tournamentID":"HjQJA65fZ9igHKO8DLAP","language":"English","division":"","id":"amnYniDp1SgGn9zeJ4Vr"},{"division":"","tournamentID":"7nPyt59LCWbXBYzvRfL4","language":"English","link":"","content":"TH, as police forces, would accept applicants with a criminal record.","topic":{},"round":"1","infoSlide":"","id":"anBfH9qZcvGeK0Yawic7"},{"round":"3","division":"","topic":{},"infoSlide":"","content":"Should the concept of household income be abolished for taxation purposes? (Soll das Ehegattensplitting abgeschafft werden?).","language":"English","link":"","tournamentID":"RcPsgEaIchl07oq9iFxn","id":"anGmbMeSKiQWzP41Hz0H"},{"division":"","round":"2","topic":{},"language":"English","tournamentID":"YktmX9iQ8HNzyE1aE4yf","link":"","infoSlide":"","content":"THBT the government should subsidise private home ownership.","id":"aoWV9A8LEWVe2dOghnZq"},{"topic":{},"infoSlide":"","content":"THW set a cap on pay for all chief executives and other high level employees of chartities.","tournamentID":"0DgXee32WEP3hxmGZExS","round":"6","link":"","language":"English","division":"","id":"apjyOv0uaN8ktWrmMHNm"},{"division":"","tournamentID":"d13kY0BTy5kVOwwqu54R","topic":{},"language":"English","link":"","infoSlide":"","content":"TH Supports the proliferation of free schools.","round":"1","id":"apoPfUbvfpTVeCAmnUc4"},{"link":"","language":"English","content":"THW would classify crimes directed against sub-cultures as hate crimes.","infoSlide":"","division":"","tournamentID":"ARfoyigbkuieCEyKI1GV","topic":{},"round":"5","id":"aq49kr2SgTZSiI2bO7ub"},{"link":"","division":"","tournamentID":"wdL4H8i9EHTz4mqKuZHP","language":"English","infoSlide":"","topic":{},"round":"5","content":"This House Would give the African Union passport to all citizens of African Union member states.","id":"aq6HSjJhluNXfV27D59w"},{"infoSlide":"","language":"English","tournamentID":"YF6iuqxO6eUISnAz4iMp","round":"Open_Quarter","division":"","content":"This House Would transfer management of all water resources to an international body.","link":"","topic":{},"id":"aqr6Zkc2OuLsUhXyo3sY"},{"content":"That the US should have aggressively pushed for the inclusion of China in the TPP.","language":"English","topic":{},"link":"","division":"","tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","infoSlide":"","round":"2.3","id":"ar8d93LbEFvo5gtUUBWs"},{"content":"This House believes that capitalism is absolutely incompatible with long term peace.","topic":{},"infoSlide":"","division":"","tournamentID":"9mfNKBqpq9HzOZ9GltTe","language":"English","round":"Open_Final","link":"","id":"arIgBjthHLtBWOewvCNu"},{"round":"Tiebreaker_Top","content":"THW enact good Samaritan laws.","language":"English","tournamentID":"lFdTm9Bd7AxKRkVImhbS","division":"","topic":{},"infoSlide":"","link":"","id":"arZVvV7ABYSDEtlAHFFS"},{"link":"","topic":{},"division":"","tournamentID":"XzAs4cMVeW91DHEgxF0k","content":"This House believes that in times of severe crisis, individuals have a moral obligation to dedicate themselves towards combating the crisis.","round":"Open_Final","language":"English","infoSlide":"","id":"as2MlrBLv6gwa5aFR7UA"},{"topic":{},"link":"","infoSlide":"","division":"","tournamentID":"JJmcUH5Gil0nuJObmDP8","language":"English","round":"Open_Final","content":"THS a federal UK.","id":"asGotlubCOg2PqS8v8nZ"},{"topic":{},"tournamentID":"OwplBrh3NruD1YwoexiY","content":"THW set up Christian mission schools in Pakistan.","infoSlide":"","language":"English","round":"2","division":"","link":"","id":"atKfvv3APcfuUuIVqVmw"},{"tournamentID":"BvbIXgEeyaIcozyDf6R5","language":"English","content":"THW Extend the UK DNA Database to the entire population.","round":"2","infoSlide":"","division":"","topic":{},"link":"","id":"atQrpOoxuv5sbTywON6h"},{"round":"1","content":"TH regrets the prioritization of STEM (Science, Technology, Engineering, Math) in Asian Education.","link":"","tournamentID":"uqR5rN63m5rX9CiOtJjb","division":"","language":"English","topic":{},"infoSlide":"","id":"ataID9q4V9PYhEXTiHxf"},{"link":"","division":"","round":"1","content":"THBT the Russian language should be an official language of Estonia.","infoSlide":"","language":"English","tournamentID":"LSZbchiNq33jtWsW0vWQ","topic":{},"id":"atfOzTir2oxHvfn3NSJw"},{"tournamentID":"uUwIAKIDo0apui0AqOxG","content":"TH would introduce academic streaming.","language":"English","infoSlide":"","topic":{},"division":"","round":"1","link":"","id":"au7wMoGxAxQgRhUbbBlG"},{"round":"","tournamentID":"CbtTNoNzLTvfNvRWmMc2","topic":{"publicHealth":{"check":true,"title":"Public Health"}},"content":"We believe the US should replace private insurance companies with Medicare for All.","language":"English","infoSlide":"Medicare for All is a policy that provides universal healthcare insurance to Americans. This system would be paid for by the US government.","link":"","division":"","id":"ax2wFFw7QdWJcF8QagTf"},{"round":"3","content":"THBT community vigilante groups have been a force for good in the fight against gangs and gang crime in Mexico.","infoSlide":"","topic":{},"division":"","tournamentID":"Cx2GIJEWrhOBR3DTErNu","language":"English","link":"","id":"axEmv3cP0rjaPdooAcPT"},{"language":"English","round":"5","tournamentID":"yOWDiguNGQHwr42mgnqv","link":"","infoSlide":"","content":"THBT states that are responsible for heavy pollution are morally obligated to sell portions of their land to states under severe threat by climate change.","topic":{},"division":"","id":"axRtkt1kxxexZIWjxjBw"},{"content":"THW ban research attempting to create Strong Artificial Intelligence (AI).","infoSlide":"Strong Artificial Intelligence is a form of machine intelligence that is equal to human intelligence. key characteristics of strong AI include the ability to reason, solve puzzles , make judgments, plan, learn and communicate.","tournamentID":"DxF0p5X2fi9LhbzCFGTd","round":"4","division":"","topic":{},"language":"English","link":"","id":"axnT88fIB5tMedZ4onMv"},{"topic":{},"link":"","language":"English","tournamentID":"4WWD63gqcbSKMNoFf5ly","division":"","content":"This House discredits portrayal of Disney princesses.","round":"4","infoSlide":"","id":"axr91iG9noQzaQiNo6Cq"},{"content":"TH, as the US, would prioritize economic engagement with North Korea instead of demanding nuclear disarmament.","tournamentID":"DIDaTQVu3sv4iXbqf3eE","language":"English","infoSlide":"","round":"4","topic":{},"division":"","link":"","id":"ayB25CkiPScoVALRvB7w"},{"round":"2","content":"TH regrets the annual commemoration of past wars.","division":"","tournamentID":"655ljihoF4Mh7lzjZruS","topic":{},"link":"","infoSlide":"","language":"English","id":"ayvtBHwNdjwj9DQXSDyS"},{"link":"","topic":{},"round":"2","content":"THW end the search for extraterrestrial intelligence.","tournamentID":"xm1UErfWKMzGBfeKsba9","division":"","language":"English","infoSlide":"","id":"b0xuuGAyqzcxMfk1ZXaJ"},{"division":"","language":"English","content":"THS the rise of escapist media and art.","link":"","tournamentID":"seLxlAUewt8fbZdlsCGC","topic":{},"infoSlide":"","round":"2","id":"b1Zae0IGrcQjIlRKJsru"},{"link":"","tournamentID":"b1sXr4qyDgdbj0UNSjmS","infoSlide":"","language":"English","round":"3","topic":{},"content":"THBT The LGBT movement should abandon the born this way rhetoric.","division":"","id":"b22laczwlNKhJsZZbvrn"},{"division":"","infoSlide":"","round":"Open_Semis","tournamentID":"y0zBNckmXRI4bCqMyXLg","language":"English","content":"TH welcomes the rise of anarcho-populism.","link":"","topic":{},"id":"b29mqSNm3LPPmLAMcBUY"},{"division":"","language":"Vietnamese","link":"","round":"Final","topic":{},"content":"Giả sử công nghệ cho phép, chúng tôi sẽ xóa toàn bộ ký ức về các mối quan hệ cũ.","infoSlide":"","tournamentID":"znXRdnU2llK8fXmHlci5","id":"b2AQAByTcqOcO6ZZGREN"},{"round":"2","topic":{},"link":"","division":"","content":"This house would fire the senior managements of all corporations which receive government bailouts.","language":"English","tournamentID":"kFpM1KUkMmDded3L4Zmm","infoSlide":"","id":"b2xD3J2sgFvWSt9VaNaS"},{"tournamentID":"xik6XdvZ0JGG1hySfuwC","division":"","link":"","topic":{},"infoSlide":"","content":"THW ban companies from using fear as a tactic in advertising.","language":"English","round":"1","id":"b5G9BtDqCgpGn3CfAi67"},{"division":"","round":"1","content":"THBT state has an obligation to fund the arts.","tournamentID":"DfdqiFdfgcruP1pBNiHK","link":"","language":"English","infoSlide":"","topic":{},"id":"b5PAiJUNI7CEf4Vef5gn"},{"language":"English","tournamentID":"9jfZRYzidDD9sleXlrNL","round":"1","link":"","topic":{},"content":"THBT the State should pay for university education.","infoSlide":"","division":"","id":"b78GodCFI38Q8R9tpxR5"},{"link":"","content":"This House believes that regions with extremely high rates of gendered violence should grant amnesty to women for violent crimes they commit.","round":"Open_Final","division":"","language":"English","tournamentID":"YAsriFfh4M2kLN2FBQPq","infoSlide":"","topic":{},"id":"b98lqGBylT8dP81XkC5u"},{"language":"English","tournamentID":"FfDrngjMOaUCYfZgnHPC","content":"THW weight the votes of people within demographic groupings to represent the relative size of each grouping within the general population, not just those who vote (Demographic groupings are characteristics such as race, gender, wealth, age).","division":"","round":"Open_Semis","link":"","topic":{},"infoSlide":"","id":"b9JhvBckTFuzcf9YPXEH"},{"link":"","content":"THB in the virtue of a disproportionate response.","infoSlide":"","topic":{},"round":"Open_Final","division":"","language":"English","tournamentID":"yplVU35a69J2hHBBmAJC","id":"bAOwKPhn2vxSLykXQf0Y"},{"infoSlide":"","language":"English","round":"2","division":"","link":"","tournamentID":"9STOHMmWtLnanVavJzB2","topic":{},"content":"In countries with few female politicians, THBT it is good to have a politically active First Lady.","id":"bBEJlZBA1OXJp4m7iOap"},{"language":"English","infoSlide":"","tournamentID":"X7PfztBaTR2KFk3oINtG","round":"2","content":"THS the July 2015 decision of the UK government to deny a visa to Tyler the Creator.","link":"","topic":{},"division":"","id":"bBIMboAxuzJlqqF2zWTT"},{"content":"This House believes that Russia was justified in vetoing intervention in Syria.","language":"English","division":"","infoSlide":"","topic":{},"round":"3","tournamentID":"vY2MtSrfiAgUKzGbzzMm","link":"","id":"bBPGFFgpBviP5nYIkkSM"},{"tournamentID":"KErVXbqRahyWD7ZB1Q1m","content":"TH supports feminist vigilante groups in India.","division":"","infoSlide":"","link":"","language":"English","topic":{},"round":"1","id":"bDYHrmsIeG7NfniM0q37"},{"topic":{},"infoSlide":"","round":"3","tournamentID":"pu7FduCxL7IOOrWe0ypf","link":"","content":"THB the International Community should allow breakaway republics in former Soviet states to join the Russian Federation, conditional on holding free and fair referenda.","division":"","language":"English","id":"bEJOLMTNdbXJvGenO3H0"},{"round":"3","content":"THW ban religious arbitration courts.","link":"","tournamentID":"TMUPfAyolz9JkKMmWlLC","language":"English","division":"","topic":{},"infoSlide":"","id":"bEKmhm4dDAFTLGEfoZex"},{"division":"","tournamentID":"PhJT1xhigiWcZot2PdLn","link":"","infoSlide":"","round":"Open_Semis","content":"This house regrets the inclusion of the People's Mobilization Forces in the war against the Islamic State.","language":"English","topic":{},"id":"bESNRlRa3KtFJ2tQAiX0"},{"link":"","topic":{},"round":"3","content":"TH (the journalist) will reveal this information to the public.","language":"English","tournamentID":"WcNueZiJXeg9z82dijdL","infoSlide":"","division":"","id":"bEsjHhoO90mvLltWieSM"},{"tournamentID":"4ptLj1Lmq40xJg12oRVd","infoSlide":"","round":"6","link":"","content":"THBT its legitimate for women to use sex as a tool for advancing in life.","language":"English","division":"","topic":{},"id":"bFPZUBS5NHcZYsVJPbIe"},{"round":"3","content":"THW ban surgical genital alteration procedures for minors that are not strictly medically necessary for bodily or sexual function.","division":"","language":"English","topic":{},"link":"","tournamentID":"8umdzosR2LakbIpLGOan","infoSlide":"","id":"bFVTWtXbmk5CwRutEM8P"},{"content":"THBT the USA should give South Korea independent control of a nuclear arsenal.","tournamentID":"D8wxxb57dF9p7tV8985s","link":"","topic":{},"language":"English","infoSlide":"","division":"","round":"2","id":"bFrdshAzeEaJO6yyjFcg"},{"link":"","infoSlide":"","tournamentID":"i6DM0q3jQYZrDmXJHzfr","round":"3","language":"English","division":"","content":"THW require priests to disclose confessions where it is relevant to ongoing criminal cases.","topic":{},"id":"bG5PPoI8H275SLVLmQEJ"},{"infoSlide":"","topic":{},"tournamentID":"fBPBbh32BZ2p0Y1Fy5Yi","round":"Quarterfinals","language":"Vietnamese","link":"","content":"Chúng tôi lấy làm tiếc chính sách công bố rộng rãi thông tin cá nhân của những người mắc Covid.","division":"","id":"bGJNtki7Bk7w3X1QcghE"},{"topic":{},"content":"THBT European countries should change school syllabuses to disproportionally emphasis Arab and Islamic contributions to European culture.","infoSlide":"","link":"","tournamentID":"Hq4qmpVpWAzn16SzuUU8","round":"1","division":"","language":"English","id":"bGWqxxroRzbkxkMAbqgn"},{"topic":{},"tournamentID":"W8zmuuOkdBsEHQw2r0RP","infoSlide":"","language":"English","round":"Open_Semis","link":"","division":"","content":"THBT feminist organisations should not use nudity as a tactic for pursuing their aims.","id":"bGgBscFwMlCiJTe3MBTv"},{"round":"Open_Final","infoSlide":"","content":"THW give all animals capable of respecting all citizen obligations equal rights to humans.","link":"","language":"English","tournamentID":"C4Vv4FZW36V7ONi9kULg","topic":{},"division":"","id":"bGnAUSObQE5GkrvRp47a"},{"tournamentID":"hF5AdOa0t9O6mkaChm75","content":"TH, as the ICC, would never bring cases against incumbent heads of states.","topic":{},"link":"","language":"English","infoSlide":"","division":"","round":"Open_Semis","id":"bGp6bOgXLJtoazJFdqhb"},{"language":"English","infoSlide":"","link":"","division":"","tournamentID":"I5iTcVABscgCPPKzr8Oa","round":"2","content":"THW grant only non-male individuals the right to bear arms.","topic":{},"id":"bH9BBPmrrI2aKDDXf5ag"},{"language":"English","tournamentID":"mzvnxBrGLKyjonGHD82N","infoSlide":"","topic":{},"round":"Open_Final","division":"","content":"THBT celebrating housewives impedes the feminist movement.","link":"","id":"bHFWHMbrNEe5TQuiUzsP"},{"language":"English","infoSlide":"","topic":{},"tournamentID":"gQ88d3loB2qwgD7ofmmr","content":"THB in right to bear arms.","link":"","division":"","round":"Open_Final","id":"bJCAkTJt9y38UTd77jXo"},{"content":"THBT people of colour activist groups, such as the NAACP, should pursue a race-blind society.","link":"","language":"English","infoSlide":"","division":"","topic":{},"round":"Open_Semis","tournamentID":"lVzNmdGBefqKp5cetQ6Z","id":"bJrXesfmHpqS616CcYPJ"},{"content":"THW Ban all advertising.","topic":{},"link":"","language":"English","round":"5","tournamentID":"QH8qP4fqpVb4nMsZXwxw","infoSlide":"","division":"","id":"bJvkAmM4X7s4noRFwFRa"},{"tournamentID":"9pAAcbund4BvOXScZxre","division":"","infoSlide":"","link":"","content":"THW allow individuals to sue religious organisations for compensation for the harmful effects of choices made as a result of adherence to religious doctrine.","language":"English","topic":{},"round":"4","id":"bJvs72pTvzu2cf2uM6TF"},{"division":"","topic":{},"language":"English","link":"","infoSlide":"Immediate Democracy is a system in which the voter may change their vote at any given time, thus changing the composition of the parliament on a daily basis according to public support.","round":"3","content":"THW enact an Immediate Democracy.","tournamentID":"5wD2Kt4YswcLbEnnV0c5","id":"bKUqpovMfdqOFMBEesCv"},{"tournamentID":"YF6iuqxO6eUISnAz4iMp","content":"This House Would only allow university admission on the basis of standardized testing, as opposed to non-quantitative methods (e.g. essays, alumni interviews).","link":"","topic":{},"language":"English","division":"","infoSlide":"","round":"1","id":"bKdtadSH4SUR13NPJpu2"},{"division":"","language":"English","tournamentID":"HtADLvDpWQsx5qtLh5A9","infoSlide":"","link":"","round":"3","content":"THS the pirating and mass availability of academic resources.","topic":{},"id":"bKlRbLjo68ncQ83xFU6Q"},{"language":"English","tournamentID":"iWZAiFK5ukpLd7JEkH5z","link":"","round":"Open_Final","content":"THBT universities should establish \"dangerous spaces\".","division":"","topic":{},"infoSlide":"","id":"bKpvEK4EP00hpEQ75wpN"},{"division":"","tournamentID":"EC3TzMXkzGq0DYNMzQdg","topic":{},"infoSlide":"","link":"","content":"Should the state treat all religions equally?.","round":"3","language":"English","id":"bKtYB7noT5dCgH93Iqnl"},{"content":"THBT minority artists should create street art and other art in public spaces rather than art intended for display in galleries and traditional artistic venues.","tournamentID":"caeYE7341tdQiO1TJafq","division":"","infoSlide":"","topic":{},"language":"English","round":"4","link":"","id":"bL4nOQ6FGcPnVvpuvPzm"},{"infoSlide":"","content":"THBT a person of super genius intelligence should transform themselves into someone of average intelligence.","topic":{},"language":"English","tournamentID":"RautsrmlhwL2BBMyTRVG","link":"","round":"Open_Finals","division":"","id":"bL8sEtqHDRLR97px0pmj"},{"content":"THW posthumously strip Kevin Carter of the Pulitzer Prize.","infoSlide":"","link":"","division":"","language":"English","topic":{},"tournamentID":"Aic5TDtU01Sp43Neh8N2","round":"4","id":"bLj271bgf1kRWnX11Uto"},{"division":"","infoSlide":"","topic":{},"content":"THR the glamorization of the portrayal of a \"Genius\".","round":"Novice_Semi","language":"English","tournamentID":"683xp6VC99fyKWXfWS9H","link":"","id":"bLq97TBgV4aGhrjHFTjU"},{"round":"4","content":"TH, as a parent with the financial means to do so, would not send their child to private school.","language":"English","topic":{},"infoSlide":"","link":"","division":"","tournamentID":"iARNjQG0MiYXxp1Qk22E","id":"bLyvEI37jMfYCjREz4FN"},{"infoSlide":"","tournamentID":"7lMrN2aiwSzD5rzPFwHz","topic":{},"division":"","language":"English","link":"","round":"3","content":"As an omipotent, omniscient god, THW smite people who commit serious crimes and who we know will feel no remorse.","id":"bMQQF2A7ienwZyAFScD4"},{"link":"","content":"THW strongly discourage people from “looking for their soulmates”.","round":"5","division":"","infoSlide":"A soulmate is a person with whom one has a feeling of deep or natural affinity. This may involve love, romance, platonic relationships, comfort, intimacy, compatibility and trust.","topic":{},"language":"English","tournamentID":"KTeMrrauFpZYvjtBUkLJ","id":"bMTVy7HIynWskewqRaA2"},{"link":"","topic":{},"tournamentID":"macdlwUjYqFCGHKvQS20","language":"English","infoSlide":"","content":"This House would allow individuals to sue the government when the government has failed to provide a basic standard of living.","division":"","round":"Novice_Final","id":"bMxr55gyYhGepIFamcQ7"},{"language":"English","link":"","division":"","round":"Open_Semi","infoSlide":"","tournamentID":"seLxlAUewt8fbZdlsCGC","content":"TH prefers a world where humans are assumed to be inherently good as opposed to a world where humans are assumed to be inherently evil.","topic":{},"id":"bNUjLboNZwgKGPtqOmWH"},{"content":"THW ban temp agency contracting (Leiharbeit, Arbeitnehmerüberlassung, Zeitarbeit, Mitarbeiterüberlassung oder Personalleasing).","language":"English","infoSlide":"","tournamentID":"SYgBNIxUimP727BA2md3","link":"","division":"","round":"5","topic":{},"id":"bNhyAytpwXZntJJSw8ho"},{"language":"English","round":"6","link":"","division":"","tournamentID":"wKhC6L9zPycGKlqYWb6j","content":"Given the existence of a drug that dramatically increases mental capacity, THBT universities should ban and test for student use of the drug.","topic":{},"infoSlide":"","id":"bOdz6EWA8PeTPWRTfIZL"},{"tournamentID":"ns7JoMyNUkrrS5A6Rbw7","link":"","topic":{},"round":"2","content":"You are a poor 19-year old woman living in a former Soviet state. You have little education, no obvious career prospects, and few opportunities for economic advancement in your own country. THW register as a mail order bride.","division":"","infoSlide":"","language":"English","id":"bPYAvPB3Nw1YGLwUXhUh"},{"round":"4","infoSlide":"","language":"English","content":"THBT the US should abandon all military support for and impose economic sanctions on the Philippines.","tournamentID":"EHPcBnMOPhSjJDJMUqKQ","division":"","topic":{},"link":"","id":"bPtSJiN36O2bVoEAgtqH"},{"infoSlide":"","topic":{},"round":"4","tournamentID":"1WET2zUA9uN6rpHTGR8k","content":"THW declare a trade war against China.","link":"","language":"English","division":"","id":"bPw4maBvkztN5UuVlV35"},{"round":"","link":"","language":"English","division":"","tournamentID":"nALUKfkpmOnWnQCzecru","topic":{"politics":{"check":true,"title":"Politics"}},"content":"THW impose a cap on the property and incomes of politicians.","infoSlide":"","id":"bQC9VWee2WvJQWtLUfcc"},{"link":"","infoSlide":"","language":"English","division":"","topic":{},"round":"Open_Quarters","tournamentID":"nDjxmwMznw4ZJasK7Taj","content":"TH Supports Hacking as a Form of Protest.","id":"bQOs9Tb41c2WmHQxGmWn"},{"infoSlide":"","division":"","content":"THBT sexual education classes in schools should teach techniques or pure sexual gratification (including but not limited to ...list follows).","tournamentID":"aVcqgGmAccQ09iBh9iS1","topic":{},"round":"1","language":"English","link":"","id":"bQPghEdSIywEFoGr3k8w"},{"language":"English","link":"","division":"","infoSlide":"","round":"5","content":"TH, as the LGBTQIA+ movement, will reject legalism as an avenue of emancipation.","tournamentID":"9yPqE2fe1oaHsd7ankOa","topic":{},"id":"bR3pr4Xq8NAistFhkgl5"},{"tournamentID":"YbdPFTE9FbO3iQjZo87D","infoSlide":"","division":"","topic":{},"link":"","language":"English","round":"ESL_Finals","content":"TH Opposes the Defining Decade norm.","id":"bRqxZFIl4wI6AtEVuv64"},{"division":"","link":"","round":"Open_Final","infoSlide":"","language":"English","topic":{},"content":"THW Amend the US Constitution To Prohibit Any Involvement by Religious Organisation in the Electoral Process.","tournamentID":"IpWyfCcksctR86jKX66g","id":"bS584qvm8PCvI5bK6Max"},{"tournamentID":"6j3LrbKUgx9arVygXUjf","content":"THBT disruptions of the government (eg fillibusters, civil servant strikes, and government shutdowns) are a legitimate political tool.","round":"Open_Semis","division":"","topic":{},"infoSlide":"","link":"","language":"English","id":"bSNy3PUg4zlJCbdvclPr"},{"language":"English","round":"2","content":"THW only give out scholarships on the basis of academic potential.","division":"","tournamentID":"IK2tQhXBb3v4DJKRH1Ve","topic":{},"infoSlide":"","link":"","id":"bUZTSbsCSmSh7BvdxKwY"},{"infoSlide":"","language":"English","round":"2","tournamentID":"hF5AdOa0t9O6mkaChm75","division":"","content":"THW create quotas for male workers in female-dominated professions such as teaching and nursing.","link":"","topic":{},"id":"bUeKHvzptWRtdMW3gK2b"},{"content":"TH, as South Korea, would aim to significantly increase its cross-border economic cooperation with North Korea.","round":"1","topic":{},"infoSlide":"","link":"","language":"English","division":"","tournamentID":"uJGjvsaThnluwVzoHFXm","id":"bUq64WSLHFohyZcXRGci"},{"link":"","tournamentID":"DV29K6gIIl6nTiYeWo2j","round":"Novice_Quarter","division":"","topic":{},"language":"English","content":"As feminist, THO such coverage.","infoSlide":"","id":"bVOro2OILVJtFXyyoU4o"},{"round":"Open_Final","tournamentID":"mf3XudZleydnsr0lEvkg","content":"THS Zobrist's means of population control.","topic":{},"link":"","division":"","language":"English","infoSlide":"","id":"bVq6AXichFfwUeCsLKyw"},{"topic":{},"link":"","division":"","round":"4","tournamentID":"QDGMrdrzlFCxVT5WcqNn","content":"This house believes that the West should engage in covert efforts to overthrow Vladimir Putin.","language":"English","infoSlide":"","id":"bVrZsa1LmFBBeCGAraGR"},{"infoSlide":"","round":"2","language":"English","link":"","content":"THW not read fairytales which contain gender stereotypes to children.","division":"","topic":{},"tournamentID":"bWRhS5k8Iv19aHOMEz5C","id":"bVriV3HJP1jl4LmgoZj6"},{"tournamentID":"7Jdvl74EMNCm0P5fq9PJ","round":"2","language":"Vietnamese","content":"Chúng tôi tin rằng các đảng chính trị đối lập nên tẩy chay các cuộc bầu cử thay vì tranh chấp chúng khi quá trình bầu cử được cho là không tự do và công bằng.","topic":{"politics":{"title":"Politics","check":true}},"link":"","infoSlide":"","division":"","id":"bW2BpI30IEo9oteqHeJj"},{"round":"3","content":"THBT Japanese leaders are legitimate in visiting the Yasukuni Shrine.","division":"","language":"English","link":"","tournamentID":"fIr3uLdOpGeGuZzpnEMf","infoSlide":"","topic":{},"id":"bW5eY3NbwrLVB9OYwDrp"},{"content":"THS protesters who protest at political gatherings with the aim of causing them to be cancelled - Round 3.","language":"English","infoSlide":"","link":"","topic":{},"round":"3","tournamentID":"nXN2yUG7soxwCp4xidzj","division":"","id":"bWrOvDThy7yWWzK3fuzc"},{"tournamentID":"LlsxibXteGBGML9aitY2","content":"Given the technology to accurately measure and transfer happiness, THW progressively tax and redistribute happiness.","link":"","infoSlide":"To progressively tax and redistribute means to increase taxes as the taxable value increases and to reallocate that value to others.","language":"English","division":"","round":"","topic":{"philosophy":{"title":"Philosophy","check":true}},"id":"bXCfIcSjF81VIQIMb0ao"},{"topic":{},"division":"","link":"","language":"English","infoSlide":"","round":"Open_Semis","content":"THW practice investment over austerity in times of economic crisis.","tournamentID":"Tu7KRlumwIMZzCczqcGG","id":"bXZ2M8aNdl6KUsVaO3CZ"},{"tournamentID":"SIrskBVMCwGNCZibcnP1","language":"English","division":"","content":"THW require pornography producers to be run by a collective of their female employees.","link":"","infoSlide":"","round":"4","topic":{},"id":"bXfFoWAB8nL0kmKvRWYc"},{"content":"This House Would Force All Companies to be 100% Owned by their Workers.","link":"","language":"English","division":"","tournamentID":"o7IbmAZdAZ1UWeWnX7IL","infoSlide":"","round":"1","topic":{},"id":"bY35YdoBu1LzAOq9WSi2"},{"infoSlide":"","language":"English","round":"8.3","division":"","content":"THW abolish government funding of art.","topic":{},"tournamentID":"BXqPhfwak2R1kYHV48bp","link":"","id":"bYsVeVEB24OxGrl772SB"},{"topic":{},"round":"Open_Quarters","content":"This house, as a parent of a child with ASPD, would enable and support that child given that child’s aims based on their current psychological makeup, instead of trying to make them more empathic.","language":"English","tournamentID":"vS5BTr7lDW40h5Qw31FI","infoSlide":"","division":"","link":"","id":"bYyzOWqZT5MSP7gidD98"},{"division":"","tournamentID":"vS5BTr7lDW40h5Qw31FI","topic":{},"round":"8","content":"This house prefers a world in which all individuals who have achieved a middle class standard of living choose to pursue the highest level of achievement in their chosen career, rather than a wold in which those individuals priorities day-to-day enjoyment over work.","infoSlide":"","language":"English","link":"","id":"ba76Rmk6B7WjZvWlXekw"},{"division":"","link":"","topic":{},"language":"English","round":"1","tournamentID":"pFBjdI3lKCaS5TpjBKVP","content":"This house, without knowledge of who they will be, would prefer to be born into the 2nd Moon.","infoSlide":"","id":"baeA8iuWCXu4HJo1eSHb"},{"link":"","division":"","content":"In places with significantly high waiting times for finding appropriate donors, THW legalize the private sale of organs.","language":"English","infoSlide":"","topic":{},"round":"5","tournamentID":"TpCKtGVry2w5xrgb90jZ","id":"basQ8K0aj4Of5c4CIqpK"},{"division":"","tournamentID":"XBBB3MfIKpYpUaioBlLB","infoSlide":"","content":"THBT individuals should pass a parenting test before having children.","round":"Open_Semis","language":"English","link":"","topic":{},"id":"bb2yRQWLx2PK9uXwoukj"},{"language":"English","link":"","round":"Open_Semis","content":"The United States should cease all diplomatic and military operations in the Middle East.","tournamentID":"9yZPq4vkPBjWs9gMF8AS","division":"","topic":{},"infoSlide":"","id":"bbAGXc6RRBVhdUyW00Be"},{"round":"4","division":"","link":"","tournamentID":"GEF7QfNpKGwIZtimYEsL","content":"TH rejects all sports mascots which depict humans.","topic":{},"infoSlide":"","language":"English","id":"bbL8xUOB5LDKJlG8aMB6"},{"round":"5","tournamentID":"k3ijyeg4qJCcExIHRlhv","link":"","infoSlide":"","content":"THW elect 51% of parliament by lottery.","language":"English","division":"","topic":{},"id":"bbbTCN9WgoG7yuyLSbNC"},{"round":"3","content":"THS state attempts to help their citizens find and sustain love (e.g. subsidizing subscriptions to matching agencies such as match.com, significant funding for research on what makes a relationship last, creating courses on how to woo and keep a spouse) / EC apoya que el estado busque ayudar a sus ciudadanos a encontrar y mantener el amor (ej. Subsidiando suscripciones a sitios de citas como match.com, financiando significativamente investigaciones sobre cómo hacer que una relación perdure, creando cursos sobre cómo sorprender y conservar a tu pareja).","link":"","division":"","language":"English","tournamentID":"QePDCf8cQ2AX4XfcvR3T","infoSlide":"","topic":{},"id":"bc2PKJPQ7EoiviiWuSoI"},{"content":"THW ban embedded journalism.","tournamentID":"CLp8pjuIm6vddMdiBEC5","round":"1","language":"English","division":"","topic":{},"link":"","infoSlide":"","id":"bc3Du9TB7J62KYJgzWwU"},{"topic":{},"content":"THW convicted criminals the options to choose corporal punishments over imprisonment.","division":"","language":"English","link":"","tournamentID":"1cJ1sn6hYwZuN7mUjUE9","infoSlide":"","round":"1","id":"bcCnUlBE7A8ENsK1kCLM"},{"language":"English","topic":{},"round":"7","link":"","content":"That we should limit the trading of individual shares and derivative products to licensed professionals.","division":"","infoSlide":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","id":"bcXuTj3e6JVslBFLL9L5"},{"content":"THW compel priests to report a crime which they learn of through confession.","language":"English","link":"","round":"7","division":"","topic":{},"tournamentID":"ZHpmROZ4G7eY4iB9dTsM","infoSlide":"","id":"bdduBJwzp5wKIu6wodNj"},{"link":"","division":"","content":"THBT that Universities should exclusively award scholarships and grants on the basis of financial need.","round":"1","language":"English","topic":{},"tournamentID":"iebTUsXIgV5US8LjoNw7","infoSlide":"","id":"bdeHLBM5A4DL27Chzocw"},{"language":"English","tournamentID":"fBPBbh32BZ2p0Y1Fy5Yi","round":"2","division":"","content":"THW ban out of court settlements for crimes related to sexual harassment of any kind.","link":"","infoSlide":"","topic":{},"id":"bgBZbNPBaoJg8eiGLDmy"},{"topic":{},"link":"","language":"English","infoSlide":"","round":"3","tournamentID":"FAvjs63H5vSbEY0I97Zs","division":"","content":"THB the state should fund free access to museums, art exhibitions and other cultural attractions for social welfare recipients.","id":"bgyASg0TIyuYZpsZaNyY"},{"topic":{"irw":{"check":true,"title":"International Relations/War"}},"infoSlide":"","link":"","division":"","content":"Chúng tôi sẽ không phân phối viện trợ khẩn cấp và viện trợ nhân đạo thông qua các tổ chức không trực thuộc chính phủ liên quan đến khủng bố.","language":"Vietnamese","round":"Quarterfinals - Motion 1","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","id":"bh9T3M2q5RuuNPAHviqx"},{"division":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","infoSlide":"","round":"4","link":"","topic":{},"content":"THBT parents have a duty to push their children to succeed even if it comes at the expense of their happiness.","language":"English","id":"biUC8RuUR6RwYilu2Zdp"},{"link":"","tournamentID":"b1sXr4qyDgdbj0UNSjmS","division":"","infoSlide":"","language":"English","topic":{},"content":"THBT national sporting associations should give a lifetime ban to any player convicted of a serious violent crime.","round":"2","id":"bjpk6UI3PC2s6VuhtAay"},{"topic":{},"round":"3","tournamentID":"L8JGtnnMnhA8w9ooOx0S","content":"THBT schools should motivate children to believe that anyone can succeed through hard work regardless of their background.","language":"English","infoSlide":"","link":"","division":"","id":"bjslDZTipCXCL1kCDXAX"},{"tournamentID":"hoxSwibt3yivmk88aoAD","link":"","division":"","infoSlide":"","topic":{},"content":"TH, as the human population of planet X, would choose communism over capitalism.","language":"English","round":"Novice_Final","id":"bk6SvGDVIj8sVzXxtnqJ"},{"tournamentID":"nFeuKMAFpK6Amwi6OMai","division":"","round":"3","content":"Do we need the meatfree Monday?.","topic":{},"link":"","infoSlide":"","language":"English","id":"bkS0Mzqs1dVTBPEV8LnM"},{"language":"English","topic":{},"tournamentID":"GeB6bvqs5FhYEP99Q8Ax","division":"","content":"THBT \"I was just following orders\" is a legitimate defence in cases of war crimes and crimes against humanity.","infoSlide":"","round":"Open_Final","link":"","id":"bkksKfpMFA3zLAGXEyGC"},{"topic":{},"infoSlide":"Chủ nghĩa nữ quyền đại chúng tôn vinh sự trao quyền cho phụ nữ và bản sắc nữ quyền thông qua các phương tiện truyền thông, bao gồm nhạc pop, quảng cáo, thời trang và các chiến dịch truyền thông xã hội. Ví dụ về nữ quyền đại chúng bao gồm các bài hát và màn trình diễn khác nhau của Beyonce hoặc chiến dịch “My Choice” của Vogue Ấn Độ.","link":"","language":"Vietnamese","tournamentID":"i00RSzvK4b1TDEgnpFJd","round":"2","division":"","content":"Chúng tôi lấy làm tiếc về sự phát triển của chủ nghĩa nữ quyền đại chúng.","id":"blNjoXmi8KNcvwjGi7H8"},{"topic":{},"content":"TH, as a feminist, R the narrative that God is a Woman.","round":"4","link":"","division":"","language":"English","tournamentID":"WcNueZiJXeg9z82dijdL","infoSlide":"","id":"blUEJfmG7JbUKZGY9tox"},{"round":"Open_Semis","division":"","topic":{},"content":"This house would ban websites that glorify eating disorders.","language":"English","link":"","infoSlide":"","tournamentID":"VPUCPVj9FHFW0uzJinv0","id":"blmLxbkHC1S7pdYaSWul"},{"link":"","topic":{},"language":"English","content":"THW require all large companies to reserve 51% of shares for employees as equal voting shares.","round":"2","tournamentID":"yLnbL40w84r9L2K9qxt0","division":"","infoSlide":"","id":"bn5l73SWadNq2yGpby7h"},{"content":"THW give two votes to members of disenfranchised ethnic minorities.","topic":{},"infoSlide":"","tournamentID":"FYOADGgnZTJQdU2kOcYb","link":"","division":"","round":"1","language":"English","id":"bnHfAzuqKyW8miQsHpgc"},{"topic":{},"infoSlide":"","content":"THR the Neolithic Revolution.","division":"","round":"ProAm_Final","link":"","language":"English","tournamentID":"m2l0j7TwryKeK2YnXK9e","id":"bntv1qfKKBNWqDhleFC1"},{"content":"This House would establish a universal passport.","infoSlide":"","division":"","language":"English","round":"6","topic":{},"tournamentID":"h5ajoFHOT7mXoe90wbQ3","link":"","id":"boXd9GR5wgmgxWJq95ml"},{"division":"","language":"English","topic":{},"round":"5","tournamentID":"yLnbL40w84r9L2K9qxt0","content":"THW ban ownership of land and property by foreigners and foreign-owned corporations.","infoSlide":"","link":"","id":"bp0TCnlQVpLOw3N0Icvm"},{"language":"English","tournamentID":"db8a4cSMVYVFuxZgcf0y","link":"","round":"2","division":"","content":"This House would introduce quotas for women in League of Legends Esports teams.","topic":{},"infoSlide":"","id":"bqRr3PDjbY4Gr4MGADYe"},{"topic":{},"tournamentID":"y7meTgIUCGSo7UqVkUQq","content":"TH, as the US, would grant amnesty to Edward Snowden.","division":"","link":"","round":"2","language":"English","infoSlide":"","id":"bqkHhx1ye9JeiBsOHaAH"},{"round":"1","infoSlide":"","link":"","language":"English","topic":{},"division":"","tournamentID":"fHaBEm9PW7QYO4ZKFbwi","content":"THW give only temporary marriage lines.","id":"bqzAOYywO7iIOi4aZVOz"},{"language":"English","division":"","tournamentID":"NbIgaSiRmXdh3BAZ88Vm","round":"1","topic":{},"content":"In school districts in France where Arabic is the majority language, THW make Arabic the language of primary instruction in schools.","link":"","infoSlide":"","id":"brIRgAIVsWmqFpNV883v"},{"infoSlide":"","round":"Open_Quarters","division":"","tournamentID":"zidC2m00xOQF4gT3tgiY","content":"TH, as Bangladesh, would recognize Israel.","link":"","topic":{},"language":"English","id":"brZdIO1OuZxwUIQA9d1J"},{"language":"English","link":"","round":"1","content":"This house would allow the selection of all-female juries in sexual assault cases.","topic":{},"tournamentID":"sXtyoMtY4Bb7XJvcqA3J","division":"","infoSlide":"","id":"brsC2BpJ3FNiyxhdyEue"},{"link":"","tournamentID":"MIEMFyC8nYMlqXU4wtOC","content":"TH, as Central Asian states, would heavily focus on economic and political alignment with China under the Belt and Road Initiative.","language":"English","infoSlide":"","topic":{},"division":"","round":"2","id":"bsLdXksnb8h9ANEOgqwj"},{"language":"English","topic":{},"content":"THW prohibit in financial settlements lawsuits against pharmaceutical companies.","tournamentID":"V8KRgdahxIEUYFHrRWYb","division":"","link":"","infoSlide":"","round":"5","id":"bsfe1Nmfeqzha3GwQJq0"},{"tournamentID":"dgRU54McMXqo1MXISAFt","link":"","content":"THW only allow the media and campagning organisations to depict or publish information about the deceased in a tragedy with the explicit permission of the family.","division":"","infoSlide":"","language":"English","topic":{},"round":"5","id":"btQL4MWYOx5MnUD8hVbG"},{"topic":{"hr":{"title":"Human Relationships","check":true}},"tournamentID":"3B01KdqnCVzQEVjKcHiT","language":"Vietnamese","link":"","content":"Chúng tôi nuối tiếc chiến lược công khai làm xấu hổ những người có hành động 'gây hấn vi mô'.","infoSlide":"'Gây hấn vi mô' là một cụm từ dùng để chỉ các hành động nhỏ trong sinh hoạt thường ngày làm người khác thấy xấu hổ và mất danh dự, có thể có chủ ý hoặc không. Các hành động này thường thể hiện sự xúc phạm và các định kiến tiêu cực đến các nhóm thiểu số. Các hành động gây hấn vi mô có thể là một lời khen hoặc một câu đùa, nhưng chúng ẩn chứa một sự xúc phạm về một nhóm người nhất định. Các hành động gây hấn vi mô khác với các hành động gây hấn vĩ mô ở sự không rõ ràng, mức độ và sự thường xuyên. Các hành động gây hấn vĩ mô là các dạng phân biệt đối xử cực đoan hơn (ví dụ như treo cổ hoặc đánh đập).","round":"","division":"","id":"btbh0xcmTGGmjte6eWED"},{"link":"","infoSlide":"","division":"","tournamentID":"BXqPhfwak2R1kYHV48bp","language":"English","topic":{},"round":"5.2","content":"THW aggressively hire ex-soldiers as teachers.","id":"btc0gJqTn1k6zYttiafT"},{"division":"","round":"6","content":"This house opposes the increasing sympathetic portrayal of villains in movie and TV shows (e.g. Joker, Disney’s Maleficent, Light Yagami in Death Note, Marvel’s Thanos, Breaking Bad’s Walter White, etc.)","tournamentID":"mxxjZaa0262HoUjjXfj8","topic":{},"language":"English","infoSlide":"","link":"","id":"btupMoNkqQVoC4Xrh6XG"},{"round":"1.2","tournamentID":"BXqPhfwak2R1kYHV48bp","language":"English","infoSlide":"","division":"","content":"THBT humanism should disassociate from atheism.","link":"","topic":{},"id":"btzRkWjXAp3aZnjgQzEu"},{"tournamentID":"S2mG18EWYdh2bPEadyd9","round":"3","link":"","content":"Th, as the LGBTQ+ movement, regrets the advocacy strategy of strongly encouraging people to declare their sexual orientation (e.g: national coming out day).","division":"","language":"English","topic":{},"infoSlide":"","id":"buGPcBnxLa0gRotsbtKD"},{"link":"","content":"TH, as Dr Bob Hare, would not make the pyschopathy checklist publicly available.","round":"Open_Semis","language":"English","tournamentID":"aL5gnSWQ3OQq2Lb3mRix","topic":{},"infoSlide":"","division":"","id":"buc604bTnBRDQn0MYRpw"},{"link":"","tournamentID":"37eWQ7OoHqsPgaN53lHV","language":"English","topic":{"education":{"title":"Education","check":true}},"infoSlide":"","round":"","content":"THBT that students' faults should only be kept to themselves instead of being publicised in the class.","division":"","id":"buzP9x7bQnV2CYlADYBX"},{"round":"ESL_Final","tournamentID":"5Qomv7BFHTKmY4PchwDr","content":"That capitalism is incompatible with racial equality.","division":"","language":"English","infoSlide":"","topic":{},"link":"","id":"bvXgzCv0s8qpbIbgOr3D"},{"language":"English","infoSlide":"","division":"","link":"","round":"Open_Semis","content":"THW prefer a world without sexual attraction.","topic":{},"tournamentID":"jpLuasMJYB40s1bJk2Ia","id":"bvm5TNrMgsInZWxq2MX3"},{"round":"1","language":"English","topic":{},"link":"","infoSlide":"","content":"THW aggressively prioritize women for military leadership positions.","division":"","tournamentID":"ZpOi9wuiFrLbKo4ygC2p","id":"bwHCPNjK68YaZtv63HaE"},{"topic":{},"division":"","language":"English","link":"","tournamentID":"4BdwKPHB1LrpVYqE4E51","round":"3","infoSlide":"","content":"THS facilitating massive emigration as a response to oppressive regimes.","id":"byzMDWyXeMgPnBZYIUxa"},{"content":"TH supports Barack Obama's statements that emphasise African- Americans taking individual responsibility for improving their own position in life.","division":"","link":"","topic":{},"infoSlide":"","tournamentID":"UfGg9gZEXlU744RWE1Y1","round":"2","language":"English","id":"bz7CJ0fsvbcuQaHjsuDP"},{"division":"","infoSlide":"","tournamentID":"nKWTDNECNNvbMxNcdVJM","topic":{},"round":"1","link":"","content":"THS online piracy in developing countries.","language":"English","id":"bzaqoPR3P5hM9xtpcM9h"},{"infoSlide":"","division":"","link":"","round":"4","topic":{},"content":"THW, by worker referendum, allow employees to set the salaries of their top executives.","language":"English","tournamentID":"aywt5Kt0TqoeqngKQ0I4","id":"bziUrdBIk0Y4Y5mOHSFC"},{"round":"4","topic":{},"tournamentID":"Pr7RhJp1TWbTZsqRvQt4","link":"","language":"English","division":"","content":"Assuming that Joe Biden wins the presidential election, THBT the US should continue to pursue antagonistic and confrontational trade strategies against China (engaging in trade wars, etc).","infoSlide":"","id":"c04EhpASBKgQeKVN0t2u"},{"tournamentID":"3VTSywK012zU6GDLqZzC","topic":{},"division":"","content":"THB Women Are Legitimate in Using Erotic Capital.","link":"","infoSlide":"","round":"3","language":"English","id":"c0SLWpgfifyBGwweCf6d"},{"round":"Open_Finals_3","topic":{},"infoSlide":"","tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","language":"English","link":"","content":"That the West should select and train local activists to oppose 'third termist' leaders (those trying to subvert or remove term limits) in Sub-Saharan Africa.","division":"","id":"c2CcJb5T8VX0zTFP7Hc3"},{"round":"Open_Final","tournamentID":"uES9ygXHa8tJuYB7dFEM","language":"English","content":"TH, as Iran, would cease all support for military groups in the Middle East (e.g. Hezbollah, Hamas, Houthis etc).","infoSlide":"","topic":{},"division":"","link":"","id":"c2Eg6k7HTwUIOL7jBMjo"},{"language":"English","infoSlide":"","tournamentID":"EWgHoIX1nWCnY5U0tfPp","topic":{},"division":"","link":"","round":"2","content":"TH as Ukraine would join Russia led economic bloc rather than the EU free trade account.","id":"c2jwiQBlXSVl7Td94T0A"},{"tournamentID":"AhKyFYR1ZI0UjUmZnaXu","content":"","topic":{},"division":"","link":"","round":"Grand Final","language":"English","infoSlide":"","id":"c2nDKuGxgXvkZ8PuGTQc"},{"tournamentID":"TAVBVNzO0c2PrQ44iAyC","topic":{},"language":"English","round":"5","division":"","link":"","infoSlide":"","content":"THBT all democracies should ban relatives of past office holders from running for election.","id":"c3bxMi8rLscAgmqGbNYI"},{"topic":{},"round":"3","content":"Should companies have to justify the labour conditions of their suppliers in their yearly financial reports?.","division":"","link":"","tournamentID":"1cqzoXItQEaNAhU2qjNL","language":"English","infoSlide":"","id":"c40wf6bfrASja1srbu40"},{"content":"This House supports the decline of oil prices.","round":"Open_Semi","infoSlide":"","tournamentID":"XzAs4cMVeW91DHEgxF0k","link":"","division":"","language":"English","topic":{},"id":"c4ceG7v9x3qNFmKGbeHz"},{"round":"Open_Finals","content":"THS the use of private military contractors in the developing world.","division":"","infoSlide":"","link":"","topic":{},"language":"English","tournamentID":"PRCVo2dP9UPdRU9tVW31","id":"c4qjE5mTi1IM51C5oCpP"},{"division":"","topic":{},"round":"Open_Final","infoSlide":"","language":"English","link":"","tournamentID":"kM1DLhtxZLQbdLIScfM9","content":"THR the decision of Clinton supporters in the immediate aftermath of the 2016 US election to frame the Trump victory as the result of misogyny and racism and not opposition to the political establishment and/or neoliberalism.","id":"c5QSHXDZS6oKhYnhqp92"},{"topic":{},"language":"English","content":"THBT the Baltic states should ban Russian state-backed TV channels.","link":"","tournamentID":"puG4GbGRMRGTQ4eS4GHp","round":"5","division":"","infoSlide":"","id":"c5Y6MCacnPX56GhpoH40"},{"round":"2","topic":{},"link":"","division":"","tournamentID":"qvnbu5KYCFZ7nM9hTZ2E","infoSlide":"","content":"This house supports the government suing meat producers/distributors to recover health care and environmental costs incurred by meat consumption.","language":"English","id":"c7kM0fMJZGAUCzVyFziB"},{"division":"","round":"1","link":"","language":"English","topic":{"environment":{"title":"Environment","check":true}},"infoSlide":"","content":"THW ban scientific studies showing medicinal uses of wild animals (rhino horn, bear bile).","tournamentID":"sgcqNV5ntCoa4H8glRBu","id":"c840E9vTl892T3P1XZxg"},{"language":"English","link":"","round":"2","content":"THW ban standardized testing.","tournamentID":"VQZZXpisO7Sjz81KUlh9","infoSlide":"","division":"","topic":{},"id":"c84jNgTLWqNbhDBxM07I"},{"tournamentID":"dxiwBIWlq2trjdp62R0U","division":"","round":"1","topic":{},"content":"If the tech to do so were available, THW allow disabled parents to ensure their children are born with their disabilities.","link":"","infoSlide":"","language":"English","id":"c84l5WcXIdh6jTbsyDro"},{"round":"1","infoSlide":"","language":"English","tournamentID":"6NSl7moQPnBVA2R4Z66b","link":"","content":"This House welcomes complete video surveillance systems of public spaces in cities.","division":"","topic":{},"id":"c8P9kij8kGUC5IReObVX"},{"division":"","content":"Assuming the technology to significantly alters the body exists (eg, changing memory capacity, limb reinforcements...) thw recognize a right to morphological freedom.","infoSlide":"","language":"English","link":"","round":"4","topic":{},"tournamentID":"PGbz2bx1wifAEJU64jdo","id":"c8jaVqe6IV42OYGkXMoT"},{"infoSlide":"","content":"This House prefers a world without the Neuralink.","round":"ESL_Semis","tournamentID":"wA1XDLHJESmSgLsfZ9Qe","language":"English","division":"","topic":{},"link":"","id":"c9EoS3muvjgB9ZCvAjwC"},{"link":"","infoSlide":"","topic":{},"tournamentID":"uqR5rN63m5rX9CiOtJjb","language":"English","content":"THW ban any form of inheritance.","round":"4","division":"","id":"c9IblSXSxv3Io1eOR5Ja"},{"round":"","division":"","content":"Chúng tôi tin rằng các nước phát triển nên bị buộc phải chấp nhận những người dân tị nạn do biến đổi khí hậu.","language":"Vietnamese","link":"","topic":{"environment":{"title":"Environment","check":true}},"tournamentID":"3B01KdqnCVzQEVjKcHiT","infoSlide":"","id":"c9L2T1MvDXU1z25qefae"},{"topic":{},"infoSlide":"","tournamentID":"xFs2K66Nme7uYTCMS6Vw","link":"","language":"English","content":"THBT NATO members should not sell weapons to non NATO members.","round":"Open_Final","division":"","id":"c9esSwokPodw4x3dstRC"},{"link":"","division":"","topic":{},"language":"English","round":"3","content":"In the middle of the 19th century: THW stop export of food products from Ireland until the Great Famine ends.","infoSlide":"","tournamentID":"0Z9IiWTQjupe7Jbemo9Y","id":"c9xEykYUt5LN6NqXRvpu"},{"topic":{},"round":"1","link":"","content":"THBT all teachers should openly declare their sexuality to their pupils.","tournamentID":"aT0uKXAE6J8EslDVKzO1","language":"English","division":"","infoSlide":"","id":"c9xztVNeIOxIgMSO2Z1z"},{"division":"","content":"THW implement substantial measures to impose long-termism in corporate investment culture (eg. minimum holding periods for shares, yearly rather than quarterly financial reporting, long term executive compensation plans).","round":"1","link":"","topic":{},"infoSlide":"","tournamentID":"uES9ygXHa8tJuYB7dFEM","language":"English","id":"cA0MxvM7vsfwSBnUARYD"},{"language":"English","topic":{},"round":"4","content":"THW impose legal obligations on major online media companies (YouTube, Twitter, Reddit, etc.) to censor the Manosphere. (e.g. blocking accounts, taking down content).","division":"","infoSlide":"","link":"","tournamentID":"if0ptVr0NjWKFiLehpRT","id":"cA7hLfiYVLJOOOxeyY5A"},{"round":"EFL_Semis","tournamentID":"t2juKb62UT5HJ0kruUAw","content":"This House would use faith based rehabilitation in prison.","topic":{},"infoSlide":"","division":"","language":"English","link":"","id":"cAXsF335cDYh5YKs90H9"},{"round":"2","division":"","language":"English","content":"THBT democracies should hold new elections immediately after the end of COVID-19.","tournamentID":"7eFEPGI7iZMY9BTHG43T","link":"","topic":{},"infoSlide":"","id":"cB3vGD7vAzdB6wzJTjbo"},{"content":"Chúng tôi lấy làm tiếc về quan niệm \"hy sinh là điều kiện cần thiết cho hạnh phúc\".","topic":{},"division":"","language":"Vietnamese","tournamentID":"OLVGf3rE3KKirerr2vyk","infoSlide":"","round":"Semifinals","link":"","id":"cBGZwa886u43axVGjvqY"},{"link":"","infoSlide":"","division":"","language":"English","topic":{},"content":"THS the existence of dual-legal systems for minority religious communities.","tournamentID":"DWR60IgakRS9N3GeNemc","round":"3","id":"cBylV6ghKU0xcEo1onZ4"},{"content":"THW sentence repeat offenders to life imprisonment.","topic":{},"infoSlide":"","division":"","link":"","round":"Novice_Final","language":"English","tournamentID":"keyU5X5APEvFXLaZwxeM","id":"cCPvFXUdXDFNw6wDZgYR"},{"content":"Chúng tôi, với tư cách những người làm giáo dục Việt Nam, sẽ dạy sinh viên kỹ năng giao tiếp trên bàn nhậu.","division":"","round":"1","link":"","language":"Vietnamese","tournamentID":"mkrRVvz5EWSZie6LBtCH","topic":{},"infoSlide":"Kỹ năng giao tiếp trên bàn nhậu là những kĩ năng để làm việc, đàm phán và gây dựng mối quan hệ ở những nơi nằm ngoài môi trường làm việc (thường là bàn nhậu).","id":"cCXCzplNwXY1kYG73KBX"},{"tournamentID":"VZL2SmUXq00WGPbW0ZRt","language":"English","infoSlide":"","content":"THBT the LGBT movement should abandon the claim that sexuality is not a choice.","topic":{},"link":"","round":"4","division":"","id":"cCerwuQMYYzVOz4AcgqM"},{"infoSlide":"","tournamentID":"xDjVbl80WAVFcLqsVPo5","round":"2","language":"English","content":"This House Believes that juries should only include individuals that are from the same socio-economic class as the defendant.","division":"","link":"","topic":{},"id":"cD3UXhMErTL2IqzvuKXe"},{"round":"Novice Quarterfinals","tournamentID":"yDvj9tks9IvE2CTAVfzV","division":"","infoSlide":"","link":"","topic":{},"language":"English","content":"TH prefers the hypersexualisation of men rather than the desexualisation of women.","id":"cD9ptYKRO4ddV8I3KoPn"},{"link":"","division":"","round":"2","infoSlide":"","topic":{},"content":"THW rewrite sexist, racist or otherwise discriminating passages in opera libretti.","tournamentID":"9sZiZ9uPaGSIYSFdM4VZ","language":"English","id":"cEtem6BBmmXYQkvsI2EC"},{"link":"","language":"English","round":"4","content":"THP a world with radical honesty.","infoSlide":"","tournamentID":"nKWTDNECNNvbMxNcdVJM","topic":{},"division":"","id":"cEuSh5yBVP3vWeVwrtet"},{"language":"Vietnamese","topic":{},"round":"3","link":"","division":"","infoSlide":"Chủ nghĩa lạc quan sinh thái tập trung gửi thông điệp phong trào môi trường xung quanh những câu chuyện thành công của nó và giảm thiểu việc sử dụng sự diệt vong và các con số chết chóc.","tournamentID":"znXRdnU2llK8fXmHlci5","content":"Chúng tôi tin rằng các phong trào môi trường nên áp dụng thông điệp về chủ nghĩa lạc quan sinh thái hơn là chủ nghĩa bi quan.","id":"cFBIacCUuJMo1Kg9oTnO"},{"infoSlide":"","content":"THBT children in the West Bank should be educated in integrated schools (integrated school is one where students sit in the same classroom and share all facilities irrespective of background (including religion, culture or ethnicity)).","round":"4","division":"","link":"","topic":{},"tournamentID":"Kv7YNlz47VitorsH2zY7","language":"English","id":"cGWWWbE8faH9xg2RZZoC"},{"infoSlide":"","topic":{},"division":"","language":"English","content":"THBT the United States should offer significant military aid, lifting of sanctions, and economic aid to the Venezuelan military if they oust Maduro and support Guaido.","link":"","round":"6","tournamentID":"6AnUBd9SLIBHmD9Uy5dS","id":"cGoHDxYyuA45HhqHcfK8"},{"link":"","content":"THBT feminists should support the HeForShe movement.","tournamentID":"uEekEeJIfFAC4OJWJglf","language":"English","division":"","round":"3","infoSlide":"","topic":{},"id":"cGwumVzd5ie1cWWjRZYf"},{"language":"English","topic":{},"tournamentID":"SGpBjVPnJkFrJB0hnxYv","link":"","round":"2","infoSlide":"","content":"THR the rise in political consumerism.","division":"","id":"cHAVLe4IfAlWBeb0nH0p"},{"content":"THW implement a weighted voting system, where your vote counts less and less the older you get.","language":"English","topic":{},"tournamentID":"02vn4ksQhlUNksv2wu0q","division":"","round":"5","infoSlide":"","link":"","id":"cHpXQ0OsEOcaGKtLEdLn"},{"tournamentID":"WuHMyE7RKYgEDPOjOxp6","language":"English","content":"TH regrets the USA's decision to leave the UNHRC.","infoSlide":"","round":"1","division":"","link":"","topic":{},"id":"cIE8TzANJKoHCyaLSe5M"},{"content":"That the West should seek to fund moderate Islamic religious groups in the Middle East.","topic":{},"link":"","tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","language":"English","division":"","infoSlide":"","round":"3.3","id":"cIQq2VM90nGyGaXnjNTz"},{"tournamentID":"A8uW9F7TCtUhRLICBZWb","round":"3","link":"","content":"THW allow businesses to pay employees who agree not to have children more in wages.","infoSlide":"","topic":{},"division":"","language":"English","id":"cIU5I9Bx8dNAoSVzOYST"},{"content":"THO the privatization of schools for gifted students.","tournamentID":"37eWQ7OoHqsPgaN53lHV","link":"","topic":{"education":{"check":true,"title":"Education"}},"language":"English","infoSlide":"","division":"","round":"","id":"cJJLFSkoKljsCQEjmV9B"},{"content":"THW tell the whole truth.","language":"English","link":"","round":"3.5","tournamentID":"1leOvfvlbNAIDzW6UnkK","division":"","topic":{},"infoSlide":"","id":"cKCen22N2RbxPCbgpUjm"},{"topic":{},"division":"","round":"4","tournamentID":"013M8EetYEKwpGlokURQ","infoSlide":"","language":"English","content":"THBT Pope Francis should openly endorse radical left political parties and candidates.","link":"","id":"cKEhtvYxMNp8fLiFuH72"},{"link":"","topic":{},"division":"","infoSlide":"","tournamentID":"zeR0rFnynHhmmEJ04jfo","content":"THW hold football clubs criminally liable for the actions of their fans.","language":"English","round":"1","id":"cKt1VT8rWSA8s62YdTRJ"},{"tournamentID":"mxxjZaa0262HoUjjXfj8","infoSlide":"","round":"5","division":"","topic":{},"language":"English","link":"","content":"THP a world with one dominant global power, rather than several competing global powers.","id":"cKy4HPi5HTVQcG0OrnF5"},{"infoSlide":"","division":"","topic":{},"link":"","language":"English","round":"5","tournamentID":"efp9mMZFiy8fVwkom17I","content":"THW nationalize pharmaceutical research.","id":"cL7CgaNbAKEWyb58XAl8"},{"round":"2","link":"","tournamentID":"Y81hIZM2YzXWwwRuxR0R","language":"English","topic":{},"infoSlide":"","division":"","content":"THR the narrative that humans are innately bad.","id":"cL7V9QD3KFlexdTmXxXf"},{"division":"","infoSlide":"","link":"","content":"In times of war, THBT relatives of civilians killed by the military occupation, should be able to sue the soldiers responsible for their relative’s death in civilian court.","tournamentID":"8QddgLiIoLsA9YscCujR","language":"English","topic":{},"round":"Open_Final","id":"cLiP3Opaj3EVu75KfLBK"},{"tournamentID":"BsGevifhMX1weZjFgh7y","topic":{},"round":"4","content":"THBT the T should leave the LGB.","infoSlide":"","link":"","language":"English","division":"","id":"cLyM3C9uWjIoUMKh40y5"},{"infoSlide":"Các nhân viên thế hệ Z (1990-2003) có các hành vi chống đối môi trường làm việc của Trung Quốc bằng cách nghỉ ngơi, lười biếng, không chịu làm thêm giờ và trốn trong nhà vệ sinh. Họ tin rằng điều họ đang làm là chống đối một nền văn hóa làm việc hiện đại mà họ cho là đòi hỏi quá cao mà không có đủ lợi ích.","content":"Chúng tôi phản đối quan niệm “Thừa nước đục thả câu” của công nhân viên tại Trung Quốc.","division":"","language":"Vietnamese","link":"","tournamentID":"i00RSzvK4b1TDEgnpFJd","topic":{},"round":"Grand Final","id":"cMfdxW13lB8sYsDzrdWn"},{"link":"","topic":{},"tournamentID":"UlbXxRnvnqr2PXimcFud","content":"THBT schools should teach children from first-generation immigrants in the language of their parents.","round":"2","division":"","infoSlide":"","language":"English","id":"cMrYAZBZhCldM7cLa9lJ"},{"content":"Chúng tôi tin rằng một xã hội chỉ có 1 nền văn hoá tốt hơn 1 xã hội đa văn hoá.","round":"","language":"Vietnamese","division":"","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"tournamentID":"OqQWJjNQBpGOYwMntw3z","link":"","infoSlide":"","id":"cNSSFCp6BDKLtTiIyzza"},{"link":"","round":"6","content":"THBT newlyweds should take a Rumspringa after one year of marriage.","division":"","infoSlide":"","tournamentID":"DvsGvQWaYzshd3lSsDGu","topic":{},"language":"English","id":"cNbGRh2plHfiVe4A2I33"},{"division":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","link":"","language":"English","topic":{},"round":"Open Quarterfinals","content":"TH, as a prominent religious leader of a major organised religion, would promote any scripture/interpretation/doctrine that says that the determinant factor of entering heaven is good deeds and not the level of faith/piety.","infoSlide":"","id":"cPc7gW1dzpJlQt20xWQs"},{"infoSlide":"","division":"","content":"This House believes that Western States should irrevocably remove citizenship of citizens who join the so-called Islamic State.","link":"","round":"1","language":"English","tournamentID":"jpLuasMJYB40s1bJk2Ia","topic":{},"id":"cQyQSTeiPCuNo0wK71ih"},{"content":"THW require prospective parents to obtain parenting licences prior to having children.","infoSlide":"","tournamentID":"ch7bmkDPz31zOvzM3txF","round":"1","language":"English","topic":{},"link":"","division":"","id":"cRM3RHXZeAfYdcjlwGqj"},{"infoSlide":"","tournamentID":"Ke3vqa3ZpQMmG6mDtn1z","division":"","language":"English","link":"","round":"4","topic":{},"content":"This house, as the US government, would break up Facebook, inc.","id":"cRqUJSUFhMrLor24Ml97"},{"topic":{},"round":"Semifinals","tournamentID":"i00RSzvK4b1TDEgnpFJd","link":"","language":"Vietnamese","infoSlide":"Xã hội hậu xung đột là một hình thái xã hội đã đạt được trạng thái hòa bình sau cuộc nội chiến kéo dài, nơi mà các tổ chức chính phủ, phi chính phủ và các tổ chức quốc tế nỗ lực để ổn định chính trị, kinh tế, quân sự và cấu trúc xã hội thông qua các dự án tái thiết.","content":"Trong xã hội hậu xung đột, chúng tôi ưu tiên sự sáng tạo của nghệ thuật truyền cảm hứng và đồng nhất thông điệp hơn là các hình thức nghệ thuật miêu tả sự đau khổ trong quá khứ và hiện tại.","division":"","id":"cTOr5giUz5eZgHl9qZYH"},{"infoSlide":"","link":"","language":"English","tournamentID":"JTOMyeCSk6IujHBgAOMi","content":"THW reinstitute the Gold Standard.","division":"","round":"6","topic":{},"id":"cTVYL198WmGgx4d5XZ2v"},{"language":"English","division":"","tournamentID":"Tix5aGpgWpddb7Va0oe6","content":"THW ignore the snake and not eat from the fruit.","link":"","round":"2","infoSlide":"","topic":{},"id":"cUJfbCbp0cu3TyyqqVRH"},{"infoSlide":"","topic":{},"tournamentID":"tp2xo2eFva2we2bqlQBC","division":"","content":"This House supports the US’s use of economic warfare (eg. tariffs, targeted sanctions, etc.) against China in order to force compliance with the rules of the global economic order (eg. opening up its economy, protecting intellectual property, not engaging in currency manipulation, etc.).","round":"2","language":"English","link":"","id":"cVaJxTLv3ezEP4NJcP1f"},{"infoSlide":"","language":"English","round":"Open_Final","division":"","topic":{},"tournamentID":"Nzien6R9RXvOTrNMJsza","content":"This house prefers process-based to outcomes-based environmental regulation.","link":"","id":"cWnOwZProongqmYAt6US"},{"tournamentID":"3um2E0WAP1AdkOXCUDfL","round":"1","infoSlide":"","content":"Should private kindergartens and schools be abolished?.","language":"English","link":"","division":"","topic":{},"id":"cWntMg4YTQjSDaAXJDpv"},{"infoSlide":"","language":"English","topic":{},"division":"","round":"1","content":"THW tax religious institutions.","link":"","tournamentID":"P4io30tN10TYMqGkj2sX","id":"cXhcArovn0E4yCYrWgmw"},{"link":"","language":"Vietnamese","topic":{"politics":{"title":"Politics","check":true}},"infoSlide":"","division":"","round":"","content":"Chúng tôi sẽ lựa chọn 1 xã hội ưu tiên giảm đói nghèo toàn cầu hơn giảm đói nghèo trong quốc gia của họ.","tournamentID":"CJKUeBIUibEtZYahoUQV","id":"cXu5q3feT4wzhT53LWce"},{"topic":{},"infoSlide":"","link":"","tournamentID":"Gx29hnXeBrSjBZrrDKx8","content":"THW welcome an isolationist America.","division":"","round":"Open_Final","language":"English","id":"cYsshDs2gShACJFH7kjJ"},{"infoSlide":"","tournamentID":"4ENxr34b5j7GiIcVWnv9","language":"English","round":"1","content":"THW legalize the sale, production and consumption of drugs.","topic":{},"division":"","link":"","id":"cZDoM8vEsmvjTofULNGQ"},{"language":"English","content":"THBT Scotland should immediately announce a second referendum on independence from the UK.","topic":{},"tournamentID":"6AnUBd9SLIBHmD9Uy5dS","infoSlide":"","round":"2","division":"","link":"","id":"cZfUUnoFg6ObHeZw9ujB"},{"link":"","topic":{},"language":"English","division":"","tournamentID":"1lhrrHzfpU4TfWb63MLz","round":"5","infoSlide":"","content":"Should we, who are technically capable of it, seek contact with extraterrestrials?.","id":"caBaDUD8SItmiy832K15"},{"content":"THW prohibit businesses from adopting a public position on social justice issues (e.g. LGBTQIA+, racial relations, abortion, etc).","language":"English","link":"","division":"","topic":{},"round":"Open_Semi","tournamentID":"QePDCf8cQ2AX4XfcvR3T","infoSlide":"","id":"caTaAT6FshEeRGYa6JU2"},{"tournamentID":"F966uo3Po2bRFWfFesTz","content":"TH, as China, would abandon all claims on the Senkaku Islands.","topic":{},"link":"","round":"3","division":"","language":"English","infoSlide":"","id":"cbEXMfrkSwOqoO1eA9iE"},{"round":"4","tournamentID":"CBVZREYhjV5bhCHOuWjU","infoSlide":"","content":"THW prohibit criminals publishing glorifying or sensationalist accounts of their crimes.","language":"English","division":"","topic":{},"link":"","id":"cbRf4CiYyRuRKZxY9WbC"},{"tournamentID":"37eWQ7OoHqsPgaN53lHV","topic":{"education":{"check":true,"title":"Education"}},"round":"","link":"","infoSlide":"","language":"Vietnamese","content":"Chúng tôi sẽ bắt buộc con cái từ 18 tuổi trở lên sẽ trả lại khoản tiền mà cha mẹ/người bảo hộ đã dùng để nuôi nấng họ.","division":"","id":"cbRh4caz9Cg3B4dd2Qf8"},{"topic":{},"content":"In proportion to under 30s population, THW reserve seats in parliament for 18-30 year olds.","language":"English","link":"","round":"4","tournamentID":"l8sHmpUe0bZ9QUWrf0pm","infoSlide":"","division":"","id":"cbaT6pH45v4g5LEgkcXM"},{"division":"","content":"THBT High Schools should not award the titles Prom King and Prom Queen at the Senior Prom.","link":"","tournamentID":"K2iCOiuVrS3D8RzjGpNe","round":"1","language":"English","infoSlide":"","topic":{},"id":"cc1FeSlmFyXmSH38t19k"},{"link":"","division":"","infoSlide":"","tournamentID":"HjQJA65fZ9igHKO8DLAP","language":"English","round":"4","topic":{},"content":"That the United States should immediately abolish private health insurance and establish Medicare for all.","id":"ccAx8VIDx5d0iW0JufZF"},{"division":"","content":"THW impose a tax on men to reduce the gender pay gap.","tournamentID":"wn4DAqBcGTWBviyQc0CR","link":"","language":"English","topic":{},"infoSlide":"","round":"Open_Final","id":"ccdSXg2IUvtwKkuHRjFD"},{"language":"English","infoSlide":"De-transition is the cessation or reversal of a transgender identification or gender transition, whether by social, legal, or medical means.","tournamentID":"1dwGdjAn9pODo8bQfmJW","link":"","topic":{},"content":"THBT the trans movement should equally recognize the legitimacy of the detransitioning narrative to other trans narratives.","round":"Open Pre-Semifinals","division":"","id":"cekz2CiT7pKfR7he3kgv"},{"round":"","division":"","language":"Vietnamese","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"link":"","tournamentID":"KE7jdAyW9az9nKVb9FMV","infoSlide":"","content":"Chúng tôi tin rằng sự phát triển của mạng xã hội với vai trò là nguồn cung cấp tin tức chính đem lại nhiều tác hại hơn lợi ích.","id":"cf36bMy6leEEtl4cgmLQ"},{"round":"3","tournamentID":"y0zBNckmXRI4bCqMyXLg","content":"THW suspend trade unions and labour protection laws at times of economic crisis.","topic":{},"infoSlide":"","language":"English","division":"","link":"","id":"cfADZLMXq1B3bdZpFVOG"},{"tournamentID":"MKnFsrIKq8equaMluK21","topic":{},"language":"English","round":"4","link":"","infoSlide":"","content":"THBT democratic reform is more important than economic growth for China.","division":"","id":"cg5D8aDSJ1c0IrVCWVTC"},{"round":"4","topic":{},"tournamentID":"x0mst3SfcsgMKKZ3eg7G","division":"","content":"TH regrets this trend.","link":"","language":"English","infoSlide":"","id":"cgRg4tX2g2gzFAsTPItU"},{"tournamentID":"i00RSzvK4b1TDEgnpFJd","round":"Grand Final","topic":{},"content":"Chúng tôi phản đối lối sống DINK.","language":"Vietnamese","link":"","infoSlide":"DINK là viết tắt của “Dual/Double Income No Kids”, nghĩa là lối sống thu nhập nhân đôi, không có con cái. Lối sống này được cho là bắt nguồn từ những năm 1980 ở những nước đã phát triển, khi mà các cặp đôi có thu nhập ổn định, mức lương khá, suy nghĩ tiến bộ, có học thức quyết định lựa chọn kết hôn để chia sẻ các vấn đề về tài chính và không sinh con.","division":"","id":"chTtE8zN3RfGFoaT7p6i"},{"round":"Open_Semi","language":"English","tournamentID":"9mfNKBqpq9HzOZ9GltTe","division":"","content":"This House would make soldiers, upon return from the battlefield, take a pill that lets them forget about the war.","infoSlide":"","link":"","topic":{},"id":"chb39SUd5Xo4OtImBbiV"},{"tournamentID":"YbdPFTE9FbO3iQjZo87D","topic":{},"division":"","round":"ESL_Semis","content":"THBT the US Democratic Party should prioritise employment issues, even at the expense of significant harms to the environment.","language":"English","link":"","infoSlide":"","id":"cho1rQx80YaXOxYkbHz0"},{"topic":{},"content":"This House Prefers a world with city-states governed by an elected global leadership to the current predominance of nation-states.","round":"Open_Final","infoSlide":"","division":"","tournamentID":"7l98EUanZ85SaCAlZg2X","link":"","language":"English","id":"chxKv8QRb6yvVtpAxi87"},{"language":"English","tournamentID":"9STOHMmWtLnanVavJzB2","infoSlide":"","round":"Novice_Final","content":"TH as Western Countries ( EU, US, Canada, Australia) would stop selling arms to Saudi Arabia.","topic":{},"link":"","division":"","id":"ciYSpEhuGzJiJD1lWpZa"},{"content":"As a Parent, THIW Raise its Child Gender Neutral.","infoSlide":"","link":"","topic":{},"tournamentID":"WqsdOIKQnJkQdFDBVNtA","language":"English","round":"4","division":"","id":"cinkE81zJFvmPrzB86Uk"},{"round":"3","division":"","tournamentID":"0anPdjjejinL3DGvB4L1","content":"THW heavily penalise corporations for punishing their employees for engaging in legally permitted speech.","topic":{},"infoSlide":"","link":"","language":"English","id":"clIoc9aU5jNBPq40UlBM"},{"content":"THW Remove All UEFA's Limits on Football Club Spending (which includes transfer and salaries).","link":"","infoSlide":"","language":"English","division":"","tournamentID":"xeyFK25uSH9TtPga8ALE","round":"1","topic":{},"id":"cm9Frf9MO11Dof86b7tm"},{"division":"","language":"English","link":"","tournamentID":"D3NiQxizKJ06MnU4DU06","infoSlide":"","round":"Open_Final","topic":{},"content":"THBT the state has no responsibility in protecting intellectual property rights.","id":"cmCY2QSLvVR5Dh8B3MWR"},{"tournamentID":"xixMAepJqW9TAZSYVdsR","topic":{},"infoSlide":"","division":"","link":"","round":"Open_Semis","language":"English","content":"THBT the United States and its allies should abandon the use of gay rights diplomacy in developing nations.","id":"cmKbrkNpvl3kD29a1wfI"},{"division":"","link":"","tournamentID":"OyqUfVFCTQ5A8iecmNK1","round":"Grand Final","language":"English","topic":{},"content":"THR the glorification of soldiers as heroes.","infoSlide":"","id":"cmV57YXTiqX8z96HQvY9"},{"content":"THW ban religious preachers in the public sphere.","division":"","language":"English","infoSlide":"","tournamentID":"D8wxxb57dF9p7tV8985s","link":"","topic":{},"round":"1","id":"cmXzc1DrCRUxH7OzZhXm"},{"topic":{},"link":"","language":"English","content":"THBT if it isn't broken, break it.","round":"13","tournamentID":"DSFg77BvC9y4FK5pBVIv","division":"","infoSlide":"","id":"cmp038wuXWK8FKHPILf7"},{"language":"Vietnamese","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"content":"Chúng tôi ủng hộ thế giới nơi mà tất cả đất đai thuộc quyền uỷ thác của Chính phủ và được cho thuê theo hợp đồng có thời hạn.","division":"","infoSlide":"","round":"5","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","link":"","id":"cn2H2Bj7ilYsnY5pXsZy"},{"content":"THW eliminate student attendance score.","topic":{"education":{"title":"Education","check":true}},"infoSlide":"","round":"","language":"English","link":"","division":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","id":"cn6pkXVPQyzPzRAQ5Wve"},{"topic":{},"link":"","infoSlide":"","content":"In memory of Nelson Mandela: The year is 1985, THS Paul Simon in breaking the cultural boycott of Apartheid South Africa (for the making of the future Graceland album in collaboration with black musicians).","language":"English","tournamentID":"KauhYz2zVxnSCnoC8XMr","division":"","round":"5","id":"cndKDYOjMEfuoxI7aSid"},{"link":"","language":"English","round":"Open_Final","infoSlide":"","content":"This house believes that feminism is incompatible with capitalism.","topic":{},"tournamentID":"qvnbu5KYCFZ7nM9hTZ2E","division":"","id":"cpAk44MWdeIXHc9w2iB7"},{"division":"","language":"English","round":"7","tournamentID":"QePDCf8cQ2AX4XfcvR3T","topic":{},"content":"In countries with proportional representation, THS founding political parties that exclusively represents women’s interests / En países con representación proporcional, EC apoya la creación de partidos políticos que representan exclusivamente los intereses de las mujeres.","link":"","infoSlide":"","id":"cpBxyjIbMbfHoG5MXNl5"},{"round":"","infoSlide":"Microaggression is a term used for brief and commonplace daily verbal, behavioral, or environmental indignities, whether intentional or unintentional, that communicate hostile, derogatory, or negative prejudicial slights and insults toward any group, particularly the culturally marginalized ones. Microaggresions can appear to be a compliment or a joke, but contain a hidden insult about a group of people. Microaggressions differ from macroagressions, which are more extreme forms of discrimination (such as lynchings or beatings) due to their ambiguity, size and commonality.","tournamentID":"3B01KdqnCVzQEVjKcHiT","link":"","division":"","language":"English","topic":{"hr":{"check":true,"title":"Human Relationships"}},"content":"THR the strategy of publicly shaming people for microagressions.","id":"cpCgX1O2DbrfXsplQ2Sg"},{"infoSlide":"","link":"","division":"","topic":{},"language":"English","tournamentID":"IliTD9CbISxS4XPApnIH","content":"THBT developing countries should never hold major international sporting events.","round":"1","id":"cpJuDA63MHmyY6508bNx"},{"link":"","infoSlide":"","topic":{},"division":"","round":"Open_Final","tournamentID":"tGXgNi0S9KFBe1hUBu15","content":"THW create specific zones where community members can legally participate in nonviolent, illicit behavior (e.g. sex work, drug use).","language":"English","id":"cpzaSIbtgd6d3kJeTmou"},{"infoSlide":"","link":"","round":"Semifinals","topic":{},"division":"","tournamentID":"XnmecTVfWWNVfWZaANER","language":"English","content":"THBT rehabilitation should be the only consideration in criminal sentencing.","id":"cqAGA5YJErbjgtN4PRyH"},{"topic":{},"infoSlide":"","language":"English","tournamentID":"MgpFX31hoBasrUiOV7Eu","round":"1","division":"","link":"","content":"THR the decline in influence of ‘gatekeeping’ media institutions (major newspapers, network news, etc.).","id":"cqhUk229RZJoYiXQ7Mrm"},{"division":"","infoSlide":"","language":"English","link":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","topic":{},"content":"That we prefer a world where social media networking sites are only available on a paid subscription basis.","round":"8","id":"cr5j1arqDUXMFcaXvpjX"},{"topic":{},"infoSlide":"","language":"English","content":"THBT the general educational approach in schools should be to discourage children from assessing their achievements in comparison to their peers. / ECCQ el enfoque general de la educación en los colegios debe ser desincentivar que los niños midan sus logros comparándolos con los de sus pares.","link":"","division":"","tournamentID":"QePDCf8cQ2AX4XfcvR3T","round":"6","id":"cr5tLnyqvX3jBjSjzTJ5"},{"language":"Vietnamese","infoSlide":"Ăn chay thuần: Không ăn tất cả các sản phẩm có nguồn gốc từ động vật.","tournamentID":"RF6WJZV8JYPwFqSpNxlR","division":"","topic":{},"link":"","round":"1","content":"Chúng tôi sẽ ép buộc toàn bộ người dân phải ăn chay thuần.","id":"cs0PMeCwRcxEPt4vKd3j"},{"round":"5","infoSlide":"","division":"","tournamentID":"GeB6bvqs5FhYEP99Q8Ax","language":"English","content":"TH Welcomes the rise of online news media at the expense of traditional journalism.","link":"","topic":{},"id":"csG1PkvlaUFwLriWcWcv"},{"language":"English","link":"","infoSlide":"","topic":{},"content":"THW replace the state pension with a state disability insurance.","division":"","tournamentID":"44zszGOLcUfUSx7uRJTD","round":"Open_Semis","id":"csIlqXvP0X9RnaOOptE3"},{"content":"THR The Fall of the Galactic Empire.","language":"English","tournamentID":"qLVUbjlIT84ro50ixBwk","division":"","infoSlide":"","round":"3","link":"","topic":{},"id":"ctbbL71axpA1dbnXgo2K"},{"infoSlide":"","division":"","tournamentID":"G40265rxZRrwSbZ3fQSJ","link":"","round":"Novice_Final","topic":{},"content":"Given the technological capability to disable their nuclear weapons, THW invade North Korea.","language":"English","id":"ctkg4rtZzUqOlPkHkD3P"},{"topic":{},"tournamentID":"S2mG18EWYdh2bPEadyd9","division":"","language":"English","content":"In multi party states with a significant ethnic minority population, TH supports the creation of political parties with the primary purpose of pursuing the interests of that ethnic minority group.","round":"Open_Quarter","link":"","infoSlide":"","id":"cuPYQuVzkqIa0tIaQ3lY"},{"content":"This house believes that the US should ban extremist groups (e.g. the KKK and neo-Nazi groups).","infoSlide":"","link":"","topic":{},"tournamentID":"6KzwZLwpFJv7ICEsknpO","round":"1","language":"English","division":"","id":"cv5v9sgKkaUsULpvUeuy"},{"content":"This House supports granting megacities autonomous control over their economic and social policy (e.g. immigration, health, criminal justice) with national taxation policy remaining under the control of the federal government.","infoSlide":"","language":"English","division":"","round":"6","tournamentID":"EP5HDm4G3OfMlciId6YM","topic":{},"link":"","id":"cvXTjej5n0o48rF786sk"},{"link":"","infoSlide":"","round":"5","content":"TH prefers a strong dictatorship to a weak democracy.","tournamentID":"Ba2zBwHOYMuoyQZQbecz","topic":{},"language":"English","division":"","id":"cwODBoprhTckzAMcfCgZ"},{"topic":{},"language":"English","round":"2","infoSlide":"","division":"","content":"THW out homosexual football players (or forcibly out those it knows about).","tournamentID":"TtoxDZeWyCKcOginS4mH","link":"","id":"cx0NngWAWIs65OqJx9QY"},{"division":"","link":"","infoSlide":"","round":"Open_Final","content":"THBT athletes should not be permitted to express political views during major sporting events.","topic":{},"language":"English","tournamentID":"sol1oNvzZmBI1NXc28Lh","id":"cxTOmmpDI7II9uEwZUOj"},{"topic":{"religion":{"check":true,"title":"Religion"}},"tournamentID":"CJKUeBIUibEtZYahoUQV","language":"English","link":"","division":"","content":"TH, as a religious leader, would fervently spread the notion that atheists can ascend to heaven.","round":"","infoSlide":"","id":"cxYS86nDJ5v2uGpoydYO"},{"tournamentID":"7gnlDrExulbBsH6xw0jx","infoSlide":"","round":"4","content":"THW introduce inheritance tax of 100%.","division":"","link":"","language":"English","topic":{},"id":"cxf9OGCZoZyH41CKAT5f"},{"round":"1.2","topic":{},"tournamentID":"1leOvfvlbNAIDzW6UnkK","link":"","language":"English","content":"THW \"Live as if you were to die tomorrow\".","infoSlide":"","division":"","id":"cyBajMi1JEpdQXHxa5Ro"},{"division":"","content":"THBT the USA should stop its military support of Taiwan.","topic":{},"tournamentID":"wYsVMTqiPYP1HFjzExu2","round":"1","language":"English","link":"","infoSlide":"","id":"cyih0iGcUtJbrqXAE13i"},{"link":"","division":"","round":"Open_Final","language":"English","infoSlide":"","tournamentID":"nXN2yUG7soxwCp4xidzj","topic":{},"content":"TH, as a police officer in the United States who witnesses a minor non-violent crime being committed by an African American individual, would refrain from arresting that individual - Grand Final.","id":"czR6DpzT0GQT2hfpzru8"},{"content":"Should debaters who win their first ZEIT DEBATTE stop participating in these tournaments as speakers?.","tournamentID":"5mJg23unORtxSJCvBzd9","language":"English","topic":{},"infoSlide":"","link":"","round":"2","division":"","id":"czdHgz6XIVz7CsSPGK8U"},{"link":"","tournamentID":"o7IbmAZdAZ1UWeWnX7IL","language":"English","content":"THBT post-colonial states should commemorate their war dead who died fighting for their former coloniser.","infoSlide":"","topic":{},"round":"5","division":"","id":"czhT179PjseIctm9E0vn"},{"round":"Open_Semi","division":"","link":"","language":"English","infoSlide":"","tournamentID":"Ke3vqa3ZpQMmG6mDtn1z","topic":{},"content":"THS Antifa.","id":"czivdlntGYJcuSisPcyR"},{"infoSlide":"","division":"","round":"Open_Final","content":"The technology exists to allow people to selectively erase their memories without any physical side effects. Motion: THW allow individuals to selectively erase their own memories.","link":"","tournamentID":"a40eH2E5w4GGnWQ3oDT6","language":"English","topic":{},"id":"czwVGhNkC8pa5pgEkdm3"},{"language":"English","round":"3","content":"TH, as a progressive individual, would not consume the works of artists who have committed or been accused of serious crimes.","link":"","infoSlide":"","topic":{},"tournamentID":"HcngLxXLU8ahxFRQkeYc","division":"","id":"d06nQ3zuF67Axlh4hspU"},{"link":"","round":"5","division":"","tournamentID":"x1XtlIYDR23OSfEzPpkf","topic":{},"language":"English","content":"THW ban extremist political parties.","infoSlide":"","id":"d0UBsJX3aUFsUJTVXs9M"},{"topic":{},"division":"","language":"English","infoSlide":"","tournamentID":"bvHOR7Oow9PPlKPlA2BT","round":"Open_Quarters_3","link":"","content":"THBT Western governments should renounce democratization of other states as a foreign policy objective.","id":"d17PzKkMSqrs0KE3pjP8"},{"link":"","language":"English","content":"In countries where gay marriage is legal THW abolish tax exemptions and cease funding of religious organisations that refuse to conduct same sex marriage or ban homosexuals from their services.","round":"Open_Semis","topic":{},"infoSlide":"","tournamentID":"ARfoyigbkuieCEyKI1GV","division":"","id":"d1G5n06IRY560FdDzSEN"},{"topic":{},"tournamentID":"7zFzGfa6wAGs2h8bbVhq","infoSlide":"","round":"5","content":"THW consign the European Union to the dustbin of history.","language":"English","division":"","link":"","id":"d29ahn24cpAivJD1boxo"},{"topic":{},"division":"","round":"Open_Final","link":"","infoSlide":"","content":"(paraphrased) THW ban automation.","tournamentID":"SU8WsMguqtUiTUErBeo7","language":"English","id":"d2ACPJjm6tuJHFpMA2MZ"},{"division":"","tournamentID":"zkhDsyR1rpDZXDiA2JUj","round":"3","topic":{},"infoSlide":"","content":"THB Enda deserved his place on the cover of TIME.","language":"English","link":"","id":"d3vz57eMT5T7nWDunNik"},{"division":"","topic":{},"infoSlide":"","language":"English","content":"“THB the IOC Should Ban Drug Cheats for Life”.","round":"14","link":"","tournamentID":"5ETrS816OeSAWdPhWEHf","id":"d4Ej50Ey5KbtDXiUQu0T"},{"language":"English","division":"","topic":{},"content":"This House would legalise the baby trade.","round":"Open_Semi","infoSlide":"","tournamentID":"5O13410pDrHfcvKnpppR","link":"","id":"d59TZqak70OcwOZn06uK"},{"round":"4","division":"","content":"THBT it was against the interest of Syrian Kurds to align themselves with the West in the Syrian Civil War.","language":"English","topic":{},"tournamentID":"p6ZWMCxUvbu1V0BT5gJg","link":"","infoSlide":"","id":"d5yvuNhfSzc1ctoHTLTD"},{"round":"1","language":"English","tournamentID":"Z9WBfg1yDJgSR34BGYp1","topic":{},"infoSlide":"In the universe of Digimon, “The Chosen Kids'' refers to a group of kids who were chosen by the Digimon world to battle against the evil with their Digimons. The reason for this divine plan is that they represent a crucial characteristic valuable to this world (i.e., braveness, hope, brightness, wisdom, etc.). Along with the battles, they have developed an intimate relationship with their Digimons. However, in the “The Last Evolution Kizuna”, because of the harshness of the real world and choices they had to make to become a grown-up, they were no longer innocent enough to represent those characteristics. Therefore, they lost their Digimons involuntarily. In this anime, Menoa, as one of the chosen kids who is reluctant to separate with her Digimon, created an imaginary world and lethargic other kids in their memory to enjoy those good times with their Digimons.","content":"TH, as the chosen kids, would choose to stay in the memory and be with their Digimons forever.","division":"","link":"","id":"d6hD9lYU3qTFrsiOB3DN"},{"content":"THW officially recognise Scientology as a religion.","tournamentID":"ShdZSmrzSQfbl0RYDnj8","infoSlide":"","division":"","topic":{},"round":"1","link":"","language":"English","id":"d7SKp3ZNOMLIi0Y7NPk9"},{"round":"Open_Final","division":"","content":"Assuming the existence of the Biblical God, THW never praise him.","link":"","infoSlide":"","topic":{},"tournamentID":"LjEl8Sog63zZMpDhsInz","language":"English","id":"d7vizlqIiHo6he1zHSZr"},{"content":"THBT feminist groups should reject legal presumptions that are favourable to women (e.g. presumptive custody for women, “women and children first”).","division":"","link":"","tournamentID":"DeCtrDtTjNPkklRZT0x6","topic":{},"infoSlide":"","language":"English","round":"3","id":"d82KaJoKJM2GYhOpGncc"},{"tournamentID":"fkUHa28aVk8LYYEAdofu","link":"","topic":{},"division":"","content":"That one should not offer to ‘give exposure’ to gain discounted goods or services from creatives.","language":"English","round":"1","infoSlide":"","id":"d8Z8GptEBQQoFNfwJh0j"},{"tournamentID":"BXqPhfwak2R1kYHV48bp","language":"English","round":"3","infoSlide":"","link":"","topic":{},"content":"TH, as a feminist, would oppose products marketed to help women protect themselves from date rape.","division":"","id":"d8ZdvnCZcQNdcPBsJU3Q"},{"division":"","round":"1","content":"This house supports deaf parents' choice to deafen their children in utero.","language":"English","link":"","tournamentID":"qvnbu5KYCFZ7nM9hTZ2E","topic":{},"infoSlide":"","id":"d8qIpVM1WKGQfDhM4KEA"},{"tournamentID":"aVcqgGmAccQ09iBh9iS1","topic":{},"link":"","language":"English","content":"THW suspend trade unions and labour protection laws in times of economic crisis.","division":"","infoSlide":"","round":"3","id":"d941YglqHeExvsKkvEhH"},{"content":"This house believes that Greece is better outside the Euro.","topic":{},"language":"English","tournamentID":"AbrZ6leGJBXAmv4md2Zw","link":"","division":"","infoSlide":"","round":"4","id":"d9Dys0tFnlQtCvevLMmn"},{"round":"4","link":"","content":"Should human rights be cancelled for those persons who violate human rights?.","language":"English","division":"","tournamentID":"dYmkkVK8aVn1dCgd4UDy","infoSlide":"","topic":{},"id":"dAKjkqqcAb4sZAspEzXh"},{"topic":{},"round":"4","language":"English","tournamentID":"uEekEeJIfFAC4OJWJglf","infoSlide":"","division":"","link":"","content":"THBT it is in ASEAN's long term best interests to seek closer ties with China rather than the U.S.A.","id":"dAOr2Ybc3bR0qf6YwhUH"},{"link":"","division":"","round":"Masters_1","language":"English","infoSlide":"","topic":{},"content":"This house regrets the passing of Bhutto.","tournamentID":"gsX4dlvvsr6lcKP3eM2T","id":"dAuocxrnQs2E7cAaZt1D"},{"link":"","division":"","content":"THO \"Humble Culture\".","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"infoSlide":"For the purpose of this debate, \"humble culture\" refers to a culture where people are encouraged (either by others; or themselves; or both) to actively refrain from publicly showing/revealing their successes, possessions and achievements.","tournamentID":"mNwitMoNsjWupgwG8pR5","round":"","language":"English","id":"dBcONYDOnOuTWEjWkMMa"},{"round":"1","link":"","content":"THW ban broadcasting of boxing matches from TV.","topic":{},"language":"English","infoSlide":"","tournamentID":"1WET2zUA9uN6rpHTGR8k","division":"","id":"dBgcKe1Y7dP5BFHvoRN3"},{"topic":{},"content":"This House believes that NATO should expel members that do not meet the organisation's defence spending targets.","tournamentID":"JLyF99Vg0hk3hhYCwEgp","link":"","language":"English","division":"","infoSlide":"","round":"5","id":"dBvGcyGQUau5Bn1Pnk88"},{"infoSlide":"","link":"","division":"","tournamentID":"h2z0CGY0CzqfLCKUb3wz","content":"THW eliminate inheritance.","language":"English","round":"Open_Finals","topic":{},"id":"dD5iv9vPcBdJFLjm2YVK"},{"round":"Open_Quarters","infoSlide":"","topic":{},"content":"THBT the African Union should pivot toward the global East rather than the global West.","link":"","tournamentID":"yOWDiguNGQHwr42mgnqv","division":"","language":"English","id":"dDLH4P0VgRAr7dfPDIVS"},{"tournamentID":"V8TulSs5yNLpZX8Xohpq","link":"","round":"Open_Final","infoSlide":"","language":"English","topic":{},"division":"","content":"THBT Greece should return to the Drachma.","id":"dDTmWqGdxWAzRnqbrfqq"},{"tournamentID":"vBIhHuSgrqmR27ZqUcfZ","content":"THW make Saxon a mandatory foreign language on Saxon colleges (hochschulen).","division":"","language":"English","infoSlide":"","topic":{},"link":"","round":"1","id":"dDhpvMLahzAU48cFgswT"},{"topic":{},"infoSlide":"","content":"THW consider senior politicians under oath when making public statements on political issues, thus making them criminally liable for perjury if they lie.","link":"","language":"English","round":"5","division":"","tournamentID":"swAbmAXdPnojWIXuZFwm","id":"dDwuGMPpkzhZPWSY8aMs"},{"round":"4","division":"","tournamentID":"c74XLjeeNJzVbzpMjGlo","infoSlide":"","content":"THW require major polluters to open their borders to environmental refugees.","language":"English","link":"","topic":{},"id":"dE7mynP3IwESAnFTHRHJ"},{"topic":{},"division":"","tournamentID":"t1jiRXU99xeGdoIkTeyF","infoSlide":"","content":"This house, as the pope, would abolish the requirement for clerical celibacy.","link":"","round":"ESL_Semis","language":"English","id":"dEVDRCmZlM8JZ54tiUXG"},{"link":"","round":"Open_Finals","infoSlide":"","division":"","tournamentID":"N6GD6E8q4Mbzt8Xexnyy","content":"THR the prominence of professional sports in American pop culture.","topic":{},"language":"English","id":"dEZrdND8gSU0O3EIUgdt"},{"link":"","infoSlide":"","division":"","content":"THBT Pope Francis should take radical action to convince Catholics to vote only for political parties who promote redistributive policies.","topic":{},"tournamentID":"FYOADGgnZTJQdU2kOcYb","round":"5","language":"English","id":"dEp5yJeVXHp0MD8EC3tN"},{"link":"","topic":{},"content":"This house prefers a world in which social media costs money to use, but users do not give up the rights to their data, to the current world.","infoSlide":"","round":"1","tournamentID":"mXeF4ypkhHofmXrxLWxA","language":"English","division":"","id":"dF1N2m1v8iF6WcNjcX91"},{"tournamentID":"MKOx1AvBmfWL7cHrRXg2","division":"","link":"","language":"English","infoSlide":"","round":"2","content":"This House Believes That Supreme Courts should refrain from making decisions on controversial social issues (e.g. gay rights, abortion).","topic":{},"id":"dFB3Ox9ZrMdhreT1Q2A7"},{"round":"1","language":"Vietnamese","infoSlide":"Năm 2004, Hàn Quốc và Triều Tiên đã hợp tác đầu tư và xây dựng Kaesong Industrial Complex (KIC) đặt tại Triều Tiên. Đây là một cơ hội hợp tác hiếm hoi của hai nước. KIC từng bị Triều Tiên đóng cửa 4 tháng vào năm 2013 sau đợt tập trận quân sự giữa Hàn Quốc và Mỹ, giam lỏng các lao động Hàn Quốc. Năm 2016, phía Hàn Quốc đột ngột đóng cửa KIC. Nhiều nhà phân tích tin rằng vụ thử vũ khí nguyên tử thứ 4 của Triều Tiên và những tính toán kinh tế phía Hàn Quốc chính là lý do đằng sau, và cũng không loại trừ nghi ngờ về sự thành lập liên minh chính trị Mỹ-Nhật-Hàn.","tournamentID":"2gsOERqtXqSETJffXbnj","link":"","content":"Chúng tôi tin rằng Hàn Quốc nên mở cửa khu công nghiệp Kaesong trở lại.","topic":{},"division":"","id":"dFUOr2o5rxzgtNJF9aim"},{"round":"3","division":"","language":"English","tournamentID":"zeR0rFnynHhmmEJ04jfo","link":"","content":"THW establish vocational schools and aggressively stream academically underperforming children into them.","infoSlide":"","topic":{},"id":"dFVktNRj2awG4xeRRJzf"},{"round":"Open_Final","topic":{},"tournamentID":"WqXUc7EMDvkqqg3BVCtf","link":"","content":"TH would treat the deaths of soldiers as regrettable losses of lives rather than examples of heroism.","division":"","infoSlide":"","language":"English","id":"dGfDpIvCf0JLzPkTJt5W"},{"content":"TH regrets the romanticization of failure as part of the process for success.","language":"English","topic":{},"division":"","tournamentID":"JHo8pIpzQxzUKHUwVDFf","infoSlide":"","round":"Open Quarterfinals","link":"","id":"dHMh7uzrsjDhEBwC94sv"},{"topic":{},"language":"English","link":"","round":"3","division":"","tournamentID":"NMqOqSd4sZ95JVU4Dia8","content":"THBT it is never a legitimate economic strategy for a state to become a tax haven.","infoSlide":"","id":"dHY9HZOr8azhXgufQppH"},{"content":"As the feminist movement, TH celebrates the degeneration of Y chromosome in human species.","tournamentID":"yDvj9tks9IvE2CTAVfzV","division":"","round":"Open Quarterfinals","infoSlide":"Recent research shows that the Y chromosome that symbolizes likelihood of women to get birth to male offspring has degenerated rapidly in the 21st century. There is an indication that this research shows that the number male population is on progress to be extremely decreased in the future.","language":"English","topic":{},"link":"","id":"dHpv1r68uj7RRspKLKmG"},{"round":"Novice_Final","tournamentID":"oVagPVQLXErhZIkOTqQn","content":"THBT the media should not report on the private lives of politicians.","infoSlide":"","language":"English","division":"","topic":{},"link":"","id":"dIl9RlcdcXzpfJYCgwrX"},{"language":"English","division":"","link":"","content":"THW hold the senior executives of major banks and rating agencies criminally liable for the actions of their companies that led to the Global Financial Crisis.","round":"3","tournamentID":"MKnFsrIKq8equaMluK21","topic":{},"infoSlide":"","id":"dJZVEiy42NmdAz6lXrPa"},{"infoSlide":"","link":"","round":"1","tournamentID":"pTevyvO7FxIMrQi4ThJ5","division":"","language":"English","content":"THBT all professional football clubs should be majority owned by their supporters.","topic":{},"id":"dKHVmMdCvA18dQIytIhZ"},{"topic":{},"link":"","division":"","infoSlide":"","language":"English","content":"THBT universities and other stakeholders should primarily consider teaching ability rather than research outputs when awarding tenure and allocating academic funding.","tournamentID":"KUgzKY5FHtox24CaztLJ","round":"6","id":"dKR2YOFxUQM5R47K0Vw1"},{"link":"","content":"TH would make bidding to host major sporting events conditional on winning a local public referendum.","topic":{},"infoSlide":"","round":"5","tournamentID":"URJkYB098qcNUnuKdfHJ","language":"English","division":"","id":"dKZHefIIZTn0pZ8q2E2d"},{"content":"This house believes that parliamentary electoral systems should include constituency links.","infoSlide":"","round":"2","topic":{},"link":"","language":"English","tournamentID":"7DiEtR3YNKR69fHccj5Y","division":"","id":"dLvLnzJWCzaa1KjR13Xp"},{"round":"6","link":"","topic":{},"tournamentID":"0bpNzjTgN71TZQEkHTak","division":"","content":"THW legally permit soldiers to refuse to participate in military actions or missions on the basis of conscience.","language":"English","infoSlide":"","id":"dNYKjY9bLiEGBmVREcYd"},{"language":"English","tournamentID":"JHo8pIpzQxzUKHUwVDFf","content":"TH regrets 'sharing culture'.","infoSlide":"‘Sharing Culture’ refers to an online phenomenon where individuals are sharing more and more aspects of their lives, including personal issues, to their followers/friends on social media (Instagram, Facebook, Twitter, etc.)","link":"","round":"1","division":"","topic":{},"id":"dNbZ0DZlkZ1Eus23j7rj"},{"content":"Chúng tôi tin rằng ASEAN nên đình chỉ tư cách thành viên của Myanmar cho đến khi quân đội khôi phục chính phủ dân sự.","topic":{},"round":"Semifinals","language":"Vietnamese","link":"","tournamentID":"JaZQ7l5B4R6smBKTdFQJ","infoSlide":"","division":"","id":"dO9MV4YkoxmqmRiuNWTw"},{"round":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","topic":{"irw":{"check":true,"title":"International Relations/War"}},"infoSlide":"Consent means that there is no objection based on free will. Accordingly, the decision will not be passed if only one member state objects.","content":"THBT ASEAN should break the principle of consent.","language":"English","link":"","division":"","id":"dPbFikmfLUAW6uy1NIPP"},{"content":"TH regrets the Obergefell decision.","infoSlide":"","link":"","division":"","tournamentID":"0EfM3HXUbP8eg9asv3MM","round":"Open_Semis","topic":{},"language":"English","id":"dPePloCUQUVciS4prxw7"},{"topic":{},"content":"THBT the notion of journalistic objectivity has done more harm than good.","tournamentID":"1zpwTG4R66xy1c4CrMeq","division":"","round":"1","link":"","infoSlide":"","language":"English","id":"dPfBNCc2KE7SpydNseRT"},{"content":"THS the use of forced population transfers that create separate, ethnically homogenous states as a solution to prolonged ethnic conflict.","topic":{},"infoSlide":"","division":"","link":"","round":"Open_Semis","language":"English","tournamentID":"KUgzKY5FHtox24CaztLJ","id":"dPws4t9Jn6zG3uwdkGGu"},{"division":"","round":"Open_Semis","content":"Presuming the technology existed to alter people's sexual orientation, THW make that technology available on the national health service.","link":"","topic":{},"language":"English","infoSlide":"","tournamentID":"H8XCoxhHfhkNSTYxwR42","id":"dQO9Tzs50HomFgEB6yy3"},{"round":"1","link":"","division":"","language":"English","content":"Disinviting college and university speakers does more good than harm.","tournamentID":"h5ajoFHOT7mXoe90wbQ3","topic":{},"infoSlide":"","id":"dQTN2bKYj0Xsxkun3lOc"},{"round":"3","content":"THW introduce educational system with the selection process based only on geographical location (and not e.g. test results).","tournamentID":"r7L7x15Ixt9qEWgdPZ6u","link":"","infoSlide":"","language":"English","topic":{},"division":"","id":"dRcOEhegBMN0e9NdcEum"},{"division":"","language":"English","link":"","infoSlide":"","round":"Open_Semis","tournamentID":"013M8EetYEKwpGlokURQ","topic":{},"content":"THW only hold gay pride parades with the consent of the local community.","id":"dRxPfF1CkVp6NHlsi2Og"},{"division":"","language":"English","infoSlide":"","link":"","round":"3","topic":{},"content":"THW allow abortion only in the case of both parents’ consent.","tournamentID":"DfdqiFdfgcruP1pBNiHK","id":"dSYfrX7zcpP8VMeVeauv"},{"round":"1","infoSlide":"","link":"","content":"THBT charity is immoral.","language":"English","topic":{},"division":"","tournamentID":"7lMrN2aiwSzD5rzPFwHz","id":"dScoGFAeEw7hsfkYGWIH"},{"tournamentID":"bvHOR7Oow9PPlKPlA2BT","language":"English","link":"","round":"3.1","division":"","content":"THW not punish professional sports athletes for off-field behaviour.","topic":{},"infoSlide":"","id":"dTql54DsupsYkA616rZ8"},{"round":"","link":"","content":"TH will levy high taxes on companies that use AI instead of labourers.","infoSlide":"","language":"English","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"tournamentID":"1qq9g2ApB8UdvPr2ewx1","division":"","id":"dU47vzCr0Hbh2mcd2fK7"},{"round":"6","language":"English","infoSlide":"","link":"","content":"THR the automation of jobs previously performed by humans (eg self driving cars, self checkouts).","division":"","tournamentID":"WfHILzlB4oGzI34Iwqaw","topic":{},"id":"dURK3rw2Sbcq1U5hkOka"},{"infoSlide":"","content":"Should sex become olympic?.","topic":{},"tournamentID":"zkcJOcuUSlxmaS6nsMl7","language":"English","round":"3","link":"","division":"","id":"dUfQI5RuD3GiLWKnVKzn"},{"round":"Open_Semis","language":"English","link":"","division":"","content":"THBT female game designers should prioritise over everything else the creation of female characters.","tournamentID":"oVagPVQLXErhZIkOTqQn","topic":{},"infoSlide":"","id":"dUoS9MMl9wJTQdarYeOr"},{"language":"English","content":"THW not have children.","round":"2.4","link":"","topic":{},"infoSlide":"","division":"","tournamentID":"1leOvfvlbNAIDzW6UnkK","id":"dVn8uRYppmHDvUYTlLTD"},{"division":"","infoSlide":"","topic":{},"round":"6","content":"That we should ban prison guards from striking.","language":"English","link":"","tournamentID":"n7qv29PmNuF5SOe42oiz","id":"dWP2WZNLhYcDTQaQXKXC"},{"content":"That as an Indian feminist we would identify more with Lakshmi than with Kali.","link":"","topic":{},"language":"English","infoSlide":"","round":"3","tournamentID":"1bHNYzF6GWRqdpr3f5vt","division":"","id":"dYRyGhqKOhJok4QpU5mb"},{"division":"","round":"Open_Semis","topic":{},"language":"English","infoSlide":"Immediate democracy is a method in which citizens can change their vote at any time. The number of MPs given to each party is allocated on a daily basis and represents the current support percentage of the population. In this system there are no elections, but the number of MPs from each party can change every day.","content":"THW introduce an immediate democracy.","tournamentID":"18IIGMrqE33YyULmp5EY","link":"","id":"dYTeyx9mi756peHYmT6Z"},{"infoSlide":"","topic":{},"round":"1","division":"","language":"English","tournamentID":"7iuaP5vcRAvHJFM4QYmP","link":"","content":"THBT NFL team owners should be allowed to sanction players for political expressions on and off the field.","id":"dZQ7GaldSaP4pIq7MOQ3"},{"language":"English","tournamentID":"BXqPhfwak2R1kYHV48bp","infoSlide":"","link":"","round":"4","division":"","content":"THBT Arab-Israelis who successfully seek election to the Knesset should opt not to take up that seat.","topic":{},"id":"dZyHexlBjw0rUOR39ALA"},{"link":"","topic":{},"division":"","infoSlide":"","language":"English","round":"4","tournamentID":"LDEsIQgDXxAdqGHF4x4e","content":"THB that the Armenian media does not adequately represent the views and concerns of Armenian society.","id":"daDZ6DMgxgur2PIXo9mR"},{"round":"5","topic":{},"division":"","content":"THS the shaming of individuals as a tactic for social movements to catalyse change (e.g. shaming individuals for not taking environmentally sustainable actions, shaming individuals for violating lockdown/quarantine policies).","language":"English","tournamentID":"DIDaTQVu3sv4iXbqf3eE","infoSlide":"","link":"","id":"db1eV4bkryyVxEWWZ3OA"},{"tournamentID":"qQd3HyiFI5fx18xViLoe","language":"English","round":"Open_Semis","topic":{},"division":"","content":"THW give control over all aspects education policy to local authorities.","infoSlide":"","link":"","id":"db95fDUYkwD2AK21nhpC"},{"language":"English","infoSlide":"","round":"6","link":"","content":"THBT former colonial powers should drastically increase the number of immigrants from their ex-colonies.","topic":{},"division":"","tournamentID":"NBT7RwLHeAApXuOtrQpt","id":"dbXruDQXCV9pFXytjOAa"},{"language":"English","division":"","infoSlide":"","link":"","topic":{},"round":"2","tournamentID":"TjdO3rhaUn53D48P0jlp","content":"THW deny Greece the Euro (or: THW kick Greece out of the Eurozone).","id":"dbyRwhxBvO3zwk0N6COV"},{"infoSlide":"","division":"","round":"2","content":"Assuming full social distancing isn't possible: This house, upon finding an opportunity, would escape to another city which is not yet infected.","link":"","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","topic":{},"language":"English","id":"dc7oXzL5vIphHLrWcm5p"},{"topic":{},"content":"THW found one European elite university.","division":"","round":"1","tournamentID":"FIZrOByzWbUCfXyq56hs","language":"English","link":"","infoSlide":"","id":"dc9gg0NLciBOmn3Et0Zy"},{"language":"English","content":"THS legal abortions for men.","infoSlide":"","topic":{},"division":"","tournamentID":"sA03ySqGdgfByNOTfDfC","link":"","round":"5","id":"dcBSFOGd8gYrlGXg3UZy"},{"infoSlide":"","topic":{},"content":"THR the belief that forgiveness is a virtue.","division":"","round":"4","link":"","tournamentID":"H8ZxEfGXutRQeJ3mqisV","language":"English","id":"dcTAlX7ZorsqEzvgYNQL"},{"language":"English","division":"","infoSlide":"","tournamentID":"WnH3YWwA4xB4HPfqIqea","topic":{},"content":"In countries that have the death penalty, THW implement execution duty.","round":"Open_Quarters","link":"","id":"dcpVOVC4lD5eMEAXakXa"},{"language":"English","round":"5","content":"THS opposes the general approach of companies to grow by massively sacrificing short-term profitability with the hope of gaining a large portion of the market. (This is the original business model of companies such as Uber or Amazon)","infoSlide":"","division":"","tournamentID":"uJGjvsaThnluwVzoHFXm","link":"","topic":{},"id":"dd2kXMXnTTHu0BFYDknO"},{"infoSlide":"","division":"","topic":{},"content":"THW allow the deliberate targeting of civilians in war, where it would significantly reduce casualties in the long term.","link":"","round":"Open_Semis","language":"English","tournamentID":"041lRDdS5oaD5orDuk8q","id":"ddXCtsEnHTZOGySZPsR2"},{"round":"Open_Semis","language":"English","division":"","tournamentID":"yhJgdE0VFcsqlvWffep1","topic":{},"content":"TH welcomes the decline of US-led humanitarian interventions without international consensus.","infoSlide":"","link":"","id":"deB3FNKkxhWSnGorQlC7"},{"topic":{},"tournamentID":"n7qv29PmNuF5SOe42oiz","language":"English","infoSlide":"","content":"That the queer community should abandon the trend of making queer events/celebrations open to cis/straight allies (eg. bars, parties, events, mardi gras, etc).","round":"4","division":"","link":"","id":"deFGXgfwh9WJcCBuC6Gv"},{"tournamentID":"yDvj9tks9IvE2CTAVfzV","topic":{},"content":"As environmentalists, TH supports the Earth Liberation Front.","language":"English","round":"3","link":"","division":"","infoSlide":"","id":"deIIPe5XPMT5GDgrfzpv"},{"language":"English","topic":{},"infoSlide":"","link":"","round":"4","tournamentID":"1lhrrHzfpU4TfWb63MLz","content":"Should the possibility to revoke a PhD degree be under a statute of limitation?.","division":"","id":"dfRp3KS5nkCBFxlRQQdV"},{"tournamentID":"LlsxibXteGBGML9aitY2","round":"","language":"Vietnamese","content":"Giả sử có thể đo một cách chính xác và chuyển giao sự hạnh phúc, chúng tôi sẽ đánh thuế dần dần và thực hiện phân phối lại sự hạnh phúc.","link":"","division":"","topic":{"philosophy":{"title":"Philosophy","check":true}},"infoSlide":"Đánh thuế dần dần và phân chia nghĩa là tăng thuế dựa theo mức độ mà giá trị có thể đánh thuế được tăng và phân phát lại giá trị đánh thuế đó cho người khác.","id":"dg9hGzFd6OiOnOQS51SH"},{"topic":{},"content":"THW Give First Nations Peoples (eg. Native Americans and Aboriginal Australians) Complete Autonomous Self-Government.","round":"2","division":"","link":"","language":"English","infoSlide":"","tournamentID":"IpWyfCcksctR86jKX66g","id":"dgRx7JUDpEatZMGG1O2W"},{"tournamentID":"xm1UErfWKMzGBfeKsba9","round":"3","infoSlide":"","link":"","language":"English","topic":{},"content":"THBT, in the event of an immediate and unprovoked Israeli strike against Iran's nuclear facilities, the USA should make a credible pledge to support Israel in any resulting conflict.","division":"","id":"dggyqRuFe18lo9Zjr3KN"},{"division":"","infoSlide":"","round":"8","content":"THBT countries with booming populations should allocate every adult a single tradable permit to have a child.","topic":{},"link":"","tournamentID":"0bpNzjTgN71TZQEkHTak","language":"English","id":"dhT7EAOaSBFdK1y7BCLg"},{"division":"","topic":{},"round":"Open_Semis","infoSlide":"","link":"","content":"THBT international news organizations should report equally on all geographic regions to all audiences.","language":"English","tournamentID":"PRCVo2dP9UPdRU9tVW31","id":"dhhZnAY3LO2CyTlfIjvE"},{"division":"","language":"English","tournamentID":"5ETrS816OeSAWdPhWEHf","round":"5","content":"“THW give Extra Leaving Cert Points for Extra Curricular Activities”.","topic":{},"infoSlide":"","link":"","id":"di5oKkr62vkOKX7sYCIM"},{"content":"THS Fisher's Protocol.","division":"","round":"Open_Final","link":"","topic":{},"infoSlide":"","tournamentID":"ubSWFCyfoCllO0KSjdjy","language":"English","id":"diJZstLFMa0hpbZAdVZ7"},{"link":"","language":"Vietnamese","content":"Chúng tôi hối tiếc về sự gia tăng của mức độ phổ biến của các nhà lãnh đạo dân tộc chủ nghĩa.","round":"","topic":{"politics":{"check":true,"title":"Politics"}},"infoSlide":"","tournamentID":"KE7jdAyW9az9nKVb9FMV","division":"","id":"digrFVS5biR1dGhm4Qp4"},{"language":"English","content":"TH as Japan Would nationalize their electronics industry.","topic":{},"infoSlide":"","division":"","round":"3","tournamentID":"7l98EUanZ85SaCAlZg2X","link":"","id":"djaTIp7axppCCAVkHGGl"},{"content":"That we should allow parents to sell shares in their children’s future income streams.","round":"Open_Quarter","division":"","infoSlide":"","language":"English","tournamentID":"5Qomv7BFHTKmY4PchwDr","link":"","topic":{},"id":"djnLcUWPvJhiceNaRQja"},{"language":"English","infoSlide":"","topic":{},"round":"2","link":"","content":"That, assuming feasibility, governments should cap parents' expenditure on their children to an amount equivalent to the current median expenditure per year.","division":"","tournamentID":"n7qv29PmNuF5SOe42oiz","id":"dkns5uWVKYoRDm3jnzE5"},{"topic":{},"round":"2","link":"","division":"","content":"In countries with a lack of medical professionals, TH, rather than regulate who can be a healthcare professional, would provide optional certifications of competence.","language":"English","tournamentID":"K6vtfx7dBNzsAtTkNiF1","infoSlide":"","id":"dkv0BY8G5g7iVXyrszhm"},{"topic":{},"content":"THW prefer a world without pornography.","link":"","infoSlide":"","tournamentID":"G40265rxZRrwSbZ3fQSJ","round":"5","division":"","language":"English","id":"dlPUXmH4BZd6j3ojWuQG"},{"round":"3","language":"English","infoSlide":"","topic":{},"content":"THW ban all presentations of the 10th commandment in all Israeli School systems.","tournamentID":"3KT5cUfqBjWrhC0DWPAs","division":"","link":"","id":"dmOG8QFYdzqjZT44xNiS"},{"content":"THW decriminalise the intentional and negligent transmission of HIV.","topic":{},"division":"","round":"Open_Final","link":"","infoSlide":"","tournamentID":"f1thAYfptp3bklFlrsSe","language":"English","id":"dmWrhNBE8H6pHwVinNZr"},{"division":"","round":"","infoSlide":"","content":"Nếu chỉ được lựa chọn một trong hai, chúng tôi, những học sinh thuộc nhóm trí tuệ dưới trung bình, sẽ lựa chọn một thế giới mà mọi người đều được hưởng nền giáo dục trung bình thay vì thế giới mà 50% dân số trí tuệ thấp được hưởng giáo dục cơ bản, và 50% dân số trí tuệ cao được hưởng giáo dục nâng cao.","link":"","topic":{"education":{"check":true,"title":"Education"}},"tournamentID":"OqQWJjNQBpGOYwMntw3z","language":"Vietnamese","id":"dmXeKEcbvGk1e0QM77Ue"},{"content":"THBT representative democracies with large numbers of foreigners living in their territory (on a temporary or permanent basis) should create specific seats to represent them in parliament.","link":"","topic":{},"language":"English","infoSlide":"","division":"","tournamentID":"0bpNzjTgN71TZQEkHTak","round":"ESL_Final","id":"dnHgmUE1KwoP9RckqFev"},{"link":"","round":"Open_Semis","content":"THBT governments should prioritise economically productive public spending over investing in arts, humanities, etc. when deciding on their budget.","infoSlide":"","language":"English","tournamentID":"LuNDiT9YYZhQScUmMX82","topic":{},"division":"","id":"dnMdGAznvcNHa4c8rEti"},{"language":"English","infoSlide":"","content":"THW ban fortune telling.","topic":{},"round":"1","link":"","division":"","tournamentID":"L8JGtnnMnhA8w9ooOx0S","id":"dnneQzSm0bO7YYa4gs38"},{"link":"","round":"6","tournamentID":"P4io30tN10TYMqGkj2sX","content":"THBT comedic political commentators (e.g. John Oliver, Stephen Colbert, Samantha Bee, etc.) do more harm than good.","division":"","topic":{},"language":"English","infoSlide":"","id":"doUTB39WY9jgKwPWlU1U"},{"language":"English","round":"Open_Final","topic":{},"division":"","tournamentID":"V6eoj3ztq5t3sX9oPVue","infoSlide":"","content":"THBT David Cameron was wrong to offer the British electorate a referendum on EU membership.","link":"","id":"doulBvnLy8UrLRKdREIL"},{"link":"","round":"5","language":"English","content":"THBT states should not prosecute members of terrorist organisations (e.g. ISIS, Al-Qaeda) who surrender to those states.","division":"","tournamentID":"xv0FPHxLsij7LUJlUmBy","infoSlide":"","topic":{},"id":"dpnKu4eH5nO9Q4cqePlq"},{"tournamentID":"LK6lSp8gpBGbLjuv9caV","round":"1","language":"English","topic":{},"infoSlide":"","content":"Should we teach beggars profitable street arts?.","link":"","division":"","id":"dqEHsfUZlPlgmDq8n5aA"},{"language":"English","topic":{},"link":"","division":"","content":"THBT the Church should not take positions on issues which are not explicitly within the doctrine of the church.","tournamentID":"j4lF8rhbFUyC0UTwoz2G","infoSlide":"","round":"3","id":"dqLynIo6uAIiQORNaz3C"},{"round":"1","division":"","infoSlide":"","content":"THBT publicly funded universities should be required to reduce enrolment in degree programs within their university that have statistically poor employment outcomes.","language":"English","tournamentID":"EHPcBnMOPhSjJDJMUqKQ","topic":{},"link":"","id":"dqphc8DfzM9ZhlTv1sCI"},{"round":"1","division":"","infoSlide":"","link":"","tournamentID":"WcNueZiJXeg9z82dijdL","topic":{},"language":"English","content":"Post the Covid-19 outbreak is contained, TH(the Bundesliga)W scrap the 50+1 rule.","id":"drWSbWCvyovUyyGvrSdL"},{"infoSlide":"","content":"TH supports the introduction of bystander laws.","language":"English","round":"Novice_Final","link":"","topic":{},"tournamentID":"rkItJ1M9he5ApXeOVBjJ","division":"","id":"drXkytjqRzxTQSiFOWvC"},{"language":"English","topic":{},"tournamentID":"HtADLvDpWQsx5qtLh5A9","link":"","round":"ProAm_Final","content":"THBT identity groups within the feminist movement (e.g. the trans community, black feminists, etc) should lobby and campaign as independent movements rather than together as a single movement.","division":"","infoSlide":"","id":"drs0SxowL6YsIW7sa9wE"},{"content":"Giả sử công nghệ cho phép, chúng tôi sẽ cho phép người dân mua bán tuổi thọ của mình.","infoSlide":"","language":"Vietnamese","link":"","topic":{},"round":"Grand Final","tournamentID":"FOAZQcGDy003yv7fx3AI","division":"","id":"drv1UpPFBJ7Xcs6s1hHj"},{"round":"2","infoSlide":"","language":"English","link":"","tournamentID":"pjVFBJWiohJyZdRBk33H","division":"","topic":{},"content":"THBT Student Unions should not take an explicit policy on abortion.","id":"dw5iRc6YtYZybnvCsvpy"},{"topic":{},"content":"THBT immigration is a good solution to counter an aging population.","infoSlide":"","division":"","round":"2","language":"English","link":"","tournamentID":"JtHb8gJ24LeJcHq82rm5","id":"dwfLuLI8c3Q0Zh433Bnt"},{"round":"3","tournamentID":"G1nDRe3mbR7XzsaLbAGR","topic":{},"link":"","infoSlide":"","content":"THW ban professors/teachers from communicating with students/schoolchildren in social networks.","division":"","language":"English","id":"dwzU0nIOWdHgCPdE2VcH"},{"topic":{},"round":"2","division":"","tournamentID":"wXcojonR6N4b28c9T963","content":"THW boycott the FIFA World Cup in Qatar.","language":"English","link":"","infoSlide":"","id":"dx4pKXUrOn3JIZtV6U1r"},{"language":"English","tournamentID":"rTasJ7TWWuEMSXmebOaC","division":"","infoSlide":"","link":"","round":"3","content":"THW not take the drug.","topic":{},"id":"dxJ5rGfqXQWZIYUBPgmT"},{"division":"","infoSlide":"","language":"English","link":"","round":"4","content":"THW allow individuals to legally occupy any building that has been unused for more than 6 months.","topic":{},"tournamentID":"K2iCOiuVrS3D8RzjGpNe","id":"dxhkAxty4EDuhm3s4XkG"},{"division":"","language":"English","content":"THW legalize the sale of organs, blood and marrow.","round":"1","tournamentID":"EK7bkCOLaLHjVsqCcikk","topic":{},"link":"","infoSlide":"","id":"dxiD5O8KLSvUtRIfwWVv"},{"content":"THP the rule of the governing AI, with elections on priorities over, traditional representative democracy.","round":"Open_Final","language":"English","tournamentID":"xwOMY1HAkkxJbFVQIUFJ","infoSlide":"","division":"","topic":{},"link":"","id":"dxpRUUp27yf7eKG8R1bA"},{"link":"","round":"","infoSlide":"Confession pages are created on social networking applications to allow participants to create anonymous confession posts by sending them to the pages' administrators. The administrators have no obligation to investigate the authenticity of information.","content":"We believe that the Vietnamese debate community should set up a confession page.","language":"English","topic":{"education":{"title":"Education","check":true}},"division":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","id":"dyFwj5YXu2x5YR8qj4aY"},{"language":"English","round":"ESL_Semis","link":"","content":"THBT political parties should adopt non-hierarchical organisational structures.","infoSlide":"","topic":{},"tournamentID":"c74XLjeeNJzVbzpMjGlo","division":"","id":"dz54tVKkLf7FhUFgR5qS"},{"topic":{},"link":"","tournamentID":"PGbz2bx1wifAEJU64jdo","language":"English","division":"","infoSlide":"","round":"6","content":"This house would publicly fund all elections.","id":"dzv2gGDqaBcNDB3ySOX9"},{"tournamentID":"vS5BTr7lDW40h5Qw31FI","round":"Open_Octos","language":"English","division":"","infoSlide":"","link":"","content":"This house supports the court's decision to acquit Tehlirian.","topic":{},"id":"e1M2GGUdcvZnopkBM0WD"},{"infoSlide":"","language":"English","round":"1","tournamentID":"YAsriFfh4M2kLN2FBQPq","content":"This House Would subsidize large scale geoengineering such as massive carbon sequestration (capture of atmospheric co2 out of the atmosphere and into storage) rather than environmental adaptation (eg: cleaner fossil fuels, ethanol, recycling technology, etc).","division":"","link":"","topic":{},"id":"e2u5rIZZ1Z5ho7Xj9rh0"},{"content":"THW in the countries that have laws prohibiting discriminatory and hateful language against various groups based on certain characteristics they have, grant overweight people the same protection like other vulnerable groups.","division":"","infoSlide":"","round":"3","language":"English","link":"","topic":{},"tournamentID":"EWgHoIX1nWCnY5U0tfPp","id":"e2wI3GVQqBAKw55hiyJO"},{"content":"THBT countries should develop and deploy autonomous robot soldiers in conflict zones that are capable of killing people.","division":"","round":"2","infoSlide":"","link":"","tournamentID":"tKXlShZl2vec49jC1bif","topic":{},"language":"English","id":"e3B9ZTWJJ0WTbDnk2FE9"},{"round":"3","link":"","topic":{},"division":"","language":"English","tournamentID":"sQqCNuWw9nlSsN5agLhC","content":"THW ban TikTok.","infoSlide":"","id":"e3CbV5EieVzLE23xlKly"},{"link":"","tournamentID":"KTeMrrauFpZYvjtBUkLJ","content":"THR the narrative the marginalized groups (e.g. people of color, LGBT+ individuals) should support left-wing parties and politicians.","round":"2","division":"","language":"English","infoSlide":"Within politics, left-wing is a position that supports social equality and egalitarianism. What a person means by left-wing depends on where the person lives; generally left-wing parties and politicians are in favour of reducing or eliminating the ills of society such as poverty, inequality, disctrimination, homelessness, etc… through social programs, universal utilities, and a robust welfare system. Prominent left-wing parties range from the Labour Party in the United Kingdom to the Democratic Party in the US, and include politicians ranging from Bernie Sanders and Alexandria Ocasio-Cortez in the US to Moon Jae-in in South Korea.","topic":{},"id":"e3RtVkKVUsfUzaOjYBkq"},{"round":"","link":"","topic":{"philosophy":{"check":true,"title":"Philosophy"}},"content":"THO applying science as the primary interpretation of the world.","language":"English","infoSlide":"","tournamentID":"CJKUeBIUibEtZYahoUQV","division":"","id":"e3SwJ8QThy5nnhAs6p9u"},{"round":"Open_Octa","division":"","infoSlide":"","content":"This House Would ban insurance coverage for sexual misconduct claims.","language":"English","link":"","topic":{},"tournamentID":"YF6iuqxO6eUISnAz4iMp","id":"e4P1S6gffztPsY1po2GK"},{"infoSlide":"","language":"English","round":"Open_Semis","division":"","topic":{},"content":"THBT international courts should punish states with the capacity to prevent crimes against humanity, but do not do so.","link":"","tournamentID":"rMtZQSWssQ8170WIyJTX","id":"e5WYllciMxEaKFu4fo9T"},{"content":"Assuming Russia agrees to help fight ISIS, TH, as the US, would cease funding to Syrian rebel groups.","round":"4","language":"English","tournamentID":"xik6XdvZ0JGG1hySfuwC","topic":{},"division":"","link":"","infoSlide":"","id":"e5Zj9KncnPNVtzFEToQR"},{"infoSlide":"","content":"THBT it is NOT legitimate to shame public figures for non:criminal actions they did when they were young (eg. partying, alcohol consumption, soft drugs use, political views etc.).","language":"English","tournamentID":"UefabB9q8iptn7SCi47p","topic":{},"division":"","link":"","round":"Open_Final","id":"e5nfvPgLNr2ZzTL4CkPd"},{"tournamentID":"etTxnyhPGMITmcNf2DkM","topic":{},"language":"English","link":"","infoSlide":"","round":"Open_Final","content":"THW make all the proceeds that a professors earns with their books and other academic work available to their universities.","division":"","id":"e5tRfhF0brtyv4ntQmm0"},{"tournamentID":"gLCKOLupIE8JBGxBG9vu","infoSlide":"","language":"English","content":"Should grades be abolished?.","topic":{},"link":"","division":"","round":"1","id":"e5yUVyAcVCN38WQ7ADBx"},{"language":"English","link":"","round":"4","division":"","content":"This house believes that opposition parties in Latin America should seek incremental transitions of power rather than the recall or overthrow of ruling parties.","topic":{},"tournamentID":"wLfoMQYsV3E4fiFQ126i","infoSlide":"","id":"e6oaChDO0YYQuYiXApsB"},{"round":"Open_Final","link":"","content":"THW forbid universities from accepting donations earmarked for the pseudo-sciences.","tournamentID":"5dx9HmyPaBDPB6JstQGb","language":"English","division":"","infoSlide":"","topic":{},"id":"e7PCSPmED930Afsn9YQq"},{"division":"","link":"","tournamentID":"nALUKfkpmOnWnQCzecru","language":"English","infoSlide":"","round":"","content":"During a pandemic, THBT businesses which can benefit from the pandemic should be additionally taxed.","topic":{"others":{"check":true,"title":"Others"}},"id":"e7VXzDsvyfuYeaNk0EgT"},{"topic":{},"round":"Open_Final","tournamentID":"v1Vi2iS2rLowvyk3vIMm","content":"THW ban the slaughter and consumption of non-human animals.","division":"","link":"","infoSlide":"","language":"English","id":"e8JWkIaY9uYj6BXzu64s"},{"link":"","topic":{},"round":"2","infoSlide":"","division":"","tournamentID":"uk4xP1Lp7BjYaOzgd3Xi","content":"THW forbid celebrities to present their children in the media.","language":"English","id":"e9JycFv3WjZ7L2c7r7j0"},{"infoSlide":"","division":"","language":"English","content":"THBT Feminist Groups Should Campaign for a Complete Overhaul of the Economic System.","tournamentID":"1XuVJxN52ldgExm8K3T2","round":"Open_Semis","link":"","topic":{},"id":"eCwAErl18MvpbD0A1I0r"},{"language":"English","round":"Open_Semis","link":"","topic":{},"division":"","infoSlide":"","content":"THW ban the publication of images of terrorist atrocities.","tournamentID":"wn4DAqBcGTWBviyQc0CR","id":"eEpKrJd7BtCBj7cP1VOb"},{"tournamentID":"V6eoj3ztq5t3sX9oPVue","content":"THBT states should disband their armed forces and use PMCs as and when necessary.","language":"English","round":"Open_Quarters","link":"","division":"","topic":{},"infoSlide":"","id":"eFin0By2PH8wHGkRU0t2"},{"round":"2","division":"","infoSlide":"","link":"","tournamentID":"TpCKtGVry2w5xrgb90jZ","language":"English","topic":{},"content":"THBT the feminist movement should oppose the rise of commercial products and services aimed at helping women protect themselves from sexual assault and harassment (e.g. nail polish that changes colour around date rape drugs, anti-rape underwear, \"killer tampon\", Pink Cabs).","id":"eFnm9gOzeHl0DTJtcTKe"},{"tournamentID":"i00RSzvK4b1TDEgnpFJd","language":"Vietnamese","round":"2","link":"","topic":{},"division":"","infoSlide":"Chiến thuật “Call-out” tập trung vào việc công khai lên án các cá nhân có hành động phân biệt hoặc áp bức với phụ nữ. Chiến thuật “Call-in” tập trung vào việc cố gắng đối thoại riêng (qua email, trực tiếp hoặc bất kỳ hình thức nào khác) nhằm giải thích và thuyết phục những cá nhân có hành động phân biệt hoặc áp bức với phụ nữ.","content":"Chúng tôi tin rằng các nhà nữ quyền nên sử dụng chiến thuật “Call-in” thay vì chiến thuật “Call-out”.","id":"eG0FlNnZBI20dMw76xnW"},{"tournamentID":"mXeF4ypkhHofmXrxLWxA","round":"6","link":"","infoSlide":"","content":"This house believes that comedians should not be held to modern standards of political correctness.","topic":{},"language":"English","division":"","id":"eGWjh2KC2YYPtgehzS0N"},{"tournamentID":"yTe5SQuwd4eeae0M0Sc9","language":"English","content":"THBT it is in the interest of minority rights groups (e.g. LGBTQ, women, racial minorities) to join forces in common protest rather than separately advocate for the individual interests.","link":"","round":"Open_Semis","division":"","topic":{},"infoSlide":"","id":"eHlIcCIValB9ouCBAvdk"},{"link":"","division":"","language":"English","tournamentID":"70rnu3F4Q3ntkA4t3Wfl","topic":{},"round":"5","infoSlide":"","content":"THW abolish Oxford and Cambridge Universities.","id":"eI4cD91FccdCl0ouJ6IE"},{"language":"English","division":"","tournamentID":"yZaksTbsPteB6mPHwkvl","topic":{},"content":"THBT companies should pay corporate tax in all countries that they operate in (proportional to the amount of revenue made in that country), as opposed to only the country that their headquarters are registered in.","infoSlide":"","link":"","round":"2","id":"eIGoVqcgPe19Rt2DbYaP"},{"content":"THW abolish ethical checks on social science experiments.","language":"English","topic":{},"round":"1","infoSlide":"","link":"","tournamentID":"rTCB6GUTIjymEKsbO01i","division":"","id":"eIJCeR74jRKWLkTZvr74"},{"infoSlide":"","content":"THBT all corporations should become workers' co-operatives.","tournamentID":"gJ7A4v0TYcDNBa5wySIX","topic":{},"language":"English","link":"","division":"","round":"1","id":"eIR44HFS2V4RujOZeCkO"},{"infoSlide":"","topic":{},"tournamentID":"hrSRQu49cq5gHsXJLBgQ","division":"","content":"THBT Truth and Reconciliation Commissions should destroy all collected testimony upon publication of the commissions' reports.","link":"","round":"Open_Final","language":"English","id":"eIcXlkhbEVDa5ZKwPV0S"},{"infoSlide":"","round":"Novice_Semi","topic":{},"tournamentID":"2C0TX71TRjIIOcsN7CbL","language":"English","division":"","content":"This House believes that marginalized groups seeking equal treatment should convey their struggle to the public by emphasizing its similarity to the struggles of more prominent oppressed groups, rather than by emphasizing the unique conditions of their own oppression.","link":"","id":"eIgi4TTMJaxKslk1lV4Y"},{"round":"Open_Semis","language":"English","topic":{},"infoSlide":"","content":"THBT individuals should only fund charities that follow effective altruism.","tournamentID":"TN94ucwzVJ2xKpp2fcrc","division":"","link":"","id":"eJNJin14quGYrz9hKsJs"},{"link":"","language":"English","topic":{},"division":"","content":"THW prohibit films about historical or political events,or those of a biographical nature, unless produced as documentaries.","tournamentID":"2b9xHhyeUjald2Iu585W","infoSlide":"","round":"3","id":"eJl08RKfqvZpzz3LBDaY"},{"topic":{},"tournamentID":"y6YpD63Uuk3t3fbBC7Tk","round":"Open_Final","content":"In countries with frequent coalition governments, THBT mainstream parties should refuse to include far left parties in coalitions, e.g. Socialist Party ('SP') in the Netherlands, Die Linke ('The Left') in Germany.","division":"","infoSlide":"","language":"English","link":"","id":"eJpwnTdXhWOwQYUi62pP"},{"language":"English","division":"","round":"3","infoSlide":"","content":"Given a way to measure an individual's empathy, This House Would only allow individuals with high levels of empathy for people beyond their immediate circles, to vote in the election.","topic":{},"tournamentID":"YaTXOaEvPKh8XHB3VTBK","link":"","id":"eK8IT88mwFThWY4cNqGL"},{"language":"English","topic":{},"tournamentID":"9wxPRUMGICTUrE7xSaCG","infoSlide":"","division":"","content":"THW legalize multi-partner marriages for both men and women.","link":"","round":"1","id":"eL4eafZqvlKnpyKdQvaC"},{"tournamentID":"QjQ9aMJIggiNR9zYImnN","division":"","topic":{},"link":"","infoSlide":"","language":"English","round":"Open_Final","content":"Should politicians be liable for policy decisions with their private assets (mutatis mutandis)?.","id":"eLuULKmgoOuduJEs9tao"},{"division":"","topic":{},"tournamentID":"DTutOgCItM4x30SyVavv","infoSlide":"","language":"English","content":"THW abolish all private schools at the primary and secondary level.","link":"","round":"2","id":"eNDgxpBwPC8pZvKUIyYs"},{"tournamentID":"V8KRgdahxIEUYFHrRWYb","division":"","topic":{},"language":"English","link":"","content":"THW punish parents for the crimes their minor children commit.","infoSlide":"","round":"1","id":"eNOz2IOw0sSiK5PnXWbe"},{"language":"English","infoSlide":"Endeavor is ranked as the second most powerful hero in the My Hero Academia universe. He is driven by a desire to surpass the #1 hero, All Might, who is much stronger than him. This all-encompassing desire leads him to be a rude hero to fans, as well as a terrible father, being both largely absent and prioritizing raising strong hero children over love or care when present. This causes severe emotional and psychological abuse to both his wife and children, which damages his children and leads his wife to have a psychotic break. Over the course of the series, Endeavor is shown to come to regret his decisions and the show frames this as a redemption arc. He seeks atonement from his children, who are unwilling to provide it. He vows to become a father they might be proud of one day. We are provided flashbacks from the perspectives of other heros that attempt to humanize Endeavor, showing him to for example work harder than anyone else at unseen parts of hero work such as disaster cleanup. His wife reveals that Endeavor visits her often (from afar) and sends her flowers in the psych ward. In the last episode of the most recent season, Endeavor very nearly dies fighting a dangerous villain, and is shown to be concerned with being a morally good hero, father role model, and fan role model in order to fill All Might's role now that he has retired in the moments before risking his life and right after. The show provides us clips of his family seeming to start to change their minds on their perspective of him, and fans who formerly felt cast aside by Endeavor having rekindled their love for him. Endeavor now replaces All Might in a key moment of the show's opening sequence in the currently premiering season.","content":"THO the redemption arc of Endeavor.","link":"","tournamentID":"Z9WBfg1yDJgSR34BGYp1","division":"","round":"Grand Final","topic":{},"id":"eOb7CvRLUKKcIuGmt8XH"},{"division":"","round":"2","link":"","tournamentID":"x0mst3SfcsgMKKZ3eg7G","content":"TH would impose a cap on the amount of money parents are allowed to spend on their children (excluding essential healthcare and disability needs).","infoSlide":"","topic":{},"language":"English","id":"ePGofklOAQcl9sKayTNI"},{"content":"Chúng tôi với tư cách là lãnh đạo tôn giáo, sẽ tích cực truyền bá quan niệm rằng những người vô thần vẫn có thể lên thiên đường.","infoSlide":"","topic":{"religion":{"check":true,"title":"Religion"}},"link":"","division":"","language":"English","round":"","tournamentID":"CJKUeBIUibEtZYahoUQV","id":"eQ4WUzz1yg4QF4ek0sBg"},{"topic":{},"link":"","tournamentID":"NyCp19C1AzxXzCUQLio8","round":"Open_Semis","content":"Should buildings that have been empty/unused for over a year be made freely available for general use?.","division":"","language":"English","infoSlide":"","id":"eQAf9vY0ZSua1kKsSlEt"},{"tournamentID":"D9jVXR7QB0BrNFTW3MDz","content":"THW obligate newly formed states that were formed through violent resistance to pay reparations for harms and casualties which were caused by their struggle.","round":"Open_Final","topic":{},"language":"English","link":"","division":"","infoSlide":"","id":"eQSiovZ11d725ChI3ajI"},{"topic":{},"infoSlide":"","language":"English","link":"","content":"This house supports the establishment of zero rating platforms in the developing world.","round":"2","tournamentID":"AbrZ6leGJBXAmv4md2Zw","division":"","id":"eQjgE4ooVY8FEYvYCuVh"},{"round":"2","infoSlide":"","content":"THW impose quotas that ensure at least half of a company’s board of directors is composed of women.","topic":{},"language":"English","link":"","tournamentID":"AsoDjVHcLSyKMQmLkB7S","division":"","id":"eQnIsAimFgWBh5Wi0Bxc"},{"topic":{},"content":"Setting aside infectious diseases, THW work to prevent interaction with tribes who have not had contact with the modern world.","language":"English","infoSlide":"","division":"","tournamentID":"HlR3H86XBK4mqvL9v5HT","round":"4","link":"","id":"eQyt5HNNxmgt5FML1hhB"},{"topic":{},"link":"","round":"Open_Semis","division":"","infoSlide":"","content":"THR that cultural identities and practices are primarily bound to racial heritage- Semi Final 2.","language":"English","tournamentID":"nXN2yUG7soxwCp4xidzj","id":"eRi2CZU42XLNGBhSw2HJ"},{"language":"English","content":"That we support Moon Jae-In's attempts to reform The Supreme Prosecutors' Office of the Republic of Korea.","link":"","division":"","topic":{},"round":"Open_Semi","infoSlide":"","tournamentID":"1bHNYzF6GWRqdpr3f5vt","id":"eRolAORwMzZkKzbmKMR0"},{"round":"Open_Quarters","content":"THW implement TCDS on all criminals convicted of violent crimes.","division":"","topic":{},"infoSlide":"","language":"English","tournamentID":"Z9FMqY7i0SmIcw5xUsUL","link":"","id":"eSHjVfUQzyUVdjCugKQo"},{"division":"","tournamentID":"1dwGdjAn9pODo8bQfmJW","language":"English","link":"","infoSlide":"Gray-zone warfare is a tactic designed to degrade opposition's attrition by constantly forcing them to stay in a high state of alert (ex. scrambling fighter jets and having them fly just outside the border ex. sailing ships just outside naval territorial boundaries). As the name implies, the tactics are almost always 'technically' not illegal by international legal frameworks, though are discouraged. Recently, China has significantly increased the amount of gray-zone tactics it uses against Taiwan on a regular basis.","topic":{},"content":"TH, as the U.S, would employ gray-zone warfare against China in the Taiwan region.","round":"2","id":"eSerDPq3T0iP56Antjqu"},{"content":"This House would create a military space force.","topic":{},"tournamentID":"lItvEbHHU24VVqcwipRq","link":"","infoSlide":"","round":"1","language":"English","division":"","id":"eSm6QFRQX9JfONvIDfch"},{"language":"English","infoSlide":"","division":"","link":"","tournamentID":"PIBLfC67BXtpF7r3aqIV","round":"Open_Quarters","content":"THBT a Chinese Marshall Plan should be initiated to save the Euro.","topic":{},"id":"eT7F6Iz81czhKcVZ0NKF"},{"topic":{},"round":"9","infoSlide":"","content":"This house would ban the publication of political opinion polls.","tournamentID":"kFpM1KUkMmDded3L4Zmm","link":"","language":"English","division":"","id":"eTHeBv7dZsD5hIYJOsBu"},{"division":"","language":"English","tournamentID":"8QddgLiIoLsA9YscCujR","link":"","topic":{},"content":"THBT adoption agencies should seek to place children in families with a similar culture to that of their biological parents.","round":"2","infoSlide":"","id":"eTgAYFZEsQkXibHIfvLO"},{"topic":{},"language":"English","round":"ESL_Semis","division":"","tournamentID":"MIrEXPHnAIOpqQw6kxky","link":"","content":"This house believes that criminal justice systems should never incorporate retribution as an aim in determining criminal punishments.","infoSlide":"","id":"eUG3uRH4RCjBSZzbnKkX"},{"topic":{},"link":"","round":"4","content":"THBT the Japanese government should renounce pacifism and rearm.","tournamentID":"9l3qvCwMUUUzEdTVXCoM","language":"English","infoSlide":"","division":"","id":"eUVQbSDpokqKcf1o2LcW"},{"topic":{},"infoSlide":"","link":"","division":"","tournamentID":"TtPU6Lwr9qKhUvLMeyVD","round":"5","content":"THB Turkey should abandon all efforts to join the EU.","language":"English","id":"eVJlEoVgEF2vU1c7wVLf"},{"tournamentID":"jS13nU6Cack3rcPrnNZ5","language":"English","content":"THBT environmentalists and animal rights activists should launch violent campaigns against companies that pollute the environment or violate animals' rights.","link":"","round":"5","division":"","infoSlide":"","topic":{},"id":"eVKoJiHywpBdy5uCnrgI"},{"infoSlide":"","language":"Vietnamese","tournamentID":"CbtTNoNzLTvfNvRWmMc2","round":"","division":"","content":"Chúng tôi tin rằng các trường học dành cho người da màu nên giáo dục học sinh rằng tương lai của chúng phụ thuộc vào nỗ lực của từng cá nhân.","link":"","topic":{"education":{"title":"Education","check":true}},"id":"eWswceT73E1jpJ0UTzc0"},{"link":"","division":"","topic":{},"tournamentID":"3puXPIrnWCPTSNlOtl3R","language":"English","round":"2","content":"TH, as a progressive, would oppose the awarding of hosting rights for major international sporting competitions to 'Unprogressive' countries.","infoSlide":"","id":"eWtuJjtG4xKfF2cFKcRR"},{"tournamentID":"uEekEeJIfFAC4OJWJglf","round":"1","topic":{},"infoSlide":"","content":"THW base monetary criminal fines primarily on the income of the perpetrator rather than the severity of the crime.","link":"","division":"","language":"English","id":"eXEcMQUv7BZyW34tBIyT"},{"content":"THBT Serbia should immediately cut off political and economic ties with the Russian Federation.","infoSlide":"","tournamentID":"368JyxQNhxMm3WEWlba7","link":"","round":"Open_Semis","topic":{},"language":"English","division":"","id":"eXMj4iwCcmyZjhIbsnTq"},{"language":"English","tournamentID":"i3UU49z9MRO6phe9r1BH","content":"THBT the U.S. should eliminate all protective measures on the trading and use of green technologies.","topic":{},"infoSlide":"","division":"","round":"4","link":"","id":"eYA24RzroVGEw6cZBRmf"},{"round":"2","infoSlide":"","division":"","tournamentID":"FAvjs63H5vSbEY0I97Zs","topic":{},"language":"English","content":"THW boycott the 2014 Sochi Winter Olympics.","link":"","id":"eZ4DJagnZGpZCL2CYqjm"},{"tournamentID":"PGbz2bx1wifAEJU64jdo","topic":{},"link":"","division":"","content":"This house regrets the rise of the gig economy.","round":"1","infoSlide":"","language":"English","id":"eaKhrl1Yltffib0dWzQ9"},{"link":"","content":"THBT states should prosecute sexist or misogynistic comments.","round":"Open_Semi","division":"","infoSlide":"","tournamentID":"BsGevifhMX1weZjFgh7y","topic":{},"language":"English","id":"eakGhRAOoz1q0JWjoyIn"},{"content":"This House believes that prominent institutions in marginalized communities (churches, schools, community centres, etc.) should practice the politics of respectability.","division":"","topic":{},"language":"English","infoSlide":"","tournamentID":"9JqIpRhRkA8gulRio4t9","link":"","round":"2","id":"eaztSmJqliulwZ1bCK3u"},{"tournamentID":"Z9FMqY7i0SmIcw5xUsUL","link":"","topic":{},"content":"In asymmetric warfare, THBT it is a legitimate tactic for the significantly weaker side to target enemy civilian.","infoSlide":"","division":"","round":"4","language":"English","id":"ebQFPSu24aXYOle7UlIR"},{"content":"TH regrets the demise of the Soviet Union.","link":"","language":"English","topic":{},"division":"","infoSlide":"","tournamentID":"yplVU35a69J2hHBBmAJC","round":"Open_Semis","id":"ebdEkAwDSUQbcwu1vhWs"},{"tournamentID":"Ryhdb4JOJYP96e5oa49b","link":"","language":"English","topic":{},"round":"8","infoSlide":"","division":"","content":"THW reject women-only spaces - Round 8.","id":"ebmnegj6f7AnmPztry6S"},{"topic":{},"content":"That we regret the assassination of Iranian general Qasem Soleimani.","division":"","tournamentID":"1bHNYzF6GWRqdpr3f5vt","language":"English","link":"","round":"2","infoSlide":"","id":"ebtarwAMV1rsGCPSYgYq"},{"link":"","content":"This house, as the engines, would unionise and protest against the Fat Controller's \"Really Useful Engine Doctrine\".","topic":{},"infoSlide":"","division":"","language":"English","tournamentID":"Pt1Z2dTdUinRviVucbZA","round":"Open_Quarter","id":"ed2WPRRIX4bWcF0W8O2X"},{"content":"THW allow the selection of all-female juries in sexual assault cases.","division":"","tournamentID":"5oYH1K5oILZA6OqwhGhz","topic":{},"round":"3","link":"","language":"English","infoSlide":"","id":"edjJo6Kc3F6C6GUffS8t"},{"link":"","language":"English","tournamentID":"m6JzV67uYJSVBRpAbgL7","round":"Open Semifinals","topic":{},"infoSlide":"Tax Mix is a combination/mixture of various taxes, as opposed to the aggregate tax level.","division":"","content":"THBT the 'Tax Mix' should be set by reserve banks.","id":"edv0ZNIzS1Is26Tpt72G"},{"infoSlide":"","tournamentID":"jVtcrR58DYEPrz6PXM17","language":"English","content":"In the case of a contact with extra-terrestrial beings, this House would send a woman as a negotiator.","topic":{},"round":"2","link":"","division":"","id":"efMnesxxhsNeLIpBK9ju"},{"language":"English","content":"THBT the US should ban the sale of vital components for the manufacturing of electronic devices (eg semiconductors), which are produced in the US or use American technology or software*, to Huawei and other major Chinese companies. (*the vast majority of currently produced components).","link":"","tournamentID":"H8ZxEfGXutRQeJ3mqisV","infoSlide":"","round":"5","division":"","topic":{},"id":"efmJKiaAk6hbzgWPcNPB"},{"language":"Vietnamese","content":"Chúng tôi, với tư cách là chính phủ Trung Quốc, sẽ áp dụng chính sách đa phu cho phụ nữ và chỉ phụ nữ.","division":"","topic":{"hr":{"title":"Human Relationships","check":true}},"tournamentID":"1qq9g2ApB8UdvPr2ewx1","infoSlide":"","round":"","link":"","id":"ehPh15sPBLAg4pn8SmgL"},{"division":"","language":"English","topic":{},"tournamentID":"1bHNYzF6GWRqdpr3f5vt","infoSlide":"","link":"","round":"3","content":"That feminists in Islamic majority countries should attempt to work to reform Sharia courts from within rather than advocating their abolition.","id":"ehTCj4CTIYGpBZ2yIhBu"},{"round":"4","link":"","tournamentID":"7abz3Ipf2RhGUArcqBwg","topic":{},"division":"","infoSlide":"","language":"English","content":"Should closed prisons be abolished for all crimes in juvenile justice system?.","id":"ei1WB2fsxe6ZPpyPdsll"},{"link":"","round":"5","topic":{},"language":"English","infoSlide":"","division":"","content":"TH, as an indvidual, W not consume works produced by immoral artists.","tournamentID":"PGbz2bx1wifAEJU64jdo","id":"eiH5qWzRU0APihtxpvD6"},{"division":"","content":"THBT animal rights groups should prioritise their campaigns on farmed animal being treated well and kill without excessive pain and suffering, rather than discouraging the use of animal-based products.","tournamentID":"mxxjZaa0262HoUjjXfj8","topic":{},"language":"English","link":"","infoSlide":"","round":"4","id":"eiRm4aRGQCTFKOdue1Zi"},{"topic":{},"infoSlide":"","division":"","content":"THW require those claiming Job Seekers' Allowance to undertake community service.","language":"English","tournamentID":"E5iEI92yocDkjANxDoF9","round":"1","link":"","id":"eidENEHuUj9GDZt3ug2p"},{"round":"Open_Semis","infoSlide":"","tournamentID":"NNES6CXrTQ3wDbdnrNDb","link":"","division":"","language":"English","topic":{},"content":"THW not punish people who live below the poverty line for economic crimes they have committed.","id":"ejT9e46PW16fe615ZD4E"},{"round":"Novice_Final","language":"English","content":"THP a world where all humans are born as adults.","tournamentID":"S2mG18EWYdh2bPEadyd9","division":"","link":"","infoSlide":"","topic":{},"id":"ejikeUEkIsJik7ZJo6E8"},{"infoSlide":"","content":"Chúng tôi sẽ cấm những nghiên cứu khoa học chỉ ra các loại động vật hoang dã có thể giúp chữa bệnh (sừng tê giác, mật gấu).","language":"Vietnamese","link":"","round":"1","tournamentID":"sgcqNV5ntCoa4H8glRBu","division":"","topic":{"environment":{"check":true,"title":"Environment"}},"id":"ejk0ZGOsdje48zYvGhLD"},{"division":"","link":"","content":"THB that women are justified in lying about their past experiences, abilities and future family plans on job applications or at job interviews.","infoSlide":"","tournamentID":"xUGmMsj95M2w5CV6WYVA","round":"1","topic":{},"language":"English","id":"ejpTEjZ9iNAW8LRQLqKB"},{"round":"4","topic":{},"language":"English","content":"THBT parents should teach morality to their underage children through religious context (e.g. “it is a sin to lie”; \"help thy neighbor\" etc.).","division":"","link":"","tournamentID":"Vis5yhSVMHubvgdJTwP1","infoSlide":"","id":"ek52ptWZ6OeVDJuD2zWu"},{"language":"English","topic":{},"link":"","division":"","tournamentID":"3dDCV3YYSGl8TNe5f3iO","infoSlide":"","content":"THW choose its Prime Minister through direct elections.","round":"Open_Quarters","id":"ekUW0Y6GMJ8HVo5oSIc4"},{"tournamentID":"KncW7pH1nDIom3xK89VG","infoSlide":"NGOs là các tổ chức phi lợi nhuận, phi chính phủ. Chúng có thể được tổ chức ở cấp độ cộng đồng, trong nước, và quốc tế, và phục vụ mục tiêu xã hội và chính trị như chủ nghĩa nhân đạo hoặc môi trường (Trong bối cảnh của trận tranh biện này, khoản viện trợ ngoại quốc đề cập tới sự hỗ trợ dưới dạng tiền bạc hoặc tài nguyên từ chính phủ này sang chính phủ khác).","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"division":"","content":"Chúng tôi tin rằng các chính phủ nên đóng góp tiền cho NGOs vận hành ở các quốc gia đang phát triển thay vì chi tiền cho các khoản viện trợ ngoại quốc.","link":"","language":"Vietnamese","round":"Semifinals","id":"ekYVgrYAHUHBQJVmvTzP"},{"tournamentID":"OLVGf3rE3KKirerr2vyk","division":"","round":"4","topic":{},"infoSlide":"Israel đã tiêm vaccine Covid cho 15% dân số, và sẽ sớm tiêm vaccine cho toàn bộ dân số của họ. Tuy nhiên toàn bộ người dân Palestine và tù nhân người Palestine sống trong các khu vực lãnh thổ do Israel chiếm đóng thì đều không được chính phủ Israel tiêm vaccine.","language":"Vietnamese","content":"Chúng tôi, với tư cách chính phủ Israel, sẽ tiêm vaccine cho người Palestine trên lãnh thổ của chúng tôi.","link":"","id":"ekbR0dZ3uDjQxnadetjQ"},{"language":"English","link":"","content":"THW subsidise banks to disproportionately direct loans to historically disadvantaged communities and individuals.","topic":{},"tournamentID":"X7iAuOHrSqi0EHPkRNls","infoSlide":"","round":"4","division":"","id":"ekdbgEvZdzCEXEUBr0Jv"},{"infoSlide":"","tournamentID":"NtnveNmZosTMD9TU0qA8","division":"","topic":{},"round":"8","link":"","language":"English","content":"THBT developing nations should distribute, as a dividend to citizens, income derived from natural resource extraction.","id":"elk1oGEtfNjoOC3B3dDX"},{"content":"TH, as a parent in an Asian society, would not pressure their children to succeed academically.","tournamentID":"2gsOERqtXqSETJffXbnj","infoSlide":"","division":"","language":"English","round":"1","topic":{},"link":"","id":"emK9wGJwodGeVBifEupk"},{"content":"THW subsidise companies for the employment of ex-convicts.","topic":{},"division":"","link":"","language":"English","tournamentID":"nZHihOHKbvuiGhhtsXam","infoSlide":"","round":"3","id":"emhUEQaPokM4WfxW0k0Y"},{"language":"English","content":"“THW Force People to take a Mandatory Civics Test before Voting in National Elections/Referendas”.","tournamentID":"5ETrS816OeSAWdPhWEHf","topic":{},"round":"13","infoSlide":"","link":"","division":"","id":"emi6vuM2yycpJEcFMWEZ"},{"link":"","infoSlide":"","content":"THW allow individuals to grant amnesty to criminals for crimes they committed against them.","division":"","language":"English","round":"1","tournamentID":"368JyxQNhxMm3WEWlba7","topic":{},"id":"emzhFQiTkt19MAWcjqF1"},{"round":"1","link":"","content":"THW not make state health care available to smokers.","language":"English","infoSlide":"","tournamentID":"C4Vv4FZW36V7ONi9kULg","division":"","topic":{},"id":"enq9AssaoU1DdvfSz4yi"},{"round":"4","language":"English","division":"","content":"THW offer terminally ill patients the option of a cash grant if they forgo treatment and consent to early euthanasia.","tournamentID":"wn4DAqBcGTWBviyQc0CR","link":"","topic":{},"infoSlide":"","id":"eqwDomnoKhm67AyQY8ZP"},{"round":"Open_Semi","tournamentID":"6tyiq2GnlmVmI452js6u","division":"","topic":{},"language":"English","link":"","infoSlide":"","content":"This House believes that if technology permitted us to identify people who are genetically predisposed to commit crimes, it would be appropriate for the state to monitor them and limit their activities.","id":"erLf43X6PXVLhDCAxKbX"},{"infoSlide":"","content":"That it is in the interest of the Gerudo to abandon their policy of isolationism and instead embrace an open borders policy.","tournamentID":"Pt1Z2dTdUinRviVucbZA","division":"","round":"1b","language":"English","topic":{},"link":"","id":"esKMkeMxdnZlFYO7onYu"},{"round":"2","infoSlide":"","link":"","language":"English","content":"THW eliminate copyright and patenting.","division":"","topic":{},"tournamentID":"KErVXbqRahyWD7ZB1Q1m","id":"esc7WoUL1Tr8xMrPkPxX"},{"infoSlide":"","content":"This house would adopt the Indian Supreme Court decision in Pakistan.","tournamentID":"pq9R1PqBqzQNX8jAplt5","link":"","topic":{},"round":"Open_Semis","language":"English","division":"","id":"eskaQWfLDeu6S1fwTlUp"},{"language":"English","round":"Open_Final","tournamentID":"041lRDdS5oaD5orDuk8q","content":"TH, as Cyprus, would ask Russia for its bailout.","link":"","topic":{},"infoSlide":"","division":"","id":"esufwCtt8trxVNEaa4gH"},{"division":"","language":"English","infoSlide":"","link":"","content":"THBT you can't plan the future by the past.","topic":{},"tournamentID":"CssaPdXkDgBy4xockIGM","round":"Open_Semi_2","id":"etJiphODeSiyEs6JLbdy"},{"round":"Open_Semis","content":"THB African-American civil rights organisations should condemn capitalism.","link":"","topic":{},"infoSlide":"","division":"","language":"English","tournamentID":"a40eH2E5w4GGnWQ3oDT6","id":"etQxAdCnmUx5BI94DkD2"},{"round":"3","division":"","link":"","tournamentID":"I5iTcVABscgCPPKzr8Oa","topic":{},"infoSlide":"","content":"THBT Muslim majority states should not perform the hajj until Saudi Arabia and its allies withdraw from Yemen.","language":"English","id":"euFFQ6InyWGlEORZIwmZ"},{"link":"","round":"Open_Semi","language":"English","content":"THBT the World Bank should have the full responsibility for the share of loss due to corruption.","topic":{},"infoSlide":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","division":"","id":"eua6meVkjSSKAanuBKI1"},{"infoSlide":"","language":"English","link":"","division":"","topic":{},"tournamentID":"ZqM3Me0eKutOMMTkPwgA","content":"THBT the media should not report the declared motivations of protesters who use violence.","round":"1","id":"eujZj6wtzQo0HVN4dHjF"},{"link":"","tournamentID":"onvxs89P4PKzVuAFoTHr","language":"English","content":"Supposing feasibility, This House Supports the establishment of a Queer Republic.","infoSlide":"","topic":{},"division":"","round":"Open_Final","id":"evGFbKvIKOQihSPxXIex"},{"tournamentID":"OqQWJjNQBpGOYwMntw3z","division":"","link":"","infoSlide":"","content":"Giả sử công nghệ cho phép, chúng tôi sẽ cho phép bố mẹ lựa chọn giới tính con của mình trước khi sinh ra.","topic":{"technology":{"check":true,"title":"Technology"}},"round":"","language":"Vietnamese","id":"ewCFPG1TDxY3Ap9jADpg"},{"content":"THS the use of shaming to advance social causes.","tournamentID":"mUHCV4981T5cYALNdYBk","topic":{},"language":"English","division":"","round":"1","link":"","infoSlide":"","id":"ex7iBg0ptXG69HaFYqK7"},{"language":"English","round":"Open_Quarters","infoSlide":"","link":"","tournamentID":"WuHMyE7RKYgEDPOjOxp6","topic":{},"division":"","content":"THW outlaw plea bargaining.","id":"exVEagKb9GPF4oqdxPfj"},{"division":"","round":"4","link":"","content":"That non-white actors shouldn’t pursue roles where characters they would portray are based on ethnic stereotypes.","tournamentID":"D6zNi4CBrpZnwXUgBuKG","language":"English","topic":{},"infoSlide":"","id":"exbR3DOEgqlhmaHxdwKm"},{"language":"English","round":"7","infoSlide":"","division":"","link":"","topic":{},"content":"THW blow the whistle.","tournamentID":"DSFg77BvC9y4FK5pBVIv","id":"exlttMavpMUQMIyPggW3"},{"round":"1","topic":{},"division":"","link":"","tournamentID":"RlGrdg8aVMD5XQVuPN3W","language":"English","content":"THW include children with special needs into regular school classes.","infoSlide":"","id":"ey38Bug0SJXjipMyYUMi"},{"division":"","infoSlide":"","content":"This House, as Israel, opposes a Iran nuclear deal.","tournamentID":"macdlwUjYqFCGHKvQS20","topic":{},"link":"","round":"5","language":"English","id":"eyG0CqrwSOl8BBInZ1PO"},{"topic":{},"tournamentID":"vY2MtSrfiAgUKzGbzzMm","infoSlide":"","round":"2","division":"","content":"This House supports the use of charity rather than state welfare systems.","link":"","language":"English","id":"eyfWYHEAItJWHAGZHNpW"},{"content":"THW only recruit atheists to be part of the group, and would not allow any religious books or items of worship on board.","topic":{},"tournamentID":"YF6iuqxO6eUISnAz4iMp","round":"ESL_Final","link":"","language":"English","infoSlide":"","division":"","id":"eyjA8KhovtAQ3vaurMiD"},{"round":"5","division":"","link":"","content":"That we would proportionately subsidise (e.g. scholarship and funding) university courses according to the employability of their graduates.","language":"English","topic":{},"infoSlide":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","id":"ez73aqi1kLHDOFwAadHS"},{"language":"English","round":"1","tournamentID":"RautsrmlhwL2BBMyTRVG","content":"THW legalize all drugs.","topic":{},"link":"","infoSlide":"","division":"","id":"ezaIw08kX0B7C7VjhYCe"},{"round":"1","topic":{},"infoSlide":"","tournamentID":"w1cmIhewdRlJLYHGdtbg","link":"","content":"THBT landowners should become the automatic owners of everything on and in the ground they own.","division":"","language":"English","id":"f0n9dmoRemYaMaPGXqhA"},{"topic":{},"division":"","link":"","round":"5","content":"THW prohibit religious institutions from considering applicants' religious affiliation for any position whose primary function is not the performance of religious rites (e.g. administrators, teachers, fundraisers, etc.).","language":"English","infoSlide":"","tournamentID":"HlR3H86XBK4mqvL9v5HT","id":"f1JVwUzT4FHy04NO2oPI"},{"language":"English","division":"","topic":{},"content":"That we would let AI determine humanity's future.","tournamentID":"SPjgjrpUBIPs6H9gmx9P","round":"Grand Final","infoSlide":"","link":"","id":"f1peFJy9gJrubrwMwaNW"},{"content":"Chúng tôi, với tư cách cô Nở, sẽ từ chối nhận món quà này.","round":"","division":"","infoSlide":"Nở là một người mẹ đơn thân đang mang thai đứa con đầu tiên nhưng chồng cô không may qua đời. Gia đình Nở quyết định đặt mua một con AI giống với chồng cô 90% dựa trên những thông tin của người chồng (giọng nói, miêu tả tính cách, hình dáng) dành tặng cho Nở.","link":"","topic":{"hr":{"check":true,"title":"Human Relationships"}},"tournamentID":"OqQWJjNQBpGOYwMntw3z","language":"Vietnamese","id":"f1zAiimNLvK6cOc0eCn0"},{"round":"1","link":"","division":"","content":"Chúng tôi sẽ đuổi học những học sinh có hành vi bắt nạt trên mạng.","topic":{},"tournamentID":"BPe1MqSgmLovUz7nghmX","infoSlide":"Bắt nạt trên mạng là một hình thức bắt nạt hoặc quấy rối qua phương tiện điện tử. Bắt nạt trên mạng là khi ai đó, thường là thanh thiếu niên, bắt nạt hoặc quấy rối người khác trên internet, đặc biệt là trên các trang truyền thông xã hội. Hành vi bắt nạt có thể bao gồm đăng tin đồn, đe dọa, nhận xét về tình dục, thông tin cá nhân của nạn nhân hoặc đưa ra những ngôn từ kích động thù động.","language":"Vietnamese","id":"f2WHHc7nLE1DG2W4dO3D"},{"infoSlide":"","topic":{},"division":"","round":"3","link":"","tournamentID":"7bjgBH4vUAY8LwONR9i6","content":"THBT characters with disabilities in film and television should always be played by individuals with disabilities.","language":"English","id":"f2v4rbuoo9t3WuC0RIlm"},{"topic":{},"content":"THBT, in developing nations with an ineffectual state school system, the government should financially incentivise (e.g through tax breaks) the creation of private schools.","round":"2","tournamentID":"NMqOqSd4sZ95JVU4Dia8","language":"English","link":"","infoSlide":"","division":"","id":"f3Q3XALhbDeN2vOpM9YT"},{"division":"","content":"TH, As the EU, would trigger Article 7 if Hungary failed to commit to democratic reform.","round":"Open_Semis","infoSlide":"","link":"","tournamentID":"3VTSywK012zU6GDLqZzC","language":"English","topic":{},"id":"f3VgdMfMqBC2Df3thZmI"},{"infoSlide":"","topic":{},"division":"","language":"English","content":"The European Council comprises the heads of state of the member states of the EU, along with the council’s own president and the president of the commission M.","tournamentID":"FcQa3EO91Xucj4ACR1Wb","round":"5","link":"","id":"f3tlSGKsjZrxJPh3xpQU"},{"tournamentID":"2gsOERqtXqSETJffXbnj","division":"","topic":{},"round":"2","link":"","content":"Chúng tôi sẽ đưa các tiết phê phán văn học vào trường THPT tại Việt Nam.","language":"Vietnamese","infoSlide":"","id":"f3yZ7hZNOEu4IgtN5rrS"},{"link":"","language":"English","tournamentID":"1MV3spmbrmWLKhisZDU8","infoSlide":"","topic":{},"round":"7","content":"This House Believes That development of infrastructure in developing countries should be led by the state, as opposed to the private sector.","division":"","id":"f4PQsk9Humx1iwMOr0lX"},{"content":"THBT the environmental movement should heavily prioritize anthropocentric argumentation (i.e. human-centered effects and reasons e.g. rising sea levels can destroy villages, extreme weather damages crop output, and could produce food shortage) in their advocacy.","language":"English","link":"","topic":{},"infoSlide":"","division":"","round":"2","tournamentID":"IXq1CdgyiKmkyEDJURrV","id":"f52hEi88vwCcMchr7kFN"},{"tournamentID":"bcb5yQt6p8cx9SACsvYL","link":"","content":"THBT Oskar Gröning should not have been prosecuted.","language":"English","topic":{},"division":"","round":"3","infoSlide":"","id":"f6my1yFiZg4HBFTN3OhD"},{"content":"This House believes that the media should show the full horror of war.","tournamentID":"wuDBbL4uYIZXIthzVv4V","link":"","division":"","language":"English","round":"1","infoSlide":"","topic":{},"id":"f7MhoaR4vQk4pl0ai9Yz"},{"topic":{},"link":"","language":"English","tournamentID":"ovqKzpSVsRvBQDmmn1yj","infoSlide":"","round":"1","division":"","content":"TH calls for a common European army.","id":"f7eMVHha1qU3IBzIIZMU"},{"division":"","infoSlide":"","content":"THB former colonial powers should pay reparations to their former colonies.","round":"3","topic":{},"tournamentID":"Aic5TDtU01Sp43Neh8N2","language":"English","link":"","id":"f7ojs1cET8uf3rwOuAqv"},{"content":"That we regret the expectation that children should be shielded from all forms of danger.","round":"5","topic":{},"tournamentID":"5Qomv7BFHTKmY4PchwDr","language":"English","division":"","infoSlide":"","link":"","id":"f7w9Q6xmVmVO9nG7xjVc"},{"infoSlide":"","language":"English","topic":{},"round":"Open_Final","content":"You are a scientist working at CERN. Working alone one night, you make an accidental breakthrough in your research that will allow humanity to travel through time. You are alone in the lab and the odds of someone else making the same accidental breakthrough are non-existent. Motion: THW destroy its research.","tournamentID":"VWMKb2j3CmLwgnB7Jl4O","link":"","division":"","id":"f8LD5pCTZUrur4KgBBzc"},{"language":"English","topic":{},"link":"","round":"1","infoSlide":"","division":"","tournamentID":"8ayi1XeWc8ZG8jPzG8bt","content":"THBT Greece should ban the Golden Dawn party.","id":"f8sJXMFwOV4kiDkdzRil"},{"tournamentID":"qDZwjZ3HER1wsZxsFjBb","division":"","link":"","round":"1","topic":{},"language":"English","content":"This House would prohibit the use of statistical risk assessments when criminal courts are making sentencing decisions.","infoSlide":"","id":"f9xgIH9CuyuHo2MNCfP3"},{"link":"","round":"4","infoSlide":"","topic":{},"division":"","tournamentID":"FaXJZrMIEColDcqtOmli","language":"English","content":"THW terminate the special relationship between the US and Saudi Arabia.","id":"fAXjMPZ6sEa0FqjKJEzs"},{"content":"THBT ASEAN should immediately abandon the non-interventionist policy.","round":"Open Semifinals","division":"","link":"","infoSlide":"ASEAN's non-interventionist policy is loosely defined as “no involvement in domestic affairs ranging from political commentary to military intervention”. This normally includes refraining from economic sanctions or establishing political stances to nudge countries in domestic affairs.","language":"English","topic":{},"tournamentID":"yDvj9tks9IvE2CTAVfzV","id":"fB7JroZyfeM7kgqZCSpr"},{"link":"","content":"THBT feminists should oppose restrictions on the wearing of the burkha and the hijab.","division":"","round":"1","topic":{},"tournamentID":"0zMaoLN7qmzWGSYIzhjh","infoSlide":"","language":"English","id":"fBMlPctCzPx2L5YJD4Y1"},{"topic":{},"infoSlide":"","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","content":"That, as a lifelong Republican, we would vote for Joe Biden.","link":"","round":"Open_Semi","language":"English","division":"","id":"fBSuWnfS6XHr2nuZlJt5"},{"infoSlide":"","link":"","division":"","tournamentID":"BXqPhfwak2R1kYHV48bp","topic":{},"language":"English","round":"2.3","content":"THW give equal coverage to mens’ and womens’ sport.","id":"fBVghslpkmCyeVfLDgnm"},{"round":"2","language":"English","content":"THBT the use of chemical weapons in a defensive capacity against enemy combatants should not be a war crime.","tournamentID":"LczIO0anMv6dKnbpRYYr","link":"","topic":{},"infoSlide":"","division":"","id":"fBfqNkxHyaxbYlO8Y5XM"},{"content":"THBT Western countries should commit to cancel all debts owed by any authoritarian country upon its transition to democracy.","link":"","tournamentID":"JA7aghUhZy7G7yhivxxG","topic":{},"round":"2","language":"English","infoSlide":"","division":"","id":"fBh8XmxsHamX7AYQYE4B"},{"infoSlide":"","content":"This house would militarily intervene in Syria.","link":"","tournamentID":"GwkssAj8zxpqlXlKBDqa","language":"English","round":"Open_Semis","topic":{},"division":"","id":"fBsnPYReh9MXDgzRV7AP"},{"division":"","infoSlide":"","round":"4","topic":{},"tournamentID":"myGQJSUNqcxcCjm3bONn","link":"","language":"English","content":"TH, as European nations, would grant citizenship to refugees who would sign up for the military.","id":"fCjhyUIkMPChVmnjLYI7"},{"link":"","division":"","topic":{},"language":"English","infoSlide":"","content":"THBT the European Union should guarantee membership to regions of member states that secede from their parent state.","round":"3","tournamentID":"8mQg9HgZBO4ebq8ubmRJ","id":"fDQnVYzRkpvjNAVn8jkd"},{"content":"THW resolve the Syrian refugee crisis.","topic":{},"language":"English","division":"","link":"","round":"3","tournamentID":"STaEp3vuXBuTT2bP0vgU","infoSlide":"","id":"fDXCrrz2TLXbGGYRcugN"},{"division":"","language":"English","topic":{},"content":": THBT liberal democracies should not treat disclosure of information to the public as treason.","round":"Open_Quarters","tournamentID":"VAfi19aZTAIKaUuELBL1","link":"","infoSlide":"","id":"fDiUvKUuBtA4vE2Nz2Py"},{"division":"","tournamentID":"h373wn3dFw9UcWDcJpyy","content":"The state should get a monopoly on prostitution.","language":"English","topic":{},"infoSlide":"","link":"","round":"3.2","id":"fEms15xxZrcfFE1tcJH3"},{"division":"","content":"THW ban the use of armed unmanned aerial vehicles (armed drones) during warfare.","topic":{},"tournamentID":"DYYa510cEyzz1viLavRR","round":"2","link":"","language":"English","infoSlide":"","id":"fGZjSUXTFUN9lVNEilJH"},{"content":"TH welcomes the government’s proposed fat tax.","tournamentID":"zkhDsyR1rpDZXDiA2JUj","infoSlide":"","link":"","round":"1","division":"","language":"English","topic":{},"id":"fGhNDTq7nycL7mgNrUo3"},{"content":"THW create a separate state where all women and only women can claim citizenship.","tournamentID":"cp0MD0ZRWeTfahcPD6wj","language":"English","infoSlide":"","link":"","division":"","round":"4","topic":{},"id":"fH4vHd3N8FqDTBrSnEC0"},{"language":"English","infoSlide":"Retsuko is a red panda office worker who is dating Tadano: a multi-millionaire donkey tech entrepreneur. Retsuko believes that the end goal of any relationship should be marriage. Tadano tells her that while he wants to be with her forever, he does not believe in marriage and sees it as an unquestioned social norm he finds pointless. Upon learning this, Retsuko breaks up with him.","link":"","round":"3","tournamentID":"Z9WBfg1yDJgSR34BGYp1","topic":{},"content":"THBT Retsuko should have stayed with Tadano.","division":"","id":"fIjSOKdk1po4oJJhKh26"},{"language":"Vietnamese","topic":{},"tournamentID":"RF6WJZV8JYPwFqSpNxlR","infoSlide":"","content":"Chúng tôi sẽ yêu cầu tất cả các công ty truyền thông (tin tức, báo chí, đài phát thanh,..) được vận hành bởi nhà nước.","link":"","round":"2","division":"","id":"fJETfbsB9fdH0Ep3jROc"},{"topic":{"philosophy":{"title":"Philosophy","check":true}},"link":"","content":"THP that a world where people can fully control their own emotions.","infoSlide":"","language":"English","round":"","tournamentID":"sgcqNV5ntCoa4H8glRBu","division":"","id":"fK7bgizqRdoNsQ6QIYxY"},{"tournamentID":"Ef5RtQo9Rr0nt7Nnhncq","division":"","link":"","round":"3","language":"English","topic":{},"content":"Seed companies seek out strong-yielding plants and sterilise the seeds. The plants cannot produce fertile seeds and the companies protect their license rights. Motion: Should plant sterilisation be banned?.","infoSlide":"","id":"fKKSnJC8zgUfE004Vekk"},{"topic":{},"infoSlide":"","content":"This house prefers a world in which people predominantly believe that all decisions, thoughts, and actions of all in the universe are pre-determined.","language":"English","division":"","link":"","tournamentID":"cDgGdE6ESpUqp2A2gVLj","round":"1","id":"fKQfCo9fjzWBh0upvu0j"},{"infoSlide":"","link":"","language":"English","division":"","content":"TH, as the USA, would put boots on the ground in Iraq.","topic":{},"tournamentID":"SU8WsMguqtUiTUErBeo7","round":"Open_Semis","id":"fKvN6XdXSuaifsC3zgqq"},{"tournamentID":"FiF24Yc0spiBkvTxiYwD","infoSlide":"Mew là cô bé học tại một trường top đầu thành phố, nơi hội tụ các thiên tài. Nhà trường khuyến khích học sinh tìm ra tài năng của bản thân, và những học sinh đạt giải cao được nhà trường đối xử đặc biệt. Dưới áp lực của một ngôi trường chạy theo thành tích, Mew đã quyết định sao chép tác phẩm hội họa của người khác để biến mình thành \"thiên tài\".","topic":{},"content":"Chúng tôi phản đối việc nhà trường khuyến khích học sinh tìm ra tài năng thiên bẩm.","division":"","round":"1","link":"","language":"Vietnamese","id":"fLG5woA358QHArSkYz2N"},{"infoSlide":"","language":"English","topic":{},"content":"This house believes that leaders of minority religions in Europe should strongly encourage their congregations to refrain from public displays of their faith.","tournamentID":"NYyJaJXo1SigW6G8Y1Lm","link":"","round":"ESL_Semis","division":"","id":"fLVzsFkHBRDacQq0C4Nw"},{"tournamentID":"m6JzV67uYJSVBRpAbgL7","language":"English","topic":{},"division":"","round":"Open Quarterfinals","content":"THP a world where the belief and disbelief in the existence of a God or Gods is seen as an involuntary decision.","link":"","infoSlide":"","id":"fLmX6HFbk5VB3K2wUHqD"},{"link":"","content":"THS the rise of anti-natalism.","division":"","tournamentID":"Pr7RhJp1TWbTZsqRvQt4","round":"Open_Final","language":"English","infoSlide":"","topic":{},"id":"fLtpoD2oJbkoxJex1QDh"},{"division":"","link":"","topic":{},"content":"This House believes that companies should adopt the practice of Radical Transparency.","language":"English","tournamentID":"qDZwjZ3HER1wsZxsFjBb","round":"3","infoSlide":"","id":"fM5tmkjF9xxpT3RQhwke"},{"content":"Given the existence of \"SASP Glasses\" technology, This House Would ban them.","tournamentID":"BXOIn4DQsS3fQg4ZnBFn","topic":{},"division":"","link":"","infoSlide":"","language":"English","round":"3","id":"fM8gIhkhE9Inw084DjEB"},{"round":"5","content":"THW ban employers from creating contracts which prohibit employees from expressing their political views publicly.","link":"","division":"","language":"English","topic":{},"infoSlide":"","tournamentID":"yTe5SQuwd4eeae0M0Sc9","id":"fMtRQECzqf0VodkUP930"},{"link":"","division":"","tournamentID":"zidC2m00xOQF4gT3tgiY","content":"TH supports the creation of feminist political parties.","round":"Open_Final","infoSlide":"","language":"English","topic":{},"id":"fNs7m6Nu8uSkHodr7Aqd"},{"topic":{},"content":"THBT developing countries should hold the Catholic church financially liable for the medical expenses of AIDS victims in areas where the church campaigns against condom use.","language":"English","infoSlide":"","link":"","tournamentID":"aywt5Kt0TqoeqngKQ0I4","division":"","round":"2","id":"fO82ozulVIkk8GNDFFdL"},{"language":"Vietnamese","infoSlide":"","link":"","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"round":"","tournamentID":"KE7jdAyW9az9nKVb9FMV","division":"","content":"Chúng tôi tin rằng nạn nhân của những tội ác bạo lực nên được quyết định bản án cho bị cáo.","id":"fObeRwDHwJR3m1CxxTBJ"},{"infoSlide":"","division":"","link":"","topic":{},"round":"3","language":"English","tournamentID":"C0blbUxGmaQQTDvvJX6D","content":"Should public television give all sexual variations (sexuellen Spielarten) proportionally equal representation?.","id":"fPdGJbhakWlPiA47yL2U"},{"link":"","division":"","language":"English","round":"6","topic":{},"tournamentID":"djnlK5jZ2kM6hDrC6E9d","content":"THBT western social justice groups (feminist advocacy groups, LGBT advocacy groups) should have a local agenda, as opposed to a global agenda.","infoSlide":"","id":"fQDJVKo0ht6eeQ98cOB2"},{"language":"English","infoSlide":"","round":"3","link":"","content":"THW freeze membership of sporting federations of nations that boycott sporting competitions (events, matches, tournaments etc.) for political reasons.","tournamentID":"O8G3JSrsKEY7mvvg6szT","topic":{},"division":"","id":"fQc4BUt5PC1D9XltHZ5E"},{"division":"","tournamentID":"3G6HklWR08yKYY0GbDsU","topic":{},"round":"2","content":"THW lift all sanctions on North Korea.","language":"English","link":"","infoSlide":"","id":"fQk5q79nHq012k01rJyk"},{"content":"THBT popular referenda should be banned in Western liberal democracies.","round":"Open_Octos","tournamentID":"6AnUBd9SLIBHmD9Uy5dS","link":"","division":"","topic":{},"language":"English","infoSlide":"","id":"fRZEq91qUKEUjRSoObBD"},{"language":"English","content":"THR the decline of tightly integrated families.","topic":{},"tournamentID":"1hlmlrX6In8aTapDJoTu","division":"","link":"","round":"1","infoSlide":"","id":"fRdfNsKlJhXvHvcC44Em"},{"tournamentID":"980ImkvfswyUVd54XFQd","topic":{},"infoSlide":"","division":"","link":"","language":"English","round":"Open_Final","content":"TH regrets that Lance Armstrong got caught.","id":"fSCEicpl7JOaB9UDXysR"},{"division":"","round":"1","language":"English","topic":{},"content":"This House supports the introduction of a two-tier education system, that places non-academic students in separate schools that cater towards vocational qualifications and practical skills.","link":"","tournamentID":"6tyiq2GnlmVmI452js6u","infoSlide":"","id":"fSQ9deNd2vjFyNzfl2nq"},{"round":"4","topic":{},"content":"THBT the South Korean Government should ban propaganda balloons.","infoSlide":"","tournamentID":"a7Zdmoc5GpY9KlKkDEVg","language":"English","link":"","division":"","id":"fTpGFF9WBulaZipou0aT"},{"language":"Vietnamese","division":"","tournamentID":"i00RSzvK4b1TDEgnpFJd","topic":{},"infoSlide":"Văn hóa tự phê bình là một văn hóa nơi mà các cá nhân được khuyến khích tự chỉ trích một cách công khai những thiếu sót của bản thân mình.","link":"","round":"1","content":"Chúng tôi phản đối văn hóa tự phê bình trên mạng xã hội.","id":"fUWeL144uio4FtYGOv8J"},{"language":"English","infoSlide":"","division":"","content":"THBT the NAACP should have encouraged Rachel Dolezal to stay on as the Spokane chapter President.","topic":{},"link":"","round":"5","tournamentID":"IgBrZRMArYLwB0oVtcRa","id":"fV5e20iCyWPxSPVBCwDx"},{"division":"","topic":{},"infoSlide":"","tournamentID":"V6eoj3ztq5t3sX9oPVue","link":"","content":"THBT single parents sent to prison should be able to raise their children in prison.","round":"1","language":"English","id":"fVUHSCloqN30EQOwrWoH"},{"language":"English","tournamentID":"hY7icY7k8fuatysSqMFr","topic":{},"round":"3","content":"TH believes that the life in the cartel is a better life for Tony Montana than a life of following the law.","link":"","infoSlide":"","division":"","id":"fVkEC942HmWF1akrkutX"},{"language":"English","content":"THB the EU should centrally govern all vital aspects of the economies of heavily indebted eurozone nations.","link":"","tournamentID":"kFgdnpZDLOmYAkEJ1Zu6","round":"4","topic":{},"infoSlide":"","division":"","id":"fVkTm4ZOtiHvqbYNVmwW"},{"division":"","language":"English","infoSlide":"","tournamentID":"fHaBEm9PW7QYO4ZKFbwi","round":"3","topic":{},"link":"","content":"THBT South Korea should have nuclear weapon.","id":"fWPfeybuqH2pSyW1S4zp"},{"division":"","topic":{},"content":"TH, as Likud, W support and adopt the Jewish People’s Intelligence Services Doctrine.","link":"","language":"English","tournamentID":"fzLPoPRlME1NEcvf7oVd","infoSlide":"","round":"4","id":"fWuCGvfWLOnVXmvoDDqP"},{"infoSlide":"","round":"1","topic":{},"tournamentID":"GwkssAj8zxpqlXlKBDqa","language":"English","content":"THW make the right to vote contingent on basic knowledge about political issues.","division":"","link":"","id":"fWvjJAo5TNZkM4zLBa4u"},{"round":"4","content":"Imagine that you and you alone discover irrefutable proof that there is no afterlife (including reincarnation). Unless you share the proof, the secret dies with you. THW not share the proof.","division":"","topic":{},"infoSlide":"","language":"English","link":"","tournamentID":"OJi1hwkxrfVjCOf6ZDRH","id":"fXCb8zPCB0VJhnEbvh9B"},{"content":"THW invade North Korea.","topic":{},"language":"English","division":"","round":"5","tournamentID":"KEJHhRHDE4CXyVyy0Jy8","infoSlide":"","link":"","id":"fYM28qWhNVdZ2E8fnotC"},{"language":"English","link":"","topic":{},"division":"","tournamentID":"NHUypnZQCfkPD98j8TYR","content":"THW prosecute communities for complicity in honour killings.","round":"Novice_Final","infoSlide":"","id":"fYyBgqVHUJjJ4SiBKgW2"},{"round":"2","content":"THBT the EU should lift its ban on exporting sedatives used in lethal injections to the USA.","link":"","topic":{},"division":"","language":"English","tournamentID":"LRHTkoiYpBfYWWuS1rtT","infoSlide":"","id":"fZ1bLqW8zAIpMIfyoNsU"},{"tournamentID":"7eFEPGI7iZMY9BTHG43T","infoSlide":"","topic":{},"round":"Grand Final","division":"","link":"","language":"English","content":"TH celebrates the decline of globalisation.","id":"fZNbyV1F6NlS43RNOF9R"},{"infoSlide":"The act of granting absolution refers to the act of priests or other religious authorities “forgiving” on behalf of God, the sins of Catholics who make confessions to them. In Catholic tradition, confessions are strictly confidential between the priest and the confessor and are never disclosed to anyone, not even the police.","content":"THBT the Catholic Church should direct their priest to grant absolution to criminals who make confession to them, conditional upon their surrendering themselves to the police.","link":"","division":"","language":"English","topic":{},"round":"4","tournamentID":"7eFEPGI7iZMY9BTHG43T","id":"fanH163HseI8RLSb0NfW"},{"infoSlide":"Tình dục hóa là hành động đặt giá trị ngoại hình và sức hấp dẫn tình dục của một người lên trên tất cả các đặc điểm khác. Khi đó, người ấy trở thành đối tượng để người khác sử dụng với mục đích tình dục thay vì được coi là một cá thể có năng lực độc lập. Các nghiên cứu đã chỉ ra rằng nữ giới thường bị tình dục hóa nhiều hơn hẳn nam giới trong các ấn phẩm truyền thông (ví dụ: mặc quần áo hở hang, với tư thế cơ thể hoặc nét mặt ngụ ý sự sẵn sàng tình dục) và bị vật hóa (ví dụ: được sử dụng như một vật trang trí, hoặc như các bộ phận cơ thể hơn là toàn bộ con người).","language":"Vietnamese","tournamentID":"WEotTkb6ok8UfUOl0Lwb","link":"","content":"Chúng tôi tin rằng phong trào nữ quyền nên đấu tranh cho việc bình đẳng tình dục hóa ở nam và nữ trong truyền thông thay vì phản đối tình dục hóa ở nữ giới.","topic":{},"division":"","round":"Semifinals","id":"fb043Qio06IzqISVbQw2"},{"round":"4","division":"","infoSlide":"","content":"THBT Donald Trump’s presidential campaign is good for America.","tournamentID":"m9Mkt1xdSA1jDsNN4zgu","language":"English","link":"","topic":{},"id":"fbNVFGa6eYOFBFNcdnmh"},{"topic":{},"language":"English","infoSlide":"","round":"Novice_Semi","link":"","division":"","tournamentID":"6AnUBd9SLIBHmD9Uy5dS","content":"TH, as Canada, would not extradite Meng Wanzhou to the United States.","id":"fc3KVLKL5DrVky636uxZ"},{"topic":{},"tournamentID":"NxB6ercynISK3sISgci5","content":"THBT, upon death, every person’s body should revert to the state for scientific use or for organ donation depending on necessity.","language":"English","round":"Open_Semis","division":"","link":"","infoSlide":"","id":"fcRghIDsNn1RgTqfAvvK"},{"content":"Secondary schools should have a mandatory course in etiquette.","round":"1","language":"English","link":"","topic":{},"infoSlide":"","tournamentID":"xLHei5vZFgpmhHOsyDv6","division":"","id":"fcS8JSYTwHLtHRBo66RR"},{"tournamentID":"5SXUtPGKmOtgXxWouFAs","content":"THS the democratisation of powerful civil service appointments.","link":"","topic":{},"infoSlide":"Democratisation refers to the introduction of a democratic system or democratic principles. Powerful civil service appointments include the heads of bureaucratic departments and agencies.","division":"","language":"English","round":"4","id":"fdeaaCFV2chsPcXb1KVz"},{"language":"English","round":"5","division":"","topic":{},"content":"THBT courts in emerging democracies should break up constantly dominant political parties.","tournamentID":"pu7FduCxL7IOOrWe0ypf","infoSlide":"","link":"","id":"fdjczBhszLMyMKxT7Jl7"},{"division":"","link":"","round":"Open_Final","infoSlide":"","topic":{},"tournamentID":"LK6lSp8gpBGbLjuv9caV","language":"English","content":"Should the internet be closed on Sundays?.","id":"fe6heZh1yeZg0tBXiuou"},{"tournamentID":"nALUKfkpmOnWnQCzecru","round":"","language":"English","division":"","content":"THW ban media content that denies the efficacy of COVID-19 vaccines without substantial evidence.","infoSlide":"","link":"","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"id":"ffEVk6qSQAltsxVVq9Ng"},{"language":"English","link":"","tournamentID":"xUGmMsj95M2w5CV6WYVA","division":"","round":"5","infoSlide":"","topic":{},"content":"THW assasinate Kim Jong-Un.","id":"fg4YCWWNTJbB1qzOoMFt"},{"division":"","link":"","round":"","tournamentID":"mNwitMoNsjWupgwG8pR5","infoSlide":"Communal policing refers to policing performed by members drawn predominantly from the local neighbourhood. These organisations have the right to decide whom they arrest, and what force they deploy, consistent with national law (i.e. can go up to the level of force stipulated by the law, but not exceed it).","content":"THW adopt communal policing in areas of high crime rates.","language":"English","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"id":"fhnYVDbcVShulcUGDUGE"},{"language":"English","content":"In aging societies, this House would provide extensive financial incentives to couples to have multiple children.","link":"","topic":{},"infoSlide":"","tournamentID":"2C0TX71TRjIIOcsN7CbL","division":"","round":"Open_Octos","id":"fj8tjohrVDotmQFtswYO"},{"language":"English","link":"","content":"TH opposes vaccine passports.","division":"","topic":{},"infoSlide":"Several countries such as Denmark, China and Sweden are working on developing their own vaccine passports for international travel. The passport, available in both digital and paper formats, shows details of a traveller’s Covid-19 inoculation, as well as nucleic acid and antibody test results.","round":"Semifinals","tournamentID":"KTeMrrauFpZYvjtBUkLJ","id":"fkbDdSyYd0bDCD0ajgR5"},{"round":"Novice_Final","language":"English","content":"In universities where affirmative action for women exists, this house would institute affirmative action for men in departments where they are under-represented.","infoSlide":"","division":"","tournamentID":"MIEMFyC8nYMlqXU4wtOC","topic":{},"link":"","id":"fl2BzdKd1WJNGqD0k52H"},{"topic":{},"language":"English","round":"3","infoSlide":"","content":"THBT government must grant economic compensation to those unemployed by the automation of their work.","link":"","tournamentID":"axWwnyCM8L14pVHljukt","division":"","id":"flUpQdcMm0u4VcJdQr6e"},{"infoSlide":"","link":"","tournamentID":"8ayi1XeWc8ZG8jPzG8bt","content":"THW give extra votes to young adults.","round":"5","topic":{},"division":"","language":"English","id":"fljGhM4Ss6KMXU6qi2Zr"},{"topic":{},"link":"","tournamentID":"92dIEXeOXUVvlcFeGCIr","content":"THW prohibit private ownership of art deemed to be culturally or historically significant.","round":"2","infoSlide":"","language":"English","division":"","id":"flng1QChZmkXnwSpg0AU"},{"tournamentID":"FBVfHrOa3NYALcBMtKIC","division":"","language":"English","link":"","infoSlide":"","round":"5","content":"This house would ban all political polls before any election.","topic":{},"id":"fmD3c8YNiApTF2PV0ndt"},{"round":"3","language":"English","division":"","content":"THB the Democratic Party should prioritize/welcome the nomination of candidates at all levels of government who favor more radical changes to existing policies and structures over those who are seen as more \"electable\".","infoSlide":"","tournamentID":"hrSRQu49cq5gHsXJLBgQ","link":"","topic":{},"id":"fmRsk9wF7bi2HVAQtoND"},{"link":"","content":"THW provide all citizens a basic income at the poverty line without setting any requirements.","division":"","topic":{},"language":"English","tournamentID":"3dDCV3YYSGl8TNe5f3iO","round":"3","infoSlide":"","id":"fmWEHG81WApdcDVqJi4k"},{"language":"English","round":"5","infoSlide":"","content":"THBT US elected officials should not be subject to recall elections.","division":"","link":"","topic":{},"tournamentID":"h2z0CGY0CzqfLCKUb3wz","id":"fnqpTUWrHXpXMI9QKK0A"},{"content":"This House would deny tax-exempt status to religious institutions that refuse to appoint female leaders.","topic":{},"division":"","round":"3","language":"English","infoSlide":"","tournamentID":"0mv3ToZPy0AwAsRnpZBN","link":"","id":"fnvVhcRFNwZp9ydPTvLJ"},{"round":"4","topic":{},"tournamentID":"KpispxU2MtVt41R9j5bV","language":"English","division":"","content":"THW not allow “intersex” female athletes (such as Caster Semenya) to compete in female sporting competitions unless they take hormone suppressants.","infoSlide":"","link":"","id":"fpUIPvId5HBknpJWx60S"},{"tournamentID":"tKXlShZl2vec49jC1bif","link":"","infoSlide":"","round":"Open_Final","topic":{},"division":"","content":"THR the narrative that people who are members of marginalised groups (e.g. queer people, people of colour, indigenous people) should only vote for left-wing parties and politicians.","language":"English","id":"fqSJKdwZdYW4apISxE5p"},{"tournamentID":"oUef705Eak69UuzgVheB","language":"English","content":"THBT It Is Immoral To Vote Republican.","infoSlide":"","round":"Open_Final","division":"","topic":{},"link":"","id":"fqxBuTAQMKdcizaMEO0Z"},{"tournamentID":"mBBGfJmUYufw4KNTlYoR","round":"5","link":"","division":"","content":".","topic":{},"infoSlide":"","language":"English","id":"fr8lhZmCR3SbPVck0lpi"},{"content":"THW halt all development aid to countries that punish homosexuality.","round":"2","link":"","tournamentID":"E91ZTw8wNjTYuX6RmZCc","language":"English","division":"","infoSlide":"","topic":{},"id":"frJra3mMXRP7pIz6Jaa7"},{"topic":{},"division":"","infoSlide":"","link":"","content":"TH supports the actions of Anonymous and other such vigilante groups.","tournamentID":"3tMy4nyufgrwLpV8f6da","language":"English","round":"Open_Semis","id":"frgh0PvLrir5Wjd7Gf69"},{"round":"Open_Final","language":"English","topic":{},"infoSlide":"","tournamentID":"Hq4qmpVpWAzn16SzuUU8","link":"","content":"TH as a Yellow Vest, supports attempts by Les Emergents to run for elections in European and French elections.","division":"","id":"fsMXkimVMGODteFU1mJJ"},{"round":"6","topic":{},"tournamentID":"nMUJTA4Krf9MyO7MGVzA","infoSlide":"","link":"","content":"THW impose a DNA database.","division":"","language":"English","id":"fsn3pk0GNsTuMbE8aRtE"},{"topic":{},"infoSlide":"","division":"","round":"Open_Final","tournamentID":"JTOMyeCSk6IujHBgAOMi","language":"English","link":"","content":"THW, as the CDU, pursue a minority government in the Bundestag.","id":"fstUVcVTO5HlsozbiEdE"},{"infoSlide":"","link":"","topic":{},"tournamentID":"xm1UErfWKMzGBfeKsba9","round":"Open_Final","division":"","content":"THBT Socrates should not have drunk the hemlock.","language":"English","id":"ft1KKAObKmpqJNGEuSc3"},{"round":"2","infoSlide":"","content":"THBT democracies should give migrant workers a vote in national elections.","tournamentID":"IgBrZRMArYLwB0oVtcRa","topic":{},"link":"","division":"","language":"English","id":"fuG0J4zQBNgOxOtW7KHL"},{"infoSlide":" In 2015 Iran signed the ‘Joint Comprehensive Plan of Action’, also known as the Iran Deal. In exchange for committing to denuclearisation and allowing UN inspection of their nuclear sites, the international community would unfreeze Iranian assets and remove economic sanctions. In 2018 President Donald Trump removed the United States from the deal. In 2020 Iran formally announced it would no longer comply with the deal. Joe Biden has indicated his willingness to resume the Iran Deal. Other parties to the deal like Germany have suggested they would require an ‘Iran Deal Plus’ to re-enter. An Iran Deal Plus would involve Iran making additional concessions, perhaps including the dismantling of its ballistic missile program or ceasing funding extremist groups throughout the Middle East.","tournamentID":"5SXUtPGKmOtgXxWouFAs","topic":{},"language":"English","content":"This House, as Iran, would accept the ‘Iran Deal Plus’.","division":"","link":"","round":"3","id":"fuhoOJhxl6rXAuVaGwLV"},{"language":"English","tournamentID":"ukcS5bJ2TUuNfMuzta0w","division":"","link":"","round":"3","content":"THBT the environmental movement should abandon the narrative of personal responsibility in favor of one which emphasizes institutional accountability.","topic":{},"infoSlide":"","id":"fuj5V4qTeJL3D9gQAVWY"},{"tournamentID":"OZYKzIzIg9zKy9OOiaP3","language":"English","round":"4","division":"","content":"THW decriminalize squatting.","topic":{},"link":"","infoSlide":"","id":"fvZLBCh03u2ICF3jTraG"},{"content":"THBT Muslim states should sever political and economic ties with India until the repeal of the Citizenship Amendment Act.","infoSlide":"","tournamentID":"81tUVTFSIzBinbpptw4G","round":"3","link":"","language":"English","division":"","topic":{},"id":"fvdf9iZ530JGBbllFapz"},{"round":"2","tournamentID":"kaKFVFzhrgSOIPlruLU6","topic":{},"language":"English","infoSlide":"","link":"","content":"THP a world where significant minority groups (e.g. Maori and Aboriginal populations in New Zealand and Australia; Catalonians in Spain; Nations within Great Britain) form their own sports teams rather than partake in the national teams of their country of residence.","division":"","id":"fwM7dUBP9GEJPPHWBFMv"},{"round":"6","tournamentID":"5Qomv7BFHTKmY4PchwDr","topic":{},"content":"That young people should reject traditionally empowered political parties.","division":"","link":"","infoSlide":"","language":"English","id":"fwywYRanJ2N34w8XADaY"},{"division":"","language":"English","link":"","infoSlide":"","tournamentID":"BtqBGdAUsTtPKorZOcBX","topic":{},"round":"2","content":"THW require international development aid budgets to be approved by popular referenda.","id":"fx9dafW3559PvI7c15Hv"},{"link":"","tournamentID":"t1jiRXU99xeGdoIkTeyF","content":"This house believes that countries close to conflict zones should only grant long-term asylum to refugees who agree to one year of military service.","topic":{},"language":"English","round":"Open_Partial_Double_Octos","infoSlide":"","division":"","id":"fxUFcBkakGT4MVrVomjE"},{"round":"Open_Final","content":"THW create: 1) an obligation on western powers to militarily intervene in conflicts where chemical weapons are being used (regardless of UN approval), and 2) a right if major humanitarian organisations to sue governments for failure to fulfil this obligation.","tournamentID":"fD5a3Vi9JDUEndfjCOKz","infoSlide":"","language":"English","topic":{},"link":"","division":"","id":"fy79YC38bE6LEznfEwre"},{"tournamentID":"Fu8k3vJxi4iJsdZw9d7j","content":"THBT the scientific community should reject the view that science and religion are non-overlapping magisteria.","language":"English","topic":{},"round":"Open_Final","infoSlide":"","division":"","link":"","id":"fyo3UVc7Q4q3gCPOUjTx"},{"topic":{},"tournamentID":"5YRD8EoL8wrQu3pTfkUI","language":"English","infoSlide":"","round":"1","link":"","content":"THBT social media platforms should aggressively remove unverified information.","division":"","id":"fzDx9cxt5pnyxkctmxeu"},{"tournamentID":"RA6EqhjHK7wF8NHgzThB","topic":{},"division":"","content":"THW choose only non religious soldiers to serve in international conflicts.","round":"4","infoSlide":"","link":"","language":"English","id":"fzM5Lt8qM1rEgcvajqCj"},{"infoSlide":"","division":"","tournamentID":"JDfeMpzRWbEVXloSgRZp","round":"4","content":"THBT indebted countries should prioritize social spending over paying back loans.","topic":{},"link":"","language":"English","id":"fzqccG9PLo1ByTMXSD9d"},{"tournamentID":"BPe1MqSgmLovUz7nghmX","content":"Chúng tôi tin rằng các bằng chứng được thu thập bởi cảnh sát một cách bất hợp pháp không nên được sử dụng làm bằng chứng trong các phiên tòa hình sự nghiêm trọng.","round":"2","language":"Vietnamese","link":"","topic":{},"division":"","infoSlide":"","id":"fzy0GvuQdmRrxF9QpfTl"},{"division":"","tournamentID":"0zMaoLN7qmzWGSYIzhjh","content":"THBT The US should end the War on Terror.","round":"Open_Final","infoSlide":"","link":"","language":"English","topic":{},"id":"g0BVjfvzA18tdbMgw7Zq"},{"link":"","topic":{},"round":"Open_Final","tournamentID":"Sdm6UfNcXB7Ppj4BkdLe","division":"","infoSlide":"","language":"English","content":"THBT the LGBT Movement Should Not Out Homosexual Politicians That Publicly Profess Homophobic Views.","id":"g26uhaKsLRX0WiQCGepx"},{"division":"","content":"Giả sử có 1 cỗ máy có thể đo được sắp đẹp, chúng tôi sẽ tạo ra thuế sắc đẹp (càng đẹp càng trả thêm thuế).","link":"","topic":{},"language":"Vietnamese","round":"Quarterfinals","infoSlide":"","tournamentID":"sIrS2zWJD8m7ibVjvyDN","id":"g2OMqqlvHDfJ5F4CUULj"},{"division":"","topic":{},"content":"THBT education is a federal matter.","round":"3","tournamentID":"uk4xP1Lp7BjYaOzgd3Xi","language":"English","link":"","infoSlide":"","id":"g3DvPPdRlBO5hoC5jRf7"},{"topic":{},"infoSlide":"","link":"","tournamentID":"znXRdnU2llK8fXmHlci5","division":"","content":"Chúng tôi sẽ yêu cầu phụ huynh chịu trách nhiệm pháp lý cho hành vi của con cái mình.","round":"4","language":"Vietnamese","id":"g3dhzzh12N697RJgRh3M"},{"topic":{},"division":"","round":"Open_Semis","tournamentID":"LH17DUUbXDstAFfMNJyf","link":"","content":"You are an emigrant from a poor and collapsing unnamed country. You are offered full and immediate citizenship from the United States and the European Union. The offers are the only two options you have and are mutually exclusive. You do not know where you will live in either Union. Your native and only language is not spoken in either. Motion: THW emigrate to the European Union.","language":"English","infoSlide":"","id":"g3gWMebwq50VDcwJ2dlX"},{"tournamentID":"zppT86F7lAE0Gpp7tWYo","round":"C2","link":"","content":"THBT change is not progress.","topic":{},"infoSlide":"","language":"English","division":"","id":"g4NIV0rPWTe8tGGi1IdS"},{"division":"","infoSlide":"","round":"1","tournamentID":"aC5itVCb0EApgG8DEaqA","language":"English","link":"","content":"THS the “No Platform” practice towards far-right and fascist public figures in advance of the EU elections.","topic":{},"id":"g4pLCShaOpKmDliBBm9G"},{"language":"English","infoSlide":"","topic":{},"content":"THBT sanctions are a good way of implementing democracy.","round":"4","link":"","tournamentID":"RlGrdg8aVMD5XQVuPN3W","division":"","id":"g4rvC9RShEI9a03aXPcn"},{"tournamentID":"aL5gnSWQ3OQq2Lb3mRix","division":"","topic":{},"round":"4","language":"English","link":"","content":"THBT the South Korean Government should break up Chaebol conglomerates.","infoSlide":"","id":"g5oC9cCEbqSmDqvTWZHh"},{"tournamentID":"DLFJWaIyHnSlvFofovjc","language":"English","content":"THB in visa freedom with Russia.","topic":{},"round":"3","link":"","infoSlide":"","division":"","id":"g65Js3nPjcm4jHakactl"},{"infoSlide":"","topic":{},"round":"4","tournamentID":"WACrra94379E35Be36hc","language":"English","division":"","content":"This House, as the United States, would engage in cyber-attacks against Russia.","link":"","id":"g6GDQ3elFpBrrlvioga1"},{"link":"","language":"English","content":"THP Facebook's policy of only removing content that users report as objectionable to a policy where Facebook itself independently determines restrictions on content.","topic":{},"infoSlide":"","round":"Open_Quarters","division":"","tournamentID":"H2ZQZD4EPmxpktxvJnUz","id":"g6suc5Agou4kS90ZKqaA"},{"division":"","topic":{},"link":"","round":"4","tournamentID":"I5iTcVABscgCPPKzr8Oa","content":"THS the establishment of LGBTQIA+-only schools in conservative areas.","language":"English","infoSlide":"","id":"g6yB1hjy5cZtGltDLSaJ"},{"topic":{},"division":"","tournamentID":"0M48sfM68g8U5RgkKD2l","infoSlide":"","link":"","content":"TH regrets the rapid expansion of online education.","language":"English","round":"4","id":"g7aitfF399I19Ej9eDgo"},{"tournamentID":"7xqpYA72Sruch4lr5Uzj","division":"","language":"English","round":"Open_Final","topic":{},"link":"","content":"THW break Google’s search monopoly.","infoSlide":"","id":"g7m5NpemSkjyK4ogfjGC"},{"topic":{},"tournamentID":"54Voc2YjynWxScz0a04o","language":"English","division":"","round":"1","infoSlide":"","link":"","content":"THW allow employees to sign a contract to give up their right to have children in exchange for a higher salary.","id":"g8TKrOfqUWffgj3I5cpS"},{"round":"3","tournamentID":"yDUOVgl6qLMa2DH8lCD5","language":"English","infoSlide":"","link":"","topic":{},"content":"TH regrets the EU’s introduction of freedom of movement.","division":"","id":"g8Vqx9FH7CPJXIFep9bj"},{"language":"English","tournamentID":"fkUHa28aVk8LYYEAdofu","topic":{},"round":"2","division":"","infoSlide":"","link":"","content":"That we prefer broad tax cuts in financial stimulus packages to targeted government spending.","id":"g9DkAtSnf9BcvL0mrKnu"},{"round":"4","content":"This house regrets the glorification of the individual pursuit of social mobility.","tournamentID":"fBPBbh32BZ2p0Y1Fy5Yi","division":"","infoSlide":"","link":"","language":"English","topic":{},"id":"g9MsifhKdpVmwsu3TqqF"},{"infoSlide":"","link":"","tournamentID":"n7qv29PmNuF5SOe42oiz","division":"","language":"English","content":"That we would, as the Coalition, dedicate substantial resources into challenging the legal status of minor parties and their candidates (eg. Section 44, the number of signatures, etc.).","topic":{},"round":"5","id":"gB66EYSChKj9z2tLvOSo"},{"division":"","language":"English","link":"","content":"THW allow organ donation only to those individuals who are donors.","round":"6","topic":{},"infoSlide":"","tournamentID":"V8KRgdahxIEUYFHrRWYb","id":"gBrHEiCT8KvcgWPlA71Y"},{"link":"","division":"","language":"English","infoSlide":"","content":"TH, as the Biden Administration, would not prosecute Donald Trump for his accused crimes (tax and bank fraud, real-estate fraud, sexual misconduct/harassment, inciting mob violence, Russian interference in 2016 election, etc.)","tournamentID":"D8AtyrmDZV48giPFtym5","topic":{"politics":{"check":true,"title":"Politics"}},"round":"","id":"gCPoD6coD9aZnaw0DzXm"},{"topic":{},"division":"","link":"","language":"English","content":"THW mandate the use of condoms in porn.","round":"3","tournamentID":"McARyCvnNLDmzAARI8jE","infoSlide":"","id":"gCZ2i462ll689jWbvkdC"},{"content":"THBT our legal system should neither regulate nor judge behaviour that takes place solely in virtual online worlds like “Second Life” and leave the making of rules to their manufacturers.","topic":{},"language":"English","link":"","division":"","infoSlide":"","tournamentID":"A8uW9F7TCtUhRLICBZWb","round":"1","id":"gCbiKLeK22Flt8oCm7wo"},{"link":"","round":"Open_Final","division":"","infoSlide":"","topic":{},"language":"English","content":"THBT student unions should not take political positions that do not directly pertain to tertiary education.","tournamentID":"mEr4tnJE0kt1V0JvT2KG","id":"gEFjw4w0I7LHLmNzBocp"},{"link":"","tournamentID":"EdTnzchhKzipTBRxQvXJ","infoSlide":"","division":"","language":"English","content":"THW welcome a UK exit out of the EU.","topic":{},"round":"5","id":"gFHnm5pBhufoXQePqIqJ"},{"round":"3","topic":{},"link":"","infoSlide":"","language":"English","content":"THW force men and women to take equal maternity and paternity leave.","tournamentID":"KErVXbqRahyWD7ZB1Q1m","division":"","id":"gFnBWGjepCA9Ig0T56mD"},{"infoSlide":"","round":"Open_Final","topic":{},"content":"THW, as Japan, ban geishas.","division":"","link":"","tournamentID":"g8CCOnnQt2zCZCMbRAUS","language":"English","id":"gG7Va6zxGbNABvmK5gbh"},{"topic":{},"infoSlide":"","link":"","division":"","language":"English","round":"Open_Final","tournamentID":"DWR60IgakRS9N3GeNemc","content":"THW dissolve global human rights institutions in favor of regional human rights institutions.","id":"gGi8c42JjdxU4XpJk867"},{"tournamentID":"5O13410pDrHfcvKnpppR","division":"","topic":{},"infoSlide":"","link":"","round":"2","content":"This house believes that the European Union should be an economic union, not a political union.","language":"English","id":"gH4FpZRkomg2fDT0XRzo"},{"round":"Open_Semis","infoSlide":"","division":"","tournamentID":"MgpFX31hoBasrUiOV7Eu","link":"","content":"This house regrets the modern idealization of Civil Rights leaders as moderate, pacifist, and respectable.","language":"English","topic":{},"id":"gH9P1OJf0PVWAxC1IrHW"},{"infoSlide":"","tournamentID":"9pAAcbund4BvOXScZxre","link":"","language":"English","topic":{},"round":"Open_Final","content":"In a possible near future world, a computer chip has been developed which can painlessly be implanted in the brain, preventing all sexual desire. At the same time, technology has advanced to the point where completely asexual human reproduction is possible. THW prefer that world to this one.","division":"","id":"gHEX12O1m066Dt65siYa"},{"content":"THW ban zero-hour contracts.","round":"2","language":"English","tournamentID":"UFyGWwwkKkZKyD4oHYoI","link":"","division":"","infoSlide":"","topic":{},"id":"gHnFFkF1VWuWweamEoDq"},{"division":"","topic":{},"link":"","infoSlide":"","tournamentID":"ti8CFKwd5Fq6RHmrGph0","language":"English","content":"TH would allow soldiers to opt-out from military missions on the basis of conscience.","round":"Open_Final","id":"gIwxer6m2m0OxogkVcaM"},{"tournamentID":"xm1UErfWKMzGBfeKsba9","round":"Open_Semis","division":"","link":"","content":"THBT Pakistan should end all cooperation with America’s War on Terror.","language":"English","infoSlide":"","topic":{},"id":"gIygOi6gk6e7xP0rf76E"},{"division":"","topic":{},"link":"","round":"","infoSlide":"Examples of social movements integrating with nationalism e.g. USA Pride Flag, \"Real Brits support women's equality\", POC floats at independence parades, etc.","tournamentID":"1dwGdjAn9pODo8bQfmJW","content":"THO integration with nationalism by social movements.","language":"English","id":"gJGobbGHfe0Fio7O2gVc"},{"tournamentID":"9JqIpRhRkA8gulRio4t9","link":"","division":"","language":"English","topic":{},"content":"This House supports the US's use of economic warfare (tariffs, targeted sanctions, etc.) against China in order to force compliance with the rules of the global neoliberal economic order (opening up its economy, protecting intellectual property, not engaging in currency manipulation, etc.).","round":"3","infoSlide":"","id":"gJdNx3SIOsKLVv7fEsmr"},{"topic":{},"content":"This House Believes that the Election of Donald Trump Serves the Interests of Russian Citizens.","round":"Open_Final","division":"","language":"English","infoSlide":"","link":"","tournamentID":"BXOIn4DQsS3fQg4ZnBFn","id":"gJx5RC8xAsiWoD6cv9j6"},{"content":"Trong một gia đình có mâu thuẫn kéo dài giữa cha mẹ và con cái, chúng tôi sẽ sử dụng công nghệ X.","tournamentID":"gUFKQBcgvghmUX6k0Dj3","language":"Vietnamese","infoSlide":"Giả sử tồn tại một công nghệ X có khả năng hoán đổi linh hồn của bố/mẹ cho con cái trong một khoảng thời gian 6 tháng. Khi hoán đổi, mỗi người đều phải thực hiện hoạt động thông thường của người mình nhập vai. một ví dụ viễn tưởng có thể kể đến như phim Freaky Friday, tác phẩm Hồn Trương Ba Da Hàng Thịt, ...","division":"","round":"4","link":"","topic":{},"id":"gKCiP43MjMO3xUCPdS9g"},{"division":"","infoSlide":"","link":"","language":"English","round":"Open_Final","tournamentID":"WACrra94379E35Be36hc","content":"This House would program the robots to hide the existence of past human life on Earth.","topic":{},"id":"gKO2DlsHoOvLpiLpWrRn"},{"division":"","round":"Novice_Final","tournamentID":"ChiU8yMbLI2Y2q5rwURP","link":"","topic":{},"content":"THBT it is immoral for individuals who have met their basic needs to not donate any excess wealth to utility maximising causes.","language":"English","infoSlide":"","id":"gLQIaRXaejlz1new5IsY"},{"division":"","round":"ESL_Semis","content":"This house believes all serious crimes should be trialed by Jury.","infoSlide":"","language":"English","tournamentID":"VPUCPVj9FHFW0uzJinv0","topic":{},"link":"","id":"gLue7qEDD7Okx0TjSvgE"},{"link":"","round":"1","tournamentID":"jVtcrR58DYEPrz6PXM17","language":"English","topic":{},"infoSlide":"","division":"","content":"This House prefers Guantanamo Bay rather than the current practice of the war against terrorism with unmanned aerial vehicles.","id":"gMpZvRjsv1BTWtW1jNKc"},{"language":"English","round":"4","division":"","link":"","content":"THW give security services total and unrestricted access to citizens’ data on social media and webmail services.","infoSlide":"","tournamentID":"18IIGMrqE33YyULmp5EY","topic":{},"id":"gMwhUgP4u7B3tFI0JnTO"},{"language":"English","link":"","infoSlide":"","topic":{},"round":"3","content":"TH, as the US, would make aid to Saudi Arabia contingent on its full withdrawal from Yemen.","tournamentID":"SGi6PbXyMszZpWzTP1JN","division":"","id":"gN9ewZTwKVga8hdU6mse"},{"language":"English","tournamentID":"o29IKQqCI95UODWABA9Y","infoSlide":"","division":"","content":"THBT the US should overturn its blanket ban on negotiating with terrorists.","topic":{},"link":"","round":"Open_Semis","id":"gOJHBsRfIEefSn4t0Wq1"},{"topic":{},"content":"THBT the Baltic states should not provide any development aid.","round":"1","link":"","division":"","infoSlide":"","language":"English","tournamentID":"DLFJWaIyHnSlvFofovjc","id":"gOVABY9EHZCmWViHh3x3"},{"infoSlide":"","language":"Vietnamese","link":"","tournamentID":"KE7jdAyW9az9nKVb9FMV","round":"","content":"Chúng tôi tin rằng chính phủ Việt Nam nên chủ động đưa ra các biện pháp mạnh để bảo tồn văn hóa (VD: ưu đãi thuế cho các doanh nghiệp sản xuất trong nước, tài trợ cho các chương trình và MV minh họa lịch sử và văn hóa Việt Nam).","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"division":"","id":"gOZUho0vOMOUP1SyuAXC"},{"round":"4","infoSlide":"","content":"This House Regrets the glorification of the immediate postcolonial leaders in Sub-Saharan Africa.","topic":{},"division":"","link":"","tournamentID":"1dEXZTvvRtTWhdBLmzFt","language":"English","id":"gP8AKY8QinTYN9Eibe2z"},{"topic":{},"language":"English","tournamentID":"bxhnmh9CZq21XJcRU2BX","content":"This house would abolish income tax in favour of consumption taxes.","infoSlide":"","link":"","division":"","round":"2","id":"gPspOP2NIsZF3GOqUo9t"},{"division":"","round":"Open_Semis","link":"","infoSlide":"","tournamentID":"rkItJ1M9he5ApXeOVBjJ","language":"English","content":"Semi-Final: THBT the USA should make Taiwanese independence a major foreign-policy aim.","topic":{},"id":"gQ0mdBluXWxQPq17epNZ"},{"language":"English","round":"2","division":"","link":"","content":"TH regrets the dominant narrative that moral progress is inevitable (e.g.”The moral arc of history bends towards justice”).","infoSlide":"","topic":{},"tournamentID":"ERxjvEIrmiL3iSgvcfdB","id":"gQeoLvSm7QPc9QR6eHfJ"},{"infoSlide":"","link":"","language":"English","tournamentID":"DLFJWaIyHnSlvFofovjc","topic":{},"round":"Open_Final","division":"","content":"THBT that the European Union has failed.","id":"gQyHZCFrK1E0VyZAdqQR"},{"content":"TH, as the CCP, would publicly acknowledge their errors in their managing of COVID-19 & the creation of a pandemic, and agree to reasonable measures of assistance & compensation to the global community.","language":"English","division":"","tournamentID":"Sf18naS6qmQzDSIMNRFV","round":"1","topic":{},"link":"","infoSlide":"","id":"gS1K31rdsC1g6wWllNxS"},{"topic":{},"link":"","infoSlide":"","language":"English","round":"Open_Final","content":"Assuming feasibility, THW sacrifice the rich.","tournamentID":"CLp8pjuIm6vddMdiBEC5","division":"","id":"gS6j2T4rhBOGKRxH35hg"},{"topic":{},"language":"English","infoSlide":"","division":"","round":"3","tournamentID":"LnHXZbgsbq5JIVU7k21X","content":"THW limit media coverage of shootings.","link":"","id":"gSSnX12kl9LoHb67AGyZ"},{"infoSlide":"The US is currently involved in major nation building projects in Afghanistian, including funding and support of democratic institutions, empowerment of local leaders and investment in education.","tournamentID":"R2D7uxDuM6stYlRyK9ev","link":"","language":"English","division":"","content":"THBT The US should continue its nation building efforts after it has left Afghanistan militarily.","topic":{},"round":"3","id":"gSXQ5BlBjHXIR3BtKZ8M"},{"content":"You are a relatively successful indie film-maker who has been approached by a major movie studio to direct a major film franchise. THW turn down the offer.","infoSlide":"","tournamentID":"jU6ofoRVsACbu04pXrg6","round":"6","topic":{},"language":"English","link":"","division":"","id":"gT0uOx2sTodOrPiMYVOF"},{"content":"THW punish NHS workers who do not blow the whistle on malpractice, corruption or negligence, of which they know, as if they had carried out the act themselves.","link":"","language":"English","topic":{},"division":"","round":"5","tournamentID":"pLQyWywMwoV4AU3XoFJO","infoSlide":"","id":"gU695jdzvSifn0k6QidX"},{"topic":{},"round":"6","tournamentID":"n7qv29PmNuF5SOe42oiz","link":"","infoSlide":"","content":"That judges should not consider whether evidence was collected legally when deciding to admit it.","division":"","language":"English","id":"gUQBszzhVXcuvmHWKjoK"},{"content":"This House prefers a world where individuals believe salvation stems from faith alone, rather than a world where individuals believe salvation stems from a combination of faith and good works.","language":"English","division":"","topic":{},"tournamentID":"2C0TX71TRjIIOcsN7CbL","round":"2","infoSlide":"","link":"","id":"gUqqA7uOWt0Y9ylHt2mR"},{"tournamentID":"mAqW9Go1ryAbaaM1OY8z","content":"Chúng tôi ủng hộ sự tồn tại của lớp học thiên tài.","round":"2","language":"Vietnamese","link":"","division":"","infoSlide":"Lớp học thiên tài là một lớp học đặc biệt dành cho các học sinh có thành tích học tập xuất sắc, quy trình đầu vào rất gắt gao, mọi học sinh đều có cơ hội dự tuyển mỗi năm. Các học sinh trong lớp học thiên tài sẽ nhận sự giáo dục (chất lượng giáo viên, cơ sở vật chất, ...) và được đãi ngộ đặc biệt hơn các học sinh còn lại.","topic":{},"id":"gVTJLdmmOUmpyNUC2mVl"},{"language":"English","topic":{},"content":"THP a world where sexual compatibility is prioritised over emotional compatibility, in relationships.","link":"","division":"","infoSlide":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","round":"4","id":"gWAm6rN19THqz2plh33X"},{"link":"","topic":{},"tournamentID":"7lMrN2aiwSzD5rzPFwHz","content":"THW not give aliens the vote (aliens live alongside humans 1 year from now).","division":"","infoSlide":"","round":"2","language":"English","id":"gX4CISi60b7EvsGawncu"},{"topic":{},"tournamentID":"mf3XudZleydnsr0lEvkg","infoSlide":"","content":"This House Prefers protests with clearly identifiable leaders and defined goals to leaderless movements with disparate goals.","language":"English","link":"","round":"Open_Quarter","division":"","id":"gXrCPvoTxXctS1KKHchn"},{"round":"1","language":"English","content":"This House Would Fully Subsidize Gender Reassigment Surgery For Pubescent Teenagers Regardless of Parental Consent.","infoSlide":"","topic":{},"tournamentID":"RpQnqbHAxB8fhWBQcnaj","link":"","division":"","id":"gYHQBOFqGBJfgSlfosdY"},{"content":"TH supports scientists who fabricate evidence exaggerating the certainty of man-made climate change, where there is a low likelihood to be caught.","division":"","infoSlide":"","topic":{},"tournamentID":"zngB1WF8viOW2uGu6swZ","link":"","round":"ESL_Final","language":"English","id":"gYKBsDnLhOUozb17AST9"},{"language":"English","infoSlide":"","topic":{},"tournamentID":"JsQrI80phRuvDHr37q5N","link":"","content":"THBT the state should subsidize feminist porn.","round":"5","division":"","id":"gYbGm4lWqm4CLUOTg6ve"},{"language":"English","topic":{},"infoSlide":"","round":"3","content":"This House Opposes the commercialization of Mindfulness.","tournamentID":"YF6iuqxO6eUISnAz4iMp","division":"","link":"","id":"gZeRlTGJwPAhr2v92i1L"},{"language":"English","division":"","tournamentID":"7lMrN2aiwSzD5rzPFwHz","round":"4","content":"THW require universities to increase funding for classics and deprioritise funding for popular culture choices.","infoSlide":"","link":"","topic":{},"id":"gZiNZJIwyCZsqFFKgU9o"},{"language":"English","content":"THS first-generation immigrants to Western Europe encouraging their children to fully assimilate and identify with the local culture.","tournamentID":"02vn4ksQhlUNksv2wu0q","round":"Open_Semi","infoSlide":"","link":"","topic":{},"division":"","id":"gaqWtmaH7oBrso3tuUyZ"},{"language":"English","content":"THBT the trans movement should actively seek to separate themselves, their issues and their collective identity from the LGBTQ movement in their campaigns and in the public consciousness.","round":"Open_Semis","link":"","tournamentID":"m9Mkt1xdSA1jDsNN4zgu","topic":{},"infoSlide":"","division":"","id":"gbcmQHl2D09ffcaHTmho"},{"infoSlide":"","link":"","content":"THBT Israel should Materially Support Arab Pro-Democratic Movements.","tournamentID":"aVcqgGmAccQ09iBh9iS1","topic":{},"round":"4","division":"","language":"English","id":"gcg4X238DngK1NXnwbJC"},{"infoSlide":"","link":"","language":"English","content":"THW publish a list of convicted sex offenders.","tournamentID":"ZHpmROZ4G7eY4iB9dTsM","topic":{},"round":"15","division":"","id":"gdEXWbrogsxXzEw98TVE"},{"link":"","language":"English","content":"THW charge George W. Bush with war crimes for the CIA's actions in his terms.","topic":{},"division":"","round":"Open_Semis","infoSlide":"","tournamentID":"MSkvKRc0Dq8mooTLp6T8","id":"gdW3XUJEM0FVS8V74Y74"},{"infoSlide":"","content":"THW ban parades and demonstrations that could incite a violent response.","division":"","round":"2","tournamentID":"zm3L9uKWbGV2QY1WRlcJ","topic":{},"link":"","language":"English","id":"geF08QRkW0ulcx7XKizG"},{"link":"","content":"THBT Latin American states should provide extensive material support for a military coup against the Venezualan government.","infoSlide":"","round":"8","topic":{},"language":"English","tournamentID":"UfGg9gZEXlU744RWE1Y1","division":"","id":"geUg8UW7x8QYVl2EIOoH"},{"tournamentID":"uEekEeJIfFAC4OJWJglf","topic":{},"infoSlide":"","round":"Open_Final","link":"","content":"THW grant an amnesty to those who commit crimes during US race riots so long as they meet the following criteria: 1. They were motivated by a desire to fight social injustice, 2. If property is targeted, it belongs to the apparatus of the state (for example, police cars and government buildings.","division":"","language":"English","id":"gf91ddb89McXOxEc9SGn"},{"tournamentID":"nALUKfkpmOnWnQCzecru","infoSlide":"Context: In x years later, a technology that could comprehensively evaluate and record individuals' character traits (e.g maliciousness,wittiness, benevolence, articulateness, etc.) has been developed. This tech can be used to rank and publicise each individual's overall moral worth.","division":"","topic":{"technology":{"title":"Technology","check":true}},"content":"THW destroy this technology.","link":"","language":"English","round":"","id":"gfkJZsv2CKfo4MGEhsVV"},{"content":"THW grant asylum to those fleeing from persecution on grounds of sexual violence.","round":"Open_Final","topic":{},"language":"English","tournamentID":"ODzhGSyV71DaUGhZEWGT","division":"","infoSlide":"","link":"","id":"gft2muM6CMJrYhuXvQiW"},{"language":"English","infoSlide":"","tournamentID":"zpoYhp2wK06V8pO2Ljrp","division":"","topic":{},"link":"","content":"THW remove all legal restrictions on categories of weapons which can be used in war.","round":"ProAm_Final","id":"gfvhq39eiXuyOr2XUfE0"},{"topic":{},"infoSlide":"","language":"English","round":"3","division":"","content":"That the UK should offer citizenship to all residents of Hong Kong.","link":"","tournamentID":"XL594Q2oZbvHmfmYKFvT","id":"ghbcWrnNhIsDrrwxr4uL"},{"round":"2","content":"THBT Putin is good for Russian power on the international stage.","language":"English","infoSlide":"","topic":{},"link":"","tournamentID":"UefabB9q8iptn7SCi47p","division":"","id":"ghtoCcuRgkil7zBEITOD"},{"tournamentID":"IliTD9CbISxS4XPApnIH","infoSlide":"","link":"","round":"4","topic":{},"language":"English","division":"","content":"THW Ban any public commemoration of the centenary of WW1.","id":"gi6k400g5ACAh5pqzNNh"},{"division":"","link":"","infoSlide":"","content":"This House would allow the defendants that belong to a minority group to choose to be judged by a jury composed exclusively of other members of their same minority group.","language":"English","round":"27","tournamentID":"0DgXee32WEP3hxmGZExS","topic":{},"id":"giKraUEIQ8vgbXHSrkss"},{"link":"","round":"6","topic":{},"language":"English","content":"This wouse would allow teachers unions the right to strike.","tournamentID":"Biz1VRjjdg8eWbm4NJr3","infoSlide":"","division":"","id":"giXA2PE5FtaL4yqr6rIe"},{"infoSlide":"","topic":{},"language":"English","link":"","tournamentID":"EWgHoIX1nWCnY5U0tfPp","division":"","round":"1","content":"THW ban the fur industry.","id":"giqtPLhstehhMmmcsiXN"},{"link":"","division":"","topic":{},"tournamentID":"4WWD63gqcbSKMNoFf5ly","language":"English","infoSlide":"","round":"5","content":"This House would allow 3rd World countries to choose to be reinstated as a colony.","id":"giz8CGI8FmqEzn71orP7"},{"link":"","round":"Open_Final","infoSlide":"","division":"","content":"Should Edward Snowden get asylum in Germany?.","language":"English","topic":{},"tournamentID":"3um2E0WAP1AdkOXCUDfL","id":"gj5mTH3d9UqB3UbK6ELj"},{"content":".","infoSlide":"","tournamentID":"PRCVo2dP9UPdRU9tVW31","division":"","link":"","topic":{},"round":"5","language":"English","id":"gjq5KXJiBNKDcl80QBsU"},{"round":"1","language":"English","content":"This house believes that companies should publish compensation information for all employees.","tournamentID":"TmlbBgqJnPvT2UGB0Lbb","link":"","infoSlide":"","division":"","topic":{},"id":"gkcDznDN47EJdIOGQvG1"},{"tournamentID":"YZNcM4Wgq9Um4e7kNLdH","topic":{},"infoSlide":"","division":"","round":"3","link":"","content":"THW stop playing “The Star-Spangled Banner”.","language":"English","id":"gktGGqv1d8srdWDljusP"},{"infoSlide":"","division":"","language":"English","tournamentID":"YxG2TWeoQ8BT0rpxmfxT","link":"","round":"5","topic":{},"content":"THW TOTALLY RESTRICT FUTURE COPYRIGHTING OF OPEN SOURCE SOFTWARE.","id":"gl6VFLYV6SguMsxa6Hye"},{"infoSlide":"","division":"","content":"THW lift sanctions on Venezuela on the condition that they hold new elections overseen by the international community.","round":"5","link":"","language":"English","topic":{},"tournamentID":"OJi1hwkxrfVjCOf6ZDRH","id":"glABT3bcAA8nqABMFC3w"},{"infoSlide":"","division":"","tournamentID":"V8KRgdahxIEUYFHrRWYb","language":"English","content":"THW give the death penalty to government officials that engage in acts of corruption.","link":"","topic":{},"round":"2","id":"glIBjipraDIVx62GbXPS"},{"tournamentID":"zNrcKb4T08IU7LfuYSUz","topic":{},"division":"","infoSlide":"","content":"THBT matchmaking is a better system than dating.","link":"","round":"5","language":"English","id":"glzOnfEFSL5WVigKd8yr"},{"tournamentID":"92dIEXeOXUVvlcFeGCIr","topic":{},"division":"","link":"","round":"7","infoSlide":"","language":"English","content":"TH supports stronger collective bargaining rights and protections rather than legislated labor market regulations (e.g., wage levels and working conditions).","id":"gm3GqpmvrsNdJh5qLduX"},{"division":"","content":"THS a military coalition between the US and the Syrian government in the fight against ISIS. [Round 6].","language":"English","topic":{},"link":"","infoSlide":"","round":"6","tournamentID":"CjeO3WtFoEPJ0YkMQ3T2","id":"gmLSR350huOLu1sACszv"},{"infoSlide":"","link":"","round":"Open_Final","division":"","topic":{},"language":"English","content":"This House would never restore the buildings destroyed in the bombing.","tournamentID":"jVtcrR58DYEPrz6PXM17","id":"gnVMyBXZRTx7RlcHMH16"},{"round":"1","tournamentID":"E6Cr0CYWyZinduIgwsMe","content":"THBT states in the developing world should invest in sex tourism.","language":"English","infoSlide":"","topic":{},"division":"","link":"","id":"gnbeJLa0D0iGOLBn4ldm"},{"tournamentID":"caeYE7341tdQiO1TJafq","content":"THBT on balance, the international human rights regime has done more harm than good.","topic":{},"language":"English","division":"","round":"Open_Finals","infoSlide":"","link":"","id":"gnnHlpBcAvhMTypyfHXl"},{"topic":{},"tournamentID":"h373wn3dFw9UcWDcJpyy","infoSlide":"","language":"English","link":"","content":"The Netherlands should impose a maximum wage.","round":"4.2","division":"","id":"goDP2qKF1y971o95y2oB"},{"topic":{},"infoSlide":"","content":"As the author of a non-colonial language (e.g. Marathi, Inuktitut, IsiXhosa, Gikuyu, Tibetan, among others), this house would only write in its native language.","link":"","round":"Open_Final","division":"","tournamentID":"sXtyoMtY4Bb7XJvcqA3J","language":"English","id":"gp8bC3IUyeTWlIMwqI1y"},{"language":"English","link":"","division":"","content":"THW aggressively financially incentivise the enrollment of female students in areas with low female enrollment.","infoSlide":"","topic":{},"round":"4","tournamentID":"gDONpxWgr0bu13hZzxYr","id":"grTg5Rr4ABWhi5WjNZ0q"},{"content":"THS the creation of a Black Players' Union in the English Premier League.","language":"English","tournamentID":"IIWebjlC0qunFyLmEiVa","link":"","infoSlide":"","topic":{},"division":"","round":"Open_Semis","id":"graCxpkPnoCi27c0ATjQ"},{"content":"THW Allow prisoners to run for elected office.","division":"","topic":{},"infoSlide":"","round":"2","language":"English","link":"","tournamentID":"HI456ixwVeFxETFg4P5i","id":"gsN1WW1CGKgEgAFl80bF"},{"language":"English","link":"","round":"Open_Final","content":"THR the new politics of the campus left.","division":"","topic":{},"infoSlide":"","tournamentID":"WfHILzlB4oGzI34Iwqaw","id":"gssAyk8a7FHhOx90kxI5"},{"link":"","language":"English","tournamentID":"X8TtbynGKBJ2Z158R7Sw","round":"4","topic":{},"infoSlide":"","content":"THBT the United States should abolish political parties.","division":"","id":"gtG5bcybgBKgM7zR1bQk"},{"division":"","tournamentID":"ZHpmROZ4G7eY4iB9dTsM","infoSlide":"","content":"THW ban alcohol.","round":"16","language":"English","topic":{},"link":"","id":"gtQly9WrKDCNGgLQbRHs"},{"round":"2","content":"TH would ban all non-medical research into the genetics of race (For example, the effect of race on intelligence, morality, etc.).","division":"","link":"","tournamentID":"uvPQBxEeKffyHUkLa5PV","language":"English","topic":{},"infoSlide":"","id":"gtQuBHB4alV5K5cXbMOk"},{"round":"4","tournamentID":"DTutOgCItM4x30SyVavv","division":"","infoSlide":"","topic":{},"language":"English","content":"Assuming the technology exists, THS genetic engineering to make humans more resistant to the effects of climate change.","link":"","id":"gtZaOzndyA1RicQdymmz"},{"division":"","link":"","tournamentID":"nFeuKMAFpK6Amwi6OMai","language":"English","topic":{},"round":"1","content":"Should we abolish the balancing of federal budgets (Länderfinanzausgleich)?.","infoSlide":"","id":"gtikDEZ2BhKdv25eGuaz"},{"infoSlide":"","round":"Open_Final","content":"THBT the capitalist system is incompatible with a just society.","division":"","topic":{},"tournamentID":"OAcOsXro6vLkyCebuX4n","link":"","language":"English","id":"gtyuB970s8PyJyvz8nZ7"},{"language":"English","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","link":"","division":"","round":"Octofinals","infoSlide":"","content":"THW impose criminal liability on individuals who fail to assist a person in danger, when doing so would not place them at serious risk.","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"id":"guX2CqCqEpKFa9vUsPi0"},{"infoSlide":"","content":"TH prioritizes a world that maximizes productivity over a world that maximizes enjoyment.","round":"","link":"","topic":{"philosophy":{"title":"Philosophy","check":true}},"division":"","tournamentID":"1qq9g2ApB8UdvPr2ewx1","language":"English","id":"guc7C9Q3En0EdspdwVjl"},{"language":"English","round":"4","infoSlide":"","content":"TH, as a Russian-speaking Latvian, would not vote for a Russian party in Latvian elections.","link":"","tournamentID":"MeKByJc38Yt4otefONa7","division":"","topic":{},"id":"gw523115kELpZIFm6QNz"},{"round":"9","infoSlide":"","content":"This house would not allow out of court settlements for workplace discrimination and harrasment.","topic":{},"division":"","tournamentID":"vS5BTr7lDW40h5Qw31FI","link":"","language":"English","id":"gwFcS8mFtWu4onHeSs8R"},{"tournamentID":"1dEXZTvvRtTWhdBLmzFt","content":"THBT the IMF should require direct control over a country's monetary policy as a condition of national bailouts.","topic":{},"infoSlide":"","division":"","link":"","round":"Open_Quarters","language":"English","id":"gwFueXOQcEM3CWesaOVj"},{"round":"3","link":"","topic":{},"division":"","content":"THW forbid testing on all animals.","infoSlide":"","tournamentID":"DLFJWaIyHnSlvFofovjc","language":"English","id":"gwfQbOqwWAwvMrXXwuj5"},{"infoSlide":"","link":"","topic":{},"content":"THW require multi-national corporations to adhere to labor and wage standards exceeding those set by ANY individual nation.","division":"","language":"English","tournamentID":"KMM87DnmWFjc4UzTdkjp","round":"2","id":"gxI7qvKPDekdzEU7lwzQ"},{"infoSlide":"","tournamentID":"980ImkvfswyUVd54XFQd","round":"Open_Semis","content":"THBT it is impossible to be a pro-life feminist.","link":"","division":"","topic":{},"language":"English","id":"gxNXPfwPKN6buKPq59di"},{"round":"Open_Final","link":"","infoSlide":"","tournamentID":"uikc98CupbamVyAQIHsf","division":"","language":"English","content":"THS the unlimited use of war-time propaganda which aims to dehumanise the enemy.","topic":{},"id":"gxhOnnE07t8ou5T75dWL"},{"content":"THBT governments should financially incentivize people to move away from areas with few viable economic activities.","infoSlide":"","division":"","topic":{},"link":"","round":"3","tournamentID":"irYSGlHj76RukmyCwWOG","language":"English","id":"gxo2qp049xR8A4suhq19"},{"round":"1","language":"English","link":"","tournamentID":"BEmSFvOGfvfXfJxFm9a7","infoSlide":"","division":"","topic":{},"content":"THBT parents should have the right to withdraw their children from all teaching about sex and relationships.","id":"gy0TNtSLPbRluQAyxZZe"},{"content":"In countries with deep ethnic and religious divides (e.g. Iraq, Libya, and Egypt), THP autocracies to decentralised democracies.","round":"Pre Quarterfinals","topic":{},"tournamentID":"ruG3JCf2Mh62VDkchi11","infoSlide":"","division":"","link":"","language":"English","id":"gzRjZhc7szbbbqwvq7lD"},{"link":"","topic":{},"division":"","tournamentID":"m9Mkt1xdSA1jDsNN4zgu","language":"English","infoSlide":"","content":"THW give women two votes in political elections.","round":"1","id":"gzokmJXgA3Omjez1VZgX"},{"content":"THBT pro-Palestinian organisations should abandon their support for the BDS movement against Israeli academic institutions and scholars.","tournamentID":"yOWDiguNGQHwr42mgnqv","division":"","language":"English","infoSlide":"","topic":{},"round":"3","link":"","id":"h0JnVoNpG4rmJ3GlJrBv"},{"division":"","infoSlide":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","round":"Open_Quarter","content":"THBT LGBTQIA+ activists in religiously conservative countries should seek to actively solicit support, funding, and endorsement from religious entities.","language":"English","topic":{},"link":"","id":"h0XRGnt168guu8kw5ZvM"},{"round":"","language":"English","infoSlide":"","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"content":"THR the humanisation of villains in film and media (eg: Joker, Maleficent, Gru, Megamind, etc.)","division":"","tournamentID":"D8AtyrmDZV48giPFtym5","link":"","id":"h18w3Bn9isCialjRQhAL"},{"link":"","infoSlide":"Hội đồng tham vấn công dân là một nhóm gồm 100 người được lựa chọn ngẫu nhiên theo hướng dẫn cụ thể phản ánh dân số nói chung theo giới tính, độ tuổi, thu nhập và trình độ học vấn. Trong vài tuần hoặc vài tháng, họ gặp nhau để thảo luận về một quyết định lập pháp một cách cân nhắc, thận trọng. Thường thì họ được trả công cho thời gian của họ. Cuối cùng, họ trình bày các khuyến nghị của họ với các chính trị gia.","language":"Vietnamese","tournamentID":"xAdc6R4uC1xkQxvmPedU","round":"Grand Final","content":"Chúng tôi tin rằng tất cả các quyết định chính của cơ quan lập pháp phải được thông qua bởi các hội đồng tham vấn công dân trước khi chúng được thông qua.","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"division":"","id":"h1qAP3LzT0xGqeCidoxi"},{"language":"English","link":"","tournamentID":"eBNO1FMsif7tzOa9LlnU","content":"THW require British political parties to field 50% female candidates in national elections.","round":"Open_Final","infoSlide":"","topic":{},"division":"","id":"h2ZIQGd7VbkK2jUJIfDw"},{"link":"","content":"THW pay mercenaries to assassinate Kim Jong-un.","division":"","language":"English","round":"2","tournamentID":"W8zmuuOkdBsEHQw2r0RP","infoSlide":"","topic":{},"id":"h3P3tHp1EOvoInFaFKyJ"},{"language":"English","link":"","content":"In a world in which the Z-gene exists, THW require that mutants be constantly monitored by the state from birth.","round":"2","division":"","topic":{},"tournamentID":"YWYo651ohahlD6OyzCXj","infoSlide":"","id":"h4KIOTAnU1n3ui6yv9vz"},{"round":"Novice_Final","content":"This House prefers a world with a dominant norm of not expressing strong emotions.","link":"","infoSlide":"","language":"English","division":"","topic":{},"tournamentID":"8EaRfOcTe47s5VRlQeNv","id":"h4R960k5FR3ZLXkhCzIk"},{"round":"8","division":"","topic":{},"language":"English","link":"","content":"TH opposes the academisation of social justice movements","infoSlide":"Academisation: The increasingly significant presence of academics and academic terminology, processes and structures in many parts of the world.","tournamentID":"uJGjvsaThnluwVzoHFXm","id":"h4wrUSCUxyyNWoXutxIL"},{"round":"4","link":"","language":"English","division":"","tournamentID":"8Vk7pWjDHtGhxQVWidIQ","infoSlide":"","content":"TH, as a major news agency, would only publish positive reviews of minority-focused media (Queer Eye, Moonlight, Call Me By Your Name).","topic":{},"id":"h5TUAmICdzE4T4WyieS1"},{"infoSlide":"","tournamentID":"655ljihoF4Mh7lzjZruS","round":"4","division":"","link":"","topic":{},"language":"English","content":"THBT artists, entertainers, and musicians should not comment on politics outside of their artistic creations.","id":"h5V5JtEnLeOjeGcbRX7H"},{"division":"","topic":{},"language":"English","tournamentID":"djnlK5jZ2kM6hDrC6E9d","round":"Open_Final","infoSlide":"","link":"","content":"THBT indigenous peoples would be justified in sabotaging (violently or otherwise) economic projects in the event that they are built across or on their land without their democratic consent.","id":"h5rVKGLrq9juAMbPYXIB"},{"language":"English","link":"","division":"","tournamentID":"1XuVJxN52ldgExm8K3T2","infoSlide":"","round":"Open_Quarter_1","topic":{},"content":"THBT the NAACP should publicly condemn Chris Brown.","id":"h6uJG9s0PcbsddSTgKmz"},{"division":"","round":"Open_Semis","content":"THW allow people to insure themselves against fines.","topic":{},"tournamentID":"YZ4nedbden9wBJH2zqb4","infoSlide":"","link":"","language":"English","id":"h6ye0f7X8dp1teG536SJ"},{"language":"English","round":"2","link":"","tournamentID":"VyYxJ0FaIE4LYaWheUyL","division":"","infoSlide":"","content":"TH, as a critic, would advise the public not to consume works of music, film and art produced by artists that you deem morally reprehensible, regardless of the artistic merit of their work.","topic":{},"id":"h718MDtKDvaxHb2OKCP5"},{"tournamentID":"kReIJGsf14VAB0aHbDhJ","division":"","topic":{},"language":"English","link":"","round":"Open_Final","content":"THW prohibit the media from reporting on the mental illness of those accused of crimes.","infoSlide":"","id":"h7xf7i0ADJ2K38NruvrA"},{"link":"","infoSlide":"","content":"THBT Iran should end its nuclear weapons program.","round":"Open_Octa","tournamentID":"m6JzV67uYJSVBRpAbgL7","topic":{},"language":"English","division":"","id":"h8dif9Kk3JhpR95D6Bai"},{"round":"6","language":"English","division":"","topic":{},"link":"","tournamentID":"yhJgdE0VFcsqlvWffep1","infoSlide":"","content":"THB social media companies have a duty to prevent far-right or hate groups from using their platforms.","id":"h9Yqo1AtTZWSHAtsGXaz"},{"tournamentID":"7lMrN2aiwSzD5rzPFwHz","language":"English","link":"","division":"","infoSlide":"","content":"THBT Simba should not go back.","round":"1","topic":{},"id":"hA13YtTorFHgfXMnX2rE"},{"link":"","topic":{},"division":"","content":"TH regrets South Africa’s decision to use Truth and Reconciliation Commisions rather than prosecuting perpetrators of crimes under Apartheid.","round":"5","tournamentID":"UlbXxRnvnqr2PXimcFud","infoSlide":"","language":"English","id":"hAuc9wl8i87gMcIkdSPH"},{"content":"THW allow pro-immigration charities to sue politicians and media outlets that defame ’immigrants’.","topic":{},"division":"","language":"English","tournamentID":"yhJgdE0VFcsqlvWffep1","infoSlide":"","round":"3","link":"","id":"hBLMrNeByRU5wpse0kZZ"},{"link":"","content":"Additive manufacturing or 3D printing is the process of making a three-dimensional solid object of almost any shape from a downloadable design. Currently, they can be used to create shoes, electronic devises, guns and even houses. In future, their uses are likely to grow. Motion: THW ban the sale of 3D printers to households.","infoSlide":"","language":"English","tournamentID":"NE3BXrt6CASI2EExAgUk","topic":{},"division":"","round":"Open_Semis","id":"hBXuiCVZTKfMlX4n8tah"},{"link":"","language":"English","content":"THBT Vladimir Putin is a greater threat to the world than Donald Trump.","tournamentID":"pMiBCGHX80oXMgUJCqkc","infoSlide":"","topic":{},"round":"Open_Semis","division":"","id":"hBhCLVre9UyU7oqFB8iZ"},{"link":"","tournamentID":"Wpv6iXJkIPUXYIkl0dST","round":"1","content":"THBT criminal justice policy (e.g mandatory arrests, minimum sentencing, post release conditions, etc.) should be decided by experts instead of elected representatives.","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"infoSlide":"","language":"English","division":"","id":"hDCWBaQrnAdaXtGEntqi"},{"division":"","content":"THBT offenders with drug dependency should be sent into treatment rather than to prison.","infoSlide":"","tournamentID":"4AUWV6dX7gzPml1BbN5u","link":"","language":"English","round":"Open_Final","topic":{},"id":"hDFNrTsZ7TOwdC2wyK6Z"},{"tournamentID":"TMUPfAyolz9JkKMmWlLC","round":"Open_Semi","division":"","language":"English","link":"","content":"THW create and teach a unified history curriculum in the European Union.","topic":{},"infoSlide":"","id":"hDv4cVOtPiqmwjhS8x29"},{"tournamentID":"MPR74LYpg8Ru6paM45U9","language":"English","infoSlide":"","topic":{},"link":"","content":"THW set a public ultimatum: if the next pope does not implement radical reforms, the Roman Catholic church will be disbanded.","round":"Open_Final","division":"","id":"hE1mKprxjZqcIXv43IKM"},{"language":"English","tournamentID":"X4613Kz1qYjZyFPJzJlB","content":"THBT developing countries with substantial natural resources should nationalise natural resource production.","round":"4","infoSlide":"","link":"","division":"","topic":{},"id":"hEgHUtF9rr6tXmUbvLjJ"},{"language":"English","topic":{},"link":"","content":"THBT the world would be better off if the human race would cease to exist.","tournamentID":"MIEMFyC8nYMlqXU4wtOC","infoSlide":"","division":"","round":"Open_Quarter","id":"hF1N8HmGa5FL8uDf05CX"},{"tournamentID":"PGbz2bx1wifAEJU64jdo","topic":{},"round":"Open_Semis","link":"","content":"In post-conflict societies, TH prefers the creation of art with an inspirational and unifying message over art that depicts the prior or current suffering.","infoSlide":"","language":"English","division":"","id":"hF4uneMikOmzP5JnwPmY"},{"link":"","round":"3","topic":{},"infoSlide":"Những người tị nạn môi trường là những người bị buộc phải rời khỏi vùng họ đang sinh sống do những thay đổi đột ngột hoặc lâu dài đối với môi trường tại địa phương của họ. Đây là những thay đổi gây hại đến hạnh phúc và sinh kế an toàn của họ, chúng bao gồm: hạn hán gia tăng, sa mạc hóa, nước biển dâng và phá vỡ các kiểu thời tiết theo mùa (như gió mùa). Những người tị nạn môi trường có thể chọn để bỏ trốn hoặc di cư sang quốc gia khác, hoặc họ cũng có thể di cư ở trong chính quốc gia mà mình đang sinh sống.","content":"Chúng tôi sẽ yêu cầu các quốc gia gây ô nhiễm nặng nề cho môi trường phải mở cửa biên giới cho làn sóng tị nạn môi trường.","language":"Vietnamese","division":"","tournamentID":"znXRdnU2llK8fXmHlci5","id":"hFFbcL8fyS1rUjyUExkL"},{"round":"1","content":"THW ban all forms of pornography.","language":"English","division":"","tournamentID":"VQZZXpisO7Sjz81KUlh9","topic":{},"infoSlide":"","link":"","id":"hFR5NCAldMscqNVexenT"},{"content":"THBT the norm of having stay-at-home dads is better for the women's rights movement than that of both parents working.","language":"English","link":"","tournamentID":"caeYE7341tdQiO1TJafq","division":"","topic":{},"round":"Open_Octos","infoSlide":"","id":"hGh6XZoeLY8fFriorE0J"},{"language":"English","infoSlide":"","division":"","topic":{},"link":"","content":"THBT the United States should adopt more pro-plaintiff policies, such as abandoning the need to prove material harm and intent to defame.","tournamentID":"4qwhZS2zOsdzzkyQlcaW","round":"6","id":"hGoOpI0isG2k8P0GVBsZ"},{"topic":{},"content":"Given the technology to grant immortality exists, it would be treated as a positive right.","tournamentID":"9yZPq4vkPBjWs9gMF8AS","division":"","round":"4","link":"","infoSlide":"","language":"English","id":"hH31whbUHF7V7Gc2Y2Re"},{"round":"ProAm_Final","tournamentID":"m357g5mmEMxSAwbDEk5d","link":"","language":"English","infoSlide":"","topic":{},"content":"THS the extra-judicial killing of a state's citizens, by that state, where there is reason to suspect they are involved in the planning or carrying out of terrorist activities, and arrest is not possible.","division":"","id":"hITS3S3x5Xq6BWmdUIDF"},{"round":"ESL_Final","language":"English","infoSlide":"","content":"This house believes that politicians have a right to a private life.","tournamentID":"VPUCPVj9FHFW0uzJinv0","topic":{},"division":"","link":"","id":"hIay0TQpvriKIxsTSvcu"},{"infoSlide":"","topic":{},"language":"English","link":"","tournamentID":"lVzNmdGBefqKp5cetQ6Z","division":"","round":"Open_Final","content":"THBT civilians are a legitimate target in conflict.","id":"hIb2R72zhoFA6dKoaaBR"},{"link":"","division":"","language":"English","content":"THW not allow authors to copyright characters or worlds that they have created - Grand Final.","tournamentID":"Ryhdb4JOJYP96e5oa49b","round":"Open_Final","topic":{},"infoSlide":"","id":"hIvEk7xvzz9Espnfww2V"},{"division":"","topic":{},"language":"English","round":"4","link":"","content":"THO the demonization of dark humour / comedy.","infoSlide":"","tournamentID":"SfEIDDzpv3y19flsWYFH","id":"hJ6FJKu7dxGMX8QRJkVH"},{"round":"Open_Quarters","content":"THBT Mexico Should Legalise the Sale, Production and Transit of all Drugs.","language":"English","division":"","infoSlide":"","topic":{},"link":"","tournamentID":"Te8RVa4tAIQJaY0sFp5C","id":"hJ81iynxhmJ6ip8BhWi9"},{"round":"Junior Final","link":"","content":"TH regrets the glorification of creating a legacy.","division":"","topic":{},"tournamentID":"JHo8pIpzQxzUKHUwVDFf","infoSlide":"A legacy is the presence of a person across society - whether it be through institutions they set up, actions they do, achievements they have, or wealth they create. A legacy usually lasts beyond a person's death.","language":"English","id":"hJSxCTzTCyDSANwysXUo"},{"content":"Assuming feasibility, THW create sovereign states for each major religion, and offer citizenship to anyone who professes to be a part of that religion.","division":"","link":"","infoSlide":"","round":"Open_Semi","topic":{},"language":"English","tournamentID":"KMhBpmj1LWPj5LN0aFUK","id":"hLgwh3lEkNGPmPv8qk6F"},{"language":"English","round":"4","content":"This House prefers a world where the Assassins Brotherhood exists.","topic":{},"division":"","tournamentID":"XzAs4cMVeW91DHEgxF0k","link":"","infoSlide":"","id":"hMCdyhAAOCfe6SGqKpA5"},{"topic":{},"tournamentID":"Ba2zBwHOYMuoyQZQbecz","round":"4","link":"","content":"THW abolish mandatory retirement age.","infoSlide":"","division":"","language":"English","id":"hMnU7ajpl7kgiWYkogj8"},{"round":"4","infoSlide":"","topic":{},"tournamentID":"lpOfAtUfJZtb1VnGzV0G","content":"THW not use scientific data acquired through non-ethical experiments.","division":"","language":"English","link":"","id":"hN8VjZ2nHsAjHSeWUXgY"},{"link":"","topic":{},"tournamentID":"Wg2225mgODwBGF4GMBLR","division":"","content":"THS unfettered free trade.","language":"English","infoSlide":"","round":"Novice_Final","id":"hNl7de5BfZpGQPooHamB"},{"link":"","language":"English","content":"This House Believes That the U.S. Should Hack China's \"Credit Social System\" In Order To Disrupt It.","topic":{},"tournamentID":"RpQnqbHAxB8fhWBQcnaj","division":"","round":"3","infoSlide":"","id":"hNnMpvatynGP5FyeN5w8"},{"round":"Open_Final","language":"English","division":"","infoSlide":"","tournamentID":"CjeO3WtFoEPJ0YkMQ3T2","topic":{},"content":"THBT the UK should not leave the EU regardless of the referendum [Finals].","link":"","id":"hOZ9kQK3GcErAqqNWcoV"},{"content":"TH regrets the rise of the On-Demand Economy.","tournamentID":"1aLx5bJZiwmW3mkmtmNO","infoSlide":"","division":"","language":"English","topic":{},"link":"","round":"2","id":"hQXCTYeLiTFaEQF9X4CX"},{"tournamentID":"yZaksTbsPteB6mPHwkvl","language":"English","round":"1","infoSlide":"","content":"In areas where minorities face significant barriers to traditional representation of their culture, THS ethnic majority artists who focus their work around minority culture’s appreciation.","topic":{},"division":"","link":"","id":"hQq0kgvLC4NIo85bwRHd"},{"infoSlide":"","division":"","language":"English","round":"Open_Semi","topic":{},"content":"This house would immediately establish a Palestinian state in the Fatah-controlled West Bank.","link":"","tournamentID":"JdCT4CooyPOkRsmbNNLg","id":"hQyC0qCQxK7KyshqC2Wg"},{"infoSlide":"","division":"","tournamentID":"q7pvo4zkG31lg89ofmeq","round":"1","language":"English","topic":{},"content":"THR the decline of tightly integrated families.","link":"","id":"hRTPllPfApk5Nl8ZlQFL"},{"link":"","division":"","infoSlide":"","language":"English","tournamentID":"wYsVMTqiPYP1HFjzExu2","content":"You are the commander of an Israeli submarine in the Persian Gulf. It is the day after Israel was annihilated in a surprise Iranian nuclear attack: THW not use Israel's second strike capabilities.","round":"Open_Semis","topic":{},"id":"hSKR0JvPguiTZwVpYMu2"},{"language":"English","topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"}},"round":"Octofinals - Motion 2","division":"","link":"","infoSlide":"","content":"THBT social movements should actively use anger to mobilise support for their cause.","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","id":"hShIWrRaG4pqdNtvKBiz"},{"language":"English","infoSlide":"","round":"5","tournamentID":"BXOIn4DQsS3fQg4ZnBFn","division":"","content":"This House Believes That developed nations should not recruit high-skilled workers (Such as doctors, engineers, etc.) from developing countries.","topic":{},"link":"","id":"hSyt66H5dIRtPxHsEjC9"},{"language":"English","tournamentID":"yDUOVgl6qLMa2DH8lCD5","content":"THBT Western states should permanently revoke the citizenship of citizens who join terrorist organisations.","infoSlide":"","division":"","round":"2","topic":{},"link":"","id":"hT9cSKrCJmmOwyL3uAVp"},{"tournamentID":"xm1UErfWKMzGBfeKsba9","division":"","round":"1","link":"","content":"THW return all national treasures to their countries of origin, provided they sincerely commit to preserve and display them.","language":"English","topic":{},"infoSlide":"","id":"hTEkmpbcsYgxrbveME1b"},{"tournamentID":"ltPXjwYNooGAx72v9bz6","topic":{},"link":"","division":"","language":"English","infoSlide":"","content":"THP leaderless movements.","round":"2","id":"hVYPVjk91FAPBgUjnNMq"},{"tournamentID":"UWHKNxWBfNyw2FCQAxdk","topic":{},"link":"","infoSlide":"","language":"English","round":"Open_Semis","division":"","content":"THW appoint a group of relevant charities (e.g. Environmental charities) to cast votes in general elections on behalf of future citizens.","id":"hVjpQgo6TcYKM4p1xctX"},{"round":"3","language":"English","link":"","topic":{},"tournamentID":"eQMzhfh3p9amGITvLICM","content":"This House believes that caloric and fat-rich foods, commonly called junk food, should be taxed more than \"healthy foods\".","division":"","infoSlide":"","id":"hZKcVrPYxJbJhDfJTnGR"},{"tournamentID":"RautsrmlhwL2BBMyTRVG","topic":{},"round":"Open_Partial_Quarters","link":"","content":"THW ban cosmetic surgery designed to alter one's racial appearance.","language":"English","division":"","infoSlide":"","id":"hZhr4BXzTb1CaTOBBgTK"},{"content":"THBT the relationship between Britain and France is indeed a \"Dear Conjunction\".","link":"","topic":{},"round":"Open_Semi_1","tournamentID":"2PiAEzXdXq9R2oqnRDNA","language":"English","division":"","infoSlide":"","id":"haCIzOnJklWfZhGBBNgv"},{"topic":{},"link":"","round":"1","infoSlide":"","division":"","tournamentID":"YktmX9iQ8HNzyE1aE4yf","content":"THBT the LGBT movement should oppose gay bars that ban entrance to straight customers.","language":"English","id":"haKR2pRYA3RljbwNtIJS"},{"division":"","tournamentID":"tGXgNi0S9KFBe1hUBu15","topic":{},"content":"TH supports ANTIFA. Good luck everyone.","link":"","round":"Novice_Semis","language":"English","infoSlide":"","id":"haQ3ZxwAlHUR52OJACak"},{"language":"English","content":"This house opposes the societal idea that forgiveness is a virtue.","link":"","round":"5","tournamentID":"qvnbu5KYCFZ7nM9hTZ2E","topic":{},"infoSlide":"","division":"","id":"hbENxLFCMGSmKnMFKK8N"},{"tournamentID":"n7qv29PmNuF5SOe42oiz","content":"That the state should offer criminals a new identity upon serving their sentence (e.g. new name, new background, optional plastic surgery).","round":"6","link":"","division":"","infoSlide":"","topic":{},"language":"English","id":"hcKBUqXMENzSu7lkjhJA"},{"link":"","content":"This house would make the use of conscripts in active combat a war crime.","language":"English","division":"","tournamentID":"FBVfHrOa3NYALcBMtKIC","round":"Open_Semis","topic":{},"infoSlide":"","id":"hcdmkQrKwDChVAigbePp"},{"round":"Open_Final","infoSlide":"","tournamentID":"t1jiRXU99xeGdoIkTeyF","link":"","topic":{},"content":"This House would apply universal jurisdiction to crimes against the environment.","language":"English","division":"","id":"hdHEYdsSvWBJylgRwX2G"},{"content":"THW emigrate.","topic":{},"division":"","language":"English","tournamentID":"1leOvfvlbNAIDzW6UnkK","link":"","infoSlide":"","round":"3.4","id":"hdPvEDFB9iWbfGkiMvFo"},{"topic":{},"division":"","round":"1","content":"THBT ecoterrorism is legitimate.","language":"English","tournamentID":"OFi0KPPvhID0XipYIiiD","link":"","infoSlide":"","id":"hdSf5lxWsLV9jbW8DpUh"},{"topic":{},"link":"","division":"","language":"English","content":"THBT that feminists should not use rhetoric about women being more empathetic or caring than men as part of their advocacy (e.g. “Women are good leaders because they are more compassionate”).","tournamentID":"X4613Kz1qYjZyFPJzJlB","round":"Open_Semi","infoSlide":"","id":"hdtVP4Rwvf3TJkzT3QZ1"},{"language":"English","content":"THW hold city and local governments civilly responsible for deaths that can be ascribed to homelessness.","tournamentID":"VQZZXpisO7Sjz81KUlh9","infoSlide":"","link":"","division":"","round":"4","topic":{},"id":"heU6WIzhJHpVEOKcmimW"},{"content":"TH, as the parent of a child diagnosed with ADHD would conceal the diagnosis from the child and its school.","tournamentID":"w1cmIhewdRlJLYHGdtbg","link":"","language":"English","division":"","topic":{},"infoSlide":"","round":"5","id":"heZY3DzM6c6v5lDLhxPe"},{"round":"2","infoSlide":"","tournamentID":"gf4DgO2PbJKuaj3RSFTp","link":"","division":"","topic":{},"language":"English","content":"THBT the EU should oblige its member states to include positive references to LGBT individuals and issues in their high school textbooks.","id":"hf1XbMK1chVfvisFNQZh"},{"topic":{},"language":"English","content":"THW adopt life sentences without parole.","link":"","division":"","infoSlide":"","round":"1","tournamentID":"bWRhS5k8Iv19aHOMEz5C","id":"hfo5wh6fyUmd0rr2vv5V"},{"topic":{},"tournamentID":"TSpa3WXkfFl9nQFbVbmi","link":"","division":"","content":"THW require the majority of companies' equity to be owned by sub-management level employees.","infoSlide":"","round":"5","language":"English","id":"hhGmTM7PnQ85EDeTuLUV"},{"tournamentID":"ZHpmROZ4G7eY4iB9dTsM","language":"English","content":"THBT post-revolution states should delegate all trials and sentencing of former rulers and high ranking officials to the international community.","link":"","round":"13","topic":{},"infoSlide":"","division":"","id":"hhrcdh1Bjg2moTh8qJny"},{"content":"TH prefers a higher education system with a large variation in education quality over one in which there is a low variation in education quality.","division":"","infoSlide":"","language":"English","link":"","topic":{},"round":"4","tournamentID":"HcngLxXLU8ahxFRQkeYc","id":"hht9M6zbCf01EDvfhIvI"},{"division":"","link":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","language":"English","content":"That we should reallocate public investment funds from start-ups to traditional small and medium-sized enterprises.","topic":{},"round":"Open_Quarter","infoSlide":"","id":"hjTPQRNyJw9R369ueBE1"},{"round":"Open_Semis","division":"","tournamentID":"hY7icY7k8fuatysSqMFr","language":"English","infoSlide":"","link":"","topic":{},"content":"TH believes that it is within the interest of Tibetans to assimilate with China.","id":"hjqaFECUAKOSY2sVGEhS"},{"division":"","topic":{},"content":"THO social media banning of alt-right figures.","language":"English","round":"Novice_Final","tournamentID":"TMUPfAyolz9JkKMmWlLC","link":"","infoSlide":"","id":"hjsPpOFHZP9hg2YbRV5i"},{"division":"","language":"English","infoSlide":"","round":"3","link":"","content":"THW supplement Polish Constitution with the civil right of access to the Internet.","topic":{},"tournamentID":"oeH2vC3Ht09TthfmAx2F","id":"hkaeQU3wXN7ecjUJHVak"},{"content":"THW consider \"public interest\" as a mitigating factor for investigative journalists prosecuted for committing crimes (e.g. breaking and entering, breaching privacy etc) in the course of an investigation.","language":"English","topic":{},"tournamentID":"vOzlUiodV5GoF1ZtM5Tt","round":"1","infoSlide":"","link":"","division":"","id":"hkhJu215aChI1zSgX1mi"},{"tournamentID":"VPUCPVj9FHFW0uzJinv0","topic":{},"language":"English","division":"","content":"This house believes that developing nation should nationalize their energy resources.","link":"","round":"Open_Octos","infoSlide":"","id":"hl14Gqk5fiAccXKUdHIR"},{"link":"","division":"","infoSlide":"","topic":{},"content":"THBT political assassination is a legitimate tool for foreign policy.","round":"3","language":"English","tournamentID":"LSZbchiNq33jtWsW0vWQ","id":"hlXWTwAcfWWriL8MjQX6"},{"round":"Open_Quarters","link":"","tournamentID":"VZL2SmUXq00WGPbW0ZRt","content":"THW criminalise its citizens from fighting in foreign conflicts.","division":"","infoSlide":"","language":"English","topic":{},"id":"hluvQwjQ44n42YGK2ujf"},{"infoSlide":"","language":"English","division":"","topic":{},"link":"","content":"THBT people should only be allowed to work in state or local government agencies for a maximum of 5 years.","tournamentID":"d0CBbRAyIQhiX69bWaKA","round":"Open_Final","id":"hmfJoCa6hKptMjgQWtSj"},{"round":"3","tournamentID":"4AUWV6dX7gzPml1BbN5u","topic":{},"infoSlide":"","content":"THBT Stark Industries should have open-sourced the Iron man suit.","link":"","language":"English","division":"","id":"hmvMMAOy2iWF89buggMP"},{"topic":{},"language":"English","round":"Open_Semi_1","tournamentID":"xLHei5vZFgpmhHOsyDv6","infoSlide":"","division":"","content":"We should stop giving development aid.","link":"","id":"hnUmw3ySTEC0toVgkLHV"},{"tournamentID":"PGbz2bx1wifAEJU64jdo","infoSlide":"","round":"2","language":"English","link":"","content":"THBT LGBT+ Pride campaigns should focus on direct protest rather than celebration.","division":"","topic":{},"id":"hnf9h1HXzm1a5qzLRd0L"},{"round":"","topic":{"hr":{"title":"Human Relationships","check":true}},"infoSlide":"","division":"","language":"English","tournamentID":"FZTHJ19pUWQG2SZNeOvr","link":"","content":"Chúng tôi lấy làm tiếc về quan niệm \"tình cảm gia đình nên vô điều kiện\".","id":"hpEAXqc2JrwYVTE4f7Lu"},{"division":"","topic":{},"link":"","infoSlide":"","tournamentID":"xLHei5vZFgpmhHOsyDv6","round":"2","language":"English","content":"The Netherlands should give everyone over 14 the right to vote.","id":"hqGXnTlMidwTl5ayj0B5"},{"division":"","language":"English","round":"Open_Semis","tournamentID":"EP5HDm4G3OfMlciId6YM","topic":{},"infoSlide":"","content":"This House would impose a narrow banking regulation.","link":"","id":"hrOjZyrdOKXgrnqsYiJ3"},{"infoSlide":"","link":"","content":"THW place a time limit on all private land ownership in major cities.","language":"English","tournamentID":"1zpwTG4R66xy1c4CrMeq","round":"Open_Semi","division":"","topic":{},"id":"hroxV5JP94Naj7MpmlQr"},{"round":"Open_Final","language":"English","link":"","infoSlide":"","division":"","topic":{},"content":"Assuming the technology exists, THS the use of non-sentient artifical intelligence that imitates deceased loved ones in appearance, personality, and mannerism.","tournamentID":"S2mG18EWYdh2bPEadyd9","id":"hrv4g1gRv9SDy0NjqEZO"},{"tournamentID":"0aaiP0hS7LLjh0VVpofG","content":"\"THW Allow Organised Fight Clubs\".","infoSlide":"","topic":{},"link":"","round":"6","language":"English","division":"","id":"hs5Tp7nE3827bP28XEyy"},{"tournamentID":"URJkYB098qcNUnuKdfHJ","topic":{},"link":"","language":"English","division":"","infoSlide":"","round":"Open_Final","content":"THW take the red pill.","id":"hsYmGxzwa347qdSBidpg"},{"link":"","round":"3","content":"THW break up companies that are deemed threats to the democratic process, even when they do not harm consumer welfare.","language":"English","infoSlide":"","division":"","topic":{},"tournamentID":"H8ZxEfGXutRQeJ3mqisV","id":"htFoqnCpTn1jSrTgxiz1"},{"infoSlide":"","division":"","link":"","language":"English","content":"THW remove all sanctions against Iran.","tournamentID":"4ptLj1Lmq40xJg12oRVd","topic":{},"round":"2","id":"httSmK41MW2ISmTYBO61"},{"tournamentID":"3thiHP0WT1SpBvjVmMFz","infoSlide":"","round":"4","content":"THW never support or finance rebel groups on foreign soil as a tactic of war.","language":"English","link":"","division":"","topic":{},"id":"htyQq2TIi08VIK1xFzzC"},{"language":"English","content":"THW create and enforce filial responsibility laws.","tournamentID":"yLnbL40w84r9L2K9qxt0","division":"","round":"1","infoSlide":"","topic":{},"link":"","id":"huUOSm0zy2aKsO0VJc8t"},{"content":"THBT juries should be of the same demographic as the accused and victim in each case.","infoSlide":"","link":"","language":"English","tournamentID":"H8XCoxhHfhkNSTYxwR42","topic":{},"division":"","round":"3","id":"hvtCW7vYCXi0kJDFNhg7"},{"tournamentID":"Nzien6R9RXvOTrNMJsza","division":"","round":"2","link":"","content":"TH, as the Biden campaign, would pick Elizabeth Warren as our Vice President.","language":"English","topic":{},"infoSlide":"","id":"hvzDYCD8R9hkR41grflb"},{"infoSlide":"","round":"4","content":"THW replace the ICC with regional courts to prosecute crimes against humanity.","language":"English","topic":{},"tournamentID":"hPTwc7UsLmuGu68x4FDK","division":"","link":"","id":"hwPvDvA5fBYRyNMNzQvy"},{"topic":{},"link":"","language":"English","round":"4","tournamentID":"JtHb8gJ24LeJcHq82rm5","content":"(In 2050 scientists have localised the gen that causes paedophilic tendencies. The gen can be surgically removed/”turned off” without major impact) THW require everyone with the gen to undergo surgery, even if they have never been convicted of a crime.","infoSlide":"","division":"","id":"hxLhCgDGTFBGKLmu8ZRC"},{"language":"English","content":"TH condemns the use of unmanned weapon systems (drones) against human targets.","division":"","infoSlide":"","topic":{},"tournamentID":"4NEhQx2m4XcXy6SxnoqS","round":"Open_Quarters","link":"","id":"hzaoUx3flPke1fQc9kWu"},{"content":"“THW Remove all Catholic Control of Public Education by the End of the School Year”.","infoSlide":"","tournamentID":"5ETrS816OeSAWdPhWEHf","language":"English","link":"","round":"16","topic":{},"division":"","id":"i1SifJ9XXijBr6Mqowma"},{"round":"3","infoSlide":"For the purpose of this debate, a “culture of reconciliation” refers to a general want or attitude for people to seek reconciliation, with family members after growing apart, experiencing serious falling outs, or going through incidents which may have caused the family to estrange themselves from one another.","language":"English","link":"","content":"THS the decline in a culture of reconcilliation among family members.","topic":{},"division":"","tournamentID":"KTeMrrauFpZYvjtBUkLJ","id":"i20a0l7m9xsDyacTzoML"},{"division":"","content":"THW hold companies to a higher ethical standard than the law imposes on them.","link":"","infoSlide":"","tournamentID":"H8XCoxhHfhkNSTYxwR42","topic":{},"round":"5","language":"English","id":"i2m4C0dTfFN4tKgLjbmN"},{"language":"English","tournamentID":"XGnGWhzkfstV6wutkTXQ","division":"","topic":{},"round":"4","infoSlide":"","content":"THW fabricate evidence in order to prove that historic icons had been gay.","link":"","id":"i2sh9bflWI48B1SvYfJW"},{"tournamentID":"ChiU8yMbLI2Y2q5rwURP","topic":{},"language":"English","link":"","infoSlide":"","content":"In areas of chronically low academic attainment, THBT the general approach of educational charities should be to focus resources on maximising the potential of exceptional students, over helping the lowest achieving.","division":"","round":"3","id":"i3DLR6wumtkQ7V4d0Mt5"},{"content":"That we believe that the ending of Bojack Horseman series should have been him dying at the end of 'The View From Halfway Down'.","division":"","infoSlide":"","language":"English","link":"","tournamentID":"Pt1Z2dTdUinRviVucbZA","round":"ESL_Final","topic":{},"id":"i3hrjyKdrNjS2PWuTZcq"},{"language":"English","tournamentID":"swAbmAXdPnojWIXuZFwm","infoSlide":"","round":"Open_Quarters","content":"THBT democratic states dominated by hegemonic political parties should forcibly break up those parties.","division":"","link":"","topic":{},"id":"i3xrdZcvHGiQ7H7zxJUG"},{"content":"“THB Norris was/is the Right Choice for President of Ireland”.","tournamentID":"5ETrS816OeSAWdPhWEHf","infoSlide":"","topic":{},"link":"","language":"English","round":"11","division":"","id":"i45L0Dd5v7oocVFj5Jwm"},{"language":"English","content":"TH, as the US, would abandon the Israeli-Palestinian Cause.","topic":{},"tournamentID":"KauhYz2zVxnSCnoC8XMr","division":"","round":"2","link":"","infoSlide":"","id":"i4pcKLERKVjI5LXggjS4"},{"division":"","content":"THBT ICC should forcefeed detainees going on hunger strike.","tournamentID":"LYTCjoO4snxI4nOKTVZB","topic":{},"language":"English","link":"","round":"2","infoSlide":"","id":"i5Ql1gGFGN6egErqnY4n"},{"content":"THS Singapore's hiatus-triggered model for the presidential elections.","infoSlide":"","language":"English","tournamentID":"ukcS5bJ2TUuNfMuzta0w","topic":{},"round":"4","division":"","link":"","id":"i5mPLUuYqX1pjRG3WYvy"},{"round":"5","tournamentID":"s6w7WZApDWnBBmzeKY4h","infoSlide":"","content":"THW have all settler colonial states (Canada, U.S., Australia, Mexico, Brazil, etc.) pay rent to their indigenous populations for all government-owned property.","language":"English","division":"","topic":{},"link":"","id":"i7WK5dBQKoFyuB3uYB0g"},{"topic":{},"content":"Should we decide to categorically deny foreign missions for our army?.","round":"Open_Final","tournamentID":"VmS29bKnoZWYDeWGOc08","infoSlide":"","division":"","link":"","language":"English","id":"i8IQrQ7LYEYrHYGY4nr8"},{"division":"","content":"THBT feminists should challenge militarism instead of advocating for the \"right to fight\" (ex. pushing for the inclusion of women in national draft registration and combat duty_.","round":"Open_Quarter","link":"","language":"English","infoSlide":"","tournamentID":"xv0FPHxLsij7LUJlUmBy","topic":{},"id":"i8RN1mKNYfsb0bEsGtUj"},{"link":"","tournamentID":"KErVXbqRahyWD7ZB1Q1m","language":"English","infoSlide":"","topic":{},"round":"3","division":"","content":"It is 2017. This house is the Out campaign. THW spread hyperbolised information and lies about the EU in order to win the referendum.","id":"i8o3m2E9I30nQ5NpUvUN"},{"language":"Vietnamese","link":"","content":"Chúng tôi lấy làm tiếc sự tồn tại của Ngày lễ Tình nhân (Valentine's Day).","division":"","round":"1","infoSlide":"Ngày lễ Tình nhân (Valentine's Day) thường được tổ chức vào ngày 14/02, khi các cặp đôi tặng sô-cô-la và các món quà cho nhau như một cách thể hiện tình cảm.","topic":{},"tournamentID":"mAqW9Go1ryAbaaM1OY8z","id":"i9Ed04DdoFgyYH1f0NYr"},{"language":"English","link":"","topic":{},"round":"2","infoSlide":"","division":"","content":"THBT Cuba should prioritise the implementation of capitalism over the implementation of democracy.","tournamentID":"Z2fhe3NoSvpEOVSzVxzj","id":"i9dofcroLpVtQbPOPQaW"},{"language":"English","infoSlide":"","division":"","topic":{},"tournamentID":"seLxlAUewt8fbZdlsCGC","round":"Open_Final","content":"THP a world where competitive debating tournaments are always and exclusively hosted online as opposed to always and exclusively in person.","link":"","id":"iAOdYQGyxbUI5kTcCBBz"},{"round":"3","topic":{},"tournamentID":"yLnbL40w84r9L2K9qxt0","division":"","content":"THBT revenue from tourism sites associated with indigenous cultures (e.g. Chichen Itza and related Mayan sites in Mexico) should be distributed directly to those communities.","infoSlide":"","language":"English","link":"","id":"iAYGZahjYSL2IDYIR6MP"},{"tournamentID":"GEF7QfNpKGwIZtimYEsL","language":"English","content":"TH rejects the idea of ethical consumption.","infoSlide":"","division":"","round":"Open_Final","link":"","topic":{},"id":"iBNglld81UMfB7LXUu2n"},{"infoSlide":"","language":"English","topic":{},"link":"","division":"","round":"ProAm_Final","content":"This House Supports the rise of atheist movements in Southeast Asia.","tournamentID":"TXUiH5ezPBItq39Het98","id":"iBxtMzDkpTsD3VgdYyfI"},{"link":"","content":"This house would ban cosmetic surgery.","language":"English","tournamentID":"5O13410pDrHfcvKnpppR","division":"","topic":{},"infoSlide":"","round":"3","id":"iC1ptsp30AiSC93Jz98t"},{"division":"","topic":{"politics":{"title":"Politics","check":true}},"link":"","language":"English","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","infoSlide":"","round":"2","content":"THBT opposition political parties should boycott elections, rather than contest them, when the electoral process is believed not to be free and fair.","id":"iCBHgUbArfIpByXPEdzr"},{"infoSlide":"","language":"English","link":"","round":"Open_Final","topic":{},"content":"THS countries granting rights to nature.","division":"","tournamentID":"QePDCf8cQ2AX4XfcvR3T","id":"iDwRhhM3q5URxE4j4e2a"},{"content":"THBT protesters should sabotage the Dakota Access Pipeline.","link":"","topic":{},"tournamentID":"53fI8Yf0j74CAnSOjn9g","round":"4","language":"English","division":"","infoSlide":"","id":"iKX9nW0Aw8xADSbwKkkl"},{"link":"","tournamentID":"9pAAcbund4BvOXScZxre","round":"5","topic":{},"language":"English","division":"","content":"THW require the creators of artistic works which depict negative stereotypes of disenfranchised groups to give a portion of their profits to those groups.","infoSlide":"","id":"iKaVr7NQnbAALu63UHln"},{"round":"1","tournamentID":"1dEXZTvvRtTWhdBLmzFt","content":"This House Believes that the US Democratic Party should move to the left in candidate selection and policy platform.","link":"","topic":{},"infoSlide":"","division":"","language":"English","id":"iKeuEVfT2lQZ8zvQoWpb"},{"link":"","tournamentID":"vRdckCLdD0l2Rjc63y5T","topic":{},"language":"English","division":"","infoSlide":"","content":"Do we need schocking pictures of the slaughter and processing of meat and sausage products?.","round":"4","id":"iLs5WS9xtZJbojSOg3fP"},{"topic":{},"round":"3","content":"THS the creation of a governing body for the English language.","tournamentID":"eXqHjvQ9MTXYhyv8NeW7","infoSlide":"","language":"English","division":"","link":"","id":"iM1DqnWVDNswhura7ivj"},{"round":"3","content":"THBT Democratic Party should actively encourage candidates from minority groups (Women, POC, LGBT, etc.) e.g. Elizabeth Warren, Pete Buttigieg (LGBT) instead of white male leaders (Bernie Sanders, Joe Biden, etc.)","language":"English","division":"","link":"","topic":{},"tournamentID":"m97biSF63NO9Jn1yenBI","infoSlide":"","id":"iMe2fL2qB4CAIO8BC8SO"},{"round":"4","link":"","language":"English","topic":{},"content":"THBT the EU should give automatic membership to states that have seceded from current member states.","infoSlide":"","tournamentID":"o2dx25z3TGRcLxLt33Qk","division":"","id":"iOhWhlioOtVrWS0u0Gvu"},{"topic":{},"round":"2","division":"","content":"THW organise Alternative Olympics to the Sochi 2014 Winter Olympics in order to protest anti-LGBT laws in Russia.","link":"","tournamentID":"ZsVD7wkjXkMvxPWmTARb","language":"English","infoSlide":"","id":"iPM5OXWqxq7Wkfd11biS"},{"round":"1","division":"","link":"","content":"THW require all social networks that offer services to minors to offer parents full unlimited access to their children's accounts.","infoSlide":"","language":"English","topic":{},"tournamentID":"041lRDdS5oaD5orDuk8q","id":"iPMxN7fBngUaI5r9NHOL"},{"tournamentID":"6nBP9jzzLtVU7k4sXrZu","infoSlide":"","language":"English","content":"THBT the Common Agricultural Policy harmed the national agricultures.","round":"2","topic":{},"link":"","division":"","id":"iPeDWws0eaWt47084fps"},{"round":"2","tournamentID":"1DUltfq5WOlWowHiNs5h","division":"","language":"English","content":"TH, as Christians, regrets the rise of popular mainstream artists co-opting Gospel themes in their works (i.e. Kanye West Jesus is King).","infoSlide":"","link":"","topic":{},"id":"iPw4vA60WUD5kCxmjeet"},{"tournamentID":"vBIhHuSgrqmR27ZqUcfZ","round":"3","division":"","topic":{},"link":"","language":"English","infoSlide":"","content":"TH calls for a culture flat tax.","id":"iRK5WoQ99MvdqPjYeJD1"},{"tournamentID":"L0ovxzciizWhfK3fHJU8","infoSlide":"","language":"English","division":"","round":"Open_Final","link":"","content":"This house, as the feminist movement, would advocate for the introduction of a socialized care system in which all people needing care (the elderly, people with disabilities, etc) are cared for by workers selected by a national draft system.","topic":{},"id":"iSBJZZAEchq8Vqy5nyOy"},{"content":"THW actively reward the use of Hiberno-English in schoolwork and examinations.","infoSlide":"","division":"","tournamentID":"se3rzB8xVp0Ph3sVbug3","language":"English","round":"1","link":"","topic":{},"id":"iSHAEYqsah4eeCi3e0Hq"},{"tournamentID":"4Nqwg2GbRwaUJ5LaWcSt","division":"","language":"English","round":"5","topic":{},"infoSlide":"","content":"thw subsidize youths that opt into entrepreneurship instead of pursuing university degrees (designing, launching, and running a new business eg start ups).","link":"","id":"iSijaWXrI6maUEiCRLkj"},{"division":"","tournamentID":"TtPU6Lwr9qKhUvLMeyVD","link":"","round":"Open_Semis","content":"THW heavily incentivise Bosnians, Croats and Serbs in Bosnia and Hercegovina that move to areas where dominant ethnicity is other than their own.","language":"English","topic":{},"infoSlide":"","id":"iSxjnWvTXMWsy4E9Z1Ah"},{"tournamentID":"FIZrOByzWbUCfXyq56hs","division":"","topic":{},"link":"","round":"5","content":"THW oblige all ministeries (state departments) to use only open source software.","language":"English","infoSlide":"","id":"iTC0bMMW1nAhL2F9eC8x"},{"link":"","tournamentID":"kDr04nbGJ33SICZ9XUHJ","language":"English","division":"","round":"3","infoSlide":"","topic":{},"content":"THW end the use of armed drones in counter-terrorism operations.","id":"iTCnpOvsCX9WsNKSIfw6"},{"round":"Quarterfinals","link":"","tournamentID":"fBPBbh32BZ2p0Y1Fy5Yi","division":"","infoSlide":"","language":"English","content":"This house prefers a world where all academic records and achievements of individuals were private between the student and their academic institutions (including but not limited to degrees, transcripts, or any evidence of schools attended or merits awarded, etc.)","topic":{},"id":"iUo4ZBh2UqFUdzQ6gF9P"},{"division":"","content":"TH, with the exception of news reporting, would not allow anyone to publish or profit off accounts of violent criminals' crimes.","topic":{},"infoSlide":"","tournamentID":"OqjcHyR2p27nlpvjQ5oq","language":"English","link":"","round":"4","id":"iUrEThPes2GfvwvPorsy"},{"round":"3","content":"The U.S. Kill list is a highly classified list of primarily terrorist target. Targets, include both US and non-US citizens, that the US Government seeks to assassinate using covert operations, drone strikes and other means. TH supports the aims of the U.S. “Kill list”.","language":"English","topic":{},"tournamentID":"3XjkQ3xKYDnPNq07ZvXY","infoSlide":"","division":"","link":"","id":"iUxquA7mlaX4Cu4G2VAb"},{"round":"2","infoSlide":"","topic":{},"tournamentID":"9WoIT6ofG5A9j3MeLxh4","content":"In countries where compulsory military service for men exists, this House believes that feminists should advocate for the conscription of women.","language":"English","division":"","link":"","id":"iUzz33oypqsDhmBPpmZx"},{"infoSlide":"","division":"","language":"English","topic":{},"round":"Open_Final","link":"","tournamentID":"DLFJWaIyHnSlvFofovjc","content":"THBT the EU should approve member countries budget deficit sides.","id":"iVzkujREi3xRlHAyyan7"},{"division":"","topic":{},"language":"English","link":"","content":"THB that abortion referendums should be open to women voters only.","round":"4","infoSlide":"","tournamentID":"yhJgdE0VFcsqlvWffep1","id":"iXZdyz9dKP1Ek6YVc1xY"},{"content":"THBT Putin has been good for Russia.","infoSlide":"","tournamentID":"02vn4ksQhlUNksv2wu0q","division":"","language":"English","round":"Open_Final","link":"","topic":{},"id":"iY0BOguOemKlPTvosxvY"},{"topic":{},"link":"","division":"","tournamentID":"caeYE7341tdQiO1TJafq","infoSlide":"","round":"1","language":"English","content":"THBT men's and women's prisons that are close to each other should have co-ed activity time including sex rooms.","id":"iZGFAzL9d8DO7YyXppkc"},{"infoSlide":"","division":"","language":"English","content":"THBT the Japanese Government should allow its citizens to form leagues of masked vigilantes to fight the Yakuza.","tournamentID":"K2iCOiuVrS3D8RzjGpNe","link":"","topic":{},"round":"Open_Semis","id":"iZSYd0TgIvhS0LZQXIsN"},{"infoSlide":"","topic":{},"tournamentID":"AZDyYLAFE8Mh41BShv5m","round":"6","content":"THW give harsher sentences to military of police officers who engage in sexual assault.","link":"","language":"English","division":"","id":"iZzYBIyC1c8q0nzbc1kT"},{"content":"THBT the first country to successfully produce Covid-19 vaccine should give away its recipe to other countries for free.","tournamentID":"37eWQ7OoHqsPgaN53lHV","round":"","link":"","division":"","topic":{"irw":{"title":"International Relations/War","check":true}},"language":"English","infoSlide":"","id":"iaGiLqOg7AEKcIBChLcx"},{"round":"1","tournamentID":"kpTzHelXPi3MmxVjSizP","content":"THBT the (same-sex couples) Marriage Bill 2013 should remove the right of religious institutions to refuse to perform same-sex marriages.","division":"","infoSlide":"","topic":{},"language":"English","link":"","id":"iaHWoayGAqr3oE9sKnIV"},{"link":"","topic":{},"infoSlide":"","language":"English","content":"THBT Art is the highest achievement of humanity.","round":"C1","division":"","tournamentID":"zppT86F7lAE0Gpp7tWYo","id":"iadvQY477PM0b7HfFd5P"},{"topic":{"hr":{"check":true,"title":"Human Relationships"}},"language":"English","infoSlide":"","link":"","content":"THBT couples studying abroad should break up instead of trying to maintain a long-distance relationship.","division":"","round":"","tournamentID":"37eWQ7OoHqsPgaN53lHV","id":"ibaKGagYFBhpntSN89vG"},{"infoSlide":"","language":"English","tournamentID":"H2ZQZD4EPmxpktxvJnUz","content":"THR the use of feminism as an advertising tactic.","division":"","link":"","topic":{},"round":"4","id":"ibkyxVLbWV94JSsVg9CR"},{"tournamentID":"UfGg9gZEXlU744RWE1Y1","topic":{},"link":"","language":"English","content":"THBT the Israel Philharmonic Orchestra should regularly play the works of Richard Wagner.","round":"5","division":"","infoSlide":"","id":"icSnnS1Ohh1ooHNY8kuh"},{"tournamentID":"SE4KfMNAU58WSM6yajEF","language":"Vietnamese","link":"","division":"","infoSlide":"","round":"3","content":"Trong bối cảnh khủng hoảng bệnh dịch, chúng tôi sẽ áp dụng chính sách phân cấp bệnh nhân và ưu tiên chữa bệnh cho những người nhóm A.","topic":{},"id":"icwXNEyt51cJdhUJE9ph"},{"round":"4","tournamentID":"m2l0j7TwryKeK2YnXK9e","infoSlide":"","content":"THR the rise of the sharing economy.","division":"","topic":{},"language":"English","link":"","id":"ieAp5ZqrRd7qnl59B16O"},{"division":"","round":"3","infoSlide":"","tournamentID":"ch7bmkDPz31zOvzM3txF","language":"English","link":"","content":"THW require all news media to graphically depict under-reported armed conflicts.","topic":{},"id":"ieFtSuDZtzuEISJaJf3o"},{"link":"","infoSlide":"","round":"4","content":"This House Believes That pro-democratic activists should use fake news and synthetic media (e.g. \"deepfake\", fake video or audio recordings) to advance their cause.","tournamentID":"YF6iuqxO6eUISnAz4iMp","language":"English","division":"","topic":{},"id":"ieI5RnIX9WFwH1hliyKy"},{"topic":{},"language":"English","tournamentID":"IIWebjlC0qunFyLmEiVa","division":"","content":"THW subsidise feminist pornography.","round":"4","link":"","infoSlide":"","id":"ieQqLcPQ6t7J6CKikAu0"},{"tournamentID":"TPp4G8lciZrkipphcyZG","round":"3","infoSlide":"","link":"","content":"THBT donations to disease charities should be redistributed among these disease charities according to the number of people affected by each disease.","division":"","language":"English","topic":{},"id":"ifO0fIDxQImJ33KcdSki"},{"link":"","content":"TH supports the marriage of Ron and Hermione.","tournamentID":"KErVXbqRahyWD7ZB1Q1m","division":"","topic":{},"infoSlide":"","language":"English","round":"3","id":"igDPyBKASdTVDEV4hz2o"},{"tournamentID":"WMhTu5CeggGVUPxkfYq6","infoSlide":"","link":"","division":"","content":"This house believes that standardized testing, as a requirement for admission to universities, does more harm than good.","round":"1","topic":{},"language":"English","id":"igKCMTQ2ZcWK67ScwmpK"},{"topic":{},"division":"","tournamentID":"DV29K6gIIl6nTiYeWo2j","content":"As an average student from lower socio-economic class who lives in a developing country, This House Would choose a generalist career path over becoming a specialist.","round":"1","language":"English","infoSlide":"","link":"","id":"igODokH3sJmpkbVxQ8zQ"},{"tournamentID":"xFs2K66Nme7uYTCMS6Vw","language":"English","division":"","content":"THBT women should pay a lower rate of income tax than men.","link":"","round":"4","topic":{},"infoSlide":"","id":"igQ7gXrKJy5AvggsBPTt"},{"infoSlide":"","language":"English","topic":{},"tournamentID":"6AnUBd9SLIBHmD9Uy5dS","division":"","round":"Open_Final","link":"","content":"THBT every billionaire is a policy failure.","id":"ihjnE0pdNTSvGd0dVDiU"},{"language":"English","tournamentID":"KncW7pH1nDIom3xK89VG","content":"This House Prefers a world where sentences are determined by an AI which makes decisions through machine learning rather than by human judges.","round":"1","division":"","link":"","infoSlide":"","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"id":"iho1BMO3hCxx7I1eLZze"},{"round":"3","content":"THW treat cyber attacks as acts of war.","division":"","topic":{},"tournamentID":"aT0uKXAE6J8EslDVKzO1","link":"","infoSlide":"","language":"English","id":"iiNHo21Om2BbEXVnOouV"},{"tournamentID":"McARyCvnNLDmzAARI8jE","link":"","round":"1","topic":{},"language":"English","infoSlide":"","content":"THW ban the payment of ransoms.","division":"","id":"iipSkB6vW3ClsL4R0pMg"},{"infoSlide":"","language":"English","link":"","tournamentID":"6j3LrbKUgx9arVygXUjf","division":"","content":"TH as the OIC would cease business with China (eg freezing assets, boycotting firms, imposing tarrifs, imposing sanctions) until the Uighurs are given safety and religious liberty.","topic":{},"round":"Open_Quarters","id":"ikPq6IXhdMkMYWROud7P"},{"link":"","content":"This House Prefers a world where altruism is the only acceptable motive in doing good deeds.","infoSlide":"","language":"English","round":"2","tournamentID":"DV29K6gIIl6nTiYeWo2j","division":"","topic":{},"id":"ilHdLVtXJMAM67D2XrsF"},{"link":"","content":"Chúng tôi sẽ phá vỡ thế độc quyền thị trường của Apple.","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"tournamentID":"CbtTNoNzLTvfNvRWmMc2","infoSlide":"","division":"","round":"","language":"Vietnamese","id":"ilbnd3om5WyUPmeJD52R"},{"language":"English","topic":{},"content":"THS establishing an independent state of Kurdistan.","round":"1","link":"","infoSlide":"","division":"","tournamentID":"HlR3H86XBK4mqvL9v5HT","id":"ilyxyEyLF4waiAbbWaUP"},{"division":"","content":"THW not allow sexual assault victims to give up their right to testify in criminal proceedings as part of a civil settlement.","round":"2","tournamentID":"SIrskBVMCwGNCZibcnP1","language":"English","link":"","topic":{},"infoSlide":"","id":"imSP9bDhvdRDjyfFIdYX"},{"content":"THR the US-Taliban peace deal.","topic":{},"infoSlide":"","link":"","division":"","tournamentID":"683xp6VC99fyKWXfWS9H","round":"Open_Quarter","language":"English","id":"imZaDe7ALKtgUvVy8gvN"},{"tournamentID":"Er03o2M51g3s6dYyUHHm","round":"4","division":"","link":"","language":"English","content":"THBT consumer electronics firms should not be allowed to patent technologies which are not essential to the working of their product.","topic":{},"infoSlide":"","id":"in2AxuNuBs0idLEgsJKu"},{"tournamentID":"epYFKCbv9IIbdGwlLvYy","division":"","link":"","topic":{},"language":"English","infoSlide":"","round":"2","content":"THW rather marry a Zionist Shiksa than an Anti-Zionist Jew.","id":"inSWF7eZ7QoT2JjFFArj"},{"infoSlide":"","round":"5","tournamentID":"XL594Q2oZbvHmfmYKFvT","language":"English","topic":{},"content":"That we should ban the consumption of animals.","link":"","division":"","id":"infDwqCwuG8Nb3Ue92JE"},{"division":"","language":"English","topic":{},"round":"5","link":"","content":"THW not afford religious identity the same level of anti-discrimination protection as inborn traits (such as race, gender and sexuality).","infoSlide":"","tournamentID":"o2dx25z3TGRcLxLt33Qk","id":"ioZvJyCdOxBLG1W8lFyf"},{"round":"1","content":"THW prohibit hedge funds from purchasing sovereign debt issued by countries nearing insolvency.","link":"","language":"English","infoSlide":"","division":"","topic":{},"tournamentID":"uES9ygXHa8tJuYB7dFEM","id":"ipdAC7YV2V0d4Ts3OfwM"},{"round":"Open_Semis","language":"English","topic":{},"infoSlide":"","division":"","link":"","content":"THW suspend all sanctions on North Korea.","tournamentID":"FwXwhiD8hyS9iD7pTyRe","id":"ipzi639PSDHqHPBzLu2q"},{"round":"Open_Final","infoSlide":"","language":"English","division":"","link":"","topic":{},"tournamentID":"2hleRVQkc8xbkOnxRKOY","content":"THBT the media should fabricate and publish positive economic stories during prolonged periods of economic recession.","id":"iqiw60H4Aods2zY6Xfmi"},{"link":"","round":"5","infoSlide":"","topic":{},"division":"","tournamentID":"RautsrmlhwL2BBMyTRVG","content":"TH regrets the creation of the Eurozone.","language":"English","id":"ir1YUhJYseiKQluD7FcE"},{"tournamentID":"LlsxibXteGBGML9aitY2","division":"","infoSlide":"A technocracy is a form of government whereby ministers are chosen based on their technical expertise and background. A technocracy differs from a democracy in that these individuals who are elected are chosen through a process that emphasizes their relevant skills and background, rather than whether or not they fit the majority interests of a majority vote.","link":"","language":"English","topic":{"politics":{"title":"Politics","check":true}},"content":"In times of crises, THP a technocracy over a democracy.","round":"","id":"ir3H9qS6bNI8nRb1C6Ue"},{"round":"1","link":"","content":"This House Opposes educational approaches centered on making children believe they are special.","infoSlide":"","tournamentID":"a6rNMpZKAK9f2nCSkXu1","division":"","topic":{},"language":"English","id":"irIjJZQE0dth2tPVKaKb"},{"language":"English","content":"THW ban racist and extreme nationalist political parties.","link":"","topic":{},"round":"1","tournamentID":"3G6HklWR08yKYY0GbDsU","infoSlide":"","division":"","id":"is7zYjKhZP5XacsRTOKq"},{"tournamentID":"DYYa510cEyzz1viLavRR","topic":{},"division":"","link":"","infoSlide":"","round":"Open_Final","language":"English","content":"THW create a standing army for the European Union.","id":"isQTzD0Qn8x1mBfQBhta"},{"tournamentID":"dhjYMHAKQ3baHl4HMJbh","round":"Open_Final","division":"","content":"THBT capitalism has failed the worker.","topic":{},"link":"","infoSlide":"","language":"English","id":"ismUMwTQw6VyXQUZh8RW"},{"topic":{},"language":"English","infoSlide":"","division":"","round":"3","content":"THB India should not allow Tesco or Walmart into their national market.","link":"","tournamentID":"8vo3c8Tz12muCmAoWSv2","id":"it6bgsr3FFVB89VXiInO"},{"infoSlide":"","round":"2","link":"","tournamentID":"YZNcM4Wgq9Um4e7kNLdH","content":"THW require multi-national corporations to adhere to labor and wage standards exceeding those set by ANY individual nation.","division":"","topic":{},"language":"English","id":"itN5ryuG74DgXYD68peK"},{"division":"","tournamentID":"98I1jSQnLhtFnsr8fu0R","round":"2","topic":{},"language":"English","infoSlide":"","content":"THBT: The international community should support a one-state solution to the Israel-Palestine conflict.","link":"","id":"itf8eAuDfOmxHgUvPsAz"},{"tournamentID":"DSFg77BvC9y4FK5pBVIv","topic":{},"infoSlide":"","division":"","language":"English","link":"","round":"16","content":"THBT If It's Not Fun, You're Not Doing It Right.","id":"iv7TKmlu1vQ3eRBaG2Tx"},{"infoSlide":"","tournamentID":"9mfNKBqpq9HzOZ9GltTe","link":"","topic":{},"content":"This House would allow euthanasia for consenting adults and children.","round":"1","language":"English","division":"","id":"ivb2CLNgFpkXDlLYxNr2"},{"content":"THBT feminists should never critique mothers’ parenting except where it is obviously abusive or neglectful.","language":"English","round":"Novice_Final","division":"","infoSlide":"","link":"","tournamentID":"mUHCV4981T5cYALNdYBk","topic":{},"id":"ivzHjxlX2LQxdIf35tys"},{"topic":{},"link":"","content":"THR the decline of Marxism in Western Europe.","language":"English","infoSlide":"","round":"Open_Final","tournamentID":"FYOADGgnZTJQdU2kOcYb","division":"","id":"ixA24vrehhKdEqYjUxE4"},{"language":"English","division":"","infoSlide":"","tournamentID":"DIDaTQVu3sv4iXbqf3eE","round":"ESL_Semi","topic":{},"content":"THP a society that heavily emphasises collectivism rather than individualism.","link":"","id":"ixKqP5rA3A7oMz2sxyt5"},{"division":"","tournamentID":"QePDCf8cQ2AX4XfcvR3T","link":"","infoSlide":"","language":"English","content":"THBT major awards of meritocratic distinction (e.g. the Nobel Prize, the Pulitzer Prize, Oscars, etc) should include a moral clause* *a provision that allows the honoree to receive, or hold, the award only in the case they meet a behavioral standard set by the awarding panel. / ECCQ los principales premios de reconocimiento al mérito (Ej. Premio Nobel, Premio Pulitzer, Oscar’s, etc.) deberían incluir una cláusula moral* *una condición que permite al homenajeado recibirlo y conservarlo únicamente cuando cumplan con un estándar de comportamiento establecido por el jurado calificador.","round":"4","topic":{},"id":"iyf8p0AbbFPvYIMQjAlm"},{"topic":{},"division":"","content":"THBT western liberal democracies should replace their aid programs with an \"effective altruism\" tax, and give revenue to the most effective available non-governmental organisations or charities.","tournamentID":"FcQa3EO91Xucj4ACR1Wb","round":"2","infoSlide":"","link":"","language":"English","id":"izReuWWsKBusiXXVFtdX"},{"tournamentID":"kpTzHelXPi3MmxVjSizP","round":"Open_Semis","language":"English","topic":{},"infoSlide":"","division":"","content":"THBT America should refuse to engage with any attempts to end cyber warfare.","link":"","id":"izWEhtJDY8vczaOuVqfw"},{"division":"","infoSlide":"","tournamentID":"o29IKQqCI95UODWABA9Y","content":"You are an immigrant (asylum seeker?) from a non-Western country. You are offered full and immediate citizenship of the EU and the US. The offers are the only two that you have and are mutually exclusive. You do not know where you will live in either union. Your native and only language is spoken in neither. Motion: THW opt for the EU.","link":"","language":"English","round":"3","topic":{},"id":"j0R927o4ORLfjmlcnxNx"},{"division":"","tournamentID":"LnHXZbgsbq5JIVU7k21X","infoSlide":"","language":"English","round":"Open_Semis","link":"","content":"THBT every person has the right to take pictures of works of art or performances and publish them as their own works of art.","topic":{},"id":"j0XWM1bNrjtPE1gZ3Cp1"},{"link":"","language":"English","tournamentID":"euj80C6nkxdgEhkTaI0g","content":"THBT white entertainers should refrain from using cultural modes of expression that come from minority cultures.","topic":{},"infoSlide":"","division":"","round":"Open_Quarters","id":"j0i9LvGYWKbAi9DxidMV"},{"tournamentID":"9yZPq4vkPBjWs9gMF8AS","division":"","infoSlide":"","round":"6","content":"The Trump administration should abandon its widespread use of tariffs as a tool to boost the US economy.","language":"English","link":"","topic":{},"id":"j0it7yZaAZgr1RzgFyt0"},{"language":"English","link":"","topic":{},"infoSlide":"","round":"Open_Semi","content":"THW not cut funding for research that seeks to deal with Climate Change, even in the wake of austerity.","division":"","tournamentID":"mf3XudZleydnsr0lEvkg","id":"j0t0R2RlYzy4Nbzuik9v"},{"round":"5","topic":{},"tournamentID":"xoiSW3hTToX15wvrD6gA","division":"","language":"English","content":"THR the concept of \"The one that got away\".","link":"","infoSlide":"","id":"j1QHWb0DDd46cRYGFUFe"},{"link":"","infoSlide":"","topic":{},"content":"THR the dominant narrative that individuals should \"do what they love\".","tournamentID":"1zpwTG4R66xy1c4CrMeq","round":"3","division":"","language":"English","id":"j1ohwd2zGiABFQepOp6T"},{"language":"English","round":"1","topic":{},"infoSlide":"","link":"","tournamentID":"eQMzhfh3p9amGITvLICM","division":"","content":"This House believes that the European Union should adopt the basic income.","id":"j1vvGQxyitSXQZPr5P6Z"},{"link":"","infoSlide":"","content":"THBT Sex Education Classes in Schools Should Teach Techniques For Pure Sexual Gratification (including, but not limited to, anal sex, oral sex, mutual gratification and masturbation).","language":"English","round":"6","division":"","topic":{},"tournamentID":"zUT5H7Cgh7l0a0sJSIba","id":"j3AeXsc9P3lyD9qeqY8O"},{"content":"TH, as developing countries, will give priority to economic development since the successful announcement of Covid-19 vaccine.","link":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","infoSlide":"","round":"","language":"English","division":"","topic":{"publicHealth":{"title":"Public Health","check":true}},"id":"j3J9BHsNNILZKR5aYlTQ"},{"infoSlide":"","topic":{},"language":"English","division":"","round":"Quarterfinals","tournamentID":"9yPqE2fe1oaHsd7ankOa","link":"","content":"THO the centrality of sport to national identity.","id":"j3iSzsQ9tdVxuXTrEJmP"},{"language":"English","topic":{},"division":"","link":"","content":"THBT the identity of the artist should be obscured from those who buy and display the art (approximation).","round":"4","tournamentID":"9jfZRYzidDD9sleXlrNL","infoSlide":"","id":"j3kkvCCZdABMh17Kom11"},{"link":"","division":"","content":"THW criminalize the buyer and not the seller of sexual services.","infoSlide":"","language":"English","tournamentID":"FcQa3EO91Xucj4ACR1Wb","round":"1","topic":{},"id":"j4EUAYiAe6rMPXNLcsTi"},{"infoSlide":"","tournamentID":"TXUiH5ezPBItq39Het98","link":"","content":"TH prefers representation of queer characters in media whose stories do not centre around their queerness.","topic":{},"language":"English","division":"","round":"Open_Final","id":"j4YaRxToMgVMHeVa00PQ"},{"topic":{},"division":"","round":"2","content":"THS the vision of the ASEAN Economic Community.","link":"","tournamentID":"S2mG18EWYdh2bPEadyd9","infoSlide":"","language":"English","id":"j58IRYko1vFr01jv9VIr"},{"round":"4","tournamentID":"7lMrN2aiwSzD5rzPFwHz","topic":{},"infoSlide":"","division":"","content":"THW encourage replacing human body parts with advanced robotic counterparts.","language":"English","link":"","id":"j5KpmaB6aGHNEDKNiLhQ"},{"language":"English","division":"","round":"3","link":"","infoSlide":"","tournamentID":"uvPQBxEeKffyHUkLa5PV","topic":{},"content":"THW allow the police to use entrapment.","id":"j5Zs9HBFEBYqziI3Jf48"},{"content":"THBT states should not pursue policies to reduce inequality once all citizens have an acceptable standard living.","topic":{},"language":"English","division":"","tournamentID":"zbDMNQdzWmUf0FHPwYDO","round":"Novice_Finals","infoSlide":"","link":"","id":"j6MQGX4V9j5ch463k4Kv"},{"link":"","round":"2","language":"English","infoSlide":"","tournamentID":"1wIdZYeTVkyLU5yJfjda","division":"","content":"Should the 9th of November be Germany’s national holiday?.","topic":{},"id":"j6r2a25sSz9s1wsdXX3q"},{"language":"English","link":"","division":"","tournamentID":"HjQJA65fZ9igHKO8DLAP","topic":{},"round":"2","infoSlide":"","content":"That the victim of crimes should be able to choose whether the offender is dealt with under civil law or criminal law.","id":"j7mi9ER1muZZd3gNsHLc"},{"division":"","infoSlide":"","link":"","tournamentID":"EkR93MYW52GdWTuVsaKa","language":"English","round":"5","topic":{},"content":"THBT the UN should recruit a standing army.","id":"j7mll4fT0DjkYJ6GtpPa"},{"tournamentID":"mxxjZaa0262HoUjjXfj8","division":"","topic":{},"language":"English","content":"This house supports the “right to try”.","round":"1","infoSlide":"The right to try refers to the legal granting to individuals with life-threatening conditions the opportunity to access (‘try’) experimental treatments - even one that have yet to pass regulatory approval.","link":"","id":"j80uGfvy1RpBGUqN8cn3"},{"topic":{},"tournamentID":"5Qomv7BFHTKmY4PchwDr","link":"","division":"","language":"English","round":"Open_Semi","infoSlide":"","content":"That we regret the emphasis placed on individual rights by social justice movements.","id":"j8IxGqZgwsP0DPNvgfAS"},{"language":"English","tournamentID":"GeB6bvqs5FhYEP99Q8Ax","infoSlide":"","round":"Open_Semis","link":"","division":"","topic":{},"content":"THBT the Israeli LBGT-movement should oppose pink-washing.","id":"jA3s4JuvkZ4KeLCUc8eh"},{"content":"Chúng tôi ưu tiên một thế giới nơi mọi người không mong muốn có được sự công nhận xã hội.","language":"Vietnamese","tournamentID":"gUFKQBcgvghmUX6k0Dj3","division":"","round":"Semifinals","infoSlide":"","link":"","topic":{},"id":"jACm8gLFxvAaOufrKCGg"},{"content":"Chúng tôi tin rằng ở các vùng kinh tế-xã hội kém phát triển, trường học nên dạy giáo dục khai phóng thay vì dạy nghề.","language":"Vietnamese","topic":{},"link":"","infoSlide":"\"Giáo dục khai phóng\" là một triết lý giáo dục cung cấp cho các cá nhân một nền tảng kiến thức rộng và những kỹ năng có thể chuyển đổi được sau khi ra trường. Chương trình học khai phóng là một chương trình học giáo dục tổng quát nhiều lĩnh vực học thuật và nhiều chiến lược học tập, bên cạnh chương trình học chuyên sâu trong ít nhất một lĩnh vực nào đó.","round":"Semifinals","division":"","tournamentID":"RF6WJZV8JYPwFqSpNxlR","id":"jAXBMwbWIxhvlg4VgouT"},{"tournamentID":"KErVXbqRahyWD7ZB1Q1m","topic":{},"language":"English","infoSlide":"","division":"","content":"THBT colonialism caused more good than harm.","link":"","round":"3","id":"jAeqbXjrWSD0tl4w496E"},{"division":"","content":"To proselytise means to attempt to convert others to your beliefs. This House believes that atheists should proselytise.","topic":{},"infoSlide":"","round":"4","link":"","tournamentID":"pQSBc1H8lG2P8ftbCWZ8","language":"English","id":"jAnpTZ9Rxtp125tuXb6f"},{"round":"Novice_Semi","link":"","infoSlide":"","tournamentID":"NBT7RwLHeAApXuOtrQpt","division":"","content":"THBT environmental advocacy groups should prioritise individual-centric actions (e.g. recycling, not eating meat etc.) at the expense of policy-level changes.","topic":{},"language":"English","id":"jAtSNff7TO3OlMGiVYvg"},{"tournamentID":"lleJhm2ki2Ixm97fXI7b","round":"Open_Final","content":"THBT the education system should stream children according to their abilities from a young age.","topic":{},"link":"","language":"English","division":"","infoSlide":"","id":"jBkcYhJdIdsFczfnJE7n"},{"topic":{"publicHealth":{"title":"Public Health","check":true}},"language":"English","link":"","round":"","content":"THO the disclosure of the identity of people infected with COVID-19.","infoSlide":"","tournamentID":"CJKUeBIUibEtZYahoUQV","division":"","id":"jBr4TRY71wYEtfbq3ZgN"},{"language":"English","link":"","round":"Open_Final","topic":{},"infoSlide":"","division":"","tournamentID":"8OIcp0isoNfvCv3ZWmkt","content":"Should development aid only be given in the form of knowledge transfer?.","id":"jCCrBGnNhyQqedChbdQ7"},{"content":"THBT EU membership should not be determined on the basis of geographic criteria.","infoSlide":"","topic":{},"tournamentID":"PIBLfC67BXtpF7r3aqIV","round":"1","link":"","division":"","language":"English","id":"jCM1xqmuGayn8Ag4OdVV"},{"content":"THBT schools should prioritise the teaching of modern literature over classical literature.","round":"1","infoSlide":"","language":"English","topic":{},"tournamentID":"PEAicxOTn0uGyCAGiXLX","link":"","division":"","id":"jCrszhuUXazDYPnyHSpR"},{"tournamentID":"qDUBTulIlHZP0un39LYK","content":"THW impose a tax on men to reduce the gender pay gap.","infoSlide":"","language":"English","round":"1","topic":{},"link":"","division":"","id":"jCugoF5i6qXl7DSlRHmi"},{"content":"THBT feminism is in opposition to capitalism.","link":"","tournamentID":"Pr7RhJp1TWbTZsqRvQt4","language":"English","infoSlide":"","division":"","topic":{},"round":"3","id":"jD1fNc40ALVxe4sxAWlX"},{"infoSlide":"","link":"","round":"1","tournamentID":"75jspJDrwq3Ldwex90Qr","topic":{},"content":"THBT social movements in developing countries should use strategies that seek the acceptance of the majority as opposed to using a confrontational approach.","language":"English","division":"","id":"jD1ycuL9XK9CzCAlMGY1"},{"language":"English","infoSlide":"","tournamentID":"sQqCNuWw9nlSsN5agLhC","topic":{},"link":"","round":"2","content":"In the event of First Contact occurring between humans and extra terrestrial life (aliens) on Earth, THBT humans should react immediately with pre emptive force.","division":"","id":"jDFk8OEiphOpggzklx0K"},{"infoSlide":"","link":"","language":"English","round":"3","tournamentID":"WYCV7Sl9idtN2tulRuB2","division":"","topic":{},"content":"THBT Israel was Right to Negotiate the Release of Gilad Shilat.","id":"jDdyvJaUrKvBNOfDgbp2"},{"content":"This house would grant citizenship in exchange for military service.","topic":{},"link":"","language":"English","infoSlide":"","division":"","tournamentID":"VPUCPVj9FHFW0uzJinv0","round":"9","id":"jE0RQ2zu3C9prgMdHEbw"},{"infoSlide":"","link":"","topic":{},"language":"English","round":"2","division":"","content":"THBT city-states are a better political unit than nation-states.","tournamentID":"xewLQXUxvfe0Xal1qtHM","id":"jECWlSUOdIOTBTcXUkmK"},{"link":"","round":"2","topic":{},"infoSlide":"","content":"THBT post-conflict societies should set a history curriculum that emphasises the wrongs done by their own community during that conflict.","language":"English","division":"","tournamentID":"H8XCoxhHfhkNSTYxwR42","id":"jEJSV1derbepSCxdoevT"},{"division":"","topic":{},"round":"8","language":"English","link":"","content":"THS the creation of similar groups to the Gulabi Gang in Latin America.","tournamentID":"axWwnyCM8L14pVHljukt","infoSlide":"","id":"jEgCPuC4lvIHdZAPCVaV"},{"round":"1","infoSlide":"","link":"","content":"THBT individual feminist women should reject acts of chivalry (e.g. buying drinks for them, holding the door open, \"ladies first\" etc.).","division":"","language":"English","tournamentID":"X7iAuOHrSqi0EHPkRNls","topic":{},"id":"jFJN8QVZ03mmpHLQ8XRn"},{"content":"Chúng tôi sẽ không tiêu dùng (bao gồm nhưng không giới hạn hình thức xem, mua bán, ủng hộ...) những tác phẩm nghệ thuật của những nghệ sĩ có hành vi vô đạo đức.","tournamentID":"OLVGf3rE3KKirerr2vyk","link":"","topic":{},"round":"3","division":"","infoSlide":"","language":"Vietnamese","id":"jFZR3Qtu2FLXAhDW28zM"},{"tournamentID":"683xp6VC99fyKWXfWS9H","language":"English","link":"","topic":{},"content":"THW pool donations for specific charity causes and redistribute them to charities according to evidence-based assessment of the efficacy of these charities within the sector.","round":"5","infoSlide":"","division":"","id":"jGIjfJl56KT8K8yEQxNW"},{"link":"","topic":{},"round":"Open_Semis","language":"English","infoSlide":"","tournamentID":"eBlrzVaoBbfX5kbian3T","content":"THW make the US pay reparations to its Muslim citizens.","division":"","id":"jGb9GVKRdrT4byJkugZK"},{"infoSlide":"The Gulabi Gang “the Pink gang” are a collection of women in North India that wear pink saris and engage in violent, non-lethal acts of vigilantism. They target men who they have reason to believe have gone unpunished for acts of violence against women.","link":"","tournamentID":"x0FqHVU6TNo1z8egQZct","content":"TH Supports the actions of the Gulabi Gang.","topic":{},"round":"5","language":"English","division":"","id":"jGkkVtBFKUdf1geiWL87"},{"division":"","link":"","infoSlide":"","language":"English","topic":{},"tournamentID":"vS5BTr7lDW40h5Qw31FI","round":"Open_Semis","content":"This house would create an international court with the ability to classify national debt as “Odious Debt” at the debtor nation’s request and remove the obligation of that nation to pay.","id":"jGlkcr7VCYvsBs7vjpxO"},{"content":"This house believes that anonymous resistance from inside the Trump administration is a heroic act.","language":"English","infoSlide":"","tournamentID":"4PekAtlXMCWdSTTJuMol","link":"","round":"5","topic":{},"division":"","id":"jH0nVFS0KrgMQU52eXBY"},{"round":"EFL_Final","language":"English","tournamentID":"t1jiRXU99xeGdoIkTeyF","content":"THBT the European left should promote a hard left agenda, including the nationalisation of major industry, very high tax rates on wealthy, and expansion of the welfare states.","division":"","topic":{},"link":"","infoSlide":"","id":"jHjgoMiDX1D1T9tTNWxx"},{"language":"English","topic":{},"tournamentID":"lFdTm9Bd7AxKRkVImhbS","content":"THBT Walmart is good for America.","division":"","link":"","round":"5","infoSlide":"","id":"jJ206tjaUN8NQZlWwIqk"},{"language":"English","round":"Open_Final","topic":{},"link":"","content":"THR the rise of sharing economy.","infoSlide":"","division":"","tournamentID":"r7L7x15Ixt9qEWgdPZ6u","id":"jJwtsIADuHp4QMpOI2ez"},{"tournamentID":"uqR5rN63m5rX9CiOtJjb","round":"5","division":"","language":"English","topic":{},"content":"Chúng tôi tin rằng Trump nên trừng phạt Trung Quốc vì che giấu dịch bệnh COVID-19.","link":"","infoSlide":"","id":"jKZgiWSjlREBvHAYB7N3"},{"round":"Open_Semis","language":"English","division":"","content":"TH supports Wikileaks continuing to publish the documents it acquires, even if they reveal private information about civilians.","infoSlide":"","topic":{},"link":"","tournamentID":"ti8CFKwd5Fq6RHmrGph0","id":"jL5aEpASQRgzLSELQgmE"},{"language":"English","topic":{},"infoSlide":"","round":"1b","tournamentID":"Pt1Z2dTdUinRviVucbZA","division":"","link":"","content":"That we prefer larger, more spaced apart patches to regular, smaller patches in esports games.","id":"jLDEFFSHLLjxGWtLigOy"},{"infoSlide":"","tournamentID":"CbtTNoNzLTvfNvRWmMc2","division":"","round":"","content":"Chúng tôi tin rằng những Người tị nạn môi trường nên được cấp quyền công dân ở các quốc gia mà đã đóng góp nặng nề cho ô nhiễm toàn cầu.","language":"Vietnamese","link":"","topic":{"environment":{"title":"Environment","check":true}},"id":"jLU5zkjVbjBbgMgkZo6A"},{"infoSlide":"","tournamentID":"XKnRXbL5iWiOHmPMcGVz","round":"2","link":"","language":"English","division":"","content":"THBT the congressional black caucus should admit non-black members.","topic":{},"id":"jLchufjiaDnIcEYEEpcu"},{"language":"English","round":"4","tournamentID":"k1fYFDihwlGzjmVGfSXp","infoSlide":"","link":"","content":"THW allow private entities to discriminate on grounds that are forbidden for the state to discriminate on (or words to that effect).","topic":{},"division":"","id":"jLt97crHugvvmdEN4p6r"},{"round":"Open_Final","language":"English","infoSlide":"","division":"","topic":{},"tournamentID":"RKQT9j6jX9NRbleAmjmy","link":"","content":"THW give the public the power, via referendum, to pardon whistleblowers.","id":"jNeD5qnprbgDapi3SLRe"},{"tournamentID":"zkhDsyR1rpDZXDiA2JUj","language":"English","division":"","link":"","topic":{},"infoSlide":"","content":"THB the diaspora should b‘The Gathering’.","round":"5","id":"jO0KtqIBjUQSGzf10jmM"},{"content":"THW give higher primates protections similar to those given to refugees.","tournamentID":"jDAkgOHYB1YR6mTfcUKJ","infoSlide":"","language":"English","division":"","topic":{},"link":"","round":"3","id":"jP6rJ8tqryz8C1rDrsHy"},{"infoSlide":"","round":"Open_Quarter","tournamentID":"mf3XudZleydnsr0lEvkg","content":"THBT DINOs do more harm than good to the Democratic Party.","topic":{},"language":"English","division":"","link":"","id":"jPEmSYjysi1YPNi4u6Vo"},{"language":"English","topic":{},"content":"It is Christmas. In otherwise pristine snow, the trackmarks of Santa Claus’ sleigh are visible. A policeman is walking around the field to savour the Christmas spirit and suddenly discovers a small booklet. It is Santa Claus’ list with no less than a complete list of all transgressions of everyone on the planet. The policeman immediately recognises the potential power of such a list. In the back of the booklet is Santa Claus’ address. Motion: THW destroy the list.","round":"3","link":"","infoSlide":"","division":"","tournamentID":"1cJ1sn6hYwZuN7mUjUE9","id":"jQX1UJXilGsXF6r9CkTK"},{"round":"3","division":"","link":"","language":"English","tournamentID":"VyYxJ0FaIE4LYaWheUyL","topic":{},"infoSlide":"","content":"There have been successful experiments with citizens actively involved in the rehabilitation process of ex-convicts by, for example, hosting them in their house, or building supportive relationships with them. In these programmes, the state ensured adequate financial and professional assistance. The participation in these programmes by citizens and ex-convicts has always been voluntary. Motion: THW randomly select citizens to actively assist in the rehabilitation process of ex-convicts, and make participation mandatory for those citizens.","id":"jQjrH3kNutzRbZCRKG4k"},{"division":"","content":"TH, as an Asian American, would not support the suit against Harvard University.","link":"","round":"Open_Semis","tournamentID":"8DernPpRwzBf2YIkESEX","infoSlide":"","language":"English","topic":{},"id":"jRBnAEEFYN79MxH6wB4T"},{"division":"","topic":{},"language":"English","infoSlide":"","content":"THBT it should be the policy of the US to conduct all of its military interventions unilaterally.","tournamentID":"4XkvQJQxtOHIIF6sH97v","round":"ESL_Finals","link":"","id":"jS6hAqaQ9UVf3Xqzm2uC"},{"language":"English","infoSlide":"","division":"","link":"","tournamentID":"7xqpYA72Sruch4lr5Uzj","topic":{},"round":"3","content":"THW provide financial assistance to inner city communities to prevent gentrification.","id":"jSAQQezSa7hvMXYXvkPg"},{"round":"1","infoSlide":"","content":"THW require all politicians who are running for election to do a test of general knowledge whose results would then be made ​​public.","language":"English","link":"","division":"","topic":{},"tournamentID":"HbzzxzNaEfw54UvTulVq","id":"jSWBUfsOl6U1Ae0do7nY"},{"tournamentID":"02vn4ksQhlUNksv2wu0q","infoSlide":"","link":"","round":"4","content":"THW ban religious institutions from opening addiction rehab centers.","topic":{},"division":"","language":"English","id":"jTsqTnJOl67mWnpCb24g"},{"division":"","topic":{},"tournamentID":"uvPQBxEeKffyHUkLa5PV","language":"English","content":"THW ban non-medical research into genetics of race.","link":"","infoSlide":"","round":"2","id":"jUfm6ehoIbjQObIlhwQu"},{"language":"English","division":"","infoSlide":"","content":"This house supports universities treating students as customers (eg by allocating significant resources to improving students lifestyles, and granting students influence over university decisions and the content and delivery of course curricula).","round":"6","tournamentID":"6KzwZLwpFJv7ICEsknpO","topic":{},"link":"","id":"jV9uivR0pzeVoxcZpYwA"},{"topic":{},"round":"Open_Quarters","link":"","content":"Given the opportunity, TH, as a talented young individual living in a Western Balkan country, would emigrate to pursue a career in the EU.","division":"","tournamentID":"Te8CYa0tImwgHXE99O7W","language":"English","infoSlide":"","id":"jWgzBLCscK6grYCPaXS8"},{"tournamentID":"lgIRNhKweWPgrrSL34Lh","topic":{},"division":"","infoSlide":"","language":"English","round":"5","link":"","content":"THW give parents an additional vote for each of their underage children.","id":"jWhvoFqC4PTRptzcH1CA"},{"link":"","infoSlide":"","tournamentID":"tKXlShZl2vec49jC1bif","topic":{},"content":"In a world in which the technology has recently been created to impregnate men, TH, as a male partner of a young career-focused woman, would choose to carry their baby.","division":"","round":"1","language":"English","id":"jXASsWz65A8qO9ZuNjM1"},{"content":"THBT FIFA should reallocate the 2022 World Cup from Qatar to a country with a superior human rights record.","infoSlide":"","round":"3","topic":{},"tournamentID":"2hleRVQkc8xbkOnxRKOY","link":"","language":"English","division":"","id":"jYMO9lhAP4XyQB65WhgU"},{"infoSlide":"","division":"","link":"","language":"English","topic":{},"content":"That microfinance organizations offering loans in developing countries should offer them exclusively to women.","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","round":"Open_Octa","id":"jYbdLa83Hl8U1zC0mCNy"},{"infoSlide":"","language":"English","topic":{},"content":"THBT the Syrian National Coalition and the Free Syrian Army should offer to end the Syrian Civil War and share power in a short term transitional government led by Bashar al-Assad.","tournamentID":"YWYo651ohahlD6OyzCXj","division":"","round":"Open_Semis","link":"","id":"jYiGO0O6fCmf9Dc1TODS"},{"infoSlide":"","tournamentID":"qDUBTulIlHZP0un39LYK","language":"English","content":"THW not watch pornography.","division":"","link":"","round":"3","topic":{},"id":"jZvG8zsxtBC7YIDpOaVb"},{"round":"","infoSlide":"","content":"Assuming technology allows, THW allow parents to choose the sex of their baby before birth.","language":"English","tournamentID":"OqQWJjNQBpGOYwMntw3z","topic":{"technology":{"check":true,"title":"Technology"}},"link":"","division":"","id":"jZxpTRjhmaRq0xpdEIVV"},{"round":"4","tournamentID":"TPp4G8lciZrkipphcyZG","language":"English","topic":{},"division":"","content":"THS the use of feminist catch phrases about freedom, empowerment and choice in advertisement of fashion and beauty products.","infoSlide":"","link":"","id":"ja8TW7dT9A6Ed3r5kD0x"},{"tournamentID":"OqjcHyR2p27nlpvjQ5oq","topic":{},"division":"","infoSlide":"","round":"2","content":"THW publish all salaries.","link":"","language":"English","id":"jaNleKiZ8yOlqGGVp2An"},{"round":"3","content":"THBT Hinata Shoyo should date Kageyama Tobio.","link":"","division":"","topic":{},"infoSlide":"In the universe of Haikyuu, Hinata Shoyo and Tobio Kageyama are teammates in the volleyball team of Karasuno High School. They are a perfect match in terms of their volleyball skills, particularly when it comes to their freak fast attack. Probably no one would ever have the same chemistry when pairing up with them. However, in terms of personality, they are totally different. Hinata is more of a very noisy, outgoing, bringing joy to people around him, and doing everything without thinking. On the other hand, Kageyama is more quiet, less open to people, and does not know how to show his care to people he cares about.","tournamentID":"Z9WBfg1yDJgSR34BGYp1","language":"English","id":"jaXgQ5A0YxVCD1HJlgnS"},{"topic":{},"infoSlide":"","division":"","tournamentID":"BjyPWHMlV10O4VN8B1XE","round":"2","language":"English","content":"THW Prosecute Barack Obama for War Crimes.","link":"","id":"jakSCo2JEXU7wEthUT0V"},{"language":"English","content":"That state level affiliates of the Democratic Party in conservative states should disaffiliate and establish a new party.","round":"Open_Finals_1","tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","division":"","topic":{},"infoSlide":"","link":"","id":"jbCG8SWmPcs6n60IqXMp"},{"content":"When responding to civilian casualties, this house believes that the military action taken does not have to meet the principle of proportionality.","topic":{},"round":"5","language":"English","link":"","infoSlide":"","tournamentID":"2D1SBKQDFgG0zGjX4oHP","division":"","id":"jbFnsOc9aQPr0Rr7iWvj"},{"tournamentID":"3puXPIrnWCPTSNlOtl3R","infoSlide":"","language":"English","content":"THBT Advocates for Trans* people should not campaign within the feminist movement.","round":"3","link":"","topic":{},"division":"","id":"jbkkz0ionppnR7wKLS1q"},{"tournamentID":"MIrEXPHnAIOpqQw6kxky","infoSlide":"","division":"","topic":{},"link":"","content":"This house prefers a world in which all religions believe in Universal Salvation.","round":"4","language":"English","id":"jcDI7hZDsLkF1hmI4mJN"},{"content":"THW grant minors the right to euthanasia regardless of parental consent.","division":"","topic":{},"infoSlide":"","language":"English","link":"","tournamentID":"miNjiX9yX5Oq25V4yWeo","round":"Open_Semis","id":"jcXMUFwp8RThafQu8YlG"},{"link":"","tournamentID":"IXq1CdgyiKmkyEDJURrV","language":"English","round":"4","content":"THBT major news outlets should not send their journalists to warzones.","infoSlide":"","division":"","topic":{},"id":"jd9t2PyXoHhgNopDvYx0"},{"division":"","infoSlide":"","round":"4","link":"","topic":{},"tournamentID":"URJkYB098qcNUnuKdfHJ","content":"ΤΗΒΤ on balance the invention of nuclear weapons was beneficial for the world.","language":"English","id":"jdJRvK98SZcXcM2BEjL6"},{"topic":{},"language":"English","content":"THW introduce Mandatory Organ Donation.","tournamentID":"VT7J9JrIu3vEI0gMHsS2","division":"","link":"","round":"Open_Semi_4","infoSlide":"","id":"jeO8YKiYeGTkiqXw2Rbe"},{"content":"You are the British government. You have full guarantee that SAS (special air service) can enter the prison which currently holds the Pussy Riot Girls in Russia and you can remove them safely. THW enter Russia and remove the Pussy Riot Girls from their cells.","language":"English","tournamentID":"Xt0UV62VgaP360hvHqWG","infoSlide":"","link":"","topic":{},"division":"","round":"Open_Semis","id":"jeuZxxjytTgPU5ORzggH"},{"language":"English","content":"THBT comedians who cross the line of public offence do more harm than good.","topic":{},"round":"Open_Final","division":"","infoSlide":"","tournamentID":"YWYo651ohahlD6OyzCXj","link":"","id":"jexKa0yzDCMniOXQmzQP"},{"topic":{},"link":"","division":"","content":"THW completely abolish all subsidies and preferential treatment to the farming industry in the EU.","round":"1","language":"English","infoSlide":"","tournamentID":"ns7JoMyNUkrrS5A6Rbw7","id":"jfe5djIxYtGqQkbIN5tW"},{"link":"","language":"English","topic":{},"tournamentID":"zbDMNQdzWmUf0FHPwYDO","division":"","content":"THBT when a company conducts any business in a developed nation, that nation should enforce its domestic environmental regulations at all stages of that company's supply chain (including suppliers and sub-contractors).","infoSlide":"","round":"2","id":"jftMHv7SIe0y6QLEsF2P"},{"infoSlide":"","topic":{},"round":"4","language":"English","link":"","tournamentID":"MyZkPsGPMuQ4XmFzJLVW","division":"","content":"THW make development aid contingent on recipient countries maintaining substantial redistributive taxes.","id":"jg9QM22sQ2utdQpXpkit"},{"content":"TH, being Socrates, would not drink the cup of poison.","link":"","topic":{},"infoSlide":"","language":"English","division":"","tournamentID":"YRWxNK3sQq47UacBwpjn","round":"Open_Final","id":"jgOEDUggzJD122HCdJ4B"},{"infoSlide":"","round":"4","language":"English","tournamentID":"2D1SBKQDFgG0zGjX4oHP","topic":{},"content":"This house prefers a world in which, upon childhood, all people intuitively come to know their natural expiration date.","link":"","division":"","id":"jhVfQTrlDJ1URwcGFARs"},{"division":"","language":"English","tournamentID":"tKXlShZl2vec49jC1bif","infoSlide":"","topic":{},"round":"5","content":"Instead of sentencing offenders to fixed terms of imprisonment, THW sentence offenders to indeterminate sentences of imprisonment and release them when they have been rehabilitated.","link":"","id":"jiBsNUGzmYl9FG14Amk0"},{"division":"","language":"English","content":"THW transition to a cashless society.","tournamentID":"KpispxU2MtVt41R9j5bV","infoSlide":"","link":"","topic":{},"round":"2","id":"jicIuguMMkLiXuzWhdXf"},{"language":"English","infoSlide":"","content":"THW allow ex-felons to become police officers.","tournamentID":"3b2nSsxJIMIXNPKJTeQx","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"round":"3","link":"","division":"","id":"jipJOL9Pcc0T47pSeBrk"},{"division":"","infoSlide":"","link":"","content":"TH, deep down, secretly longs for a cold hearted Republican to lower taxes, brutalise criminals and rule you like a king.","tournamentID":"S3X3UeH5zIQsGlSEttfv","topic":{},"language":"English","round":"2","id":"jiscAF8ADtqIjNbxQtDC"},{"tournamentID":"m6JzV67uYJSVBRpAbgL7","language":"English","infoSlide":"","topic":{},"link":"","division":"","content":"THS parents actively confiding in their children about financial problems and personal insecurities.","round":"5","id":"jju7OYmIXQJ2YxJlEZFr"},{"tournamentID":"QH8qP4fqpVb4nMsZXwxw","round":"Open_Semis","topic":{},"content":"THW Celebrate Furiosa from Mad Max: Fury Road as a feminist Icon.","language":"English","infoSlide":"","division":"","link":"","id":"jk3LrDVPOZpgYHqKSZQt"},{"infoSlide":"","topic":{},"link":"","round":"2","language":"English","content":"THW require that all international debt bailout agreements are approved by a referendum of the country receiving that bailout.","division":"","tournamentID":"qQd3HyiFI5fx18xViLoe","id":"jkWhFehWpW46gl53FZnn"},{"topic":{},"round":"1","language":"English","tournamentID":"0bOkf8RbGJTfzpOQVOgY","link":"","content":"THBT Western liberal democracies should ban unpaid internships.","infoSlide":"","division":"","id":"jkm9coH8hUEnXMF73ewK"},{"tournamentID":"9yPqE2fe1oaHsd7ankOa","link":"","content":"THW limit corporate funding of scientific research.","division":"","round":"4","infoSlide":"","language":"English","topic":{},"id":"jllpHbFuHbIQWYDznZem"},{"division":"","topic":{},"round":"2","tournamentID":"mxxjZaa0262HoUjjXfj8","infoSlide":"The narrative of American Dream is the belief that anyone, regardless of where they were born, what class they were born into, what one’s gender is, can attain their own version of success in American society, where upward mobility is possible for everyone. Meritocracy is a core tenet of the American Dream, emphasizing that success achieved through hard work, rather than by chance.","content":"THBT minorities in US should reject the narrative of the American Dream.","link":"","language":"English","id":"jlwJDKWTCvW7ADymMWlo"},{"topic":{},"division":"","tournamentID":"KTeMrrauFpZYvjtBUkLJ","round":"Octofinals","content":"THP a world where musical artists perform and publish under anonymous personas (eg. Daft Punk, Yorushika, Marshmello).","link":"","language":"English","infoSlide":"Musicians performing under anonymous personas are musicians that choose not to publicly reveal their real identities. Sime, such as Daft Punk and Marshmello, choose to conceal their identity by way of physical objects that obscure identifiable traits, while others such as Yorushika are entirely anonymous to the public, publishing music under an animated persona and opting out of live, in-person performances.","id":"jm40GbqrsQZJ7L04Jm4l"},{"round":"2","link":"","language":"English","topic":{},"tournamentID":"368JyxQNhxMm3WEWlba7","division":"","infoSlide":"","content":"THW break up banks that are deemed too big to fail.","id":"jmvfTm09wXQbEslxFMzr"},{"division":"","infoSlide":"","link":"","topic":{},"language":"English","content":"THS the seizure and redistribution of land owned by the descendants of former colonizers in post colonial states.","tournamentID":"efp9mMZFiy8fVwkom17I","round":"3","id":"jnWHIez13quD7DoVoSTk"},{"infoSlide":"","round":"Open_Final","link":"","tournamentID":"MgpFX31hoBasrUiOV7Eu","division":"","content":"THBT LGBTQ+ activists in non-Western countries should use and advocate for LGBTQ+ rights and individuals using their local historical terms (mahjie, hijra, etc.) instead of Western terminology (lesbian, gay, bisexual, transgender etc.).","language":"English","topic":{},"id":"jnYIAJWCzC5LhZqSVnoP"},{"division":"","content":"THS \"gold digging\".","infoSlide":"","round":"5","link":"","tournamentID":"S2mG18EWYdh2bPEadyd9","topic":{},"language":"English","id":"jnlOsJQVr3fG65IjB9CU"},{"round":"Open_Final","division":"","tournamentID":"McARyCvnNLDmzAARI8jE","link":"","content":"THBT consent is not a source of moral legitimacy.","infoSlide":"","topic":{},"language":"English","id":"jpEjeLBKL7myn4PRmknN"},{"language":"English","infoSlide":"","division":"","link":"","topic":{},"round":"3","content":"THW give the ECB a veto over all national budgets within the Eurozone.","tournamentID":"WqsdOIKQnJkQdFDBVNtA","id":"jpOOlFpR77IOdp64cutt"},{"infoSlide":"","link":"","content":"TH supports media censorship during times of political crisis.","topic":{},"tournamentID":"V8KRgdahxIEUYFHrRWYb","language":"English","division":"","round":"9","id":"jplpNGsE9hA6ZLyWhNzS"},{"content":"Assuming the technology exists, THW remove aggression from human behaviour.","topic":{},"language":"English","tournamentID":"K8mVAYwcb9xlXvnmmJBY","infoSlide":"","round":"Open_Semi","link":"","division":"","id":"jqSDYifbuA3EWLiSWhik"},{"infoSlide":"","round":"4","topic":{},"division":"","content":"THW allow the Reclame Code Commissie (Dutch Advertising Standards Authority) to ban advertisements which affirm gender roles.","link":"","language":"English","tournamentID":"NxB6ercynISK3sISgci5","id":"jr1DbhFuxiPM6jzCKpSk"},{"topic":{},"content":"TH, as the United States Federal Government, would take all necessary steps to eliminate Mexican drug cartels.","link":"","infoSlide":"","division":"","round":"Open_Semi","tournamentID":"GEF7QfNpKGwIZtimYEsL","language":"English","id":"jrBAWuAgu1cwx7c4tYyn"},{"round":"5","division":"","content":"THBT Canada should allow foreigners to access their right to die policy.","language":"English","topic":{},"link":"","tournamentID":"YZNcM4Wgq9Um4e7kNLdH","infoSlide":"","id":"jrKUJNDDRrwtx0tFQVfB"},{"content":"THBT a minimal state is justified.","topic":{},"tournamentID":"jpLuasMJYB40s1bJk2Ia","infoSlide":"","link":"","round":"Open_Final","division":"","language":"English","id":"jrk56ZgcHEI1z0SyVgzG"},{"tournamentID":"mkrRVvz5EWSZie6LBtCH","link":"","infoSlide":"Thuế thừa kế (inheritance tax) là khoản thuế đánh vào tài sản thuộc sở hữu của cá nhân khi nó được chuyển cho người thừa kế. Mức thuế thừa kế tối đa hiện tại là 40%, nhưng thực tế mức trung bình chỉ ở 17%.","division":"","content":"Chúng tôi ủng hộ thuế thừa kế ở mức 100%.","topic":{},"round":"4","language":"Vietnamese","id":"jsB2jMEZSo1Pk9Fnl7XA"},{"infoSlide":"","content":"This House prefers technocracy to democracy.","link":"","tournamentID":"S5UzkuOf9XN6BnhOSbRC","division":"","language":"English","round":"Open_Semi","topic":{},"id":"jsjjp4vIIaNLCtyGbWdM"},{"tournamentID":"y6YpD63Uuk3t3fbBC7Tk","content":"This house supports the creation of all-Jewish universities in Europe.","infoSlide":"","language":"English","division":"","round":"2","link":"","topic":{},"id":"jv0JcGAwOOlIybG8K6r0"},{"link":"","division":"","content":"That we should hold pharmaceutical companies liable for harms caused by widespread misuse of their drugs.","tournamentID":"n7qv29PmNuF5SOe42oiz","topic":{},"language":"English","round":"3","infoSlide":"","id":"jv4M81eT6MV2APtYuw3e"},{"language":"English","infoSlide":"","link":"","division":"","topic":{},"round":"Grand Final","content":"THBT more economically developed countries (MEDCs) should provide reparations to less economically developed countries (LEDCs) due to the effects of climate change.","tournamentID":"OyqUfVFCTQ5A8iecmNK1","id":"jw18qhhIqFzZDfhEf78X"},{"link":"","infoSlide":"","tournamentID":"d13kY0BTy5kVOwwqu54R","content":"THW Allow individuals to sign contracts which cede future rights of theirs to other individuals (for example, to sell themselves into slavery).","topic":{},"division":"","round":"Final","language":"English","id":"jw1d4h6VWFHrldyI7Uef"},{"infoSlide":"","topic":{},"language":"English","content":"TH supports the decline of the nations-state's power in an increasingly globalized world.","tournamentID":"92dIEXeOXUVvlcFeGCIr","round":"ESL_Finals","link":"","division":"","id":"jwKRL4HHMU1lSnyO0TRI"},{"round":"3","link":"","language":"English","division":"","topic":{},"content":"THW only fund medicine based on its impact on Quality Adjusted Life Years.","infoSlide":"","tournamentID":"oVagPVQLXErhZIkOTqQn","id":"jwmfipYrBwPD12j8zTMn"},{"content":"THW give men more paid parental leave than women and force them to take it.","topic":{},"language":"English","division":"","tournamentID":"UWHKNxWBfNyw2FCQAxdk","round":"3","link":"","infoSlide":"","id":"jwpHSvNZeOpRcSTmDVS7"},{"topic":{},"tournamentID":"WZCqEhVlkHd8g5WoExVG","language":"English","link":"","round":"4","division":"","content":"Should secret services produce pictures of despots that change their reputation and distribute those in the countries of these despots?.","infoSlide":"","id":"jxmcCpmUTSV5Cq3lWpJ8"},{"content":"You are a CEO of a major clothing company and currently pay workers in your factory 1 dollar a day. You are presented with a plan that would give your employees a dignified living wage. This would significantly increase production costs but would not put you out of business. THW implement the plan.","language":"English","topic":{},"tournamentID":"TtPU6Lwr9qKhUvLMeyVD","round":"6","link":"","division":"","infoSlide":"","id":"jy1ylWpvfRcLv7ESo5Wf"},{"round":"Open_Semis","tournamentID":"WqsdOIKQnJkQdFDBVNtA","content":"THBT the state should, were possible, teach children in their vernacular language.","language":"English","topic":{},"infoSlide":"","division":"","link":"","id":"jyTonyhOamuaDjPPbvDZ"},{"division":"","infoSlide":"","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"round":"2","language":"Vietnamese","link":"","content":"Chúng tôi nuối tiếc sự tiếp tục của NATO sau khi Liên Xô tan rã","tournamentID":"3b2nSsxJIMIXNPKJTeQx","id":"jzERB7t7FNVMcDQuIlgB"},{"round":"4","language":"English","topic":{},"division":"","infoSlide":"","content":"THW not pursue income redistribution beyond poverty reduction (armoedebestrijding, i.e. combatting poverty).","tournamentID":"MPR74LYpg8Ru6paM45U9","link":"","id":"jzFkzb0OHoYRBGE6K9FT"},{"tournamentID":"a6rNMpZKAK9f2nCSkXu1","infoSlide":"","division":"","content":"This House Believes That leaders of police forces should be elected by thelocal communities they serve.","link":"","round":"EFL F","language":"English","topic":{},"id":"jzMQuI59H4V9kWl9d8OR"},{"language":"English","infoSlide":"","round":"Open_Final","topic":{},"division":"","tournamentID":"1aLx5bJZiwmW3mkmtmNO","link":"","content":"TH would let the captured wives and children of former or current Boko Haram soldiers choose to live in open society.","id":"jzhT7ekgOqUePhhXdsvR"},{"round":"3","language":"English","tournamentID":"SGpBjVPnJkFrJB0hnxYv","content":"Given a way to accurately measure an individual's empathy, THW only allow individuals with high levels of empathy for people beyond their immediate circle to vote in elections.","topic":{},"division":"","link":"","infoSlide":"","id":"k0eVJdKzgP4yjzlvodjn"},{"topic":{},"language":"English","infoSlide":"","round":"2","link":"","tournamentID":"C1d7IlBx1VcZ4eBTl6cr","division":"","content":"TH rejects any policy that punishes families for having more than one child.","id":"k0o67jrCjH2ygzflMcGU"},{"language":"English","infoSlide":"","topic":{},"round":"4","content":"THS the strategy of “decapitation” in fighting transnational criminal organizations.","link":"","tournamentID":"TMUPfAyolz9JkKMmWlLC","division":"","id":"k0zVRCUUlFF7ky7rOyCH"},{"link":"","tournamentID":"8DernPpRwzBf2YIkESEX","language":"English","round":"4","topic":{},"infoSlide":"","division":"","content":"THBT being single is preferable to being in a relationship.","id":"k1nSZGljGZd5rwcDzoKh"},{"round":"Open_Final","tournamentID":"jHRVS3aznjPPQaxWT8bs","link":"","infoSlide":"","division":"","language":"English","content":"You are a member of the Pussy Riots. You are presented with a fail safe plan to runaway from prison and start a relatively comfortable life in the west. THW stay in prison.","topic":{},"id":"k33BrjWqdlFS9Hll6tEX"},{"topic":{},"infoSlide":"","round":"Open_Quarters","link":"","content":"THW suspend labor laws in times of economic crisis.","tournamentID":"DNe0c1xNBVoG02MsO66g","division":"","language":"English","id":"k353MpGFAG8wB9NIJa61"},{"link":"","tournamentID":"nALUKfkpmOnWnQCzecru","topic":{"sports":{"title":"Sports","check":true}},"round":"","content":"Chúng tôi tiếc nuối sự nhấn mạnh việc thắng huy chương trong thế vận hội như ví dụ chính của sự thành công.","language":"Vietnamese","division":"","infoSlide":"","id":"k3KV8qkCE6JeczHmvVBW"},{"round":"Open_Final","tournamentID":"RLX3o4g1PsjOGvcOJBWD","language":"English","division":"","topic":{},"infoSlide":"","content":"THW not give awards to music or film stars who have committed violent crimes.","link":"","id":"k3OITDswtR9A9X6uADeQ"},{"content":"This House would weight shareholder votes in line with the length of time their shares have been held.","round":"2","infoSlide":"","link":"","tournamentID":"jpLuasMJYB40s1bJk2Ia","division":"","topic":{},"language":"English","id":"k3fd2C9lRs4xle00DH9X"},{"topic":{},"content":"This house would require test-status cricketing nations to play each other at equivalent rates (e.g. South Africa would be required to play Afghanistan and Ireland approximately as often as they play India).","link":"","infoSlide":"","language":"English","round":"Open_Semi","division":"","tournamentID":"Nzien6R9RXvOTrNMJsza","id":"k4bUUKK4tljr1iuXOzs6"},{"topic":{},"infoSlide":"","language":"English","link":"","content":"THBT the US should abandon complete denuclearization as a prerequisite to easing sanctions on NK.","tournamentID":"SGpBjVPnJkFrJB0hnxYv","round":"1","division":"","id":"k53F1XIvZPMKPGX5GA7n"},{"topic":{},"content":"THW aggressively prioritize the posting of female diplomats to countries with poor women's rights records.","tournamentID":"euj80C6nkxdgEhkTaI0g","round":"3","link":"","infoSlide":"","division":"","language":"English","id":"k5WDuCM4yCP22ztgu5KL"},{"content":"THBT the European Union should fund satirical* publications in its member states that target far-right political parties * the use of humour and exaggeration to criticize.","division":"","round":"9","topic":{},"language":"English","link":"","tournamentID":"UfGg9gZEXlU744RWE1Y1","infoSlide":"","id":"k68cnyt8uzGhzZbZ8giy"},{"tournamentID":"ZjN9B5kqPitiGVpXIpHO","content":"THW put an absolute cap on non-essential expenditure by parents on each of their children.","infoSlide":"","round":"2","topic":{},"language":"English","link":"","division":"","id":"k6n7ZB1xW8MWjtXzhmfo"},{"language":"English","round":"Open_Final","topic":{},"link":"","infoSlide":"","tournamentID":"99Ct9ORyddmNGYGfpDl7","division":"","content":"THW partition Belgium.","id":"k7PKTEaywUKuaQ4mvRTt"},{"round":"1","content":"THW ban private political donations, and fund all political parties and campaigns from general taxation.","topic":{},"infoSlide":"","language":"English","division":"","tournamentID":"bcb5yQt6p8cx9SACsvYL","link":"","id":"k8pUWY8y94sg04AwNjon"},{"content":"THBT the US and Iran should ally to fight ISIS.","language":"English","link":"","tournamentID":"gDONpxWgr0bu13hZzxYr","topic":{},"division":"","infoSlide":"","round":"3","id":"k8wmNaQSmXfC5hNO8u8S"},{"round":"7","content":"TH supports academic tracking in primary and secondary education.","infoSlide":"","tournamentID":"DNe0c1xNBVoG02MsO66g","link":"","language":"English","division":"","topic":{},"id":"k9kIOp7KjjmHPTzD51z3"},{"content":"THBT South Korea should provide unconditional humanitarian aid and assistance to North Korea.","link":"","infoSlide":"","topic":{},"tournamentID":"IIWebjlC0qunFyLmEiVa","round":"2","language":"English","division":"","id":"k9w8HU9M1UkbpBl97obL"},{"link":"","division":"","content":"THS the Animal Liberation Front.","infoSlide":"","round":"3","language":"English","tournamentID":"S2mG18EWYdh2bPEadyd9","topic":{},"id":"kAMcnIkZsnJb2ne5KLyj"},{"tournamentID":"sgcqNV5ntCoa4H8glRBu","division":"","round":"","content":"THR the popularity of the notion: \"University is the fundamental path to success\".","infoSlide":"","language":"English","link":"","topic":{"education":{"check":true,"title":"Education"}},"id":"kAi2EKb89vgopSBiPpeE"},{"round":"3","link":"","infoSlide":"","division":"","topic":{},"content":"TH would allow the police to use entrapment.","tournamentID":"uvPQBxEeKffyHUkLa5PV","language":"English","id":"kBjbhknYFxTD6yA0ULUs"},{"division":"","link":"","content":"THBT anyone living above the national median wage has an obligation to donate all excess wealth to charity.","round":"3","topic":{},"tournamentID":"uES9ygXHa8tJuYB7dFEM","infoSlide":"","language":"English","id":"kCFqs6w0KixpFVkQdFEp"},{"link":"","tournamentID":"lgIRNhKweWPgrrSL34Lh","round":"Open_Semis","division":"","language":"English","topic":{},"infoSlide":"","content":"THBT Japan should re-develop offensive military capabilities.","id":"kCISE8xGDHjZHioRIpyg"},{"infoSlide":"","topic":{},"content":"THBT individualism has failed us.","division":"","round":"Open_Semi_2","link":"","tournamentID":"xiDAjYVVSR0PYlxr0F2u","language":"English","id":"kCP3NoebELpUC16Aa3l3"},{"infoSlide":"","topic":{},"language":"English","round":"2","link":"","tournamentID":"JsJHH6odeVuMVnQ8A5bN","division":"","content":"THBT members of a minority group should oppose popular media that innacurately portrays the culture, struggles or history of traditionally marginalised groups (i.e. Hamilton, Mulan).","id":"kCStqFKXe3FQ1ywP0ZyO"},{"division":"","infoSlide":"","language":"English","round":"4","content":"THW only hire disabled actors to play disabled characters.","tournamentID":"0DgXee32WEP3hxmGZExS","topic":{},"link":"","id":"kCX8asTsAIDobZAUOA8R"},{"division":"","content":"THW ban the use of circus animals.","infoSlide":"","tournamentID":"yFALyexswW7KtxRDS4He","topic":{},"language":"English","round":"4","link":"","id":"kCa2oF9UjOlyWiR9laIg"},{"round":"3","language":"English","infoSlide":"","link":"","content":"THR the Arab Spring.","topic":{},"division":"","tournamentID":"G40265rxZRrwSbZ3fQSJ","id":"kCdzxiMvZTLCiGkyjqYX"},{"link":"","language":"English","division":"","content":"This house supports the right of fiction authors to use a pseudonym and/or remain anonymous.","round":"4","infoSlide":"","tournamentID":"kqAjVyDOCBYWRYze158e","topic":{},"id":"kDIq6WMeD5wckWYQ2vTh"},{"topic":{},"content":"THBT former human rights activists under dictatorial regimes should not seek elected office (e.g. MP) after the transition to democracy.","link":"","round":"3","tournamentID":"MIrEXPHnAIOpqQw6kxky","infoSlide":"","language":"English","division":"","id":"kDq4ZacDP48oSMhkVWDF"},{"content":"That, as a woman of colour living in a majority-white country, we would embrace, compete in and establish national beauty pageants for women of our ethnic heritage.","tournamentID":"5Qomv7BFHTKmY4PchwDr","link":"","round":"ESL_Final","topic":{},"infoSlide":"","division":"","language":"English","id":"kErBEzqiAlGvuek3Z5uq"},{"infoSlide":"","content":"This House believes that the modern NZ Labour party should not regret the reforms of the fourth Labour Government.","topic":{},"tournamentID":"6tyiq2GnlmVmI452js6u","division":"","language":"English","round":"4","link":"","id":"kF2DhctQ0zUW4Rz6BK4E"},{"round":"3","tournamentID":"KncW7pH1nDIom3xK89VG","link":"","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"language":"English","division":"","infoSlide":"An antihero is a protagonist who is lacking in heroic qualities, such as morality, compassion, and courage. Examples include Severus Snape (Harry Potter), Loki (Marvel Cinematic Universe), and Bakugou Katsuki (My Hero Academia).","content":"This House Opposes the romanticisation of antiheroes in popular culture.","id":"kFQJZD0Pby7KxxYBLdzn"},{"topic":{},"infoSlide":"","content":"Should pensioners be obliged to do voluntary work?.","tournamentID":"1wIdZYeTVkyLU5yJfjda","round":"1","division":"","language":"English","link":"","id":"kG25378QgRvBSk9yCPgJ"},{"division":"","topic":{},"language":"English","infoSlide":"","round":"12","link":"","tournamentID":"ZHpmROZ4G7eY4iB9dTsM","content":"TTHW prosecute domestic violence without the consent of the victim.","id":"kGE58hi3j8k9wE1j4ZOR"},{"round":"Preliminary","infoSlide":"","tournamentID":"SPjgjrpUBIPs6H9gmx9P","language":"English","link":"","division":"","topic":{},"content":"That we reserve LGBT+ roles only for LGBT+ artists.","id":"kGEmVkWzvOogXxJY4kaG"},{"link":"","language":"English","infoSlide":"","topic":{},"division":"","round":"Open_Final","tournamentID":"9hmPqfKzlDmhAISeJsts","content":"THR the decline of Black Militant Groups (i.e. the Black Panther Party, the Black Liberation Army.","id":"kIc7fEWxXZ1oaVszblQV"},{"link":"","division":"","content":"TH regrets the rise of atheism as promoted by Richard Dawkins (in, for example, The God Delusion in which he argues that tolerance of religion damages society and individuals).","topic":{},"round":"3","language":"English","tournamentID":"kIlyrRRnzkKK1188i1Qf","infoSlide":"","id":"kJ1sx8297fOFCKR5qJw0"},{"division":"","tournamentID":"980ImkvfswyUVd54XFQd","topic":{},"round":"3","language":"English","infoSlide":"","content":"THBT all policy on drugs, alcohol, tobacco and other controlled substances should be made by expert scientific panels and not elected officials.","link":"","id":"kJlmHNqaVk2DNcAaJEln"},{"language":"English","infoSlide":"","round":"Novice_Semis","content":"Motion: THBT universities should never restrict freedom of expression beyond what is already considered illegal by the state.","tournamentID":"yOWDiguNGQHwr42mgnqv","topic":{},"link":"","division":"","id":"kJsV6bFFS1L77MqDORQl"},{"topic":{},"round":"3","link":"","division":"","content":"THW formally recognize an independent Kurdistan.","tournamentID":"OJi1hwkxrfVjCOf6ZDRH","infoSlide":"","language":"English","id":"kLPmEQaWXapFkyXbz64K"},{"division":"","content":"TH, if presented with a choice between holding the FIFA World Cup 2022 in Qatar or not holding the World Cup at all that year, would choose not to hold the World Cup in 2022.","tournamentID":"yFALyexswW7KtxRDS4He","language":"English","topic":{},"infoSlide":"","round":"Open_Octos","link":"","id":"kLQXzZpxzIOACAecHp1y"},{"topic":{},"language":"English","tournamentID":"JvpXQ1DYmWydXXgsnZ74","content":"THW not imprison those convicted of non-violent crimes.","link":"","round":"1","infoSlide":"","division":"","id":"kLp0qA6Qxpk2akmcC5ux"},{"link":"","topic":{},"tournamentID":"inOeJRfxqTpVMfq0i7Ze","infoSlide":"","language":"English","content":"This house would delegate authority over the preservation of te reo to iwi.","division":"","round":"5","id":"kM7xXeQSmeCUqy0aZIMT"},{"infoSlide":"","topic":{},"language":"English","tournamentID":"vBIhHuSgrqmR27ZqUcfZ","round":"2","link":"","division":"","content":"THW swap all children after birth.","id":"kMGk6pCuf6ftHFz9KrO9"},{"division":"","tournamentID":"kFgdnpZDLOmYAkEJ1Zu6","topic":{},"link":"","language":"English","round":"3","infoSlide":"","content":"(Pre-released motion) THBT all US primary elections should be held on the same day.","id":"kMeKoOKPrWcM7EFWMn7d"},{"topic":{},"tournamentID":"UefabB9q8iptn7SCi47p","round":"Open_Semis","language":"English","content":"TH prefers to be an averagely intelligent person to a genius.","infoSlide":"","link":"","division":"","id":"kNDpROzp1nJNrbWa2LqN"},{"round":"Open_Final","tournamentID":"6kzErQkhNrOjgjEPAYjE","division":"","content":"TH defends that austerity is the solution to the (economic) crisis.","infoSlide":"","language":"English","topic":{},"link":"","id":"kOTn8zREK9Hv8kVifH1f"},{"language":"English","link":"","topic":{},"infoSlide":"","tournamentID":"o83Oqm9vDtGaG6SVldke","round":"ESL_Final","content":"This House would allow pro-life organisations to offer to pay women considering abortions to carry the baby to term (assuming adequate child support services exist).","division":"","id":"kQRihvjGPYvAdG4Gcosd"},{"round":"Open_Final","division":"","language":"English","tournamentID":"wYhrxey2tVddZfEkGSYA","content":"Should same-sex couples receive full adoption rights?.","topic":{},"infoSlide":"","link":"","id":"kQnJINgT5PYa1i9A0CNE"},{"content":"You would make your discovery public.","infoSlide":"","link":"","round":"Open_Final","topic":{},"tournamentID":"oopKRuBfN6tSw3UTWZKT","language":"English","division":"","id":"kR2yuMItu8ahXv7NaLDS"},{"round":"","topic":{"politics":{"check":true,"title":"Politics"}},"content":"Chúng tôi sẽ giới hạn tài sản và thu nhập của các chính trị gia.","tournamentID":"nALUKfkpmOnWnQCzecru","link":"","infoSlide":"","division":"","language":"Vietnamese","id":"kRVAxwtqW04wGWyLyQSv"},{"link":"","content":"THW allow single parents to raise their children in prison.","tournamentID":"eBNO1FMsif7tzOa9LlnU","round":"4","division":"","infoSlide":"","language":"English","topic":{},"id":"kS3CLKBX1FrAUNRoyupR"},{"infoSlide":"Nội dung phim “Black Pink: Light up the sky” xoay quanh 4 năm hoạt ododjng của các thành viên trong nhóm kể từ khi nhóm ra mắt từ năm 2016. Một vài ý kiến cho rằng phim chưa kể đúng sự thật về việc làm thực tập sinh cũng như chưa thực sự cho thấy cái nhìn đa chiều về Kpop. “YG Entertainment có hàng chục cô gái dành 14 giờ đào tạo mỗi ngày với mục tiêu trở thành thành viên của nhóm nhạc nữ. Những buổi học đó rất tàn bạo, như thể họ đang chạy đua tại thế vận hội Olympic”, một báo cho biết.","language":"Vietnamese","content":"Chúng tôi, với tư cách các công ty giải trí Hàn Quốc, sẽ công bố thời gian biểu hoạt động của thực tập sinh.","topic":{},"tournamentID":"FiF24Yc0spiBkvTxiYwD","division":"","round":"4","link":"","id":"kSK9wjCr0tLV4Z1tP55e"},{"topic":{},"round":"1","content":"TH regrets the culture of treating death as an extraordinary event.","infoSlide":"","language":"English","tournamentID":"TSpa3WXkfFl9nQFbVbmi","link":"","division":"","id":"kT6UexMiYeUFcWIka3VZ"},{"round":"A4","content":"THBT peace is only an illusion.","tournamentID":"zppT86F7lAE0Gpp7tWYo","division":"","infoSlide":"","language":"English","topic":{},"link":"","id":"kT7RadbelnF26ue3uKKf"},{"division":"","content":"We should get a European army.","link":"","language":"English","round":"4.1","infoSlide":"","tournamentID":"h373wn3dFw9UcWDcJpyy","topic":{},"id":"kVDhmCLFdmRMgyprWMGb"},{"tournamentID":"kwsuFgaQ5lYbaXVGrGal","topic":{},"infoSlide":"","round":"6","content":"THS allow the populace to petition for revotes of elected officials during their term.","link":"","division":"","language":"English","id":"kVVIMnwLygUjX11LJUei"},{"division":"","content":"THW instate a public service (öffentlich-rechtliches) system for newspapers.","infoSlide":"","link":"","round":"5","tournamentID":"1WET2zUA9uN6rpHTGR8k","language":"English","topic":{},"id":"kVkLiWJuQi6DMmWMCNK9"},{"infoSlide":"","division":"","language":"Vietnamese","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"content":"Giả sự an ninh mạng được đảm bảo tuyệt đối, chúng tôi sẽ sử dụng tài khoản mạng xã hội thay cho chứng minh nhân dân.","tournamentID":"37eWQ7OoHqsPgaN53lHV","link":"","round":"","id":"kVkmD7PC1P4lYHp8BPBr"},{"language":"English","link":"","topic":{},"round":"3","content":"THW Only Direct European Investment Fund Money to States That Agree to Take a Share of Refugees Proportional to Their Share of EU GDP.","tournamentID":"i4XbygF4ZWUtQg8NFKqw","division":"","infoSlide":"","id":"kVvBHB1aZF8Jv3hxowEW"},{"tournamentID":"gsX4dlvvsr6lcKP3eM2T","content":"This House would require doctors to report all cases of suspected domestic violence.","link":"","language":"English","topic":{},"division":"","infoSlide":"","round":"ESL_Semis","id":"kW0tDpWFQLknkU5h7cUC"},{"division":"","link":"","language":"English","content":"This house would set term limits for MPs in Parliament. - Round 3.","infoSlide":"","tournamentID":"nXN2yUG7soxwCp4xidzj","round":"3","topic":{},"id":"kWIgFfF4ACIXX6ZAqvFE"},{"language":"English","tournamentID":"gf4DgO2PbJKuaj3RSFTp","content":"THBT the European Union should ban art, including literature or film, that directly insults any religion.","topic":{},"round":"1","link":"","infoSlide":"","division":"","id":"kWKdFsVMOWL3gs6HAly7"},{"topic":{},"division":"","link":"","infoSlide":"","round":"Novice_Final","language":"English","tournamentID":"krSr8LWxSpEc6v45L1uv","content":"In Canada, criminal court judges are appointed. In other countries, such as the US, Japan, and Switzerland, judges are elected. The methods and voting systems used to elect these judges varies based on country and municipality. In the US for example, judges run for local office in the same way as other politicians (eg, mayors, council people, etc.), and sometimes have a party affiliation for campaigning. Motion: THP elected over appointed judges in criminal courts.","id":"kYIsIHfMSdK7iUdYb6vq"},{"link":"","content":"THW place tax on fast food.","division":"","topic":{},"infoSlide":"","round":"1","language":"English","tournamentID":"x1XtlIYDR23OSfEzPpkf","id":"kYXLbY8uRDZb1tnjwH48"},{"language":"English","link":"","topic":{},"tournamentID":"JWLA0D1GfpyCkzoL1qX9","infoSlide":"","division":"","content":"The Russian state systematically oppresses its LGBTQI+ community: Homosexual couples can be prosecuted for displaying their sexuality and the police often refuse to prevent violence towards LGBTQI+ people. Motion: TH, as a heterosexual winter Olympian, would not attend the Sochi Winter Olympics.","round":"4","id":"kYePA2qeZ4rgldoYzQWd"},{"topic":{},"link":"","language":"English","division":"","round":"Open_Final","tournamentID":"TmlbBgqJnPvT2UGB0Lbb","infoSlide":"","content":"THW not inform the public.","id":"kYoofQrRDdlKPvwFqGTs"},{"topic":{},"infoSlide":"","tournamentID":"IIWebjlC0qunFyLmEiVa","content":"TH regrets the popular veneration of Che Guevara.","division":"","round":"Open_Final","link":"","language":"English","id":"kZCaLTgHtYUo10k4j8HV"},{"link":"","topic":{},"round":"1","content":"This house believes that European media outlets should refrain from reporting on crimes committed by refugees - Round 1.","infoSlide":"","language":"English","division":"","tournamentID":"nXN2yUG7soxwCp4xidzj","id":"kZVnF3p26SUBOuQnZy0s"},{"infoSlide":"","division":"","content":"THW require professional sports clubs to have at least 50% of the shares (in charge of the main decision) owned by the locals.","topic":{"sports":{"check":true,"title":"Sports"}},"tournamentID":"sgcqNV5ntCoa4H8glRBu","language":"English","round":"","link":"","id":"kZfQZdVDJAupuVh5Q2UB"},{"round":"Semifinals","division":"","language":"Vietnamese","link":"","infoSlide":"","content":"Chúng tôi tin rằng ASEAN nên đàm phán các thỏa thuận đầu tư với các thực thể chính phủ Trung Quốc như một khối (với các quyết định được đưa ra khi các thành viên đều đồng thuận) để không một quốc gia nào tham gia vào các thỏa thuận đầu tư mà không có sự đồng ý của phần còn lại.","tournamentID":"BPe1MqSgmLovUz7nghmX","topic":{},"id":"kZgMDOiv2Rxgv0ALsnXR"},{"content":"THBT Britain should leave the EU.","division":"","topic":{},"language":"English","tournamentID":"X8TtbynGKBJ2Z158R7Sw","link":"","infoSlide":"","round":"1","id":"kaFuIAZdPh6Jk37dpPwT"},{"division":"","infoSlide":"","round":"2","language":"English","content":"THB student unions should not campaign on geo-political issues.","topic":{},"link":"","tournamentID":"mHdtWLh0RKp035BRFblm","id":"kaNIEW2RuW2EX30anpLW"},{"topic":{},"language":"English","round":"5","infoSlide":"","link":"","content":"This house believes that social networks have improved our lifestyle.","division":"","tournamentID":"eQMzhfh3p9amGITvLICM","id":"kaqoayPlXDNlPZeMdvIn"},{"division":"","topic":{},"tournamentID":"aHKO046eJRUWaom1jPG8","infoSlide":"","round":"1","content":"This House Would ban the breeding of wild animals for petting programs at zoos.","link":"","language":"English","id":"kbLpBv8IWw9F0qvRWy5v"},{"content":"THBT FIFA should comply with the demand that they suspend Israel’s membership of FIFA until Israel allows Palestine to freely compete in international football.","language":"English","division":"","tournamentID":"DvsGvQWaYzshd3lSsDGu","infoSlide":"","link":"","topic":{},"round":"2","id":"kbNrsfyRuJzNm236dpcm"},{"link":"","tournamentID":"kpTzHelXPi3MmxVjSizP","language":"English","round":"4","division":"","content":"THW Pay Additional Benefits to Families on Welfare Whose Children are Excelling in School.","topic":{},"infoSlide":"","id":"kc2SIsDJdf1HfhNyCDeV"},{"topic":{},"infoSlide":"","round":"2","language":"English","tournamentID":"YF6iuqxO6eUISnAz4iMp","link":"","division":"","content":"This House Would ban Amazon's internal arbitration courts.","id":"kc2lnyZlLm1jSUKSReEL"},{"tournamentID":"mveJVSu6tAxKx2Vp4IB0","link":"","round":"Open_Semis","content":"Should state marriage be open for all relations between people?.","language":"English","topic":{},"infoSlide":"","division":"","id":"kcIgFg2bZFSEfzZsXAgr"},{"content":"THW require corporations which operate in both the developed and developing worlds to apply the same labour rights to both.","link":"","language":"English","tournamentID":"KEJHhRHDE4CXyVyy0Jy8","infoSlide":"","round":"3","topic":{},"division":"","id":"kclebq1Oa0jZq0z1uKWn"},{"infoSlide":"","round":"Open_Semis","division":"","topic":{},"language":"English","tournamentID":"5wD2Kt4YswcLbEnnV0c5","link":"","content":"THW release inmates from jail solely on the basis of their rehabilitation and not upon the completion of a predetermined period of time.","id":"kd7oRDN2zFlYav0Mop5d"},{"content":"THBT disadvantaged groups should emphasise their conformity with, rather than distinctiveness from, dominant culture, as a strategy for improving their social position.","topic":{},"link":"","division":"","round":"Open_Octos","language":"English","tournamentID":"q7pvo4zkG31lg89ofmeq","infoSlide":"","id":"kdOXnOtZz8Wxdqdz8ya4"},{"content":"THW ban the buying and selling of emotional services.","infoSlide":"","language":"English","link":"","topic":{},"round":"1","tournamentID":"xv0FPHxLsij7LUJlUmBy","division":"","id":"keFKa5OqHDZoxg4T5zXL"},{"infoSlide":"","language":"English","tournamentID":"aywt5Kt0TqoeqngKQ0I4","round":"8","link":"","topic":{},"division":"","content":"THW require universities to write-off the student debt of any student who graduates in good academic standing but is unable to find a job despite actively seeking employment.","id":"kePOuUsnaz3wofHctiiO"},{"infoSlide":"","division":"","round":"5","content":"(inkl. Factsheet) Should Austria counteract its Declaration of Neutrality?.","tournamentID":"mveJVSu6tAxKx2Vp4IB0","language":"English","link":"","topic":{},"id":"kegar0w5lSuJ2DFGIued"},{"language":"English","link":"","tournamentID":"tC9C0k05cAmtT3IBK2AV","division":"","infoSlide":"","round":"2","content":"TH, as a superhero, would agree to use their powers solely in service of the democratic state.","topic":{},"id":"kehNWA7ZxUwoDhRR1eri"},{"infoSlide":"","link":"","content":"This house believes that social movements should use the courts rather than the legislature to advance social change.","topic":{},"round":"9","tournamentID":"Biz1VRjjdg8eWbm4NJr3","division":"","language":"English","id":"kepqRuvdA96tgppgqLUq"},{"link":"","infoSlide":"","language":"English","topic":{},"tournamentID":"kDr04nbGJ33SICZ9XUHJ","division":"","round":"Open_Final","content":"THBT western governments should cease all diplomatic,economic and military ties with the Bahrain government and support the opposition movement.","id":"kfRBHcRsuPgkEBtx9YCy"},{"content":"THW place a special tax on successful artists in order to fund new and developing artists.","round":"5","division":"","link":"","infoSlide":"","topic":{},"language":"English","tournamentID":"aVcqgGmAccQ09iBh9iS1","id":"kfeA59o4MAPD1Xb3dgyz"},{"link":"","round":"7","tournamentID":"YxG2TWeoQ8BT0rpxmfxT","topic":{},"division":"","content":"The 2018 FIFA World Cup champions, France, won the tournament with an ethnically diverse team who could trace their origins to Guadeloupe, Algeria, Guinea, Mali, French Guiana, Dr Congo, Martinique, Morocco, and Senegal. Motion:THBT colonial states that directly benefit in sports from the integration of athletes with roots to former colonies, should actively pay dividends to these former colonies, separate from existing financial obligations.","language":"English","infoSlide":"","id":"kgI2h6QRCaHAKuR2jOuc"},{"link":"","language":"English","infoSlide":"","content":"This House Would force individuals suspected of being a \"stolen child\" under the junta to undergo DNA testing to establish whether they are indeed stolen children.","tournamentID":"YF6iuqxO6eUISnAz4iMp","round":"ESL_Quarter","topic":{},"division":"","id":"khRoC1SxiESkT8xgSr1m"},{"division":"","content":"THW focus on adapting to the consequences of climate change rather than trying to prevent it.","round":"Open_Semi","link":"","infoSlide":"","topic":{},"language":"English","tournamentID":"mf3XudZleydnsr0lEvkg","id":"khuTyaBsM4JyQbSqR692"},{"language":"English","tournamentID":"6KzwZLwpFJv7ICEsknpO","topic":{},"division":"","link":"","round":"7","infoSlide":"","content":"This house believes that Western institutions should neither cooperate with, nor use the data produced by, non-Western medical institutions that do not meet Western standards on human clinical trials.","id":"ki4JgPeLilezjC7d1bpY"},{"language":"English","link":"","topic":{},"round":"2","infoSlide":"","tournamentID":"mBBGfJmUYufw4KNTlYoR","content":"THBT sports leagues with systems of promotion and relegation are good for fans.","division":"","id":"kijRPWNOQK0Vdg2fu2xB"},{"language":"English","tournamentID":"0anPdjjejinL3DGvB4L1","content":"THS the use of the Hannibal Directive in combatting terrorist organisations.","topic":{},"division":"","link":"","infoSlide":"","round":"Open_Quarter","id":"kirS1eqKo0FG3V0CqQ6s"},{"infoSlide":"","division":"","link":"","tournamentID":"rdyGzmsfHNjLJBTBIlbG","topic":{},"content":"Should men be allowed to protest their legal duty to pay child support in writing if their partners decide against getting their written permission for abortion?.","round":"3","language":"English","id":"kjNhYnEP9l3EYMkJUcJi"},{"content":"TH believes that populist parties (such as UKIP, theTea Party Movement and the 5 Star movement) are good for democracy.","round":"4","language":"English","topic":{},"link":"","tournamentID":"o60DawGVHvdGOC58c4vF","infoSlide":"","division":"","id":"kjaC34eHq8KblYr1DfLy"},{"round":"3","tournamentID":"KErVXbqRahyWD7ZB1Q1m","content":"TH regrets the rise of drinking initiations in universities.","infoSlide":"","division":"","language":"English","topic":{},"link":"","id":"kjaeRCKMhWRgs285O6Cq"},{"content":"This house believes that the G20 countries, in order to save the planet from global warming, must adopt more ambitious global CO2 emission reduction targets than those of the Paris Accords.","infoSlide":"","tournamentID":"eQMzhfh3p9amGITvLICM","link":"","language":"English","round":"Open_Final","topic":{},"division":"","id":"kjrunKQPzhqqy73rlaVt"},{"topic":{},"round":"3","infoSlide":"","division":"","language":"English","tournamentID":"98I1jSQnLhtFnsr8fu0R","link":"","content":"THW: Ban Political Opinion Polls.","id":"kk5w1jNWvtRs4vZAiCtG"},{"tournamentID":"jS13nU6Cack3rcPrnNZ5","topic":{},"division":"","language":"English","infoSlide":"","round":"4","link":"","content":"TH, as the parent of a child prodigy, would push that child to maximize its potential.","id":"kkZwvfJJwC7umO0qJDTm"},{"round":"4","tournamentID":"qA0UqqN9np2leDGCNcck","division":"","link":"","content":"TH supports aggressive Palestinian protest (such as property destruction) in illegal Israeli settlements.","infoSlide":"","topic":{},"language":"English","id":"kkqxvwORBaAqU9wB9jk7"},{"tournamentID":"9WoIT6ofG5A9j3MeLxh4","language":"English","division":"","link":"","topic":{},"round":"Novice_Semis","infoSlide":"","content":"This House would allow communities to reduce the amount of policing employed within their neighborhoods.","id":"klwkn1bfS2BelWng3CIt"},{"topic":{},"tournamentID":"6GQGSjlsY612FPwbXRbB","content":"TH Welcomes the advent of extreme genetic advancements for humans.","division":"","language":"English","infoSlide":"","link":"","round":"Open_Final","id":"kmb7LgJVJxYNLS82goAV"},{"division":"","tournamentID":"y0zBNckmXRI4bCqMyXLg","content":"On the condition that gangs fulfil basic social needs (such as basic healthcare, education and sanitation), THW cease to combat the gangs and their trade in favelas.","link":"","language":"English","topic":{},"round":"Open_Final","infoSlide":"","id":"kmsGbt0PolZDfpLsYwdB"},{"content":"THBT the UCI should establish a truth and reconciliation commission to deal with doping in cycling.","language":"English","infoSlide":"","link":"","division":"","tournamentID":"WqsdOIKQnJkQdFDBVNtA","topic":{},"round":"Open_Final","id":"knAfiLKsCIBOkckJ9VJJ"},{"tournamentID":"5ETrS816OeSAWdPhWEHf","topic":{},"division":"","round":"6","infoSlide":"","content":"“THW use Military Force to Remove Kim Jong Il from Power Immediately”.","language":"English","link":"","id":"knPtqnsY6LF9NI2CuEmW"},{"infoSlide":"","tournamentID":"VZL2SmUXq00WGPbW0ZRt","link":"","division":"","content":"THB that majority liberal supreme courts should actively misapply constitutions in order to advance progressive rights.","round":"Open_Semis","topic":{},"language":"English","id":"koSvbBfit9FSjTJeXOmM"},{"link":"","division":"","topic":{},"content":"THW ban religious political parties in secular states.","tournamentID":"wE88mu5ettNTfJEaJQY1","infoSlide":"","round":"3","language":"English","id":"koU3QV5QElmESVqGmdo1"},{"topic":{},"infoSlide":"","round":"Open_Semis","tournamentID":"3Gl2F99bU3ZHa2ZjcrUR","content":"THW privatize Petrobras.","link":"","division":"","language":"English","id":"kpMDdpK1VhtTNgV4S8dO"},{"language":"English","topic":{},"infoSlide":"","tournamentID":"YcxOXVvo0TolX2RquRlw","round":"Open_Final","link":"","division":"","content":"THBT the UK should unilateraly remove all restrictions on immigration from its former colonies.","id":"kqinnOs56ap4G5nESFlX"},{"topic":{},"link":"","infoSlide":"","round":"9","tournamentID":"ZHpmROZ4G7eY4iB9dTsM","language":"English","content":"THW end the use of prisons.","division":"","id":"kqpJbLnry7w9DpWywZ5T"},{"division":"","content":"THBT education systems should actively teach sticking it to the man.","round":"2","infoSlide":"","tournamentID":"XGnGWhzkfstV6wutkTXQ","topic":{},"link":"","language":"English","id":"kqte826dGNHmUgBkTYNA"},{"language":"English","tournamentID":"Kv7YNlz47VitorsH2zY7","round":"5","infoSlide":"","content":"THBT in reducing its budget deficit, Ireland should prioritise cutting welfare to an absolute minimum rather than increasing taxes and cutting services.","link":"","topic":{},"division":"","id":"kqvSqwgiPd8w8Qe01uSJ"},{"tournamentID":"OFi0KPPvhID0XipYIiiD","topic":{},"round":"3","content":"THW take down the Victory Monument.","division":"","language":"English","infoSlide":"","link":"","id":"krFw0dE6l5eaLO66aXZo"},{"round":"ESL_Final","infoSlide":"","content":"This house would prohibit expression that portrays convicted war criminals in a positive light.","language":"English","topic":{},"tournamentID":"t2juKb62UT5HJ0kruUAw","division":"","link":"","id":"krkeha6u7pzc7aLJerc5"},{"content":"THW ban pornography.","link":"","infoSlide":"","tournamentID":"nMUJTA4Krf9MyO7MGVzA","topic":{},"division":"","round":"5","language":"English","id":"ksADBoGsYjywpf7a8dsc"},{"link":"","infoSlide":"","round":"Open_Semis","language":"English","tournamentID":"SYgBNIxUimP727BA2md3","division":"","topic":{},"content":"THW spread asylum seekers over EU countries on the basis of their relative population sizes.","id":"ksGBj32t3NnfwSz3ldKg"},{"language":"English","content":"THS the existence of teleportation.","link":"","round":"2","topic":{},"tournamentID":"pFBjdI3lKCaS5TpjBKVP","division":"","infoSlide":"","id":"ksRDMkO07PxjQSHZswk7"},{"division":"","link":"","infoSlide":"","tournamentID":"m2emSLcIwdpH2tsVpRhp","content":"THP western individualism over local collectivism.","round":"2","language":"English","topic":{},"id":"kspeAZzjJOuXF956gdjD"},{"link":"","tournamentID":"1leOvfvlbNAIDzW6UnkK","division":"","topic":{},"infoSlide":"","content":"THBT science will save us.","language":"English","round":"3.4","id":"kt9TgIRmpylkZziAd681"},{"round":"Open_Final","content":"TH regrets the characterisation of soldiers as heroes.","tournamentID":"iARNjQG0MiYXxp1Qk22E","division":"","topic":{},"link":"","infoSlide":"","language":"English","id":"ktkWy4zNcYrwk6UR6N2T"},{"round":"3","division":"","language":"English","infoSlide":"","content":"THW vote for Obama.","tournamentID":"Y9leM2xAYiRjIMMIqgfX","topic":{},"link":"","id":"kuBN9niwKwVsNTrXQCLV"},{"infoSlide":"","content":"Assuming there are actors who fit the criteria: THIS HOUSE BELIEVES That film directors have a moral obligation to cast actors who share key lived experiences with the characters they play.","tournamentID":"d13kY0BTy5kVOwwqu54R","topic":{},"round":"3","language":"English","link":"","division":"","id":"kuC9itGlrjChoeJQnB90"},{"language":"English","division":"","topic":{},"round":"2","link":"","infoSlide":"","content":"THW ban all private financing of election campaigns.","tournamentID":"V4GiH1luZDgYtx44QdOh","id":"kuWySJBFwq6A8Y8TtTYI"},{"content":"This house would allow juries to decide on sentences.","tournamentID":"JdCT4CooyPOkRsmbNNLg","link":"","division":"","round":"4","language":"English","topic":{},"infoSlide":"","id":"kw6msPTIV4dXTyF0yKBh"},{"language":"English","tournamentID":"e3m3vjjIT1UO4munSqvD","round":"2","content":"In addition to maternity pay and leave, THW make companies finance their female employees freezing of eggs and in vitro fertilization, if they so wish to.","link":"","division":"","topic":{},"infoSlide":"","id":"kwA6vf1rtlcexm2dkybS"},{"tournamentID":"6UClYEkoQLViAru2xei4","link":"","division":"","infoSlide":"","content":"This House regrets mainstream media's popularization of Western drag culture.","language":"English","round":"3","topic":{},"id":"kwC3wYISQnNo1BFXgbxe"},{"language":"English","division":"","tournamentID":"M5Wyeo5Nqh8J5u0z1RQf","link":"","infoSlide":"","topic":{},"round":"Open_Semi_2","content":"THBT whoever controls the past controls the future.","id":"kxMnMCO8fpUEGKkRPVbU"},{"round":"Open_Final","link":"","content":"Should the UN make the knowledge of how to build an atomic weapon available upon request?.","infoSlide":"","tournamentID":"C0blbUxGmaQQTDvvJX6D","language":"English","division":"","topic":{},"id":"kxUeF90lssyrawqH6qtg"},{"topic":{},"infoSlide":"","link":"","language":"English","division":"","round":"Open_Final","tournamentID":"Nzien6R9RXvOTrNMJsza","content":"THBT the environmentalist movement should prioritise the anthropocentrist value of nature in its rhetoric.","id":"kxg92p40slFagDaa8zvm"},{"content":"THBT the UN should hire private military corporations to carry out its peacekeeping operations.","tournamentID":"FaXJZrMIEColDcqtOmli","infoSlide":"","division":"","round":"Open_Semis","topic":{},"link":"","language":"English","id":"kxsTYRowRmd1jvJzIO10"},{"link":"","content":"THBT political parties should actively prohibit candidates with radically different beliefs from running under the party name.","infoSlide":"","tournamentID":"8Vk7pWjDHtGhxQVWidIQ","language":"English","division":"","round":"3","topic":{},"id":"kyWGzjwhdFgsto2vXiRt"},{"division":"","link":"","tournamentID":"nALUKfkpmOnWnQCzecru","infoSlide":"","topic":{"hr":{"title":"Human Relationships","check":true}},"content":"Chúng tôi lấy làm tiếc sự nhấn mạnh về sự lâu dài trong các mối quan hệ.","round":"","language":"Vietnamese","id":"kyw1OWbNTTf6ZGjv03mI"},{"tournamentID":"d0CBbRAyIQhiX69bWaKA","language":"English","round":"4","link":"","content":"THW stop funding all space programs.","infoSlide":"","division":"","topic":{},"id":"kzFt57iD3wTIWo793ZBx"},{"division":"","infoSlide":"","tournamentID":"pp2oK2CPkxitjQPpwO4o","link":"","topic":{},"language":"English","round":"2","content":"THW require superheroes to publicly reveal their identities.","id":"kzSTiqNlUGEZ8dKsyNBd"},{"topic":{},"language":"English","round":"1.2","infoSlide":"","link":"","division":"","content":"Assuming efficacy, THW prefer an internet of no anonimity.","tournamentID":"bvHOR7Oow9PPlKPlA2BT","id":"kzfKyuYvwpPt2tYoIhx6"},{"tournamentID":"ARfoyigbkuieCEyKI1GV","infoSlide":"","division":"","language":"English","link":"","content":"THBT states should grant unconditional asylum to all Syrians.","round":"3","topic":{},"id":"l0SsNFpqS7CkDo6xpgio"},{"infoSlide":"","language":"English","round":"4","link":"","topic":{},"content":"TH rejects the media's intentional humanization of those responsible for heinous acts or crimes.","division":"","tournamentID":"wKhC6L9zPycGKlqYWb6j","id":"l0bRUbtC4f3XHyJLgt00"},{"infoSlide":"","topic":{},"division":"","tournamentID":"KauhYz2zVxnSCnoC8XMr","content":"THBT Pope Francis as the head of the Catholic Church will end up causing more harm than good.","link":"","language":"English","round":"Open_Final","id":"l0khyKnpreb4RywzGD90"},{"infoSlide":"","division":"","content":"THW instate a general pardon to asylum seekers who have lived in the Netherlands for five years as a minor, and for their parents/legal guardians if they are currently still a minor.","language":"English","round":"Open_Final","tournamentID":"2XJwkUOw6JeegMJHT6Hl","link":"","topic":{},"id":"l0px8xoI3RA9MHIDaiyq"},{"division":"","content":"The House does not regret the invasion of Iraq.","tournamentID":"ZqM3Me0eKutOMMTkPwgA","round":"Open_Final","link":"","infoSlide":"","language":"English","topic":{},"id":"l18wPpBHdSyu05dUgWWh"},{"infoSlide":"","division":"","content":"THBT we should fear Google.","link":"","round":"2.2","language":"English","tournamentID":"1leOvfvlbNAIDzW6UnkK","topic":{},"id":"l1PmSiDDnp7A5SFgiCKB"},{"link":"","round":"Grand Final","content":"Chúng tôi sẽ bắt buộc Netflix đặt máy chủ tại Việt Nam.","tournamentID":"FiF24Yc0spiBkvTxiYwD","infoSlide":"","division":"","topic":{},"language":"Vietnamese","id":"l21K5L9jAg7NXhMtIldl"},{"link":"","division":"","content":"THBT WSDC adjudication should switch to a consensus methodology of adjudication.","round":"Open_Final","tournamentID":"sQqCNuWw9nlSsN5agLhC","language":"English","topic":{},"infoSlide":"","id":"l2I0jNp1kpsilsPA3JDg"},{"division":"","language":"English","content":"TH celebrates the decline of American liberalism.","infoSlide":"","topic":{},"tournamentID":"ukcS5bJ2TUuNfMuzta0w","link":"","round":"Open_Final","id":"l2sRLj2ZZfpHi9nX8FRQ"},{"topic":{},"round":"2","division":"","link":"","tournamentID":"m357g5mmEMxSAwbDEk5d","content":"THW remove 'Gone with The Wind' from the National Film Registry.","infoSlide":"","language":"English","id":"l35CfGqWLAsYTdsQKK3R"},{"round":"6","division":"","link":"","topic":{},"infoSlide":"","language":"English","content":"THS comprehensive parental leave paid for by employers.","tournamentID":"7zFzGfa6wAGs2h8bbVhq","id":"l3ciZx9ideeRWYKXXQ7H"},{"tournamentID":"DWR60IgakRS9N3GeNemc","round":"Open_Semis","content":"THR the Euro.","link":"","infoSlide":"","topic":{},"language":"English","division":"","id":"l4aNCwYjXcLuF49v9RMp"},{"tournamentID":"nXN2yUG7soxwCp4xidzj","link":"","topic":{},"round":"8","language":"English","content":"This house, as the GOP establishment, would prevent Donald Trump from receiving the nomination in a contested convention even if he receives the largest share of delegates - Round 8.","infoSlide":"","division":"","id":"l5eAOLIMknIm6rFn0bf2"},{"language":"English","division":"","infoSlide":"","content":"THW legalise the buying and selling of sexual services.","round":"3","tournamentID":"iARNjQG0MiYXxp1Qk22E","link":"","topic":{},"id":"l6mKKCf0JhYGhyGD1vdk"},{"topic":{},"round":"1","infoSlide":"","division":"","content":"THW build social housing in high-wealth areas.","language":"English","link":"","tournamentID":"4V6pb0chg0WcRQyc6Zde","id":"l79awM8SQtyTcWIwDz9l"},{"topic":{},"tournamentID":"oVagPVQLXErhZIkOTqQn","infoSlide":"","language":"English","round":"2","content":"THBT African countries should adopt English as the principal language of instruction in schools.","division":"","link":"","id":"l7Hbr2yYrezsS3xDIvYM"},{"content":"THBT the US and the EU should support a Russian annexation of Crimea in exchange for an otherwise independent Ukraine.","language":"English","round":"4","division":"","infoSlide":"","tournamentID":"lM9u9z6CfHfA9HPucSIT","topic":{},"link":"","id":"l7WB4uQqMIdLBLpye4C7"},{"division":"","tournamentID":"LuNDiT9YYZhQScUmMX82","infoSlide":"","link":"","round":"5","language":"English","topic":{},"content":"THBT government regulation agencies should be allowed to break up banks, like Goldman Sachs, JP Morgan Chase and HSBC, that are deemed ’too big to fail’.","id":"l7sKEj035P46gcEVGZMR"},{"tournamentID":"1qq9g2ApB8UdvPr2ewx1","topic":{"irw":{"title":"International Relations/War","check":true}},"link":"","language":"English","infoSlide":"","content":"TH regrets the advent of \"Arab Spring\".","division":"","round":"","id":"l8U7NQrbP8VDRIbg0ixk"},{"topic":{},"link":"","language":"English","division":"","content":"THP a world in which social media companies use FB’s policy regarding political advertisement rather than a world in which they use Twitter’s policy.","round":"2","tournamentID":"g7nlvxejABAgCXhGkJg8","infoSlide":"","id":"l95iE1EYwRoHs2T8rRdR"},{"content":"THO the societal narrative that forgiveness is a virtue.","tournamentID":"Sf5YtAJo1vVmULRLSMAt","infoSlide":"","link":"","topic":{},"language":"English","division":"","round":"3","id":"l9ixfuZdv7aPsEJevJ2h"},{"content":"THW limit government ministers’ standard of living to that of someone on the current median wage.","link":"","round":"ESL_Quarters","division":"","topic":{},"infoSlide":"","language":"English","tournamentID":"zngB1WF8viOW2uGu6swZ","id":"l9ojmDJCojNb82fuGDJ7"},{"infoSlide":"","link":"","tournamentID":"AKtcioaPMHcBM5C3fCCP","language":"English","content":"THW require companies that produce pornography to be run by a co-operative of their female performers.","topic":{},"round":"3","division":"","id":"lA3F25rUCWLIqUD6QmZU"},{"round":"1","link":"","infoSlide":"","topic":{},"division":"","language":"English","tournamentID":"nFlN14QQWlnlNwJKIDru","content":"THW legalise polygamy.","id":"lAEuxpH3olEH548HaB9R"},{"infoSlide":"","division":"","link":"","topic":{},"language":"English","tournamentID":"FIZrOByzWbUCfXyq56hs","content":"THW take away the special protection of marriage from the law.","round":"3","id":"lBs14w1YAjjtNsIdR74C"},{"topic":{},"language":"English","infoSlide":"There is a technology that allows people to create digital sentient clones of themselves. These clones can perform your daily chores (assignments, office work, etc). The clone will be stored in an egg-shaped device, and will have a mind of its own. A corporation mass produces this technology aimed at the working class to make it easily available for them.","link":"","division":"","round":"2","tournamentID":"9yPqE2fe1oaHsd7ankOa","content":"TH, as the working class, supports creating digital clones of themselves.","id":"lBsVsiQK0GtEuQqIRYLO"},{"content":"THW support popular uprisings against dictators even in cases they are lead by Islamist extremist.","topic":{},"tournamentID":"18IIGMrqE33YyULmp5EY","link":"","division":"","round":"Open_Final","infoSlide":"","language":"English","id":"lCpVl9RvH662MMQr5tUP"},{"language":"English","link":"","tournamentID":"QDGMrdrzlFCxVT5WcqNn","topic":{},"content":"This house would abolish the Second Amendment.","round":"Novice_Final","division":"","infoSlide":"","id":"lDT6pWUnQcUxmJzWzCKF"},{"round":"6","division":"","tournamentID":"IgBrZRMArYLwB0oVtcRa","link":"","language":"English","topic":{},"infoSlide":"","content":"TH Regrets that South Africa did not turn Omar Al-Bashir over to the International Criminal Court.","id":"lDcils1JLCOFlESgKQbU"},{"infoSlide":"","content":"Chúng tôi tin rằng các chính sách về kinh tế nên được quyết định bởi một hội đồng chuyên gia thay vì các chính trị gia.","language":"Vietnamese","tournamentID":"CbtTNoNzLTvfNvRWmMc2","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"link":"","division":"","round":"","id":"lESHgSOjBLGitKdlSuSH"},{"round":"Novice_Final","infoSlide":"","link":"","topic":{},"content":"With the goal of improving representation in media, this House would create original characters who belong to underrepresented groups, rather than re-imagine existing characters.","language":"English","division":"","tournamentID":"wLO2B4MufJ4R3qOzUGM8","id":"lGZ96DG7EXrxNSRarXp3"},{"infoSlide":"","content":"THW replace the three-tiered education system with one common high school.","tournamentID":"EdTnzchhKzipTBRxQvXJ","language":"English","round":"3","link":"","division":"","topic":{},"id":"lHaxMHemwrlKiaNYXCwF"},{"content":"THBT multinational companies should be liable for human rights abuses that occur anywhere in their supply chain.","link":"","round":"EFL_Final","language":"English","division":"","infoSlide":"","tournamentID":"pvKZkg6sqicG5nXA2mvY","topic":{},"id":"lIqArtzZ5tpolCYoHTPL"},{"tournamentID":"9hmPqfKzlDmhAISeJsts","topic":{},"division":"","infoSlide":"","link":"","content":"thw implement mandatory paternity leave for new fathers.","round":"1","language":"English","id":"lKFhimbhj4rk6gTSCYUe"},{"content":"THBT the beauty industry has done more harm than good.","division":"","link":"","tournamentID":"IpxNM87k556VVsS2JAPu","language":"English","topic":{},"round":"Open_Final","infoSlide":"","id":"lKMLxYmSaiKfqP6JtafB"},{"tournamentID":"4NEhQx2m4XcXy6SxnoqS","content":"THW continue the European Football Championships with 16 participating teams.","division":"","language":"English","topic":{},"link":"","infoSlide":"","round":"3","id":"lKWskgD4yTIK7pm6Z7CU"},{"infoSlide":"","round":"Open_Final","link":"","division":"","content":"THR the narrative that forgiveness is a virtue.","topic":{},"language":"English","tournamentID":"SGpBjVPnJkFrJB0hnxYv","id":"lKhFWPGpJXxb71XSeS9G"},{"tournamentID":"t2juKb62UT5HJ0kruUAw","content":"This House believes that democratic states should own their own broadcasting corporations.","infoSlide":"","link":"","division":"","round":"EFL_Final","language":"English","topic":{},"id":"lKmuBqLDugk1Ay0oCUJ1"},{"language":"English","link":"","tournamentID":"ZQk7wGWckTLOk9Y0j9z4","division":"","infoSlide":"","topic":{},"round":"Open_Octos","content":"THS the use of deep fake technology as a legitimate political tool.","id":"lKwI6IZQpIj8og9vnWXU"},{"infoSlide":"","division":"","topic":{},"link":"","tournamentID":"UefabB9q8iptn7SCi47p","content":"THW allow people to sue partners who cheated on them.","language":"English","round":"1","id":"lL415zJ435rKRBkyyYav"},{"content":"THW never allow prisons to force-feed detainees on hunger strike.","language":"English","link":"","infoSlide":"","division":"","tournamentID":"JzS0MHRn0Mb2AaYiEq5h","topic":{},"round":"2","id":"lLi2eF2f5MdY3SMkRMTG"},{"division":"","topic":{},"link":"","language":"English","content":"This House would allow minors to have sex change operations.","tournamentID":"eypKKJZLZblnh6KffyC5","round":"3","infoSlide":"","id":"lN9qRqJs2Pe4JuBGceZh"},{"content":"THR the rise of mega-cities.","tournamentID":"QZvopTthxxEkyvHXmzp3","topic":{},"language":"English","round":"Open_Quarters","link":"","infoSlide":"","division":"","id":"lNJovwMIOQvJNSwg83iP"},{"round":"1","division":"","tournamentID":"7gnlDrExulbBsH6xw0jx","topic":{},"infoSlide":"","content":"THW introduce special schools for LGBTQI.","language":"English","link":"","id":"lNU1UraH7T18TmsM3sAu"},{"link":"","topic":{},"division":"","language":"English","content":"This house would require companies to provide economic compensation & job retraining to those unemployed by the automation of their work.","infoSlide":"","tournamentID":"4PekAtlXMCWdSTTJuMol","round":"2","id":"lOGhfD2VcKtBuxdBzxZZ"},{"topic":{},"content":"THW not give religious identity the same level of anti discrimination protection as other protected attributes (race, gender, sexuality).","link":"","language":"English","round":"4","division":"","tournamentID":"e3m3vjjIT1UO4munSqvD","infoSlide":"","id":"lOWKIfZSPEV9kMmQTHrB"},{"topic":{},"link":"","division":"","infoSlide":"","tournamentID":"FYOADGgnZTJQdU2kOcYb","language":"English","round":"4","content":"THBT Asian countries should pivot away from US and seeker closer ties with China.","id":"lOZ9jckxd9e2epZzEd2A"},{"topic":{},"infoSlide":"","tournamentID":"mkrRVvz5EWSZie6LBtCH","round":"Pre Quarterfinals","content":"Chúng tôi phản đối niềm tin vào \"nửa kia định mệnh\" trong tình yêu.","language":"Vietnamese","division":"","link":"","id":"lPTtcCmKepluTKfcBVuR"},{"infoSlide":"","content":"This House Would end all state financial support to religion.","division":"","topic":{},"link":"","language":"English","tournamentID":"YaTXOaEvPKh8XHB3VTBK","round":"1","id":"lPc09Tk3k4B4xa5lVZkE"},{"infoSlide":"","language":"English","division":"","round":"2","content":"TH regrets the 2001 Afghanistan invasion.","link":"","topic":{},"tournamentID":"6CH8DHWUbQKOjMDFTgFX","id":"lQucWLMvrzp0Iug6bAbG"},{"content":"THBT there should be no limit on self-defence against violent crimes.","language":"English","round":"1","tournamentID":"zm3L9uKWbGV2QY1WRlcJ","link":"","infoSlide":"","topic":{},"division":"","id":"lR4v0HqeNp1ymod5lxlR"},{"language":"English","infoSlide":"","topic":{},"content":"THBT scholars who study under-represented groups in history should emphasize their contribution to events that are commonly considered historically significant, rather than studying the history of those groups’ contributions to their own societies.","division":"","round":"Open_Final","tournamentID":"i3UU49z9MRO6phe9r1BH","link":"","id":"lRP2u7tavfS0ciH57gQL"},{"infoSlide":"","topic":{},"tournamentID":"SGpBjVPnJkFrJB0hnxYv","division":"","link":"","language":"English","content":"In cities and areas with rapidly increasing housing costs, THW tax new residents and use the revenue to subsidize housing costs for citizens already residing in the area.","round":"Open_Semis","id":"lRUW1GPDRliP4BXFTB2z"},{"infoSlide":"","language":"English","link":"","topic":{},"content":"TH, as a feminist, would marry a closeted homosexual in order to help him keep his sexual identity secret.","round":"3","tournamentID":"jHRVS3aznjPPQaxWT8bs","division":"","id":"lRkwFZLfABhHApZcHnB6"},{"round":"","division":"","infoSlide":"","language":"Vietnamese","content":"Giả sử chúng ta sống trong một thế giới có siêu anh hùng, chúng tôi sẽ yêu cầu tất cả các anh hùng tuân thủ pháp luật.","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"tournamentID":"37eWQ7OoHqsPgaN53lHV","link":"","id":"lRr9SNZpaKsHGXJcjPXZ"},{"link":"","topic":{},"content":"TH would require all defendants in criminal cases to be represented only by state-employed lawyers.","round":"Open_Semis","language":"English","infoSlide":"","division":"","tournamentID":"WqXUc7EMDvkqqg3BVCtf","id":"lT8ZLeaHiIKUskKoetSr"},{"infoSlide":"","content":"THW ban religious organizations from providing rehabilitation services to drug and alcohol addicts.","round":"1","topic":{},"language":"English","division":"","tournamentID":"BXqPhfwak2R1kYHV48bp","link":"","id":"lTIqjwrOEVxRSJZC8E5J"},{"tournamentID":"FcQa3EO91Xucj4ACR1Wb","division":"","link":"","infoSlide":"","content":"THW allow victims to significantly reduce the sentence of their wrongdoers.","topic":{},"language":"English","round":"3","id":"lVCQKwZS1EsKvcWbvrdq"},{"topic":{},"division":"","tournamentID":"iebTUsXIgV5US8LjoNw7","link":"","content":"THR the narrative that soldiers are heroes.","round":"Open_Final","infoSlide":"","language":"English","id":"lVrILfL5p80R4N17c0y6"},{"tournamentID":"TXUiH5ezPBItq39Het98","round":"Open_Semi","division":"","link":"","content":"This House Supports the rise of atheist movements in Southeast Asia.","topic":{},"infoSlide":"","language":"English","id":"lWs0QPJruzk36SD88hLe"},{"link":"","language":"English","infoSlide":"","content":"THS the objectification of men by women in popular media.","round":"2","topic":{},"division":"","tournamentID":"0NYsqnVN9ZPLLJvXAZdI","id":"lWy2dxcQnZSYssXElxlj"},{"content":"THBT the State should have no role in the recognition of marriage.","division":"","tournamentID":"riEZk6ypdW0s5dnVIggc","round":"Novice_Final","infoSlide":"","language":"English","link":"","topic":{},"id":"lXCYvMSYw3O3zn4KcZ9r"},{"division":"","content":"THW close the military academy.","round":"1","topic":{},"tournamentID":"5YavcNMFjpdq8R1u3M2H","language":"English","link":"","infoSlide":"","id":"lXJK1TZ0wAgpoYFZkTG5"},{"round":"","tournamentID":"37eWQ7OoHqsPgaN53lHV","topic":{"irw":{"check":true,"title":"International Relations/War"}},"content":"Chúng tôi tin rằng, quốc gia đầu tiên sản xuất thành công vắc xin Covid-19 phải cung cấp miễn phí công thức cho toàn thế giới.","language":"Vietnamese","division":"","link":"","infoSlide":"","id":"lXuZepOlOGWUoJynoWJY"},{"division":"","content":"This House Believes That Mexico Should Allow Neighbourhoods And Cities In North Mexico To Form Armed Militias In Order To Combat Drug Cartels.","link":"","topic":{},"tournamentID":"RpQnqbHAxB8fhWBQcnaj","infoSlide":"","round":"5","language":"English","id":"lYCEUrUlirlx2gEblGhG"},{"content":"THW require students from public schools or state universities to work in their country of origin for a number of years after graduation.","tournamentID":"DxF0p5X2fi9LhbzCFGTd","infoSlide":"","link":"","language":"English","division":"","round":"1","topic":{},"id":"lZ1yYX4s2HHjFiTJSDTY"},{"link":"","tournamentID":"jQjuYOl7gbKBTiUrvWM2","topic":{},"division":"","round":"Open_Semis","content":"THW impose sanctions on Erdogan's AKP government.","language":"English","infoSlide":"","id":"lZ78tTYtrsnVYSLxGGVo"},{"division":"","tournamentID":"LlsxibXteGBGML9aitY2","language":"English","topic":{"publicHealth":{"title":"Public Health","check":true}},"content":"Chúng tôi ủng hộ chính sách ngoại giao khẩu trang của Trung Quốc.","round":"","link":"","infoSlide":"\"Chính sách ngoại giao khẩu trang\" là việc Trung Quốc phân phát thiết bị y tế - bao gồm khẩu trang và các vật liệu phòng hộ cá nhân - và cung cấp sự giúp đỡ y tế cho những nước đang đối mặt với đại dịch Covid-19.","id":"lZJ2hLxPFa2QEIqWv8F4"},{"language":"English","round":"Open_Final","content":"Given the ability to carry a full term pregnancy in an incubator. THBT humankind should seek to abolish natural pregnancy.","tournamentID":"vY2MtSrfiAgUKzGbzzMm","infoSlide":"","division":"","link":"","topic":{},"id":"laaGSWg5rH2i610n9Fkp"},{"division":"","infoSlide":"","tournamentID":"MgpFX31hoBasrUiOV7Eu","topic":{},"round":"5","link":"","content":"THBT secondary education (ages 10-18) should focus on preparing students for local workforce needs rather than focusing on well-rounded basic education (i.e. mathematics, literature, physical and biological sciences, art, history).","language":"English","id":"laur4FYZwwZ941YMtyYN"},{"division":"","language":"Vietnamese","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","round":"","content":"Chúng tôi tin rằng các công cụ tìm kiếm chính thống nên từ chối hiển thị các kết quả có nội dung phân biệt giới tính, chủng tộc hoặc các nội dung phản cảm khác.","link":"","topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"infoSlide":"","id":"lbhCAhAZ5bHSkpYaoVdz"},{"language":"English","round":"Open_Final","tournamentID":"Xt0UV62VgaP360hvHqWG","content":"THB the state should actively prosecute sexist and misogynist remarks..","division":"","link":"","topic":{},"infoSlide":"","id":"lcBSHP5idQCuPJztiGwD"},{"tournamentID":"SE4KfMNAU58WSM6yajEF","infoSlide":"","language":"Vietnamese","division":"","content":"Chúng tôi sẽ tạo ra một kỳ thi đại học mà ở đó thí sinh chỉ cần đủ điểm sẽ có thể học đại học, bất kể tuổi tác.","topic":{},"round":"1","link":"","id":"lcK3Zfh7o2Xe164DX4yN"},{"content":"THBT in the event of Scotland voting for independence in 2014, the governmental authorities of the North of England should petition the Scottish government for membership of the new Scottish state.","language":"English","round":"3","link":"","division":"","topic":{},"tournamentID":"YktmX9iQ8HNzyE1aE4yf","infoSlide":"","id":"ldsAXr9TBU0oOG79zkhZ"},{"division":"","language":"English","content":"THW abolist Canadian content requirements.","link":"","topic":{},"tournamentID":"ovD89w3g4H3GjEFmXcRL","round":"5","infoSlide":"","id":"ldsr6VglanZ3Cw7xk8Po"},{"tournamentID":"jQjuYOl7gbKBTiUrvWM2","infoSlide":"","link":"","division":"","topic":{},"content":".","round":"5","language":"English","id":"ldylByn8tZrENMKnRXuG"},{"language":"Vietnamese","division":"","infoSlide":"Bối cảnh: Bạn là một người tài năng thuộc tầng lớp trung lưu đang ở độ tuổi 20-25 chuẩn bị lập nghiệp. Bạn có quyền lựa chọn giữa một công việc mà bạn sẽ kiếm được nhiều tiền và làm việc nhiều giờ (ví dụ: nhân viên ngân hàng đầu tư, luật sư công ty, v.v.) và một công việc trả lương thấp hơn nhưng bạn đam mê hơn (ví dụ: nhân viên xã hội, đầu bếp, giáo viên, chủ doanh nghiệp nhỏ, v.v.)","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","link":"","round":"Grand Final","topic":{"fiction":{"title":"Fiction","check":true}},"content":"Chúng tôi sẽ lựa chọn nghề mà mình đam mê.","id":"leC7lSzyTn0SthRDQXIy"},{"tournamentID":"n7qv29PmNuF5SOe42oiz","division":"","content":"That we regret narratives of deference to the elderly (e.g. \"older people are more experienced\").","round":"Open_Quarters","language":"English","topic":{},"infoSlide":"","link":"","id":"leOoVz6GFGYvyYPyAXX7"},{"round":"ESL_Final","content":"THBT western nations should support breakaway states in former Soviet Union (e.g. East Ukraine or South Ossetia) after free and fair referendum.","infoSlide":"","tournamentID":"UfGg9gZEXlU744RWE1Y1","topic":{},"link":"","language":"English","division":"","id":"leg1B9Jz0gR0KabpdajG"},{"topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"division":"","language":"English","link":"","tournamentID":"KE7jdAyW9az9nKVb9FMV","round":"","infoSlide":"","content":"THBT the rise of social media as a primary source of news distribution has done more harm than good.","id":"lf4X7IZUsLNOd3NT9ygQ"},{"division":"","topic":{},"tournamentID":"h2z0CGY0CzqfLCKUb3wz","content":"THBT the government should not promote home ownership.","round":"4","link":"","infoSlide":"","language":"English","id":"lfBTxDp87rBvoQPdAsPr"},{"round":"5","link":"","infoSlide":"","content":"This house believes that environmental movements should support climate engineering that fundamentally alters the environment in an attempt to combat global warming.","division":"","language":"English","topic":{},"tournamentID":"kqAjVyDOCBYWRYze158e","id":"lfV0i4n1P8tGNBrRLP9S"},{"language":"English","link":"","content":"THW allow international commercial surrogacy.","round":"2","topic":{},"division":"","infoSlide":"","tournamentID":"LuNDiT9YYZhQScUmMX82","id":"lg9IGzvJ2vouwxYyvU52"},{"content":"TH prefers religions that teach that people are inherently good to religions that teach that people are inherently evil.","division":"","topic":{},"round":"Novice_Finals","link":"","infoSlide":"","tournamentID":"ZvEJb11Ww6RpoVmg4QV3","language":"English","id":"lgeZuAXSBKByvjIYRmCd"},{"tournamentID":"Ke3vqa3ZpQMmG6mDtn1z","topic":{},"language":"English","round":"Open_Quarters","division":"","infoSlide":"","content":"In areas with high crime, this house would impose a curfew on men.","link":"","id":"lgvommqLsmFP2TFHrlGO"},{"content":"\"THW Introduce Sex-Affirmative Action for Corporate Executives\".","tournamentID":"0aaiP0hS7LLjh0VVpofG","link":"","infoSlide":"","round":"7","language":"English","division":"","topic":{},"id":"lh9AlLxQRxpCKmCHTgUx"},{"infoSlide":"","round":"4","division":"","content":"THW pay poor people to not have children.","tournamentID":"V8KRgdahxIEUYFHrRWYb","link":"","topic":{},"language":"English","id":"lhErl8EB0Pa6p9Bhzpd0"},{"division":"","infoSlide":"","language":"English","round":"2.2","link":"","topic":{},"content":"That investors should divest from fossil fuel companies.","tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","id":"lhMeA4yh68u4IRp8VqCv"},{"tournamentID":"ODzhGSyV71DaUGhZEWGT","language":"English","topic":{},"link":"","content":"THW require that Roma children be sent to state boarding schools.","division":"","infoSlide":"","round":"3","id":"lhaoei34xSAI6k0JAJcY"},{"topic":{},"division":"","content":"THW offer temporary tax relief to Baltic emigrants coming back home.","link":"","language":"English","round":"4","infoSlide":"","tournamentID":"QVxXxjR8GyCAclYLIVU9","id":"li6DBtJ9FC4maz4dnI7T"},{"round":"2","content":"THW strongly subsidize and promote feminist pornography.","topic":{},"tournamentID":"aEZUJtwNrlKTdARVPZNh","language":"English","infoSlide":"","division":"","link":"","id":"liG51U5CzpCOCSwL2cNl"},{"infoSlide":"","tournamentID":"3VTSywK012zU6GDLqZzC","link":"","division":"","round":"5","topic":{},"content":"THBT African states should extend dual citizenship status to members of their diaspora, including the right to vote in elections, and right of return, as part of the AU's diaspora initiative.","language":"English","id":"ljdpS8PweyWxnUz5ofCU"},{"round":"Double Octofinals","language":"English","division":"","link":"","content":"THBT democratic states should not own or run media organisations.","infoSlide":"","topic":{},"tournamentID":"XnmecTVfWWNVfWZaANER","id":"lkOcoDQ5kFLtz7E9J7Mx"},{"link":"","language":"English","content":"This house prefers a world where American and Canadian Multi-National Corporations in South America adhere to the environmental and labour standards of their home countries.","topic":{},"round":"Open_Final","tournamentID":"1XSX7FHkgfyCn1pjSqbi","infoSlide":"","division":"","id":"lkQ0YdrbYQlfhY2soDs3"},{"language":"English","content":"After a speaker has been invited, THW allow university students to vote to reject the speaker from coming to campus.","link":"","round":"1","infoSlide":"","tournamentID":"PGbz2bx1wifAEJU64jdo","division":"","topic":{},"id":"lkT650X9cFax1k6Jblpj"},{"infoSlide":"","content":"Should we create a public newspaper?.","division":"","language":"English","round":"Open_Final","topic":{},"link":"","tournamentID":"MULqjXPKLke2z3n3Aafx","id":"lkcM4Ma44oDNyR0O1Vw5"},{"topic":{},"division":"","content":"THB that Western European states at high risk for terror attacks should implement 'state of emergency' laws.","round":"ESL_Final","tournamentID":"6KzwZLwpFJv7ICEsknpO","language":"English","infoSlide":"","link":"","id":"ll0l4M8BQTpIx7chPueh"},{"division":"","round":"4","language":"English","content":"THW allow the parliament to pass retroactive laws with a 2/3 majority.","link":"","infoSlide":"","tournamentID":"lleJhm2ki2Ixm97fXI7b","topic":{},"id":"llFUOHN5jX1Yk2PPPW2E"},{"link":"","topic":{},"division":"","content":"TH, as a high profile Kosovar football player, would choose to play for a national team fully recognised by FIFA instead of Kosovo.","round":"Open_Final","tournamentID":"ehtU8lykIOIyhZiaczym","infoSlide":"","language":"English","id":"lleW30ZFHg42azmEH2EU"},{"content":"THO the \"Toxic Positivity\" culture.","link":"","infoSlide":"","round":"ESL_Final","language":"English","division":"","tournamentID":"Te8CYa0tImwgHXE99O7W","topic":{},"id":"lluTjltDPVHlaOAjE1CE"},{"division":"","link":"","tournamentID":"WfHILzlB4oGzI34Iwqaw","content":"THW ban funding by third parties of tortious lltigiation.","topic":{},"language":"English","round":"3","infoSlide":"","id":"lmGUYeMMlWYlhH9FYOaC"},{"infoSlide":"","tournamentID":"I4LkoGhDJmtXsINMJVjW","topic":{},"content":"Chúng tôi tin rằng chính phủ nên cho phép những người lao động nhập cư mà không phải công dân chính thức được bầu cử ở cấp độ quốc gia và địa phương.","link":"","language":"Vietnamese","division":"","round":"4","id":"lmVDn1kQ0cFZWdOxCkrQ"},{"topic":{},"infoSlide":"","division":"","content":"THP a world where the legacies of radical revolutionaries are glorified over the legacies of peaceful revolutionaries.","link":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","language":"English","round":"3","id":"lmryPuf6gUDmwEWrlb3a"},{"link":"","language":"English","content":"esta casa dejaría en manos de los ciudadanos, a través del voto directo en referendos.","division":"","tournamentID":"yFALyexswW7KtxRDS4He","topic":{},"round":"Open_Semis","infoSlide":"","id":"lmyzbgTRPevlA63npz3b"},{"language":"English","round":"Novice_Final","tournamentID":"8Vk7pWjDHtGhxQVWidIQ","content":"THBT all national economic policy (taxation, monetary policy, tariffs, etc) should be set by an appointed panel of economists rather than by elected officials.","topic":{},"link":"","division":"","infoSlide":"","id":"lnsNlAz5oduanpky8McU"},{"division":"","tournamentID":"yrT248aRWPJC4Vb6MsRt","content":"Where a suitable job is available in an individual's country of origin, THW require anyone wishing to emigrate to first repay the state the cost of any government services they have received to that point.","round":"Open_Final","link":"","topic":{},"language":"English","infoSlide":"","id":"loH9bRfXc7S58Q9TOtoe"},{"language":"English","division":"","tournamentID":"lmRNEraLEkD31bc6Nbnn","topic":{},"round":"1","content":"This house regrets the decline of the humanities in higher education.","link":"","infoSlide":"In academic settings, “the humanities” is contrasted with the study of natural sciences, social sciences, and professional training. Core fields in the humanities include: literature, philosophy, history, religion, art, etc.","id":"losxroLNGxyhOJSUEALT"},{"language":"English","division":"","topic":{},"round":"3","infoSlide":"","tournamentID":"7DiEtR3YNKR69fHccj5Y","link":"","content":"THB that MGM Studios should cast a male as the sexual interest of the next Bond film.","id":"lp3hWGqluZ2iJf8uzFm3"},{"topic":{},"tournamentID":"Ben6dcgLsdnzfbpJrHhp","content":"Murray Edwards, Newnham and Lucy Cavendish. 1,100 out of 17 000 students in women-only colleges (6%). In the university as a whole, the ratio of women to men is roughly 50:50. Motion: This house, as the University of Cambridge, would abolish women-only colleges.","language":"English","link":"","round":"4","division":"","infoSlide":"","id":"lpj0C6xs8N8PpLwfaN3e"},{"content":"THW abolish the federalist system in Germany.","link":"","division":"","round":"Open_Final","infoSlide":"","tournamentID":"SYgBNIxUimP727BA2md3","topic":{},"language":"English","id":"lqIqpEafsk2mFPV9AAEq"},{"tournamentID":"mHdtWLh0RKp035BRFblm","round":"4","infoSlide":"","language":"English","division":"","content":"THW hold a referendum on the death penalty.","topic":{},"link":"","id":"lqQ9LUeeNNhRZRNHqVas"},{"division":"","language":"English","tournamentID":"nXN2yUG7soxwCp4xidzj","link":"","content":"TH, as an embattled ruler (in Westeros), would arm religious fanatics in order to bolster your rule - Round 4.","infoSlide":"","topic":{},"round":"4","id":"lqQGsmVX1YYaLlPkzzuJ"},{"division":"","round":"Open_Octa","link":"","topic":{},"tournamentID":"oaIuwyOX7NBIwaiSaVJ8","infoSlide":"","content":"That as the Global Feminist Movement we would support anti-capitalist movements (Occupy Wallstreet etc).","language":"English","id":"lqcFNcH4pX3zonpYeIRY"},{"topic":{},"round":"Open_Semis","infoSlide":"","link":"","division":"","language":"English","content":"In cases where a supreme court would currently rule on the compliance of a given law with a constitutional provision, THW hold a public referendum on whether to abandon that constitutional provision.","tournamentID":"MIrEXPHnAIOpqQw6kxky","id":"lqdajjYpmXv5NToHRxSc"},{"topic":{},"round":"Open_Final","tournamentID":"pq9R1PqBqzQNX8jAplt5","link":"","division":"","infoSlide":"","language":"English","content":"This house believes news media in Pakistan, should not invite imans to comment on political issues.","id":"lqz8B9oEUtPeBf2Vsfi4"},{"tournamentID":"4ptLj1Lmq40xJg12oRVd","language":"English","content":"THW use public referendum to decide whether to give amnesty to whistleblowers.","division":"","link":"","infoSlide":"","topic":{},"round":"4","id":"lrDvOcsvO5BlXHu8z6zZ"},{"round":"ESL Semifinal","topic":{},"tournamentID":"d13kY0BTy5kVOwwqu54R","infoSlide":"","language":"English","division":"","link":"","content":"THW Introduce a system of tradable quotas for asylum seekers in the European Union.","id":"lrIRfiXlnePwrwPluucj"},{"content":"This house believes that presidential primaries in the United States should be placed on the same day.","link":"","language":"English","round":"6","topic":{},"infoSlide":"","division":"","tournamentID":"AbrZ6leGJBXAmv4md2Zw","id":"lridMp3RqGEl4NiiZdMY"},{"tournamentID":"znXRdnU2llK8fXmHlci5","language":"Vietnamese","infoSlide":"","content":"Chúng tôi tin rằng các phong trào nữ quyền nên ủng hộ quan niệm cho rằng \"vẻ đẹp không quan trọng\" hơn là quan niệm cho rằng \"tất cả cả các cơ thể đều đẹp\".","division":"","link":"","topic":{},"round":"2","id":"lsApZVvHbDOSgS7pzmun"},{"language":"English","topic":{},"link":"","division":"","round":"4","content":"This House, as a Pacific island state, would reject Chinese developmental assistance.","infoSlide":"","tournamentID":"oFJV1Acc1Gr7t6B77LSK","id":"ltJ2EMtXKfV91Y7NElYo"},{"infoSlide":"","division":"","topic":{},"tournamentID":"D6zNi4CBrpZnwXUgBuKG","link":"","language":"English","content":"That academic social science departments should make active efforts to hire faculty that do not have progressive beliefs.","round":"1","id":"ltVSorK3Cgk6YJ4o0iZV"},{"tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","division":"","language":"English","infoSlide":"","topic":{},"content":"That despite the opposition of the Myanmar government the international community should set up a safe haven for the Rohingyas in Myanmar.","round":"4.3","link":"","id":"lvHLbEkKiEMyQB7XcKY5"},{"division":"","link":"","content":"THW ban private financing of election campaigns.","topic":{},"infoSlide":"","round":"2","language":"English","tournamentID":"9wxPRUMGICTUrE7xSaCG","id":"lwQQKpw4WKtuwY4aTIX2"},{"infoSlide":"","topic":{},"tournamentID":"iFjWzR2mR3mBo4zzvGeZ","content":"THW enable directly elected heads of state to, at their own initiative, dismiss government cabinets or their individual members.","division":"","language":"English","round":"Open_Final","link":"","id":"lwXhayoHMwzCl66l5WXX"},{"division":"","topic":{},"tournamentID":"HlR3H86XBK4mqvL9v5HT","link":"","content":"THW measure gross national happiness and base policy decisions on those measurements.","language":"English","round":"2","infoSlide":"","id":"lwvVREV3eDvJcLPGkcc7"},{"round":"4","language":"English","link":"","content":"That we would ban the short selling of shares.","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","division":"","infoSlide":"","topic":{},"id":"lxjME9WAJY9Rlc5SFfN6"},{"round":"2","division":"","topic":{},"infoSlide":"","content":"THBT governments should depopulate areas with few viable economic activities.","tournamentID":"1XSX7FHkgfyCn1pjSqbi","link":"","language":"English","id":"lywgCsl6Fe3KDBk9fDkD"},{"infoSlide":"","topic":{},"division":"","link":"","content":"THBT developing countries should collectivelly agree to radically redistributive tax policies.","tournamentID":"c74XLjeeNJzVbzpMjGlo","round":"2","language":"English","id":"lzsBKm8AE4uewxM9B91G"},{"division":"","content":"THW ban cash in the developed world.","infoSlide":"","language":"English","link":"","round":"Open_Final","topic":{},"tournamentID":"hfhyqiLO3boM6Fbp0Jvs","id":"m0d18hMAkyAqnzUhzGBN"},{"topic":{},"language":"English","round":"Open_Semis","link":"","infoSlide":"","content":"THBT American politicians should not use the language of American Exceptionalism.","tournamentID":"bmpPSwtqn5KEm26j6EB7","division":"","id":"m0gP0ELT9QRoLa5AHbIJ"},{"tournamentID":"DXCgscK3BkzAJGRnyZpD","infoSlide":"","division":"","round":"Novice_Final","language":"English","link":"","topic":{},"content":"THW only allow those who pass a political awareness exam to vote.","id":"m1SeRRixRpN9WdTuKsvl"},{"content":"After a military intervention to bring down a dictator, THW put a new dictator in place who is the best possible candidate.","division":"","infoSlide":"","link":"","topic":{},"tournamentID":"DpY0fOiqQ2FcccIfvmaH","round":"Open_Final","language":"English","id":"m2H2oSfoyaF9iC1QAPHs"},{"round":"4","division":"","topic":{},"infoSlide":"","content":"THW only allow European firms to sell weapons in the EU.","language":"English","link":"","tournamentID":"xDKR551AqNCcautWV6YI","id":"m2Vf5LDaLWcen4BWMOGQ"},{"language":"English","infoSlide":"","tournamentID":"wKhC6L9zPycGKlqYWb6j","content":"THBT the US should join the Asian Infrastructure Investment Bank.","link":"","topic":{},"division":"","round":"5","id":"m3Inbo4FNEEv2FRuyNO5"},{"tournamentID":"x0mst3SfcsgMKKZ3eg7G","link":"","division":"","infoSlide":"","round":"Open_Final","language":"English","topic":{},"content":"TH believes that feminists should oppose capitalism.","id":"m3KKGRvnC9i3yPqLvLeN"},{"link":"","round":"9","content":"TH, as a medical professional employed by the US military or security sevices, would, and would encourage others, to refuse orders to provide medical treatment to individuals undergoing 'enhanced interrogation techniques'.","tournamentID":"q7pvo4zkG31lg89ofmeq","division":"","infoSlide":"","language":"English","topic":{},"id":"m42CBgl4RxFVRatnQdG4"},{"link":"","content":"THW ban tithing - Round 5.","division":"","round":"5","language":"English","topic":{},"infoSlide":"","tournamentID":"Ryhdb4JOJYP96e5oa49b","id":"m6FAhyENuq10ujEi0onH"},{"language":"English","link":"","round":"3","infoSlide":"","topic":{},"division":"","content":"THR the rise of dating and other websites that allow individuals to rate others based on past romantic interactions (e.g. Lulu).","tournamentID":"KUgzKY5FHtox24CaztLJ","id":"m6RgUx8llmrUSOX8eabQ"},{"round":"3","link":"","division":"","topic":{},"content":"Chúng tôi tin rằng ngân hàng nhà nước nên đặt ra trần nợ dựa trên khả năng quản lý dòng tiền thay vì dựa trên mức độ cho vay tối đa của các ngân hàng quốc tế (Ví dụ: World Bank, ADB, ...)","language":"Vietnamese","tournamentID":"i00RSzvK4b1TDEgnpFJd","infoSlide":"","id":"m6cj13ur6EsoThIgyfZA"},{"language":"English","infoSlide":"","topic":{},"division":"","content":"THBT the Trans-Pacific Partnership is in the interests of the small and medium-sized negotiating countries.","round":"5","link":"","tournamentID":"pvKZkg6sqicG5nXA2mvY","id":"m7oWqlN6nF2QMyEhOtiJ"},{"division":"","round":"3","language":"English","topic":{},"tournamentID":"x0AmWHi8lm3JhQyyhsfo","link":"","infoSlide":"","content":"THBT is in China’s interest to shoot down foreign military aircrafts that violate the ADIZ.","id":"m9NueGCJQq7rhFRBczZo"},{"tournamentID":"mzvnxBrGLKyjonGHD82N","content":"THW allow soldiers to volunteer for experimental genetic and physical modifications.","infoSlide":"","language":"English","round":"4","division":"","topic":{},"link":"","id":"m9UZ9d4qXQfe1SOqhgte"},{"round":"8","division":"","topic":{},"language":"English","link":"","content":"THB that governments should never rescue failing private industry.","tournamentID":"gsX4dlvvsr6lcKP3eM2T","infoSlide":"","id":"m9ltJnfzAamrR3EILnZV"},{"infoSlide":"","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"language":"Vietnamese","tournamentID":"nALUKfkpmOnWnQCzecru","round":"","division":"","link":"","content":"Chúng tôi cho phép công tố viên và nạn nhân quyền phủ quyết các thẩm phán đã được chỉ định.","id":"m9zsJqk9RbuCeNxsMo2O"},{"language":"English","tournamentID":"jhyT1LK3YdR0do1cosc6","division":"","infoSlide":"","topic":{},"round":"ESL_Semis","link":"","content":"THBT the Media should not show images of police brutality.","id":"mA7ctIbX9HRrjBu1PRqC"},{"link":"","division":"","topic":{},"tournamentID":"kDr04nbGJ33SICZ9XUHJ","round":"1","infoSlide":"","content":"THW ban industrial action in time of economic recession.","language":"English","id":"mAMxpDh1hBXpDT3T7Que"},{"tournamentID":"inOeJRfxqTpVMfq0i7Ze","content":"This house, as a justice of the US Supreme Court, would not use their position to push their own social agenda.","link":"","language":"English","division":"","infoSlide":"","round":"1","topic":{},"id":"mAQWAFLlN3SnKbLnaVSJ"},{"round":"4","tournamentID":"D8wxxb57dF9p7tV8985s","topic":{},"link":"","infoSlide":"","content":"In areas where hostage taking is a tactic, THW require soldiers to kill squad mates who are about to be captured.","division":"","language":"English","id":"mAXWrzQFt5CYN4hr46qJ"},{"infoSlide":"","tournamentID":"bH0N4QlKzNNQ8zL97OyO","division":"","topic":{},"round":"Open_Semi","language":"English","content":"THR the US-Taliban peace deal.","link":"","id":"mC4f7RwGPeTVpo3UXmwC"},{"round":"Open_Final","topic":{},"link":"","infoSlide":"","division":"","language":"English","content":"THO democracy.","tournamentID":"MIGnM2R39W5ZblVNkRTp","id":"mCOMrAKA0JYlSTy45QRv"},{"link":"","language":"English","topic":{},"infoSlide":"","division":"","tournamentID":"xewLQXUxvfe0Xal1qtHM","round":"Open_Quarters","content":"TH, as Malala, would kill him.","id":"mCv1TvHfF2jKNMDUMRA2"},{"tournamentID":"y7meTgIUCGSo7UqVkUQq","content":"TH supports the rise of sexually assertive female pop stars.","topic":{},"round":"5","infoSlide":"","division":"","language":"English","link":"","id":"mEqNavQ5yhegbKygNsbR"},{"infoSlide":"","round":"4","content":"TH supports the establishment of a gayborhood in Riga.","language":"English","link":"","topic":{},"tournamentID":"ZetjyvhBc3exk1eBvmTd","division":"","id":"mFAZZRbq01C8DuWDWYkA"},{"content":"THW ban private Universities.","topic":{},"infoSlide":"","round":"3","link":"","tournamentID":"av1jBA9UCgf82WNPu88k","language":"English","division":"","id":"mFVnkjQERHX2lfs4a0zQ"},{"topic":{},"language":"English","infoSlide":"Party switching is any change in political party affiliation of a partisan public figure currently holding elected office that occurs outside of the election season.","content":"THW ban politicians from party-switching.","round":"1","link":"","tournamentID":"IXq1CdgyiKmkyEDJURrV","division":"","id":"mFcJ97mDyMcuKCwSwoEw"},{"tournamentID":"2b9xHhyeUjald2Iu585W","infoSlide":"","link":"","language":"English","round":"5","topic":{},"division":"","content":"THB emphasis on the depiction of the \"normal\" female body is no more empowerment than equal emphasis on the \"perfect\" female body.","id":"mFnJTuvYIGuEDfOHymhy"},{"link":"","content":"THW allow adoption agencies to guarantee to biological parents that their child will not be adopted by a same-sex couple.","language":"English","tournamentID":"3dDCV3YYSGl8TNe5f3iO","topic":{},"infoSlide":"","division":"","round":"1","id":"mH6k6pjGXGmA3oxDLb2l"},{"topic":{},"division":"","link":"","content":"This house, as person X, would choose to upload yourself onto the digital afterlife instead of going through with the surgery.","round":"ProAm_Final","tournamentID":"cDgGdE6ESpUqp2A2gVLj","language":"English","infoSlide":"","id":"mHFFanhv4PckdcslA8x1"},{"infoSlide":"","division":"","language":"English","topic":{},"link":"","content":"Assuming the existence of a gay gene, THW disproportionately favour embryos that possess it in IVF.","round":"ESL_Final","tournamentID":"tC9C0k05cAmtT3IBK2AV","id":"mHSTYQ5mVafScjZYIJ4L"},{"topic":{},"infoSlide":"","link":"","content":"This House believes that the State should fund the creation of, and access to, realistic androids that simulate romantic relationships.","round":"3","tournamentID":"1dEXZTvvRtTWhdBLmzFt","division":"","language":"English","id":"mHXLDyCvgfm9gFwPBnCk"},{"round":"1","link":"","language":"English","content":"This House supports the outing of anti-LGBT+ conservative public figures (e.g.: politicians, celebrities).","topic":{},"infoSlide":"","tournamentID":"TXUiH5ezPBItq39Het98","division":"","id":"mJmMODhbkcdquWo9mm3U"},{"round":"Novice_Semi","content":"That we prefer a world where the internet never existed.","topic":{},"tournamentID":"oaIuwyOX7NBIwaiSaVJ8","link":"","division":"","language":"English","infoSlide":"","id":"mJvkz3MfxSzWKBOiKZuV"},{"content":"THW not allow athletes who commit violent crimes to return to their sport upon the ending of their sentence.","link":"","topic":{},"division":"","round":"3","language":"English","infoSlide":"","tournamentID":"y7meTgIUCGSo7UqVkUQq","id":"mJz1ThqYWh5gLF7GWnMN"},{"link":"","topic":{},"tournamentID":"gUFKQBcgvghmUX6k0Dj3","infoSlide":"Given the appropriate resource, Bird’s nest custody is a custody arrangement whereby the child lives in one house, and the parents would take turns living with the child in that house.","round":"4","division":"","language":"English","content":"This House supports Bird’s nest custody.","id":"mLZdyQghliJwDLGqAV6p"},{"language":"English","link":"","infoSlide":"","tournamentID":"Wpv6iXJkIPUXYIkl0dST","division":"","round":"2","topic":{"politics":{"title":"Politics","check":true}},"content":"THBT progressive individuals in weak democracies seeking to improve society should work for corrupt governments.","id":"mM7p2HI669H5TNvFaemc"},{"infoSlide":"","division":"","language":"English","tournamentID":"AbrZ6leGJBXAmv4md2Zw","content":"This house believes that President Obama should pardon those convicted of low level drug possession charges en masse.","topic":{},"round":"1","link":"","id":"mME8aFQdLmM4XguC7fdJ"},{"division":"","tournamentID":"jfv01DUCOrtLcsyMO6qo","link":"","infoSlide":"","topic":{},"language":"English","content":"THS the complete and total liberation of all animals.","round":"3","id":"mMSYWULCaisaQB34cZAT"},{"content":"THW, as Lebanon, welcome significantly greater French influence over its domestic affairs (e.g. political-constitutional arrangements, economic policies etc.).","round":"3","language":"English","tournamentID":"15hrO4GoCxXF2OIdl7fS","topic":{},"infoSlide":"","division":"","link":"","id":"mNNOhtf5fh36WbdZi6vu"},{"tournamentID":"DLFJWaIyHnSlvFofovjc","round":"1","language":"English","content":"THW give parents proxy votes for their children.","topic":{},"infoSlide":"","division":"","link":"","id":"mNXUnqK4tqxklasx1Ldi"},{"infoSlide":"","tournamentID":"FaXJZrMIEColDcqtOmli","division":"","language":"English","link":"","content":"TH supports the recasting of male action heroes and superheroes as female.","round":"3","topic":{},"id":"mNqg3djBxtZY6wQHbBsw"},{"round":"1","infoSlide":"","tournamentID":"QDGMrdrzlFCxVT5WcqNn","language":"English","division":"","link":"","content":"This house prefers a world in which social media costs money to use, but users do not give up the rights to their data, to the current world.","topic":{},"id":"mOBhQQQaTaQBN1oPI0ss"},{"infoSlide":"","language":"English","link":"","tournamentID":"nALUKfkpmOnWnQCzecru","division":"","content":"Assuming feasibility, THW choose to continuously relive the happy moment of one's life.","topic":{"hr":{"check":true,"title":"Human Relationships"}},"round":"","id":"mOoxUOZJHJ6Y97p6XbFd"},{"tournamentID":"IXq1CdgyiKmkyEDJURrV","link":"","division":"","round":"National Final","topic":{},"content":"THBT Wakanda should pursue a policy of globalism (E.g trading with non-African countries as well as African states) rather than pan-Africanism (E.g focusing on helping exclusively African countries).","language":"English","infoSlide":"Wakanda is a small landlocked country in Africa. Millions of years ago, a meteorite made of vibranium, the strongest substance in the universe, struck the continent of Africa, affecting the plant life around it. And when the time of humans came, five tribes settled on it and called it Wakanda. As time passed, the Wakandans used the metal to develop technology that was far more advanced than any other in existence and a cloaking field to protect themselves from the chaos that was slowly consuming the rest of the world… Suppose the world has been made aware of Wakanda’s technological advancement and wealth.","id":"mPFWP3elNGe35ASWiUL0"},{"topic":{},"link":"","division":"","infoSlide":"","content":"THBT when secession referenda are called, the nation that is being seceded from should get a chance to vote the smaller country out.","round":"1","language":"English","tournamentID":"KErVXbqRahyWD7ZB1Q1m","id":"mPim0m8wKdkk1lMdtZll"},{"link":"","language":"English","infoSlide":"","division":"","topic":{},"content":"THB that extreme economic need should be grounds for asylum.","tournamentID":"gsX4dlvvsr6lcKP3eM2T","round":"Open_Semis","id":"mPz6YfX3enn0lFzb6HE8"},{"topic":{},"link":"","content":"THB that LGBTQI activism in countries with strong anti-gay policies does more harm than good.","infoSlide":"","tournamentID":"Xt0UV62VgaP360hvHqWG","language":"English","round":"4","division":"","id":"mQAD4PTFNbd5U91Qpvka"},{"round":"5","content":"TH, as the gay community, regrets the rise of Grindr in western liberal democracies.","division":"","language":"English","infoSlide":"","tournamentID":"FaBy9PfDE8gfy5w00VdM","topic":{},"link":"","id":"mQtT3d9DumhJ6JHhDzhw"},{"topic":{},"language":"English","infoSlide":"","round":"1","link":"","tournamentID":"yIBeLUbSZELobFcw30WY","content":"THW provide free heroin for heroin addicts.","division":"","id":"mR29LSKybnoNPzjsoYH3"},{"topic":{},"round":"1","tournamentID":"UlbXxRnvnqr2PXimcFud","division":"","content":"THW assasinate Bashar al Assad.","infoSlide":"","language":"English","link":"","id":"mRDLAlUWHOnPLjywJjNr"},{"content":"TH, as the WTO, would allow poor countries to establish trade barriers.","topic":{},"round":"4","tournamentID":"SU8WsMguqtUiTUErBeo7","division":"","link":"","infoSlide":"","language":"English","id":"mRLVkFxRFxQHRsN509aC"},{"tournamentID":"X4613Kz1qYjZyFPJzJlB","content":"THW make the number of votes an individual has inversely proportional to their wealth (i.e. the more wealth an individual has the fewer votes in an election).","link":"","infoSlide":"","division":"","round":"1","language":"English","topic":{},"id":"mRc1blVE3tdZEWAfpj50"},{"infoSlide":"","content":"THW prosecute toppled dictators for crimes against humanity in the ICC rather than in a national court or tribunal.","division":"","language":"English","round":"3","topic":{},"link":"","tournamentID":"W9AVDusjw9BvQds3bmVL","id":"mSPCAlALioKwn0t0TN4q"},{"link":"","topic":{},"round":"2","tournamentID":"OAcOsXro6vLkyCebuX4n","content":"THW allow workers to sell employment rights back to their employers.","language":"English","infoSlide":"","division":"","id":"mSnjPaSWxTzJkbPH8bXt"},{"topic":{},"tournamentID":"GfEZYNzXPpqDU3CX6qxi","language":"English","division":"","link":"","content":"TH supports the right of parents of mentally disabled children to medically slow or prevent their physical growth.","infoSlide":"","round":"5","id":"mTiatUI1Ncnpapp3kmla"},{"link":"","topic":{},"round":"2","language":"English","infoSlide":"","content":"THW discourage people with genetic diseases from having children and prioritise them in terms of adoption.","tournamentID":"7lMrN2aiwSzD5rzPFwHz","division":"","id":"mTmx62tOWIKOi5obeHw9"},{"topic":{},"division":"","infoSlide":"","link":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","content":"THO the narrative that refugees' entitlement to help should be conditional upon their potential utility to the economy.","round":"High School Grand Final","language":"English","id":"mWiUgc1tVEtSgMMC6ZKT"},{"division":"","round":"1","infoSlide":"","content":"THW criminalise adultery.","tournamentID":"wn4DAqBcGTWBviyQc0CR","link":"","language":"English","topic":{},"id":"mYMcOlKBeAuZPeJpcJDB"},{"content":"This house would abolish all taxes on inherited wealth.","round":"6","infoSlide":"","link":"","topic":{},"language":"English","tournamentID":"VPUCPVj9FHFW0uzJinv0","division":"","id":"mYbGlivgLjZGSm1F0GxO"},{"link":"","topic":{},"division":"","content":"TH supports the falsification of historical textbooks in order to teach moral outcomes.","round":"Open_Final","language":"English","infoSlide":"","tournamentID":"jiJ3t0fz2aMel6atC1HM","id":"mYztQUGEccaxYKjanPXt"},{"topic":{},"content":"\"THB Enda Kenny's first 9 months as Taoiseach have been a success\".","language":"English","tournamentID":"0aaiP0hS7LLjh0VVpofG","division":"","round":"5","link":"","infoSlide":"","id":"mZOm5nzjDk90L1ADFhJR"},{"language":"English","topic":{},"round":"Open_Semis","infoSlide":"","content":"THW legally define rape as sex without explicit consent.","division":"","tournamentID":"w1cmIhewdRlJLYHGdtbg","link":"","id":"maKGmjTrugr9pXhRX8Av"},{"topic":{},"content":"TH supports Scottish independence.","language":"English","link":"","infoSlide":"","tournamentID":"nFlN14QQWlnlNwJKIDru","round":"Open_Semis","division":"","id":"maSo3ewhVfr26HI7KTQV"},{"tournamentID":"RKQT9j6jX9NRbleAmjmy","language":"English","infoSlide":"","division":"","round":"3","content":"THBT the WTO should allow developing countries to impose tariffs on developed countries.","link":"","topic":{},"id":"maWHfIej82k3wyzps18o"},{"tournamentID":"LRHTkoiYpBfYWWuS1rtT","division":"","link":"","content":"THW require that government ministers be highly qualified and experienced experts in their policy areas.","round":"1","topic":{},"language":"English","infoSlide":"","id":"mbbmnSkVHDg4iC3EV9LN"},{"topic":{},"tournamentID":"7lMrN2aiwSzD5rzPFwHz","language":"English","infoSlide":"","content":"THW build a deathstar.","round":"3","division":"","link":"","id":"mcG7ZIwjwOdZiSDhAIkG"},{"division":"","tournamentID":"WfHILzlB4oGzI34Iwqaw","infoSlide":"","topic":{},"round":"Novice_Final","content":"THW factor public horror into the punishment of a crime.","language":"English","link":"","id":"mdmbGRIA3gSsltFiqKOi"},{"round":"2","topic":{},"division":"","content":"THW ban self-learning sex robots that aim to be highly gratifying and realistic.","link":"","tournamentID":"lpOfAtUfJZtb1VnGzV0G","infoSlide":"","language":"English","id":"me2lrhfVYFgznMn2u97F"},{"topic":{},"tournamentID":"NNES6CXrTQ3wDbdnrNDb","round":"3","content":"TH, being an Italian judge, would convict Berlusconi of abuse of power, corruption and gross negligence and take away all his personal belongings.","language":"English","infoSlide":"","link":"","division":"","id":"meA5sb2EPXWHFtSeafFs"},{"tournamentID":"gUFKQBcgvghmUX6k0Dj3","topic":{},"infoSlide":"Nuôi dạy con cái trong phạm vi tự do dựa trên tinh thần khuyến khích con cái hoạt động độc lập và có sự giám sát mức độ thấp từ bố mẹ. Ngược lại, phương pháp nuôi dạy trực thăng là khi bố mẹ luôn giám sát và bảo vệ con cái trong cuộc sống của chúng.","round":"2","language":"Vietnamese","division":"","link":"","content":"Chúng tôi tin rằng các bậc phụ huynh nên nuôi dạy con cái bằng phương pháp phạm vi tự do thay vì phương pháp trực thăng.","id":"meZqY7H1N53geeqpDszd"},{"division":"","round":"","topic":{"irw":{"check":true,"title":"International Relations/War"}},"language":"Vietnamese","content":"Chúng tôi tin rằng các quốc gia ASEAN nên áp dụng cấm vận lên Myanmar do sự đối xử của chính phủ nước này đối với người Rohingya.","tournamentID":"mNwitMoNsjWupgwG8pR5","link":"","infoSlide":"Hiệp hội các quốc gia Đông Nam Á (ASEAN) là một tổ chức khu vực nhằm khuyến khích sự hợp tác về kinh tế, chính trị và an ninh giữa 10 nước thành viên bao gồm Brunei, Campuchia, Indonesia, Lào, Malaysia, Philippines, Singapore, Thái Lan và Việt Nam. Rohingya là một dân tộc ở Myanmar. Họ chủ yếu sống ở tỉnh Rakhine ở bờ tây Myanmar. Myanmar là một nước có phần lớn dân số theo phật giáo, trong khi đó, người Rohingya hầu hết theo đạo hồi (có số ít theo đạo Hindu). Mặc dù Myanmar ghi nhận 135 dân tộc khác nhau, Rohingya lại là không phải là một trong số đó do nhiều ý kiến cho rằng lịch sử không ghi nhận họ là một cộng đồng bắt nguồn ở Myanmar. Do không được công nhận là công dân, người Rohingya không được sở hữu những quyền cơ bản ở Myanmar và bị coi là vô quốc tịch.","id":"mezs9VW1H4SeJmfysR1n"},{"division":"","link":"","infoSlide":"","tournamentID":"LH17DUUbXDstAFfMNJyf","language":"English","topic":{},"round":"2","content":"TH, in hindsight, would still have fought the 2003 war in Iraq.","id":"mf7666V7UE4dibbI44CT"},{"language":"English","content":"THW teach boys those aspects of subjects which are thought to be most interesting to them, such as military history.","tournamentID":"pLQyWywMwoV4AU3XoFJO","round":"2","division":"","infoSlide":"","link":"","topic":{},"id":"mfDgEfVNGftWwRyTMHTF"},{"topic":{},"language":"English","infoSlide":"","round":"6","link":"","tournamentID":"yxjvIJregbdMEVkOnzCg","division":"","content":"THW hold govrenment officials criminally responsible for severe harm to citizens resulting from grossly negligent public policy.","id":"mfUjgxhYxKtWrMKy4Dit"},{"tournamentID":"irYSGlHj76RukmyCwWOG","round":"8","division":"","topic":{},"language":"English","infoSlide":"","content":"TH would nationalize all nationally systemically important financial institutions.","link":"","id":"mfqHBEoreEMWQDJXbAXb"},{"link":"","content":"THW require policing budgets and policy to be decided by local referenda.","language":"English","tournamentID":"sv4AWOKZYbl1PfCObw21","round":"3","topic":{},"infoSlide":"","division":"","id":"mfxDQ2bNddKUad8D2Wld"},{"language":"English","topic":{},"tournamentID":"HXAIZhpnUdFYuB97wMF8","division":"","round":"2","link":"","infoSlide":"","content":"THW mandate the use of condoms in pornoggaphic movies.","id":"mgTdL9nMnRZcEr5DabJq"},{"topic":{},"content":"Other than a prospective student's net family income, THW remove all social factors (ie, race, gender, disability status) from university admissions' decision processes.","link":"","infoSlide":"","tournamentID":"vURFmLn4wdqX6ZbK0ini","language":"English","division":"","round":"5","id":"mgoGmge57GgAm6QeYifA"},{"round":"2","division":"","infoSlide":"","link":"","content":"That schools should be allowed to expel students who are violent or consistent bullies, even if there is not a school immediately willing to take them.","language":"English","tournamentID":"n7qv29PmNuF5SOe42oiz","topic":{},"id":"mhsuGNDfVpCSxVKnrErx"},{"round":"1","content":"THW ban anyone with a criminal record worth 2+ years in prison from running for political office.","topic":{},"language":"English","infoSlide":"","link":"","division":"","tournamentID":"xewLQXUxvfe0Xal1qtHM","id":"miUmIGuLLH0QL5ChKl4B"},{"language":"English","infoSlide":"","link":"","tournamentID":"WnH3YWwA4xB4HPfqIqea","content":"THO the dominant narrative in popular culture that there exists a soulmate for everyone.","division":"","round":"Novice_Final","topic":{},"id":"mixcmh0WRcEtCk5hTr1s"},{"content":".","language":"English","tournamentID":"mBBGfJmUYufw4KNTlYoR","link":"","round":"Open_Semis","topic":{},"division":"","infoSlide":"","id":"mjRCotQwfTJ1r1zLoAn0"},{"tournamentID":"5ETrS816OeSAWdPhWEHf","content":"“THB Wireless Internet Access Should be a Right not a Privilege”.","infoSlide":"","language":"English","round":"12","division":"","link":"","topic":{},"id":"mjrQLdOugsGfHfxuq7KF"},{"topic":{},"link":"","round":"3","tournamentID":"kFpM1KUkMmDded3L4Zmm","infoSlide":"","content":"This house would allow soldiers to sue their government for negligence.","language":"English","division":"","id":"mkZRQ7YqpdlXXiWc51Tc"},{"infoSlide":"","topic":{},"tournamentID":"mk4ycJh6yz0VDCnkysot","language":"English","round":"4","content":"THW not cooperate with international financial institutions.","link":"","division":"","id":"mka43zKHtk8uvepVLTZL"},{"content":"As Biden’s Administration, THW abide by the US-Taliban Peace Deal.","link":"","topic":{},"infoSlide":"","division":"","tournamentID":"yDvj9tks9IvE2CTAVfzV","language":"English","round":"4","id":"mkiQGfWKxaI9LWiERMOP"},{"division":"","infoSlide":"","content":"THR the rise of anti-establishment candidates within mainstream parties (e.g. Donald Trump, Bernie Sanders, Jeremy Corbyn).","topic":{},"tournamentID":"FaXJZrMIEColDcqtOmli","language":"English","link":"","round":"5","id":"mlgljxqQ9dIspEzele3J"},{"division":"","tournamentID":"b1sXr4qyDgdbj0UNSjmS","content":"THBT videos of graphic terrorist atrocities should not be broadcast.","link":"","topic":{},"language":"English","round":"4","infoSlide":"","id":"mnZe581e49JPHe7seCnf"},{"round":"2","language":"English","tournamentID":"xUGmMsj95M2w5CV6WYVA","link":"","division":"","infoSlide":"","content":"TH, as the Premier League, would require all clubs to field a minimum of 4 English players every match.","topic":{},"id":"mo0d7bPJptxsPT3wop6D"},{"division":"","link":"","round":"5","content":"THBT ASEAN should abandon its principle of non-interference in its member states’ political affairs.","language":"English","tournamentID":"DeCtrDtTjNPkklRZT0x6","topic":{},"infoSlide":"","id":"moDDZBFPYHDWIcKqflsM"},{"infoSlide":"","link":"","language":"English","topic":{},"tournamentID":"OyqUfVFCTQ5A8iecmNK1","round":"5","content":"In post conflict societies, THW grant amnesty to perpetrators of crimes rather than seeking prosecutions.","division":"","id":"mozz8LISAJF4AL8asy6Z"},{"round":"4","topic":{},"content":"THW ban advertising that invoke polishness as a value.","language":"English","division":"","infoSlide":"","link":"","tournamentID":"oeH2vC3Ht09TthfmAx2F","id":"mpKxaehAMnb8b6CITqMw"},{"tournamentID":"b3eMPaD8uywgZW5hZca1","round":"4","link":"","infoSlide":"","division":"","content":"THBT states should aggressively pursue housing policy which promotes racial integration. e.g. through council housing allocations.","language":"English","topic":{},"id":"mpl7bCFXOTscky74AZaC"},{"language":"Vietnamese","tournamentID":"2gsOERqtXqSETJffXbnj","topic":{},"link":"","content":"Chúng tôi tin rằng các quốc gia với dân số già nên tăng số lượng người nhập cư hơn là khuyến khích người dân có thêm con cái.","division":"","infoSlide":"","round":"2","id":"mqGmKdTYH1YxnGyt7LMS"},{"content":"In a world where the technology exists, This House Would erase all the memories of individuals who have committed serious crimes and replace them with a fabricated set of memories, instead of sending them to prison.","round":"Open_Final","topic":{},"language":"English","division":"","link":"","tournamentID":"ShdZSmrzSQfbl0RYDnj8","infoSlide":"","id":"mson3LV7I0BemSzRiri0"},{"round":"2","tournamentID":"tKaZ8QEH0Hjz3Oiknfdr","link":"","division":"","language":"English","infoSlide":"","content":"THW allow companies to include a clause in their employment contracts for women where that woman legally agrees not to get pregnant.","topic":{},"id":"muFrsn00ftYqb7RGgT4s"},{"round":"2","content":"THW block the Security Council as long as the veto power remains available.","language":"English","tournamentID":"6SkyoBySWDSJCqeHrA9S","infoSlide":"","link":"","division":"","topic":{},"id":"muRXS6pNTlfvhHdZnWeU"},{"content":"Chúng tôi sẽ bãi bỏ cơ chế phủ quyết của Hội đồng Bảo an Liên Hợp Quốc.","topic":{},"division":"","tournamentID":"OLVGf3rE3KKirerr2vyk","link":"","infoSlide":" Cơ chế phủ quyết (veto) của Hội đồng Bảo an Liên Hợp Quốc (UNSC) là cơ chế trao cho 5 thành viên thường trực của Hội đồng (Trung Quốc, Hoa Kỳ, Nga, Pháp, Vương quốc Anh và Bắc Ireland) quyền được phủ quyết bất kỳ một nghị quyết nào của Hội đồng. Một nghị quyết sẽ không được thông qua nếu có ít nhất một trong 5 thành viên thực hiện quyền phủ quyết cùa mình.","language":"Vietnamese","round":"Quarterfinals","id":"muReY5OoOsj7nPCizdUv"},{"division":"","infoSlide":"","topic":{},"tournamentID":"0Z9IiWTQjupe7Jbemo9Y","language":"English","link":"","content":"TH is Martin Luther. THW not publish the Theses.","round":"1","id":"muUIJg10z1bihZovNuSF"},{"round":"1","content":"THBT it is legitimate for environmental campaign groups to use ecoterrorism to achieve their goals.","infoSlide":"","tournamentID":"655ljihoF4Mh7lzjZruS","division":"","topic":{},"language":"English","link":"","id":"muVCeYiCIQIcMT5eOjGk"},{"link":"","content":"THW, as a religious leader/group, cease attempts at increasing the number of believers and instead prioritise boosting loyalty amongst adherents to the religion.","infoSlide":"","language":"English","tournamentID":"nALUKfkpmOnWnQCzecru","division":"","round":"","topic":{"religion":{"title":"Religion","check":true}},"id":"mwINfMTt0Hn8WzmNiX2j"},{"division":"","infoSlide":"","language":"English","topic":{},"content":"THBT the West should support a power-sharing deal between the Afghan government and the Taliban.","tournamentID":"JcJtvTXBcNJ3kYX5noH9","link":"","round":"1","id":"mwpCrrPGFOLZBjzm20yK"},{"round":"","content":"THR the notion that \"family love should be unconditional\".","tournamentID":"FZTHJ19pUWQG2SZNeOvr","division":"","topic":{"hr":{"title":"Human Relationships","check":true}},"infoSlide":"","language":"English","link":"","id":"mwyIzbL0t2oS8FxBMVxT"},{"tournamentID":"DfdqiFdfgcruP1pBNiHK","round":"4","infoSlide":"","content":"THBT the European experiment has failed.","division":"","link":"","topic":{},"language":"English","id":"mxNDJy0GFj5SSkQkyFk6"},{"link":"","division":"","language":"English","content":"TH supports soldier-run free schools.","topic":{},"infoSlide":"","tournamentID":"o29IKQqCI95UODWABA9Y","round":"4","id":"mxw1oUO6FwHWJClgOiDM"},{"language":"English","topic":{},"infoSlide":"","link":"","tournamentID":"FaXJZrMIEColDcqtOmli","content":"THBT the Mexican govenment should retroactively legalise the production and distribution of drugs.","round":"1","division":"","id":"myx3ZQkaNakc7pTmhJ74"},{"topic":{},"tournamentID":"o83Oqm9vDtGaG6SVldke","language":"English","division":"","infoSlide":"","content":"THW make conscription a war crime.","link":"","round":"3","id":"mzcXZQUwxdSvdpEmTf5N"},{"topic":{},"language":"English","round":"ESL_Semi","content":"THBT countries should suspend all elections in times of severe health crises.","tournamentID":"YF6iuqxO6eUISnAz4iMp","link":"","infoSlide":"","division":"","id":"mzs2zN6zo7CZ5DoPJY9z"},{"infoSlide":"","content":"THW welcome a political union of Latin American states based on the ideals of the Bolivarian revolution.","round":"3","topic":{},"division":"","tournamentID":"dL45ZXh9u0IhHmAuaa0r","link":"","language":"English","id":"n0DI2y2DdHBH4yQfy57L"},{"round":"Novice_Finals","division":"","link":"","tournamentID":"rEUwN5dFZYjeXBNtp4NG","topic":{},"content":"THW require all sold products to clearly display their price in Dead Children Currency.","infoSlide":"","language":"English","id":"n0IqVjMG3NpdP39Xkmhh"},{"round":"1","language":"English","tournamentID":"N6GD6E8q4Mbzt8Xexnyy","infoSlide":"","topic":{},"division":"","link":"","content":"THW prioritize support of domestic reporters in areas of conflict over the use of Western reporting.","id":"n1TKBpjH4ZgPtqSkEjx8"},{"language":"English","content":"THW re-introduce the punishment of banishment for serious crimes.","topic":{},"infoSlide":"","division":"","link":"","round":"6","tournamentID":"GQttZR3FjAIw20Ek36nP","id":"n2hgCPcxLctthIcWDGqC"},{"link":"","division":"","infoSlide":"","topic":{},"tournamentID":"SIrskBVMCwGNCZibcnP1","content":"THBT police officers on regular patrol should not carry firearms.","round":"Novice_Finals","language":"English","id":"n2jJ4KdZZk00l5x86oMF"},{"infoSlide":"","division":"","language":"English","link":"","topic":{},"round":"Open_Novice finals","tournamentID":"lFdTm9Bd7AxKRkVImhbS","content":"TH regrets the fat pride movement.","id":"n2pvupeltkOOzmW4RMxZ"},{"division":"","link":"","language":"English","topic":{},"round":"2","infoSlide":"","tournamentID":"Pt1Z2dTdUinRviVucbZA","content":"That, as Rey Skywalker after the battle of Exegol, we would re-start the Jedi Order.","id":"n30FDzEGZUEtLMFw6fDd"},{"division":"","round":"5","content":"This House opposes organised religion.","language":"English","infoSlide":"","link":"","topic":{},"tournamentID":"9mfNKBqpq9HzOZ9GltTe","id":"n3IQK903LtjmrSdqWwau"},{"content":"THW allow students to vote on the curriculum they are taught in schools.","round":"Open_Finals","topic":{},"language":"English","link":"","division":"","infoSlide":"","tournamentID":"PULmrzx6k00EzEt7BxfG","id":"n3KPLLmlSZxBTLLDyHpo"},{"tournamentID":"puG4GbGRMRGTQ4eS4GHp","division":"","topic":{},"round":"Open_Quarters","content":"TH supports African Americans who choose to violently protest in response to police brutality.","link":"","infoSlide":"","language":"English","id":"n3KTRdSIGfBczfA4hzvy"},{"round":"3","language":"English","link":"","topic":{},"content":"THW ban international marriage agencies.","infoSlide":"","division":"","tournamentID":"AZDyYLAFE8Mh41BShv5m","id":"n3mtdosyOmELqAQX9EEZ"},{"topic":{},"language":"English","infoSlide":"","round":"Open_Final","tournamentID":"DXCgscK3BkzAJGRnyZpD","link":"","division":"","content":"THBT the EU should abandon its aim to establish an \"ever closer union\".","id":"n5v83RFKVTDY6FMe9kaQ"},{"language":"English","tournamentID":"0vUzx1fMW06W65BNi8Wn","topic":{},"round":"2","division":"","infoSlide":"","content":"This House Believes That minorities should not attempt to reclaim slurs that have been directed against them.","link":"","id":"n6wOcZZsCWEQYxLc2sQs"},{"topic":{},"tournamentID":"i3UU49z9MRO6phe9r1BH","round":"Novice_Semis","content":"THR the modern high prioritization of sexual compatibility in romantic relationships.","link":"","language":"English","infoSlide":"","division":"","id":"n8LRSM7RW55pkTWNmm6J"},{"content":"THBT search engine algorithms and results should not be protected by the First Amendment as editorial speech.","tournamentID":"H6MeeIis6pg2gQbgEyuB","link":"","topic":{},"language":"English","division":"","infoSlide":"","round":"5","id":"n8Rc618DgfRSRW0Zm49I"},{"round":"Open_Final","tournamentID":"FwXwhiD8hyS9iD7pTyRe","division":"","topic":{},"language":"English","link":"","content":"THW impose a legal duty of care on adult children for their parents.","infoSlide":"","id":"n8hqO0ZufqWOhmZQV1zJ"},{"round":"3","content":"THW suspend all regulation regarding environmental protection laws and policies during prolonged periods of economic recession.","language":"English","infoSlide":"","topic":{},"link":"","tournamentID":"DLFJWaIyHnSlvFofovjc","division":"","id":"n9GxHq3Oa1NRke41FCWC"},{"language":"English","infoSlide":"","division":"","tournamentID":"0M48sfM68g8U5RgkKD2l","content":"TH supports censorship of pornography on the internet.","link":"","topic":{},"round":"5","id":"n9OJdrBjd1ScdHNaxxCE"},{"content":"THBT the international community should pay countries near to conflict zones to process, settle and restrict the further movement of refugees.","language":"English","division":"","infoSlide":"","topic":{},"round":"Open_Final","tournamentID":"DFNWZhapl7SHDFBrFsMi","link":"","id":"nB8v0e4Ycj1YqUkgUKbZ"},{"content":"THW create UN protectorates in failing states.","round":"Schools Final","division":"","tournamentID":"CBVZREYhjV5bhCHOuWjU","language":"English","infoSlide":"UN protectorates are international administrations established to govern countries or regions in crisis. Examples include the United Nations Interim Administration Mission in Kosovo (UNMIK) and United Nations Transitional Administration in East Timor (UNTAET). A failing state is a political body that has disintegrated to a point where basic conditions and responsibilities of a sovereign government no longer function properly. Examples include, South Sudan, Somalia and Haiti.","link":"","topic":{},"id":"nBHTxATMurNGgUWoMSpL"},{"link":"","round":"4","content":"TH regrets the EU Troika’s reliance on mainly austerity measures as a solution for at risk Eurozone economies.","infoSlide":"","topic":{},"division":"","tournamentID":"W8zmuuOkdBsEHQw2r0RP","language":"English","id":"nBLAFGmp3t4ZH93ms2UN"},{"content":"TH supports The RMT's decision to strike (in protest at ticket office closures).","round":"2","tournamentID":"70rnu3F4Q3ntkA4t3Wfl","link":"","language":"English","division":"","infoSlide":"","topic":{},"id":"nBkEW6W1YcUMqFsYesCa"},{"division":"","infoSlide":"","link":"","round":"Open_Semi","language":"English","topic":{},"tournamentID":"cTxMF0myfwbQDPdL8Ral","content":"THBT the choice of the economic liberalism as a dominant doctrine by major international financial institutions does more harm than good.","id":"nBmfVxTMhFqwFs32STrm"},{"topic":{},"tournamentID":"WACrra94379E35Be36hc","infoSlide":"","language":"English","division":"","content":"This House would grant legal personhood to land.","round":"5","link":"","id":"nC1337dEA93nEg9wTlZM"},{"round":"Novice_Final","topic":{},"infoSlide":"","tournamentID":"S2mG18EWYdh2bPEadyd9","content":"THS movements that advocate for the provision of negative rights to sentient AI.","link":"","language":"English","division":"","id":"nChJbmGa4iA2CR67XfhD"},{"division":"","round":"3","language":"English","topic":{},"infoSlide":"","tournamentID":"rinK386NjH990vvie6wL","link":"","content":"THS the rise of disclosure culture.","id":"nClr1JaTrj2zGXqAq8cb"},{"link":"","tournamentID":"6CH8DHWUbQKOjMDFTgFX","topic":{},"language":"English","infoSlide":"","content":"THBT Governments should not assist in the rebuilding of disaster prone areas.","division":"","round":"4","id":"nCxtWmBgtTJYYSLEjaK0"},{"division":"","tournamentID":"NE3BXrt6CASI2EExAgUk","infoSlide":"","language":"English","link":"","topic":{},"content":"THW take the children of Roma who live traditional lifestyles into state care.","round":"2","id":"nDbZvh0GwJob3ZDMmA4g"},{"infoSlide":"","content":"THBT western media should refuse to publicise videos or events designed to generate terror.","round":"5","language":"English","link":"","tournamentID":"k1fYFDihwlGzjmVGfSXp","topic":{},"division":"","id":"nE0TBkjeZGeuu60h6Nqe"},{"tournamentID":"3dDCV3YYSGl8TNe5f3iO","round":"Novice_Final","division":"","link":"","infoSlide":"","topic":{},"language":"English","content":"THW split Belgium into separate parts.","id":"nEEhwZZr83yHwqSmS4lX"},{"round":"4.1","tournamentID":"ZZxKEPTbhJYYUI5iW5Cz","content":"That Pacific Rim countries should make Australian participation in future trade agreements contingent on the abandonment of their asylum seeker detention policy.","infoSlide":"","division":"","topic":{},"link":"","language":"English","id":"nEq8DgD5JpsggoxOriOH"},{"topic":{},"infoSlide":"","tournamentID":"fBPBbh32BZ2p0Y1Fy5Yi","content":"THS vaccine passports.","round":"1","division":"","link":"","language":"English","id":"nFNmVqMTjPbyj8etreqZ"},{"link":"","tournamentID":"Nzien6R9RXvOTrNMJsza","infoSlide":"","division":"","language":"English","round":"5","content":"THR the commercialisation of spirituality.","topic":{},"id":"nFZyECXHb29PCYWDkx3x"},{"division":"","language":"English","tournamentID":"RLX3o4g1PsjOGvcOJBWD","topic":{},"round":"2","content":"THW broadcast a welcome message to the alien spacecraft.","link":"","infoSlide":"","id":"nG41PgDBtZIZba1kw44h"},{"division":"","language":"Vietnamese","infoSlide":"Việt Nam là một quốc gia tăng trưởng GDP nhanh hàng đầu thế giới. Mỹ vừa quyết định sẽ đưa Việt Nam ra khỏi danh sách các nước đang phát triển, đồng nghĩa với việc trợ cấp ODA của Việt Nam có nguy cơ bị cắt giảm. Việt Nam lúc này có 2 hướng đi. Hướng đi Bền Vững là tạm phanh tốc độ phát triển kinh tế, dành nguồn tiền đầu tư vào các ngành không sinh lãi ( giáo dục, cơ sở hạ tầng, ...) để duy trì ở trong nhóm nước đang phát triển. Hướng đi Phát Triển là tiếp tục tăng trưởng kinh tế để tận dụng cơ hội, từ đó vươn ra khỏi nhóm nước đang phát triển, trở thành một quốc gia phát triển trung bình.","topic":{"politics":{"title":"Politics","check":true},"irw":{"check":true,"title":"International Relations/War"},"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"tournamentID":"CJKUeBIUibEtZYahoUQV","round":"","content":"Chúng tôi tin rằng Việt Nam nên áp dụng Hướng đi Bền vững thay vì Hướng đi Phát triển.","link":"","id":"nG9pxFsixVnlMmwTfAIo"},{"link":"","topic":{},"round":"2","division":"","infoSlide":"","language":"English","tournamentID":"V8TulSs5yNLpZX8Xohpq","content":"TH welcomes the rise of Anti-Establishment Candidates, such as Bernie Sanders, Donald Trump, and Jeremy Corbyn.","id":"nGOZBAP46dB805jAodlh"},{"division":"","language":"English","content":"TH regrets the influence of YouTube on popular culture.","link":"","round":"Open_Semis","infoSlide":"","topic":{},"tournamentID":"ODzhGSyV71DaUGhZEWGT","id":"nHZFJhCtaaY84mHtMVam"},{"round":"3","content":"THW ban Zwarte Piet (Black Pete).","topic":{},"link":"","language":"English","infoSlide":"","division":"","tournamentID":"SU8WsMguqtUiTUErBeo7","id":"nHjXjznetUfUDLQ8UlvB"},{"division":"","language":"English","round":"HS_Semi","link":"","topic":{},"tournamentID":"m6JzV67uYJSVBRpAbgL7","infoSlide":"","content":"THR the usage of religious appeals as a rallying call for humanitarian causes.","id":"nIkCYH9ZpVc1WAohEJmj"},{"topic":{},"infoSlide":"","content":"That Tumblr should unban pornography.","round":"Open_Semi","language":"English","division":"","link":"","tournamentID":"Pt1Z2dTdUinRviVucbZA","id":"nJDoVSqEBgyrf8QdVw0i"},{"round":"Open_Final","tournamentID":"ns7JoMyNUkrrS5A6Rbw7","topic":{},"language":"English","division":"","content":"THBT the EU should adopt the formation of a constitutional anti-theistic atheist society as one of its declared goals.","infoSlide":"The current stated goal of the european union, as stipulated in the treaty of rome, is an \"ever closer union\" Anti-theistic atheism society is a society that while still allowing religions to exist,more than just being secular actively seeks to eliminate religion from state institutions, laws and actively promotes atheism to the general public.","link":"","id":"nKGuHizCwplrjOR0opJF"},{"round":"3","content":"TH prefers sports leagues that are financially unregulated.","tournamentID":"v3Bq7DLUeCcPyvQZjJbj","division":"","infoSlide":"","language":"English","topic":{},"link":"","id":"nKyMHqR8FyaipoBf5bFh"},{"round":"Open_Semi","content":"THW allow retired parents to seek support payments from their adult children.","language":"English","tournamentID":"k1fYFDihwlGzjmVGfSXp","topic":{},"division":"","link":"","infoSlide":"","id":"nLEXWJSEhoxSEGlpcYmO"},{"topic":{},"round":"Open_Semi","link":"","language":"English","division":"","infoSlide":"","content":"This house regrets the Obergefell decision.","tournamentID":"jU6ofoRVsACbu04pXrg6","id":"nLbIfBUMkU1ERR2lVpL8"},{"link":"","division":"","round":"2","content":"THBT Latin American countries should use private military contractors to police high crime areas.","topic":{},"language":"English","infoSlide":"","tournamentID":"JcJtvTXBcNJ3kYX5noH9","id":"nLfGvUQ6bzbE0CXmZ5xe"},{"content":"THS the use of local lay judges in minor legal cases.","language":"English","topic":{},"link":"","round":"1","tournamentID":"tp2xo2eFva2we2bqlQBC","division":"","infoSlide":"","id":"nLx8SEvJZeeJx9J3d1pA"},{"infoSlide":"","language":"English","content":"This House believes that states should seek to participate in multinational currency unions.","round":"2","link":"","tournamentID":"YAsriFfh4M2kLN2FBQPq","topic":{},"division":"","id":"nMC4So85G9DvCQde5plf"},{"link":"","content":"THW rather die before they get old.","topic":{},"infoSlide":"","tournamentID":"zppT86F7lAE0Gpp7tWYo","round":"A1","language":"English","division":"","id":"nMeHuFx6qPxbCToxMaPk"},{"topic":{},"content":"As an Asian parent, THW teach their child to actively reject the 'humble culture\".","infoSlide":"","round":"Novice_Final","link":"","division":"","language":"English","tournamentID":"SfEIDDzpv3y19flsWYFH","id":"nNWCdAThDJnv4PjLEO3p"},{"language":"English","link":"","division":"","tournamentID":"krSr8LWxSpEc6v45L1uv","topic":{},"infoSlide":"","round":"2","content":"THR the glorification of self-made success.","id":"nNjbS7PqhVA2a8YeL0Gi"},{"content":"This House Regrets the narrative that motherhood is an intrinsically fulfilling experience.","tournamentID":"1MV3spmbrmWLKhisZDU8","infoSlide":"","topic":{},"round":"3","link":"","division":"","language":"English","id":"nNk8KFRIRtImPtsCSUCt"},{"topic":{},"round":"Open_Semis","language":"English","division":"","infoSlide":"","tournamentID":"wKhC6L9zPycGKlqYWb6j","content":"THW legalize graffiti in public spaces.","link":"","id":"nNmMorqCIy8p1DtszOnu"},{"division":"","topic":{},"language":"English","infoSlide":"","round":"1","link":"","tournamentID":"oVagPVQLXErhZIkOTqQn","content":"THW ban cosmetic surgery.","id":"nOMYsHH4rxmODg7ee618"},{"tournamentID":"1dEXZTvvRtTWhdBLmzFt","infoSlide":"","link":"","topic":{},"language":"English","division":"","content":"THR the shift in the #MeToo movement from victims sharing their experiences to holding public figures to account.","round":"Open_Final","id":"nOrZgaYtKPBoXEk4p0FH"},{"link":"","division":"","tournamentID":"FISzpNaGZKCHkhtDdzPp","infoSlide":"","round":"4","language":"English","content":"When tech companies own platform utilities and platform products, THW break them up.","topic":{},"id":"nOtblz2Vchsy3UVAAFQf"},{"round":"2","link":"","tournamentID":"h2z0CGY0CzqfLCKUb3wz","division":"","infoSlide":"","topic":{},"language":"English","content":"THS the force feeding of incarcerated hunger strikers.","id":"nQJt5GCK0xnxvhYOFsn1"},{"content":"THW give legislative veto power to a Future Generations Commission.","topic":{},"language":"English","round":"5","link":"","division":"","infoSlide":"For the purposes of this debate, a 'Future Generations Commission' is an independent body mandated with mapping the long-term impacts of governmental policy on the young, or unborn generations.","tournamentID":"ChiU8yMbLI2Y2q5rwURP","id":"nQLzT4McYUnGVIrJim99"},{"round":"3","language":"English","topic":{},"infoSlide":"","link":"","content":"TH believes that ASEAN should give up all efforts toward greater political and economic integration.","tournamentID":"LbgZumsAetYW4T3JVQrG","division":"","id":"nQZonuUhQrrRnFWxNeOi"},{"infoSlide":"","round":"3","language":"English","tournamentID":"Er03o2M51g3s6dYyUHHm","division":"","link":"","topic":{},"content":"THW only allow pornography produced and directed by Women.","id":"nQv2qUQf5MLBq2kaWJqA"},{"division":"","content":"THW ban smoking.","link":"","infoSlide":"","round":"2","topic":{},"language":"English","tournamentID":"STaEp3vuXBuTT2bP0vgU","id":"nR52EcHLhmxmVMoHvPor"},{"tournamentID":"ubSWFCyfoCllO0KSjdjy","topic":{},"language":"English","infoSlide":"","link":"","content":"THP trials where victims and defendants are anonymous.","round":"2","division":"","id":"nR6RwacZQw7jimYNxnCp"},{"topic":{},"division":"","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","link":"","infoSlide":"","content":"THS the destruction of monuments of controversial historical figures.","language":"English","round":"1","id":"nS8Iy0WoIoNOeSej1Nv6"},{"division":"","topic":{},"link":"","language":"English","infoSlide":"","tournamentID":"a6rNMpZKAK9f2nCSkXu1","round":"Open_Semi","content":"This House Believes That states formerly under the rule of the Soviet Union should NOT emphasize their history of struggle against Russian imperialism in constructing their national identity.","id":"nSv4LhXFq49g7k1tkrhC"},{"infoSlide":"","language":"English","round":"3","link":"","content":"THW prohibit missionary work that pronounces abstention as the only godly way against the spread of HIV.","division":"","tournamentID":"VTJvfdWN7ZYlPkyTmGj1","topic":{},"id":"nT0yOawCk1mQeySRpwhZ"},{"topic":{},"infoSlide":"","link":"","tournamentID":"roH9ICCjwscIePFGM61P","round":"2","content":"This house supports a heavy-handed military response to xenophobic violence.","language":"English","division":"","id":"nTMcKQv7qt8FMmGtMiSJ"},{"content":"THW lift the ban on dancing (Tanzverbot, probably more a general celebration ban) on the “quiet holidays” (Good Friday, Memorial Day and Remembrance Sunday (Totensonntag)).","round":"2","tournamentID":"ovqKzpSVsRvBQDmmn1yj","infoSlide":"","link":"","division":"","language":"English","topic":{},"id":"nU63Um4By87vgAQ49pHn"},{"division":"","link":"","topic":{},"language":"English","round":"Open_Semi","content":"That the Ukraine should seek an internationally brokered agreement to formally acknowledge the cession of Crimea to Russia.","infoSlide":"","tournamentID":"HjQJA65fZ9igHKO8DLAP","id":"nUV0T7MJ5L6UBddzYSJa"},{"language":"English","tournamentID":"LH17DUUbXDstAFfMNJyf","infoSlide":"","link":"","content":"THW, as an atheist, join an atheist church (definition: an atheist church is a congregation of non-religious people, who engage in singing, lectures and other activities. It also promotes the Manifesto for Atheists, which lists atheist virtues).","division":"","topic":{},"round":"3","id":"nUk6xztk3HACgjs9b5uy"},{"round":"2","topic":{},"language":"English","tournamentID":"wKhC6L9zPycGKlqYWb6j","content":"THBT voters should be able to override the votes of their elected representatives on individual bills by two-thirds or greater referendum.","division":"","link":"","infoSlide":"","id":"nV5MSILU6HBCaYJZzLdR"},{"tournamentID":"0bpNzjTgN71TZQEkHTak","round":"Open_Partial_Double_Octos","infoSlide":"","content":"THBT universities should never prohibit research or teaching on the grounds of sexist, racist or otherwise discriminatory implications.","language":"English","topic":{},"link":"","division":"","id":"nVXsaNSdQmlStLfOF3n0"},{"content":"THBT The Militaries of Newly Democratised Arab Countries Should Act as Guardians of Secularism.","link":"","infoSlide":"","round":"ESL_Semis","tournamentID":"IpWyfCcksctR86jKX66g","language":"English","topic":{},"division":"","id":"nW8vfwaSxZQJCqMi692b"},{"link":"","division":"","content":"THBT environmental NGOs should promote genetic engineering.","language":"English","infoSlide":"","round":"Open_Final","tournamentID":"KpispxU2MtVt41R9j5bV","topic":{},"id":"nX7rLQBxU93WTvmfETIS"},{"infoSlide":"","round":"Open_Final","division":"","tournamentID":"hPTwc7UsLmuGu68x4FDK","language":"English","content":"THBT NATO should militarily intervene to assist the Ukrainian government in suppressing the separatist rebels in the eastern province.","topic":{},"link":"","id":"nXA98MdeXtzhx6CfqRTh"},{"division":"","content":"THW not fund public service broadcasters (like YLE or BBC).","language":"English","link":"","tournamentID":"UVd3X0lgKy2dOb5Yx1c7","topic":{},"infoSlide":"","round":"2","id":"nXZ5aDt6Wdq1M7a2DD6C"},{"language":"English","content":"THBT companies like H&M and Primark should hire half as many factory workers in the developing world but pay them twice as much.","round":"4","tournamentID":"DXCgscK3BkzAJGRnyZpD","topic":{},"division":"","infoSlide":"","link":"","id":"nYzw8q1VgjxyHVUenvWL"},{"language":"Vietnamese","division":"","round":"Quarterfinals","infoSlide":"Hamas và Fatah là hai đảng phải đối lập lớn nhất đang cạnh tranh cho sự lãnh đạo của Palestine. Fatah, với lãnh đạo là tổng thống của Mahmoud Abbas, có một cách tiếp cận hòa bình hơn và muốn thỏa hiệp với Israel để chấm dứt xung đột, trong khi đó Hamas vẫn muốn cạnh tranh vũ trang với Israel để giành lại lãnh thổ. Mặc dù khác biệt về hệ tư tưởng, hải đảng phái vẫn cố gắng để đạt được một chính phủ đoàn kết của Palestine. Nhưng để thỏa thuận được thông qua, tổng thống Abbas đã đưa ra yêu cầu bắt buộc Hamas phải chuyển giao toàn bộ vũ khí và quân đội lại cho nhà nước Palestine.","topic":{},"tournamentID":"JaZQ7l5B4R6smBKTdFQJ","content":"Chúng tôi, vơi tư cách là Hamas, sẽ chuyển giao toàn bộ vũ khí cho chính quyền Palestine của Tổng thống Mahmoud Abbas.","link":"","id":"nZDoB8h3W5nrUtqJryku"},{"topic":{},"language":"English","round":"1","division":"","content":"THBT women should pay less income tax than men.","tournamentID":"jS13nU6Cack3rcPrnNZ5","link":"","infoSlide":"","id":"naHxNEbtnSFm789cyX2X"},{"round":"Open_Quarters","topic":{},"language":"English","tournamentID":"KMhBpmj1LWPj5LN0aFUK","infoSlide":"","content":"TH Opposes the Informal Economy.","link":"","division":"","id":"naLVNvvgqzlHiZTszmdw"},{"topic":{},"round":"3","infoSlide":"","content":"THBT the government should access private electronic communications to predict and tackle crime.","tournamentID":"EkR93MYW52GdWTuVsaKa","language":"English","division":"","link":"","id":"nagDTuLc0YCtPsixpAmH"},{"content":"THW grant those diagnosed with terminal illnesses the right to access treatments that have not completed clinical testing.","topic":{},"link":"","division":"","infoSlide":"","round":"7","language":"English","tournamentID":"t2juKb62UT5HJ0kruUAw","id":"nb0pSuwkAR4trwaE4dRU"},{"language":"English","tournamentID":"5Qomv7BFHTKmY4PchwDr","topic":{},"link":"","infoSlide":"","content":"That we regret the belief that individuals possess defined personality traits.","division":"","round":"ESL_Quarter","id":"nc0vMSJc7dTMMC2JnY6v"},{"topic":{},"tournamentID":"pjVFBJWiohJyZdRBk33H","language":"English","division":"","infoSlide":"","round":"1","content":"THW withdraw all state benefits including healthcare from the voluntarily unemployed.","link":"","id":"nc1aJlEl0f1MIjYUXCtP"},{"content":"THBT posing for Playboy is immoral.","infoSlide":"","division":"","tournamentID":"TtPU6Lwr9qKhUvLMeyVD","round":"7","language":"English","topic":{},"link":"","id":"ncEylMqYax38aXCYpPYr"},{"division":"","topic":{},"language":"English","link":"","tournamentID":"j9tMf10ACsn6VW6vG9gA","infoSlide":"","round":"5","content":"THBT the United States Should fund Madrassas in Pakistan.","id":"ncv9KixgDnS8rriL2R08"},{"content":"THW tax meat products (approximation).","round":"2","topic":{},"link":"","infoSlide":"","tournamentID":"FIZrOByzWbUCfXyq56hs","language":"English","division":"","id":"nd6ozx9UTERC1LtUWEiF"},{"round":"3","topic":{},"tournamentID":"FYOADGgnZTJQdU2kOcYb","link":"","content":"THBT liberal democrats should provide financial and legal aid to their citizens who wish to permanently migrate abroad.","language":"English","infoSlide":"","division":"","id":"neEs2WFmq9SrYHHSGC0x"},{"division":"","content":"THBT parents should raise their child in a society with low levels of uncertainty avoidance.","language":"English","round":"Grand Final","topic":{},"link":"","tournamentID":"75jspJDrwq3Ldwex90Qr","infoSlide":"Uncertainty avoidance - measures the extent to which different cultures socialise their members into accepting ambiguous situations and tolerating uncertainty. In a culture that practices high levels of uncertainty avoidance, people place a premium on job security, retirement benefits, and so on, while in a society with a culture of low uncertainty avoidance, people are more willing to take risks, and are more adaptive to change.","id":"neZHlCNMy5zMIkUOAPBW"},{"link":"","infoSlide":"","topic":{},"tournamentID":"MKnFsrIKq8equaMluK21","content":"THBT all companies should be at least 75% owned by their workforce, in equal shares.","division":"","language":"English","round":"Open_Semis","id":"nesd60yOmAicXfQFWw8h"},{"content":"TH, as a US Democratic presidential contender, would make repeal of the second amendment part of their core policy platform for 2020.","link":"","division":"","round":"4","tournamentID":"0EfM3HXUbP8eg9asv3MM","infoSlide":"","topic":{},"language":"English","id":"nfAFL2WRmmicPNRXWLDS"},{"tournamentID":"Ns60Gy3xxrtFcpflRpTk","link":"","topic":{},"round":"3","language":"English","division":"","content":"THBT westen liberal democracies should withdraw funding from Bangladesh until blogger killers are arrested and tried.","infoSlide":"","id":"nfttAoZ4Xu23C6UUQQgW"},{"link":"","tournamentID":"5oYH1K5oILZA6OqwhGhz","infoSlide":"","language":"English","content":"thbt public health authorities such as the Centers for Disease Control, should be given the power to quarantine individuals involuntary who they suspect are ill with highly contagious diseases.","division":"","round":"4","topic":{},"id":"ngmxpEBLELk1S2tqSXet"},{"round":"1","division":"","content":"THBT fear is a legitimate tool for instilling moral values.","infoSlide":"","topic":{},"tournamentID":"mf3XudZleydnsr0lEvkg","language":"English","link":"","id":"nh3tkZDodW3pnxcoSf6t"},{"topic":{},"division":"","round":"3","content":"This House would implement UBI in times of crisis.","tournamentID":"XzAs4cMVeW91DHEgxF0k","language":"English","infoSlide":"","link":"","id":"nhvehal2YEPtIHPppP2F"},{"content":"THBT identity-based social movements should prioritize the majority population's acceptance of that identity over preservation of a distinct culture.","topic":{},"division":"","language":"English","round":"Novice_Semis","link":"","tournamentID":"Hk8f1ASR1JhJdfu9tmfK","infoSlide":"","id":"nhxBGOXqMyaejvBHFy6C"},{"content":"THBT implementing bonded government scholarships are in the interest of developing states.","link":"","tournamentID":"cTxMF0myfwbQDPdL8Ral","round":"1","division":"","topic":{},"language":"English","infoSlide":"","id":"niU1MSSP0AnAz3Kc0aNb"},{"infoSlide":"","link":"","tournamentID":"KErVXbqRahyWD7ZB1Q1m","content":"THW require all businesses to be owned and run as cooperatives.","round":"2","topic":{},"division":"","language":"English","id":"njUBCVVBPmBAQy8Rn5Jd"},{"link":"","infoSlide":"","topic":{},"division":"","language":"English","round":"Open_Final","tournamentID":"KErVXbqRahyWD7ZB1Q1m","content":"TH prefers the abolition of pornography to the nationalisation of pornography.","id":"nlW0l4UCfF3p4ckik1Dt"},{"topic":{},"link":"","round":"Open_Final","language":"English","division":"","tournamentID":"b1sXr4qyDgdbj0UNSjmS","infoSlide":"","content":"TH as US goverment prefers low oil prices (paraphrased).","id":"nmFq40lXLm1p7Y5ipPFz"},{"tournamentID":"Tu7KRlumwIMZzCczqcGG","division":"","language":"English","link":"","round":"4","topic":{},"infoSlide":"","content":"THBT that the Turkish military should stop enforcing the separation between church & state.","id":"nmGBAA4iotvBEWIshqWK"},{"infoSlide":"","language":"English","link":"","division":"","content":"\"TH Supports 'The Right to be Forgotten' (in relation to internet privacy)\".","topic":{},"tournamentID":"0aaiP0hS7LLjh0VVpofG","round":"4","id":"nmRr7l87a8actQ9iYlEi"},{"topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"content":"Chúng tôi sẽ cho phép ma tuý được mua bán và sử dụng ở những khu vực phi dân cư được chỉ định cụ thể.","link":"","division":"","language":"Vietnamese","round":"1","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","infoSlide":"","id":"nmSRychcJgAp0IZgS23t"},{"division":"","infoSlide":"","language":"English","round":"3","tournamentID":"uOrbqWx5KdpXchUpHb3Z","topic":{},"link":"","content":"THBT the US should give South Korea weapons.","id":"nn9j6IUaINzuwCPas3Id"},{"division":"","language":"English","tournamentID":"1bHNYzF6GWRqdpr3f5vt","infoSlide":"","topic":{},"round":"5","link":"","content":"That we regret the removal of Evo Morales as president of Bolivia.","id":"nnMQJTRM5nc3eMJAGaL1"},{"tournamentID":"ErS5R7GooWYcG88PT27r","round":"2","link":"","division":"","language":"English","content":"This House Supports the celebration of Halloween in Jamaica.","topic":{},"infoSlide":"","id":"nncM8XswEsFeGsPGqzk0"},{"link":"","division":"","tournamentID":"YbdPFTE9FbO3iQjZo87D","infoSlide":"","topic":{},"language":"English","content":"In situations where deliberate economic policies by another state have caused substantial economic harms, THBT international law should recognise that military retaliation can be justified.","round":"ESL_Quarters","id":"nocnpJPMQ4Hav0UIhmJM"},{"infoSlide":"","round":"3","link":"","language":"English","content":"THBT it can trust the President of Cuba.","division":"","tournamentID":"S3X3UeH5zIQsGlSEttfv","topic":{},"id":"nov0UgrPv0jGIkGQHTaq"},{"content":"THBT all states should collectively aggregate and evenly distribute all revenue from mineral wealth globally on a per capita basis.","language":"English","round":"3","infoSlide":"","link":"","topic":{},"tournamentID":"92dIEXeOXUVvlcFeGCIr","division":"","id":"npEdbSCo3Ii49RqfrNHx"},{"division":"","language":"English","content":"THW implement the Teacher Independence Model in schools for children aged over 12.","topic":{},"round":"1","link":"","tournamentID":"xwOMY1HAkkxJbFVQIUFJ","infoSlide":"","id":"npMwYDZSCNPvSXJkB0Fh"},{"tournamentID":"NtnveNmZosTMD9TU0qA8","language":"English","infoSlide":"","link":"","round":"4","topic":{},"content":"THR the glamourization of start-up culture that encourages people to start their own businesses rather than pursuing traditional career paths.","division":"","id":"npdv46NrSr3Opsgld7qZ"},{"content":"THW replace income tax with a wealth tax.","round":"2","tournamentID":"v1Vi2iS2rLowvyk3vIMm","topic":{},"link":"","language":"English","division":"","infoSlide":"","id":"nppQSNG1Uw6agKG2FFFC"},{"link":"","content":"THW require companies to have the same environmental and working standards in foreign countries as in their home states.","topic":{},"infoSlide":"","division":"","tournamentID":"GfEZYNzXPpqDU3CX6qxi","language":"English","round":"4","id":"nprS5R6sex1k79v7nVO1"},{"tournamentID":"U5BIn9cy3EEIjFx2mHye","link":"","topic":{},"language":"English","division":"","infoSlide":"","content":"THW reinstate bussing in the US.","round":"2","id":"npwwj97VVwzaXvAfc6EZ"},{"content":"THBT football associations should require clubs to be majority owned by their fans.","tournamentID":"o2dx25z3TGRcLxLt33Qk","infoSlide":"","link":"","topic":{},"language":"English","division":"","round":"2","id":"nq5466KyrcgCng5hOblx"},{"infoSlide":"","content":"THBT universities should ban all fraternities and sororities.","link":"","tournamentID":"H2ZQZD4EPmxpktxvJnUz","language":"English","round":"2","division":"","topic":{},"id":"nqOcXW4eyNKkqusRlcIe"},{"division":"","topic":{},"content":"THW replace the Māori seats in Parliament with a Māori upper house.","language":"English","infoSlide":"","round":"2","link":"","tournamentID":"0EfM3HXUbP8eg9asv3MM","id":"nqgoHXiwo4im3oXId8c2"},{"content":"THR the rise of self-care culture.","tournamentID":"IXq1CdgyiKmkyEDJURrV","link":"","topic":{},"round":"National Octofinals","infoSlide":"Self-care culture refers to dominant socio-cultural norms that emphasize:\n- Individuals needing to care for their own emotional wellbeing\n- Adopting self-care routines/practices such as mindfulness yoga, meditation\n- Pursuing commercialized services, such as massage and spa treatment, etc.","division":"","language":"English","id":"nqmrdZCJCauLvn5wOafp"},{"tournamentID":"BXqPhfwak2R1kYHV48bp","link":"","topic":{},"infoSlide":"","language":"English","division":"","content":"THBT the US should assassinate the five Taliban prisoners released in return for Bowe Bergdahl so that the US will never negotiate with terrorists.","round":"10.3","id":"nrYXqTUN2VIokZaCn9sS"},{"topic":{},"link":"","tournamentID":"vRdckCLdD0l2Rjc63y5T","infoSlide":"","round":"Open_Final","language":"English","content":"Should large infrastructural projects be subject to democratic control?.","division":"","id":"nrnG9vq5NRP8kOUbt26D"},{"content":"Giả sử công nghệ cho phép, chúng tôi sẽ loại bỏ cảm xúc của người lính.","division":"","infoSlide":"","topic":{},"language":"Vietnamese","link":"","tournamentID":"fBPBbh32BZ2p0Y1Fy5Yi","round":"4","id":"nrtEPFMJi7dty31beIUV"},{"language":"Vietnamese","tournamentID":"2gsOERqtXqSETJffXbnj","content":"Chúng tôi phản đối Thỏa thuận Môi trường Mới của Alexandria Ocasio Cortez.","infoSlide":"Thỏa thuận Môi trường mới (Green New Deal) là một nghị quyết của Quốc Hội được đưa ra bởi Alexandria Ocasio Cortez - Hạ nghĩ sĩ trẻ nhất của Hoa Kỳ. Thỏa thuận yêu cầu Quốc hội Mỹ đưa ra chính sách thay đổi toàn bộ ngành công nghiệp năng lượng nhiên liệu hóa thạch sang công nghiệp năng lượng tái tạo. Trong thỏa thuận, Alexandria đưa ra kế hoạch 10 năm, trong đó dự tính cung cấp 100% điện năng của đất nước từ năng lượng tái tạo và không khí thải, số hóa mạng lưới điện của quốc gia, nâng cấp mọi tòa nhà trong nước để tiết kiệm năng lượng hơn và đại tu hệ thống giao thông của quốc gia bằng cách đầu tư vào phương tiện điện và đường sắt cao tốc.","link":"","round":"3","division":"","topic":{},"id":"nrxnRRnXo8QU4cUT8ups"},{"round":"Open_Quarters","division":"","language":"English","tournamentID":"OJi1hwkxrfVjCOf6ZDRH","content":"THW give judicial leniency to marginalized groups that have committed crimes against privileged groups.","topic":{},"infoSlide":"","link":"","id":"nrzQDP0YUqxUVMLFOgPZ"},{"topic":{},"division":"","content":"THW, as a liberal democracy, restrict coverage of small-scale terrorist attacks.","link":"","tournamentID":"c74XLjeeNJzVbzpMjGlo","round":"Open_Quarters","infoSlide":"","language":"English","id":"nsAi1t2DH2JBSEpvmf8m"},{"content":"THBT emerging democracies should ban the election of close family members of current or previous office-holders.","topic":{},"tournamentID":"pTevyvO7FxIMrQi4ThJ5","infoSlide":"","language":"English","round":"3","division":"","link":"","id":"nsR4NqHmCn8Zbn0NcP1t"},{"link":"","infoSlide":"","tournamentID":"lM9u9z6CfHfA9HPucSIT","round":"Open_Quarters","content":"Given a machine that can predict a person's life 95% accurately, THW not use it.","language":"English","topic":{},"division":"","id":"nuNPrpaSV1emBe7din61"},{"link":"","round":"8","language":"English","content":"THBT smokers should cover the costs of their medical treatments.","division":"","infoSlide":"","tournamentID":"yFALyexswW7KtxRDS4He","topic":{},"id":"nusGFyBqtAnvG6UX456Y"},{"round":"3","link":"","division":"","infoSlide":"","tournamentID":"48Ba3dAlJxoct1Z9f7GA","content":"THW submit religious organisations to the full extent of anti-discrimination laws.","language":"English","topic":{},"id":"nvM6NigM8uEkG4uPN8yj"},{"division":"","language":"English","infoSlide":"You were the leader of a long-standing opposition party in a deeply racist country that won the most number of seats amongst all parties on a platform of anti-corruption and racial equality. Your party did not have enough seats to form a government on your own, so you formed a government by building a coalition with smaller parties. After some time, members of your smaller coalition partner-parties were bribed by members of the previous racist government to create a new majority coalition, thus putting you out of power.","round":"Quarterfinals","content":"THW, as the leader, accept the offer.","tournamentID":"7eFEPGI7iZMY9BTHG43T","link":"","topic":{},"id":"nvP9d7rzXJVrzvMpl43c"},{"topic":{},"division":"","tournamentID":"EP5HDm4G3OfMlciId6YM","infoSlide":"","round":"EFL_Semis","content":"This House would grant individuals and organisations open standing to challenge the constitutionality of laws enacted by their government.","link":"","language":"English","id":"nvrH9TuEW0RBkjaaCWoo"},{"round":"1","link":"","content":"THBT state health care providers should offer and fund faith-based treatment options.","division":"","language":"English","infoSlide":"","topic":{},"tournamentID":"o60DawGVHvdGOC58c4vF","id":"nwB9S76kmYEoNDIJwtpW"},{"topic":{},"infoSlide":"","round":"1","tournamentID":"48Ba3dAlJxoct1Z9f7GA","division":"","link":"","language":"English","content":"This House would grant an additional vote to families with children for national elections.","id":"nwDk2UFQprPJ7kPRON78"},{"topic":{},"content":"THW nationalise prostitution.","infoSlide":"","link":"","round":"5","language":"English","tournamentID":"VyYxJ0FaIE4LYaWheUyL","division":"","id":"nwOhyDUrXOvrVPv5TvAH"},{"tournamentID":"Tu7KRlumwIMZzCczqcGG","round":"1","content":"THBT there should be no restrictions on political donations.","language":"English","infoSlide":"","division":"","link":"","topic":{},"id":"nwQ8mk4B08bxos5j9KT0"},{"topic":{},"round":"5","infoSlide":"","language":"English","content":"THBT members of socially progressive movements should not support harsh punishment of criminals, even when the crimes committed are the opposite of what that movement supports. (e.g. hate crimes; domestic violence; pedophilia).","link":"","division":"","tournamentID":"tKXlShZl2vec49jC1bif","id":"nwe23VvhpjmZJeGSGjJl"},{"link":"","round":"5","tournamentID":"eBlrzVaoBbfX5kbian3T","division":"","content":"THW require all media aimed at children to undermine traditional gender roles.","infoSlide":"","language":"English","topic":{},"id":"nwt1nwVq69e2vNjZStnh"},{"division":"","content":"Assuming the technology to do so safely and easily exist, THW force everyone to undergo periodical sex changes.","infoSlide":"","round":"Open_Semis","tournamentID":"POdYlP5an146yzuVI1Xg","language":"English","link":"","topic":{},"id":"nx3VGjPW5D7wxYlgkeAz"},{"tournamentID":"8QddgLiIoLsA9YscCujR","infoSlide":"","link":"","topic":{},"round":"4","content":"THBT the international community should treat espionage as a justification for military retaliation.","language":"English","division":"","id":"nxA2oFh7iXGqe8ilLGLP"},{"link":"","content":"THW prioritize sending oppressed minorities first.","topic":{},"language":"English","round":"3","infoSlide":"","division":"","tournamentID":"TSpa3WXkfFl9nQFbVbmi","id":"nyHoT7qVUcEskMuBE42V"},{"language":"English","link":"","tournamentID":"xQkVRRUcXZJgGzxXZ2t0","content":"THW legalise all forms of assisted suicide for mentally sound people.","division":"","infoSlide":"","round":"1","topic":{},"id":"nzOqBCRWZcVvvWv7qv0M"},{"round":"8","topic":{},"tournamentID":"VPUCPVj9FHFW0uzJinv0","content":"This house would ban Cosmetic Surgery.","infoSlide":"","division":"","link":"","language":"English","id":"nzp5ex0SDuOc64uDce29"},{"topic":{},"round":"Open_Final","content":"Growing and selling cannabis should be made legal in the Netherlands.","tournamentID":"xLHei5vZFgpmhHOsyDv6","link":"","language":"English","infoSlide":"","division":"","id":"o1qfNNyT36xvTLUluYg8"},{"topic":{},"division":"","infoSlide":"","language":"English","round":"Open_Semis","link":"","tournamentID":"wL3wAKRctC8syY2eg8t3","content":"TH, as the LGBTQ+ community, would boycott RuPaul's Drag Race.","id":"o2TLyBpYNgJ0gkpZgY6d"},{"content":"THW provide parents access to their children profiles on social networks.","division":"","round":"Open_Semis","infoSlide":"","link":"","tournamentID":"7gnlDrExulbBsH6xw0jx","language":"English","topic":{},"id":"o2eGb0UlcNSvWtwNbPCg"},{"language":"English","topic":{},"infoSlide":"","tournamentID":"zidC2m00xOQF4gT3tgiY","division":"","round":"Open_Semi","link":"","content":"THBT Lebanon should abolish the system of Confessionalism.","id":"o4Ap9ZgVclxkIZxXBGxR"},{"language":"English","link":"","division":"","tournamentID":"dYmkkVK8aVn1dCgd4UDy","topic":{},"infoSlide":"","content":"Should news be censored when it could shake the confidence in the public finances of a Eurozone member?.","round":"5","id":"o4GguKLw1JTI3HTUhAkB"},{"tournamentID":"NBT7RwLHeAApXuOtrQpt","link":"","infoSlide":"","division":"","round":"Open_Final","language":"English","content":"THR the glorification of hard work.","topic":{},"id":"o4YdDaKxPtlwzErlrBzx"},{"language":"English","infoSlide":"","content":"TH, as a former communist state, would remove the monuments of the former regime.","round":"2","topic":{},"link":"","division":"","tournamentID":"RlGrdg8aVMD5XQVuPN3W","id":"o5E4qpcxHxLn9wiRSFr3"},{"division":"","round":"Open_Quarters","topic":{},"language":"English","tournamentID":"9WoIT6ofG5A9j3MeLxh4","infoSlide":"","content":"This House would allow individuals to sue religious institutions in their community for propagating beliefs that cause them significant harm.","link":"","id":"o7BMR1l94QKIneO3IG1O"},{"link":"","round":"3","division":"","language":"English","topic":{},"content":"This house believes that states should not attempt to regulate digital currencies like bitcoin.","infoSlide":"","tournamentID":"kqAjVyDOCBYWRYze158e","id":"o7J0GDvHVvj5aCGyEMFi"},{"language":"English","infoSlide":"","division":"","tournamentID":"jDG8reClMB02DIxLR5LL","round":"2","content":"THR the use of identity-based self deprecating humour by minority entertainers in popular culture.","link":"","topic":{},"id":"o7ehzrSDTU1y1lxvvqlw"},{"content":"TH supports the increasing secularisation of the world.","language":"English","infoSlide":"","division":"","round":"Open_Final","topic":{},"tournamentID":"HcngLxXLU8ahxFRQkeYc","link":"","id":"o84XwFdsCJ0xcM1DjIpg"},{"infoSlide":"","language":"English","round":"4","topic":{},"tournamentID":"9STOHMmWtLnanVavJzB2","division":"","link":"","content":"THBT criminal justice policy should be outsourced to technocrats instead of elected representatives.","id":"o8mN1XiAvnCfTsxP2cq7"},{"content":"THW allow the sale of organs.","tournamentID":"SxA6fvGmUbCEyPLjj4Sw","topic":{},"division":"","link":"","round":"Open_Semis","language":"English","infoSlide":"","id":"o8mfIByGEwnQsfKP5pGS"},{"round":"Open_Semi","infoSlide":"","language":"English","topic":{},"tournamentID":"4BdwKPHB1LrpVYqE4E51","division":"","link":"","content":"THBT parliamentary ridings and congressional districts should be drawn to maximize electoral competitiveness.","id":"o9acHXCYwvLdhKgWkJGC"},{"tournamentID":"JsQrI80phRuvDHr37q5N","division":"","round":"Open_Semis","infoSlide":"","content":"THW ban all research into the genetic origins of homosexuality.","topic":{},"language":"English","link":"","id":"o9lGf9474cklSd7O1P1r"},{"round":"2","topic":{},"content":"THW ban TV shows that objectify women.","division":"","infoSlide":"","language":"English","tournamentID":"v33DcPMMQZsLJormVjyz","link":"","id":"o9pOAzyYPaQA6AYmkBjz"},{"content":"THW allow mental health charities to sue media outlets for the defamation of the mentally ill.","infoSlide":"","topic":{},"language":"English","tournamentID":"vTB5rmh37ZMzdOCJ34sF","link":"","round":"Open_Quarters","division":"","id":"o9zM0OZORRq0dt7FIRQB"},{"language":"English","infoSlide":"","content":"This House, the US Congress, Should enforce the war powers act by limiting the ability of the executive branch to independently use military force against or within the boundaries of sovereign nations, except when authorized by Congress.","tournamentID":"pgslzxqwnT5Ei6UMGh69","round":"Open_Final","link":"","division":"","topic":{},"id":"oAnIghB6r4YA4iJdOZV2"},{"link":"","division":"","tournamentID":"Sf18naS6qmQzDSIMNRFV","topic":{},"infoSlide":"","content":"THR the rise of ideological purity policing.","language":"English","round":"Open_Quarters","id":"oBFtekeErPkYWR69NSdv"},{"language":"English","tournamentID":"1dEXZTvvRtTWhdBLmzFt","topic":{},"content":"This House Believes That South Korea should abandon the goal of, and all policies which aim at, Korean reunification.","infoSlide":"","round":"5","link":"","division":"","id":"oBg6povD7rfib0suHFRK"},{"content":"This house regrets the rise of international adoption.","link":"","topic":{},"language":"English","tournamentID":"6mCNGJYhhrCUYIhAm6FN","round":"Open_Semis","division":"","infoSlide":"","id":"oBwBgZBxKR5r3WXEfheV"},{"language":"English","topic":{},"tournamentID":"02vn4ksQhlUNksv2wu0q","infoSlide":"","link":"","round":"2","content":"THR the narrative that being a nurse is a calling rather than a job.","division":"","id":"oCDegxgK3kRYRRlsrxhN"},{"division":"","round":"3","tournamentID":"1dwGdjAn9pODo8bQfmJW","content":"TH, as a non-profit/charity organization working with marginalized young and adult men, would embrace the perceived traditional ideals of masculinity rather than campaigning for the deconstruction of masculinity.","topic":{},"link":"","language":"English","infoSlide":"","id":"oCEHDioZ73s8O3i9DRiX"},{"language":"English","content":"THW require individuals to donate 75% of their annual income above £1 million to charity.","topic":{},"infoSlide":"","round":"5","tournamentID":"keyU5X5APEvFXLaZwxeM","link":"","division":"","id":"oDV4VWiCZyksOIeIMl58"},{"tournamentID":"TAVBVNzO0c2PrQ44iAyC","infoSlide":"","content":"THW financially assist inner-city neighbourhoods in order to prevent gentrification, for instance by subsidizing mixed-income housing over public housing projects.","language":"English","link":"","round":"4","topic":{},"division":"","id":"oEzemHZA2qlNRMJHHJva"},{"infoSlide":"","round":"Novice_Final","division":"","topic":{},"language":"English","link":"","content":"Instead of leaving the decision up to the producing company, THW legally require that Self-Driving Cars produced by companies always choose to maximise the number of lives saved, even if it leads to the death of the passengers.","tournamentID":"S2mG18EWYdh2bPEadyd9","id":"oGYxRBWdF83XUezDjpRh"},{"division":"","round":"2","language":"English","link":"","infoSlide":"","tournamentID":"4Nqwg2GbRwaUJ5LaWcSt","topic":{},"content":"thw make it a war crime to kill child soldiers in any circumstance.","id":"oIEt3CsdfL0oxoKKXZCu"},{"division":"","topic":{},"tournamentID":"a6rNMpZKAK9f2nCSkXu1","language":"English","infoSlide":"","link":"","content":"This House Believes That scientific literature should be free.","round":"5","id":"oIHflyuhQuoCe2odBrc8"},{"language":"English","topic":{},"infoSlide":"","content":"THBT regions with extremely high rates of gendered violence should grant amnesty to women for violent crimes they commit.","link":"","round":"1","division":"","tournamentID":"SGi6PbXyMszZpWzTP1JN","id":"oJC3Pkc7FbBsRLk30G44"},{"round":"Open_Final","link":"","language":"English","division":"","content":"TH, as the Pakistan Army, would support the Musharraf verdict.","tournamentID":"NHUypnZQCfkPD98j8TYR","topic":{},"infoSlide":"","id":"oJM6ckpGaz0LS9ql4Jjq"},{"language":"English","link":"","infoSlide":"","round":"Open_Final","content":"THW Not Shoot the Naked Soldier.","division":"","topic":{},"tournamentID":"pjVFBJWiohJyZdRBk33H","id":"oJpoMUDhyClITa0J7ihW"},{"infoSlide":"","language":"English","division":"","content":"THBT access to the internet is a human right.","link":"","round":"1","tournamentID":"0M48sfM68g8U5RgkKD2l","topic":{},"id":"oJvx7ywhvVFvwYUCiCGh"},{"round":"Open_Final","infoSlide":"","topic":{},"content":"THW make all punishments imposed by the criminal justice system proportional to the wealth of the accused.","language":"English","link":"","tournamentID":"K6vtfx7dBNzsAtTkNiF1","division":"","id":"oKxIhlZHQk2ML01ZV2Im"},{"topic":{},"language":"English","division":"","content":"THW have elected representatives take an oath to pursue policies only if those policies are supported by a significant majority of their constituents.","link":"","tournamentID":"lItvEbHHU24VVqcwipRq","round":"Open_Final","infoSlide":"","id":"oLFaQkOKNdy87CS2v0hU"},{"link":"","round":"Open_Final","tournamentID":"dYmkkVK8aVn1dCgd4UDy","language":"English","division":"","infoSlide":"","topic":{},"content":"Do we need a United States of Europe?.","id":"oLbqNigWmAVFYmeveZKf"},{"content":"THW vote Republican.","link":"","tournamentID":"ZxUcdMSTBBFZQIuIsGtb","language":"English","division":"","round":"3","topic":{},"infoSlide":"","id":"oLlO38RMKRsZZ8vee6gb"},{"tournamentID":"NHUypnZQCfkPD98j8TYR","infoSlide":"","content":"TH, as progressive student movements in Pakistan, would publicly ally themselves with progressive student movements in India.","language":"English","round":"Open_Semi","link":"","topic":{},"division":"","id":"oOy1c1Jk9gCOjrfZoULN"},{"division":"","infoSlide":"","topic":{},"round":"Preliminary","language":"English","link":"","content":"That it is better to choose a high-paid job that you are uninterested in than a low-paid job that you like.","tournamentID":"SPjgjrpUBIPs6H9gmx9P","id":"oPASDwjQ8zeTAUxggr0P"},{"division":"","link":"","topic":{},"round":"3","content":"THW not allow businesses that are bailed out by the government to buy back their shares.","tournamentID":"7eFEPGI7iZMY9BTHG43T","infoSlide":"","language":"English","id":"oPCqvOKcwmxn3ejloFzx"},{"round":"4","content":"This House believes that film studios should seek to select racially diverse casts when converting books into films even if it differs from the author's original character description.","tournamentID":"jpLuasMJYB40s1bJk2Ia","division":"","link":"","language":"English","infoSlide":"","topic":{},"id":"oPKjYGXq3PFEWWUTEo1d"},{"tournamentID":"tGXgNi0S9KFBe1hUBu15","topic":{},"language":"English","content":"THW mandate retirement from Congress at age 65.","link":"","division":"","round":"1","infoSlide":"","id":"oPNelwkub9gUiAbsw7Fq"},{"content":"TH prefers a world without sexual attraction.","tournamentID":"OJi1hwkxrfVjCOf6ZDRH","link":"","infoSlide":"","topic":{},"language":"English","division":"","round":"Open_Semis","id":"oPq5vBI63r84fJ1RbwzE"},{"content":"THW ban the research, production and use of lethal autonomous weapons.","round":"3","link":"","language":"English","topic":{},"division":"","infoSlide":"","tournamentID":"tp2xo2eFva2we2bqlQBC","id":"oQCcGotkcYC6jjujt2Bw"},{"infoSlide":"","language":"English","tournamentID":"8DernPpRwzBf2YIkESEX","content":"THS the idea of authoritarian reformers in developing countries.","division":"","round":"Open_Final","link":"","topic":{},"id":"oQQQR7Rjc3Pq9zChfI00"},{"tournamentID":"S2mG18EWYdh2bPEadyd9","content":"THBT developing countries would ban the purchase of land by foreign individuals and companies.","language":"English","link":"","round":"2","division":"","topic":{},"infoSlide":"","id":"oQf1vnVMbl0826Ecmkpr"},{"division":"","topic":{},"language":"English","link":"","infoSlide":"","tournamentID":"uES9ygXHa8tJuYB7dFEM","round":"1","content":"TH supports job security legislation.","id":"oQwmADkDNMzJGkT44gzj"},{"round":"Open_Quarters","infoSlide":"","link":"","topic":{},"content":"THBT militaries should prioritize spending on cyber security over physical security.","division":"","tournamentID":"seLxlAUewt8fbZdlsCGC","language":"English","id":"oR4m1EMP9SNVofgYiPgy"},{"infoSlide":"","link":"","topic":{},"division":"","language":"English","tournamentID":"4dzoeUxkRP5WxDaCVtbY","content":"THBT in criminal court cases the jury should be comprised of individuals from the same racial and socio-economic background as the defendant.","round":"1","id":"oR8sGIh45od6jaRAaX5p"},{"topic":{},"infoSlide":"","link":"","round":"Open_Final","division":"","tournamentID":"98I1jSQnLhtFnsr8fu0R","language":"English","content":"THBT the Democratic Party should give up their attempts to regulate firearms and openly seek the complete abolition of firearms (approximate wording).","id":"oREYHTU7GBWrIJsoKGey"},{"link":"","round":"Open_Quarters","content":"THBT it is in China's interest to take the lead in subduing North Korea.","language":"English","topic":{},"infoSlide":"","tournamentID":"ukcS5bJ2TUuNfMuzta0w","division":"","id":"oS2VYWBNBVFXe48XIBro"},{"link":"","language":"English","division":"","round":"5","infoSlide":"","content":"THB that the countries of former Yugoslavia should create a common history curriculum and textbook.","topic":{},"tournamentID":"Gx29hnXeBrSjBZrrDKx8","id":"oSvj5tzouT5M4VLQmZZw"},{"tournamentID":"KE7jdAyW9az9nKVb9FMV","link":"","language":"English","infoSlide":"","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"content":"THBT victims of violent crimes should decide the sentence of the offenders.","round":"","division":"","id":"oTbUKFdU14CRKxLB3RqJ"},{"topic":{},"link":"","content":"THW compel HIV infected people to disclose their HIV status to their sexual partners.","infoSlide":"","round":"Open_Final","division":"","language":"English","tournamentID":"1iGKg5a8rDH4ci9OIYEG","id":"oUVoDkaLagqXhhCR0Ic9"},{"link":"","infoSlide":"For the purpose of this debate, the \"Two-Child Policy\" refers to a policy where each adult is granted a tradeable permit to have one child (e.g. a couple, without buying and selling extra permits, can have up to two children). Assume that the policy can be effectively enforced, such that no child is born without their parents having the required permits.","division":"","language":"English","round":"","content":"THBT the \"Two-Child Policy\" should be implemented across the world.","tournamentID":"mNwitMoNsjWupgwG8pR5","topic":{"hr":{"title":"Human Relationships","check":true}},"id":"oUdY5ZiuFZrvOKnpIoLQ"},{"infoSlide":"The common farming exception is a clause in most animal cruelty legislation that states that an action cannot be animal cruelty if it is common farming practice.","topic":{},"tournamentID":"CBVZREYhjV5bhCHOuWjU","content":"THW abolish the common farming exception.","link":"","language":"English","division":"","round":"5","id":"oV09D5Fe1B5RJpvrsveN"},{"link":"","content":"Assuming feasibility, This House believes that the Holy Kaaba should be under the custody/guardianship of the OIC, instead of Saudi Arabia.","infoSlide":"The Kaaba is a cube shaped building at the center of Islam's most important mosque, (Masjid al Haram) in Mecca, Saudi Arabia. It is the most sacred site in Islam and is considered by Muslims to be the House of God. Muslims orient themselves toward this building during the five daily prayers, bury their dead facing its meridian, and visit it on pilgrimage. The Saudi government's oversight of the building complex marks one of its primary claims to authority and legitimacy in the Muslim world. The Saudi King bears the title of official custodian. The Organisation of Islamic Cooperation is an international organisation consisting of 57 member states, with a collective population of over 1.8 billion. The organisation states that it is \"the collective voice of the Muslim world\" and works to \"safeguard and protect the interests of the Muslim world in the spirit of promoting international peace and harmony\".","division":"","language":"English","tournamentID":"5SXUtPGKmOtgXxWouFAs","round":"5","topic":{},"id":"oVgCYRhe3aYZkdlGJOPC"},{"topic":{},"infoSlide":"","content":"THBT the EU should materially support anti-Russian political movements in Eastern Europe and the former Soviet Union.","tournamentID":"x0AmWHi8lm3JhQyyhsfo","link":"","round":"Open_Semis","division":"","language":"English","id":"oWC9rCiRo7S6UKZmrO9e"},{"infoSlide":"","language":"English","topic":{},"content":"THW exempt academic disputes from defamation law.","tournamentID":"zngB1WF8viOW2uGu6swZ","round":"8","division":"","link":"","id":"oWe5zaQBDDafaxTq048t"},{"round":"6","language":"English","division":"","content":"THBT affirmative action should be scrapped.","link":"","tournamentID":"lItvEbHHU24VVqcwipRq","infoSlide":"","topic":{},"id":"oXSGfZY9rZURGQEvuU78"},{"link":"","topic":{},"division":"","content":"THS the New Atheism movement.","language":"English","infoSlide":"","tournamentID":"tC9C0k05cAmtT3IBK2AV","round":"Open_Semis","id":"oYIzUAuscUJkbPruA5iV"},{"topic":{},"content":"THW abolish NATO.","tournamentID":"jHRVS3aznjPPQaxWT8bs","link":"","infoSlide":"","round":"5","division":"","language":"English","id":"oYNoGKlm2hHQsfjlrdN4"},{"link":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","division":"","language":"English","infoSlide":"","content":"That we, as a Catholic priest, would actively endorse liberal values that do not align with the Catholic Church.","topic":{},"round":"ESL_Final","id":"oYlSzU3YUBtbYsguWf2c"},{"topic":{},"division":"","content":"(Assuming equal cost feasibility) THP UBI instead of traditional Welfare Programs(Medicare, Food stamps, PMJDY, etc) to tackle poverty.","round":"6","language":"English","infoSlide":"","tournamentID":"WcNueZiJXeg9z82dijdL","link":"","id":"oZKb0Q29TdmeBNATO5F2"},{"division":"","language":"English","infoSlide":"","round":"2","tournamentID":"7bcIb5yS1YVpFE3hzoDf","topic":{},"link":"","content":"THS filial responsibility laws.","id":"oZYvJKlS28xJqKlKYZi6"},{"content":"THBT capitalism is incompatible with LGBTQIA+ justice.","division":"","infoSlide":"","topic":{},"link":"","round":"5","tournamentID":"9yPqE2fe1oaHsd7ankOa","language":"English","id":"oaWTvO6iBf6GBkfws8aO"},{"link":"","division":"","tournamentID":"5dx9HmyPaBDPB6JstQGb","infoSlide":"","content":"THB enterprises and charities are more effective for development than official development assistance (ODAs).","round":"2","topic":{},"language":"English","id":"ob7lK390koGA7TBJrNIJ"},{"division":"","infoSlide":"","content":"THW ban all procedures to alter one's racial appearance.","topic":{},"round":"1","tournamentID":"hxlmkaNuNgQ6AIDlbsIh","link":"","language":"English","id":"ob8wjlKQyykJqNKrKQK9"},{"round":"3","link":"","infoSlide":"","language":"English","tournamentID":"GyiwbDg4TBAWCn1HmjKi","topic":{},"content":"THW ban religious proselytization in prisons.","division":"","id":"obIyYMEE5SEvE37fuMJA"},{"language":"English","topic":{},"link":"","division":"","tournamentID":"rTasJ7TWWuEMSXmebOaC","content":"THW follow the prophet (m/f).","round":"2","infoSlide":"","id":"obZQc3ZBIWpIU8M06lSB"},{"tournamentID":"aL5gnSWQ3OQq2Lb3mRix","link":"","round":"5","language":"English","division":"","topic":{},"infoSlide":"","content":"THBT, in new democracies, military leaders should not be allowed to run for public office.","id":"oc5UqthNyEOyQtCvV8fL"},{"content":"THR the glorification of immediate postcolonial leaders in Africa.","tournamentID":"fzLPoPRlME1NEcvf7oVd","division":"","link":"","infoSlide":"","round":"2","language":"English","topic":{},"id":"ocWUCVXiOQIdyaqWV1cW"},{"division":"","content":"THW ABOLISH COMPULSORY REPRESENTATION.","link":"","infoSlide":"","language":"English","round":"Open_Octos","topic":{},"tournamentID":"YxG2TWeoQ8BT0rpxmfxT","id":"odQ6mTR6sewtaLlEkYdw"},{"content":"You are a working class voter in a swing seat constituency between high-welfare, high-taxation party and a low-welfare, low-taxation party. THW vote for low-wlfare, low-taxation party.","division":"","topic":{},"round":"5","infoSlide":"","language":"English","tournamentID":"3XjkQ3xKYDnPNq07ZvXY","link":"","id":"oennioUR2aj9dm6LCw1y"},{"division":"","round":"Open_Final","content":"TH believes in God.","infoSlide":"","language":"English","link":"","topic":{},"tournamentID":"Hk8f1ASR1JhJdfu9tmfK","id":"ofIe1En4lx0PAiwSROrR"},{"topic":{},"round":"4","content":"After a speaker has been invited, this house would allow university to vote to reject the speaker from coming to campus.","link":"","tournamentID":"sXtyoMtY4Bb7XJvcqA3J","language":"English","division":"","infoSlide":"","id":"ofiRUiT9rMhlv8zcRSHP"},{"round":"4","tournamentID":"E91ZTw8wNjTYuX6RmZCc","topic":{},"content":"THW ban corporate sponsorship of academic research.","link":"","language":"English","infoSlide":"","division":"","id":"ofwMuI5cJBCTZao49Uaz"},{"content":"This House believes that the US-led coalition should no longer insist on Assad stepping down as part of their negotiations with Russia over Syria.","language":"English","infoSlide":"","tournamentID":"jpLuasMJYB40s1bJk2Ia","round":"Open_Quarters","link":"","topic":{},"division":"","id":"og2wUHPwP3aiBVMXblZj"},{"round":"Open_Final","division":"","tournamentID":"FIZrOByzWbUCfXyq56hs","topic":{},"link":"","language":"English","content":"THW save Schlecker (a drugstore chain that is bankrupt).","infoSlide":"","id":"og8vVxx6nbMIAoznMjHP"},{"link":"","language":"English","round":"4","tournamentID":"ZClJskShp09gm6WCITGC","infoSlide":"","division":"","content":"As part of the post-conflict government transition, TH, as the US would have partitioned Iraq into 3 separate states.","topic":{},"id":"ogC0wGAMthDRhqyVjwIv"},{"division":"","content":"THW make the payment of family allowances conditional on school attendance.","link":"","topic":{},"tournamentID":"nMUJTA4Krf9MyO7MGVzA","round":"13","language":"English","infoSlide":"","id":"ogUnbGS8mjOF9GaFYE2O"},{"tournamentID":"MgpFX31hoBasrUiOV7Eu","round":"4","link":"","infoSlide":"","content":"THW embrace transhumanist philosophy.","division":"","language":"English","topic":{},"id":"ogociDOTsAF6ourO0OdP"},{"content":"THW compel citizens to vote in national elections.","language":"English","infoSlide":"","division":"","link":"","round":"1","tournamentID":"OZYKzIzIg9zKy9OOiaP3","topic":{},"id":"ohAL73RMIDuNWe6ae2gE"},{"link":"","tournamentID":"683xp6VC99fyKWXfWS9H","topic":{},"division":"","infoSlide":"","language":"English","content":"THW ban essential service workers from striking.","round":"Novice_Quarter","id":"ohQJF0bSgV9USie7gSxZ"},{"round":"1","language":"English","tournamentID":"TMBmC1MQwez0ZjQdNyHU","division":"","infoSlide":"","topic":{},"content":"THBT monogamy is outdated (Long term exclusive relationships).","link":"","id":"ohrHSjDe5EjOc0Q64FJy"},{"content":"Through NSA spy networks, this House - being the US gov't - has determined that the largest of several Ukrainian opposition groups (USAR) is imminently launching a violent coup against the Ukrainian government. THW warn the Ukrainian government.","tournamentID":"yTe5SQuwd4eeae0M0Sc9","round":"Open_Finals","topic":{},"language":"English","division":"","link":"","infoSlide":"","id":"oj881mznpX4NnmcKlttj"},{"round":"Open Grand Final","tournamentID":"ruG3JCf2Mh62VDkchi11","language":"English","link":"","content":"THBT youth-based political parties in developing countries should include the fight for queer rights in its manifesto.","infoSlide":"","division":"","topic":{},"id":"okv3qqdNgSInzRe1lQ78"},{"language":"English","division":"","round":"Open_Final","infoSlide":"","topic":{},"content":"You are a Western Liberal democracy in a four-year long brutal and bloody war of attrition against an imperialistic dictatorship. Every Christmas, there is a football match between the two sides and a ceasefire. Attending the match are high ranking political and military persons of both sides, the killing of which would benefit greatly the other side. Motion: THW violate the ceasefire and kill the leaders.","tournamentID":"khQAvAFibcPAXBKfxTNY","link":"","id":"okvwPBZPUUvOlnY489Kh"},{"tournamentID":"JvpXQ1DYmWydXXgsnZ74","infoSlide":"","link":"","language":"English","content":"THW lift the ban on Communist symbols in all post-communist EU member states.","division":"","round":"3","topic":{},"id":"olOh5jD3meYpulKihgTP"},{"tournamentID":"7vCURwwkA80JiqPvxSZu","language":"English","division":"","content":"THW preemptively strike North Korea.","link":"","infoSlide":"","topic":{},"round":"3","id":"ooWms0B7MaJ4tCrXpcqF"},{"tournamentID":"0DgXee32WEP3hxmGZExS","round":"17","content":"THW publicly fund research into paranormal phenomena.","division":"","language":"English","infoSlide":"","topic":{},"link":"","id":"or8gDcfcJQhNMXV32Lma"},{"language":"English","division":"","topic":{},"infoSlide":"","tournamentID":"se3rzB8xVp0Ph3sVbug3","round":"3","content":"THW genetically engineer major meat animals not to feel pain.","link":"","id":"orDHOUxwqtJ8YnzhVViy"},{"content":"THW cap prices for vitally important goods like bread and milk.","link":"","round":"1","infoSlide":"","tournamentID":"DLFJWaIyHnSlvFofovjc","division":"","topic":{},"language":"English","id":"orfyejFKIM4m0FCbHb2P"},{"tournamentID":"xUGmMsj95M2w5CV6WYVA","content":"Assuming there is a drug that increases individuals tendency to pacifism, TH, as the state, would lace the country's water supply with the drug.","link":"","language":"English","round":"ProAm_Final","topic":{},"infoSlide":"","division":"","id":"osRFegslyx4iidr58mwa"},{"content":"THS Governments Significantly Increasing Their Use of Big Data Based Predictive Models in Decision Making to Replace Human Judgements.","division":"","tournamentID":"JsJHH6odeVuMVnQ8A5bN","link":"","language":"English","infoSlide":"","topic":{},"round":"3","id":"oszS941Ehcw8WQ7UKw1a"},{"topic":{},"tournamentID":"fBPBbh32BZ2p0Y1Fy5Yi","content":"Chúng tôi sẽ chọn diễn viên cho các bộ phim lịch sử dựa vào khả năng diễn xuất thay vì độ tương đồng của đặc điểm nhận dạng. (Độ tương đồng của đặc điểm nhận dạng bao gồm màu da, vóc dáng, v.v.)","language":"Vietnamese","round":"Semifinals","division":"","infoSlide":"","link":"","id":"ot6A8bn4V9wGzyAc7Nh0"},{"link":"","language":"English","division":"","content":"THBT the pursuit of normalisation of relations with Israel by Gulf states is in the interest of the Middle East.","round":"Grand Final","infoSlide":"Gulf States refers to Bahrain, Kuwait, Oman, Qatar and Saudi Arabia and the United Arab Emirates. The second half of 2020 has seen an accelerated rate of normalisation of ties with Israel by Gulf states. The “Abraham Accords” were signed with the United Arab Emirates (UAE) in August, and Bahrain a month later normalising ties with Israel. Normalising relations includes but isn’t limited to resuming diplomatic ties, trade and investment agreements, technology and security agreements, etc. Oman and Saudi Arabia have established semi-official relations with Israel, with Saudi Arabia gauging the prospect of normalisation. Before August 2020, only two Arab countries had officially ties with Israel - Egypt in 1979 and Jordan in 1994.","tournamentID":"mxxjZaa0262HoUjjXfj8","topic":{},"id":"otKJXppRxyWJ59Vb4gVC"},{"link":"","infoSlide":"","topic":{},"content":"THW, ban national football teams who fans use racist or homophobic chants, from international competition.","language":"English","tournamentID":"idhVYyUwgWnlyak17o8K","round":"1","division":"","id":"otNmJrNsLWiuSyhcccav"},{"topic":{},"language":"English","infoSlide":"","tournamentID":"MNBafFvHXt5WwIet1zGa","division":"","link":"","round":"5","content":"This house regrets South Africa's rainbow nation narrative.","id":"oudLdapkI5P9ISHaHYna"},{"infoSlide":"","division":"","link":"","tournamentID":"qLVUbjlIT84ro50ixBwk","content":"THW exclude Turkey from NATO if it Continues Bombing Kurdish Troops in Syria and Iraq.","language":"English","round":"5","topic":{},"id":"oueNMj9SIjq2IFs26Kuj"},{"division":"","round":"4","language":"English","topic":{},"infoSlide":"","tournamentID":"Wg2225mgODwBGF4GMBLR","content":"TH, as the US, would re-impose sanctions on Myanmar until the Rohingyas receive political representation.","link":"","id":"oufkmu3z37aDVUdNbh1I"},{"topic":{},"division":"","tournamentID":"QDGMrdrzlFCxVT5WcqNn","round":"Open_Semi","content":"This house would abolish the Second Amendment.","infoSlide":"","link":"","language":"English","id":"owYdxjsryTG6pTqa3Ltu"},{"division":"","language":"English","infoSlide":"","topic":{},"link":"","tournamentID":"IliTD9CbISxS4XPApnIH","content":"THBT Elizabeth Warren should aggressively challenge Hilary Clinton for the presidency.","round":"Open_Semis","id":"owZpuHvl1kzmIcdC7eJY"},{"link":"","round":"3","tournamentID":"YxG2TWeoQ8BT0rpxmfxT","language":"English","topic":{},"content":"THW NOT ALLOW MEMBERS OF FAMILIES WITH OVERWHELMING SOCIAL INFLUENCE (e.g, The Adeleke Family in Osun State - Davido's family) TO CONTEST ELECTIONS.","infoSlide":"","division":"","id":"p0Dzx7Rfm4CCJrQe3mQR"},{"topic":{},"language":"English","link":"","tournamentID":"lVzNmdGBefqKp5cetQ6Z","infoSlide":"","round":"4","content":"THW break up banks deemed \"too big to fail\".","division":"","id":"p0LGtUe14y1vjB54esWi"},{"tournamentID":"7nPyt59LCWbXBYzvRfL4","division":"","link":"","content":"TH, as the WW2 Allies, would emphasize the contribution of the Red Army to defeat the Nazis.","topic":{},"infoSlide":"","language":"English","round":"3","id":"p0sviI2S6t9WAbaJRlDs"},{"content":"THB that governments in the developing world should invest in sex tourism.","infoSlide":"","division":"","language":"English","tournamentID":"gsX4dlvvsr6lcKP3eM2T","round":"Open_Octos","topic":{},"link":"","id":"p1Igl0qWVRH5MyOrZCEz"},{"division":"","language":"English","tournamentID":"L8JGtnnMnhA8w9ooOx0S","topic":{},"round":"Novice_Final","link":"","infoSlide":"","content":"THW would allow the armed forces to unionise, strike, and collectively bargain.","id":"p1LDPBSajlit6slIUMvR"},{"infoSlide":"","round":"4","division":"","tournamentID":"mBBGfJmUYufw4KNTlYoR","content":"Deaf culture is the set of social beliefs, behaviours, art, literary traditions, history, values and shared institutions of communities that are influenced by deafness and which use sign languages as the main means of communication. As a hearing parent of a deaf child, THW choose to mainstream your child to the exclusion of participation in deaf culture.","language":"English","topic":{},"link":"","id":"p1zxxHl6CAG8ZBWewNuL"},{"tournamentID":"nXN2yUG7soxwCp4xidzj","topic":{},"infoSlide":"","content":"This house, as the GOP senate leadership, would support Merrick Garland’s nomination for the Supreme Court - Round 8.","language":"English","link":"","round":"8","division":"","id":"p2Ig5QTvWR2cLfHkYfax"},{"tournamentID":"dhjYMHAKQ3baHl4HMJbh","round":"2","content":"THBT the media should out gay public figure.","link":"","topic":{},"language":"English","infoSlide":"","division":"","id":"p2OrumAiRCo4GMbKRi06"},{"language":"English","division":"","link":"","infoSlide":"","tournamentID":"YaTXOaEvPKh8XHB3VTBK","round":"5","content":"This House Believes That states formerly under the rule of the Soviet Union should NOT emphasize their history of struggle against Russian imperialism in constructing their national identity.","topic":{},"id":"p2mSn1FQd9GAbqhT42f4"},{"division":"","round":"Open_Semi_1","link":"","content":"THBT youth is wasted on the young.","language":"English","topic":{},"tournamentID":"CssaPdXkDgBy4xockIGM","infoSlide":"","id":"p3Pf98XHYwn5LzElMu76"},{"division":"","link":"","round":"1","infoSlide":"","content":"Chúng tôi sẽ bắt tất cả các trường đại học nhận học sinh dựa trên các phương pháp phi định lượng (bài luận, phỏng vấn,...) thay vì dựa trên điểm của bài thi chuẩn hóa.","tournamentID":"OLVGf3rE3KKirerr2vyk","language":"Vietnamese","topic":{},"id":"p3VyK2Rv34zl8GRFLKOj"},{"tournamentID":"riEZk6ypdW0s5dnVIggc","link":"","infoSlide":"","division":"","topic":{},"content":"THBT all bail-out packages should be approved by a popular referendum in the recipient party.","round":"1","language":"English","id":"p3hafaWN2mNHcE4g7GMJ"},{"language":"English","division":"","round":"Open_Final","link":"","content":"THR SCOTUS’s decision to legalize same sex marriage.","tournamentID":"BhBkit7bGTegIhEEknJU","infoSlide":"","topic":{},"id":"p3qCqRMRkse33R397CxI"},{"content":"THBT there is no moral obligation to follow the law.","topic":{},"infoSlide":"","link":"","tournamentID":"ZClJskShp09gm6WCITGC","round":"Open_Semis","division":"","language":"English","id":"p4eHOkwm02FD2BLORRMo"},{"division":"","language":"English","topic":{},"content":"THB European Football leagues should aggressively redistribute income from successful to less successful domestic clubs.","tournamentID":"VZL2SmUXq00WGPbW0ZRt","infoSlide":"","round":"5","link":"","id":"p54D398v2pRGaejHNPyF"},{"infoSlide":"","link":"","content":"THW declare sex with a trafficked prostitue rape.","tournamentID":"x1XtlIYDR23OSfEzPpkf","division":"","language":"English","round":"Open_Semis","topic":{},"id":"p59XPYFbNQ5zx9gRagH4"},{"link":"","infoSlide":"","round":"3","language":"English","tournamentID":"X4613Kz1qYjZyFPJzJlB","division":"","content":"TH supports social movements having strict standards for what members should believe e.g feminists excluding pro-life feminists from the Women’s March.","topic":{},"id":"p5Jur2yjlSmauhqAqG4L"},{"round":"1","link":"","tournamentID":"aUwwV3DTC7VLF1KaHJqj","language":"English","content":"THBT party nominees for UK general elections should be selected through open primaries.","topic":{},"division":"","infoSlide":"","id":"p6FIzwivjMK90vUmCPOW"},{"division":"","link":"","tournamentID":"5SXUtPGKmOtgXxWouFAs","content":"THS the creation of 'ASEAN bonds' to fund the post-COVID-19 regional economic recovery.","round":"ESL Grand Final","infoSlide":"ASEAN bonds' would be debt investments whereby the entire ASEAN bloc could collectively borrow money from foreign investors.","language":"English","topic":{},"id":"p7HE9MrtRLGrfW62Ailb"},{"round":"2","language":"English","topic":{},"link":"","content":"THW punish bullies through the courts instead of through schools.","tournamentID":"AZDyYLAFE8Mh41BShv5m","division":"","infoSlide":"","id":"p81i6YMkAiNFsLZTgG0J"},{"topic":{},"division":"","infoSlide":"","language":"English","tournamentID":"SGpBjVPnJkFrJB0hnxYv","content":"Given a way to accurately measure an individual's empathy, THW only allow individuals with high levels of empathy for people beyond their immediate circle to vote in elections.","link":"","round":"3","id":"p8ENo8Uy5Q64fh61xAk3"},{"language":"English","tournamentID":"y0zBNckmXRI4bCqMyXLg","infoSlide":"","division":"","round":"2","content":"TH supports Israel’s targeted assassinations of prominent members of Hamas.","topic":{},"link":"","id":"p8PbOvcBHc8zPkVzOaM9"},{"round":"6","link":"","infoSlide":"","division":"","topic":{},"tournamentID":"lM9u9z6CfHfA9HPucSIT","language":"English","content":"TH supports nations marketing themselves as destinations for ‘good time tourism’ (for the purpose of this debate, good time tourism refers to every form of tourism that satisfies human desires and is generally forbidden in the West (prostitution, drugs).","id":"p8Txq4sjpH4qTPV0kKsy"},{"tournamentID":"RNJanNDlcAfI2uIKx9LF","content":"Nếu có thể, chúng tôi lựa chọn sinh ra trong một thế giới không có tôn giáo.","division":"","infoSlide":"","language":"Vietnamese","round":"3","link":"","topic":{},"id":"p8u4NCsRM4SwqyfAEJwC"},{"link":"","division":"","topic":{},"round":"5","language":"English","content":"THBT developing countries should support commercial surrogacy.","infoSlide":"Surrogacy is an arrangement in which a woman carries a child for another person or couple.","tournamentID":"QVeTcZONRdDbH5LSNeSf","id":"p9K6bku9WLPbvMIULQRg"},{"division":"","content":"THBT the USA should publicly apologise for the bombing of Hiroshima and Nagasaki.","topic":{},"infoSlide":"","language":"English","round":"Open_Final","tournamentID":"vTB5rmh37ZMzdOCJ34sF","link":"","id":"p9Q1xyQ6K1G2hxxGoKlF"},{"tournamentID":"Biz1VRjjdg8eWbm4NJr3","topic":{},"infoSlide":"","round":"3","content":"This house believes that governments should not provide benefits on the basis of marital status.","division":"","link":"","language":"English","id":"p9mYjXfv3QpwO8Y2cSUK"},{"tournamentID":"XzAs4cMVeW91DHEgxF0k","link":"","division":"","round":"2","topic":{},"language":"English","content":"THP a world where the pill exists.","infoSlide":"","id":"pA8gBt42wiy5FZHIgQen"},{"division":"","language":"English","content":"THW not allow countries undertaking military intervention abroad to harvest natural resources while they are there.","round":"4","infoSlide":"","link":"","tournamentID":"K8mVAYwcb9xlXvnmmJBY","topic":{},"id":"pAw0961Ztf7LqptOzAhn"},{"infoSlide":"","language":"English","topic":{},"tournamentID":"zm3L9uKWbGV2QY1WRlcJ","content":"THBT America and the EU should cease all financial, political and military aid to both Israel and the Palestinian Authority until they reach a peace deal.","round":"5","link":"","division":"","id":"pBDCjjJd9xGd4kL85KPt"},{"content":"Chúng tôi lấy làm tiếc về quan niệm phổ biến trong giáo dục trẻ em \"cái thiện luôn chiến thắng cái ác\".","tournamentID":"OLVGf3rE3KKirerr2vyk","link":"","language":"Vietnamese","round":"Semifinals","division":"","topic":{},"infoSlide":"","id":"pBS2LWBVZniPPH6nkUoX"},{"link":"","language":"English","infoSlide":"","division":"","topic":{},"content":"Actually, THW rather see one innocent man go to jail than a 100 guilty men walk free.","round":"5","tournamentID":"McARyCvnNLDmzAARI8jE","id":"pBSe5FlFvIRvvnvQYNeF"},{"tournamentID":"5Qomv7BFHTKmY4PchwDr","link":"","round":"EFL_Final","language":"English","division":"","topic":{},"content":"That activist movements should embrace cancel culture as a tool to promote social change.","infoSlide":"","id":"pBWj136LJPvGwX0K129m"},{"language":"English","tournamentID":"vOzlUiodV5GoF1ZtM5Tt","topic":{},"infoSlide":"","round":"2","division":"","content":"Where resources are significantly limited, THBT states should actively promote religion in areas of high poverty.","link":"","id":"pBe5mwtFO9IapbB744Xm"},{"round":"2","tournamentID":"Hq4qmpVpWAzn16SzuUU8","content":"THW hold the Catholic Church legally responsible for sexual abuse, harrasment and grooming committed by clergy members.","language":"English","division":"","topic":{},"link":"","infoSlide":"","id":"pBf29MoLBBoBQQ609DAx"},{"link":"","topic":{},"division":"","content":"THBT former colonial powers should not be involved in peacekeeping and nation-building in their former colonies.","language":"English","tournamentID":"yK2aesNii4f0c4vvqYng","round":"4","infoSlide":"","id":"pBpXf5kH8oMec5v3eL9c"},{"division":"","tournamentID":"OAcOsXro6vLkyCebuX4n","language":"English","link":"","round":"1","content":"THW abolish all political parties.","infoSlide":"","topic":{},"id":"pC8m1g4lqFacQjvJ7Rf3"},{"link":"","content":"THW no longer require parental consent for administering invasive procedures on adolescents (e.g. piercing and tattoos, cosmetic surgery, sex reassignment surgery, etc.).","round":"2","infoSlide":"","topic":{},"language":"English","division":"","tournamentID":"MgpFX31hoBasrUiOV7Eu","id":"pCUS8yb85Eh1DtgVNgBm"},{"language":"English","topic":{},"division":"","infoSlide":"","tournamentID":"XBFpAL1r3TobjAN8vT20","content":"The U.S. should declare a cyber war against Russia.","round":"5","link":"","id":"pCh2labrJQ9QTfxMELFS"},{"round":"3","infoSlide":"","content":"THP a world where people cannot lie.","language":"English","topic":{},"tournamentID":"ltPXjwYNooGAx72v9bz6","division":"","link":"","id":"pDpI5aDlEtGNSZ5oCaAB"},{"division":"","content":"THBT convicted criminals should be allowed to raise their children in prison.","language":"English","infoSlide":"","topic":{},"link":"","tournamentID":"SjQ6g8g2URks9WV96X0G","round":"Open_Final","id":"pDyvYytq7mJ8x8s9WM03"},{"link":"","topic":{},"content":"THBT human rights activists in post-conflict societies should neither advocate for political parties nor run for election in the transition to democracy.","language":"English","round":"Open_Octa","infoSlide":"","tournamentID":"683xp6VC99fyKWXfWS9H","division":"","id":"pE7AXhLHjGUXd8EDNiuy"},{"content":"Chúng tôi sẽ cấm các công ty tài trợ cho nghiên cứu trong các cơ sở giáo dục hoặc các tổ chức học thuật.","infoSlide":"Trong bối cảnh của trận tranh biện này, 'các công ty' là các doanh nghiệp vì lợi nhuận.","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","language":"Vietnamese","round":"6","division":"","topic":{"economics":{"check":true,"title":"Economics"}},"link":"","id":"pE9y1KPXXWvpal9ZduvM"},{"language":"English","division":"","link":"","tournamentID":"IpWyfCcksctR86jKX66g","round":"Open_Semis","topic":{},"infoSlide":"","content":"THBT Schools Should Aggressively Stream Students According to their Ability From An Early Age.","id":"pERqAGrwQ3ztImrX0Bmd"},{"content":"THBT children under 18 with close relatives who are victims of FGM should not be allowed to travel outside the EU.","tournamentID":"7lMrN2aiwSzD5rzPFwHz","division":"","language":"English","link":"","infoSlide":"","round":"2","topic":{},"id":"pEe5Dd2HqXJurSOdxm9G"},{"infoSlide":"","content":"THBT the Brazillian government should encourage and facilitate the integration of uncontacted peoples into wider society.","topic":{},"division":"","round":"Open_Semis","tournamentID":"7DiEtR3YNKR69fHccj5Y","language":"English","link":"","id":"pFCAWT3GnHiUNNvAVI9P"},{"division":"","language":"English","link":"","infoSlide":"","topic":{},"round":"4","content":"This House would abolish the Olympic Games.","tournamentID":"wA1XDLHJESmSgLsfZ9Qe","id":"pGJck2mJOzzYDJF1HQFL"},{"tournamentID":"vTB5rmh37ZMzdOCJ34sF","division":"","round":"2","content":"THW programme self-driving cars to prioritise the number of lives saved when faced with unavoidable collisions as opposed to prioritising the safety of the driver.","link":"","language":"English","topic":{},"infoSlide":"","id":"pH7NHPJXugGDIu7beCBH"},{"infoSlide":"","division":"","tournamentID":"zppT86F7lAE0Gpp7tWYo","link":"","language":"English","topic":{},"content":"THBT true friends stab you in the front.","round":"D3","id":"pHfeOUYrxMHXjWcSVAlY"},{"link":"","tournamentID":"uHY8OFiOXYb0VdlJt20c","content":"This House would privatize NASA.","language":"English","round":"2","division":"","topic":{},"infoSlide":"","id":"pHyy4CWgF6XdRUxZlpmA"},{"link":"","infoSlide":"","round":"Novice_Final","tournamentID":"NBT7RwLHeAApXuOtrQpt","content":"THBT WLDs should introduce 'youthocratic' voting.","topic":{},"division":"","language":"English","id":"pINm1w4ewXE8Z7EDEFFy"},{"link":"","language":"English","division":"","topic":{},"round":"1","infoSlide":"","tournamentID":"X7PfztBaTR2KFk3oINtG","content":"THW require approval from local referenda for all major land development decisions (e.g stadiums, airport extensions, railways etc.).","id":"pISd7OFCbNaaBnynVXzO"},{"tournamentID":"eypKKJZLZblnh6KffyC5","round":"1","content":"THW admit Turkey into the EU.","language":"English","topic":{},"division":"","link":"","infoSlide":"","id":"pIU134XL6kBc7LhlknvS"},{"topic":{},"division":"","language":"English","round":"Open_Quarters","tournamentID":"DeCtrDtTjNPkklRZT0x6","link":"","content":"THW prevent wealthy individuals from being able to write off charity as tax-deductible.","infoSlide":"","id":"pIUdunYlFVe8cLunxp4m"},{"tournamentID":"1dEXZTvvRtTWhdBLmzFt","infoSlide":"","content":"This house supports first generation immigrants to Western Europe encouraging their children to fully assimilate and identify with the local culture.","language":"English","round":"9","division":"","link":"","topic":{},"id":"pIvY4KgKJ95AlMazpg8i"},{"content":"This House Supports the use of tiger parenting techniques.","language":"English","topic":{},"link":"","infoSlide":"","division":"","round":"4","tournamentID":"gmusL4yQ3HD8FyegVRpk","id":"pJBkogL8p8EKIxZw1d9m"},{"language":"English","content":"THO Pokemon battling.","tournamentID":"Z9WBfg1yDJgSR34BGYp1","division":"","link":"","round":"1","topic":{},"infoSlide":"Pokémon involves the catching and training of fictional creatures called \"Pokémon\" and using them to battle other Trainers.","id":"pJgqIZPJD9ZwJa60BR2i"},{"language":"English","round":"4","tournamentID":"JsQrI80phRuvDHr37q5N","topic":{},"content":"THBT retribution should not be a part of the criminal justice system.","infoSlide":"","link":"","division":"","id":"pJzgMX562cSHTJkxJuxq"},{"content":"THW rather be a part of “Club 27” thank live an average anonymous.","topic":{},"tournamentID":"LYTCjoO4snxI4nOKTVZB","language":"English","infoSlide":"","link":"","division":"","round":"Open_Semis","id":"pKIYPDI5U7vK6LspNrSY"},{"division":"","round":"2","topic":{},"language":"English","infoSlide":"","content":"THW provide financial incentives to individuals leading a vegetarian lifestyle.","link":"","tournamentID":"2hleRVQkc8xbkOnxRKOY","id":"pKT29ysLopJq07mrINRt"},{"infoSlide":"","tournamentID":"zbDMNQdzWmUf0FHPwYDO","content":"THW rank all charities by their Effective Altruism score and remove charitable status from all but the most effective.","link":"","topic":{},"division":"","language":"English","round":"5","id":"pLCRLbN25NirjZqa2rzB"},{"round":"3","division":"","content":"THBT The Palestinian people should abandon claims to independent statehood and publicly demand the merger of Palestine and Israel into a single democratic state.","language":"English","link":"","tournamentID":"BEDaS3pLJHS1T1Xr4txo","infoSlide":"","topic":{},"id":"pLcp22gSCrgVL0z5bYBP"},{"tournamentID":"WcNueZiJXeg9z82dijdL","topic":{},"link":"","infoSlide":"","content":"THBT women in politics actively moving away from \"the pantsuit\" does more harm than good.","round":"4","division":"","language":"English","id":"pLrXkIwQLOHezuNuvWMM"},{"language":"English","topic":{},"content":"THW directly elect public representatives by random lottery.","infoSlide":"","link":"","round":"1","tournamentID":"yK2aesNii4f0c4vvqYng","division":"","id":"pLtufXZ8XbGAXft6drHw"},{"tournamentID":"YxG2TWeoQ8BT0rpxmfxT","content":"TH supports the symbolized popularization of painful historical events in modern pop culture.","topic":{},"infoSlide":"","round":"1","division":"","language":"English","link":"","id":"pMI38VfzcEfosgwxwlgF"},{"round":"4","language":"English","infoSlide":"","division":"","topic":{},"tournamentID":"zNyImaL5diiDsd93AVoW","link":"","content":"THBT the trans movement should actively seek to separate themselves, their issues and their collective identity from the LGBTQ movement in their campaigns and in the public consciousness.","id":"pMtAEA0hGyFFrtb80Bpz"},{"division":"","topic":{},"language":"English","tournamentID":"QVxXxjR8GyCAclYLIVU9","infoSlide":"","round":"1","content":"THBT India should discourage arranged marriages.","link":"","id":"pNHazB7wCoMPATlAxIWy"},{"division":"","link":"","tournamentID":"2hleRVQkc8xbkOnxRKOY","infoSlide":"","topic":{},"content":"THW legalise euthanasia.","round":"1","language":"English","id":"pNyz7CWoyhSa2wXypnKo"},{"infoSlide":"","tournamentID":"0DgXee32WEP3hxmGZExS","topic":{},"content":"That military officers should be allowed to publicly criticise the government.","link":"","division":"","round":"26","language":"English","id":"pOViJyGIMgxQHWQoyDQn"},{"infoSlide":"","topic":{},"round":"1","language":"English","content":"TH, as the Ministry of Education, Youth and Information, would significantly reduce summer holidays.","tournamentID":"ErS5R7GooWYcG88PT27r","division":"","link":"","id":"pOYB6NBVB8SxNj6lUoX5"},{"round":"1","division":"","language":"Vietnamese","tournamentID":"sIrS2zWJD8m7ibVjvyDN","infoSlide":"","content":"Chúng tôi lấy làm tiếc việc các công ty công nghệ lớn (Facebook, Twitter, ...) cấm Trump khỏi nền tảng MXH của họ.","link":"","topic":{},"id":"pP98UEi0y3xYNcvHPGGA"},{"content":"THB that the Church of England should not allow the singing of Jerusalem in its services.","division":"","topic":{},"link":"","infoSlide":"","language":"English","round":"2","tournamentID":"fD5a3Vi9JDUEndfjCOKz","id":"pPyvyr713oeuxAMkQ34V"},{"tournamentID":"Ryhdb4JOJYP96e5oa49b","language":"English","topic":{},"infoSlide":"","round":"2","content":"THS immigration criteria based around culture - Round 2.","link":"","division":"","id":"pQ0pbrDUSXmSYf687Xvw"},{"link":"","language":"English","infoSlide":"","round":"2","topic":{},"tournamentID":"HQ85pr5BC7hv3GPpOuzX","division":"","content":"THW grant prison wardens the right to extend prison sentences as a punishment.","id":"pQBNYJk39ZdLNTfwv5U8"},{"infoSlide":"","topic":{},"language":"English","tournamentID":"8mQg9HgZBO4ebq8ubmRJ","content":"TH supports Athletic Bilbao's cantera policy.","division":"","link":"","round":"Open_Semis","id":"pQMErwldJ4lurk55DTHQ"},{"tournamentID":"4PekAtlXMCWdSTTJuMol","topic":{},"content":"In areas of high crime, this house would impose a curfew on men.","infoSlide":"","division":"","link":"","language":"English","round":"Open_Final","id":"pQMKWCl5ZT9Qdgkl7pih"},{"content":"THW ban protests at any event connected to a military funeral.","link":"","infoSlide":"","tournamentID":"nFlN14QQWlnlNwJKIDru","language":"English","round":"4","topic":{},"division":"","id":"pQXwzVZ0pOVXNzz4Tk0A"},{"link":"","tournamentID":"92dIEXeOXUVvlcFeGCIr","topic":{},"infoSlide":"","round":"EFL_Semis","language":"English","content":"TH would retrospectively criminalise excessively risky management practises for economically significant corporations and prosecute the executives responsible for them.","division":"","id":"pQZNrOgvrq6YOvh2NpQ2"},{"language":"English","topic":{},"link":"","content":"Assuming the existence of empathy enhancement drugs, THW ban such drugs*.","infoSlide":"","tournamentID":"cBdmYwHV9z5pBS0q23lF","division":"","round":"3","id":"pR0HIdesF2EJOX60SgAN"},{"content":"THB progressives should refrain from criticising Caitlyn Jenner’s endorsement of Ted Cruz - Semi Final 1.","topic":{},"round":"Open_Semis","tournamentID":"nXN2yUG7soxwCp4xidzj","link":"","infoSlide":"","division":"","language":"English","id":"pR1yaTJG90IjGkz1pUXK"},{"content":"TH regrets the Westernisation of the elites in post-colonial societies. (e.g. speaking predominantly in English, wearing western clothing, going to schools and/or universities in the West, consuming predominantly Western media).","division":"","round":"4","infoSlide":"","tournamentID":"tp2xo2eFva2we2bqlQBC","language":"English","topic":{},"link":"","id":"pRHPt6CjuIjqwMrlnUsN"},{"division":"","tournamentID":"uHY8OFiOXYb0VdlJt20c","round":"4","content":"This House would allow victims (and families of deceased) of gun violence to sue the sellers of the gun used in the act for compensation.","language":"English","link":"","topic":{},"infoSlide":"","id":"pSrS7gY8qz6ozu6nrgHB"},{"round":"5","tournamentID":"1hlmlrX6In8aTapDJoTu","language":"English","link":"","topic":{},"infoSlide":"","division":"","content":"THW ban the media from reporting on ongoing sex offence trials.","id":"pT0vC3nhN79PA1MUJed0"},{"tournamentID":"macdlwUjYqFCGHKvQS20","infoSlide":"","topic":{},"division":"","language":"English","round":"ESL_Semi","link":"","content":"This House believes that membership of the EAEU is in the interests of Central Asian states.","id":"pTPLaDhWXnrmOxmv6V6P"},{"tournamentID":"pLQyWywMwoV4AU3XoFJO","topic":{},"link":"","language":"English","infoSlide":"","round":"Open_Final","division":"","content":"This house believes that the media should not use the phrase 'big society' uncritically.","id":"pTsjpBraXgBU6pN16EFL"},{"language":"English","content":"THW cede control of all national parks to indigenous tribes. [Round 2].","topic":{},"infoSlide":"","division":"","tournamentID":"CjeO3WtFoEPJ0YkMQ3T2","link":"","round":"2","id":"pTxSL7zwZKR9ap9OQcJ8"},{"language":"English","division":"","link":"","content":"THW make fathers responsible for children, in financial and other terms, only if they have given explicit permission for their birth.","tournamentID":"vx330P6CYx2QKwkFUJiX","topic":{},"round":"Open_Final","infoSlide":"","id":"pUnuNQS7hqmPFCh024Qe"},{"division":"","topic":{},"round":"7","content":"THB it can no longer support the ‘Barclays Premier League’.","tournamentID":"zkhDsyR1rpDZXDiA2JUj","language":"English","infoSlide":"","link":"","id":"pUqqpTgBpX9ON1DVqgd4"},{"content":"in the context of The Matrix: THW take the Blue Pill.","tournamentID":"BjyPWHMlV10O4VN8B1XE","topic":{},"division":"","language":"English","infoSlide":"","link":"","round":"Open_Final","id":"pVtw9D0r8B3adyrORtFl"},{"content":"THR the narrative that a university education is the primary path to success.","topic":{},"link":"","language":"English","round":"2","division":"","infoSlide":"","tournamentID":"4V6pb0chg0WcRQyc6Zde","id":"pWFegh5tuFGTgXN671FA"},{"link":"","infoSlide":"","language":"English","division":"","topic":{},"tournamentID":"pp2oK2CPkxitjQPpwO4o","content":"THW criminalize the use of deep web regardless of the content it is used for.","round":"5","id":"pWdFcR4ERuslajWK8oWN"},{"content":"THBT charities and non-profit organizations should be given votes in elections proportional to the amount of donations they receive.","language":"English","round":"3","tournamentID":"fzLPoPRlME1NEcvf7oVd","division":"","link":"","infoSlide":"","topic":{},"id":"pWrpvJO3fORgE4SEDZN1"},{"tournamentID":"b9wXoxHWMOjvJu54cv9Q","round":"1","division":"","infoSlide":"","topic":{},"language":"English","content":"THW ban smoking entirely.","link":"","id":"pXQOSxDbijh0rNHgXUfP"},{"topic":{},"language":"English","round":"3","division":"","tournamentID":"l8sHmpUe0bZ9QUWrf0pm","content":"TH, as the USA, would destroy its stockpile of smallpox.","link":"","infoSlide":"","id":"pXbhDNae1l63Dg19JUVX"},{"division":"","round":"1","content":"This house would not wear a poppy.","infoSlide":"","link":"","topic":{},"language":"English","tournamentID":"3eIqWfLtHDOZRmzJt05T","id":"pXcvsKf6r4Qd5EzekfRs"},{"topic":{},"infoSlide":"","division":"","round":"2","content":"THW replace existing welfare systems with a universal basic income.","tournamentID":"i3UU49z9MRO6phe9r1BH","link":"","language":"English","id":"pXhruQTGw7PUKZ5eMfae"},{"infoSlide":"","content":"This house believes that the courts should break up consistently dominant political parties.","language":"English","tournamentID":"Biz1VRjjdg8eWbm4NJr3","link":"","topic":{},"division":"","round":"ESL_Final","id":"pYYBHfj9B08lVRq3W2Fg"},{"link":"","topic":{},"division":"","round":"Open_Final","tournamentID":"dqyYdikn4cY0oz6DCMkq","infoSlide":"","language":"English","content":"As Quadriga, THW not have retracted Putin's award (info).","id":"pZubl5dC7o9hX9quleYj"},{"language":"English","division":"","tournamentID":"3eIqWfLtHDOZRmzJt05T","infoSlide":"","link":"","round":"5","topic":{},"content":"This House supports the Lean In movement.","id":"paST9LThgaEx3z1UzmNs"},{"tournamentID":"P4io30tN10TYMqGkj2sX","content":"THR the decline in marriage rates.","language":"English","division":"","round":"4","infoSlide":"","link":"","topic":{},"id":"paeVECDcQO4nUzcHSvca"},{"language":"English","tournamentID":"IpxNM87k556VVsS2JAPu","division":"","topic":{},"infoSlide":"","round":"4","content":"TH regrets the existence of \"men in power\" or \"men’s rights\" groups.","link":"","id":"pcMba2MRWPPT2D2vRuNt"},{"division":"","infoSlide":"","round":"Open_Semi","tournamentID":"m6JzV67uYJSVBRpAbgL7","language":"English","content":"THBT developing nations should distribute, as a dividend to citizens, income derived from nature resource extraction.","topic":{},"link":"","id":"pcorAvCNoNzXvTUwQo4f"},{"division":"","tournamentID":"5ETrS816OeSAWdPhWEHf","link":"","language":"English","infoSlide":"","round":"15","topic":{},"content":"“TH Regrets the Demise of the Green Party”.","id":"pdNnHFBEHyLx2vamzsH6"},{"infoSlide":"","link":"","round":"Open_Final","content":"TH prefers a world where everyone believes in free will.","topic":{},"division":"","tournamentID":"jU6ofoRVsACbu04pXrg6","language":"English","id":"pe4KoKaiKncKbd9VDYwj"},{"division":"","language":"English","infoSlide":"","topic":{},"tournamentID":"kFpM1KUkMmDded3L4Zmm","content":"This house believes that the west should recognise the independence of Abkhazia.","round":"7","link":"","id":"pe6WxFQ4SHrh2w7WuPkV"},{"infoSlide":"","round":"Open_Final","topic":{},"division":"","language":"English","content":"TH supports nationalism.","tournamentID":"zngB1WF8viOW2uGu6swZ","link":"","id":"peTNGhzRmdqu8jIwqp9e"},{"tournamentID":"B2zJ5QeyI7MVcboS7m4U","round":"Open_Quarters","content":"THBT Emily's list should fund pro-choice male candidates.","link":"","division":"","language":"English","infoSlide":"","topic":{},"id":"pfUpruipDuaU5bPVesq9"},{"topic":{},"round":"Open_Final","tournamentID":"GwkssAj8zxpqlXlKBDqa","content":"THW make Drion’s pill publicly available.","language":"English","infoSlide":"","link":"","division":"","id":"pg76gHlzNBatCsroc7iU"},{"topic":{},"content":"Chúng tôi tin rằng các nhà hoạt động môi trường nên đặt trách nhiệm lên những hoạt động phá hoại môi trường của các công ty, tập đoàn lớn hơn là khuyến khích các hành động bảo vệ môi trường của cá nhân (hạn chế sử dụng nước, tái chế rác thải, v.v).","language":"Vietnamese","round":"3","link":"","infoSlide":"","tournamentID":"znXRdnU2llK8fXmHlci5","division":"","id":"pgNQQyMV8bUv99R7roOx"},{"infoSlide":"","link":"","language":"English","tournamentID":"XnmecTVfWWNVfWZaANER","content":"This House regrets the Belt and Road Initiative.","division":"","round":"7","topic":{},"id":"phIiOUKSXoyxtYz39ckw"},{"infoSlide":"","content":"THW demand international corporations operating in China to uphold the same environmental standards required in their home country.","division":"","language":"English","link":"","topic":{},"tournamentID":"PIBLfC67BXtpF7r3aqIV","round":"Open_Semis","id":"phdkIITXzjD2CXWfneZr"},{"content":"TH, as a famous artist who has lost sympathy from the public, would prioritize the dedication of professional and high quality works to other activities such as charities, gameshow participation, etc. to regain reputation.","tournamentID":"FZTHJ19pUWQG2SZNeOvr","round":"","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"link":"","division":"","infoSlide":"","language":"English","id":"pho0ZzRrPP4clqvSASXA"},{"link":"","language":"English","topic":{},"round":"Open_Final","content":"THW impose a substantially large annual tax on all medical companies who own patents.","infoSlide":"","tournamentID":"7vCURwwkA80JiqPvxSZu","division":"","id":"pi8fRCSanOaJx5YWYAuj"},{"division":"","tournamentID":"sXtyoMtY4Bb7XJvcqA3J","language":"English","content":"This house supports countries withdrawing from the International Criminal Court in order to create their own regional replacements (e.g. an African Criminal Court, an InterAmerican Criminal Court).","infoSlide":"","topic":{},"round":"2","link":"","id":"piblkeDpt4bpyOuFxS9D"},{"tournamentID":"MIrEXPHnAIOpqQw6kxky","language":"English","round":"ESL_Final","link":"","content":"This House regrets the use of the term \"moderate muslim\" by Muslims to identify themselves.","topic":{},"division":"","infoSlide":"","id":"pj8GWgxoXSzKecOTvHzO"},{"round":"Open_Quarter_4","division":"","content":"THW ban domestic drones.","link":"","topic":{},"infoSlide":"","language":"English","tournamentID":"yhJgdE0VFcsqlvWffep1","id":"pkEuMaJ6pURbH4CWS0h4"},{"tournamentID":"2D1SBKQDFgG0zGjX4oHP","topic":{},"round":"1","infoSlide":"","link":"","division":"","content":"This house believes that the criminal justice system should not consider retribution as a factor in sentencing.","language":"English","id":"pkP7blz1AT6fgSSSCeyl"},{"round":"2","link":"","language":"English","infoSlide":"State capitalism is an economic model in which companies are privately owned and compete in a free market of consumers, yet the state often intervenes by investing heavily in favored firms, forcing managerial changes, and making other decisions aimed at stabilizing and strengthening the economy. Famous state-capitalist nations include Singapore, China and Russia.","content":"TH supports state capitalism over liberal capitalism.","division":"","tournamentID":"R2D7uxDuM6stYlRyK9ev","topic":{},"id":"pkdYtXkD1NMzySjuTxFR"},{"infoSlide":"","topic":{},"language":"English","link":"","content":"THS a people's enshrined right to a binding secession referenda.","division":"","round":"Open_Finals_3","tournamentID":"bvHOR7Oow9PPlKPlA2BT","id":"pkmNQSxTgO3T8X4dtXus"},{"division":"","language":"English","tournamentID":"m6JzV67uYJSVBRpAbgL7","topic":{},"content":"THR the increasing trend of producing reboots within franchises (e.g. Marvel Cinematic Universe, Star Wars, Harry Potter, X-men).","link":"","round":"1","infoSlide":"","id":"plQgyZYOjwxb08FwK9dd"},{"infoSlide":"","tournamentID":"RcPsgEaIchl07oq9iFxn","round":"1","content":"Fake or Real: Should photoshopped (retouched) images be banned in advertisement?.","link":"","division":"","topic":{},"language":"English","id":"pn2sn4ZrJjhxtB8NTDgo"},{"language":"English","content":"THR the prominence given to celebrity endorsements of politicians and political parties.","division":"","topic":{},"round":"2","link":"","infoSlide":"","tournamentID":"kM1DLhtxZLQbdLIScfM9","id":"pnBPCFalt1rcqgJgRR7G"},{"tournamentID":"KErVXbqRahyWD7ZB1Q1m","topic":{},"infoSlide":"","language":"English","link":"","division":"","content":"THW forcibly plug everyone into Nozick's experience machine.","round":"3","id":"pnUz0aTiIrXFsCSlod8U"},{"language":"English","division":"","topic":{},"link":"","content":"THS the creation of a global citizenship market.","infoSlide":"","tournamentID":"SGpBjVPnJkFrJB0hnxYv","round":"Novice_Final","id":"pnignZLU8Gra5FLCrK0A"},{"infoSlide":"","tournamentID":"YF6iuqxO6eUISnAz4iMp","link":"","topic":{},"language":"English","content":"This House Believes That leaders of an occupied nation should not assist the occupying powers in maintaining stability.","division":"","round":"8","id":"pozUNbxtUaE1phnkrb73"},{"language":"English","division":"","link":"","topic":{},"tournamentID":"mEr4tnJE0kt1V0JvT2KG","infoSlide":"","round":"2","content":"THBT it is in the UK's interest to leave the EU.","id":"ppJFt1qhhv8dD5YGNrMs"},{"round":"Open_Semis","language":"English","infoSlide":"","tournamentID":"53fI8Yf0j74CAnSOjn9g","link":"","content":"THW abolish all locked facilities - for example: jail, detention centers, correctional facilities - for youth.","division":"","topic":{},"id":"pq8VMqCxVsZaM6zS60rc"},{"division":"","language":"English","content":"THW ban religious and ethnic parties from running for election in developing democracies.","link":"","topic":{},"round":"1","infoSlide":"","tournamentID":"yTe5SQuwd4eeae0M0Sc9","id":"pqEFrIxo22U6J8Pf7OKL"},{"content":"THBT the EU should implement protectionist economic policies targeted towards the UK upon the triggering of 'Brexit\".","infoSlide":"","round":"Open_Quarters","tournamentID":"pMiBCGHX80oXMgUJCqkc","division":"","language":"English","topic":{},"link":"","id":"pqTvRNMUdRF7KBAKFGxo"},{"topic":{},"division":"","infoSlide":"","language":"English","content":"This House Regrets the societal expectation of going to university.","tournamentID":"Ke3vqa3ZpQMmG6mDtn1z","link":"","round":"1","id":"pqrMZUkDbaApWWgszwVJ"},{"round":"5","language":"English","infoSlide":"","division":"","tournamentID":"tp2xo2eFva2we2bqlQBC","link":"","content":"THBT shrinking cities should be allowed to impose an “exit tax” on leaving businesses.","topic":{},"id":"pr42ynjs5Ns100KVE8t9"},{"round":"3","division":"","language":"English","content":"THW allow parents to remove their children from specific classes at school (such as sports, religious studies, sex education and science) on moral, religious or political grounds.","infoSlide":"","link":"","tournamentID":"c7J6C6adBALyiCv5F8G1","topic":{},"id":"prMETfkpd0BJLHHC451r"},{"content":"THBT inquiries into the misconduct of soldiers should only be conducted by people who have at some point been in active service - Semi Final 2.","link":"","division":"","infoSlide":"","language":"English","tournamentID":"Ryhdb4JOJYP96e5oa49b","topic":{},"round":"Open_Semis","id":"ps45COgD1gDoPNM5ERcK"},{"link":"","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","round":"Open_Quarter","content":"That we would aggressively and competitively fund CRISPR.","topic":{},"division":"","language":"English","infoSlide":"","id":"psEg5bsqb38GozOD4AsK"},{"infoSlide":"","topic":{},"link":"","language":"English","round":"2","content":"THW require all licenses for ethically controversial scientific experiments to be approved by a majority of a randomly selected group of citizens.","tournamentID":"hxlmkaNuNgQ6AIDlbsIh","division":"","id":"psMFaxJWJ5G3AQ3R48Jf"},{"language":"English","topic":{},"tournamentID":"m6JzV67uYJSVBRpAbgL7","round":"3","link":"","content":"THR the use of nostalgia (e.g. reminiscing over past/historical leaders, periods, or events) in politics.","division":"","infoSlide":"","id":"pssGvGLYzZNlTEjGDPXp"},{"infoSlide":"Hình tượng \"không giống bất kì cô gái nào khác\" là một cốt truyện phổ biến trong phim ảnh/sách/truyện/... Trong đó, nữ chính được miêu tả là một nhân vật đặc biệt và khác thường ( Ví dụ như cực kì thông minh , kiên cường , độc lập , không bị chi phối bởi cảm xúc ) so với những cô gái khác.","link":"","tournamentID":"CJKUeBIUibEtZYahoUQV","round":"","language":"Vietnamese","content":"Chúng tôi, dưới tư cách phong trào nữ quyền, sẽ phản đối hình tượng \"không giống bất kì cô gái nào khác\".","topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"}},"division":"","id":"ptCL1YhYTNFFbeE4y2O6"},{"topic":{},"division":"","content":"THP the English Rule to the American Rule.","tournamentID":"8Vk7pWjDHtGhxQVWidIQ","round":"2","link":"","infoSlide":"The English Rule requires that the loser in a lawsuit pays the winner's legal fees, and is observed by nearly every Western democracy. In the United States, however, the both sides pay their own attorney fees unless otherwise specified by the judge (this is rare).","language":"English","id":"ptlKsf6kpCyF88ih2NCA"},{"tournamentID":"DXCgscK3BkzAJGRnyZpD","link":"","topic":{},"division":"","round":"1","content":"THW prioritise dealing with the consequences of climate change rather than preventing it.","language":"English","infoSlide":"","id":"puAiDiApntgDvCsTgsIK"},{"topic":{},"language":"English","tournamentID":"n7qv29PmNuF5SOe42oiz","content":"That the queer community should actively embrace religious organisations and queer religious individuals in its leadership positions and advocacy.","round":"Open_Final","division":"","infoSlide":"","link":"","id":"puIRHTAHqR8iD2mU2KaL"},{"infoSlide":"","content":"THS excess profit taxes on corporations that derive a significant profit from a pandemic.","division":"","topic":{},"tournamentID":"m6JzV67uYJSVBRpAbgL7","language":"English","link":"","round":"2","id":"pvMaXdQtrNlsDgugYHRr"},{"topic":{},"link":"","division":"","infoSlide":"","content":"THW direct the Palestinian economy toward information technology.","language":"English","tournamentID":"m2emSLcIwdpH2tsVpRhp","round":"3","id":"pvz1ZgqeP5o2I6gMYwwJ"},{"content":"TH supports a ban on Chinese-owned social media apps (e.g. TikTok, WeChat).","infoSlide":"","round":"1","language":"English","division":"","topic":{},"tournamentID":"pu7FduCxL7IOOrWe0ypf","link":"","id":"pwDXytIJCOyfaDcMnsBa"},{"content":"THBT Vietnam should adopt the sustainable direction instead of the developmental direction.","link":"","infoSlide":"Vietnam is a country with one of the highest GDP increase rate in the world. America has just decided to remove Vietnam from the list of developing countries, meaning that ODA support for Vietnam is likely to be cut. Now, Vietnam can head in two directions. The sustainable direction is to temporarily halt the speed at which the economy develops, investing in non-profitable departments (education, infrastructures, etc.) to remain in the list of developing countries. The developmental direction is to continue encouraging economic growth to exploit the chance, thus stop being a developing country and instead become a moderately developed country.","language":"English","division":"","round":"","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true},"irw":{"title":"International Relations/War","check":true},"politics":{"check":true,"title":"Politics"}},"tournamentID":"CJKUeBIUibEtZYahoUQV","id":"pwGgwIIbSf12tgp5M6F9"},{"division":"","language":"English","round":"1","tournamentID":"9PjiZBOUlI39GMCrggZs","content":"THW ban nuclear energy.","topic":{},"link":"","infoSlide":"","id":"pwhiSuIHsEOP3VZdULcH"},{"round":"3","topic":{},"infoSlide":"","language":"English","content":"THBT feminists should support free markets in the developing world/.","tournamentID":"gJ7A4v0TYcDNBa5wySIX","division":"","link":"","id":"pxH9mBq7lZQsAsynkfBE"},{"language":"English","link":"","infoSlide":"","tournamentID":"x0FqHVU6TNo1z8egQZct","topic":{},"content":"TH, as the Israeli Debating League, would refuse to accept a debating society from Ariel as a member. (Clarifying information: Ariel is an Israeli settlement in the West Bank.).","division":"","round":"Open_Final","id":"pySv2S35qYo3CXhIp45C"},{"division":"","infoSlide":"","round":"4","language":"English","topic":{},"link":"","content":"THBT Dalai Lama should urge Tibetans to end their resistance and integrate with China.","tournamentID":"Ns60Gy3xxrtFcpflRpTk","id":"pyo0rxZdfPcdcTl11tYS"},{"tournamentID":"kaKFVFzhrgSOIPlruLU6","language":"English","topic":{},"round":"Open_Final","link":"","division":"","content":"THP the governance of the 'The One State'.","infoSlide":"","id":"pyvOI8ckCwizCjOIq5F3"},{"infoSlide":"","content":"THBT it is unethical to have children.","topic":{},"link":"","round":"Novice_Final","division":"","tournamentID":"jDG8reClMB02DIxLR5LL","language":"English","id":"pzFRmFZSQQqTXo65Hfqg"},{"tournamentID":"SPjgjrpUBIPs6H9gmx9P","content":"That we should aggressively incentivize the minority gender to study in the fields that are dominated by the opposite gender.","round":"Semifinals","infoSlide":"","link":"","topic":{},"division":"","language":"English","id":"pzH8fnAzwnOHGBznbqQB"},{"division":"","infoSlide":"","tournamentID":"cp0MD0ZRWeTfahcPD6wj","topic":{},"language":"English","content":"THW require all video games that ostensibly depict realistic combat to adhere to the rules of war.","round":"2","link":"","id":"pzPkqXjl1Fm5p85uDc56"},{"infoSlide":"","tournamentID":"FBVfHrOa3NYALcBMtKIC","round":"Open_Final","division":"","content":"This house believes that from kindergarten onwards all education should be gender neutral.","topic":{},"language":"English","link":"","id":"pzRxI05HgsbIgateYYSm"},{"infoSlide":"","language":"English","division":"","topic":{},"link":"","content":"THW allow family members of drug addicts to force the addicts to go into rehab.","round":"1","tournamentID":"rmnZcOUQU2iED2r3pXca","id":"pzTs4HyVFVTq4b8DMPxQ"},{"content":"THW abolish JobBridge.","round":"5","language":"English","division":"","link":"","tournamentID":"0DgXee32WEP3hxmGZExS","topic":{},"infoSlide":"","id":"pzfNn6juJ3Ce1RPt3nqw"},{"round":"Open_Final","tournamentID":"mveJVSu6tAxKx2Vp4IB0","content":"Should we accept the incorporation of Crimea into Russia?.","infoSlide":"","link":"","division":"","topic":{},"language":"English","id":"q00V2pNbMfwOyRGhQreT"},{"language":"English","content":"TH supports Kanye West‘s use of the Confederate flag.","tournamentID":"U5yvbgLSUvue8vCmib81","division":"","round":"Open_Final","link":"","topic":{},"infoSlide":"","id":"q04Ezc0KewvMGNJXTO3F"},{"content":"THW give conscientious objectors equal status to veterans in government memorialisation of war - Round 7.","tournamentID":"nXN2yUG7soxwCp4xidzj","topic":{},"round":"7","infoSlide":"","language":"English","link":"","division":"","id":"q0b51L3j0p4zpF6ydFRJ"},{"round":"1","infoSlide":"","division":"","tournamentID":"6mCNGJYhhrCUYIhAm6FN","topic":{},"language":"English","content":"THW require universities to use minimum entry requirements which are at least a grade higher for pupils from selective schools (e.g. private or grammar schools).","link":"","id":"q202TV3jlUqf3LLFk98L"},{"division":"","tournamentID":"yDUOVgl6qLMa2DH8lCD5","topic":{},"infoSlide":"","link":"","round":"1","language":"English","content":"THBT governments should stop funding scientific programmes that have no immediate benefit for humankind (such as space travel and exploration, human cloning).","id":"q2v3PbJyfI1TSxH2WZy7"},{"tournamentID":"IrZL7r0XTyBpGGSAYVYR","division":"","language":"English","infoSlide":"","round":"Open_Final","link":"","content":"THW build Dostoevsky's edifice.","topic":{},"id":"q3ZdKS5TnKgpiMytIzOr"},{"infoSlide":"","round":"2","division":"","content":"Chúng tôi sẽ áp dụng mức thuế thu nhập thấp hơn đối với phụ nữ.","language":"Vietnamese","link":"","tournamentID":"mkrRVvz5EWSZie6LBtCH","topic":{},"id":"q4OFKVKwbSqNnuYKUbKF"},{"link":"","topic":{},"division":"","language":"English","tournamentID":"XBBB3MfIKpYpUaioBlLB","infoSlide":"","round":"2","content":"THBT individuals with bad personal lifestyles (that influence their health) should pay more for their health insurance.","id":"q5kOl1BUNkrqunVqizhc"},{"tournamentID":"xQkVRRUcXZJgGzxXZ2t0","infoSlide":"","link":"","topic":{},"language":"English","content":"TH regrets the decline of Marxism in liberal Western democracies.","division":"","round":"Open_Final","id":"q61jgd1RDL23esMmVfCE"},{"content":"THR the narrative that ideal deliberation should exclude display or involvement of emotions.","division":"","language":"English","link":"","infoSlide":"","round":"Grand Final","topic":{},"tournamentID":"m6JzV67uYJSVBRpAbgL7","id":"q65uoSH1x88tVH3YqIbk"},{"round":"6","topic":{},"tournamentID":"nRov7JujhUP4fNtRUQTt","language":"English","link":"","division":"","content":"THBT Liberal Democracies have an Obligation to declare all Major Cities in their Countries as Sanctuary Cities. #PAUDC2018 #Akofena19.","infoSlide":"","id":"q6yDSOypIHgh5WLXSZWl"},{"link":"","division":"","tournamentID":"2gsOERqtXqSETJffXbnj","topic":{},"infoSlide":"","content":"Chúng tôi phản đối luật cấm mạng che mặt dành cho phụ nữ Hồi Giáo tại nơi công cộng của Pháp.","language":"Vietnamese","round":"4","id":"q7PV4SjmQ6rlRWAAG7R9"},{"language":"English","link":"","tournamentID":"eSbb5Usou5B1Drm2Dmyl","content":"This house would disallow the practice of Instantaneously Naturalizing foreign athletes to serve on national sports teams.","division":"","infoSlide":"","round":"4","topic":{},"id":"q8MniGqUAKYnMGourjlq"},{"division":"","infoSlide":"","tournamentID":"PGbz2bx1wifAEJU64jdo","content":"You are presented with a choice before you are born. You can be born into this world, or you can be born into a world without any religion or spirituality. Regardless of your choice, once born, you will not remember having made such a choice.\tTHW choose to be born in a world without religion.","topic":{},"round":"Open_Final","language":"English","link":"","id":"q8X73l6jmRgdlApHSyeR"},{"division":"","topic":{},"link":"","content":"THW eliminate standardised testing for university admission.","infoSlide":"","tournamentID":"dqyYdikn4cY0oz6DCMkq","language":"English","round":"3","id":"q9rcSRqoNkd3btEESdJS"},{"tournamentID":"1leOvfvlbNAIDzW6UnkK","language":"English","link":"","division":"","infoSlide":"","round":"3.3","topic":{},"content":"THBT men have become the tools of their tools.","id":"qBBKyASjkFu9ek4CqyVE"},{"language":"English","division":"","tournamentID":"RPKNKQNkycR35T4aIzhw","round":"3","topic":{},"infoSlide":"","link":"","content":"THBT newly industrialized countries should not host international sporting events.","id":"qBKKmkZKzdXIvQK2S6oU"},{"tournamentID":"FaBy9PfDE8gfy5w00VdM","language":"English","topic":{},"content":"TH, as US President, would grant Chinese Christian refugees asylum.","link":"","round":"2","division":"","infoSlide":"","id":"qBZSnP83etyStrd6DDKO"},{"topic":{},"division":"","tournamentID":"V8TulSs5yNLpZX8Xohpq","infoSlide":"","language":"English","content":"THBT Serbia and FYR Macedonia should immediately close their borders to asylum seekers and undocumented migrants.","link":"","round":"Open_Semis","id":"qC9djaAOGRKFz7tV0HE5"},{"tournamentID":"KE7jdAyW9az9nKVb9FMV","round":"1","language":"English","division":"","link":"","infoSlide":"","topic":{"publicHealth":{"check":true,"title":"Public Health"}},"content":"Chúng tôi sẽ đánh thuế cha mẹ có con béo phì.","id":"qDViulKg4QGPeFr2n64y"},{"link":"","language":"English","infoSlide":"","division":"","tournamentID":"qDUBTulIlHZP0un39LYK","content":"THBT EU nations should stop cooperating with the USA on intelligence matters.","round":"2","topic":{},"id":"qDYZunwkAlxdeRhiJMDY"},{"link":"","round":"Open_Final","language":"English","infoSlide":"","division":"","topic":{},"content":"THBT the Greek government should have rejected the 2015 bailout deal and sought to negotiate further concessions, even at the risk of not receiving a bailout.","tournamentID":"YbdPFTE9FbO3iQjZo87D","id":"qEbaaq2ZZP8620DYAlkw"},{"language":"English","division":"","link":"","round":"2","infoSlide":"A ‘Weak’ Artificial Intelligence is only capable of solving narrowly defined problems. A ‘Strong’ AI is capable of all the same kinds of intellectual tasks as human beings. A Strong AI would be able to reason, plan, learn, adapt, and communicate in natural language. Researchers at major universities have made significant progress towards the creation of Strong AI.","tournamentID":"7xqpYA72Sruch4lr5Uzj","content":"THBT all research organizations should institute codes of conduct that forbid the creation of strong Artificial Intelligence.","topic":{},"id":"qF0zlMBiRf3jNWyYIlsh"},{"division":"","infoSlide":"","link":"","topic":{},"round":"Open_Semis","tournamentID":"O8PsW6uDBzwzQZ3zO447","language":"English","content":"THW, as a western liberal democracy, legalize paid surrogacy.","id":"qHeYviQdp1ivFuwnnfGY"},{"infoSlide":"","round":"Novice_Final","language":"English","link":"","topic":{},"tournamentID":"AsoDjVHcLSyKMQmLkB7S","content":"THW give the public the power, via referendum, to pardon whistleblowers.","division":"","id":"qHmV65bXmUtWNmHJDOgf"},{"language":"English","infoSlide":"","division":"","link":"","topic":{},"tournamentID":"lmRNEraLEkD31bc6Nbnn","round":"2","content":"This house supports laws that protect the health of fetuses (whose mothers intend to carry them to term).","id":"qITe8YjVCRQeh5JRfBlU"},{"tournamentID":"o7IbmAZdAZ1UWeWnX7IL","topic":{},"division":"","content":"THBT the use of erotic capital by women does more harm than good.","infoSlide":"","language":"English","link":"","round":"3","id":"qJK7dsB2pocbLnT0somV"},{"tournamentID":"ERxjvEIrmiL3iSgvcfdB","link":"","round":"1","infoSlide":"","division":"","language":"English","topic":{},"content":"THW cut government and parliament members wages and pension funds, if they run fiscal deficits.","id":"qMnaJ1yOzpwov5lwVMWN"},{"content":"Should we create a common sanctuary/reservation for hipsters, zombies, former FDP politicians and stranded aliens?.","language":"English","division":"","infoSlide":"","tournamentID":"zkcJOcuUSlxmaS6nsMl7","round":"2","link":"","topic":{},"id":"qNTkyrj0OPmWjwnV0G4P"},{"link":"","content":"THW forbid domestic security services to monitor Members of Parliaments.","tournamentID":"4NEhQx2m4XcXy6SxnoqS","infoSlide":"","language":"English","topic":{},"division":"","round":"2","id":"qObzxeTaCV39bXricoQw"},{"content":"THW criminalise the purchase of sex.","division":"","round":"1","language":"English","tournamentID":"BEDaS3pLJHS1T1Xr4txo","topic":{},"link":"","infoSlide":"","id":"qP0tdEN287uPWW98s8dT"},{"language":"English","infoSlide":"","division":"","topic":{},"link":"","content":"TH regrets the founding of the state of Israel.","round":"4","tournamentID":"vx330P6CYx2QKwkFUJiX","id":"qPzfTsI5N14zYK1njGmy"},{"topic":{},"link":"","infoSlide":"This is a hypothetical/fictional scenario. You are a reputable historian who has discovered the existence of Mein Kampf Vol II in which Hitler journals his thoughts reflecting his regrets, sympathy and empathy about the events of WW2. You are the only person who has access to this journal.","tournamentID":"AhKyFYR1ZI0UjUmZnaXu","round":"Junior Grand Final","division":"","content":"TH, as the historian, would destroy Mein Kampf Vol II.","language":"English","id":"qQtHl6wsBAP1Xc0AUxkI"},{"round":"6","content":"In instances where the collapse of financial institutions is imminent, The House supports a bail-in.","division":"","language":"English","tournamentID":"ZQk7wGWckTLOk9Y0j9z4","topic":{},"infoSlide":"","link":"","id":"qR5gzZEQuJ8smlignD5N"},{"content":"THBT the democratic nominee should commit to abolishing ICE.","division":"","link":"","round":"5","tournamentID":"S5UzkuOf9XN6BnhOSbRC","language":"English","topic":{},"infoSlide":"","id":"qROnSaVqDKp3wo2CyrRO"},{"division":"","tournamentID":"xixMAepJqW9TAZSYVdsR","link":"","round":"3","language":"English","content":"THBT Muslim states in Asia (including but not limited to Malaysia, Indonesia, Afghanistan, etc) should participate in currency, finance, and resource unions with Arab states rather than regional powerhouses (e.g. China, India, Russia).","topic":{},"infoSlide":"","id":"qRm41740MJV1k5LFG1gv"},{"link":"","content":"TH, as the Roman Catholic Church, would excommunicate political leaders who fail to advocate nuclear disarmament.","division":"","language":"English","topic":{},"round":"3","infoSlide":"","tournamentID":"wXcojonR6N4b28c9T963","id":"qS7YKynkSnTyjJbCwulI"},{"round":"4","content":"TH supports the implementation of Liquid Democracy via digital voting.","topic":{},"division":"","link":"","tournamentID":"RPKNKQNkycR35T4aIzhw","language":"English","infoSlide":"","id":"qSDWmFIke0gZikadyWco"},{"tournamentID":"Nzien6R9RXvOTrNMJsza","round":"3","content":"This house regrets the rise of low-fee, easy-to-access financial market trading services (e.g. Robinhood).","infoSlide":"","link":"","language":"English","topic":{},"division":"","id":"qSJ7rcX6YA1Ms5UfDn6V"},{"link":"","infoSlide":"","round":"1","topic":{},"content":"THBT Ukraine should introduce mandatory military service.","division":"","tournamentID":"jTIGk8DeHHGFQRpsk85j","language":"English","id":"qT4yk6caqFscDhwoN5ES"},{"link":"","tournamentID":"ti8CFKwd5Fq6RHmrGph0","round":"4","infoSlide":"","language":"English","topic":{},"content":"TH would impose fines on public acts of climate change denial.","division":"","id":"qTGolkSfBsk1oaGQCK8m"},{"link":"","language":"English","tournamentID":"2fNmUq1mfr7IP3WAvr0Q","infoSlide":"","division":"","round":"1","content":"Should exile be reinstated as a form of punishment?.","topic":{},"id":"qUHjo4zDhOT9pgX8DA7O"},{"topic":{},"infoSlide":"","round":"Open_Final","content":"THW require companies to make the salaries of all their employees publicly available.","link":"","language":"English","division":"","tournamentID":"44zszGOLcUfUSx7uRJTD","id":"qUXpJbcVgptzMUAbLJGi"},{"language":"English","content":"THBT juries should only include individuals that are from the same socio-economic class as the defendant.","division":"","link":"","round":"1","topic":{},"infoSlide":"","tournamentID":"LH17DUUbXDstAFfMNJyf","id":"qUtMJIwmYa91pDFxX8sD"},{"content":"TH as a person appointed as a medical proxy will be held culpable by the patient upon recovery for decisions opposed to their preferred life choices (ideologies, medical choices etc) but crucial to their recovery.","topic":{},"round":"Open_Final","tournamentID":"YxG2TWeoQ8BT0rpxmfxT","infoSlide":"","link":"","language":"English","division":"","id":"qV47HOQLoJ6GHy9R2qEW"},{"link":"","language":"English","round":"Open_Quarters","topic":{},"division":"","tournamentID":"xwOMY1HAkkxJbFVQIUFJ","content":"THW spend the significant majority of foreign development aid on interventions proven to be effective by RCT.","infoSlide":"","id":"qVSAEZhxjlWU5eRsTqb7"},{"round":"2","content":"THW ban commercials.","tournamentID":"nMUJTA4Krf9MyO7MGVzA","division":"","language":"English","topic":{},"infoSlide":"","link":"","id":"qW1Hy9dNnBS1XuFGVGaw"},{"division":"","topic":{},"link":"","content":"TH supports the creation of an international court with a mandate to prosecute leaders for health crimes.","language":"English","infoSlide":"For the purposes of this debate 'health crimes' are massive violations of the international health codes. For example, the unwillingness to comply with the WHO's regulations on dealing with pandemics, a significant violation of norms on the prescription of antibiotics, breaching the experimentation codes of ethics.","tournamentID":"uJGjvsaThnluwVzoHFXm","round":"Open Final","id":"qWGnZIb7cl5UJeps3PwG"},{"infoSlide":"","division":"","round":"Open_Final","tournamentID":"XL594Q2oZbvHmfmYKFvT","link":"","content":"That, as Bibi Netanyahu, we should abandon efforts to annex Jewish settlements in the West Bank.","topic":{},"language":"English","id":"qWH5Xix6zFynAQCZjnPR"},{"topic":{},"content":"1. A robot may not injure a human being or, through inaction, allow a human being to come to harm. 2. A robot must obey the orders given to it by human beings, except where such orders would conflict with the First Law. 3. A robot may not injure its own kind and defend its own kind unless it is interfering with the first or second rule This is a suggestion, based on systems proposed in the past. Feel free to use other moral frameworks, provided this is made clear in the first minute of the PM's speech Motion: Upon the creation of strong AI, THW hardwire AI units with an unassailable and unalterable moral code.","round":"3","tournamentID":"ShdZSmrzSQfbl0RYDnj8","language":"English","link":"","infoSlide":"","division":"","id":"qWkh3eOuMLY6Spkpd2jx"},{"round":"1","division":"","content":"THBT the EU should guarantee membership to seceding regions of member states.","tournamentID":"HQ85pr5BC7hv3GPpOuzX","link":"","topic":{},"language":"English","infoSlide":"","id":"qXUKHCHYyIVLZi0u9htX"},{"division":"","tournamentID":"G1sEnthTpFCqlrrU3bnJ","infoSlide":"","round":"1","content":"THW allow the prosecution of news organizations for knowingly publishing false information, even when that information is not defamatory.","link":"","topic":{},"language":"English","id":"qYpSClNQmZr85fiEstvP"},{"round":"3","language":"Vietnamese","tournamentID":"gUFKQBcgvghmUX6k0Dj3","link":"","division":"","topic":{},"content":"Chúng tôi tin rằng Gen Z nên tích cực chỉ trích các chuẩn mực xã hội của thế hệ trước.","infoSlide":"Gen Z là thế hệ trẻ sinh ra trong thời đại công nghệ và hội nhập toàn cầu, từ những năm 2000. Các chuẩn mực xã hội có thể ở tất cả các lĩnh vực đời sống, ví dụ như các đặc tính giới truyền thống, định kiến về hôn nhân và tình dục, ...","id":"qZ9U3hEx8C4J4vyqnTOY"},{"link":"","topic":{},"tournamentID":"fkUHa28aVk8LYYEAdofu","infoSlide":"","round":"3","division":"","language":"English","content":"That we should abolish the \"right to silence\".","id":"qZOAZVSByT4XVDsTm2oh"},{"infoSlide":"","content":"THBT during riots it is legitimate for governments to deny access to social networks.","division":"","round":"4","link":"","topic":{},"tournamentID":"PIBLfC67BXtpF7r3aqIV","language":"English","id":"qbGUEtva3lFZAn7GZFM0"},{"round":"1","language":"English","infoSlide":"","topic":{},"division":"","content":"This House believes men should have the right to refuse paternal financial obligations towards pregnancies they did not consent to.","tournamentID":"4WWD63gqcbSKMNoFf5ly","link":"","id":"qc47sMjgsGV744PUArYH"},{"tournamentID":"puG4GbGRMRGTQ4eS4GHp","division":"","content":"TH supports the creation of feminist political parties.","language":"English","topic":{},"infoSlide":"","round":"4","link":"","id":"qdai1ZitJMLF0pHfETyS"},{"infoSlide":"","language":"English","content":"THBT Western nations should make development aid conditional on the protection of LGBT (Lesbian, gay, bisexual, transsexual) rights.","topic":{},"round":"1","link":"","tournamentID":"eBlrzVaoBbfX5kbian3T","division":"","id":"qea2pReCanNq4OVjV5t0"},{"round":"4","content":"This House believes that Facebook is justified to censor any of its users' content for any reason it sees fit.","language":"English","tournamentID":"vY2MtSrfiAgUKzGbzzMm","division":"","topic":{},"link":"","infoSlide":"","id":"qemYRNsb8hiUzYhlLNF7"},{"topic":{},"division":"","content":"THW never subject international treaties to popular referenda.","link":"","infoSlide":"","language":"English","round":"4","tournamentID":"c7J6C6adBALyiCv5F8G1","id":"qfLo4DtVvS1Bi6mdqwX7"},{"link":"","topic":{},"infoSlide":"","round":"Quarterfinals","division":"","language":"English","content":"THS China’s attempts to become a global dominant power (eg. establishing its own global financial/development institutions; Increased FDI in Africa, South America, Asia; Increased military spending).","tournamentID":"OyqUfVFCTQ5A8iecmNK1","id":"qfLqXCcLOYyTbjW1bH2T"},{"division":"","topic":{},"tournamentID":"VZL2SmUXq00WGPbW0ZRt","language":"English","content":"THBT Governments should not assist in the rebuilding of disaster prone areas.","link":"","infoSlide":"","round":"1","id":"qfcJ8e1BaMYeZQN6RmSN"},{"infoSlide":"","round":"3","language":"English","link":"","content":"THR pop-culture portrayals of people with chronic or life-threatening illnesses (e.g. Five Feet Apart, Me Before You, The Big Sick, Fault in Our Stars, My Sister’s Keeper).","division":"","topic":{},"tournamentID":"tKXlShZl2vec49jC1bif","id":"qg39RZKQb0GVrnkqv7wU"},{"language":"English","content":"This House prefers technocracy to democracy.","tournamentID":"S5UzkuOf9XN6BnhOSbRC","division":"","topic":{},"infoSlide":"","link":"","round":"ESL_Final","id":"qhIOQuNXrafk2jFnW7mc"},{"link":"","content":"This House would ban any treatment, service or ritual from claiming a physical healing effect until it is tested and proven more effective than a placebo by a national regulator.","language":"English","round":"4","tournamentID":"WqXUc7EMDvkqqg3BVCtf","division":"","topic":{},"infoSlide":"","id":"qhWq2QRBLKqkyMX6Roxp"},{"language":"English","topic":{},"content":"THR the reliance on land settlements as reparation for colonial injustices - Semi Final 2.","infoSlide":"","round":"Open_Semis","link":"","tournamentID":"nXN2yUG7soxwCp4xidzj","division":"","id":"qhl4AK6hFsc1tFitHeVy"},{"link":"","language":"English","tournamentID":"2C0TX71TRjIIOcsN7CbL","division":"","content":"This House would lift bans on payday lending.","round":"4","infoSlide":"","topic":{},"id":"qhywj55VLMwzWlvbKdEV"},{"topic":{"technology":{"title":"Technology","check":true}},"tournamentID":"LlsxibXteGBGML9aitY2","link":"","language":"Vietnamese","round":"","content":"Chúng tôi sẽ quốc hữu hóa mọi công trình phát triển và sự sử dụng trí tuệ nhân tạo mà có khả năng cao sẽ thay thế nhân lực con người.","division":"","infoSlide":"Quốc hữu hóa là quá trình biến tài sản tư hữu thành tài sản công hữu bằng cách thay đổi quyền sở hữu của chúng thành của chính phủ quốc gia hoặc nhà nước.","id":"qi295mA5GBgTuH7thcJz"},{"content":"THBT the rise in oil prizes does more harm than good.","division":"","round":"Open_Semis","language":"English","link":"","tournamentID":"y6YpD63Uuk3t3fbBC7Tk","infoSlide":"","topic":{},"id":"qiJhkOIMxGtDYmGF3oiT"},{"topic":{},"content":"THBT Feminist Groups Should Actively Recruit Male Spokespeople.","round":"Open_Semis","tournamentID":"1XuVJxN52ldgExm8K3T2","division":"","link":"","infoSlide":"","language":"English","id":"qiQLjAsOZD36rhtMeyw7"},{"content":"THBT all states should allow single parents to raise their children in prison.","topic":{},"infoSlide":"","link":"","tournamentID":"SJ2vZr9NzMvtMMGarKue","language":"English","round":"3","division":"","id":"qiV3akKFSo1sW6utiWA9"},{"content":"That in times of extraordinary economic or social crisis, we should temporarily close financial markets.","round":"4","tournamentID":"HjQJA65fZ9igHKO8DLAP","topic":{},"infoSlide":"","link":"","division":"","language":"English","id":"qigGp5fSRhYzh6YYZi9Y"},{"content":"THW remove the exemption for religious organisations from anti-discrimination legislation (such as the Equalities Act 2010).","language":"English","round":"4","tournamentID":"BEDaS3pLJHS1T1Xr4txo","topic":{},"infoSlide":"","link":"","division":"","id":"qjP4UPvH3rFMlxbKm4uL"},{"content":"THBT the police should have unrestricted access to the personal online data of everybody, including email, web history and private content on social media.","division":"","tournamentID":"JWLA0D1GfpyCkzoL1qX9","language":"English","round":"Open_Final","link":"","infoSlide":"","topic":{},"id":"qjPMt441TJwkGUczaDFj"},{"topic":{},"tournamentID":"HQ85pr5BC7hv3GPpOuzX","infoSlide":"","link":"","language":"English","round":"4","content":"THW force fathers to take paternity leave.","division":"","id":"qk4pCPwxUPXcQrnvO6Dj"},{"round":"Novice Semifinals","topic":{},"tournamentID":"yDvj9tks9IvE2CTAVfzV","infoSlide":"","link":"","division":"","language":"English","content":"TH prefers a world without nuclear weapons.","id":"qkBKNlr401mhX5UFy8zB"},{"tournamentID":"nXN2yUG7soxwCp4xidzj","link":"","content":"You are a research scientist working for a large pharmaceutical corporation. You accidentally discover a drug which indefinitely delays the aging process for as long as it is taken (and produces gold). No-one else is aware of what you have done. THW destroy all evidence of your discovery - Round 4.","language":"English","round":"4","division":"","topic":{},"infoSlide":"","id":"qkLMcdK6sAxBbRrsbiSu"},{"infoSlide":"","round":"Novice_Final","link":"","content":"THW make voting compulsory.","division":"","topic":{},"tournamentID":"iARNjQG0MiYXxp1Qk22E","language":"English","id":"qkT9fMjczMKHMDxpRVxN"},{"language":"English","division":"","topic":{},"round":"Open_Semi","infoSlide":"","tournamentID":"15hrO4GoCxXF2OIdl7fS","content":"THW, as the Democratic National Convention, support the Make Billionaires Pay Tax.","link":"","id":"qkhg8YK1wR94a6PgdeJe"},{"topic":{"economics":{"title":"Economics","check":true}},"tournamentID":"FZTHJ19pUWQG2SZNeOvr","round":"","link":"","division":"","infoSlide":"","content":"THW temporarily radically relax minimum labor standards during periods of unusually high unemployment.","language":"English","id":"qktsu6ccWYxyEVIl7U8V"},{"tournamentID":"bcb5yQt6p8cx9SACsvYL","topic":{},"content":"THBT Barack Obama should nominate an individual considered to be a moderate conservative by US citizens to the Supreme Court.","language":"English","infoSlide":"","division":"","link":"","round":"Open_Semis","id":"qlFqDW7Hxa9DmbHrOhEp"},{"division":"","infoSlide":"","content":"THW, as NATO, send troops to protect the Ukrainian border (not including the Crimea).","language":"English","tournamentID":"uikc98CupbamVyAQIHsf","link":"","topic":{},"round":"Open_Semis","id":"qlhFksnkiRz6qaUwVPZx"},{"link":"","language":"English","round":"2","infoSlide":"","tournamentID":"nzVlQYCb0rPo23sPMkA5","division":"","topic":{},"content":"THW not invest in research and development that has the delay of the aging process as its sole purpose.","id":"qlj5eaW6VZC5m69zvLRf"},{"tournamentID":"IxT6Qaz01G1Db87fU73z","topic":{},"link":"","content":"TH supports a system of blind voting.","round":"2","language":"English","infoSlide":"","division":"","id":"qmSn6WLYn1w5gEg09Dek"},{"link":"","round":"1","content":"THS granting IP protection for sports moves.","infoSlide":"","language":"English","topic":{},"tournamentID":"WcNueZiJXeg9z82dijdL","division":"","id":"qmmOf3IPT1e8OCPhlo6r"},{"infoSlide":"","division":"","link":"","topic":{},"round":"Open_Final","content":"THBT it is (fully) sufficient to combat the symptoms.","tournamentID":"TtoxDZeWyCKcOginS4mH","language":"English","id":"qn5llnV72KNyY48I3w5o"},{"round":"4","infoSlide":"","division":"","language":"English","tournamentID":"Nzien6R9RXvOTrNMJsza","topic":{},"content":"This house believes that the feminist movement should aggressively praise mothers and motherhood.","link":"","id":"qnT3MHhPyBhEgdy2xpER"},{"round":"1","link":"","content":"THW allow single parents to raise their children in prisons.","infoSlide":"","language":"English","topic":{},"tournamentID":"S2mG18EWYdh2bPEadyd9","division":"","id":"qo7m3ZzRcTqzIoCdm5dE"},{"division":"","content":"This house opposes the presence of external sex characteristics (uterus, vagina, breasts) at pro-women protests (eg, the Women's March on Washington).","infoSlide":"","tournamentID":"qvnbu5KYCFZ7nM9hTZ2E","link":"","round":"4","topic":{},"language":"English","id":"qoFDt5OpEhJRNx4QuMej"},{"round":"Open_Finals","topic":{},"infoSlide":"","division":"","tournamentID":"Aic5TDtU01Sp43Neh8N2","link":"","language":"English","content":"Assuming the land and resources are available, THW establish an independent state for women.","id":"qor7T25iSKaeYaFGbeT9"},{"round":"Open_Final","topic":{},"tournamentID":"EkR93MYW52GdWTuVsaKa","content":"THW abolish private property.","infoSlide":"","division":"","link":"","language":"English","id":"qorIfPh6ewo2IfofT1C3"},{"link":"","infoSlide":"","round":"3","division":"","content":"THW prohibit tourism to countries with a poor record of protecting human rights.","language":"English","topic":{},"tournamentID":"IpxNM87k556VVsS2JAPu","id":"qqQy2X6ofCkVR6hhdALW"},{"round":"2","content":"During WWII: THBT the Western Allies should under no circumstances cooperate with Stalin.","infoSlide":"","link":"","tournamentID":"0Z9IiWTQjupe7Jbemo9Y","division":"","language":"English","topic":{},"id":"qqfOGSRslqUssyOxtuyV"},{"round":"1","topic":{},"tournamentID":"UT720iaDHtta4VRkpcnp","language":"English","content":"THW offer drug and alcohol addicts substantial cash payments in return for agreeing to undergo sterilisation.","link":"","division":"","infoSlide":"","id":"qsCEstakTvVGCpXJHyhx"},{"content":"TH, as an athlete with sight on a medal at the Olympic Games in Sotchi, would publicly promote LGBT rights during the Games.","round":"Open_Final","link":"","language":"English","tournamentID":"YZ4nedbden9wBJH2zqb4","infoSlide":"","division":"","topic":{},"id":"qsMigjcKl4gTP6cAJdQH"},{"topic":{},"language":"English","tournamentID":"axWwnyCM8L14pVHljukt","round":"Novice_Final","link":"","division":"","infoSlide":"","content":"THBT it should be prohibited all acts of election campaign with the exception of public debates.","id":"qtSgh8qxRQGqbCOxTKfI"},{"link":"","round":"Open_Final","infoSlide":"","tournamentID":"Te8CYa0tImwgHXE99O7W","division":"","language":"English","topic":{},"content":"THP to be alone in the universe.","id":"qu5txQlBjXyX65jsunUY"},{"division":"","link":"","topic":{},"infoSlide":"","round":"3","tournamentID":"POdYlP5an146yzuVI1Xg","content":"THW allow inmates to pay for substantially better prison conditions.","language":"English","id":"quBxS6W0SvS5LiXwuDOO"},{"language":"English","round":"Open_Semis","link":"","content":"TH regrets the rise of a distinct African American culture.","topic":{},"infoSlide":"","division":"","tournamentID":"7xqpYA72Sruch4lr5Uzj","id":"quZk3DLkfO361q4cma1Q"},{"link":"","round":"Open_Quarters","content":"THR the rise of Antifa.","tournamentID":"DWR60IgakRS9N3GeNemc","topic":{},"division":"","language":"English","infoSlide":"","id":"quu8CrQDeDampXWgpKyk"},{"infoSlide":"","topic":{},"division":"","round":"Open_Quarter","content":"THR the decision to let the FARC run as a political party.","language":"English","link":"","tournamentID":"e3m3vjjIT1UO4munSqvD","id":"qvIn6BdLtPjS5QsnosAW"},{"division":"","content":"THB that overthrowing Mohamed Morsi was a mistake.","language":"English","topic":{},"round":"2","link":"","tournamentID":"7gnlDrExulbBsH6xw0jx","infoSlide":"","id":"qwHLEj9rtsZAR41jY6vX"},{"infoSlide":"","division":"","language":"English","round":"2","link":"","tournamentID":"2puDg94cQDrpdSauuA78","topic":{},"content":"TH believes that feminist female students should boycott students’ corps.","id":"qwzew2wUG1XzWXgfQNPt"},{"language":"Vietnamese","round":"3","link":"","content":"Chúng tôi lấy làm tiếc việc Vinfast khởi kiện kênh youtube Gogo TV.","tournamentID":"WEotTkb6ok8UfUOl0Lwb","infoSlide":"Chiều 2/5, VinFast Vietnam – fanpage chính thức VinFast – đăng tải thông tin phản hồi về trường hợp của ông Trần Văn Hoàng, chủ kênh Youtube GogoTv đã sản xuất và đăng tải clip nói về lỗi của chiếc Lux A2.0. Bài đăng mô tả nội dung trong clip có nội dung “không đúng sự thật về chất lượng xe VinFast Lux A2.0, gây hoang mang cho người dùng và ảnh hưởng tới uy tín của VinFast”. Trong clip của mình, GogoTV phản ánh rằng rằng Vinfast có chất lượng sản phẩm cũng như chất lượng phục vụ không tốt.","division":"","topic":{},"id":"qx08I1SYZ3HQca6ABsH0"},{"round":"1","tournamentID":"6AnUBd9SLIBHmD9Uy5dS","topic":{},"division":"","content":"THS universal basic income rather than conditional welfare programs (such as unemployment and food stamps).","link":"","language":"English","infoSlide":"","id":"qyZb3yXDd6Jhu07wfyYz"},{"tournamentID":"SU8WsMguqtUiTUErBeo7","content":"THW ban religious and ideological schools.","language":"English","topic":{},"link":"","division":"","round":"1","infoSlide":"","id":"qyjXfUMLDHW51Snhccqp"},{"division":"","infoSlide":"","language":"English","tournamentID":"LJpNoy6NIxtIr7pXj25B","round":"2","link":"","content":"THBT in countries where National Service is mandatory, feminists should push for the inclusion of women to be conscripted as well.","topic":{},"id":"qzMGs6N5P5mV5JezKjJC"},{"tournamentID":"Er03o2M51g3s6dYyUHHm","topic":{},"content":"THBT Russia should immediately withdraw all support from the Assad regime.","round":"Open_Final","link":"","infoSlide":"","language":"English","division":"","id":"qzWdPcSSLpTh5jYghrVd"},{"round":"5","content":"THW ban political opinion polls.","infoSlide":"","link":"","language":"English","tournamentID":"e3m3vjjIT1UO4munSqvD","division":"","topic":{},"id":"qzfWjsUegCxGfNJQOGRl"},{"division":"","infoSlide":"","round":"Open_Quarters","link":"","topic":{},"language":"English","tournamentID":"hoxSwibt3yivmk88aoAD","content":"THBT low oil prices are good for the West (may not have been the exact wording).","id":"r0R2mkC56iuZ7oId8CyU"},{"link":"","content":"THW never arm or finance rebel groups as a tactic of war.","topic":{},"division":"","language":"English","round":"2","infoSlide":"","tournamentID":"EK7bkCOLaLHjVsqCcikk","id":"r0kqElOkoRyf4Ok0xGuV"},{"language":"English","topic":{},"round":"ProAm_Final","division":"","tournamentID":"Gx29hnXeBrSjBZrrDKx8","link":"","content":"TH, as the survivor community, would choose not to.","infoSlide":"","id":"r1NjbYFd7kECJ8sNL7Zj"},{"tournamentID":"EpANk5V3VQNFWagnktFN","link":"","language":"English","infoSlide":"","content":"THBT the state should only fund artworks that promote socially desirable values (e.g. multiculturalism, equality).","round":"5","division":"","topic":{},"id":"r1iiSYEy5dlaHFcirJrF"},{"division":"","topic":{},"tournamentID":"gUFKQBcgvghmUX6k0Dj3","link":"","infoSlide":"","content":"This House would consider any investment from parents on their children beyond the age of 18 a legal loan that requires repayment with interest.","language":"English","round":"Semifinals","id":"r236hgbC6jhguY6TRp5U"},{"tournamentID":"UWHKNxWBfNyw2FCQAxdk","topic":{},"infoSlide":"","content":"THW place a sin tax to low-brow entertainment in order to subsidize high-brow art.","language":"English","round":"5","division":"","link":"","id":"r2lwoFllwLRvy4l0mQLL"},{"topic":{},"content":"This House would provide free, safe drugs to individuals with addictions.","language":"English","division":"","infoSlide":"","link":"","tournamentID":"WACrra94379E35Be36hc","round":"1","id":"r33s5p3U1f1RiNtcb3tQ"},{"division":"","tournamentID":"H2ZQZD4EPmxpktxvJnUz","content":"TH, as the Mexican government, would end its war against the drug cartels.","infoSlide":"","round":"3","topic":{},"language":"English","link":"","id":"r38nG1YDT5CDkmCPD4XD"},{"link":"","division":"","topic":{},"infoSlide":"","language":"English","content":"Superior Orders is a plea in a court of law that a person not be held guilty for actions that were ordered by a superior officer, but are criminal. It cannot be applied to actions that are manifestly unlawful (e.g. genocide or crimes against humanity). TH Accepts the defense of Superior Orders.","tournamentID":"m357g5mmEMxSAwbDEk5d","round":"Open_Final","id":"r3shTj7FP96PaBXimfOW"},{"topic":{},"infoSlide":"","tournamentID":"HtADLvDpWQsx5qtLh5A9","link":"","round":"Open_Final","language":"English","content":"Assuming feasibility, THW allow individuals to sell their units of Intelligence Quotient (IQ).","division":"","id":"r44wT5XsuUXEGmCK1xwz"},{"topic":{},"link":"","division":"","tournamentID":"3NTAi2gNk5Uyy3NuACO5","language":"English","round":"Novice_Final","content":"TH as a young individual in an authoritarian country who wants to improve their society would seek to do so by joining the ruling party as opposed to operating outside the establishment.","infoSlide":"","id":"r4REyBxlg44xJC5czaPn"},{"round":"ESL_Final","division":"","link":"","topic":{},"content":"That the Pokemon anime should soon replace Ash as the show’s main protagonist.","language":"English","tournamentID":"Pt1Z2dTdUinRviVucbZA","infoSlide":"","id":"r4YwW8FReeMSjw5Rdycr"},{"language":"English","topic":{},"tournamentID":"efp9mMZFiy8fVwkom17I","division":"","link":"","content":"THBT successful minority activists have a duty to donate their effects to schools that represent their community (eg: women's universities, HBCUs, Tribal Colleges, etc).","infoSlide":"","round":"Novice_Final","id":"r4mYSexXpAvba7vrbm0U"},{"infoSlide":"","content":"Giả sử có thể, chúng tối sẽ chọn liên tục tái hiện các khoảnh khắc vui vẻ của trong cuộc đời của một người.","link":"","tournamentID":"nALUKfkpmOnWnQCzecru","round":"","division":"","language":"Vietnamese","topic":{"hr":{"check":true,"title":"Human Relationships"}},"id":"r5ihudQ6NM4X6OswUR8g"},{"content":"TH, as Saudi Arabia, would advocate for Yemen to be split to three countries; South Yemen led by al-Zubaidi STC, Yemen led by Abd Rabbuh Al-Hadi and North Yemen led by Houthi.","division":"","link":"","infoSlide":"","topic":{},"round":"Open_Final","language":"English","tournamentID":"1DUltfq5WOlWowHiNs5h","id":"r6FiTJ4B0bGNESFYzGRC"},{"division":"","round":"4","content":"THBT the US should stop all support (including military) until Israel unilaterally withdraws from illegal settlements in Palestine.","topic":{},"language":"English","tournamentID":"1V1INGo8OX49g8hUFTF3","infoSlide":"","link":"","id":"r6cqWQlXi791Ijd0tqGR"},{"link":"","tournamentID":"9yPqE2fe1oaHsd7ankOa","language":"English","content":"THW impose rental caps in urban hubs (e.g. San Francisco, Manhattan, Mumbai).","round":"Semifinals","division":"","infoSlide":"","topic":{},"id":"r6d28BgyTVZp6To99gVD"},{"link":"","infoSlide":"","language":"English","division":"","content":"THBT government programmes should only be upscaled after successful impact evaluations.","tournamentID":"mf3XudZleydnsr0lEvkg","round":"2","topic":{},"id":"r716fm1lRla4ud7Bt5M4"},{"language":"English","topic":{},"tournamentID":"PIBLfC67BXtpF7r3aqIV","link":"","round":"Open_Final","content":"THBT Mandarin should be taught as the primary second language in all EU schools.","infoSlide":"","division":"","id":"r7TGCviYzgT2WaCAO3yR"},{"content":"THBT the LGBTQIA+ movement should condemn the consumption of movies and TV shows that cast straight actors in non-heterosexual identified roles.","round":"","division":"","infoSlide":"","link":"","language":"English","tournamentID":"nALUKfkpmOnWnQCzecru","topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"id":"r7xBVMIlfh0sFKiDk3fN"},{"link":"","content":"THR the approach of environmental groups in focusing their resources on changing individual behavior (metal straws instead of plastic straws, limiting personal travel, etc.).","language":"English","division":"","tournamentID":"DxF0p5X2fi9LhbzCFGTd","round":"2","topic":{},"infoSlide":"","id":"r8Ha2Dln1RNvweKqzQKy"},{"tournamentID":"Z9FMqY7i0SmIcw5xUsUL","topic":{},"language":"English","division":"","content":"As Annisa, THW take the job.","infoSlide":"","round":"3","link":"","id":"r905XZcpwQFuy8tEg2hp"},{"infoSlide":"","division":"","topic":{},"tournamentID":"H4i4RR7JXk14xDRe7PUX","language":"English","content":"TH, as a Jew, would leave Europe for Israel.","round":"4","link":"","id":"r9FhUWmPYoQubVaRqgWY"},{"infoSlide":"","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","division":"","topic":{},"language":"English","content":"THBT Michael should not be convicted for his crimes.","round":"5","link":"","id":"r9IVluaK8khn3EGIUnrv"},{"round":"Open_Semis","infoSlide":"","tournamentID":"djnlK5jZ2kM6hDrC6E9d","division":"","topic":{},"link":"","language":"English","content":"THR the rise of New Atheism.","id":"r9WZ5anaf2SI6osmsczA"},{"language":"English","content":"THBT all criminal trials should be decided by a jury verdict.","tournamentID":"ZQQO7Q0LBTeQnU1Rb8fK","division":"","topic":{},"link":"","round":"1","infoSlide":"","id":"r9YkeYNeMXvsjMPOI2UK"},{"round":"Open_Quarters_2","tournamentID":"bvHOR7Oow9PPlKPlA2BT","topic":{},"division":"","link":"","language":"English","content":"TH prefers a society which prioritizes global poverty reduction over domestic poverty initiatives.","infoSlide":"","id":"r9dutu5Bp1s4yJ00zEx9"},{"tournamentID":"tkDLesahiehQ4Nqbr4eC","topic":{"hr":{"title":"Human Relationships","check":true}},"link":"","content":"Chúng tôi ủng hộ một thế giới mà mọi người hầu hết đều tin rằng ý chí tự do không tồn tại.","round":"","infoSlide":"","division":"","language":"Vietnamese","id":"r9swc3j8VoG8d3sHnXSj"},{"language":"English","tournamentID":"1dEXZTvvRtTWhdBLmzFt","division":"","link":"","topic":{},"content":"THBT liberal democracies should constitutionally enshrine the right of regions to unilaterally secede.","round":"Open_Semis","infoSlide":"","id":"rAG5EMn7U3ktoPlGCJ3n"},{"round":"3","topic":{},"tournamentID":"IxT6Qaz01G1Db87fU73z","link":"","content":"THW support indigenous people to be trialed, convicted and punished in accordance with the customs of their community as opposed to through the system of the national court.","language":"English","division":"","infoSlide":"","id":"rAIlBwC4B3fqn7h47Rth"},{"round":"Open_Final","language":"English","link":"","topic":{},"tournamentID":"UVd3X0lgKy2dOb5Yx1c7","division":"","content":"THW appoint the parliament by lottery.","infoSlide":"","id":"rARG0EBkT8IP4TvK6CMm"},{"content":"This House opposes the continued progress towards deep global economic integration (e.g. very low tariffs and free movement of capital and labour across borders).","round":"5","link":"","tournamentID":"wLO2B4MufJ4R3qOzUGM8","topic":{},"infoSlide":"","division":"","language":"English","id":"rAcXwGciac0h60d6BLkg"},{"tournamentID":"j9tMf10ACsn6VW6vG9gA","infoSlide":"","division":"","link":"","topic":{},"round":"Open_Semis","content":"THBT the Mexican government should offer immunity for economic crimes to drug cartels in exchange for not targeting the police, military or civilians.","language":"English","id":"rAimgpIAMVQDOE9BeXlN"},{"topic":{},"tournamentID":"qotkEeWGxvmIXOZx52qZ","infoSlide":"","language":"English","division":"","content":"TH belives that militaries are justified in directing their troops to use the Hannibal procedure.","round":"Open_Semis","link":"","id":"rAnBMqQRp5X7WTA4Rrx0"},{"content":"THW ban blood sport.","division":"","link":"","tournamentID":"DNe0c1xNBVoG02MsO66g","round":"6","infoSlide":"","language":"English","topic":{},"id":"rAxFz07hqnxHtre5eRAZ"},{"content":"This House would allow victims (and families of deceased) of gun violence to sue the sellers of the gun used in the act for compensation.","link":"","topic":{},"language":"English","division":"","tournamentID":"uHY8OFiOXYb0VdlJt20c","round":"4","infoSlide":"","id":"rAyZhzy5Zj4pfE67I6Kt"},{"round":"3","division":"","content":"TH prefers environmental movements heavily prioritizing a local agenda over a global one (e.g. focusing on local pollution rather than climate change).","tournamentID":"uJGjvsaThnluwVzoHFXm","language":"English","link":"","topic":{},"infoSlide":"","id":"rBEtQmfaSntvrdaiThSd"},{"content":"THBT universities and student groups should not ban speakers with offensive political views.","round":"Open_Semis","topic":{},"division":"","language":"English","link":"","tournamentID":"puG4GbGRMRGTQ4eS4GHp","infoSlide":"","id":"rBVxD2iNi6ALHSWR8CCO"},{"tournamentID":"Te8RVa4tAIQJaY0sFp5C","round":"5","division":"","language":"English","topic":{},"content":"THW create a free market for the sale of babies.","link":"","infoSlide":"","id":"rCG8eGTknLEJRHMsNcys"},{"round":"Grand Final","division":"","link":"","topic":{},"content":"TH, as citizens of a developing country, would actively choose to practice stoicism.","language":"English","infoSlide":"","tournamentID":"9yPqE2fe1oaHsd7ankOa","id":"rCfOT9iREMm2MbIw2Enm"},{"topic":{},"division":"","link":"","tournamentID":"H6MeeIis6pg2gQbgEyuB","round":"4","language":"English","infoSlide":"","content":"THBT environmental activists should reject eco-friendly public-private partnerships and insist on stricter environmental regulations.","id":"rD1w6F4VblWIRwnM2oD3"},{"infoSlide":"","language":"English","division":"","round":"2","tournamentID":"4WWD63gqcbSKMNoFf5ly","topic":{},"link":"","content":"This House believes individuals have the right to be forgotten.","id":"rE6dm4BvEcDqZcRIimv0"},{"tournamentID":"99Ct9ORyddmNGYGfpDl7","topic":{},"content":"THBT serial marital infidelity should be a bar to seeking high political office.","division":"","language":"English","round":"Open_Semis","link":"","infoSlide":"","id":"rETAMjtKhflHevzm3H3B"},{"language":"English","tournamentID":"gQ88d3loB2qwgD7ofmmr","topic":{},"link":"","round":"1","division":"","content":"In countries where prostitution is legal, THBT national health systems should cover services of sex workers for the disabled.","infoSlide":"","id":"rExcl9oNBpHgNpizwSDm"},{"round":"3","infoSlide":"","tournamentID":"yIBeLUbSZELobFcw30WY","content":"THBT the Palestininan authority should concede.","link":"","topic":{},"division":"","language":"English","id":"rFW6jpCUP5TEzHDxzyxK"},{"topic":{},"tournamentID":"m6JzV67uYJSVBRpAbgL7","language":"English","content":"THBT the World Bank should have the full responsibility for the share of loss due to corruption.","link":"","division":"","round":"Open Semifinals","infoSlide":"When the World Bank lends loans to states, it must be repaid by the country and its population. Therefore, even though loans were stolen by corrupt leaders, citizens must pay it back. It is said that one-third is the normal rate of corruption of WB loans.","id":"rG2038c0y0i0st1nHKNd"},{"topic":{},"content":"THW significantly increase people’s leisure time at the expense of greater prosperity, progress and growth.","link":"","infoSlide":"","tournamentID":"KpispxU2MtVt41R9j5bV","division":"","round":"3","language":"English","id":"rGWqdpdHEiWctwOdbY2x"},{"topic":{},"content":"THW stop writing the novel.","infoSlide":"","tournamentID":"3NTAi2gNk5Uyy3NuACO5","link":"","language":"English","round":"2","division":"","id":"rGsNuqaGvI15aD8ofWXz"},{"round":"3","language":"English","tournamentID":"Te8RVa4tAIQJaY0sFp5C","topic":{},"link":"","infoSlide":"","division":"","content":"THBT serving military generals should be prohibited from talking to the Media.","id":"rH5giNadcCUXkUZTJeLP"},{"topic":{},"infoSlide":"","tournamentID":"YZNcM4Wgq9Um4e7kNLdH","content":"College and professional teams should be held accountable when their competitors or coaches commit sexual assault.","division":"","round":"6","link":"","language":"English","id":"rJ0Lino3NMKc6KyPwyd3"},{"content":"THW require all welfare recipients to take drug tests, and if they fail, cut off all monetary benefits and replace with non-monetary benefits such as food/clothing vouchers.","link":"","language":"English","round":"1","topic":{},"infoSlide":"","division":"","tournamentID":"H8XCoxhHfhkNSTYxwR42","id":"rJMPTQS4QBfHFMYGxh3W"},{"division":"","infoSlide":"","round":"5","language":"English","topic":{},"tournamentID":"iWZAiFK5ukpLd7JEkH5z","content":"THW ban the creation of saviour siblings.","link":"","id":"rKwpYVHpTuKhM3CoEgmy"},{"content":"TH is a police officer operating in a democracy with a functional judicial system. THW use extra-legal methods in the investigation and apprehension of serious criminals.","tournamentID":"dL45ZXh9u0IhHmAuaa0r","infoSlide":"","link":"","topic":{},"language":"English","round":"Open_Semis","division":"","id":"rLZN9ROhNWidkgKq13QK"},{"tournamentID":"VAfi19aZTAIKaUuELBL1","topic":{},"link":"","content":"TH is a citizen of a western liberal democracy that rejects discrimination on the basis of religion, gender, sexual orientation or ethnicity. TH would boycott works from artists (painters, musicians, movie directors, etc.) that personally hold discriminatory views, even when you like their art.","round":"4","language":"English","infoSlide":"","division":"","id":"rLopB7XVkq8JnUkRUdss"},{"tournamentID":"KE7jdAyW9az9nKVb9FMV","topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"},"education":{"title":"Education","check":true}},"link":"","infoSlide":"Jane is a young, politically progressive female teacher with an interest in activism. She has many years of experience anad expertise in advocacy education.","round":"","content":"TH, as Jane, would choose to work at an elite Catholic high school for boys instead of an all-girls public high school in an underprivileged neighbourhood.","language":"English","division":"","id":"rMEwHEcRPLyP0AOLLzgd"},{"infoSlide":"","language":"English","content":"TH opposes the growth of students' social activities.","link":"","round":"","tournamentID":"37eWQ7OoHqsPgaN53lHV","division":"","topic":{"education":{"check":true,"title":"Education"}},"id":"rN6282nijoOU5BBe5bQc"},{"link":"","topic":{},"infoSlide":"","division":"","tournamentID":"Ben6dcgLsdnzfbpJrHhp","content":"TH regrets hookup apps.","round":"2","language":"English","id":"rNeIBsyyl3PVBmRJ8ch5"},{"tournamentID":"OqQWJjNQBpGOYwMntw3z","content":"Chúng tôi tin rằng để chống lại dịch bệnh Covid-19, các quốc gia nên hành động theo 1 quy trình chung thay vì hành động độc lập như hiện nay.","division":"","round":"","topic":{"publicHealth":{"check":true,"title":"Public Health"}},"language":"Vietnamese","link":"","infoSlide":"","id":"rNoeeVrmSVLtl9Wokywg"},{"infoSlide":"","language":"English","round":"3","topic":{},"link":"","content":"THW stop all research into differences between the male and female brain.","tournamentID":"013M8EetYEKwpGlokURQ","division":"","id":"rOXEqAf9FjOmErxUkmGF"},{"content":"THO the instititution of petitionary prayer.","infoSlide":"","language":"English","link":"","tournamentID":"bvHOR7Oow9PPlKPlA2BT","topic":{},"round":"2.2","division":"","id":"rOZykve46iNW0OWyGvQ7"},{"language":"English","round":"3","division":"","topic":{},"infoSlide":"","tournamentID":"hUGuNPuqow1Qx4Z2fgOz","content":"TH supports the US's use of drones to eliminate terrorist targets.","link":"","id":"rQ2oOsG4RaHbVNcHG0NZ"},{"language":"English","tournamentID":"fBPBbh32BZ2p0Y1Fy5Yi","infoSlide":"Blockchain is a kind of record-keeping technology which stores data in blocks that it chains together chronologically each time new data is added, creating an ever-expanding link of information that is continuously verified by a vast network of server farms and individual \"miners\". This peer-to-peer verification keeps the information very secure, but also results in an extremely high electricity consumption to maintain the networks (currently estimated at over 130 Terawatt hours in a year, or 0.6% of global electricity consumption). A basic purpose of Blockchain is to be able to assign a unique identity to a tradeable piece of digital information, preventing attempts to alter or replicate it (because the peer-to-peer verification system mentioned above would detect such violations). A core use of Blockchain is cryptocurrencies like Bitcoin and Etherium, which are able to function as a decentralized currency without a central bank or government’s control. The blockchain is used to store a ledger of transactions on each coin, and the verification system keeps in place an artificial scarcity that prevents more from being \"printed out.\" Some other examples include the NFT (Non-Fungible Token) - a way of trading \"ownership\" of digital art by storing unique links to art pieces in blockchain form - as well as digital collectibles.","content":"This house regrets the rise of blockchain technology.","link":"","topic":{},"division":"","round":"Semifinals","id":"rQfVwD7EAYXJErIXt9AG"},{"tournamentID":"gsX4dlvvsr6lcKP3eM2T","content":"This house believes that the Turkish military should stop enforcing the separation of church (mosque) and state.","topic":{},"infoSlide":"","round":"ESL_Final","link":"","language":"English","division":"","id":"rR9cGGeHrrSGTqcMs8kA"},{"topic":{},"round":"2","tournamentID":"ShdZSmrzSQfbl0RYDnj8","language":"English","link":"","infoSlide":"","content":"TH regrets the popularisation and commercialisation of counter-cultural or oppositional sub-genres of music (e.g Gangsta Rap or Punk music).","division":"","id":"rRIaGJlJL716C0G6UZuB"},{"tournamentID":"1iGKg5a8rDH4ci9OIYEG","division":"","round":"1","language":"English","infoSlide":"","content":"THBT all components of the welfare state should be means tested.","link":"","topic":{},"id":"rRjFVRozZpVXZuwT7zI9"},{"link":"","tournamentID":"FwXwhiD8hyS9iD7pTyRe","round":"3","infoSlide":"","topic":{},"language":"English","content":"THBT the EU should focus all its efforts on the Common Market (should only strive for a Common Market).","division":"","id":"rRqoagR2gvnTLU7grp4M"},{"tournamentID":"0M48sfM68g8U5RgkKD2l","language":"English","topic":{},"infoSlide":"","round":"2","link":"","content":"THW penalise politicians who break pre-election pledges.","division":"","id":"rRxbUez5bJ6pAeQ0Om6p"},{"infoSlide":"","link":"","content":"TH believes that it would be in Russia's interest to abandon the goal of becoming a global superpower rivaling the US.","language":"English","round":"Open_Final","division":"","topic":{},"tournamentID":"UFyGWwwkKkZKyD4oHYoI","id":"rSHAh3YtumuNq5n9itDe"},{"tournamentID":"jpLuasMJYB40s1bJk2Ia","language":"English","infoSlide":"","link":"","content":"This House believes that welfare and pensions policy should be determined by a panel of experts selected by their peers, not accountable to government.","topic":{},"division":"","round":"5","id":"rSqtLwKNpiXmjPSlm20e"},{"link":"","round":"2","topic":{},"language":"English","content":"THBT democracies should extend voting rights to migrant workers.","infoSlide":"","division":"","tournamentID":"BXqPhfwak2R1kYHV48bp","id":"rT3YDbhsPXGe7hQFgftf"},{"language":"English","tournamentID":"5Qomv7BFHTKmY4PchwDr","topic":{},"infoSlide":"","division":"","content":"That we would require companies to use absolute blind recruitment.","round":"Open_Octa","link":"","id":"rTFq5VjNxwNzYKI8ehUh"},{"tournamentID":"jpLuasMJYB40s1bJk2Ia","round":"Open_Quarters","link":"","division":"","language":"English","content":"THBT the US-led coalition should no longer insist on Assad stepping down as part of their negotiations with Russia over Syria.","infoSlide":"","topic":{},"id":"rTcCQVU3RmM4kZYYRBOG"},{"topic":{},"language":"English","tournamentID":"ZClJskShp09gm6WCITGC","content":"THBT liberal supreme courts should misinterpret the constitution to advance progressive rights.","infoSlide":"","division":"","round":"Novice_Final","link":"","id":"rToP7JsD6FnZ7kfxNSks"},{"round":"1","content":"TH, as a star Latin American soccer/football player, would stay in their national league over playing in Europe.","topic":{},"link":"","division":"","tournamentID":"xoiSW3hTToX15wvrD6gA","language":"English","infoSlide":"","id":"rTsxRaunMQRhUSNPJidi"},{"tournamentID":"ARfoyigbkuieCEyKI1GV","link":"","infoSlide":"","language":"English","round":"2","content":"THW grant the Roma the right to settle in self governing autonomous communities.","topic":{},"division":"","id":"rTudreOfueVOnX36lEKt"},{"link":"","infoSlide":"","tournamentID":"2gsOERqtXqSETJffXbnj","topic":{},"division":"","content":"Giả sử y học cho phép, chúng tôi sẽ cho phép bố mẹ chọn lựa giới tính cho con.","language":"Vietnamese","round":"5","id":"rUARTY6IbxDer5IO8eU1"},{"link":"","round":"5","division":"","language":"English","tournamentID":"DfdqiFdfgcruP1pBNiHK","topic":{},"content":"THBT media in liberal Western democracies is not independent and free.","infoSlide":"","id":"rUQIhbydsDuOhqunvP8t"},{"tournamentID":"0bpNzjTgN71TZQEkHTak","link":"","topic":{},"division":"","round":"Open_Semis","language":"English","content":"TBHT the WTO should never allow nations to place export restrictions on food, rare-earth metals, and other non-oil commodities.","infoSlide":"","id":"rWFKmDBMCvnRK3UqYKhe"},{"round":"5","link":"","topic":{},"tournamentID":"4qwhZS2zOsdzzkyQlcaW","division":"","infoSlide":"","content":"THBT major film companies should use AI to choose which films to greenlight.","language":"English","id":"rXgqlo2XmzUeiUFUwAPA"},{"topic":{},"division":"","infoSlide":"","round":"1","content":"This House Would Ban All Lobbying Activity.","link":"","tournamentID":"nDjxmwMznw4ZJasK7Taj","language":"English","id":"rYlQLCTxtEbR8WGtyPtY"},{"link":"","division":"","topic":{},"language":"English","content":"THBT true womens liberation is incompatable with the existence of organized religion.","round":"4","infoSlide":"","tournamentID":"7iuaP5vcRAvHJFM4QYmP","id":"rYv3Y7hjlo96ZjSpyNI6"},{"tournamentID":"Te8CYa0tImwgHXE99O7W","link":"","infoSlide":"","division":"","round":"5","language":"English","content":"In times of economic crises, THBT the government should withhold information that is likely to damage market confidence.","topic":{},"id":"rZ1iuY3thalD9SzRjS26"},{"tournamentID":"EWgHoIX1nWCnY5U0tfPp","round":"Open_Final","topic":{},"language":"English","division":"","link":"","content":"THBT Western Liberal Democracies should boycott the Russian Winter Olympics 2014 in Sochi.","infoSlide":"","id":"rZmK3QP5LkCtsXCCqaBE"},{"content":"THBT the UK Should Leave The EU.","division":"","tournamentID":"oUef705Eak69UuzgVheB","infoSlide":"","language":"English","topic":{},"round":"2","link":"","id":"ra0GfdmSNpxBmSnoKjud"},{"link":"","infoSlide":"","language":"English","tournamentID":"nXN2yUG7soxwCp4xidzj","content":"Sam Childers, the “Machine Gun Preacher” is an American citizen who travelled to Sudan in order to take up arms against the Lords Resistance Army (a terrorist organsation). Childers has set up a local resistance network that does not co-ordinate with the Sudanese state and employs violent methods to resist the LRA. THS Sam Childers - Round 2.","division":"","round":"2","topic":{},"id":"rap5xFtNy4ICCAeLIfco"},{"link":"","topic":{},"infoSlide":"","content":"This House Believes That the state should strongly incentivise highly educated individuals to have children.","tournamentID":"YaTXOaEvPKh8XHB3VTBK","round":"Open_Quarters","division":"","language":"English","id":"rbsleLuQ9TqVBwtgSLB2"},{"content":"THW prevent climate change deniers from seeking political office.","round":"4","link":"","division":"","tournamentID":"uES9ygXHa8tJuYB7dFEM","language":"English","topic":{},"infoSlide":"","id":"rcWZks6IDb4IxcloTzRG"},{"infoSlide":"COVAX stands for \"Covid-19 Vaccines Global Access Facility\". Led by the WHO, it aims to develop, purchase and deliver vaccines to more than 180 countries, the scheme has started distributing vaccines in February 2021, with poor and middle-income countries receiving the lion's share. COVAX hopes that, by the end of 2021, more than two billion doses will have been delivered to countries across the world, especially the poorest ones.","tournamentID":"75jspJDrwq3Ldwex90Qr","link":"","round":"5","language":"English","topic":{},"content":"Upon the condition that essential medical workers and the most vulnerable have been vaccinated, THBT the WHO should compel its rich members to donate their vaccines to COVAX for fair and equitable distribution to low middle-income and lowest income countries.","division":"","id":"rckFngRkUd8lUZCw4tC5"},{"link":"","round":"1","infoSlide":"","division":"","content":"This House Believes That teachers should contradict curriculum that they believe will be harmful to society.","topic":{},"language":"English","tournamentID":"wdL4H8i9EHTz4mqKuZHP","id":"rd5W4zC3Og4aDfoQOnT8"},{"language":"English","topic":{},"round":"ESL_Quarter","content":"That portrayals of religious deities and prophets in media should receive prior approval from relevant religious authorities.","division":"","infoSlide":"","link":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","id":"rdBetpDCxDOE6F43UUNl"},{"infoSlide":"","content":"THO the rise of billionaire philanthropy.","link":"","topic":{},"language":"English","division":"","round":"6","tournamentID":"NtnveNmZosTMD9TU0qA8","id":"rdIiDoKNNieWIsL7P3tU"},{"infoSlide":"","language":"English","content":"Should Bilbo stay home?.","division":"","tournamentID":"MULqjXPKLke2z3n3Aafx","link":"","round":"3","topic":{},"id":"rdQsDhphUMIIbc4r7Sch"},{"division":"","round":"4","link":"","infoSlide":"","language":"English","topic":{},"content":"THW fight for the reunification of Romania with the Republic of Moldova.","tournamentID":"PNpMzinCvz3Z9bTJfV9t","id":"re8t1uvv1jgzynhRkTgQ"},{"topic":{},"division":"","content":"This House would support the partition of nation-states along their ethnic lines.","tournamentID":"sVguH0ZxbQ8C5aNo2rNf","link":"","infoSlide":"","round":"Open_Final","language":"English","id":"reSA7K42gJrKJHuJ5XBF"},{"content":"This house would lift sanctions on Iran.","link":"","division":"","language":"English","infoSlide":"","tournamentID":"VPUCPVj9FHFW0uzJinv0","round":"EFL_Final","topic":{},"id":"rf4wdESziLDNu7oac8K8"},{"infoSlide":"","content":"This House opposes the propagation of Canadian exceptionalism.","tournamentID":"wLO2B4MufJ4R3qOzUGM8","topic":{},"language":"English","round":"Open_Final","division":"","link":"","id":"rf9uFjyveCkBl2lGzVjA"},{"tournamentID":"6UClYEkoQLViAru2xei4","content":"This House would allow people raised in isolated communities (e.g. the Amish, Hasidic Jews) to sue their communities for harms caused by their lifestyle.","infoSlide":"","division":"","language":"English","round":"1","topic":{},"link":"","id":"rfX2yHgHaCSCMHTcyXYc"},{"topic":{},"content":"TH, as the North of England, would violently secede from the UK.","round":"1","division":"","link":"","language":"English","infoSlide":"","tournamentID":"KErVXbqRahyWD7ZB1Q1m","id":"rgsd0RJRY7pPay2zyHI5"},{"infoSlide":"","language":"English","division":"","topic":{},"content":"This house would ban international aid charities from using senational, graphic, or overly-emotional images of suffering in fundraising and advertising campaigns.","link":"","tournamentID":"NYyJaJXo1SigW6G8Y1Lm","round":"3","id":"rh9ImUQTAC4srNJAFenD"},{"content":"TH supports essential services workers rights to strike.","round":"2","division":"","language":"English","link":"","tournamentID":"dptDC5a1y6D1HClBFEO4","infoSlide":"","topic":{},"id":"rhi3zbcsbvnBLfxn2xKs"},{"link":"","infoSlide":"","language":"English","topic":{},"tournamentID":"50nXPc798MPMXDyPN224","round":"3","content":"This house believes that governments should never pay ransoms.","division":"","id":"riAQYQ9GdYgiplZGig1r"},{"tournamentID":"1leOvfvlbNAIDzW6UnkK","language":"English","content":"THBT privacy is an illusion.","link":"","topic":{},"infoSlide":"","division":"","round":"2.3","id":"riKcVNhHkiNzWqEeV9fK"},{"topic":{},"content":"That Western companies with a significant number of employees from the Indian diaspora should actively campaign against the caste system.","infoSlide":"","round":"ESL_Semi","link":"","language":"English","tournamentID":"5Qomv7BFHTKmY4PchwDr","division":"","id":"rj4IieDzwKZGdf4CL9q0"},{"content":"This House regrets the societal expectation of going to the University.","round":"1","topic":{},"division":"","link":"","infoSlide":"","tournamentID":"db8a4cSMVYVFuxZgcf0y","language":"English","id":"rjFWzUcZxRtD8zkoMgh7"},{"round":"3","tournamentID":"D8wxxb57dF9p7tV8985s","link":"","topic":{},"language":"English","infoSlide":"","division":"","content":"TH, as a professional female athlete, would not pose in a sexualised manner for magazines and commercials.","id":"rjIgKqBD9BNUWV1IQHT9"},{"language":"Vietnamese","round":"","division":"","topic":{"education":{"check":true,"title":"Education"}},"infoSlide":"Hậu phổ thông là bất cứ một chương trình giáo dục nào từ cấp bậc Đại học trở lên.","tournamentID":"FZTHJ19pUWQG2SZNeOvr","content":"Chúng tôi tin rằng chính phủ của các quốc gia đang phát triển nên tích cực ngăn cản sinh viên theo đuổi giáo dục hậu phổ thông ở nước ngoài.","link":"","id":"rjSCgsbRowFsxXsl4YIe"},{"language":"English","content":"THBT the International Criminal Court should focus on indicting and prosecuting larger numbers of middle-to-low ranking suspects for war crimes, crimes against humanity, or genocide, rather than smaller numbers of high ranking suspects.","round":"Open_Quarters","infoSlide":"","topic":{},"tournamentID":"o83Oqm9vDtGaG6SVldke","link":"","division":"","id":"rjTXvwq5M9MAf9s8Mb0i"},{"language":"English","topic":{},"division":"","content":"THBT all sentencing should be decided according to an algorithm that considers purely the probability of recidivism of the convict.","link":"","infoSlide":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","round":"5","id":"rk1zByZYNrBhpGqe5Z5a"},{"infoSlide":"","round":"4","content":"TH believes that climate change movements should prioritize the mitigation of climate change rather than the prevention of climate change.","division":"","link":"","language":"English","tournamentID":"kaKFVFzhrgSOIPlruLU6","topic":{},"id":"rkAq5ITVbBfw6R9iQgRu"},{"tournamentID":"PULmrzx6k00EzEt7BxfG","infoSlide":"","language":"English","link":"","division":"","topic":{},"content":"THBT states should strive to reduce inequality even after everyone has enough for an acceptable quality of life.","round":"Open_Semis","id":"rkMllE5GdcbCjdlW0F79"},{"topic":{},"content":"This House opposes the dominant social norm in favor of monogamy.","infoSlide":"","tournamentID":"MKOx1AvBmfWL7cHrRXg2","division":"","round":"Open_Octos","link":"","language":"English","id":"rkeDlfeOiv447efQIJzU"},{"topic":{},"content":"If sometime in the future the opportunity arose, she'd be the one to run for president. The first woman president, Ivanka entertained, would not be Hillary Clinton; it would be Ivanka Trump.\" Motion: TH, as Ivanka Trump, would publicly distance herself from her father.","tournamentID":"NbIgaSiRmXdh3BAZ88Vm","infoSlide":"","round":"3","link":"","language":"English","division":"","id":"rlKcgsN6TuAIHWrrxPyO"},{"language":"English","tournamentID":"yxjvIJregbdMEVkOnzCg","content":"THW not let cities use public funds to construct stadiums for professional sports teams.","link":"","round":"3","topic":{},"infoSlide":"","division":"","id":"rmNvkAx3h86YoLhSt2kD"},{"content":"TH believes that parents of a musical child genius have a moral obligation to push that child to maximise their musical potential.","tournamentID":"WqXUc7EMDvkqqg3BVCtf","infoSlide":"","division":"","language":"English","round":"ESL_Final","link":"","topic":{},"id":"rmTxGAbPWhGTYpBbxuZv"},{"link":"","topic":{},"infoSlide":"","content":"In instances where utterances of a minor amount to hate speech, THS the public shaming of the parent rather than the minor.","round":"1","language":"English","tournamentID":"aywt5Kt0TqoeqngKQ0I4","division":"","id":"rmad3ppGIR45YA3xptKQ"},{"content":"THBT it is better to learn than to be taught.","language":"English","topic":{},"round":"D2","infoSlide":"","tournamentID":"zppT86F7lAE0Gpp7tWYo","division":"","link":"","id":"rnCzhhuXwKUD5hWYRT5G"},{"content":"TH, as the BJP, would reinstate Articles 370 and 35(A) of the Indian Constitution.","language":"English","infoSlide":"","topic":{},"division":"","tournamentID":"uES9ygXHa8tJuYB7dFEM","link":"","round":"2","id":"rnVjtSB13huiyJGBOgR7"},{"infoSlide":"","round":"Open_Final","language":"English","content":"THW significantly lower labour regulations for youth in EU areas with high youth unemployment.","division":"","link":"","topic":{},"tournamentID":"rMtZQSWssQ8170WIyJTX","id":"roLCZresCpwYhhYLnz9Q"},{"infoSlide":"","topic":{},"language":"English","tournamentID":"lzwPRjjdpUi2iKUXkOjp","division":"","content":"This House regrets Aung San Suu Kyi's declaration of intention to control the National League of Democracy (NLD) despite being constitutionally barred from running for president.","round":"4","link":"","id":"rpvSwQJBHbFcLU5Aclbe"},{"content":"This house believes that Japanese feminists should advocate for the abolition of the Imperial system (天皇制) as opposed to advocating for the inclusion of female imperial members in the line of succession for the Imperial throne.","tournamentID":"L0ovxzciizWhfK3fHJU8","infoSlide":"","link":"","topic":{},"language":"English","division":"","round":"2","id":"rqDX1M50XLnT16Q6o1Hl"},{"round":"2","link":"","language":"English","topic":{},"content":"THBT the left should publicly support the violent suppression of alt-right speech.","infoSlide":"","division":"","tournamentID":"efp9mMZFiy8fVwkom17I","id":"rrLXYYelQBcDXAQwpVd3"},{"division":"","language":"English","infoSlide":"","content":"THS efforts to colonize Mars.","topic":{},"tournamentID":"Nzien6R9RXvOTrNMJsza","round":"Open_Semi","link":"","id":"rrocUlqJc2AWnx6yMHH3"},{"content":"THBT Canada should take the lead in seeking the diplomatic isolation Saudi Arabia.","round":"Open_Quarters","link":"","infoSlide":"","division":"","tournamentID":"vURFmLn4wdqX6ZbK0ini","language":"English","topic":{},"id":"rsCzHeFvYpi2hJBw53SF"},{"topic":{},"language":"English","tournamentID":"9yPqE2fe1oaHsd7ankOa","content":"THP bail-in over bail-out.","link":"","infoSlide":"","round":"4","division":"","id":"rsPdsBvfWr3AZykXJUID"},{"tournamentID":"DpY0fOiqQ2FcccIfvmaH","infoSlide":"","language":"English","topic":{},"link":"","round":"4","content":"THW use military force to destroy North Korea’s nuclear facilities.","division":"","id":"rsXKqmjfn8XJ1RmQ8iyP"},{"round":"Open_Semi","topic":{},"language":"English","division":"","infoSlide":"","link":"","tournamentID":"L8JGtnnMnhA8w9ooOx0S","content":"THW allow individuals to sell their right to sue to a third party.","id":"rsuWPYJ4e4yBVbHljlJb"},{"link":"","infoSlide":"","content":"THW allow “religious duty/compulsion” as a mitigating defense for crimes.","topic":{},"tournamentID":"ZHpmROZ4G7eY4iB9dTsM","language":"English","division":"","round":"2","id":"rt7IE8xFPp0Rl475E3xy"},{"division":"","round":"","language":"Vietnamese","link":"","tournamentID":"LlsxibXteGBGML9aitY2","topic":{"politics":{"title":"Politics","check":true}},"content":"Trong các cuộc khủng hoảng, chúng tôi ủng hộ một chính phủ kỹ trị hơn là dân chủ.","infoSlide":"Kỹ trị là một dạng chính phủ mà các quan chức được chọn dựa vào độ thông thạo kĩ thuật của họ. Một xã hội kỹ trị khác với một xã hội dân chủ ở chỗ là ở xã hội kỹ trị thì những con người này được chọn để điều hành đất nước qua một quá trình chọn lọc mà coi trọng kĩ năng liên quan của họ, thay vì việc cá nhân đó có được sự ủng hộ của số đông hay không.","id":"rtVZ7zXZQeL54PwA2txK"},{"division":"","infoSlide":"","round":"4","language":"English","topic":{},"link":"","tournamentID":"EdTnzchhKzipTBRxQvXJ","content":"THW check all Doctorate theses of living persons for plagiarism.","id":"rtjg7RVLFuIPRhY4vHOX"},{"language":"English","infoSlide":"","link":"","topic":{},"tournamentID":"XnmecTVfWWNVfWZaANER","division":"","round":"5","content":"THS a school voucher system.","id":"rtuzUaL4MvYlrW1Z3UOu"},{"tournamentID":"lVzNmdGBefqKp5cetQ6Z","language":"English","content":"THW abolish the distinction between an attempted and a completed crime.","division":"","round":"2","link":"","infoSlide":"","topic":{},"id":"ru9pDZsFgxVuSP08JbXv"},{"link":"","infoSlide":"","content":"This House Believes that feminist movements in the developing world should integrate religious messages and institutions into their advocacy, rather than distancing themselves from them.","language":"English","round":"2","division":"","topic":{},"tournamentID":"S5UzkuOf9XN6BnhOSbRC","id":"ruRese4ibuEDDqeCI1l3"},{"language":"English","infoSlide":"","link":"","round":"3","content":"THW allow ex-felons to become police officers.","division":"","tournamentID":"JDfeMpzRWbEVXloSgRZp","topic":{},"id":"rvsbYCEcps5EycXGedip"},{"round":"4","language":"English","topic":{},"content":"This House would take a pill that permanently made one contented with one’s current life situation.","tournamentID":"lmRNEraLEkD31bc6Nbnn","link":"","infoSlide":"","division":"","id":"rwLBt7XXPVziwpkaoIx4"},{"division":"","link":"","tournamentID":"Te8RVa4tAIQJaY0sFp5C","round":"4","infoSlide":"","topic":{},"language":"English","content":"THBT the Indian Government Should Ban marriage between Members of the Same Caste.","id":"rwU4eakCdtPJmaxkJOk2"},{"infoSlide":"","language":"English","topic":{},"division":"","tournamentID":"inOeJRfxqTpVMfq0i7Ze","content":"This house believes that efforts to include characters with mental illnesses in popular media actively harms people with those conditions.","round":"2","link":"","id":"rwUnOSSTWciIRsJuRLse"},{"round":"1","division":"","language":"English","link":"","tournamentID":"IpWyfCcksctR86jKX66g","content":"THBT Parents Should Choose Not To Send their Children to Private Schools.","topic":{},"infoSlide":"","id":"rwpcbEBdo8doDfwh5tQe"},{"content":"Setting aside infectious diseases, THW work to prevent interaction with tribes who have not had contact with the modern world.","infoSlide":"","language":"English","round":"4","topic":{},"tournamentID":"HlR3H86XBK4mqvL9v5HT","link":"","division":"","id":"rxsbspXBstQc6aEORHcJ"},{"division":"","infoSlide":"","tournamentID":"pLQyWywMwoV4AU3XoFJO","topic":{},"language":"English","link":"","round":"1","content":"THB the police should not create perp walks.","id":"rykvQW1wxit8W6RdMmxy"},{"content":"THBT Finland should unilaterally pull out of the Euro.","link":"","infoSlide":"","language":"English","topic":{},"tournamentID":"UVd3X0lgKy2dOb5Yx1c7","division":"","round":"4","id":"rzbtt5odJTUIw4uGc7vY"},{"language":"English","tournamentID":"92dIEXeOXUVvlcFeGCIr","content":"THB the West should prioritize stability over exporting democracy in foreign policy.","round":"ESL_Semis","division":"","infoSlide":"","topic":{},"link":"","id":"s0lyTZlPv4No9lngoq5I"},{"division":"","infoSlide":"","round":"Open_Final","content":"THW create and fund schools that exclusively admit children from ethnic minorities.","topic":{},"tournamentID":"7DiEtR3YNKR69fHccj5Y","link":"","language":"English","id":"s15j7qH508hLmeB8IUdB"},{"round":"4","tournamentID":"ZvEJb11Ww6RpoVmg4QV3","link":"","infoSlide":"","division":"","language":"English","topic":{},"content":"TH prefers regional trade agreements to the WTO.","id":"s1PWoMzwzZQU1Ih9zOmw"},{"language":"English","topic":{},"tournamentID":"uikc98CupbamVyAQIHsf","link":"","content":"THBT it is immoral to donate to animal welfare charities while there are charities which aim to alleviate human suffering still in need.","round":"1","infoSlide":"","division":"","id":"s20A4mYb7aGe1G2uLYb2"},{"topic":{},"content":"THBT the UN Should unilterally recognise Catalan independence.","tournamentID":"m357g5mmEMxSAwbDEk5d","division":"","infoSlide":"","language":"English","round":"3","link":"","id":"s2eTnZHFN0Qg4QOrWa8P"},{"link":"","round":"2","content":"This house believes that nations should invest in regional human rights institutions at the expense of global institutions (such as the ICC).","topic":{},"language":"English","infoSlide":"","division":"","tournamentID":"wLfoMQYsV3E4fiFQ126i","id":"s2saLDVNKRXrhRdJxc15"},{"topic":{},"division":"","round":"Open_Final","infoSlide":"","language":"English","content":"TH supports the rise of online communities that aggressively police ideological purity within the feminist movement.","tournamentID":"o2dx25z3TGRcLxLt33Qk","link":"","id":"s2w8T52sU8XPtCilEBjQ"},{"topic":{},"link":"","infoSlide":"","content":"THB It is Illegitimate for the State to Attempt to Instill Morals or Values in Children in Schools.","language":"English","tournamentID":"BjyPWHMlV10O4VN8B1XE","division":"","round":"1","id":"s3fdrsCAqd5ZwFuByVC5"},{"language":"English","tournamentID":"PULmrzx6k00EzEt7BxfG","division":"","content":"TH supports the privatisation of Saudi Aramco.","topic":{},"infoSlide":"","link":"","round":"4","id":"s4J5oWmX41jr8Sqo8x8q"},{"topic":{},"link":"","infoSlide":"","language":"English","content":"THW replace all means-tested benefits with a Universal Basic Income.","division":"","tournamentID":"70rnu3F4Q3ntkA4t3Wfl","round":"4","id":"s4XScZrAe0wcm9mSTErl"},{"round":"Novice_Final","content":"This supports prison abolition as opposed to prison reform.","division":"","language":"English","infoSlide":"","link":"","tournamentID":"MgpFX31hoBasrUiOV7Eu","topic":{},"id":"s4nRDJenPiYFkMK7q47e"},{"content":"TH REGRETS THE COMMERCIALISATION OF ANTI-RAPE PRODUCTS.","link":"","language":"English","round":"1","infoSlide":"","topic":{},"tournamentID":"M23yN5DieB5FwQ5wfjDl","division":"","id":"s89CgApY5BL9fiPGHg1z"},{"division":"","tournamentID":"wA1XDLHJESmSgLsfZ9Qe","round":"Open_Final","link":"","content":"This House, as China, would grant universal suffrage to Hong Kong.","language":"English","infoSlide":"","topic":{},"id":"s9hhgxsmQuNUlPSyhAZC"},{"content":"THBT it was against the interest of Syrian Kurds to align themselves with the West in the Syrian Civil War.","tournamentID":"ptDJAxuw5pGiwabyHZil","language":"English","link":"","round":"4","topic":{},"infoSlide":"","division":"","id":"sBVy8niq6tE5UOLzdrOP"},{"tournamentID":"Iv1dWODCjV8TBafyTxx7","content":"THBT decisions on the legalisation, banning, or limiting of substances, including, but not limited to narcotics, tobacco & alcohol should be left to panels of experts rather than to elected representatives.","language":"English","link":"","infoSlide":"","division":"","round":"3","topic":{},"id":"sBzEC6Ta2ZJRabyFyZCy"},{"infoSlide":"","topic":{},"language":"English","link":"","round":"ESL_Final","division":"","content":"THB that European States should end all funding for the arts until everyone lives above the national poverty level.","tournamentID":"Xt0UV62VgaP360hvHqWG","id":"sCOSMBL1GgFKArUaeI7R"},{"language":"English","tournamentID":"NYyJaJXo1SigW6G8Y1Lm","topic":{},"round":"8","link":"","infoSlide":"","content":"This house believes that micro-finance organisations (including, but not limited to: NGOs, charities and development banks) should offer micro-finance loans in developing nations exclusively to women.","division":"","id":"sCRg4RwQquQGonwgX2ci"},{"division":"","content":"TH, as 2 atheist parents, raising their child in a homogeneous religious rural community (e.g. in Texas) would raise their child to be religious.","round":"Open_Final","infoSlide":"","tournamentID":"FaBy9PfDE8gfy5w00VdM","language":"English","link":"","topic":{},"id":"sCiZ722lwJEnJF43UNma"},{"language":"English","link":"","infoSlide":"","round":"4","content":"THW abolish deposit guarantee schemes everywhere.","tournamentID":"2XJwkUOw6JeegMJHT6Hl","topic":{},"division":"","id":"sCo4Psqn24usGg8UKjqq"},{"content":"THBT the education system should promote equality of outcomes over equality of opportunities.","tournamentID":"xQkVRRUcXZJgGzxXZ2t0","topic":{},"link":"","infoSlide":"","round":"4","language":"English","division":"","id":"sDRWE9OJSiwtL5n5ZG2J"},{"link":"","topic":{},"tournamentID":"5Qomv7BFHTKmY4PchwDr","language":"English","content":"That we regret the rise of nation-states built around exclusive notions of language, race, and religion.","infoSlide":"","division":"","round":"EFL_Semi","id":"sDuSi23bPF0AZrpdui1L"},{"division":"","content":"THBT full gender emancipation requires the end of monogamy as a dominant social norm.","tournamentID":"4yVRmMNHzHW12EVIlnyZ","round":"4","topic":{},"language":"English","infoSlide":"","link":"","id":"sDw0P5eKcKjycmTLpu5d"},{"link":"","round":"","infoSlide":"","division":"","tournamentID":"CJKUeBIUibEtZYahoUQV","content":"Chúng tôi tin rằng một xã hội có hoạt động từ thiện và quyên góp phổ biến tốt hơn một xã hội có hệ thống phúc lợi xã hội do Nhà nước điều hành.","language":"Vietnamese","topic":{"politics":{"check":true,"title":"Politics"}},"id":"sESxeKzQBgiTLENxMJwo"},{"link":"","round":"Open_Quarters","tournamentID":"Bx1uUqHBcAJ7qAZcUwyz","infoSlide":"","language":"English","content":"THW repeal Article 22 Subsection 1 of the 1961 Vienna Convention on Diplomatic Relations.","division":"","topic":{},"id":"sEt9OS5MQeGeyj4rUvKp"},{"content":"THBT criminal defendants should only be allowed to use a state-funded attorney.","topic":{},"tournamentID":"OQmCXCvJatQN0zG3lklx","link":"","language":"English","round":"1","infoSlide":"","division":"","id":"sFEe2t6y5mLICd0vunBZ"},{"round":"3","tournamentID":"rmnZcOUQU2iED2r3pXca","language":"English","infoSlide":"","content":"THBT criminal law should not take retribution into account as a criteria for punishment.","topic":{},"link":"","division":"","id":"sFJDNExrnuoB2Y6tJ09z"},{"content":"THP a world without a belief in life after death (heaven, reincarnation, past lives, hell, etc).","round":"Novice_Final","division":"","topic":{},"link":"","language":"English","infoSlide":"","tournamentID":"s6w7WZApDWnBBmzeKY4h","id":"sFXs0YcfLS90LgreBZ0w"},{"link":"","topic":{},"language":"English","content":"THBT the public’s right to know ought to be valued above the right to privacy of candidates for public office.","infoSlide":"","round":"3","division":"","tournamentID":"kwsuFgaQ5lYbaXVGrGal","id":"sGZIVilR7csZFZelAZ65"},{"division":"","topic":{},"tournamentID":"sVguH0ZxbQ8C5aNo2rNf","infoSlide":"","content":"THW ban male circumcision for Under 18s, except for medical reasons.","link":"","language":"English","round":"1","id":"sGeXtWoJzCWNfHTSdXuk"},{"tournamentID":"1bHNYzF6GWRqdpr3f5vt","infoSlide":"","content":"That we should hold all state presidential primary elections simultaneously.","topic":{},"division":"","language":"English","round":"1","link":"","id":"sGiFvDO1nCs4ZnXU54JS"},{"infoSlide":"","content":"This house would ban government funding of religious schools.","topic":{},"round":"1","link":"","language":"English","tournamentID":"VPUCPVj9FHFW0uzJinv0","division":"","id":"sHBCbzm6G8h66z1OJjAg"},{"round":"1","tournamentID":"uHY8OFiOXYb0VdlJt20c","infoSlide":"","division":"","link":"","topic":{},"language":"English","content":"This House supports individuals publicizing the identity of people who attend far right protests and gatherings in the USA to their community (coworkers, employers, family etc.).","id":"sHBWzPhKXg2XMbuYSza3"},{"tournamentID":"5Qomv7BFHTKmY4PchwDr","infoSlide":"","language":"English","topic":{},"link":"","content":"That the state's failure to address a pandemic should be considered as a crime against humanity.","division":"","round":"EFL_Quarter","id":"sHTeHRQd0hsc38BTx7ZA"},{"content":"THB countries should cease trying to prevent climate change and focus resources on preparing for its consequences.","tournamentID":"yhJgdE0VFcsqlvWffep1","language":"English","link":"","topic":{},"round":"5","infoSlide":"","division":"","id":"sHkcy8sjlPEs77VzbBRE"},{"tournamentID":"IrZL7r0XTyBpGGSAYVYR","round":"2","infoSlide":"","link":"","topic":{},"language":"English","division":"","content":"THW allocate public housing and use financial incentives (e.g. rent subsidies) to maintain a minimum quota of ethnic groups in all areas of the country.","id":"sIdRP69EcuXKK5lMWWPC"},{"topic":{},"infoSlide":"","content":"THW financially incentivize drug and alcohol addicts not to have children.","link":"","tournamentID":"9jfZRYzidDD9sleXlrNL","division":"","round":"5","language":"English","id":"sIlK74HdS4wgBOp8c2mL"},{"content":"THBT the world should focus on adapting to the effects of climate change instead of trying to avert it.","link":"","round":"4","topic":{},"language":"English","division":"","infoSlide":"","tournamentID":"RautsrmlhwL2BBMyTRVG","id":"sJmdMkpWH5QEZNDD0PdF"},{"topic":{},"content":"THBT NGOs/charities should not accept donations from organizations that contradict their aims.","round":"1","link":"","infoSlide":"","language":"English","division":"","tournamentID":"lM9u9z6CfHfA9HPucSIT","id":"sJpvMlOGNmH6VSvRerm4"},{"content":"THBT national governments should aim to depopulate rather than regenerate areas with few viable economic activities.","division":"","round":"ESL_Final","infoSlide":"","language":"English","link":"","topic":{},"tournamentID":"xQkVRRUcXZJgGzxXZ2t0","id":"sK5fJ8dyqLzbrKXOnJTV"},{"tournamentID":"HtADLvDpWQsx5qtLh5A9","link":"","division":"","round":"Open_Quarter","language":"English","infoSlide":"","content":"THS the illegal removal of statues of popular historical figures by social justice movements who consider them to be offensive (e.g statues of Winston Churchill in the UK, of Sukarno in Indonesia, etc).","topic":{},"id":"sKVYu4SPa8NYzXn3QlXX"},{"content":"This House prefers a world in which Islam is structured around a strong, central governing authority (e.g. The Pope in Catholicism).","topic":{},"tournamentID":"macdlwUjYqFCGHKvQS20","infoSlide":"","link":"","round":"Open_Final","division":"","language":"English","id":"sLKtcatITc1sPkbM3YMi"},{"link":"","language":"Vietnamese","infoSlide":"","content":"Chúng tôi, những nhà hoạt động nữ quyền, sẽ khuyến khích phụ nữ không trang điểm.","topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"division":"","tournamentID":"37eWQ7OoHqsPgaN53lHV","round":"","id":"sLjOHIUDy4BPuREMzSIr"},{"language":"English","link":"","division":"","topic":{},"tournamentID":"F966uo3Po2bRFWfFesTz","content":"THBT the UK Labour Party should stand candidates in general elections in Northern Ireland.","round":"2","infoSlide":"","id":"sLreMroUMJ0cVERsrIa5"},{"infoSlide":"","round":"Open_Final","language":"English","tournamentID":"7gnlDrExulbBsH6xw0jx","division":"","content":"THW privatise all education.","topic":{},"link":"","id":"sN8jh31mAadZj9DxvoB9"},{"topic":{},"tournamentID":"sVguH0ZxbQ8C5aNo2rNf","language":"English","content":"This House would allow prospective mothers to take the pill.\".","link":"","round":"Open_Semis","infoSlide":"","division":"","id":"sNHf8HvPWrboGAO3gbHn"},{"round":"1","infoSlide":"","topic":{},"tournamentID":"vY2MtSrfiAgUKzGbzzMm","content":"THW introduce mandatory trips to Nazi concentration camps for Austrian elementary school students.","language":"English","division":"","link":"","id":"sO6NhPyls10Mjsxy0QNv"},{"topic":{},"content":"Chúng tôi tin rằng các gia đình thuộc tầng lớp trung lưu nên áp dụng mô hình tuổi vị thành niên kéo dài cho con cái, thay vì tự lập sớm.","language":"Vietnamese","division":"","round":"Grand Final","infoSlide":"Tuổi vị thành niên kéo dài là một hiện tượng xã hội mà trẻ vị thành niên hoặc người lớn trong độ tuổi từ 18-25 trì hoãn các trách nhiệm người lớn và quá trình tiếp nhận những hành vi thường được coi là trưởng thành.","link":"","tournamentID":"gUFKQBcgvghmUX6k0Dj3","id":"sPRb1RCr7zkvZdNXCZyL"},{"topic":{},"infoSlide":"","tournamentID":"RlKeUHJPWxI30cOSUIu3","round":"1","content":"This House would heavily financially incentivise companies to take current prisoners as interns or apprentices.","language":"English","division":"","link":"","id":"sQDbkQPo4mcZ8lHInqqa"},{"round":"Open_Semi_1","content":"The Dutch people should select the coach of the national football team.","topic":{},"tournamentID":"h373wn3dFw9UcWDcJpyy","language":"English","link":"","division":"","infoSlide":"","id":"sRggS6gfBiJf9U2XYxyt"},{"language":"English","infoSlide":"","link":"","content":"THBT torture is justified.","topic":{},"division":"","tournamentID":"x1XtlIYDR23OSfEzPpkf","round":"3","id":"sRhf91quH7oAiH7LyBiK"},{"language":"English","tournamentID":"3B01KdqnCVzQEVjKcHiT","link":"","infoSlide":"","division":"","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"content":"THR the describing of daily lives of the disabled as an inspiration.","round":"","id":"sRqqGJNVozQJg20AabSI"},{"tournamentID":"pvKZkg6sqicG5nXA2mvY","link":"","round":"Open_Final","content":"THBT India should adopt aggressive free market policies.","topic":{},"language":"English","infoSlide":"","division":"","id":"sSmMQOrrOFRwk0lndw4p"},{"link":"","tournamentID":"Ben6dcgLsdnzfbpJrHhp","division":"","language":"English","infoSlide":"","topic":{},"content":"THBT the death of newspapers and print news media would be good for journalism.","round":"1","id":"sSnAYbz2gZiT5lGgAqqO"},{"tournamentID":"8OIcp0isoNfvCv3ZWmkt","topic":{},"link":"","language":"English","division":"","round":"1","infoSlide":"","content":"Should parents’ votes carry more weight in elections?.","id":"sTj6GqfO4Tzi2issfq6V"},{"division":"","round":"","language":"English","tournamentID":"37eWQ7OoHqsPgaN53lHV","link":"","infoSlide":"","content":"THO the trend of honoring the wealthy.","topic":{"hr":{"check":true,"title":"Human Relationships"}},"id":"sTwNUINJxVVQVVizGXnR"},{"language":"English","topic":{},"infoSlide":"","tournamentID":"LYTCjoO4snxI4nOKTVZB","link":"","division":"","content":"THBT Israel should Privatize the West Bank Checkpoints.","round":"4","id":"sUQhjVIVSfisZ4x0RZfm"},{"language":"English","link":"","topic":{},"division":"","tournamentID":"zidC2m00xOQF4gT3tgiY","infoSlide":"","round":"4","content":"THW facilitate religious proselytization in areas of high socio-economic deprivation.","id":"sUrrO0kJBaaOLKgb15gj"},{"round":"2","topic":{},"language":"English","link":"","division":"","tournamentID":"wn4DAqBcGTWBviyQc0CR","infoSlide":"","content":"THW have a standing policy of conducting air strikes on government buildings of states which are implicated in the massacre of their own citizens.","id":"sVI4Nrz7WzkekdEuDUl9"},{"division":"","round":"3","content":"THB the UN should immediately recognise and independent state of Palestine.","infoSlide":"","link":"","language":"English","tournamentID":"9PjiZBOUlI39GMCrggZs","topic":{},"id":"sVS1uOlwlGhEYkgeDF6C"},{"tournamentID":"B2zJ5QeyI7MVcboS7m4U","language":"English","topic":{},"content":"THBT Google, YouTube, & social media websites should remove content which it deems to insult religions.","round":"1","infoSlide":"","link":"","division":"","id":"sVSGcLNHu9woLEerT4MH"},{"division":"","round":"2","infoSlide":"","tournamentID":"sgcqNV5ntCoa4H8glRBu","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"link":"","language":"Vietnamese","content":"Chúng tôi tin rằng mạng xã hội nên xóa bỏ nội dung, hình ảnh của các cá nhân, tổ chức có dính líu đến hoạt động Xã hội đen. (Huấn Hoa Hồng, Khá Bảnh, ...)","id":"sWUKtIwPsOHZwhfq6XSg"},{"link":"","content":"This House Believes That feminists should advocate for the destruction of the traditional family unit.","round":"4","topic":{},"language":"English","division":"","infoSlide":"","tournamentID":"a6rNMpZKAK9f2nCSkXu1","id":"sWeBOwG2EW6FN3S7dDsr"},{"topic":{},"language":"English","link":"","division":"","content":"THP a system where campaign donations are banned and all candidates for an election are equally publicly funded to a world that allows donations to candidates and parties.","tournamentID":"4qwhZS2zOsdzzkyQlcaW","infoSlide":"","round":"1","id":"sWvW1xjLZjcQWOqt2nfk"},{"link":"","division":"","infoSlide":"","topic":{},"language":"English","tournamentID":"EHPcBnMOPhSjJDJMUqKQ","content":"THBT the governments of Brazil and Peru should contact uncontacted Amazonian tribes.","round":"5","id":"sXFtBJbpl14i1qGNsAOm"},{"content":"THBT governments of developing countries should actively discourage students from pursuing post-secondary education abroad.","infoSlide":"Post-secondary education is any level of education after high school, including education obtained from colleges, universities, trade schools, seminaries, institutes of technology and any other facility that offers an academic degree or certificate.","link":"","tournamentID":"FZTHJ19pUWQG2SZNeOvr","topic":{"education":{"title":"Education","check":true}},"division":"","round":"","language":"English","id":"sXd6jHnotElVQ7fJAtrw"},{"link":"","round":"4","language":"Vietnamese","infoSlide":"","division":"","topic":{},"content":"Chúng tôi tin rằng trẻ em đến từ các nhóm thiểu số nên được dạy về bối cảnh bị áp bức và học cách để thích nghi với điều đó.","tournamentID":"uqR5rN63m5rX9CiOtJjb","id":"sXhuF7fxwHfncp1RGJsL"},{"language":"English","topic":{},"content":"THBT public education systems should raise the aspirations of children from disadvantaged backgrounds beyond that which is realistic to expect them to achieve.","round":"EFL_Final","infoSlide":"","link":"","division":"","tournamentID":"zngB1WF8viOW2uGu6swZ","id":"sYAkHvfOkm59Abf83anS"},{"language":"English","tournamentID":"Q8FD3CioEeXKgMlwBG6R","link":"","content":"THBT Batman should abolish his no kill rule.","topic":{},"division":"","round":"3","infoSlide":"","id":"sYKZVIjSzVsYCQOsiQZu"},{"tournamentID":"wL3wAKRctC8syY2eg8t3","infoSlide":"","division":"","round":"4","content":"Assuming it could be done without placing the burden of secrecy on adults, THP a world in which individuals are unaware of the existence of organized religions for the duration of their childhood.","language":"English","link":"","topic":{},"id":"sYUcTogqK9UrCIpCD5jZ"},{"content":"THBT the South African government should incentivize the movement of people out of townships, rather than focus on policies that try to economically develop townships.","tournamentID":"68SrKFb9XtsQrLtqLtjO","division":"","topic":{},"infoSlide":"","link":"","language":"English","round":"5","id":"sZ70ngLmDsfNFC2Z8BFA"},{"round":"Open_Semis","link":"","division":"","content":"THW not teach vocational subjects at universities.","tournamentID":"1iGKg5a8rDH4ci9OIYEG","language":"English","infoSlide":"","topic":{},"id":"sZJ5ullSaWjEfRPCy0QG"},{"tournamentID":"VAfi19aZTAIKaUuELBL1","topic":{},"language":"English","link":"","round":"2","infoSlide":"","content":"THW give citizens the right to change their identities without giving justification.","division":"","id":"sZt7a2K1RAR5Zftd3eYA"},{"division":"","content":"THBT it is always immoral to fight for one's country.","round":"Open_Final","language":"English","link":"","topic":{},"infoSlide":"","tournamentID":"MIrEXPHnAIOpqQw6kxky","id":"sbYKy06jCNaED8zoBTFn"},{"language":"English","infoSlide":"","content":"This House prefers the antihero as the dominant female archetype in literature and movies.","topic":{},"division":"","tournamentID":"qDZwjZ3HER1wsZxsFjBb","link":"","round":"2","id":"scdbtWn1WS1SEC06tonj"},{"round":"1","language":"English","infoSlide":"","topic":{},"link":"","division":"","content":"THBT the media should not report on a terrorist attack immediately after the event.","tournamentID":"pF81od0IQBmQsiQKDxoc","id":"sd0oNTumMKVZucGl83uk"},{"infoSlide":"","tournamentID":"2D1SBKQDFgG0zGjX4oHP","round":"3","topic":{},"language":"English","division":"","content":"This house believes that governments should prioritize the economic improvement of minority communities over the preservation of their culture.","link":"","id":"sdPlmTQAsSzlxhsfD7hp"},{"round":"1","language":"English","content":"THW implement a full ban on burqas.","tournamentID":"CIIwPxm7lqd3hGr5g8JP","infoSlide":"","link":"","topic":{},"division":"","id":"sdeLwpCmbLVLTiwyyBFU"},{"topic":{},"content":"TH supports the formation of vigilante groups in high crime areas of Mexico.","link":"","round":"4","tournamentID":"E5iEI92yocDkjANxDoF9","division":"","infoSlide":"","language":"English","id":"setP376c16BmJVjnDZmJ"},{"infoSlide":"","content":"The GOP should seek to run an alternate candidate to compete with Trump during the presidential primaries.","round":"1","tournamentID":"pgslzxqwnT5Ei6UMGh69","topic":{},"language":"English","link":"","division":"","id":"sg1GbVoexKEFKlJqvJc3"},{"infoSlide":"","content":"THBT men build too many walls and not enough bridges.","tournamentID":"DSFg77BvC9y4FK5pBVIv","round":"12","link":"","language":"English","topic":{},"division":"","id":"sg93kGY54D5a7W6EdVdm"},{"division":"","infoSlide":"","tournamentID":"BXqPhfwak2R1kYHV48bp","topic":{},"content":"THW nationalise porn.","language":"English","link":"","round":"1.3","id":"sgOVEKKGvtXRLj1hZQFC"},{"round":"2","division":"","link":"","infoSlide":"","topic":{},"language":"English","content":"THBT stock markets should freeze the sale of publicly-exchanged stocks on the secondary market during pandemics.","tournamentID":"xoiSW3hTToX15wvrD6gA","id":"sgXnpWF5np4plhVu6r9S"},{"topic":{},"link":"","tournamentID":"QDGMrdrzlFCxVT5WcqNn","round":"5","infoSlide":"","content":"This house believes that Cabinet appointees should be protected from firing once they are approved by Congress.","division":"","language":"English","id":"sh8JlH1iUGdD9dTOaz3B"},{"content":"THBT the concept of \"safe spaces\" has no place in any academic activity or environment.","language":"English","tournamentID":"jQjuYOl7gbKBTiUrvWM2","round":"Open_Final","infoSlide":"","topic":{},"link":"","division":"","id":"shXcRbQURLAOmDTL1ffo"},{"topic":{},"division":"","language":"English","tournamentID":"dL45ZXh9u0IhHmAuaa0r","content":"THW ban commercial surrogacy.","round":"1","link":"","infoSlide":"","id":"sieWGYLLCwUwKVflGYCY"},{"language":"English","topic":{},"round":"2","division":"","link":"","tournamentID":"FvCiiwW1VYBNdYW8QTUA","infoSlide":"","content":"This house would expropriate foreign and white-owned businesses in Southern Africa (i.e., South Africa, Namibia, Botswana, Zimbabwe).","id":"sj9Dn6b7Q2nuYcnz2lYs"},{"topic":{},"round":"3","link":"","division":"","content":"TH supports citizen-initiated referendums*.","language":"English","infoSlide":"","tournamentID":"9l3qvCwMUUUzEdTVXCoM","id":"sk8rTZ7ESGOrzD4Z0Juf"},{"tournamentID":"TtPU6Lwr9qKhUvLMeyVD","topic":{},"content":"You are a western reporter covering the Middle East. You received indisputable and exclusive evidence that Israel is about to launch an attack on Iranian nuclear facilities in the next 24 hours. THW not publish the story.","division":"","language":"English","round":"4","link":"","infoSlide":"","id":"sl6yeWsm4oVdxQb5jhVA"},{"content":"Cecil Rhodes was the creator of the Rhodes scholarship for Oxford. He was also a British imperialist known for beginning enforced racial segregation in South Africa and for his belief in the superiority of the Anglo-Saxon race. He is commemorated in a number of ways at Oxford University, including through a prominent statute. A student movement called “Rhodes must fall” is campaigning for the university to remove all references to him from the campus. THBT Rhodes must fall - Grand Final.","link":"","topic":{},"division":"","round":"Open_Final","language":"English","infoSlide":"","tournamentID":"nXN2yUG7soxwCp4xidzj","id":"slwnitvj2yEVJ1dkS6t0"},{"round":"3","division":"","language":"English","infoSlide":"","topic":{},"content":"THBT all schools in Wales should teach subjects through the medium of\r\nWelsh.","link":"","tournamentID":"RLX3o4g1PsjOGvcOJBWD","id":"smfibdys12oGNnMNwO12"},{"tournamentID":"Y81hIZM2YzXWwwRuxR0R","topic":{},"division":"","infoSlide":"","language":"English","link":"","round":"3","content":"In places with strong Islamophobia, THBT Muslim parents should homeschool their children.","id":"smgBJ3DdzgVOqBjFhqCS"},{"link":"","infoSlide":"","division":"","language":"English","topic":{},"content":"THW criminalise the public denial of evolution.","round":"4","tournamentID":"gQ88d3loB2qwgD7ofmmr","id":"snCwV8muGHW2WVSwXU6g"},{"content":"THW recognise the independence of Catalunia.","link":"","tournamentID":"0WQ7djfo2FawxEAC95E0","infoSlide":"","topic":{},"language":"English","round":"Open_Semis","division":"","id":"snfI3NTDt5up0fjA7bz3"},{"round":"1","topic":{},"division":"","tournamentID":"GFxILtaCaIOzQVLckGus","language":"English","content":"\"In the context of the Brazilian civil-military dictatorship begun in 1964, This House would directly engage in armed struggle.\".","infoSlide":"","link":"","id":"so7OTDxzUuzJrdJByzG8"},{"content":"In conservative countries, THBT the LGBT movement should actively court religious institutions.","infoSlide":"","topic":{},"link":"","tournamentID":"ukcS5bJ2TUuNfMuzta0w","language":"English","round":"Open_Final","division":"","id":"soBBMYLUAOtlD0txibe1"},{"infoSlide":"","division":"","topic":{},"link":"","content":"As an emerging nation, THW allow the manufacture and sale of generic drugs even in cases where patents or international treaties are infringed.","round":"3","tournamentID":"18IIGMrqE33YyULmp5EY","language":"English","id":"splmTAVOGPB9zsNPGVWP"},{"topic":{},"infoSlide":"","content":"Following the total defeat of the French army in 1940, the British Government received an offer of peace from Nazi Germany. Any terms would have left Hitler in control of continental Europe, but would have prevented (at least in the short-term) an attack on Britain. The Cabinet of new Prime Minister Winston Churchill was divided over whether to enter into negotiations. TH, as Winston Churchill, would argue against peace - Round 5.","language":"English","division":"","link":"","round":"5","tournamentID":"nXN2yUG7soxwCp4xidzj","id":"sqPRVNfaMaT1dK0Zc7vb"},{"round":"4","tournamentID":"R2D7uxDuM6stYlRyK9ev","link":"","topic":{},"infoSlide":"In recent decades, many educational institutions have instructed their teachers that bullying is a result of low self-esteem and other personal problems.","language":"English","division":"","content":"THBT educators should abandon the \"pitiful bully\" approach.","id":"sqXHPbAQiWaU4MA58SCs"},{"link":"","language":"English","division":"","content":"This House would disband the Vatican as a state.","round":"Open_Final","infoSlide":"","topic":{},"tournamentID":"4WWD63gqcbSKMNoFf5ly","id":"sqXoB7gK64UQCOsIbOPx"},{"round":"","division":"","content":"Chúng tôi sẽ cho phép toà án chấp nhận các chứng cứ được thu thập trái pháp luật trong các vụ án tham nhũng cấp độ cao.","link":"","language":"Vietnamese","infoSlide":"","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"tournamentID":"CJKUeBIUibEtZYahoUQV","id":"sqeNvBAD7GfYO7QzMqF4"},{"link":"","topic":{},"language":"English","content":"THW legalise euthanasia.","infoSlide":"","round":"1","tournamentID":"DTutOgCItM4x30SyVavv","division":"","id":"sqkdB9ax8q6v1AHBj5Q2"},{"tournamentID":"XryJ0KVA6GiVngJthv3K","link":"","division":"","infoSlide":"","content":"This house would ban all space exploration for the foreseeable future.","topic":{},"round":"2","language":"English","id":"sr3Xw7gXXr2ZsA2Kr8xe"},{"content":"THBT strong dictatorships in the Middle East are better than weak democracies.","language":"English","division":"","topic":{},"link":"","infoSlide":"","tournamentID":"nDjxmwMznw4ZJasK7Taj","round":"3","id":"srBKx9k0FS5itUup7toS"},{"tournamentID":"kReIJGsf14VAB0aHbDhJ","link":"","language":"English","infoSlide":"","content":"THW require all professional football teams to be majority-owned by their fans.","round":"3","division":"","topic":{},"id":"srHJurNV0UC3H5XMfxQi"},{"round":"3","link":"","content":"This House Believes That China should seek to curb debt at the expense of economic growth.","infoSlide":"","topic":{},"language":"English","tournamentID":"9akG27VqSvbqsF3kGa1l","division":"","id":"srYEiqBzWlKvuA9PJ0bY"},{"topic":{},"infoSlide":"","division":"","round":"3","content":"TH, as a woman, would make targeted use of her feminine charms.","language":"English","tournamentID":"IKVZuvI9noj2HK4GNxgS","link":"","id":"stMatGYjzjK1CHwrHVEg"},{"infoSlide":"","tournamentID":"v33DcPMMQZsLJormVjyz","topic":{},"division":"","content":"THW give highly advanced artificial intelligence the same rights as humans.","round":"Open_Final","language":"English","link":"","id":"suKd26znK23G8PLywsuM"},{"topic":{},"content":"This House would impose restrictions on the opening of stores operated by large multinational retail chains (e.g. Tesco, Walmart) in order to protect local businesses.","language":"English","round":"2","infoSlide":"","link":"","tournamentID":"0mv3ToZPy0AwAsRnpZBN","division":"","id":"suol2UKIQGjeDtsCb5DJ"},{"division":"","infoSlide":"","round":"Open_Semis","content":"TH, as the UN, would facilitate independence referendums when requested by semi-autonomous regions.","link":"","language":"English","topic":{},"tournamentID":"PGbz2bx1wifAEJU64jdo","id":"sxnglpevnlq2Ja0qnEp8"},{"round":"Open_Final","topic":{},"tournamentID":"KEJHhRHDE4CXyVyy0Jy8","link":"","division":"","language":"English","content":"This House, given the technology, would allow medical procedures which endow human beings with superpowers.","infoSlide":"","id":"sycpKqKstqc0FiYSf1Oq"},{"link":"","topic":{},"language":"English","infoSlide":"","round":"Open_Final","content":"THBT liberal parties in Europe should abandon their focus on being pro-immigration.","division":"","tournamentID":"sFRIEYyxie6GRmJwElmF","id":"sygomUjVd4akJYQC8AIc"},{"infoSlide":"","round":"4","language":"English","link":"","division":"","tournamentID":"54Voc2YjynWxScz0a04o","content":"TH supports the use of violent protest to topple oppressive regimes.","topic":{},"id":"sz2nKuK5wwnmCToPcSJy"},{"round":"1","division":"","tournamentID":"EpANk5V3VQNFWagnktFN","link":"","infoSlide":"","topic":{},"language":"English","content":"THW ban all essential service workers from striking (e.g. firemen, policemen, doctors).","id":"szIQyD7EjXZUNEyhk2a9"},{"topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"}},"content":"Chúng tôi sẽ yêu cầu các lãnh đạo tôn giáo phải thay đổi những giáo lý hạ thấp sự quan trọng của bình đẳng giới.","link":"","tournamentID":"3B01KdqnCVzQEVjKcHiT","division":"","language":"Vietnamese","round":"","infoSlide":"","id":"szdBDtXZDPDaLFG7lQgB"},{"tournamentID":"zm3L9uKWbGV2QY1WRlcJ","division":"","content":"THW ban all religions from actively seeking conversions.","infoSlide":"","round":"4","language":"English","topic":{},"link":"","id":"t0HElOsvlj601IB4jI7Y"},{"topic":{},"content":"THR Lara Croft.","language":"English","link":"","division":"","round":"Open_Semis","tournamentID":"JJmcUH5Gil0nuJObmDP8","infoSlide":"","id":"t0tto6EuHDV2F2e9HCsC"},{"round":"8","division":"","language":"English","infoSlide":"","tournamentID":"nXN2yUG7soxwCp4xidzj","link":"","content":"This house, as the GOP senate leadership, would support Merrick Garland’s nomination for the Supreme Court - Round 8.","topic":{},"id":"t1C2RdiNsCLRmgcbpKCG"},{"topic":{},"infoSlide":"","content":"THBT Israel should give East Jerusalem to the Palestinians.","division":"","round":"Open_Final","link":"","tournamentID":"81ULNwgwoeeJz6JyR6aq","language":"English","id":"t27XRCNoguxYLAZNXAIF"},{"infoSlide":"","topic":{},"content":"THW grant an amnesty to illegal immigrants.","round":"Open_Final","language":"English","link":"","division":"","tournamentID":"vBIhHuSgrqmR27ZqUcfZ","id":"t2FVofTkioMf0xHT9G1a"},{"content":"This House supports the promotion of collective guilt after large scale crimes against humanity.","link":"","topic":{},"language":"English","round":"ESL_Final","infoSlide":"","division":"","tournamentID":"1dEXZTvvRtTWhdBLmzFt","id":"t2tpK3tXWwd9V61QINX4"},{"link":"","division":"","language":"English","round":"5","infoSlide":"","tournamentID":"vRdckCLdD0l2Rjc63y5T","topic":{},"content":"To hell with extortionate rent prices: do we need housing socialism?.","id":"t35lZPQkx3C5W1pfTr1E"},{"division":"","infoSlide":"","link":"","tournamentID":"YaTXOaEvPKh8XHB3VTBK","topic":{},"language":"English","round":"7","content":"THW allow only women to be the heads of political parties.","id":"t3hlvkCP6yqLEhKnBYmW"},{"topic":{},"language":"English","division":"","tournamentID":"DLFJWaIyHnSlvFofovjc","round":"2","link":"","content":"THW give North Korea unconditional food aid.","infoSlide":"","id":"t3w3nCOMeFA9eBwtycXD"},{"topic":{},"link":"","language":"English","tournamentID":"wE88mu5ettNTfJEaJQY1","division":"","infoSlide":"","round":"1","content":"THW privatise the water supply.","id":"t4fZd8XTVSplMLezeKv8"},{"content":"THR the idea that life must have meaning.","language":"English","link":"","tournamentID":"m2l0j7TwryKeK2YnXK9e","infoSlide":"","topic":{},"division":"","round":"Open_Final","id":"t4xDkPwlb7aUdLBskkxa"},{"infoSlide":"","link":"","tournamentID":"U5BIn9cy3EEIjFx2mHye","content":"THBT governments should not fund reconstruction in areas prone to natural disasters.","topic":{},"round":"1","division":"","language":"English","id":"t5EnB6tX287xRjDawsQr"},{"division":"","topic":{},"content":"THBT environmental movements should be pro-capitalism in their policies and advocacy (e.g., appealing to corporations for green policies, advocating for individual responsibility and sustainable consumption; rather than lobbying governments for extreme regulation, protesting for divestment).","infoSlide":"","link":"","round":"2","tournamentID":"nKWTDNECNNvbMxNcdVJM","language":"English","id":"t5MYePnegvONcGhZHngp"},{"division":"","round":"Open_Semi","language":"English","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","content":"THR the US pursuit of global energy dominance.","topic":{},"infoSlide":"","link":"","id":"t5twoeMYJhXKBScdAOME"},{"language":"Vietnamese","division":"","infoSlide":"\"Candle Light Will\" là một thuật ngữ chỉ cuộc biểu tình có ánh nến biểu tượng cho cuộc luận tội của cựu tổng thống Park Geun Hye, thường dùng để nói về ý chí chống lại những chính quyền tham nhung. Chính quyền của Moon thường xuyên đề cập tới Candle Light Will như là động lực đằng sau cuộc bầu cử đã hợp pháp hóa chính sách này.","link":"","content":"Chúng tôi hối tiếc việc sử dụng thuật ngữ \"Candle Light Will\" trong các cuộc tranh luận chính trị ở Hàn Quốc.","tournamentID":"nALUKfkpmOnWnQCzecru","round":"","topic":{"politics":{"check":true,"title":"Politics"}},"id":"t5u8fOuJIKRBRePO0Nfq"},{"content":"Health insurances should be allowed to refuse medicines on the basis of their costs.","tournamentID":"y6twZcPBW4VtQsAZQ3Mw","infoSlide":"","division":"","topic":{},"round":"3","language":"English","link":"","id":"t6nQUIN7Xdmf4T8LfLOR"},{"topic":{},"language":"English","link":"","tournamentID":"puG4GbGRMRGTQ4eS4GHp","division":"","content":"THW not allow skilled workers to migrate to the EU from the developing world.","round":"1","infoSlide":"","id":"t8sUDukynBhTCZFZ87G0"},{"division":"","content":"THW heavily subsidize art that glorifies the working class.","tournamentID":"BhBkit7bGTegIhEEknJU","topic":{},"infoSlide":"","round":"1","link":"","language":"English","id":"t9BpOvBENrPlNvE4xaiT"},{"round":"2","infoSlide":"","topic":{},"link":"","language":"English","division":"","tournamentID":"5YRD8EoL8wrQu3pTfkUI","content":"THW require companies valued at $1B or above to trade publicly*.","id":"t9t3YoWalBVEWdgqbqQi"},{"language":"English","topic":{},"infoSlide":"","division":"","round":"Open_Semis","content":"THBT Pakistan should cease all assistance to the United States in the fight against the Taliban.","tournamentID":"kFgdnpZDLOmYAkEJ1Zu6","link":"","id":"tA2WhbMpcYfWw4qJiWvr"},{"topic":{},"tournamentID":"Ben6dcgLsdnzfbpJrHhp","round":"3","division":"","infoSlide":"","language":"English","link":"","content":"in these cases MPs might be expelled from their party or denied promotion if they vote against the party. Occasionally a party will have a 'free vote' and MPs can vote as they like. Examples in the UK include the ban on fox hunting with dogs, votes on abortion, and the legalisation of same-sex marriage. Labour had a whipped vote in favour of same-sex marriage, whereas the Conservatives had a free vote. Motion: TH regrets free votes.","id":"tA3SIsyM2yc0EmjAiff8"},{"topic":{},"link":"","round":"Open_Semis","tournamentID":"x0mst3SfcsgMKKZ3eg7G","infoSlide":"","division":"","content":"TH believes that Putin has been good for Russia.","language":"English","id":"tANTq9NSjcgkLRZXWEl2"},{"division":"","language":"English","round":"4","infoSlide":"","link":"","content":"THW make companies pay taxes equal to their influence on the environment.","topic":{},"tournamentID":"fHaBEm9PW7QYO4ZKFbwi","id":"tAQAjhk7LKrpsfnPvNl4"},{"language":"English","content":"THW punch a Nazi.","tournamentID":"pMiBCGHX80oXMgUJCqkc","round":"Open_Final","topic":{},"link":"","infoSlide":"","division":"","id":"tAnTQaFPHlyYQi1Srx0u"},{"infoSlide":"","link":"","content":"THW legalise all drugs.","round":"1","tournamentID":"yplVU35a69J2hHBBmAJC","topic":{},"language":"English","division":"","id":"tAqIUILXFEnMSci1CsqR"},{"content":"THW prohibit religious institutions from considering applicants’ religious affiliation for any position whose primary function is not the performance of religious rites (e.g., administrators, teachers, fundraisers, etc.).","tournamentID":"HlR3H86XBK4mqvL9v5HT","topic":{},"infoSlide":"","round":"5","division":"","link":"","language":"English","id":"tBV8IMu1JT3KcafB2gAm"},{"round":"1","division":"","link":"","infoSlide":"","language":"English","content":"That we should make search engines liable for defamation when their algorithms promote defamatory content.","tournamentID":"XL594Q2oZbvHmfmYKFvT","topic":{},"id":"tC6gqyF3QZ9TxHn0QGtV"},{"round":"4","link":"","division":"","infoSlide":"","language":"English","content":"THBT parents have a duty to push their children to succeed even if it comes at the expense of their happiness.","tournamentID":"m6JzV67uYJSVBRpAbgL7","topic":{},"id":"tCB5kKnWFxUwXkJCQJHY"},{"division":"","infoSlide":"","content":"As an author of a non-colonial language (Inuktitut, isiXhosa, Gikuyu, etc) THW only write in one's native language.","round":"2","language":"English","link":"","topic":{},"tournamentID":"vURFmLn4wdqX6ZbK0ini","id":"tCLKg4gG6UWKjwxFCrR6"},{"round":"Open_Semis","division":"","language":"English","tournamentID":"1aLx5bJZiwmW3mkmtmNO","content":"TH would not allow tech companies/social media to target advertising in order to change people's political ideology.","topic":{},"infoSlide":"","link":"","id":"tCQAJnwii1QwOIZK6eNn"},{"infoSlide":"","link":"","tournamentID":"2YfQ1XbNnQfXwnjeGyDd","round":"1","content":"THBT Indigenous Communities should form their own professional sports teams.","division":"","topic":{},"language":"English","id":"tCfRkt8ZOKtTcu6a8VGp"},{"link":"","tournamentID":"8umdzosR2LakbIpLGOan","topic":{},"infoSlide":"","round":"Open_Semis","division":"","language":"English","content":"THB abortions that are based on the fetus showing signs of non-fatal physical and developmental disabilities.","id":"tCm1o53bD8kRn7cLwe4S"},{"content":"TH supports giving legal personhood to internationally recognized important environmental spaces (e.g., Mount Everest, the Amazon) as a form of conservation.","link":"","topic":{},"round":"1","tournamentID":"V7FJhUQXRQ0Z4dnL94bu","division":"","infoSlide":"","language":"English","id":"tCqy3KburTvtLPuRjvt8"},{"division":"","topic":{},"link":"","infoSlide":"Kanye West recently released a clothing line which featured the Confederate flag. The Confederate flag was the flag used by the pro-slavery southern US states in the American Civil War. The American Civil War was a conflict over the use of black slaves. The flag is still used by various groups, including white supremacists in the US.","round":"4","language":"English","content":"THBT the Black Rights Movement should oppose the appropriation of the Confederate flag by black public figures.","tournamentID":"QVeTcZONRdDbH5LSNeSf","id":"tCyOa1zqgS0o1Zu1ZNkY"},{"link":"","infoSlide":"","round":"Spanish_Semi","tournamentID":"QePDCf8cQ2AX4XfcvR3T","topic":{},"division":"","language":"English","content":"En casos en que un funcionario público sea acusado de corrupción, EC reduciría el estándar probatorio al del “balance de probabilidades”* en vez del de la “duda razonable”.","id":"tD1v2SrOgd9t0phb8fDa"},{"tournamentID":"fYRQ3gsDALGgMYQf58zt","topic":{},"language":"English","infoSlide":"","round":"5","link":"","division":"","content":"TH CELEBRATES NO NUT NOVEMBER (NNN).","id":"tDRfdmhl7xdc1ewNPTnV"},{"content":"TH supports the reclamation of the word “slut”.","division":"","language":"English","topic":{},"link":"","tournamentID":"xewLQXUxvfe0Xal1qtHM","round":"Open_Semis","infoSlide":"","id":"tDpP8u6ob2JrImg3wqO4"},{"link":"","content":"THW give a higher child subsidies to couples composed by persons from different Member States of the EU.","tournamentID":"EpjauMajAi9smGSUAKpC","division":"","language":"English","round":"1","topic":{},"infoSlide":"","id":"tDzMAOWkrMj3sYGqBjlM"},{"tournamentID":"b1sXr4qyDgdbj0UNSjmS","topic":{},"division":"","language":"English","link":"","round":"1","content":"THBT social media companies (like Google, Facebook or Twitter) should self-censor their content in order to be permitted by authoritarian countries.","infoSlide":"","id":"tElKVR9YoEEK3J8Q8Rsx"},{"language":"English","tournamentID":"MNBafFvHXt5WwIet1zGa","infoSlide":"","link":"","content":"THW significantly tax vacant homes.","round":"2","division":"","topic":{},"id":"tF3wshjRrTS4GC52FSb4"},{"infoSlide":"","tournamentID":"qotkEeWGxvmIXOZx52qZ","link":"","round":"1","content":"THBT countries with booming populations should allocate every adult a single, tradable permit to have a child.","topic":{},"language":"English","division":"","id":"tFaJV9ctMRoCgoFh4Ank"},{"infoSlide":"","topic":{"hr":{"check":true,"title":"Human Relationships"}},"round":"","language":"Vietnamese","link":"","division":"","tournamentID":"37eWQ7OoHqsPgaN53lHV","content":"Chúng tôi phản đối xu hường vinh danh người giàu.","id":"tGPaQCsI7FnHQpsQfdpm"},{"topic":{},"tournamentID":"HQ85pr5BC7hv3GPpOuzX","content":"THW aggressively stream children from an early age, according to academic ability.","division":"","round":"Open_Finals","language":"English","link":"","infoSlide":"","id":"tGqj0ezscF0S25webcSH"},{"content":"That the African Union should pivot toward the global East rather than the global West.","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","language":"English","round":"Novice_Final","division":"","infoSlide":"","topic":{},"link":"","id":"tHSgBc9BoB72Et51ebnR"},{"tournamentID":"OLVGf3rE3KKirerr2vyk","topic":{},"language":"Vietnamese","content":"Chúng tôi tin rằng các cá nhân đã thỏa mãn những điều kiện sống cơ bản sẽ là vô đạo đức nếu họ không cống hiến của cái dư thừa để tối đa hóa lợi ích cho xã hội.","infoSlide":"","division":"","round":"Grand Final","link":"","id":"tHhCpZWijSaV0zZIeNVJ"},{"round":"2","tournamentID":"UnPx20cVpfgfJ0GCpiYw","topic":{},"content":"THW compel large companies with paid internship programs (Such as McKinsey and Google) to accept a quota of אוכלוסיות מוחלשות as interns.","language":"English","division":"","link":"","infoSlide":"","id":"tHn8zwV7Rp88ss4xkcRk"},{"topic":{},"link":"","tournamentID":"jVtcrR58DYEPrz6PXM17","round":"3","infoSlide":"","division":"","content":"This House would grant one seat in the Parliament to all more significant religions.","language":"English","id":"tIIIr24vwTRxR6KR9qKt"},{"language":"English","topic":{},"tournamentID":"h5ajoFHOT7mXoe90wbQ3","round":"Open_Semis","link":"","content":"Colonial powers should pay reparations for the Atlantic slave trade.","division":"","infoSlide":"","id":"tJZrAMk7NyQXelfvhZSB"},{"language":"English","topic":{},"link":"","content":"TH believes that animal rights activists should launch a campaign of sabotage and property destruction to further the cause of animal rights.","division":"","tournamentID":"iARNjQG0MiYXxp1Qk22E","round":"2","infoSlide":"","id":"tJrPN1tR3CMiaHAYqq1p"},{"division":"","topic":{},"infoSlide":"","tournamentID":"5YRD8EoL8wrQu3pTfkUI","language":"English","content":"THW NOT publish this information.","link":"","round":"3","id":"tKb4cVKM6TtwUAy2VrKf"},{"content":"THR the rise of \"global\" languages like English.","infoSlide":"","tournamentID":"P4io30tN10TYMqGkj2sX","division":"","topic":{},"round":"5","language":"English","link":"","id":"tKwkUYSVsYpsD4ZSnWws"},{"infoSlide":"","language":"English","content":"THBT both elected and unelected party leaders should not play a role in the nomination process (through super delegates or brokered conventions).","round":"4","link":"","topic":{},"division":"","tournamentID":"U5BIn9cy3EEIjFx2mHye","id":"tLAP4u2gEAbIb9Zpe7GA"},{"language":"English","division":"","tournamentID":"Pt1Z2dTdUinRviVucbZA","link":"","topic":{},"infoSlide":"","round":"1a","content":"That we would abolish Slytherin house.","id":"tLh3jx6kN4Z6P8SY1gua"},{"division":"","round":"4","content":"When a ship threatens to breach a UN weapons embargo, THW allow all states to stop the ship with the use of force.","link":"","tournamentID":"LnHXZbgsbq5JIVU7k21X","language":"English","topic":{},"infoSlide":"","id":"tM0DwPpN6nLiIpuzFTbr"},{"language":"English","link":"","division":"","content":"TH, as the Pope and the Vatican council, would liquidate all the Vatican's assets and distribute them to charity.","infoSlide":"","tournamentID":"dxiwBIWlq2trjdp62R0U","topic":{},"round":"2","id":"tMOKl0i807deAV5FknfR"},{"division":"","link":"","tournamentID":"HlR3H86XBK4mqvL9v5HT","content":"THS establishing an independent state of Kurdistan.","topic":{},"language":"English","round":"1","infoSlide":"","id":"tMYDRAlsdyNdvHgW5cVe"},{"topic":{},"infoSlide":"Tại Việt Nam, các bộ phim thị trường thường được đánh giá là phim đem lại lợi nhuận cao, dễ xem, dễ hiểu,... trong khi các bộ phim khai thác các đề tài văn hóa truyền thống được cho rằng là các bộ phim khó tiếp cận khán giả. Tuy nhiên, các bộ phim khai thác văn hóa truyền thống lại được nhà nước quan tâm và hỗ trợ.","language":"Vietnamese","link":"","content":"Chúng tôi, với tư cách các công ty sản xuất phim, sẽ ưu tiên nguồn vốn cho các bộ phim có khai thác chủ đề văn khóa truyền thống.","division":"","tournamentID":"FiF24Yc0spiBkvTxiYwD","round":"Semifinals","id":"tMZuSpe5GU070oPsnT4n"},{"tournamentID":"ovD89w3g4H3GjEFmXcRL","link":"","topic":{},"language":"English","infoSlide":"","content":"THW not assign a sex to babies born with ambiguous genitalia.","division":"","round":"4","id":"tNgv2psSm28liDxadS9d"},{"round":"","link":"","content":"THW use this technology.","division":"","infoSlide":"There is a technology that allows people to sell and buy individual attributes such as intelligence, physical appearance, stamina, and so on. Upon the agreement of sales between two individuals, the technology will transplant the attribute from the seller to the buyer. Once an attribute is sold, you can never get it back.","topic":{"technology":{"title":"Technology","check":true},"philosophy":{"check":true,"title":"Philosophy"}},"language":"English","tournamentID":"KE7jdAyW9az9nKVb9FMV","id":"tNra9MXpw1yBVfAfpjFO"},{"topic":{},"round":"Open_Final","infoSlide":"","division":"","tournamentID":"50nXPc798MPMXDyPN224","language":"English","link":"","content":"THW ban all media (such as music, films and videogames) which glorify misogyny.","id":"tNt9yH4rI2vhl13btiye"},{"content":"TH embraces the collection by governments and corporate entities of a significant amount of data about individuals.","language":"English","topic":{},"infoSlide":"","round":"4","tournamentID":"v3Bq7DLUeCcPyvQZjJbj","link":"","division":"","id":"tOKy7jLwMaqkdWPYj9bT"},{"topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"round":"PDOs - Motion 2","language":"English","infoSlide":"","content":"THBT large international institutions (e.g. UN & World Bank) should only accept female country delegates.","division":"","link":"","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","id":"tP4ocdPVEHtDsHfZgig0"},{"content":"THW, assuming it was technologically possible, replace all human soldiers on the battlefield with robots.","round":"1","tournamentID":"hF5AdOa0t9O6mkaChm75","link":"","topic":{},"division":"","language":"English","infoSlide":"","id":"tQ9Zst2UuC2mYEAYeKhX"},{"tournamentID":"S2mG18EWYdh2bPEadyd9","link":"","round":"2","content":"THBT micro-finance organizations should offer micro-finance loans in developing nations exclusively to women.","division":"","topic":{},"language":"English","infoSlide":"","id":"tQBZbZAvT8BTHifn22P3"},{"infoSlide":"","division":"","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","link":"","topic":{},"content":"TH, as the Ministry of Magic W expose itself to the Muggle World.","language":"English","round":"3","id":"tRDTaPhcVpvIUoqJ7z7b"},{"content":"THW ban all advertising.","link":"","round":"5","topic":{},"infoSlide":"","language":"English","division":"","tournamentID":"JtHb8gJ24LeJcHq82rm5","id":"tRXvlz0YrowuDynBE4Cu"},{"content":"THBT the state should reclaim a fixed proportion of all charitable giving and redistribute it to other charities on the basis of their effectiveness.","division":"","language":"English","infoSlide":"","round":"Open_Quarters","tournamentID":"m9Mkt1xdSA1jDsNN4zgu","link":"","topic":{},"id":"tRY8RXxv8eZ1jQx68dfk"},{"division":"","tournamentID":"pvKZkg6sqicG5nXA2mvY","language":"English","link":"","content":"THW allow countries to pay other countries to settle asylum-seekers who reach their borders.","infoSlide":"","round":"ESL_Final","topic":{},"id":"tRfExf47q8sBNx6ML1st"},{"round":"2","link":"","language":"English","topic":{},"division":"","tournamentID":"eSbb5Usou5B1Drm2Dmyl","content":"This house would allow plaintiffs to sell their right to sue to third parties.","infoSlide":"","id":"tRta2CCMg7gu81valvE2"},{"infoSlide":"","division":"","round":"Open_Semis","language":"English","content":"THBT the Northern Irish government should aggressively promote a distinct 'Northern Irish' Identity.","tournamentID":"a7Zdmoc5GpY9KlKkDEVg","topic":{},"link":"","id":"tSQMWmYaZNlC15DQjs6X"},{"division":"","infoSlide":"","round":"7","tournamentID":"Ryhdb4JOJYP96e5oa49b","content":"TH regrets the commercialisation of social justice - Round 7.","topic":{},"link":"","language":"English","id":"tSwuiToiEzraz1YrobCM"},{"language":"English","infoSlide":"","round":"3","link":"","content":"Assuming that a minimum standard of welfare has been achieved, THBT states should make no further attempt to reduce inequality.","division":"","topic":{},"tournamentID":"FfDrngjMOaUCYfZgnHPC","id":"tT9ZgIfLFttrfSaccdfD"},{"topic":{},"link":"","division":"","tournamentID":"XnmecTVfWWNVfWZaANER","infoSlide":"","content":"THP a world with no belief in the afterlife.","language":"English","round":"Octofinals","id":"tTZpYLQRHMnky5a1JILT"},{"infoSlide":"","link":"","content":"THW ban all forms of self-incrimination.","division":"","round":"4","topic":{},"language":"English","tournamentID":"Gx29hnXeBrSjBZrrDKx8","id":"tTsW4P4AD8bugGZdAzFi"},{"topic":{},"round":"1","tournamentID":"FvCiiwW1VYBNdYW8QTUA","link":"","language":"English","infoSlide":"","division":"","content":"THP a world where children are raised communally.","id":"tU2cwFRw2g6sHyXqV9Af"},{"content":"Assuming feasibility, THW have all states temporarily cede their sovereignty to international organizations in times of protracted global crisis (e.g. global recessions, pandemics).","topic":{},"tournamentID":"9MaCpfb2p23wkk8OOSBf","language":"English","infoSlide":"","link":"","round":"Open_Quarters","division":"","id":"tUF1jhjrkksSf9ots2EI"},{"link":"","topic":{},"infoSlide":"By definition, virtual influencers are fictional computer-generated ‘people’ who have the realistic characteristics, features and personalities of humans. Behind each of them are creators and coders from robotics and AI companies who mostly remain faceless and are responsible for growing their Instagram platforms and generating new content such as posts, vlogs and even music for their social media. A popular example would be Lil Miquela, a \"forever 19-year old\" Brazilian-American model and music artist, who has amassed over 2.8 million followers on Instagram. Her list of countless brand collaborations include being the face of Samsung's #teamgalaxy campaign in 2019 and teaming up with supermodel Bella Hadid for a Calvin Klein advertisement. She has also been listed within The Times’ ‘Most Influential People on the Internet.'","division":"","round":"1","language":"English","content":"This House Supports the rise of virtual influencers.","tournamentID":"ruG3JCf2Mh62VDkchi11","id":"tUUBXn77ZxcBXV2YkzBP"},{"link":"","language":"English","content":"The sharing economy does more harm than good.","tournamentID":"h5ajoFHOT7mXoe90wbQ3","round":"4","topic":{},"infoSlide":"","division":"","id":"tUYLW1OG9drCCFRHtQRo"},{"tournamentID":"kDr04nbGJ33SICZ9XUHJ","topic":{},"link":"","division":"","content":"THBT in emerging democracies with a history of female oppression, women should be granted two votes.","language":"English","round":"4","infoSlide":"","id":"tUnMFpNX1hkISoMtn4Qt"},{"infoSlide":"","division":"","topic":{},"language":"English","round":"3","content":"THW make Georgia a NATO member.","tournamentID":"tPdF4vGV6F0ucJaSF5md","link":"","id":"tUnMas5gAMltKIDdaePA"},{"content":"This House prefers a world where, starting today, all humans have identical intellectual abilities (equivalent to the current global average).","topic":{},"round":"EFL_Semis","infoSlide":"","language":"English","link":"","division":"","tournamentID":"wA1XDLHJESmSgLsfZ9Qe","id":"tVCaUOQxOw61j5SjyU1q"},{"round":"Open_Quarters","link":"","content":"That, as the minority resistance group, we would submit to the state.","topic":{},"infoSlide":"","language":"English","tournamentID":"XL594Q2oZbvHmfmYKFvT","division":"","id":"tW6GNiYCKP6h7NBsHfZ1"},{"content":"THR \"True Crime\" entertainment. (e.g. Making a Murderer, American Crime Story: The People vs. OJ Simpson, Serial, etc.).","infoSlide":"","division":"","round":"Open_Finals","language":"English","topic":{},"tournamentID":"yxjvIJregbdMEVkOnzCg","link":"","id":"tXSGQ0agZ058sTuadyHa"},{"infoSlide":"","link":"","language":"English","tournamentID":"0bpNzjTgN71TZQEkHTak","round":"ESL_Semis","topic":{},"division":"","content":"THBT the feminist movement should actively promote norms of stable monogamous relationships.","id":"tYuGkxTUtQb17DHaOjOY"},{"link":"","infoSlide":"","division":"","language":"English","content":"THBT international development institutions should not finance natural resource extraction projects in corrupt states.","round":"3","topic":{},"tournamentID":"xv0FPHxLsij7LUJlUmBy","id":"tZClAitIWDNMCwrbOK1M"},{"link":"","topic":{},"language":"English","division":"","round":"4","content":"THR the depiction of the everyday life of people with disabilities as inspirational.","infoSlide":"","tournamentID":"68SrKFb9XtsQrLtqLtjO","id":"tZJNALAciX3d27BgIN73"},{"language":"English","round":"1","infoSlide":"","content":"THW put an absolute cap on non-essential expenditure by parents on each of their children.","link":"","tournamentID":"HtADLvDpWQsx5qtLh5A9","division":"","topic":{},"id":"tZh87nyBYWJxZpvbDOTN"},{"language":"English","topic":{},"infoSlide":"","round":"6","link":"","division":"","tournamentID":"4NEhQx2m4XcXy6SxnoqS","content":"THW not perform any plays of Thomas Bernhard in Austria.","id":"tZvLMXQwfQhQWGNAotl3"},{"division":"","tournamentID":"hY7icY7k8fuatysSqMFr","round":"6","infoSlide":"","content":"TH believes that liberal states should provide legal and financial aid to citizens who wish to permanently emigrate from them.","language":"English","topic":{},"link":"","id":"tb5LclbHy1yOhyrwtRBK"},{"content":"Should religious education at school be abolished?.","language":"English","division":"","link":"","tournamentID":"rdyGzmsfHNjLJBTBIlbG","round":"1","infoSlide":"","topic":{},"id":"tbFvdVZCHpX1i7cfqYPe"},{"language":"English","infoSlide":"","division":"","tournamentID":"POdYlP5an146yzuVI1Xg","content":"This house would ban schools from catering to a specific religion (such as Catholic schools, Hebrew schools or Muslim schools).","topic":{},"link":"","round":"1","id":"tbZbqRI2wT4GOTrcp7j2"},{"language":"English","topic":{},"tournamentID":"DpY0fOiqQ2FcccIfvmaH","link":"","division":"","round":"5","infoSlide":"","content":"THW bring the Greek debt back to healthy European standards by a one-off wealth taxation of Greek’s rich.","id":"tcFBYZzkdCsPsZc5ZbPk"},{"round":"Open_Finals","link":"","infoSlide":"","division":"","language":"English","content":"Given the existence of a drug that eliminates fear with minimal to no side effects, THW let soldiers opt into using it.","topic":{},"tournamentID":"3Gl2F99bU3ZHa2ZjcrUR","id":"tdXvHsFEBxXyPmbn3qH1"},{"topic":{},"link":"","tournamentID":"7nPyt59LCWbXBYzvRfL4","infoSlide":"","round":"Open_Semis","language":"English","division":"","content":"This house would rather declaration of inconsistency than judicial supremacy.","id":"tdmGR8pOIYHoa0DYOhdI"},{"infoSlide":"","tournamentID":"zidC2m00xOQF4gT3tgiY","division":"","round":"3","content":"THBT gender and sexual minority groups (feminist and LGBTQIA+) should ensure that decision making and representation for their cause is done by members of the minority group and limit the advocacy of allies to support and mass action (such as protests and petitions).","link":"","language":"English","topic":{},"id":"tdofqODHgWSba454QJYb"},{"division":"","language":"English","infoSlide":"","content":"That we would have preferred the Game of Thrones prequel series to be Bloodmoon over House of the Dragon.","round":"1a","link":"","topic":{},"tournamentID":"Pt1Z2dTdUinRviVucbZA","id":"tf9rO6EDn2vybipTD7GD"},{"content":"This House believes that the state should promote the norm of the 'single life'.","division":"","round":"4","language":"English","topic":{},"link":"","tournamentID":"JLyF99Vg0hk3hhYCwEgp","infoSlide":"","id":"tfuUsnXqdr2gjubaqAKY"},{"infoSlide":"","content":"In areas with rapidly rising property prices, This House would suspend all restrictions on property development that are not health and safety requirements (for example, environmental zoning regulations, building height restrictions, and regulations on the appearance of buildings).","link":"","language":"English","tournamentID":"t1jiRXU99xeGdoIkTeyF","round":"4","division":"","topic":{},"id":"tfwA4B8a8z6Y8ejlfEgX"},{"division":"","content":"THW allocate scholarships and financial aid exclusively on the basis of financial need.","language":"English","tournamentID":"WfHILzlB4oGzI34Iwqaw","topic":{},"round":"1","link":"","infoSlide":"","id":"tg42Ng7Luebwrb7SYfQe"},{"language":"English","content":"THR the rise of dating apps (e.g. Tinder, Grindr, Hitch, Hinge,etc.).","link":"","tournamentID":"sA03ySqGdgfByNOTfDfC","round":"1","infoSlide":"","topic":{},"division":"","id":"tgbSsE4YUoY3J0GvxlbD"},{"infoSlide":"","content":"Assuming Democratic control of the House, THBT the Democrats should prioritize the impeachment of President Trump.","link":"","tournamentID":"Bx1uUqHBcAJ7qAZcUwyz","division":"","round":"5","topic":{},"language":"English","id":"thACHlTtpvJpBDZLEbN0"},{"round":"5","language":"Vietnamese","content":"Chúng tôi, với tư cách là phong trào nữ quyền, sẽ tích cực công khai chỉ trích X.","topic":{},"link":"","tournamentID":"OLVGf3rE3KKirerr2vyk","division":"","infoSlide":"X là nữ chính trị gia đầu tiên của đất nước bước vào hàng ngũ lãnh đạo quốc gia. Hiện tại, X được tôn vinh và được xem như một nhân vật truyền cảm hứng. Trong quá khứ, X từng có hoạt động gây phương hại cho phong trào nữ quyền (vd: giảm số năm tù cho tội phạm xâm hại tình dục có nạn nhân là nữ...); tuy nhiên, thông tin này ít được mọi người để ý đến.","id":"thR9OMR13BBZW2ijqjDx"},{"tournamentID":"XnmecTVfWWNVfWZaANER","link":"","topic":{},"content":"This House would require professional sports teams to be owned by their local communities instead of individuals or corporations.","division":"","language":"English","infoSlide":"","round":"1","id":"thj0H31WirwEJVQBvg7V"},{"infoSlide":"","link":"","round":"Open_Final","division":"","topic":{},"tournamentID":"UPn4syqdx9T0fJyHm2Ej","content":"THW give the 4-5-6 the 10% of children from the bottom of the league tables (Or, THW implement PLEB) (Torchwood: Children of the Earth).","language":"English","id":"tiG31Jg7Yc3Xmf2HRsKR"},{"round":"9","language":"English","link":"","topic":{},"content":"THBT the Mexican government (and others in military situations) should take steps to prevent people travelling in life-threatening ways like \"La Bestia\".","division":"","infoSlide":"","tournamentID":"yFALyexswW7KtxRDS4He","id":"tjHJgSS4mPqXCcT70Gom"},{"language":"English","link":"","tournamentID":"sv4AWOKZYbl1PfCObw21","topic":{},"content":"THR the narrative that in times of crisis (for example: major natural disasters, war, pandemics) frontline workers are national heroes.","division":"","infoSlide":"","round":"1","id":"tjQkBgQWGHb7TxwmujFd"},{"infoSlide":"","topic":{},"language":"English","division":"","content":"THS the continued consumption of old novels and films that endorse- even tacitly- the beliefs that today would be considered bigoted.","round":"2","tournamentID":"WfHILzlB4oGzI34Iwqaw","link":"","id":"tk9CPnqOJ5UmhTHwAzbc"},{"round":"3","infoSlide":"","link":"","language":"English","division":"","tournamentID":"V8KRgdahxIEUYFHrRWYb","topic":{},"content":"TH regrets welfare policies promoted by Eurozone countries currently immersed in a debt crisis.","id":"tmI1GR9qIvAjJMnILKAj"},{"content":"THR the rise of nationalist leaders.","tournamentID":"KE7jdAyW9az9nKVb9FMV","link":"","topic":{"politics":{"check":true,"title":"Politics"}},"round":"","infoSlide":"","language":"English","division":"","id":"tmslK2YrkwthQNOVEe2m"},{"tournamentID":"gLCKOLupIE8JBGxBG9vu","language":"English","round":"3","content":"Should news media be banned from reporting on threats of terrorist attacks?.","link":"","topic":{},"division":"","infoSlide":"","id":"tntXlGdBaLQC1OEKgXlm"},{"round":"Open_Quarters","infoSlide":"","content":"THBT oppressed minority groups should pursue violent resistance (i.e. rioting) as opposed to peaceful protest when seeking reform.","topic":{},"language":"English","tournamentID":"VQZZXpisO7Sjz81KUlh9","division":"","link":"","id":"toFaUjysO0T0dmDqQ9bL"},{"infoSlide":"","division":"","topic":{},"link":"","content":"THS the objectification of men in popular culture.","language":"English","round":"3","tournamentID":"tC9C0k05cAmtT3IBK2AV","id":"tpghxzJ8SI7ek1MRlYUk"},{"topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"link":"","division":"","language":"English","round":"4","content":"THBT feminists should challenge militarism instead of advocating for the 'right to fight' (e.g. pushing for the inclusion of women in national draft registration and combat duty).","tournamentID":"Wpv6iXJkIPUXYIkl0dST","infoSlide":"","id":"tpz7RaqZpqQMnG6XUWIJ"},{"language":"English","link":"","tournamentID":"92dIEXeOXUVvlcFeGCIr","topic":{},"infoSlide":"","content":"TH supports the establishment of a Black secessionary state within the territory of the United States, the founding of which is supported by the American government.","round":"Open_Quarters","division":"","id":"tqbDKSvnpd2f91wEcChw"},{"round":"2","tournamentID":"Sdm6UfNcXB7Ppj4BkdLe","link":"","infoSlide":"","content":"THBT players who are found to have racially abused their fellow competitors should be banned for life.","division":"","topic":{},"language":"English","id":"tqrQoSIeHxZJUqvKo96r"},{"topic":{},"link":"","tournamentID":"KErVXbqRahyWD7ZB1Q1m","round":"3","language":"English","content":"THW ban advertising.","infoSlide":"","division":"","id":"tqzCR7tVvB9wNLcU6oVD"},{"content":"That we would prefer the Eric Killmonger plot to the Shuri plot.","link":"","language":"English","tournamentID":"Pt1Z2dTdUinRviVucbZA","infoSlide":"","topic":{},"division":"","round":"5","id":"trBrHEllfaPS4cpyGxbG"},{"link":"","content":"THW abolish all limits on the heights of buildings.","division":"","topic":{},"language":"English","tournamentID":"Z2fhe3NoSvpEOVSzVxzj","infoSlide":"","round":"Open_Semis","id":"trMKxFMe3eCdo3dC27vu"},{"content":"THW not punish those who live below the poverty line for economic crimes, e.g. theft.","round":"1","tournamentID":"tC9C0k05cAmtT3IBK2AV","division":"","infoSlide":"","link":"","topic":{},"language":"English","id":"trVpM5iwJ3WZbJvqFCoG"},{"link":"","infoSlide":"","content":"TH, as Marcus Brutus, would participate in the conspiracy to kill Caesar.","division":"","language":"English","topic":{},"tournamentID":"KErVXbqRahyWD7ZB1Q1m","round":"4","id":"tsIpcwmNwmoWgmPujEw4"},{"round":"1","topic":{},"tournamentID":"a40eH2E5w4GGnWQ3oDT6","language":"English","infoSlide":"","link":"","content":"THBT US media should not report any details about school shootings beyond the fact that they happened.","division":"","id":"tsJpZPLJI5UVqv8y7zHS"},{"content":"THR the role of modern medicines in over-emphasizing prolonged life.","topic":{},"infoSlide":"","language":"English","round":"3","tournamentID":"mf3XudZleydnsr0lEvkg","link":"","division":"","id":"tskFbPlophrw3UfYGuHu"},{"language":"English","content":"THR the rise of slum tourism.","round":"5","topic":{},"infoSlide":"","link":"","tournamentID":"DNe0c1xNBVoG02MsO66g","division":"","id":"ttdbqcI9M6wMLERXz5CO"},{"division":"","infoSlide":"","round":"3","link":"","tournamentID":"NyCp19C1AzxXzCUQLio8","topic":{},"content":"Should we consider the DDR an unjust state?.","language":"English","id":"ttvUSCawipFdwxD7GziS"},{"content":"THS a federal European state.","tournamentID":"bvHOR7Oow9PPlKPlA2BT","division":"","topic":{},"language":"English","infoSlide":"","round":"Open_Finals_1","link":"","id":"tu3E8CoTl2bzqyXbv3wf"},{"link":"","infoSlide":"","content":"THR the rise in political consumerism.","round":"2","topic":{},"language":"English","tournamentID":"SGpBjVPnJkFrJB0hnxYv","division":"","id":"tuBxhEZziG1y9N1uY3Ik"},{"tournamentID":"sv4AWOKZYbl1PfCObw21","link":"","division":"","content":"THBT it would be in the interest of the Russian state to pivot away from China and towards the West.","language":"English","topic":{},"round":"5","infoSlide":"","id":"tuE7uqO5uebuO2snKQPO"},{"link":"","tournamentID":"X4613Kz1qYjZyFPJzJlB","infoSlide":"","language":"English","content":"THW grant senior military officers a veto over military decisions made by politicians (e.g. troop deployments, specific missions).","division":"","round":"2","topic":{},"id":"tujlzKbRZKWCaIjz2FuK"},{"topic":{},"tournamentID":"FcQa3EO91Xucj4ACR1Wb","round":"4","division":"","link":"","content":"THW prefer a world in which all art were anonymous over a world where it were always attributed to the artist.","infoSlide":"","language":"English","id":"tvXc2m8AmFiRCuHkPCqH"},{"division":"","topic":{},"tournamentID":"C4TfAdkoNgavFucgidJK","link":"","content":"THW geoengineer the climate.","infoSlide":"","round":"4","language":"English","id":"tvoT6I621vStBOxWJJzs"},{"tournamentID":"6KzwZLwpFJv7ICEsknpO","language":"English","round":"8","division":"","infoSlide":"","topic":{},"content":"This house believes that LGBT groups should actively seek to include Side B Christians.","link":"","id":"txTmCmy50gR9CVMH5p49"},{"link":"","topic":{},"infoSlide":"","division":"","language":"English","content":"THS the decision of pop stars such as Lily Allen and Adele to not take part in Band Aid.","round":"Open_Semis","tournamentID":"uEekEeJIfFAC4OJWJglf","id":"txX7aaJGojMOjLS0xqV4"},{"division":"","round":"3","tournamentID":"MyZkPsGPMuQ4XmFzJLVW","topic":{},"infoSlide":"","link":"","language":"English","content":"TH supports the televisation of trials.","id":"txgiVfR9woMHf6sG3isp"},{"round":"Open_Finals","division":"","link":"","language":"English","tournamentID":"p3EOrIRx2qBcnN8fXbHh","infoSlide":"","topic":{},"content":"TH, as the United States, would actively foment democratic unrest in China.","id":"txxaTXf1i2I4S5p06kdY"},{"topic":{},"division":"","link":"","round":"Open_Semis","tournamentID":"euj80C6nkxdgEhkTaI0g","infoSlide":"","content":"THBT all major daily newspapers and TV news channels should be required to treat all controversial issues with due accuracy and impartiality.","language":"English","id":"tyaVdZHkFAoQR49oRKly"},{"division":"","infoSlide":"","tournamentID":"yhJgdE0VFcsqlvWffep1","topic":{},"round":"8","link":"","language":"English","content":"THBT former colonial powers should never intervene militarily or economically in favour of one side in a civil war or rebellion in a former colony.","id":"tzjvvTnLE6K5z1g9g3JT"},{"link":"","content":"THW remove the executive's ability to grant pardons (i.e. to cancel the legal consequences of a conviction).","topic":{},"language":"English","division":"","infoSlide":"","round":"4","tournamentID":"d2f6RXp0B99iQq4RFZeE","id":"tzk7YvUfsfUfJu6Yb3OO"},{"link":"","infoSlide":"","round":"ProAm_Final","content":"THBT Judges should take into account the socioeconomic circumstances of defendants.","division":"","topic":{},"language":"English","tournamentID":"khQAvAFibcPAXBKfxTNY","id":"tzoNmxIbNxYg6Pea7inI"},{"link":"","topic":{},"division":"","content":"THW allow Pro-Life organisations to pay women currently considering having an abortion to carry the pregnancy to term.","language":"English","round":"5","tournamentID":"3tMy4nyufgrwLpV8f6da","infoSlide":"","id":"u00tnQH3swj5JC5RYnNM"},{"link":"","topic":{},"tournamentID":"Nzien6R9RXvOTrNMJsza","division":"","language":"English","infoSlide":"","content":"This house, as the EU, impose sanctions on countries with active prisoners of conscience.","round":"Open_Quarters","id":"u02SehnMo3QGG6LhLXlW"},{"division":"","language":"English","infoSlide":"","topic":{},"content":"TH regrets Jiyas use of the Burka (info video).","link":"","round":"Open_Final","tournamentID":"VZL2SmUXq00WGPbW0ZRt","id":"u0tnSsFtSlmC0upIXWzx"},{"division":"","content":"THW eliminate migration barriers.","topic":{},"link":"","round":"ESL_Final","language":"English","infoSlide":"","tournamentID":"yFALyexswW7KtxRDS4He","id":"u1E7u8gDJMSM1E6VJ3OU"},{"infoSlide":"","division":"","topic":{},"content":"THR the narrative that one must \"do what they love\".","tournamentID":"1bBjpR84rI88s6EveWzm","round":"HighSchool_Final","link":"","language":"English","id":"u1j8HsFwkOoXStRv7GeB"},{"language":"English","division":"","round":"Open_Semis","tournamentID":"nXN2yUG7soxwCp4xidzj","content":"THB progressives should refrain from criticising Caitlyn Jenner’s endorsement of Ted Cruz - Semi Final 1.","link":"","infoSlide":"","topic":{},"id":"u2Sd4nItXrOCeInCybmD"},{"round":"4","language":"English","topic":{},"link":"","content":"THW cancel permanent membership and veto power in the UN Security Council.","division":"","tournamentID":"bWRhS5k8Iv19aHOMEz5C","infoSlide":"","id":"u2ihJ8HSCmL46tFjhzDf"},{"round":"3","language":"English","link":"","division":"","infoSlide":"","tournamentID":"X7PfztBaTR2KFk3oINtG","content":"THBT the West should abandon its foreign policy aim of removing Assad from power.","topic":{},"id":"u2xJuBn8eiBdylAFkFIp"},{"link":"","round":"1","content":"THBT minority parents should shelter their children from the existence of racism for as long as possible.","division":"","topic":{},"language":"English","infoSlide":"","tournamentID":"mf3XudZleydnsr0lEvkg","id":"u2zttQcH7cqPTUdmymsa"},{"link":"","tournamentID":"Hpsxcd5Zzu5xq9ehtKkj","content":"This house would abolish the Womens’ League in chess.","division":"","language":"English","topic":{},"infoSlide":"","round":"4","id":"u39CD3SJYI4vNM3YTTG7"},{"tournamentID":"KE7jdAyW9az9nKVb9FMV","content":"Chúng tôi tin rằng các quốc gia trong khối BRICS nên ập ra một thể chế kinh tế mới để thay thế cho các thể chế hiện hành (WB, IMF, ...)","language":"Vietnamese","infoSlide":"BRICS là tên gọi một khối lớn bao gôm các nền kinh tế mới nối như Brazil, Nga, Ấn Độ, Trung Quốc và Nam Phi. Bởi vì họ cảm thấy không được đại diện cho mình đúng với vị thế trong các cơ quan quốc rế, cho nên đã lập ra một diễn đàn mới để bày tỏ lợi ích cùng hoạch định hoạt động chung trong khối.","topic":{"irw":{"title":"International Relations/War","check":true}},"division":"","link":"","round":"","id":"u3aWbJoFMPyBZ2OMdofS"},{"division":"","round":"5","tournamentID":"ODzhGSyV71DaUGhZEWGT","infoSlide":"","content":"TH supports the use of bounty hunters in law enforcement.","language":"English","link":"","topic":{},"id":"u3h2I12tlfTQyhHZNv1P"},{"infoSlide":"","division":"","language":"English","topic":{},"tournamentID":"WcNueZiJXeg9z82dijdL","link":"","round":"6","content":"THS the use of Negative Interest Rate Policies to tackle the economic downturn due to the Covid 19.","id":"u3mCs8NzP2qv809ZWLF4"},{"round":"3","content":"THW ban private & public initiatives to search for extra-terrestial intelligence.","division":"","infoSlide":"","topic":{},"tournamentID":"ZQbHv8rs6yqxtH8VBbkr","link":"","language":"English","id":"u4PCMpx5HLRYDgXS82Pd"},{"infoSlide":"","tournamentID":"683xp6VC99fyKWXfWS9H","division":"","topic":{},"language":"English","round":"Novice_Final","content":"THW break up persistently dominant political parties in emerging/developing democracies (e.g. the ANC in South Africa).","link":"","id":"u4uUbsDlGeyMvpswL7aI"},{"tournamentID":"OuMJNWJJy88lWhwWuJmy","link":"","topic":{},"round":"4","language":"English","infoSlide":"","division":"","content":"This house, as the gay community, regrets the existence of Grindr.","id":"u5FBeQCTqH4h2vLz1ub8"},{"division":"","link":"","content":"Assuming it could be done without placing the burden of secrecy on adults, This House Prefers a world where individuals are unaware of the existence of organized religions for the duration of their childhoods.","infoSlide":"","language":"English","round":"Open_Final","tournamentID":"ptDJAxuw5pGiwabyHZil","topic":{},"id":"u5wmymB5Haun3QCEwzOt"},{"round":"2","topic":{},"infoSlide":"","division":"","language":"Vietnamese","tournamentID":"OLVGf3rE3KKirerr2vyk","content":"Chúng tôi sẽ chỉ cho phép những người bán hoặc cung cấp dịch vụ được phép quảng cáo những thông tin liên quan đến thông số kỹ thuật của sản phẩm.","link":"","id":"u6TWFZNYR9d2t7zBGIti"},{"infoSlide":"","language":"English","link":"","tournamentID":"ZQk7wGWckTLOk9Y0j9z4","content":"This House Supports the public offering of Saudi Aramco.","round":"7","topic":{},"division":"","id":"u6bQaN2KI5Lto1QWM5ih"},{"tournamentID":"CEIVtMmh2XElfzcXXjzn","division":"","infoSlide":"","content":"THBT the LGBTQ community should actively boycott the Harry Potter series.","topic":{},"language":"English","link":"","round":"3","id":"u7AqzuI2OkS3lsqlRSfp"},{"tournamentID":"nALUKfkpmOnWnQCzecru","division":"","language":"Vietnamese","link":"","infoSlide":"","content":"Chúng tôi tin rằng các trường đại học nên tuyển học sinh dựa trên thành tích học tập ở bậc trung học.","topic":{"education":{"check":true,"title":"Education"}},"round":"","id":"u7u4wG7Yefe0pP09HRwy"},{"topic":{},"tournamentID":"se3rzB8xVp0Ph3sVbug3","language":"English","division":"","link":"","infoSlide":"","content":"THW make Ulysses contracts enforceable by the courts.","round":"2","id":"u8PGPm1GAvhgPAn0bYF0"},{"round":"1","division":"","content":"THW fire civil servants who refuse to wed same-sex couples.","link":"","infoSlide":"","tournamentID":"2XJwkUOw6JeegMJHT6Hl","language":"English","topic":{},"id":"u8TgS22Ycw8biPi7NMcr"},{"division":"","tournamentID":"wdL4H8i9EHTz4mqKuZHP","infoSlide":"","topic":{},"round":"3","content":"This House Would never offer a reduced sentence in return for information relating to other crimes.","language":"English","link":"","id":"u9KcfDqQ4uioyA0LlGru"},{"link":"","division":"","language":"English","tournamentID":"IpWyfCcksctR86jKX66g","content":"THW Let Anyone Take Up Residence in Any Country, Provided They Can Show that They Will Not be an Economic Burden on that Country.","topic":{},"infoSlide":"","round":"9","id":"uA2YDwmHR6F7TiJvcV9O"},{"content":"THW allow Asylum Seekers to work.","tournamentID":"GQttZR3FjAIw20Ek36nP","topic":{},"link":"","division":"","infoSlide":"","round":"3","language":"English","id":"uB4uNqV8V3hNOTmxi4qJ"},{"infoSlide":"","division":"","tournamentID":"OwplBrh3NruD1YwoexiY","round":"1","language":"English","content":"THBT separate sports competitions for women harm the feminist cause.","link":"","topic":{},"id":"uCM0aJG8bRkgIS9c7VPc"},{"round":"Open_Double","tournamentID":"5Qomv7BFHTKmY4PchwDr","division":"","infoSlide":"","link":"","content":"That Disney should remove from circulation cartoons from its history that contain racist caricatures.","topic":{},"language":"English","id":"uCW5ZQX2bK4YLep1EUSZ"},{"content":"Assuming this tech exists, THS the use of this AI.","round":"Open Semifinals","division":"","topic":{},"infoSlide":"An AI technology has been invented that creates realistic virtual humans equipped with simulated partial consciousnesses for users to interact with. Users may legally do anything they wish to these consciousnesses. These consciousnesses are programmed to experience all the same emotions as a human--including pleasure, pain, fear, etc.","link":"","language":"English","tournamentID":"1dwGdjAn9pODo8bQfmJW","id":"uCq3q2ncl87mVGhT2tjT"},{"infoSlide":"","division":"","round":"5","tournamentID":"6AnUBd9SLIBHmD9Uy5dS","language":"English","topic":{},"content":"THBT states should not publicly subsidize the production or display of art.","link":"","id":"uDgQ7iyziXkWNIasDKPV"},{"link":"","topic":{},"language":"English","infoSlide":"","round":"2","division":"","content":"THW record and publicize all criminal trial proceedings (eg, indictment hearings, testimonies, jury deliberations).","tournamentID":"wL3wAKRctC8syY2eg8t3","id":"uEGgvG9vvct6fhkvoVJs"},{"content":"This House Opposes the Rise of Non-Career Politicians.","topic":{},"tournamentID":"0vUzx1fMW06W65BNi8Wn","language":"English","link":"","infoSlide":"","division":"","round":"4","id":"uEYIQo119kiAhv227u57"},{"infoSlide":"","round":"Open_Final","topic":{},"content":"TH welcomes medical progress that enables women to have children after the menopause.","division":"","link":"","tournamentID":"LHNbcjmFANvMo9zTZOWN","language":"English","id":"uEgTauHwZMScvUTOHGr2"},{"topic":{},"round":"2","infoSlide":"","content":"THBT signatories to the Kyoto protocol should institute economic sanctions against nations that refuse to sign.","link":"","division":"","tournamentID":"qoRL9POR1sxdsrdIdj6B","language":"English","id":"uGUyybfnwk5b8uBXt70O"},{"language":"English","content":"THBT the African Union should condemn the One Belt One Road Initiative.","division":"","infoSlide":"","tournamentID":"C4TfAdkoNgavFucgidJK","round":"Open_Semi","topic":{},"link":"","id":"uHVE2466d8iqf7UxDP7L"},{"language":"English","tournamentID":"81ULNwgwoeeJz6JyR6aq","content":"THW make the next James Bond gay.","infoSlide":"","division":"","topic":{},"round":"4","link":"","id":"uI3m735HtEwbE3fYoKsQ"},{"division":"","link":"","topic":{},"language":"English","round":"Open_Final","infoSlide":"","content":"As an atheist, THW proselytise.","tournamentID":"o29IKQqCI95UODWABA9Y","id":"uIGLJUb723b2SuvjR8gF"},{"language":"English","tournamentID":"4Nqwg2GbRwaUJ5LaWcSt","infoSlide":"","content":"thw set a cap on the personal wealth an individual is allowed to own (including the value of shares that individuals own in companies.","division":"","topic":{},"round":"Open_Quarters","link":"","id":"uIXUokuw1NlxhG1O7V6J"},{"topic":{},"link":"","content":"THW allow the use of negative competitor image in advertisement.","infoSlide":"","language":"English","round":"4","tournamentID":"G1nDRe3mbR7XzsaLbAGR","division":"","id":"uIe6kH9y6a4ybnufx5P3"},{"division":"","topic":{"hr":{"check":true,"title":"Human Relationships"}},"infoSlide":"","round":"","link":"","tournamentID":"LlsxibXteGBGML9aitY2","language":"Vietnamese","content":"Chúng tôi tin rằng việc phụ nữ nói dối về trạng thái các mối quan hệ và kế hoạch tương lai của họ trong các buổi phỏng vấn xin việc là hoàn toàn chính đáng.","id":"uIxOk3mLkMh3i9rXjkCI"},{"round":"1","infoSlide":"","link":"","division":"","topic":{},"language":"English","content":"THBT Western Liberal Democracies and their citizens should never pay ransom for those kidnapped by terrorist groups.","tournamentID":"lgIRNhKweWPgrrSL34Lh","id":"uJGPbgeqzz0Rj2OvQq9t"},{"division":"","content":"THBT natural resources should belong to the world and not to any individual country.","language":"English","round":"6","link":"","topic":{},"infoSlide":"","tournamentID":"McARyCvnNLDmzAARI8jE","id":"uJVqA411BjxImfUe2CrQ"},{"topic":{},"infoSlide":"","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","content":"In times of crisis, where tradeoff is inevitable, THBT states should prioritise safety over freedom.","division":"","round":"2","language":"English","link":"","id":"uJcNBrEOhLKxQBHNjSHs"},{"link":"","tournamentID":"V6eoj3ztq5t3sX9oPVue","division":"","topic":{},"language":"English","round":"4","infoSlide":"","content":"TH approves of the USA's policy of extra-judicial killing of terrorists.","id":"uJgjdttl3DePSqQVpPto"},{"infoSlide":"","link":"","round":"1","content":"THW, radically tax the rich and give all citizens a basic income without a requirement to work.","topic":{},"language":"English","tournamentID":"j4lF8rhbFUyC0UTwoz2G","division":"","id":"uJqftF2wNveKcwLC8zk8"},{"topic":{},"language":"English","content":"THBT sexually assertive female pop stars identifying as feminists is harmful for feminism.","tournamentID":"sgkzjS4WeJfa3Df1l3zo","infoSlide":"","round":"4","link":"","division":"","id":"uK8Ei92PDS6YJeBbcWTr"},{"link":"","round":"5","content":"THW hold Islam accountable for the actions of Islamists.","infoSlide":"","topic":{},"language":"English","division":"","tournamentID":"0FjoYPaEyMvQKDhX7FzX","id":"uKIZvfU6i5K5mSFxCT4f"},{"content":"THW ban beauty pageants for minors.","round":"1","language":"English","topic":{},"division":"","link":"","infoSlide":"","tournamentID":"IKVZuvI9noj2HK4GNxgS","id":"uL91bvD1Ns4Yn8lBzMx6"},{"topic":{},"content":"Chúng tôi sẽ thực hiện phiên bản live-action của bộ phim với toàn bộ nhân vật trong gia đình là người da màu.","round":"2","division":"","language":"Vietnamese","link":"","infoSlide":"Gia đình siêu nhân kể về cuộc phiêu lưu của gia đình siêu nhân Incredible với hai vợ chồng siêu nhân và những đứa con cũng có siêu năng lực. Bên cạnh chủ đề siêu nhân, bộ phim cũng khai thác khía cạnh và đặc điểm của một gia đình người da trắng điển hình trong xã hội Mỹ. Live-action là phiên bản phim do người thật đóng dựa trên sách hoặc hoạt hình, thường các phiên bản này sẽ có sự thay đổi so với nguyên tác để tăng tính hấp dẫn.","tournamentID":"FiF24Yc0spiBkvTxiYwD","id":"uMt1kiqft7etXBGBBxol"},{"topic":{},"tournamentID":"IXq1CdgyiKmkyEDJURrV","infoSlide":"","round":"3","language":"English","link":"","division":"","content":"THR the narrative that family love should be unconditional.","id":"uNDxJhFvJaHhgmy1s9LN"},{"content":"TH, as parents, would raise its children non-gendered.","tournamentID":"bkOT9pwqHsKTlwricRHY","link":"","language":"English","round":"4","topic":{},"infoSlide":"","division":"","id":"uNXFOchLi7OK1vbXZmgQ"},{"division":"","language":"English","link":"","infoSlide":"","round":"Open_Final","tournamentID":"C1d7IlBx1VcZ4eBTl6cr","content":"THBT too many high school graduates study (go on to university).","topic":{},"id":"uNhBslDEo9mR8qatezgi"},{"tournamentID":"nMUJTA4Krf9MyO7MGVzA","infoSlide":"","link":"","language":"English","content":"THW grant legal personality to animals.","topic":{},"round":"8","division":"","id":"uNlwemoeVM0hiQTtiwq7"},{"division":"","link":"","round":"Open_Final","tournamentID":"RlGrdg8aVMD5XQVuPN3W","language":"English","topic":{},"infoSlide":"","content":"THW not read fairy tales to children.","id":"uOWHliOlh3q55GWh8OXM"},{"content":"This House, as Colombia, would cease cooperation with the USA in the War Against Drugs.","round":"7","division":"","tournamentID":"1dEXZTvvRtTWhdBLmzFt","link":"","topic":{},"language":"English","infoSlide":"","id":"uP36wJ2XXvGP2HBmjJQK"},{"language":"English","round":"Open_Semi_2","infoSlide":"","link":"","tournamentID":"xLHei5vZFgpmhHOsyDv6","division":"","topic":{},"content":"Polygamie should be legalised in the Netherlands.","id":"uPUfP6qAu6cEl6yznPd6"},{"round":"1","content":"Chúng tôi phản đối cách ly xã hội như là phương pháp chủ yếu để chống COVID-19.","link":"","division":"","topic":{},"language":"English","tournamentID":"uqR5rN63m5rX9CiOtJjb","infoSlide":"","id":"uQRqm3Uhx1kzXHKMdHDD"},{"topic":{"hr":{"title":"Human Relationships","check":true}},"infoSlide":"Polyamory is the practice of having a romantic relationship with more than one partner with informed consent of all the partners involved in the arrangement.","link":"","division":"","tournamentID":"LlsxibXteGBGML9aitY2","content":"TH prefers a world where all romantic relationships are consensually polyamorous.","round":"","language":"English","id":"uQSkXsW12wIxnAnmjXNV"},{"topic":{"others":{"title":"Others","check":true}},"round":"","tournamentID":"nALUKfkpmOnWnQCzecru","division":"","content":"Trong tình hình đại dịch, chúng tôi tin rằng các doanh nghiệp hưởng lợi từ đại dịch nên bị đánh thuế nhiều hơn.","language":"English","link":"","infoSlide":"","id":"uQp3lHdh0chof3N61MKn"},{"content":"THW ban such a machine.","division":"","infoSlide":"","topic":{},"tournamentID":"IK2tQhXBb3v4DJKRH1Ve","round":"Open_Final","language":"English","link":"","id":"uQtBcdhdMfVqUsS8qZX3"},{"infoSlide":"","division":"","content":"THBT MGM studios should cast a woman as the next Bond.","link":"","round":"4","topic":{},"tournamentID":"j9tMf10ACsn6VW6vG9gA","language":"English","id":"uRN1YOdpIA2Mn0Ejv5b7"},{"topic":{},"language":"English","infoSlide":"","round":"3","link":"","tournamentID":"6kzErQkhNrOjgjEPAYjE","content":"THW require all Portuguese to spend 25 € per month on local products.","division":"","id":"uRP5bs2P13lTcnSwurDW"},{"language":"English","topic":{},"link":"","division":"","round":"Open_Semi_2","content":"THB that the UN should ban impartial small arms embargos.","tournamentID":"BXqPhfwak2R1kYHV48bp","infoSlide":"","id":"uRx90mklGpictUcEhoEJ"},{"round":"Open Octofinals","infoSlide":"","topic":{},"language":"English","tournamentID":"m6JzV67uYJSVBRpAbgL7","content":"THBT US Senators who approved (in confidential briefings) the CIA's use of enhanced interrogation (waterboarding, sleep deprivation, exposure to low temperatures for extended periods etc.) should be tried for war crimes.","link":"","division":"","id":"uSiwM1w1SjzaaqAR7StT"},{"language":"English","topic":{},"link":"","infoSlide":"","division":"","content":"THBT All Countries Should Forcibly Redistribute Land Ownership So That at Least 50% Of It Is Owned By Women.","round":"Open_Final","tournamentID":"i4XbygF4ZWUtQg8NFKqw","id":"uTPGCngufyRWIm82IQsZ"},{"link":"","infoSlide":"","division":"","content":"Should research in all German universities exclusively serve civil and peaceful purposes?.","tournamentID":"1wIdZYeTVkyLU5yJfjda","round":"Open_Semis","topic":{},"language":"English","id":"uUSz7rs9kOhgeE8x8TV1"},{"division":"","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","language":"Vietnamese","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"content":"Chúng tôi sẽ thay thế quyết định của con người bằng thuật toán máy tính trong các quyết định tuyên án hình sự.","round":"3","link":"","infoSlide":"","id":"uUtplW9GQ9e2idCRt1Qe"},{"link":"","topic":{},"language":"English","division":"","content":"Should tax returns (Steuererklärungen) be made public?.","round":"2","tournamentID":"NyCp19C1AzxXzCUQLio8","infoSlide":"","id":"uV5qUt6NzkopTZVHPPj5"},{"round":"Open_Final","infoSlide":"","link":"","language":"English","division":"","topic":{},"tournamentID":"Ns60Gy3xxrtFcpflRpTk","content":"THW require all visitors to gain entry permission from the tribal community before visiting the region.","id":"uVBdbKcWnqRilWhQM89E"},{"language":"English","tournamentID":"zUT5H7Cgh7l0a0sJSIba","infoSlide":"","topic":{},"link":"","content":"The NRA, National Rifle Association of America, is a lobbying group in Washington. Its notable actions include influencing legislation aimed to deregulate gun ownership laws, initiating lawsuits against municipalities that have banned or have placed strict regulations on firearm laws, and endorsing candidates mainly of the Republican Party. THBT the US should require the NRA to pay reparations to victims of gun violence.","division":"","round":"3","id":"uVTgkVb2cWZBsLfu2UPM"},{"topic":{},"link":"","division":"","content":"This House Believes That it is in the interest of the Russian Federation for Vladimir Putin to run for a fifth term as President in 2024.","tournamentID":"S5UzkuOf9XN6BnhOSbRC","infoSlide":"","round":"ESL_Semi","language":"English","id":"uVX4yYKB2Rp5erAyZDqP"},{"round":"8","content":"This house believes that Black Lives Matter should push for black separatism rather than inclusion.","infoSlide":"","division":"","topic":{},"language":"English","link":"","tournamentID":"mXeF4ypkhHofmXrxLWxA","id":"uVYh5aPMKTV5fMbhUwSZ"},{"content":"THBT developing countries should adopt economic development policies that heavily disincentivise urbanisation.","tournamentID":"q7pvo4zkG31lg89ofmeq","language":"English","topic":{},"link":"","round":"6","infoSlide":"","division":"","id":"uWEEcUznZNfI3jSB9jax"},{"tournamentID":"mXeF4ypkhHofmXrxLWxA","infoSlide":"","division":"","content":"Assuming we had the technology to be able to perfectly simulate physical and psychological pain (without killing someone), this house would allow convicted criminals to choose to feel the pain of their victims rather than serve their prison sentence.","topic":{},"language":"English","round":"Open_Final","link":"","id":"uZNKF9eWVzDnU24A9Gc1"},{"round":"4","division":"","content":"THBT states should not hold prisoners of war after a conflict's cessation.","tournamentID":"p3EOrIRx2qBcnN8fXbHh","link":"","language":"English","topic":{},"infoSlide":"","id":"uagzTfE3EtpJdJVYdWJ2"},{"round":"1","content":"THW prosecute violent fouls in sports as criminal assault.","topic":{},"infoSlide":"","link":"","language":"English","division":"","tournamentID":"LYTCjoO4snxI4nOKTVZB","id":"uahe32RoTDPUXL4WPLpA"},{"content":"THB that online activism is counterproductive.","tournamentID":"0M48sfM68g8U5RgkKD2l","language":"English","topic":{},"round":"3","link":"","infoSlide":"","division":"","id":"uasSpcLl0xskcTP8Ud7r"},{"round":"2","division":"","tournamentID":"0FjoYPaEyMvQKDhX7FzX","link":"","language":"English","topic":{},"infoSlide":"","content":"THBT the marketing strategies of Western NGOs have hindered the development of the global South.","id":"ubHOE84aCvdDejmlvyed"},{"topic":{},"content":"Should prisoners on hungerstrike be forcefed?.","link":"","infoSlide":"","tournamentID":"Ef5RtQo9Rr0nt7Nnhncq","language":"English","round":"Open_Semis","division":"","id":"ubI4mth2M8JXp8mGWCBW"},{"round":"Novice_Semi","content":"THW allow children who have reached the age of majority to sue their parents for religious indoctrination.","topic":{},"infoSlide":"","tournamentID":"I5iTcVABscgCPPKzr8Oa","division":"","link":"","language":"English","id":"ubdLlhaSl0yAFujW2bqL"},{"division":"","content":"THBT KPOP has done more good than harm to Asian music industry, artists, and art.","infoSlide":"","tournamentID":"KncW7pH1nDIom3xK89VG","round":"Quarterfinals","link":"","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"language":"English","id":"ubtUDCR6liDwZQY2sKtj"},{"division":"","infoSlide":"","topic":{},"content":"“THW Introduce Mandatory Paternity Leave”.","link":"","language":"English","tournamentID":"5ETrS816OeSAWdPhWEHf","round":"10","id":"ucXKqRo8yqMTdGKhQ2VC"},{"language":"English","link":"","round":"2","topic":{},"division":"","content":"THW set up brothels in military bases.","infoSlide":"","tournamentID":"D3NiQxizKJ06MnU4DU06","id":"ucYgwNJ6AdhZFay89hyg"},{"division":"","round":"7","topic":{},"tournamentID":"Biz1VRjjdg8eWbm4NJr3","language":"English","content":"This wouse would require individuals to reveal their actual identity when communicating on the internet.","infoSlide":"","link":"","id":"uccqZVFzDgUPKqLsutr7"},{"infoSlide":"","content":"Assuming a mechanism exists, THBT NATO should expel Turkey.","division":"","language":"English","tournamentID":"kaKFVFzhrgSOIPlruLU6","topic":{},"link":"","round":"Open_Quarters","id":"uclMYk5hlcc0tAZ4G1uo"},{"infoSlide":"","topic":{},"round":"8","content":"THB feminism has run its course in Ireland.","link":"","tournamentID":"zkhDsyR1rpDZXDiA2JUj","language":"English","division":"","id":"udZ9oBxo7GKwAUwCHSuq"},{"link":"","division":"","round":"2","tournamentID":"idhVYyUwgWnlyak17o8K","language":"English","topic":{},"infoSlide":"","content":"THW require local councils to provide sufficient plots for gypsies in spite of local opposition.","id":"ueZ1s3ojTnuqddUPxwcY"},{"topic":{},"division":"","link":"","round":"2","content":"THW ban all youth wings of political parties in developing countries.","tournamentID":"K8mVAYwcb9xlXvnmmJBY","infoSlide":"","language":"English","id":"uegObOvmZwwVvIlcLSPk"},{"link":"","content":"THBT true women's liberation can never coexist with organized religion.","round":"Open_Final","division":"","tournamentID":"BsGevifhMX1weZjFgh7y","topic":{},"language":"English","infoSlide":"","id":"ueh3oirFrNLpYz4RVh7y"},{"tournamentID":"aHKO046eJRUWaom1jPG8","language":"English","division":"","topic":{},"infoSlide":"","link":"","content":"This House Supports the US Federal/State governments' re-opening of their economies.","round":"3","id":"uf6ZYiIu1tn0Vx2CeYS0"},{"language":"English","round":"Open_Quarters","tournamentID":"PGbz2bx1wifAEJU64jdo","link":"","division":"","content":"This house would pardon all deserters at the end of major war campaigns.","topic":{},"infoSlide":"","id":"ufVRxRDsnnDrrNdvSn5v"},{"division":"","tournamentID":"MgpFX31hoBasrUiOV7Eu","language":"English","link":"","topic":{},"infoSlide":"","content":"After popular uprisings resulting in the overthrow of long-time dictators, THBT Western nations should make support (e.g. diplomatic recognition, foreign aid, investments) to the new government explicitly contingent on holding internationally observed elections within 6 months of the dictator’s end.","round":"3","id":"uftNrbzoyItVPpyxtXb7"},{"link":"","topic":{"gfl":{"title":"Gender/Feminism/LGBT","check":true}},"content":"THBT feminist organisations should not criticize female politicians for their views on women's issues.","tournamentID":"D8AtyrmDZV48giPFtym5","language":"English","round":"","division":"","infoSlide":"","id":"uh8iUI69VuZ7shMTHvqF"},{"topic":{},"infoSlide":"","link":"","round":"4","tournamentID":"zkhDsyR1rpDZXDiA2JUj","language":"English","division":"","content":"THW abolish the minimum wage.","id":"uh9Ix5fZ6mATyLrLdlE9"},{"link":"","topic":{},"content":"THP the removal of sex and gender markers (e.g., on government forms, IDs, and other areas of legal recognition) as opposed to the inclusion of nonbinary, \"X\", and other gender or sex markers.","round":"2","language":"English","division":"","tournamentID":"4BdwKPHB1LrpVYqE4E51","infoSlide":"","id":"uhSubnvUKUEFDFjtBHJx"},{"content":"THW no longer arrest or prosecute individual members of drug gangs operating in highly violent areas if gang leaders agree to halt all turf wars.","language":"English","round":"1","tournamentID":"GeB6bvqs5FhYEP99Q8Ax","topic":{},"link":"","division":"","infoSlide":"","id":"uiDjGkJYRCcGA6pw0TLd"},{"content":"This house would significantly tax all expenditures on private education and use the revenue to fund public education.","topic":{},"tournamentID":"fBPBbh32BZ2p0Y1Fy5Yi","language":"English","infoSlide":"","round":"3","division":"","link":"","id":"uifb72GBD738bVcWSFA7"},{"tournamentID":"EP5HDm4G3OfMlciId6YM","division":"","language":"English","infoSlide":"","round":"3","link":"","topic":{},"content":"This House opposes the norm that romantic love should be the primary source of fulfilment in a person's life.","id":"uitawh1coLHMA2oVSS0p"},{"language":"English","topic":{},"link":"","division":"","infoSlide":"","tournamentID":"Bx1uUqHBcAJ7qAZcUwyz","content":"THW create specific zones where community members can legally participate in nonviolent, illicit behavior (e.g sex work, drug use).","round":"Open_Final","id":"ukzdzVLArpucgVONfThU"},{"infoSlide":"Hỗ trợ phát triển chính thức, hay ODA, là một hình thức đầu tư nước ngoài, thường cho nhà nước vay. Đầu tư trực tiếp nước ngoài, hay FDI, là hình thức đầu tư dài hạn của cá nhân hay công ty nước này vào nước khác bằng cách thiết lập cơ sở sản xuất, kinh doanh.Cá nhân hay công ty nước ngoài đó sẽ nắm quyền quản lí cơ sở sản xuất kinh doanh này.","topic":{},"content":"","round":"Semifinals","division":"","language":"Vietnamese","link":"","tournamentID":"znXRdnU2llK8fXmHlci5","id":"ukzimYBcHGIhUx5ByDFR"},{"infoSlide":"","content":"THR the reliance on land settlements as reparation for colonial injustices - Semi Final 2.","link":"","tournamentID":"nXN2yUG7soxwCp4xidzj","language":"English","topic":{},"division":"","round":"Open_Semis","id":"ul7LX2cwONyYK4zpkDQG"},{"tournamentID":"6kzErQkhNrOjgjEPAYjE","language":"English","division":"","content":"THBT Wikipedia should be put on the UNESCO World Heritage list.","infoSlide":"","topic":{},"link":"","round":"Open_Semis","id":"ulHLBf7NRt3PTeXSotc8"},{"infoSlide":"","content":"As adoptive parents, THW only tell their children they're adopted after their teenage years.","topic":{},"link":"","division":"","tournamentID":"uvPQBxEeKffyHUkLa5PV","round":"1","language":"English","id":"umH1AeBEUXbmfSs8PDvl"},{"tournamentID":"5O13410pDrHfcvKnpppR","topic":{},"round":"Open_Final","division":"","language":"English","infoSlide":"","content":"This House would prevent criminals from publishing accounts of their crimes.","link":"","id":"unmB68UO2wY47xlkA03x"},{"language":"English","division":"","infoSlide":"","topic":{},"round":"Open_Semi","content":"TH Opposes the Sharing Economy.","tournamentID":"DFNWZhapl7SHDFBrFsMi","link":"","id":"uoCbj0cky3ZwtHQhLnFy"},{"content":"Chúng tôi phản đối việc marketing/branding các chương trình thiện nguyện do các cá nhân trong xã hội thực hiện.","topic":{},"link":"","tournamentID":"i00RSzvK4b1TDEgnpFJd","division":"","round":"5","infoSlide":"","language":"Vietnamese","id":"uoHD4O1KE4Q6lemaBHVo"},{"round":"Open_Semi","tournamentID":"fkUHa28aVk8LYYEAdofu","topic":{},"language":"English","link":"","content":"That sanctions should be placed on countries that provide tax-havens to multinational companies.","division":"","infoSlide":"","id":"upVFatNpdIXYhP1aXUPK"},{"link":"","topic":{},"language":"English","division":"","round":"Open_Semi_1","tournamentID":"BXqPhfwak2R1kYHV48bp","content":"THW abolish Oxbridge.","infoSlide":"","id":"uppmnGxa8frCKBAkhmfm"},{"division":"","tournamentID":"g87X9iRsC0CxxtZdAjMP","topic":{},"round":"4","content":"Assuming the technology to significantly alters the body exists (eg, changing memory capacity, limb reinforcements) THW recognize a right to morphological freedom.","language":"English","link":"","infoSlide":"","id":"upxnZUXvOPg3LDQCPOLe"},{"tournamentID":"QDGMrdrzlFCxVT5WcqNn","division":"","language":"English","content":"Assuming we had the technology to be able to perfectly simulate physical and psychological pain (without killing someone), this house would allow convicted criminals to choose to feel the pain of their victims rather than serve their prison sentence.","infoSlide":"","topic":{},"round":"Open_Final","link":"","id":"uqFfTlqdVMpIb0IF9VPU"},{"round":"1","topic":{},"infoSlide":"","link":"","division":"","language":"English","tournamentID":"t2juKb62UT5HJ0kruUAw","content":"This house would ban labour unions.","id":"uqMU7Ssrnc8R8ljunAim"},{"topic":{},"tournamentID":"oaIuwyOX7NBIwaiSaVJ8","round":"3","infoSlide":"","division":"","content":"That curricula in post-colonial states should focus on locally-authored literature, to the absolute exclusion of 'great work' such as Shakespeare.","link":"","language":"English","id":"urVgTbKjmzrU8YG4rflq"},{"division":"","language":"English","content":"TH believes that Japan should acquire nuclear weapons.","round":"4","tournamentID":"uUwIAKIDo0apui0AqOxG","link":"","topic":{},"infoSlide":"","id":"urXGNKZXjIQsiRP6MapS"},{"topic":{},"tournamentID":"q7pvo4zkG31lg89ofmeq","round":"Masters_1","content":"TH regrets the rise of art that celebrates gaining material wealth.","language":"English","division":"","infoSlide":"","link":"","id":"urZWZTOBLfLJy1GLIn0D"},{"link":"","tournamentID":"eSbb5Usou5B1Drm2Dmyl","infoSlide":"","topic":{},"round":"1","content":"This house prefers leaderless movements.","division":"","language":"English","id":"us9RwgvmnnBCrhlo7768"},{"infoSlide":"","division":"","content":"THBT all schools in the Westbank become integrated schools (mixing up children of different backgrounds to enhance integration and understanding).","language":"English","tournamentID":"w1cmIhewdRlJLYHGdtbg","topic":{},"link":"","round":"2","id":"usKQDT21nl4BOpikQqcQ"},{"link":"","language":"English","infoSlide":"","topic":{},"content":"THW ban foreign investment on Indonesia tech startups.","division":"","tournamentID":"DV29K6gIIl6nTiYeWo2j","round":"Novice_Final","id":"uswCQGQijGWBjxIlFg1g"},{"infoSlide":"","division":"","language":"English","tournamentID":"XL594Q2oZbvHmfmYKFvT","link":"","topic":{},"content":"Assuming that the technology existed, that we would allow individuals to sell their Intelligence Quotient (IQ) as a commodity.","round":"4","id":"uuFOU9LtC6DUmpbj8o6c"},{"content":"THW require all media organizations hosting major pre-election debates to provide live fact-checking of speakers' claims.","division":"","topic":{},"round":"2","infoSlide":"","tournamentID":"sFRIEYyxie6GRmJwElmF","link":"","language":"English","id":"uuMza4qcjGQF3F59I9P6"},{"content":"TH regrets the romanticisation of art that is pursued for non-material gain (e.g. glorifying the ‘Starving Artist’).","division":"","tournamentID":"Mp1zDBiaN3PYnRnjPVIk","topic":{},"link":"","round":"2","language":"English","infoSlide":"","id":"uujkLjWXI87bLI8ecb7W"},{"infoSlide":"","round":"2","language":"English","topic":{},"tournamentID":"JDfeMpzRWbEVXloSgRZp","link":"","content":"THR the continuation of NATO after the dissolution of the USSR.","division":"","id":"uuvDg5yOXNKp6G6SK7LJ"},{"language":"English","link":"","infoSlide":"","division":"","tournamentID":"uEekEeJIfFAC4OJWJglf","round":"5","content":"THBT the music press should aggressively negatively depict the work of artists, such as John Lennon and Jimmy Page who commit morally reprehensible acts.","topic":{},"id":"uvG7nqsyNB3V8d3FeAlv"},{"link":"","language":"English","division":"","infoSlide":"","topic":{},"round":"Open_Semis","content":"THBT President Obama should prosecute officials that authorised and ordered torture.","tournamentID":"BvbIXgEeyaIcozyDf6R5","id":"uvGB8lvOE6pxIeuL3Bt7"},{"infoSlide":"","division":"","language":"English","round":"4","link":"","topic":{},"tournamentID":"5O13410pDrHfcvKnpppR","content":"THW pay for the return of hostages.","id":"uvLTsq4z33p8PtdzkdLb"},{"content":"Chúng tôi lấy làm tiếc về quan niệm \"Phụ nữ cùng lúc có thể có tất cả\" (sự nghiệp, gia đình, ...)","infoSlide":"","round":"2","link":"","topic":{},"division":"","tournamentID":"i00RSzvK4b1TDEgnpFJd","language":"Vietnamese","id":"uwF5cvklNScDkQmHHCut"},{"link":"","round":"1","content":"THW deny all government subsidized health benefits for individuals who choose to lead an unhealthy lifestyle.","division":"","tournamentID":"K8mVAYwcb9xlXvnmmJBY","topic":{},"infoSlide":"","language":"English","id":"uwO6MTxYCccFLvrWsOMP"},{"language":"English","division":"","link":"","content":"THW create a constituency for the Irish abroad.","tournamentID":"GQttZR3FjAIw20Ek36nP","infoSlide":"","topic":{},"round":"2","id":"uwpDLNip0kiGHAX4EThD"},{"division":"","round":"Open_Quarters","content":"THR the stance of U.S. foreign policy in favor of Sunni forces in the Shia-Sunni conflict in the Middle East.","link":"","language":"English","tournamentID":"MgpFX31hoBasrUiOV7Eu","infoSlide":"","topic":{},"id":"ux94TLETRXMHgKtRHhoy"},{"tournamentID":"WcTEqzk0ckiyLGdszyy6","infoSlide":"","round":"Open_Semi_3","division":"","link":"","topic":{},"content":"When father of a fetus favours abortion and this is not carried out, THW allow him to excuse himself from any responsibility for the child;.","language":"English","id":"uxyMlbQsqvALxfCYFDYy"},{"division":"","tournamentID":"i3UU49z9MRO6phe9r1BH","content":"THBT, in large metropolitan areas, the government should use eminent domain to create high density housing development.","round":"Open_Quarters","link":"","language":"English","topic":{},"infoSlide":"","id":"uys2liEJHOhvfVp6gaiy"},{"language":"English","content":"THBT to combat the Covid-19 epidemic, countries should act according to a common process instead of acting independently as they are today.","round":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","infoSlide":"","link":"","topic":{"publicHealth":{"check":true,"title":"Public Health"}},"division":"","id":"uyzPkBtd3bzAz2UC1OZc"},{"infoSlide":"","content":"THW require candidates for public office to be psychologically evaluated during their trial period rather than making their psychological illness history public.","division":"","topic":{},"language":"English","round":"4","tournamentID":"6SkyoBySWDSJCqeHrA9S","link":"","id":"v0rjBE1sFQYFKi5yYgvF"},{"language":"English","link":"","infoSlide":"","topic":{},"division":"","tournamentID":"7abz3Ipf2RhGUArcqBwg","round":"3","content":"Should professional sports clubs be prohibited to seek national and international transfers of minors that are still in youth programs?.","id":"v1OR85YZTQup5evrQ0iP"},{"tournamentID":"Te8CYa0tImwgHXE99O7W","content":"Assuming there is a safe procedure, THW allow adults to permanently \"lock in\" their chosen personality traits (e.g. stubbornness, openness, honesty) as unchangeable.","division":"","round":"4","topic":{},"infoSlide":"","language":"English","link":"","id":"v1XGykVLWABckhUV9dck"},{"round":"1","topic":{},"content":"THW cancel all debts held by poor countries.","language":"English","link":"","division":"","tournamentID":"ZjN9B5kqPitiGVpXIpHO","infoSlide":"","id":"v4Id2ZiTB4w4flD2owid"},{"content":"","language":"English","tournamentID":"LlsxibXteGBGML9aitY2","division":"","link":"","topic":{"politics":{"check":true,"title":"Politics"}},"round":"","infoSlide":"Tax evasion: illegal underpayment, or nonpayment of taxes. Authoritarianism: a form of government characterized by strong central power maintained by political repression and limiting political freedoms.","id":"v4a4Sh4bFotv4Pot3wIw"},{"topic":{},"language":"English","round":"4","link":"","infoSlide":"","tournamentID":"TtoxDZeWyCKcOginS4mH","division":"","content":"TH chooses immortality.","id":"v4kdSv2NTwV3Fk6wa3pq"},{"tournamentID":"kM1DLhtxZLQbdLIScfM9","round":"5","language":"English","topic":{},"division":"","infoSlide":"","link":"","content":"THBT developing nations with ethnically diverse populations should prohibit vernacular schools\".","id":"v5ERP4i2nWeSzmqeqAPu"},{"division":"","round":"","link":"","infoSlide":"","language":"Vietnamese","content":"Chúng tôi tin rằng các cơ sở giáo dục ở các quốc gia phát triển nên công khai các tài liệu học thuật của họ cho các quốc gia đang phát triển.","tournamentID":"3B01KdqnCVzQEVjKcHiT","topic":{"irw":{"check":true,"title":"International Relations/War"}},"id":"v5c6DsBcqeHx6Ewkl0qE"},{"tournamentID":"CBVZREYhjV5bhCHOuWjU","division":"","link":"","topic":{},"infoSlide":"HeLa is an immortal cell line used in scientific research. The line is deprived from cervical cancer cells taken from Henrietta Lacks, a 31-year-old African-American, who died of cancer on October 4,1951. The cells from Lacks’s cancerous cervical tumor were taken without her knowledge or consent. On average, 300 studies are done per month using the cell line.","language":"English","content":"THBT all existing HeLa cells should be destroyed.","round":"5","id":"v5fiQWI8r182oYRderIM"},{"infoSlide":"","tournamentID":"BXqPhfwak2R1kYHV48bp","topic":{},"round":"Open_Final","division":"","content":"THB that the Iraqi government should issue oil dividends to its citizens.","language":"English","link":"","id":"v6T1EwBqqtcaAlVbzQUh"},{"content":"This house supports, where possible, the loved ones (eg family, close friends) of victims of serious criminal offences being involved in the sentencing of the perpetrator (eg in consultation with the judge).","topic":{},"language":"English","round":"1","link":"","division":"","infoSlide":"","tournamentID":"Nzien6R9RXvOTrNMJsza","id":"v8RvcevYpESw1QrtFlqS"},{"topic":{},"infoSlide":"","tournamentID":"LHNbcjmFANvMo9zTZOWN","language":"English","division":"","round":"3","link":"","content":"THW employ asylum seekers as porters in train stations.","id":"v8fNz9RdycPw5Y14VWWK"},{"round":"1","link":"","language":"English","infoSlide":"","division":"","content":"TH supports a preference for mothers in custody trials.","tournamentID":"Ba2zBwHOYMuoyQZQbecz","topic":{},"id":"v8nEykSHyOfiXLdihJO1"},{"topic":{},"link":"","infoSlide":"","tournamentID":"1WET2zUA9uN6rpHTGR8k","language":"English","round":"2","division":"","content":"THW adjust development aid to countries where gay rights are violated.","id":"v8o59fYUPKKD92oTcPPS"},{"tournamentID":"rEUwN5dFZYjeXBNtp4NG","division":"","link":"","content":"THBT minority parents should shelter their children from the existence of racism for as long as possible.","infoSlide":"","round":"5","topic":{},"language":"English","id":"v9UnHlppSIBYyIUomnp1"},{"topic":{},"tournamentID":"i00RSzvK4b1TDEgnpFJd","infoSlide":"","division":"","content":"Chúng tôi sẽ ưu tiên tiêm vaccine Covid cho người trẻ thay vì người già ở các nước đang phát triển.","link":"","language":"Vietnamese","round":"4","id":"v9qsarMs9rZ7iwgEHWLv"},{"link":"","tournamentID":"8mQg9HgZBO4ebq8ubmRJ","language":"English","round":"Open_Final","content":"THW create a common history curricula for the entire European Union.","topic":{},"infoSlide":"","division":"","id":"vCe2BnZTIG6LKTHmfOx9"},{"round":"Open_Final","tournamentID":"MKOx1AvBmfWL7cHrRXg2","link":"","topic":{},"language":"English","content":"This House Believes That Asian education systems should actively promote the view that Asian culture is superior to Western Culture.","infoSlide":"","division":"","id":"vCumkGDw86R7tBpvujxw"},{"content":"Given the technology, THW, as a genius, use this technology to reduce its intelligence to become “normal”.","tournamentID":"MqWoP2HpVv77T14aPCqR","topic":{},"link":"","division":"","infoSlide":"","language":"English","round":"Open_Final","id":"vEMXV5mi3NqBNuQBmIFX"},{"round":"Open_Final","tournamentID":"1WET2zUA9uN6rpHTGR8k","division":"","topic":{},"infoSlide":"","language":"English","link":"","content":"TH supports the targeted/deliberate killing of Iranian scientists.","id":"vEXAT28MzOLJZPrfovcS"},{"division":"","infoSlide":"","round":"2","tournamentID":"99Ct9ORyddmNGYGfpDl7","link":"","topic":{},"content":"THBT states should actively try to break down internet censorship of foreign regimes.","language":"English","id":"vEXt8u1Y1cUJekzLgva4"},{"language":"Vietnamese","round":"Semifinals","link":"","topic":{},"infoSlide":"","content":"Chúng tôi phản đối các sản phẩm nghệ thuật và giải trí lấy các bệnh tâm lí làm nội dung trọng tâm.","tournamentID":"I4LkoGhDJmtXsINMJVjW","division":"","id":"vF88usatJcO0eddsYnbM"},{"division":"","link":"","infoSlide":"","tournamentID":"MSWulSxGMLEhqYJrBR62","language":"English","content":"THW make voting mandatory.","round":"1","topic":{},"id":"vFR9xAUkkv6666E9Xpxr"},{"round":"Grand Final","division":"","topic":{"fiction":{"title":"Fiction","check":true}},"content":"THW choose the job they are passionate about.","link":"","infoSlide":"Context: You are a talented, middle-class person in your early twenties about to start your career. You have the choice between a job in which you will make a lot of money and work long hours (e.g., investment banker, corporate lawyer, etc.) and a job which pays less but that you are more passionate about (e.g.: social worker, chef, teacher, small business owner, etc.)","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","language":"English","id":"vFjpG4cbmXO0H3qiFeeY"},{"infoSlide":"","tournamentID":"jfv01DUCOrtLcsyMO6qo","link":"","division":"","language":"English","round":"1","topic":{},"content":"THO participation awards.","id":"vH1xUrTl3OGTNvBJxyG9"},{"tournamentID":"zm3L9uKWbGV2QY1WRlcJ","division":"","infoSlide":"","link":"","round":"3","language":"English","content":"THBT the UN should offer large bounties for the capture of pirates and the destruction of pirate ships.","topic":{},"id":"vHPvVTC8zoDljVDT1cdG"},{"division":"","tournamentID":"macdlwUjYqFCGHKvQS20","content":"This House would abolish all government schemes that provide grants, tax-breaks or loans at preferential terms to home buyers.","infoSlide":"","language":"English","link":"","topic":{},"round":"1","id":"vHlADZK6KLRGJxreSFXx"},{"language":"English","round":"4","infoSlide":"","division":"","tournamentID":"KErVXbqRahyWD7ZB1Q1m","topic":{},"content":"In a world with superheroes, THW institute a superhero register.","link":"","id":"vHphC23h9oGCAWRnK7cG"},{"division":"","tournamentID":"QePDCf8cQ2AX4XfcvR3T","link":"","content":"EC preferiría unirse al Club de los 27 que vivir una vida anónima promedio.","round":"Spanish_Quarters","infoSlide":"","topic":{},"language":"English","id":"vHyX05PkvWRWsaIsqJ7C"},{"division":"","topic":{},"link":"","tournamentID":"bkOT9pwqHsKTlwricRHY","infoSlide":"","content":"TH would create a substantial salary for those who take on caretaker roles for family, friends or neighbours (DK vervangt het mantelzorgcompliment door een substantieel salaris).","language":"English","round":"Open_Final","id":"vI8aM194DGreLiLFBy0q"},{"division":"","infoSlide":"","content":"THR the dominant narrative that mainstream social movements should refrain from being antagonistic and aggressive, in pushing for changes/fighting against injustice.","round":"High School Semifinals","language":"English","topic":{},"link":"","tournamentID":"m6JzV67uYJSVBRpAbgL7","id":"vJIKtKabPBgnfJ2gHeot"},{"tournamentID":"eXqHjvQ9MTXYhyv8NeW7","infoSlide":"","topic":{},"round":"5","language":"English","division":"","link":"","content":"THBT federal and state governments should prioritize funding for early childhood care to the exclusion of funding for post-secondary education.","id":"vJOAOGiJdNE3hC1kyBko"},{"round":"5","language":"English","content":"THW ban corporate sponsorship of academic research.","division":"","tournamentID":"mUHCV4981T5cYALNdYBk","topic":{},"link":"","infoSlide":"","id":"vJrMdsJbzHNvgno2JtDh"},{"infoSlide":"","link":"","topic":{},"language":"English","tournamentID":"NYyJaJXo1SigW6G8Y1Lm","content":"This house supports two-party political systems over multi-party political systems.","round":"2","division":"","id":"vKUCArhvvMgVS0sXrrmb"},{"content":"THW introduce quotas of poor and rich in all schools.","topic":{},"round":"5","language":"English","link":"","division":"","infoSlide":"","tournamentID":"1V1INGo8OX49g8hUFTF3","id":"vLY0b9lcY1xfDpgLFKPZ"},{"tournamentID":"Aic5TDtU01Sp43Neh8N2","language":"English","infoSlide":"","link":"","topic":{},"round":"1","content":"Assuming a deal were offered, TH as Edward Snowden would take a short prison sentence in order to return to the US.","division":"","id":"vLqPIIz08jQsLR2LASQ4"},{"language":"English","division":"","content":"TH, as a public educational institution, would prohibit all school football programs due to the risks of CTE.","topic":{},"infoSlide":"","tournamentID":"axWwnyCM8L14pVHljukt","round":"5","link":"","id":"vLz1XqKA7mvy0GqCg8Me"},{"tournamentID":"L5MIrW7phE11xSIVutdB","link":"","topic":{},"division":"","round":"4","infoSlide":"","language":"English","content":"This house believes that the global Anglican church should split into two churches, rather than maintain a single communion.","id":"vMkJ41TaYy6OhfynIcxk"},{"link":"","language":"English","topic":{},"round":"Open_Final","tournamentID":"XBFpAL1r3TobjAN8vT20","content":"THW call a Constitutional Convention to address the problem of gun violence in America.","infoSlide":"","division":"","id":"vN1XHXGkeEp9f5krAwTX"},{"infoSlide":"","link":"","tournamentID":"1wIdZYeTVkyLU5yJfjda","content":"Should the debt limit on Länder be abolished?.","topic":{},"round":"4","division":"","language":"English","id":"vN3nLum9CSbfclN002BH"},{"tournamentID":"QH8qP4fqpVb4nMsZXwxw","content":"THW Allow convicts who are parents to raise their children in prison.","topic":{},"language":"English","round":"2","link":"","infoSlide":"","division":"","id":"vNrFJwiMAM4C2qMDSwOg"},{"content":"THP a world in which the dominant societal world-view is a realistic one rather than an optimistic one.","language":"English","division":"","link":"","topic":{},"infoSlide":"","round":"Open_Quarter","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","id":"vOZCzED3VeegHr0aToFY"},{"tournamentID":"X7PfztBaTR2KFk3oINtG","division":"","link":"","language":"English","topic":{},"infoSlide":"","round":"4","content":"THW allow asylum seekers to work.","id":"vOqaIW3I5mp0y3xzCs0X"},{"division":"","content":"THBT the Conservative Party should form an electoral pact with the UK Independence Party for the 2015 general election.","topic":{},"language":"English","round":"3","tournamentID":"LRHTkoiYpBfYWWuS1rtT","infoSlide":"","link":"","id":"vR3ydrpXpd6hNmsvwa8b"},{"tournamentID":"37eWQ7OoHqsPgaN53lHV","content":"Chúng tôi phản đối sự phát triển của các hoạt động xã hội của học sinh-sinh viên.","topic":{"education":{"check":true,"title":"Education"}},"link":"","infoSlide":"","language":"Vietnamese","division":"","round":"","id":"vRDKPcqcQiDR9BOIzBN4"},{"round":"3","tournamentID":"I4LkoGhDJmtXsINMJVjW","infoSlide":"","link":"","content":"Trong các khu vực với trình độ học vấn thấp, chúng tôi tin rằng hướng đi chung của các tổ chức giáo dục từ thiện nên là tập trung nguồn lực vào việc tối đa hóa tiềm năng của học sinh xuất sắc thay vì giúp đỡ học sinh học kém nhất.","topic":{},"language":"Vietnamese","division":"","id":"vRdpT6XEG5jUAMBAZ0pz"},{"infoSlide":"","round":"2","content":"THW create public housing for the poor in wealthy areas.","link":"","tournamentID":"hoxSwibt3yivmk88aoAD","division":"","topic":{},"language":"English","id":"vRlTPyicaiWOCa3OESWO"},{"round":"ESL_Semi","division":"","tournamentID":"DFNWZhapl7SHDFBrFsMi","topic":{},"infoSlide":"","language":"English","content":"This House Regrets the perception that soldiers are heroes.","link":"","id":"vSQSe5xxdbU2uREAKyf5"},{"language":"English","round":"Open_Semis","infoSlide":"","division":"","topic":{},"content":"THW grant the ECB the right to limit member country’s sovereign debt.","link":"","tournamentID":"tnPBotxO7gOOKcyCXAUw","id":"vSfSBgVnbZMpFM7TqQv3"},{"division":"","round":"1","tournamentID":"sFRIEYyxie6GRmJwElmF","infoSlide":"","language":"English","content":"THW abolish the International Statute of Wizarding Secrecy.","topic":{},"link":"","id":"vT7DsPsrKUUzxonG2TIt"},{"topic":{},"round":"1","tournamentID":"5ETrS816OeSAWdPhWEHf","content":"“THW cut all foreign aid in times of recession”.","infoSlide":"","link":"","division":"","language":"English","id":"vTOWR5b20fWeHtfwVJxk"},{"link":"","content":"THR the glorification of startup culture.","language":"English","topic":{},"tournamentID":"pp2oK2CPkxitjQPpwO4o","division":"","infoSlide":"","round":"Open_Semis","id":"vTVIC2cO9Uz5NxoeQpKt"},{"content":"That the US should escalate its ‘maximum pressure’ campaign against Iran.","infoSlide":"","round":"3","tournamentID":"XL594Q2oZbvHmfmYKFvT","topic":{},"language":"English","division":"","link":"","id":"vTWUCsYnUmcJboipFvg2"},{"infoSlide":"","round":"2","link":"","language":"English","tournamentID":"FBVfHrOa3NYALcBMtKIC","topic":{},"division":"","content":"This house believes that the state should fund the identity change, including changing their legal name and physical appearance, of infamous prisoners upon their release.","id":"vTZ81aQccpYM54GfKCeJ"},{"round":"1","infoSlide":"","link":"","language":"English","content":"THW ban the circumcision of males under the age of 18.","tournamentID":"x0FqHVU6TNo1z8egQZct","division":"","topic":{},"id":"vUlvuVrHWPrUVvSqFLvx"},{"language":"English","topic":{},"infoSlide":"","round":"3","content":"THW fully replace agriculture and fishing with stem cell production to produce food.","tournamentID":"7lMrN2aiwSzD5rzPFwHz","link":"","division":"","id":"vWGuTwMoxA0ISLWHdbva"},{"division":"","tournamentID":"DTutOgCItM4x30SyVavv","infoSlide":"","content":"In sanctuary cities, THW grant undocumented immigrants the right to vote.","topic":{},"round":"Open_Octa","link":"","language":"English","id":"vWdvjTgkL3RWh8gZu4Ye"},{"content":"THBT India should seek prompt de-escalation, even at the expense of territorial concessions, in relation to China in the Sino-Indian conflict.","tournamentID":"I5iTcVABscgCPPKzr8Oa","link":"","round":"Open_Quarters","division":"","topic":{},"language":"English","infoSlide":"","id":"vWrE2TXeZGVu7HVpVqdw"},{"infoSlide":"","link":"","content":"TH, as a police officer in the United States who witnesses a minor non-violent crime being committed by an African American individual, would refrain from arresting that individual - Grand Final.","tournamentID":"nXN2yUG7soxwCp4xidzj","round":"Open_Final","division":"","language":"English","topic":{},"id":"vWx6Pl0qLVFh29GAHhk1"},{"link":"","topic":{},"content":"THW implement blind voting for general elections (For the purposes of this debate, \"blind voting\" refers to a system where voters cast their votes for various policies, and a candidate is matched to them based on their preference).","infoSlide":"","tournamentID":"EpANk5V3VQNFWagnktFN","division":"","language":"English","round":"2","id":"vWy7LO6JMC8K0A0sd1oG"},{"link":"","content":"THW punish natural or legal persons who are accused of cultural appropriation.","round":"6","infoSlide":"","topic":{},"tournamentID":"axWwnyCM8L14pVHljukt","language":"English","division":"","id":"vaD7x9YJ7s1b1uFANF38"},{"topic":{},"division":"","tournamentID":"9wxPRUMGICTUrE7xSaCG","infoSlide":"","content":"THBT coming cuts in USA military spending will make the world a better place.","language":"English","link":"","round":"Open_Final","id":"vb0PT91r6S0L69EdyEcv"},{"round":"1","topic":{},"tournamentID":"6CH8DHWUbQKOjMDFTgFX","division":"","language":"English","link":"","content":"THBT Bert and Ernie should get married.","infoSlide":"","id":"vbejAiXRw8UxVA3IScut"},{"content":"THBT the NFL should issue automatic lifetime bans to players convicted of domestic violence or sexual assault.","tournamentID":"LczIO0anMv6dKnbpRYYr","infoSlide":"","topic":{},"round":"6","division":"","link":"","language":"English","id":"vcvKceC29JDPWZkjLr1E"},{"round":"Open_Semis","division":"","tournamentID":"DNe0c1xNBVoG02MsO66g","content":"THBT the media should not comment on the electability of politicians.","language":"English","topic":{},"infoSlide":"","link":"","id":"vd8uPpHPbPESqBrdWx6V"},{"tournamentID":"t2juKb62UT5HJ0kruUAw","division":"","language":"English","content":"THW abolish taxes on alcohol and cigarettes that go beyond normal sales taxes.","round":"5","infoSlide":"","topic":{},"link":"","id":"vdN0aa2LAo8MEZC2AwdX"},{"division":"","infoSlide":"","topic":{},"content":"When police are put on trial for alleged instances of a violent wrongdoing, this House would decrease the burden of proof to the balance of probabilities.","link":"","tournamentID":"JLyF99Vg0hk3hhYCwEgp","round":"1","language":"English","id":"ve4i8a7LX0oP7DYmt9l2"},{"division":"","language":"English","tournamentID":"e3m3vjjIT1UO4munSqvD","infoSlide":"","link":"","round":"3","topic":{},"content":"THR the abandonment of the Sunshine Policy.","id":"veLAilly1cKmgF4kt221"},{"content":"TH, as a feminist parent, would deliberately undermine its child's gender.","infoSlide":"","round":"2","topic":{},"division":"","language":"English","tournamentID":"bmpPSwtqn5KEm26j6EB7","link":"","id":"vexBhcBbcBiGZftFIYT3"},{"language":"English","link":"","topic":{},"division":"","content":"This house regrets the rise of Saudi Arabian Crown Prince Mohammed bin Salman.","infoSlide":"","tournamentID":"QDGMrdrzlFCxVT5WcqNn","round":"Open_Quarters","id":"vexa0t64djAAkzyf1xwW"},{"topic":{},"language":"English","round":"Open_Semis","link":"","division":"","tournamentID":"RA6EqhjHK7wF8NHgzThB","infoSlide":"","content":"THBT current Generation Germans should not pay taxes or any other form of reparations for Nazi atrocities.","id":"vf9OuYjMrAT56QrpwclM"},{"tournamentID":"v3Bq7DLUeCcPyvQZjJbj","link":"","content":"THR the presence of “career politicians”.","division":"","infoSlide":"","topic":{},"language":"English","round":"1","id":"vgwI7zKfaX0GV2zTEdDu"},{"infoSlide":"","topic":{},"tournamentID":"F966uo3Po2bRFWfFesTz","round":"5","division":"","content":"THBT school systems should build curricula in a way that emphasizes national pride.","language":"English","link":"","id":"vhK4ujYvdmnL3OuxFd6D"},{"tournamentID":"0zMaoLN7qmzWGSYIzhjh","topic":{},"round":"3","division":"","language":"English","link":"","infoSlide":"","content":"TH regrets the portrayal of the developing world in the fundraising campaigns of charitable organisations.","id":"vihgsZeB5ladhCcwNcAU"},{"topic":{},"link":"","division":"","tournamentID":"vx330P6CYx2QKwkFUJiX","content":"THW ban private companies from choosing political positions and promoting them.","round":"Open_Semis","infoSlide":"","language":"English","id":"vjCtkMZAaPOXpJDyiOEd"},{"language":"English","link":"","infoSlide":"","topic":{},"content":"THBT Saudi Arabia should limit participation in the Hajj to the citizens of countries that are committed to taking direct action against IS.","tournamentID":"DFNWZhapl7SHDFBrFsMi","round":"ESL_Final","division":"","id":"vjTMFVSZwQ8MXsYdkd7h"},{"tournamentID":"VPUCPVj9FHFW0uzJinv0","infoSlide":"","language":"English","topic":{},"division":"","content":"This house believes that the UK should abolish it’s nuclear arsenal.","link":"","round":"2","id":"vk5igx3tNqQqjSFd6UPb"},{"topic":{},"language":"English","content":"Does Snowhite need only one Dwarf?.","link":"","tournamentID":"Awa41MBby9wm71OwFQyo","infoSlide":"","division":"","round":"2","id":"vkFU7C9JrCJuFnoZnPpf"},{"language":"English","topic":{},"infoSlide":"","link":"","division":"","round":"Open_Semis","content":"THW ban the colonization of space.","tournamentID":"MIGnM2R39W5ZblVNkRTp","id":"vlAIohhWBEqPeV03sEcO"},{"division":"","topic":{},"tournamentID":"h2z0CGY0CzqfLCKUb3wz","content":"THBT individuals should not be permitted to represent themselves at trial.","language":"English","round":"7","link":"","infoSlide":"","id":"vlHa4HqvuVaVtI7Yl810"},{"round":"B3","topic":{},"language":"English","tournamentID":"zppT86F7lAE0Gpp7tWYo","infoSlide":"","content":"THBT we should strive for immortality.","division":"","link":"","id":"vlhQgGVFvgJ3X3Ebf7OM"},{"link":"","content":"THW subject foreign political contributions to greater restrictions than domestic contributions.","language":"English","division":"","topic":{},"tournamentID":"gsX4dlvvsr6lcKP3eM2T","infoSlide":"","round":"6","id":"vli5ADvD0oPoSZT69V30"},{"division":"","infoSlide":"","language":"English","content":"THW aggressively crackdown on megachurches.","link":"","round":"","tournamentID":"nALUKfkpmOnWnQCzecru","topic":{"religion":{"check":true,"title":"Religion"}},"id":"vlmt74zfTQBQjquDz0Lx"},{"tournamentID":"pFBjdI3lKCaS5TpjBKVP","content":"THW ban privately contracting the services of superheroes by individuals or companies.","division":"","topic":{},"link":"","round":"4","language":"English","infoSlide":"","id":"vnYehL9ofWyDNBu1kW7Q"},{"infoSlide":"","round":"","tournamentID":"37eWQ7OoHqsPgaN53lHV","language":"Vietnamese","division":"","topic":{"education":{"check":true,"title":"Education"}},"link":"","content":"Chúng tôi sẽ xóa bỏ các hệ thống xếp hạng đại học.","id":"vo1U4UjdS0WtRGGL8ytK"},{"round":"Open_Finals","tournamentID":"wP5I8OZ057B9BO0Js6MR","division":"","content":"In cases where individuals are convicted of leaking state secrets, THW allow their convictions to be nullified by a national referendum.","link":"","topic":{},"language":"English","infoSlide":"","id":"vq04i8OdH9TxAiFeACRV"},{"round":"4","tournamentID":"dgRU54McMXqo1MXISAFt","link":"","division":"","infoSlide":"","content":"THW allow indigenous groups to veto the development of environmentally disruptive projects on their territory.","language":"English","topic":{},"id":"vqPIcpR4PF5MQOlI8Lj7"},{"language":"English","division":"","round":"Open_Semis","topic":{},"content":"This house supports student unions who disaffiliate controversial student groups.","link":"","infoSlide":"","tournamentID":"bxhnmh9CZq21XJcRU2BX","id":"vqpUB3ImnDid8aLudpGh"},{"tournamentID":"wLO2B4MufJ4R3qOzUGM8","round":"4","content":"This House would prefer a world where memory is permanent and infallible.","language":"English","topic":{},"infoSlide":"","link":"","division":"","id":"vrDyXRgHo1wWqHRUsAJo"},{"division":"","infoSlide":"","content":"The availability/sales of pyrotechnics/fireworks should be limited (This article and this one give appropriate background info).","tournamentID":"y6twZcPBW4VtQsAZQ3Mw","link":"","language":"English","topic":{},"round":"4","id":"vs8cJXJnhcRJ1PSLQ30W"},{"language":"English","division":"","link":"","tournamentID":"etTxnyhPGMITmcNf2DkM","infoSlide":"","topic":{},"round":"2","content":"THW give the members of every political party the right to determine the voting behaviour of their deputies.","id":"vtK44ogontl0Xfv19kbH"},{"division":"","content":"THW heavily restrict the number of students that get education overseas.","link":"","topic":{},"infoSlide":"","round":"1","language":"English","tournamentID":"KTeMrrauFpZYvjtBUkLJ","id":"vtZTVw1V8TJWfatQEUK6"},{"content":"Assuming that no other life existed in the galaxy, THW prefer a humanity that collectively expands and colonizes other planets to one that preserves and adapts to the Earth.","division":"","link":"","round":"Novice_Final","tournamentID":"PGbz2bx1wifAEJU64jdo","language":"English","topic":{},"infoSlide":"","id":"vtahmZMeIJOc5dQ7LEJV"},{"topic":{},"division":"","infoSlide":"","round":"Novice_Final","tournamentID":"xixMAepJqW9TAZSYVdsR","language":"English","content":"THW reallocate public school funding to create a voucher program for the poorest 10% of American households.","link":"","id":"vtrY33EK082W2eRMeyAg"},{"tournamentID":"zkcJOcuUSlxmaS6nsMl7","division":"","round":"1","language":"English","link":"","topic":{},"infoSlide":"","content":"Should the Gauls end their resistance to the Romans?.","id":"vuDW8rOgvVcKxX5OWMCy"},{"language":"English","link":"","content":"THW cap every company's highest salary at 10x the lowest salary within that company.","infoSlide":"","topic":{},"round":"1","division":"","tournamentID":"9STOHMmWtLnanVavJzB2","id":"vuZXtsCyFGxGPObFhizU"},{"link":"","tournamentID":"bmpPSwtqn5KEm26j6EB7","content":"THW legalise the private sale of organs.","infoSlide":"","division":"","round":"1","topic":{},"language":"English","id":"vvMDK83L0oqe0FZnd6Z6"},{"topic":{},"tournamentID":"RlGrdg8aVMD5XQVuPN3W","infoSlide":"","round":"5","content":"THW not undress.","link":"","division":"","language":"English","id":"vvZRFrukhb1oRvRMJYDU"},{"topic":{},"infoSlide":"","language":"English","link":"","round":"1","content":"TH Welcomes the live-streaming of war.","division":"","tournamentID":"ZetjyvhBc3exk1eBvmTd","id":"vvvoc2xFb4vUhc3zZNuM"},{"language":"English","content":"THBT European officials should not have released the fact that the downing of flight 4U9525 was deliberate.","division":"","round":"Open_Final","topic":{},"link":"","tournamentID":"H4i4RR7JXk14xDRe7PUX","infoSlide":"","id":"vwUDHoJ1kJlVii7Bb1Nd"},{"division":"","topic":{},"content":"Given the technology, THW erase society's memory and evidence of the criminal past of former convicts after their release from prison.","link":"","infoSlide":"","language":"English","round":"7","tournamentID":"YF6iuqxO6eUISnAz4iMp","id":"vwev5ddCvsOwByNl3w8s"},{"division":"","infoSlide":"","tournamentID":"NyCp19C1AzxXzCUQLio8","topic":{},"round":"1","language":"English","content":"Should there be a minimum BMI for models?.","link":"","id":"vwlt3Eg6mWPPul4NaAV5"},{"infoSlide":"","division":"","content":"Assuming that technology existed that would allow one to transfer years of their natural life (the time one would live, if not cut down unnaturally by disease or accident.","tournamentID":"roH9ICCjwscIePFGM61P","link":"","topic":{},"round":"5","language":"English","id":"vxLlueQ6SqrRTgYpzlmG"},{"language":"English","round":"Novice_Final","infoSlide":"","division":"","topic":{},"content":"Assuming support from international activists, THBT indigenous groups should advocate for a boycott, divestment, and sanctions movement against Canada to fight its ongoing discrimination against Indigenous peoples.","link":"","tournamentID":"4qwhZS2zOsdzzkyQlcaW","id":"vxM9KZWDkRmnbA7qkY2T"},{"division":"","language":"English","topic":{},"content":"THW ban advertising targeted at children.","infoSlide":"","tournamentID":"ehtU8lykIOIyhZiaczym","round":"1","link":"","id":"vxktZnj8xcRlhk1Q6jiw"},{"round":"","topic":{"politics":{"title":"Politics","check":true}},"link":"","content":"Chúng tôi tin rằng xã hội không nên tôn vinh những nhân vật cách mạng bạo lực và hiếu chiến.","infoSlide":"","division":"","language":"Vietnamese","tournamentID":"mNwitMoNsjWupgwG8pR5","id":"vxmbybSi0cWWXWTNAFKE"},{"tournamentID":"zppT86F7lAE0Gpp7tWYo","language":"English","infoSlide":"","topic":{},"round":"D5","content":"THBT banking institutions are more dangerous to our liberties than armies.","link":"","division":"","id":"vyNG1rJgLmXkvBod2F8L"},{"round":"3","infoSlide":"","tournamentID":"IrZL7r0XTyBpGGSAYVYR","topic":{},"language":"English","division":"","link":"","content":"THW ban the use of photoshop in magazines and advertising.","id":"vygWydIgAtdjzyVWUeyb"},{"round":"5","division":"","link":"","infoSlide":"","tournamentID":"wuDBbL4uYIZXIthzVv4V","topic":{},"language":"English","content":"THBT war criminals should be put on trial in their home countries.","id":"vyrDUJvPfv4Z4s2TIxoK"},{"tournamentID":"d2f6RXp0B99iQq4RFZeE","link":"","language":"English","topic":{},"infoSlide":"","content":"TH, as a feminist, believes that Kim Kardashian is a force for good.","division":"","round":"1","id":"vz0ZlKt4iUtxT5x3OmL9"},{"division":"","topic":{},"tournamentID":"9sZiZ9uPaGSIYSFdM4VZ","infoSlide":"","content":"THW ban money from Saudi Arabia to promote Islam in the EU, as long as other religions are banned from that country.","round":"4","language":"English","link":"","id":"vzMKoj7fUVQHhgiMm4qZ"},{"tournamentID":"HtADLvDpWQsx5qtLh5A9","topic":{},"division":"","link":"","content":"THBT in areas of socio-economic deprivation, schools should train students in vocational skills to the exclusion of the liberal arts.","language":"English","round":"5","infoSlide":"","id":"vznTZoquUbM28ZF0SG45"},{"link":"","topic":{},"round":"5","content":"THBT governments should tax individual income out of labour (paid salary) significantly less than individual's income generated out of capital (which includes inheritance, real estate, stock portfolios, etc.).","division":"","infoSlide":"","tournamentID":"TPp4G8lciZrkipphcyZG","language":"English","id":"w0jS4pRcU65hgL6eCxOI"},{"link":"","content":"THW only subsidise art that is understandable to average voter.","topic":{},"round":"5","infoSlide":"","language":"English","tournamentID":"4ptLj1Lmq40xJg12oRVd","division":"","id":"w1jVe3AY2uqu5BnVj8eM"},{"tournamentID":"mf3XudZleydnsr0lEvkg","round":"5","language":"English","link":"","division":"","infoSlide":"","topic":{},"content":"THW establish a formal embassy in Taiwan.","id":"w2Kockl9vQHfdgQubM4J"},{"content":"THW allow high-ranked army officials, when in agreement, to reverse decisions made by democratic governments regarding military missions.","tournamentID":"Xt0UV62VgaP360hvHqWG","language":"English","topic":{},"round":"2","division":"","infoSlide":"","link":"","id":"w3Z6YeyX9Gudj4Fszhem"},{"content":"THW not use public money on life-extending medical care for people over a certain age.","tournamentID":"aT0uKXAE6J8EslDVKzO1","round":"5","topic":{},"infoSlide":"","division":"","link":"","language":"English","id":"w3sat4YZ0BP5VDap82oC"},{"tournamentID":"2gsOERqtXqSETJffXbnj","content":"THP a world with open borders between nations.","round":"Grand Final","topic":{},"division":"","language":"English","link":"","infoSlide":"","id":"w4iBcT4rX9sVK5qOO5P6"},{"link":"","division":"","infoSlide":"","round":"Open_Final","language":"English","tournamentID":"FaXJZrMIEColDcqtOmli","topic":{},"content":"THW require all 18-year-olds (in Western Liberal Democracies) to go on a Rumspringa.","id":"w4jUHSgo11hJEHET5K0y"},{"division":"","language":"English","round":"Open_Octa","topic":{},"content":"THW weigh shareholder votes in line with the length of time their shares have been held.","tournamentID":"Pr7RhJp1TWbTZsqRvQt4","infoSlide":"","link":"","id":"w4wjfUQro0kvghCqWXeJ"},{"division":"","tournamentID":"pgslzxqwnT5Ei6UMGh69","language":"English","topic":{},"content":"This House Would hold a second binding referendum on whether the UK should leave the EU.","round":"2","link":"","infoSlide":"","id":"w5gICbL9NHWOHHn7eCek"},{"content":"THW REPEAL ALL NON-COMPETE LEGISLATION.","topic":{},"language":"English","round":"2","infoSlide":"","link":"","division":"","tournamentID":"YxG2TWeoQ8BT0rpxmfxT","id":"w5rk0S9AAjbw6T5lj1kI"},{"language":"English","round":"4","content":"THS Prohibit the advertisement of prescription medicine to the general public.","division":"","link":"","infoSlide":"","topic":{},"tournamentID":"kwsuFgaQ5lYbaXVGrGal","id":"w6FtG54Eo1i8XuR9WcoE"},{"link":"","round":"5","topic":{},"tournamentID":"wn4DAqBcGTWBviyQc0CR","language":"English","division":"","infoSlide":"","content":"THW make development aid conditional on recipient states adopting a one-child policy.","id":"w6ZjFHVjAeVAlZEtbCCZ"},{"topic":{},"round":"Open_Final","division":"","content":"THP a world without a belief in free will.","tournamentID":"bH0N4QlKzNNQ8zL97OyO","link":"","infoSlide":"","language":"English","id":"w6ZwuKktAnYl7rqmRgSg"},{"language":"English","link":"","round":"Open_Octa","division":"","content":"THBT the working class should reject Bernie Sanders as the face of the working class movement for being a part of the 1%.","topic":{},"tournamentID":"H2Xg2NvZoEwZtgc8tzmz","infoSlide":"","id":"w6xHiYx65ZnlzZxylayI"},{"topic":{},"tournamentID":"4qwhZS2zOsdzzkyQlcaW","language":"English","infoSlide":"","content":"TH as a socially conscious prominent management consultant firm would accept cases for foreign governments with ongoing human rights violations.","round":"Open_Octos","division":"","link":"","id":"w7lxLVCJBU3gu8U7f617"},{"infoSlide":"","tournamentID":"FOAZQcGDy003yv7fx3AI","division":"","round":"Semifinals","language":"Vietnamese","content":"Chúng tôi, với tư cách phong trào nữ quyền, phản đối việc những người nữ giới có địa vị xã hội đứng lên đại diện phong trào.","topic":{},"link":"","id":"w9sSq5UWdwoj1qcNBq4o"},{"tournamentID":"7lMrN2aiwSzD5rzPFwHz","round":"4","language":"English","division":"","topic":{},"infoSlide":"","content":"THW require priests to report confessions that lead to criminal convictions.","link":"","id":"wAJNc5dz5wPBcD7xPfZh"},{"infoSlide":"","division":"","content":"This House Rejects the desexualisation of queer activism.","round":"5","language":"English","topic":{},"link":"","tournamentID":"TXUiH5ezPBItq39Het98","id":"wARdgwkPERLCsnltwNFg"},{"tournamentID":"zZRXGDm7RC8LjYJKzubm","language":"English","topic":{},"link":"","round":"1","content":"THS ecoterrorism.","division":"","infoSlide":"","id":"wCe06seXOf0GVt5hsmMq"},{"tournamentID":"Hq4qmpVpWAzn16SzuUU8","topic":{},"language":"English","division":"","infoSlide":"","link":"","round":"4","content":"Given the technology was available, THW allow the sale of personality traits and characteristics (such as IQ, musicality and determination).","id":"wDC9h3g9uzdubBZGKm3s"},{"division":"","tournamentID":"qLVUbjlIT84ro50ixBwk","content":"THR the Narrative of the American Dream.","infoSlide":"","topic":{},"language":"English","link":"","round":"1","id":"wDjsdl1TUfOrvDq6Z7oW"},{"content":"THW Never hold major sporting events in countries with ongoing human rights violations.","tournamentID":"4gQdvZTMKBCThKxmhfmU","link":"","language":"English","round":"5","division":"","infoSlide":"","topic":{},"id":"wEhGYfeIrv1CbLf179wW"},{"link":"","round":"3","topic":{},"language":"English","infoSlide":"","content":"THP a world where the notion of the afterlife is based on karmic balance and not divine mercy.","division":"","tournamentID":"djnlK5jZ2kM6hDrC6E9d","id":"wFAq6WeOXe4msAJYOhgr"},{"infoSlide":"","round":"8","content":"THBT the transgender movement should distance itself from the feminist movement - Round 8.","topic":{},"language":"English","link":"","division":"","tournamentID":"Ryhdb4JOJYP96e5oa49b","id":"wG6aPdVLgTfsz9134jgm"},{"language":"English","division":"","link":"","infoSlide":"","topic":{},"content":"This House would prefer a world the average person experienced substantially less intense emotions.","round":"Novice Grand Final","tournamentID":"5SXUtPGKmOtgXxWouFAs","id":"wG9lz3V0UHlXxQDzKcBo"},{"topic":{},"round":"4.1","link":"","content":"THW reallocate names randomly.","tournamentID":"BXqPhfwak2R1kYHV48bp","infoSlide":"","division":"","language":"English","id":"wGn2mFK5rQmRXpGhwSI5"},{"language":"English","tournamentID":"XL594Q2oZbvHmfmYKFvT","division":"","round":"Open_Quarters","topic":{},"link":"","infoSlide":"","content":"That we regret cancel culture within progressive movements.","id":"wGntspO5nXsAlrmO2sLg"},{"link":"","content":"THBT governments should strictly regulate construction and renovation in order to preserve historical architecture (buildings, parks, public spaces etc).","infoSlide":"","round":"1","division":"","language":"English","topic":{},"tournamentID":"lpOfAtUfJZtb1VnGzV0G","id":"wIFmyxCw6ZSMdjkagjX0"},{"infoSlide":"","division":"","link":"","content":"THBT jobs that are deemed to be of moral value or societal importance should have their wages set by the state.","tournamentID":"zUT5H7Cgh7l0a0sJSIba","language":"English","topic":{},"round":"Open_Semis","id":"wJT34TRnDFCcuelHpeNd"},{"round":"3","language":"English","content":"This house regrets the social perception that ADHD is an illness, as opposed to a personality trait.","topic":{},"division":"","tournamentID":"y6YpD63Uuk3t3fbBC7Tk","infoSlide":"","link":"","id":"wKD9Tf73c7AClntYBapg"},{"tournamentID":"wLO2B4MufJ4R3qOzUGM8","division":"","round":"Open_Semis","infoSlide":"","content":"This House believes that the liberalization of sexual behaviour prompted by the sexual revolution fails women today.","link":"","topic":{},"language":"English","id":"wKdsE2cDmrZcQXpbgeNt"},{"language":"English","round":"3","infoSlide":"Hypothetically, in 10 years, it would be possible to send a manned mission to Mars. However, the crew wouldn't be able to return alive.","tournamentID":"6CH8DHWUbQKOjMDFTgFX","content":"THBT NASA should fund suicide missions to Mars.","topic":{},"division":"","link":"","id":"wMpu3fieisYhXiE0HmWT"},{"language":"English","topic":{},"division":"","link":"","infoSlide":"","content":"THBT non-western countries who were once colonized, when fabricating the material culture of national identity (anthems, street names, holidays, flag, etc.) should privilege pre colonial history and notions of indigeneity over themes of anti colonial resistance.","tournamentID":"92dIEXeOXUVvlcFeGCIr","round":"Open_Semis","id":"wNdgCyj7EdwcTvpPwItl"},{"division":"","topic":{},"infoSlide":"","tournamentID":"oFJV1Acc1Gr7t6B77LSK","content":"This House Would give victims of crimes significant power over sentencing.","round":"2","link":"","language":"English","id":"wO1Pubq7dRfwdOK2CxJ4"},{"topic":{},"link":"","round":"6","language":"English","tournamentID":"x0FqHVU6TNo1z8egQZct","content":"TH, upon discovering irrefutable proof that God does NOT exist, would use a fail safe system to destroy the proof and hide it from any human’s knowledge.","division":"","infoSlide":"","id":"wO61WzYjI1qKwsuCqsrF"},{"content":"THBT publicly funded universities should be required to reduce enrolment in degree programs within their university that have statistically poor employment outcomes (same as EFL_Quarters).","link":"","topic":{},"language":"English","tournamentID":"0bpNzjTgN71TZQEkHTak","round":"ESL_Quarters","division":"","infoSlide":"","id":"wOjfOWwPd2ZRvCakTByc"},{"language":"English","link":"","content":"THBT the state has a duty to provide the long term unemployed with lasting employment which pays at least the minimum wage.","round":"Open_Quarters","tournamentID":"JJmcUH5Gil0nuJObmDP8","infoSlide":"","topic":{},"division":"","id":"wOnabSFACEd8vpp4HzrY"},{"language":"English","content":"Greenpeace should be banned.","infoSlide":"","round":"Open_Final","link":"","topic":{},"tournamentID":"h373wn3dFw9UcWDcJpyy","division":"","id":"wP88jVb37Ihelsshcl7L"},{"link":"","round":"3","content":"THW ban the depiction of the Prophet Muhammad (Peace Be Upon Him).","infoSlide":"","tournamentID":"Sdm6UfNcXB7Ppj4BkdLe","division":"","language":"English","topic":{},"id":"wPnxc95hJIqsXPnpJjxG"},{"tournamentID":"hrSRQu49cq5gHsXJLBgQ","round":"Open_Semis","topic":{},"link":"","language":"English","division":"","content":"THS the political unification of Africa.","infoSlide":"","id":"wPs8pgk5Y1HHGtcVubM9"},{"round":"2","infoSlide":"","language":"English","tournamentID":"JJmcUH5Gil0nuJObmDP8","division":"","content":"THW ban the paying of ransom insurance in the case of kidnapping.","topic":{},"link":"","id":"wPyaNXInmj29vhPeIpXl"},{"tournamentID":"uEekEeJIfFAC4OJWJglf","round":"Novice_Final","division":"","language":"English","infoSlide":"","content":"THW ban religious charities from proselytising in the developing world.","topic":{},"link":"","id":"wQPk5ed3fNG9aIwivpDs"},{"tournamentID":"53fI8Yf0j74CAnSOjn9g","infoSlide":"","link":"","round":"1","division":"","language":"English","topic":{},"content":"THW ban college entrance exams - for example: ACT, SAT.","id":"wRuXm6LwFTor6AJSPCUA"},{"round":"Open_Semis","infoSlide":"","division":"","topic":{},"language":"English","content":"TH would eliminate the Catholic Church on a global level (the Church’s global governing level?).","link":"","tournamentID":"V8KRgdahxIEUYFHrRWYb","id":"wTR9w5Rup3zCYyaJZ934"},{"tournamentID":"bmpPSwtqn5KEm26j6EB7","round":"4","division":"","language":"English","content":"THB that it is morally permissible to target civilians in times of war.","link":"","infoSlide":"","topic":{},"id":"wU4sukibyJck3Eu4XXYw"},{"round":"Grand Final","language":"Vietnamese","topic":{},"infoSlide":"","division":"","tournamentID":"FiF24Yc0spiBkvTxiYwD","content":"Chúng tôi, với tư cách người Việt Nam, sẽ ủng hộ các nền tảng xem phim trong nước (Galaxy Play, Pops, FPT Play, ...) thay vì Netflix.","link":"","id":"wUJO764vooj0m4eTLl7q"},{"tournamentID":"XnmecTVfWWNVfWZaANER","topic":{},"link":"","content":"THBT foreigners should not be allowed to own land in developing countries.","language":"English","division":"","round":"Quarterfinals","infoSlide":"","id":"wUJvHOvCDeSdkLJN19Cf"},{"content":"This house believes the West should recognise the Dalai Lama.","topic":{},"language":"English","round":"Open_Octos","infoSlide":"","tournamentID":"t2juKb62UT5HJ0kruUAw","division":"","link":"","id":"wUKKd5rBAww0ILaqqtFL"},{"content":"THBT military conscription (aka involuntary draft) should be considered a war crime.","language":"English","infoSlide":"","tournamentID":"C4TfAdkoNgavFucgidJK","topic":{},"link":"","round":"1","division":"","id":"wUrBHdhn8km3sGvpNOs5"},{"language":"English","content":"THBT developing nations should enshrine legally actionable socioeconomic rights.","round":"6","tournamentID":"G40265rxZRrwSbZ3fQSJ","topic":{},"division":"","infoSlide":"","link":"","id":"wUrD40CS0UcfvSdsFGmv"},{"language":"English","link":"","division":"","content":"TH prefers a world in which every individual is perceived to have equal access to a deeper connection with religious deities (as opposed to e.g. religious leaders being perceived to have more such access).","topic":{},"infoSlide":"","tournamentID":"0anPdjjejinL3DGvB4L1","round":"ProAm_Final","id":"wVCsVnWH61urQysN6XQx"},{"infoSlide":"","link":"","topic":{},"round":"4","division":"","tournamentID":"jkJhYCzI3XvX3Zgm0Ivc","language":"English","content":"THW require all teams participating in international football competitions to have an equal representation of both sexes.","id":"wVSaVCfYcywLsOytliYd"},{"infoSlide":"","tournamentID":"mXeF4ypkhHofmXrxLWxA","division":"","language":"English","content":"This house regrets the rise of Saudi Arabian Crown Prince Mohammed bin Salman.","topic":{},"round":"Open_Quarters","link":"","id":"wWOYq8pvBMJi0K4Y17HG"},{"infoSlide":"","link":"","tournamentID":"7xqpYA72Sruch4lr5Uzj","language":"English","topic":{},"round":"ESL_Final","content":"THB that it is morally legitimate for Occupy Movement to use violence to undermine capitalist institutions.","division":"","id":"wWrVFJBxpBUCZIB8sWWl"},{"round":"2","division":"","tournamentID":"LjEl8Sog63zZMpDhsInz","infoSlide":"","topic":{},"link":"","language":"English","content":"You are a single woman in her twenties. Sleeping with your boss would probably significantly advance your career. THW do it.","id":"wWtKuvTuCNrlwnIFHeD7"},{"link":"","division":"","infoSlide":"","language":"English","topic":{},"content":"THBT, when allocating resources to their children, working class families should allocate most of their resources to support the most talented child in the family.","round":"Schools_Final","tournamentID":"nKWTDNECNNvbMxNcdVJM","id":"wXOZOt0zBl2eOnW9nORE"},{"tournamentID":"NbIgaSiRmXdh3BAZ88Vm","division":"","infoSlide":"","link":"","content":"TH supports filial responsibility laws.","language":"English","round":"2","topic":{},"id":"wXotnAWsP1ScnrQSToVq"},{"tournamentID":"yDUOVgl6qLMa2DH8lCD5","link":"","content":"TH regrets the idealisation of motherhood.","language":"English","round":"Novice_Final","topic":{},"division":"","infoSlide":"","id":"wYQni0WoFZAdCkZ4p6xO"},{"content":"THW break up the eurozone.","round":"Open_Octos","infoSlide":"","link":"","language":"English","division":"","topic":{},"tournamentID":"G40265rxZRrwSbZ3fQSJ","id":"wYUMqlYBZJjFhJ4eIM5U"},{"link":"","tournamentID":"u39lMiqXE91heMDxEgQe","topic":{},"division":"","content":"Chúng tôi cho phép người lính được kiện chính phủ vì những cuộc chiến tranh phi nghĩa.","infoSlide":"","round":"2","language":"Vietnamese","id":"wYWVDmNhlwLNnnD4mlzX"},{"link":"","topic":{},"content":"THW provide amnesty to violent political dissidents in exchange for removing their ability to vote or run for public office, e.g. the integration of FARC rebels into Colombia.","round":"4","division":"","infoSlide":"","tournamentID":"CLp8pjuIm6vddMdiBEC5","language":"English","id":"wYd1LmtjAJY4GQ5uWaKA"},{"link":"","content":"Should kindergartens actively combat gender roles?.","topic":{},"language":"English","division":"","tournamentID":"gLCKOLupIE8JBGxBG9vu","infoSlide":"","round":"Open_Final","id":"wZfxTXrUHyzcADhM6TH6"},{"content":"THBT the remaining members of ICC should breakaway from ICC & form their own unified cricketing body.","tournamentID":"3thiHP0WT1SpBvjVmMFz","link":"","topic":{},"infoSlide":"","language":"English","division":"","round":"3","id":"waHzkovoe6W0tAEziBxP"},{"link":"","tournamentID":"BtqBGdAUsTtPKorZOcBX","round":"Open_Semis","language":"English","infoSlide":"","topic":{},"content":"TH regrets that Western Media demonised Islamist Terrorists rather than portraying them as criminals with legitimate grievances.","division":"","id":"waUArfL7MCpkITbFdKhc"},{"content":"THW deprioritize the distribution of the COVID-19 vaccines to those who contravene public health protocol (eg: spreading false rumours about COVID, refusing to wear a mask).","topic":{},"round":"1","language":"English","division":"","tournamentID":"15hrO4GoCxXF2OIdl7fS","link":"","infoSlide":"","id":"wavUWawicwz3CxU7hwwT"},{"division":"","link":"","round":"1","content":"THB that teachers of history should deliberately overemphasize the contributions of marginalized groups.","topic":{},"language":"English","infoSlide":"","tournamentID":"wP5I8OZ057B9BO0Js6MR","id":"wbzrVSna4mdjtzbkGbrF"},{"infoSlide":"","content":"This House opposes Twitch's decision to ban sexually suggestive content on their platform.","round":"3","topic":{},"tournamentID":"uHY8OFiOXYb0VdlJt20c","language":"English","division":"","link":"","id":"wc3GDtORf9CpshhBIkXz"},{"language":"English","tournamentID":"McARyCvnNLDmzAARI8jE","link":"","topic":{},"division":"","content":"THW force elected politicians and their families to use only public health and education services.","round":"2","infoSlide":"","id":"wcjHVAXy4Ibvwuuuj7VJ"},{"content":"Chúng tôi sẽ xây dựng các trường dạy nghề và đưa những học sinh có thành tích học tập yếu vào đây.","round":"","division":"","topic":{"education":{"title":"Education","check":true}},"language":"Vietnamese","link":"","infoSlide":"","tournamentID":"OqQWJjNQBpGOYwMntw3z","id":"wcyhtvtUD4sodOFuTC3s"},{"content":"THBT having star players for team sports do more harm than good to the team.","division":"","language":"English","round":"","link":"","infoSlide":"","topic":{"sports":{"check":true,"title":"Sports"}},"tournamentID":"nALUKfkpmOnWnQCzecru","id":"wdI5DUQQT08LVNKRt93C"},{"content":"THW ban international adoption.","link":"","topic":{},"language":"English","infoSlide":"","division":"","round":"1","tournamentID":"R2D7uxDuM6stYlRyK9ev","id":"wdSkwO1mNio23HNqnd7I"},{"content":"This House believes that governments should end all direct international aid, and donate money to Non Governmental Organizations (e.g. Oxfam, Médicins Sans Frontièrs) instead.","round":"3","topic":{},"infoSlide":"","division":"","language":"English","tournamentID":"ZQQO7Q0LBTeQnU1Rb8fK","link":"","id":"wdZZnwy8q6QhpzvzXj7i"},{"round":"2","topic":{},"division":"","content":"This house, as the progressive movement, supports progressive candidates running on centrist platforms solely in order to get elected.","language":"English","link":"","infoSlide":"","tournamentID":"Nzien6R9RXvOTrNMJsza","id":"wdl0EaKfIvGjRjMeI7Sf"},{"language":"English","infoSlide":"","link":"","tournamentID":"i6DM0q3jQYZrDmXJHzfr","content":"THBT political assassination is a legitimate tool in foreign policy.","division":"","topic":{},"round":"Open_Final","id":"wdo0BZ426HXx4sqp2UFF"},{"division":"","topic":{},"round":"4","tournamentID":"Wb0k9XSEirfd7kuffEGF","language":"English","link":"","content":"TH would ban foreign states from funding religious organisations.","infoSlide":"","id":"wexi0XHNpy4GX7NSwEBQ"},{"language":"English","tournamentID":"VTJvfdWN7ZYlPkyTmGj1","division":"","link":"","topic":{},"round":"2","infoSlide":"","content":"THBT in states where cloning is allowed for research purposes, it should be possible to purchase Chimären (a copy body? genetic material?).","id":"wfsl1zl94N8M84CVjIHw"},{"infoSlide":"","topic":{},"division":"","language":"English","content":"THW Prevent men from running for elected office for a period of two terms.","link":"","tournamentID":"O0uPnjb8M1dIGLUmO4NP","round":"1","id":"wgSFELgw3haXB9VvAHLO"},{"topic":{},"round":"Open_Quarters","link":"","content":"THW auction off the long-term right to govern bankrupt cities for profit.","tournamentID":"pvKZkg6sqicG5nXA2mvY","infoSlide":"","division":"","language":"English","id":"wh3XXHkeOA80GRmy8bDK"},{"content":"THW ban TalkToys.","infoSlide":"","division":"","topic":{},"language":"English","link":"","round":"2","tournamentID":"FYOADGgnZTJQdU2kOcYb","id":"whpzilLAF5Nk9iPdrPPY"},{"language":"Vietnamese","tournamentID":"3B01KdqnCVzQEVjKcHiT","content":"Chúng tôi tin rằng các giải thưởng điện ảnh và truyền hình nên huỷ bỏ các hạng mục giải thưởng riêng biệt theo giới tính.","infoSlide":"","round":"","topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"}},"link":"","division":"","id":"wiN5VhdDkf8ufh7kvCKj"},{"infoSlide":"X là một người đã tiếp tục duy trì một mối quan hệ tình cảm với người X cần trong một thời gian dài. X gần đây mới gặp được người X muốn, và may mắn thay, người đó cũng muốn X.","topic":{},"round":"4","link":"","content":"Chúng tôi, với tư cách là X, sẽ từ bỏ mối quan hệ hiện tại để chủ động theo đuổi một mối quan hệ với người mình muốn.","division":"","tournamentID":"BPe1MqSgmLovUz7nghmX","language":"Vietnamese","id":"wigt7BIRqHoqjvtNYRtc"},{"topic":{},"division":"","language":"English","tournamentID":"xv0FPHxLsij7LUJlUmBy","content":"TH, as X, would not accept the offer.","link":"","infoSlide":"","round":"Novice_Semi","id":"wj1P7h4TQZyvofBI5WYw"},{"topic":{},"link":"","division":"","round":"5","content":"THBT people should not get married.","infoSlide":"","language":"English","tournamentID":"dhjYMHAKQ3baHl4HMJbh","id":"wl1dPnqShAABftmGEy6F"},{"round":"4","tournamentID":"xLHei5vZFgpmhHOsyDv6","language":"English","topic":{},"division":"","link":"","content":"Only people with a teaching degree should teach at universities in the Netherlands.","infoSlide":"","id":"wlAo0FNgPNIsmCA5NSZP"},{"division":"","infoSlide":"","link":"","language":"English","content":"THBT Britain should seek issue based coalitions rather than a further integration into the EU.","topic":{},"tournamentID":"sVguH0ZxbQ8C5aNo2rNf","round":"5","id":"wlFwJOVF3oWUmboIyWbe"},{"infoSlide":"","language":"English","link":"","topic":{},"division":"","round":"3","content":"THBT social media companies should factcheck posts by world leaders.","tournamentID":"53fI8Yf0j74CAnSOjn9g","id":"wlLLrdPUGFBpSScoA4dZ"},{"topic":{},"link":"","tournamentID":"IrZL7r0XTyBpGGSAYVYR","division":"","infoSlide":"","content":"THW legalise the sale and purchase of human organs.","language":"English","round":"1","id":"wliFuMAl9a1U4peDxxxf"},{"infoSlide":"","tournamentID":"7lMrN2aiwSzD5rzPFwHz","round":"2","link":"","division":"","language":"English","topic":{},"content":"THBT the feminist movement should oppose the banning of the burqa.","id":"wljxZDbbHZEunxQG9glN"},{"division":"","round":"3","infoSlide":"","topic":{},"tournamentID":"LK6lSp8gpBGbLjuv9caV","link":"","language":"English","content":"Should the state give up on shrinking villages?.","id":"wlqdmI0UQMTe3oGaCXzs"},{"language":"English","link":"","tournamentID":"OFi0KPPvhID0XipYIiiD","round":"2","infoSlide":"","content":"TH, as atheists, W stop ridiculing religion.","division":"","topic":{},"id":"wmCK2M4qhEUmGAEkWHu2"},{"round":"2","content":"THBT climate change movements should prioritise constructive policy proposals over criticism and obstruction of current policies.","link":"","tournamentID":"p6ZWMCxUvbu1V0BT5gJg","language":"English","topic":{},"division":"","infoSlide":"","id":"wmjSTGeyGPE42sfzoYW5"},{"topic":{},"round":"Open_Final","language":"English","link":"","tournamentID":"P4io30tN10TYMqGkj2sX","infoSlide":"","content":"THBT Democrats and Republicans should accept a border wall in exchange for full legalization of immigrants currently residing in the United States.","division":"","id":"wnaxCqXX2izlqiYvwwej"},{"link":"","language":"English","division":"","tournamentID":"oFJV1Acc1Gr7t6B77LSK","content":"In post-conflict societies, This House prefers power-sharing agreements to unrestricted democracy.","topic":{},"infoSlide":"","round":"5","id":"wnyqOCZY69Q7t8YMSp6n"},{"language":"English","round":"1","topic":{},"link":"","tournamentID":"ARfoyigbkuieCEyKI1GV","content":"THW require elected politicians and their families to use only services provided by the state.","division":"","infoSlide":"","id":"wo2cwJVwC1Hm3h0krdXY"},{"topic":{},"infoSlide":"","language":"English","division":"","tournamentID":"9pAAcbund4BvOXScZxre","content":"THW Prosecute Irish politicians of the era for failing to take action over the abuses of the Magdalene Laundries.","link":"","round":"Open_Semi","id":"woWbvZ0O8hA0crLPSjBN"},{"topic":{},"division":"","content":"THW abolish Gesinnungsstrafrecht (additional attitude/mindset penalties for crimes commited, e.g. hate crimes).","link":"","language":"English","infoSlide":"","tournamentID":"VAfi19aZTAIKaUuELBL1","round":"1","id":"wqSXFryFGnsAZSumUpQT"},{"round":"2","division":"","infoSlide":"","language":"English","link":"","tournamentID":"WuHMyE7RKYgEDPOjOxp6","topic":{},"content":"TH as Pakistan in 1979 would remain neutral in the Afghan War.","id":"wqkqOHuxJ0U1QSDVenX8"},{"language":"English","division":"","link":"","content":"THS civil rights activists using disruptive or violent civil disobedience as a tool of protest (e.g. the Stansted 15, Gilets Jaunes/Antifa movements).","tournamentID":"Fu8k3vJxi4iJsdZw9d7j","topic":{},"round":"1","infoSlide":"","id":"wrIp5UQ64dYWd0AbgRBw"},{"infoSlide":"","content":"THBT parents have a moral obligation not to consume alcohol.","tournamentID":"d0CBbRAyIQhiX69bWaKA","link":"","topic":{},"language":"English","round":"5","division":"","id":"wradO7YIbxS8L4IWekzC"},{"round":"Open_Final","language":"English","link":"","division":"","content":"THW prefer a world where wealth is seen as shameful.","topic":{},"tournamentID":"cBdmYwHV9z5pBS0q23lF","infoSlide":"","id":"wrlgmG5gv5Rk6lv7P1YQ"},{"content":"THR the westernization of the elite in post-colonial countries (e.g. speaking predominantly in English, going to schools/universities in the West, consuming predominantly Western media).","tournamentID":"dgRU54McMXqo1MXISAFt","round":"ProAm_Final","link":"","infoSlide":"","division":"","language":"English","topic":{},"id":"wsiFhMxccswqoYXameI7"},{"language":"English","division":"","infoSlide":"","topic":{},"tournamentID":"vILiSHUm95tqQYsTjFZs","link":"","content":"THB France should be more German.","round":"Open_Semi_3","id":"wsnKru1lRNa8s74SKJO7"},{"language":"English","infoSlide":"","round":"ESL_Quarters","topic":{},"link":"","division":"","content":"In a relatively equal society where the \"protected sphere model\" is the norm, This House, as a parent, would raise their children according to the \"deferred happiness model\".","tournamentID":"wA1XDLHJESmSgLsfZ9Qe","id":"wtJRIKUNJ2xOGTNatAdJ"},{"round":"1","division":"","link":"","infoSlide":"","topic":{},"tournamentID":"dgRU54McMXqo1MXISAFt","language":"English","content":"THW mandate labor union membership in large companies.","id":"wtftFnGbq5byu4jH6VUM"},{"infoSlide":"","content":"THBT Japan should acquire nuclear weapons.","tournamentID":"0bpNzjTgN71TZQEkHTak","link":"","topic":{},"language":"English","round":"2","division":"","id":"wti5df2m3FFVw5SdnS9t"},{"division":"","tournamentID":"2puDg94cQDrpdSauuA78","link":"","round":"3","language":"English","infoSlide":"","topic":{},"content":"TH would prosecute the editor-in-chief when the magazine they are in charge of publishes falsehoods.","id":"wtmPjSLw41QUQKb4yg4B"},{"link":"","language":"English","division":"","topic":{},"infoSlide":"","content":"THW introduce a 100% inheritance tax.","tournamentID":"WqXUc7EMDvkqqg3BVCtf","round":"9","id":"wu1TcETdIpspfbooxSYH"},{"link":"","language":"English","topic":{},"round":"3","division":"","content":"THBT NATO should maintain a standing army to which all members must commit a minimum number of troops.","tournamentID":"yTe5SQuwd4eeae0M0Sc9","infoSlide":"","id":"wv8UMmrOaCOoiyFIZ7O5"},{"round":"4","link":"","topic":{},"tournamentID":"1MV3spmbrmWLKhisZDU8","division":"","language":"English","content":"TH supports South Korea's rejection of the potential trilateral military USA-Korea-Japan alliance.","infoSlide":"","id":"wv8vPA5RWNXLrCPFVHzQ"},{"round":"4","tournamentID":"aHKO046eJRUWaom1jPG8","infoSlide":"","content":"In countries with conscription, This House Believes That it is morally legitimate to evade draft.","language":"English","topic":{},"link":"","division":"","id":"wwHutjU3Wt8Bln1pE1fx"},{"link":"","infoSlide":"","topic":{},"content":"THB in a three-day week-end.","division":"","language":"English","round":"6","tournamentID":"DSFg77BvC9y4FK5pBVIv","id":"wwNPq2OrbskwiSrmVHoM"},{"round":"Open_Semis","tournamentID":"TMBmC1MQwez0ZjQdNyHU","topic":{},"infoSlide":"","content":"THW found a state for African Americans, as the 51st American state.","link":"","division":"","language":"English","id":"wwarnHK3IUC70UtYhvGg"},{"infoSlide":"","content":"THW allow the use of performance enhancing drugs in competitive sports.","round":"1","tournamentID":"DLFJWaIyHnSlvFofovjc","division":"","link":"","topic":{},"language":"English","id":"wxGD5jsig7MAcKdo4sif"},{"round":"Open_Final","link":"","language":"English","topic":{},"infoSlide":"","tournamentID":"yhJgdE0VFcsqlvWffep1","content":"THBT all main political parties should implement a cross party political scheme to use all-women shortlists to get more women into parliament until gender parity is reached.","division":"","id":"wxVp11KEjwy6StGERGAK"},{"division":"","language":"English","infoSlide":"","tournamentID":"etTxnyhPGMITmcNf2DkM","topic":{},"link":"","content":"THW offer Maria its own bed.","round":"3","id":"wyAYUaLi9EHyZR3mnZgc"},{"link":"","round":"2","content":"You are an academy city student with no foreknowledge of the Level Uppers long-term effects. THW use the level-upper.","tournamentID":"Z9WBfg1yDJgSR34BGYp1","infoSlide":"In Railgun, there exist people called Espers, who have the ability to manipulate and change the world around them through scientific principles (i.e. they have superpowers). Every Esper is ranked and classified into a Level from 0 (no powers at all) to 6 (power never before reached by anybody). Abilities scale exponentially rather than linearly as levels increase. Improving your level is a long and difficult process, and some people never even get past level 0. Espers live and study in a place called Academy City, a place created specifically for the education of Espers. Many students move to academy city from far flung corners of Japan to become Espers. There exists a black market item called the Level Upper. To use it - you simply listen to a song on your phone. It will improve your abilities drastically and increase your level.","division":"","language":"English","topic":{},"id":"wyrbrmfQC1BVqbT1cY3b"},{"topic":{},"division":"","content":"As a parent, THW not lie to its children about the existence of Santa Claus.","tournamentID":"GwkssAj8zxpqlXlKBDqa","link":"","language":"English","round":"3","infoSlide":"","id":"wyvAllBPmM1WdUg7rIre"},{"infoSlide":"","content":"THW Ban any and all participation in faith healing.","round":"2","division":"","language":"English","topic":{},"link":"","tournamentID":"O0uPnjb8M1dIGLUmO4NP","id":"wywYryGu00VvRiVkCzM2"},{"tournamentID":"zbDMNQdzWmUf0FHPwYDO","infoSlide":"","content":"THR the existence of NATO after the dissolution of the USSR.","language":"English","division":"","topic":{},"round":"Open_Semis","link":"","id":"wyzkan1yuDLydREI1fVD"},{"infoSlide":"","tournamentID":"vS5BTr7lDW40h5Qw31FI","link":"","round":"6","division":"","content":"This house believes that all states should mandate that research on and use of CRISPR technology be exclusively carried out by institutions funded entirely by the state.","language":"English","topic":{},"id":"wz0kgcKoybimdo6AZgYo"},{"infoSlide":"","topic":{},"content":"In places where conscription of men already exists, THBT the feminist movement should advocate for conscription of women.","link":"","tournamentID":"k3ijyeg4qJCcExIHRlhv","language":"English","division":"","round":"2","id":"wzv2lA2T367WdwQFXkqu"},{"link":"","round":"2","content":"TH as the US would never militarily intervene in other countries.","infoSlide":"","tournamentID":"8DernPpRwzBf2YIkESEX","division":"","language":"English","topic":{},"id":"x0F4wQtTFk4R2l3nuLyN"},{"division":"","content":"TH regrets the rise of a 'hookup culture' (one which accepts and encourages casual sexual encounters focused on physical pleasure, without necessarily including emotional bonding).","tournamentID":"pvKZkg6sqicG5nXA2mvY","topic":{},"round":"3","link":"","infoSlide":"","language":"English","id":"x0Ts4c6HmUiePMlIvn3m"},{"tournamentID":"ZQQO7Q0LBTeQnU1Rb8fK","topic":{},"round":"4","language":"English","link":"","division":"","infoSlide":"","content":"THW remove bylines from individual newspaper articles.","id":"x1GQ1gdtdJDjKpqwduOl"},{"infoSlide":"","division":"","language":"English","content":"TH prefers a world in which people do not believe in the existence of God or a divine being.","link":"","round":"2","topic":{},"tournamentID":"gmusL4yQ3HD8FyegVRpk","id":"x24r3krYRjfaWGRmC59Z"},{"division":"","language":"English","topic":{},"link":"","infoSlide":"","content":"THW stop all measures to prevent suicides.","round":"Open_Final","tournamentID":"LSZbchiNq33jtWsW0vWQ","id":"x2NAvXUWH1lkolacrTMv"},{"link":"","language":"English","tournamentID":"4dzoeUxkRP5WxDaCVtbY","content":"THBT energy security is a legitimate reason for military action.","topic":{},"infoSlide":"","round":"5","division":"","id":"x2dg8QMo2piM0ciYhSTT"},{"content":"THW provide a universal basic income.","round":"2","language":"English","tournamentID":"ZpOi9wuiFrLbKo4ygC2p","infoSlide":"","link":"","division":"","topic":{},"id":"x2qJrMGTPvaKi4vatyXp"},{"tournamentID":"yplVU35a69J2hHBBmAJC","topic":{},"division":"","language":"English","round":"2","link":"","content":"THW ban all political parties.","infoSlide":"","id":"x44iggF07xLuhhOOU0Jf"},{"link":"","infoSlide":"","content":"This house welcomes the production of art by artificial intelligence.","tournamentID":"mXeF4ypkhHofmXrxLWxA","language":"English","division":"","topic":{},"round":"2","id":"x4DLOLRsrnuJZXpleU2j"},{"tournamentID":"yDUOVgl6qLMa2DH8lCD5","topic":{},"content":"THW suspend trade union powers and significantly relax labour protection laws in times of economic crisis.","link":"","division":"","round":"4","language":"English","infoSlide":"","id":"x5u6QK1RRrEjxrv6sicp"},{"content":"Chúng tôi sẽ cung cấp phúc lợi xã hội dưới dạng hàng hóa và dịch vụ thay vì tiền mặt.","language":"Vietnamese","topic":{},"round":"Quarterfinals","infoSlide":"","tournamentID":"u39lMiqXE91heMDxEgQe","link":"","division":"","id":"x5z4PrE8uoQn1RMiyFhY"},{"infoSlide":"","tournamentID":"cBdmYwHV9z5pBS0q23lF","link":"","content":"THW ban private military contractors.","topic":{},"language":"English","division":"","round":"Open_Semi","id":"x63YibCI2hMEROtQqZ4S"},{"content":"THBT causing deliberate harms to enemy civilians, by the weaker side, is a justified tactic in asymmetrical warfare.","round":"5","language":"English","tournamentID":"yDUOVgl6qLMa2DH8lCD5","infoSlide":"","link":"","topic":{},"division":"","id":"x6BvnCnb9LYdBHAlBwj1"},{"tournamentID":"JTOMyeCSk6IujHBgAOMi","infoSlide":"","topic":{},"round":"4","division":"","content":"THW create an age limit for public appearances.","language":"English","link":"","id":"xAIQ9GfW702osZmKT4Em"},{"round":"6","infoSlide":"","topic":{},"division":"","language":"English","content":"In countries with vigorously contested campaign contribution regulations, this House believes that the political left should not contest the premise that money is speech and should, instead, contest how that speech is regulated.","link":"","tournamentID":"9JqIpRhRkA8gulRio4t9","id":"xAM4xjUssBDMZGweH4PZ"},{"content":"As Black Lives Matter Movement, THW reject any form of participation from the police force within their protest activities.","tournamentID":"Z9FMqY7i0SmIcw5xUsUL","language":"English","link":"","division":"","infoSlide":"","topic":{},"round":"2","id":"xAnxAnZDeIRdu6qzNI95"},{"round":"2","topic":{},"division":"","link":"","infoSlide":"","language":"English","content":"THBT the targeting of religious sites is a legitimate tool of war.","tournamentID":"MeKByJc38Yt4otefONa7","id":"xBVGYvCSqmnfmWUUG1Je"},{"division":"","topic":{},"tournamentID":"H6MeeIis6pg2gQbgEyuB","round":"Open_Semi","language":"English","content":"THBT it is in the interest of Britain to have a second referendum on Brexit.","link":"","infoSlide":"","id":"xC0yXyv7goXrOD41w675"},{"division":"","content":"This house prefers a post-growth society to a society geared towards growth.","link":"","language":"English","round":"Open_Final","tournamentID":"Hpsxcd5Zzu5xq9ehtKkj","topic":{},"infoSlide":"","id":"xDXlAKRMp1uyxtSQ3aGe"},{"division":"","tournamentID":"mXeF4ypkhHofmXrxLWxA","round":"5","infoSlide":"","content":"This house believes that Cabinet appointees should be protected from firing once they are approved by Congress.","link":"","language":"English","topic":{},"id":"xFjzi9loiWLuzLqIlgpG"},{"infoSlide":"","topic":{},"content":"TH supports campaigns like \"Kony 2012”.","link":"","round":"Open_Final","tournamentID":"DPlum9M6fh8xjiyYGBxO","division":"","language":"English","id":"xGyPMhSir50H9Aj1myjK"},{"language":"English","content":"TH, as Benny Gantz, Would form a government with the Likud and Netanyahu to avoid a March 2020 election.","link":"","round":"3","topic":{},"division":"","tournamentID":"4qwhZS2zOsdzzkyQlcaW","infoSlide":"","id":"xH04yIGl1vOdhGw4Iurl"},{"topic":{},"tournamentID":"ruG3JCf2Mh62VDkchi11","division":"","link":"","round":"Semifinals","content":"THBT micro-finance organisations (including but not limited to NGOs, charities, and developmental banks) should offer micro-finance loans in developing nations exclusively to women.","infoSlide":"","language":"English","id":"xHKsiXAIVNXuJcNmRTiR"},{"infoSlide":"","round":"2","tournamentID":"JvpXQ1DYmWydXXgsnZ74","language":"English","division":"","topic":{},"content":"THW make development aid conditional upon the improvement of women’s rights.","link":"","id":"xHkYnLYZyJ6M7MJmA2mO"},{"topic":{},"infoSlide":"","link":"","content":"THBT consumer imaging (eg: TV, commercials, magazines, billboards) is harmful toward women.","division":"","round":"4","language":"English","tournamentID":"7vCURwwkA80JiqPvxSZu","id":"xIKoM8gCdTLEKOeGjW1T"},{"tournamentID":"ERxjvEIrmiL3iSgvcfdB","language":"English","infoSlide":"","content":"TH opposes the stigmatisation of romantic relationships built upon materialistic needs or exchanges (e.g. suggar-daddys, cougars, etc.).","round":"4","division":"","link":"","topic":{},"id":"xIN826kf5X5aCmM2F2Na"},{"link":"","language":"English","division":"","tournamentID":"mf3XudZleydnsr0lEvkg","topic":{},"content":"This house believes that charities and humanitarian aid organizations should not use images of graphics suffering in their advertising campaigns.","infoSlide":"","round":"4","id":"xINNhGnISefVTNg9H46e"},{"tournamentID":"1MV3spmbrmWLKhisZDU8","division":"","topic":{},"language":"English","round":"2","content":"This House Believes That progressive movements should not doxx.","link":"","infoSlide":"","id":"xIfFPRsUXHTRFl8yl5MD"},{"round":"Open_Final","content":"THBT developing countries should ban political parties from spreading food and other necessities.","infoSlide":"In countries like India and South Africa, particularly around election time, political parties are banned from spreading food and other necessities.","language":"English","link":"","tournamentID":"uvPQBxEeKffyHUkLa5PV","topic":{},"division":"","id":"xJK60yAouZtrV6SgsvAe"},{"division":"","content":"THBT governments should donate money to NGOs operating in developing countries instead of paying foreign aid.","link":"","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"tournamentID":"KncW7pH1nDIom3xK89VG","infoSlide":"NGOs are non-profit groups which function independently of any governments. They can be organized on community, national, and international levels, and serve social or political goals such as humanitarian causes or the environment (In the context of this debate, foreign aid refers to assistance in the form of money or resources given from one government to another).","round":"Semifinals","language":"English","id":"xJRZUl1oc95C7TVpmYB5"},{"language":"English","tournamentID":"6j3LrbKUgx9arVygXUjf","topic":{},"division":"","infoSlide":"","round":"3","link":"","content":"THBT the development of highly realistic virtual reality technology for recreational use does more harm than good.","id":"xKVabqEv4faT3oHqrls0"},{"division":"","link":"","infoSlide":"","content":"THB President Obama should grant Chelsea Manning a presidential pardon.","language":"English","topic":{},"round":"5","tournamentID":"qA0UqqN9np2leDGCNcck","id":"xKmbh86CHu9Pqxjo6C2e"},{"content":"TH, as God, would end the human population now.","division":"","topic":{},"language":"English","link":"","round":"Open_Final","infoSlide":"","tournamentID":"TSpa3WXkfFl9nQFbVbmi","id":"xLoiF16yxqBhGbk4eN1Z"},{"infoSlide":"","topic":{},"division":"","language":"English","link":"","content":"THBT news outlets should not have shown images of Gaddafi’s corpse.","tournamentID":"0DgXee32WEP3hxmGZExS","round":"12","id":"xMHIpQ840quhbn93FYE1"},{"tournamentID":"53fI8Yf0j74CAnSOjn9g","division":"","infoSlide":"","link":"","topic":{},"language":"English","content":"TH, as a Republican member of Congress, would destroy the evidence.","round":"Open_Final","id":"xMzi77wyISboypAz6qxT"},{"topic":{},"link":"","division":"","tournamentID":"vIcSl55fwy2uPdlGUXsg","infoSlide":"","language":"English","content":"This House Regrets the rise of televised talent shows.","round":"1","id":"xN8s6IECLWmLZzDxU67x"},{"infoSlide":"","tournamentID":"8mQg9HgZBO4ebq8ubmRJ","link":"","content":"THW implement tradable quotas for asylum seekers within the European Union.","language":"English","round":"5","division":"","topic":{},"id":"xNbPQCGWFq109McAN8Es"},{"content":"This House Believes That liberal states with sexually conservative communities should subsidise hymenoplasty.","link":"","topic":{},"round":"5","tournamentID":"6GQGSjlsY612FPwbXRbB","division":"","infoSlide":"","language":"English","id":"xOEKpEAsnukqv71rKsan"},{"link":"","content":"TH as an Israeli would refuse to join the Israel Defence Force.","infoSlide":"","language":"English","round":"Open_Final","tournamentID":"o60DawGVHvdGOC58c4vF","topic":{},"division":"","id":"xOdZd0mSeAQo508IaE53"},{"content":"THBT citizens should be more worried about Google and Facebook's access to their data, than the governments' access.","division":"","link":"","infoSlide":"","topic":{},"language":"English","tournamentID":"R2D7uxDuM6stYlRyK9ev","round":"Open_Final","id":"xOvrJhYhf2yoFvGrQyP0"},{"content":"THW introduce mixed-gender low security prisons.","link":"","infoSlide":"","language":"English","round":"4","division":"","tournamentID":"mEr4tnJE0kt1V0JvT2KG","topic":{},"id":"xPiRdEWh7vQcbHaSWfe2"},{"language":"English","content":"THBT all states should create special economic zones in cities, where all economic activities (except the purchase of goods and services) are carried out by women.","link":"","infoSlide":"","topic":{},"division":"","round":"Open_Semis","tournamentID":"q7pvo4zkG31lg89ofmeq","id":"xPkWbAOZTLpSOcw0jFSy"},{"infoSlide":"","division":"","tournamentID":"axWwnyCM8L14pVHljukt","link":"","language":"English","round":"4","topic":{},"content":"THBT sovereign debt must be insured with the assets of that country, including, among others, land, natural resources and state enterprises, in case of non-compliance.","id":"xQxNAM0MD1if7GmKh25k"},{"language":"English","link":"","content":"This house believes that feminists should criticise decisions made by women that seem to entrench patriarchal norms even where women claim it is their choice (e.g. foregoing careers to raise children, having cosmetic surgery).","tournamentID":"bxhnmh9CZq21XJcRU2BX","division":"","round":"6","topic":{},"infoSlide":"","id":"xRSkQBQ4E8LE01Wu97yY"},{"link":"","division":"","tournamentID":"lItvEbHHU24VVqcwipRq","language":"English","topic":{},"round":"4","infoSlide":"","content":"As the US Federal Government, THW significantly increase spending on foreign aid.","id":"xRjnzVVwuPNaimy9Zfnw"},{"language":"English","division":"","content":"THBT China should prioritise social justice over economic growth.","round":"2","tournamentID":"A8uW9F7TCtUhRLICBZWb","topic":{},"infoSlide":"","link":"","id":"xSiGxsS81WmHUkhZCHBM"},{"link":"","round":"1","content":"In cases of politically motivated terrorist attacks, THW ban the press from disclosing any information regarding the name, background or the political motivation of the attackers.","infoSlide":"","language":"English","tournamentID":"LjEl8Sog63zZMpDhsInz","division":"","topic":{},"id":"xTPbvjZpcNhWsaQJl4op"},{"round":"","infoSlide":"","content":"Chúng tôi sẽ đánh thuế cao những công ty sử dụng AI thay nhân công lao động.","division":"","topic":{"ceam":{"check":true,"title":"Culture/Entertainment/Art/Media"}},"link":"","tournamentID":"1qq9g2ApB8UdvPr2ewx1","language":"Vietnamese","id":"xTSQ5O9t3XGwTC0cUX5d"},{"division":"","infoSlide":"","language":"English","tournamentID":"lleJhm2ki2Ixm97fXI7b","topic":{},"content":"TH regrets the campaign to remove Brendan Eich from office.","round":"3","link":"","id":"xUGNmOV3OpZjNSWOv4mf"},{"content":"Chúng tôi ủng hộ lao động trẻ em.","language":"Vietnamese","division":"","infoSlide":"","link":"","topic":{},"tournamentID":"mkrRVvz5EWSZie6LBtCH","round":"4","id":"xUUDTVtB5zjRfV0UKIMI"},{"topic":{},"tournamentID":"NBT7RwLHeAApXuOtrQpt","round":"3","link":"","content":"THW, as a billionaire who opposes Artificial Intelligence, fund violent and destructive action against companies that aim to create strong Artificial Intelligence.","division":"","language":"English","infoSlide":"","id":"xVEjCZhX3k9j33t1tRSm"},{"infoSlide":"","link":"","content":"THBT schools should instill unrealistically high expectations in students from lower-socio economic backgrounds.","topic":{},"round":"Novice_Final","division":"","tournamentID":"GeB6bvqs5FhYEP99Q8Ax","language":"English","id":"xVnZaiA6x56LdrsPBZR8"},{"link":"","topic":{},"round":"1","content":"This House would mandate by law that all couples must equally share domestic work.","division":"","language":"English","tournamentID":"sol1oNvzZmBI1NXc28Lh","infoSlide":"","id":"xVuTVfHtr0O7UdNxbGTU"},{"tournamentID":"zkcJOcuUSlxmaS6nsMl7","round":"Open_Semis","link":"","content":"Should the long-term unemployed be reemployed for energy production?.","language":"English","topic":{},"infoSlide":"","division":"","id":"xW4GE1ivgkZPo8KkwtjP"},{"language":"English","content":"This House would impose additional taxes on employers who use automation to replace human workers.","tournamentID":"0mv3ToZPy0AwAsRnpZBN","division":"","infoSlide":"","topic":{},"round":"Open_Quarters","link":"","id":"xWLZKnKcSbdGMzizR6bP"},{"language":"English","division":"","link":"","tournamentID":"h5ajoFHOT7mXoe90wbQ3","infoSlide":"","round":"7","topic":{},"content":"The US federal government should bail out states and cities.","id":"xX5JGRUMrLCrTNrEBKWN"},{"tournamentID":"KErVXbqRahyWD7ZB1Q1m","link":"","infoSlide":"","language":"English","division":"","topic":{},"content":"TH, as a wizard, would create a horcrux.","round":"1","id":"xX7WHkG7wwN8WazdTcfb"},{"language":"English","tournamentID":"1bHNYzF6GWRqdpr3f5vt","content":"This House, as Likud, regrets not removing Netanyahu as leader before the upcoming election.","division":"","link":"","infoSlide":"","topic":{},"round":"2","id":"xXjcRORPT6jIlFqW1ql4"},{"topic":{},"division":"","tournamentID":"gJ7A4v0TYcDNBa5wySIX","link":"","content":"THW vote to acquit and attempt to persuade other jurors to do the same.","language":"English","round":"4","infoSlide":"","id":"xYPkeQV969PUmfj1P1qP"},{"round":"ESL_Semis","tournamentID":"t2juKb62UT5HJ0kruUAw","infoSlide":"","topic":{},"division":"","language":"English","link":"","content":"This house would allow prisoners to raise their babies behind bars.","id":"xYh3BviVUrw1VWhb8rFl"},{"infoSlide":"","content":"THBT it is in the interest of Russia to have Putin continue in power after 2024 elections.","language":"English","topic":{},"tournamentID":"irYSGlHj76RukmyCwWOG","division":"","link":"","round":"6","id":"xYpI1HBRLgcA9aNtGpCr"},{"topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"infoSlide":"","tournamentID":"37eWQ7OoHqsPgaN53lHV","link":"","content":"THBT young people should pursue consumer lifestyle rather than saving lifestyle.","language":"English","round":"","division":"","id":"xZqY68KFWWIZ0ZEMcO4r"},{"content":"This house believes members of SAARC should collectively agree to increase labour standards, and environmental standards, rather than engage in a 'race to the bottom'.","topic":{},"language":"English","round":"4","link":"","tournamentID":"pq9R1PqBqzQNX8jAplt5","division":"","infoSlide":"","id":"xZvzAMVKMyv4cPJgaWaG"},{"content":"This House would grant immediate EU admission to regions like Scotland or Catalonia who choose to declare independence from countries that are already in the EU.","tournamentID":"yLkpGc1iaQe5cfQPrNvl","topic":{},"division":"","round":"3","language":"English","link":"","infoSlide":"","id":"xabuuTxvXCs2OMcmImqR"},{"tournamentID":"8QddgLiIoLsA9YscCujR","language":"English","content":"THW criminalize gang membership.","round":"1","link":"","infoSlide":"","division":"","topic":{},"id":"xbLVvQkayxB6MauJg3v7"},{"language":"English","tournamentID":"pTevyvO7FxIMrQi4ThJ5","topic":{},"infoSlide":"","link":"","content":"THW ban children from participating in religious activities.","division":"","round":"2","id":"xbYRl1jX5QkvMSzO8u4L"},{"language":"English","tournamentID":"ovqKzpSVsRvBQDmmn1yj","link":"","topic":{},"infoSlide":"","division":"","content":"THW make the ‘morning after pill’ available without doctor’s recipe.","round":"3","id":"xcmn56fq9iukbTbhjaGU"},{"division":"","infoSlide":"","round":"","link":"","language":"Vietnamese","topic":{"economics":{"title":"Economics","check":true}},"tournamentID":"mNwitMoNsjWupgwG8pR5","content":"Chúng tôi tin rằng các quốc gia đang phát triển nên thực hiện các chính sách bảo hộ để bảo vệ những người lao động thu nhập thấp.","id":"xd6BfihIvAgz4oBJ8i2y"},{"language":"English","topic":{},"division":"","tournamentID":"V8TulSs5yNLpZX8Xohpq","link":"","round":"1","infoSlide":"","content":"THW tax religious institutions at the same levels as for-profit businesses.","id":"xdg0fCcD2Z9i9VE40PCA"},{"tournamentID":"JlXdLu3VijXjgOdO21tX","round":"Open_Final","language":"English","division":"","link":"","infoSlide":"","content":"THBT society would be better if the primary duty of companies were to their workers and not to their shareholders.","topic":{},"id":"xe2WmfbTDwTlAeZoKDSb"},{"topic":{},"round":"3","link":"","infoSlide":"","tournamentID":"041lRDdS5oaD5orDuk8q","language":"English","division":"","content":"THBT Lithuania should recognise Polish as an official language in municipalities with significant populations of ethnic Poles.","id":"xe6ubO7ZrKfqLz5P7Ogp"},{"division":"","infoSlide":"","language":"English","link":"","tournamentID":"ZpOi9wuiFrLbKo4ygC2p","topic":{},"content":"THW enforce Ulysses contracts.","round":"Open_Finals","id":"xeownwHmrtVz4f5iw1vH"},{"topic":{},"language":"Vietnamese","link":"","round":"5","infoSlide":"","content":"Ở trong những ngành học bị chiếm đa số bởi một giới, chúng tôi sẽ có những chính sách ưu tiên cho giới còn lại (VD: hỗ trợ tiền học cho sinh viên nữ học quân đội, điểm đầu vào thấp hơn đối với sinh viên nữ trong ngành công nghệ thông tin, hỗ trợ tiền cho sinh viên nam học ngành múa, ...)","tournamentID":"OLVGf3rE3KKirerr2vyk","division":"","id":"xfHc7uCvBFyoryMmWfTF"},{"tournamentID":"WfHILzlB4oGzI34Iwqaw","content":"THBT the feminist movement should campaign for the equal sexualization of men in the media as opposed to campaigning against the sexualization of women.","language":"English","infoSlide":"","link":"","topic":{},"division":"","round":"5","id":"xfU5dPt7LDY36uzyZAvC"},{"division":"","topic":{},"link":"","content":"TH, as the Muslim Brotherhood, would sincerely offer to cease resistance, participate in elections and respect a liberal constitution.","round":"3","infoSlide":"","language":"English","tournamentID":"BtqBGdAUsTtPKorZOcBX","id":"xfoTtftJRhTcXddqvctu"},{"tournamentID":"B2zJ5QeyI7MVcboS7m4U","content":"THB the ANC should nationalize all mines.","round":"2","language":"English","link":"","topic":{},"infoSlide":"","division":"","id":"xfroofh6Yv9Olp5VKXBP"},{"infoSlide":"","tournamentID":"2PiAEzXdXq9R2oqnRDNA","content":"THBT \"Action is Eloquence\" (Coriolanus).","topic":{},"language":"English","round":"Open_Semi_2","division":"","link":"","id":"xfrucLGPO6QSfdito2SH"},{"content":"That the government should provide incentives for the urban poor to migrate to rural areas.","link":"","tournamentID":"5Qomv7BFHTKmY4PchwDr","topic":{},"infoSlide":"","division":"","round":"2","language":"English","id":"xfy8Xn92ODfva9W8sj4a"},{"content":"THW replace income tax with a tax on wealth.","round":"4","tournamentID":"XKnRXbL5iWiOHmPMcGVz","topic":{},"language":"English","link":"","division":"","infoSlide":"","id":"xhLu9B0v90ZCHZd4tmtM"},{"infoSlide":"","round":"Semifinals","topic":{},"link":"","division":"","language":"Vietnamese","tournamentID":"i00RSzvK4b1TDEgnpFJd","content":"Chúng tôi sẽ đánh thuế các hoạt động giải trí đại chúng để tài trợ các hoạt động giải trí hàn lâm (nhạc thính phòng, nhạc Trịnh, v.v).","id":"xhv2s6UPHncS0Nol4PJd"},{"link":"","tournamentID":"VPUCPVj9FHFW0uzJinv0","round":"4","topic":{},"division":"","infoSlide":"","language":"English","content":"This house would criminalize the payment of ransom.","id":"xjSAOTFfuB7Aq5P8gFNC"},{"round":"Open_Final","infoSlide":"","link":"","language":"English","division":"","topic":{},"tournamentID":"yDUOVgl6qLMa2DH8lCD5","content":"THBT female political candidates in liberal democracies should not appeal to traditional female roles in their campaigns.","id":"xkFXNCht62mcKC9zLHd9"},{"topic":{},"content":"TH, as Russia, would pursue an oil war against Saudi Arabia.","round":"Open_Semi","infoSlide":"","link":"","tournamentID":"VQZZXpisO7Sjz81KUlh9","language":"English","division":"","id":"xkQxlV8ev1gv7BPEIFU8"},{"infoSlide":"","content":"THBT the EU should enforce freedom of movement within current Schengen countries.","round":"2","link":"","language":"English","tournamentID":"PULmrzx6k00EzEt7BxfG","division":"","topic":{},"id":"xl8XSFY3VBVBlEgHqrQp"},{"infoSlide":"","language":"English","division":"","link":"","content":"Should we intervene in Mali?.","round":"1","topic":{},"tournamentID":"1lhrrHzfpU4TfWb63MLz","id":"xlGbB2SxTtGpmipDJv97"},{"division":"","tournamentID":"pvKZkg6sqicG5nXA2mvY","topic":{},"link":"","content":"TH regrets the commodification of indigenous cultures.","round":"9","infoSlide":"","language":"English","id":"xljmYf18tFIFbRejf2dy"},{"language":"English","division":"","content":"THBT sporting teams should be owned by their fans.","link":"","infoSlide":"","round":"2","topic":{},"tournamentID":"NHUypnZQCfkPD98j8TYR","id":"xm4ClvqhFm3iRvzooMyf"},{"content":"THB the media should show images of Islamic State attrocities in their full brutality.","round":"Novice_Finals","tournamentID":"swAbmAXdPnojWIXuZFwm","topic":{},"division":"","language":"English","link":"","infoSlide":"","id":"xmysulmeIULhSQZ1PBep"},{"round":"Open_Final","tournamentID":"DTutOgCItM4x30SyVavv","language":"English","division":"","content":"THS the creation of an international court to prosecute 'crimes against the earth'.","link":"","infoSlide":"","topic":{},"id":"xn4t1LWYP8t49eZZNMIR"},{"topic":{},"infoSlide":"","content":"THBT once artists earn enough to constitute a comfortable wage, they have a duty to make their work freely available.","link":"","division":"","tournamentID":"3tMy4nyufgrwLpV8f6da","round":"1","language":"English","id":"xnIPIqp6ZYiRexCVlAvd"},{"round":"Open_Final","infoSlide":"","topic":{},"division":"","link":"","tournamentID":"Y8UBPz5agTr6QKYI2kXS","content":"THW ban political parties that use ethnicity as basis for their political agenda.","language":"English","id":"xopKSvQOEgfpmHs21sK1"},{"content":"THBT states should not bail out large corporations with high rates of unemployment caused by the COVID-19 pandemic.","link":"","division":"","round":"3","tournamentID":"9MaCpfb2p23wkk8OOSBf","infoSlide":"","topic":{},"language":"English","id":"xpC1qUSRKFokzFmYiYbU"},{"infoSlide":"","division":"","round":"2","tournamentID":"81ULNwgwoeeJz6JyR6aq","topic":{},"language":"English","content":"THBT schools should teach sex positive sex education (ie techniques for sexual gratification) in secondary schools.","link":"","id":"xrT4MbLX41eMuboN5e8s"},{"topic":{},"language":"English","link":"","round":"4","infoSlide":"","division":"","content":"TH regrets the rise of philanthrocapitalism.","tournamentID":"bH0N4QlKzNNQ8zL97OyO","id":"xsEozWm4JZxB662v8Jsv"},{"topic":{},"infoSlide":"","language":"English","division":"","round":"3","content":"THR the use of nostalgia in political campaigning.","link":"","tournamentID":"SfEIDDzpv3y19flsWYFH","id":"xsQfVX7u62PWhNeNatsA"},{"link":"","language":"English","tournamentID":"9yPqE2fe1oaHsd7ankOa","division":"","round":"1","topic":{},"infoSlide":"Common shared resources are resources everyone has equal access to, for example, roads. Overconsumption of shared common resources often has negative outcomes, for example - taking numerous flights in a given period, using a car everyday, overgrazing on common fields.","content":"THBT the regulation of overconsumption of common shared resources is justified.","id":"xuhigxBCxMB14LWMQ9Tm"},{"language":"English","link":"","division":"","round":"13","tournamentID":"0DgXee32WEP3hxmGZExS","topic":{},"infoSlide":"","content":"THW dismantle power sharing in the North and elect the Stormont Assembly by PR STV.","id":"xuriTUXh1IYbGkK31pA6"},{"link":"","topic":{},"round":"Open_Final","infoSlide":"","division":"","content":"That states should opt to implement the Hannibal Directive in dealing with their soldiers captured by terrorists.","language":"English","tournamentID":"1bHNYzF6GWRqdpr3f5vt","id":"xvgeeree4oEBFCQ6Xj8J"},{"content":"THW allow people (including companies) to give the police money in exchange for new or increased efforts in a specified area of legitimate law enforcement.","round":"4","language":"English","tournamentID":"UWHKNxWBfNyw2FCQAxdk","link":"","topic":{},"division":"","infoSlide":"","id":"xwT28SYvWoNOEfJbEcZs"},{"content":"THBT in Times of High Unemployment, Governments Should Remove all Minimum Standard Regulations in the Labour Market.","round":"2","link":"","tournamentID":"8vo3c8Tz12muCmAoWSv2","infoSlide":"","language":"English","division":"","topic":{},"id":"xwp0UsYLrVro2r3Hb97y"},{"content":"THBT Egypt should provide a military security guarantee against the invasion of Gaza.","language":"English","topic":{},"infoSlide":"","division":"","tournamentID":"MKnFsrIKq8equaMluK21","round":"Open_Final","link":"","id":"xxOvwoKnuP7jWMYVQ5dP"},{"link":"","tournamentID":"h2z0CGY0CzqfLCKUb3wz","language":"English","topic":{},"round":"6","infoSlide":"","content":"THBT individuals displaced by a conflict should have a right to emigrate to any country.","division":"","id":"xyaMYhkDRqjgbNkuEflI"},{"link":"","tournamentID":"AhKyFYR1ZI0UjUmZnaXu","content":"THBT comedians of minority attributes should not base their comedy on stereotypes and slurs about their own attributes.","infoSlide":"","round":"Junior Semifinals","topic":{},"language":"English","division":"","id":"xzuGeaTB9XOe8pGdS8Zl"},{"content":"THW restrict CEOs from annually earning more than 12 times the salary of his or her lowest-paid employee.","link":"","tournamentID":"54Voc2YjynWxScz0a04o","infoSlide":"","division":"","topic":{},"language":"English","round":"5","id":"y13m38G5ayNLlBhYqrF7"},{"link":"","content":"THB the campaign for marriage equality is a waste of the gay community's resources.","tournamentID":"0FjoYPaEyMvQKDhX7FzX","language":"English","round":"4","infoSlide":"","topic":{},"division":"","id":"y2NhhzsMVcB4JGdeBs98"},{"division":"","tournamentID":"n7qv29PmNuF5SOe42oiz","language":"English","content":"That it would be in the interests of the Democratic Party if Kamala Harris were to win the Presidential nomination instead of Bernie Sanders.","link":"","infoSlide":"","round":"5","topic":{},"id":"y2bB6TgGHL8oosSeWGah"},{"division":"","language":"English","round":"2","infoSlide":"","tournamentID":"yFALyexswW7KtxRDS4He","content":"THBT we should prohibit public hospitals to proscribe alternative treatments (like homeopathic treatments, accupuncture or Bach flower remedies).","link":"","topic":{},"id":"y2lX3uJHvCxZiuGEE004"},{"link":"","infoSlide":"","tournamentID":"pvKZkg6sqicG5nXA2mvY","content":"THBT Pope Francis should publicly encourage Catholics to support radically redistributive government policies.","round":"ESL_Semis","division":"","topic":{},"language":"English","id":"y3Xg6SP8Xt7BT17t1W1X"},{"tournamentID":"fzTALe8bGudT9BWcFtDO","infoSlide":"","content":"This house believes that progressive social movements in developing countries should prioritise campaigning for changes to official laws and governmental policies over changes in mass attitudes and beliefs.","division":"","round":"ProAm_Final","link":"","topic":{},"language":"English","id":"y3srfWG20lLrGuSczij5"},{"topic":{},"tournamentID":"Ryhdb4JOJYP96e5oa49b","round":"4","division":"","link":"","infoSlide":"","content":"Assuming you have the technology, THW financially reward citizens for good deeds - Round 4.","language":"English","id":"y46WcpWzD2b9CjPDa85h"},{"division":"","tournamentID":"3dDCV3YYSGl8TNe5f3iO","link":"","infoSlide":"","content":"THW make the exploitation of brothels a state monopoly.","language":"English","round":"5","topic":{},"id":"y4G1jtTJqrQ5UPMIdxmc"},{"division":"","topic":{},"infoSlide":"","tournamentID":"lFdTm9Bd7AxKRkVImhbS","round":"1","link":"","language":"English","content":"THW implement a lower rate of income tax for women.","id":"y4xHeDHpC8KVCvrSedJs"},{"tournamentID":"Biz1VRjjdg8eWbm4NJr3","language":"English","content":"This house prefers a philosopher King to a tyrannical democracy.","link":"","infoSlide":"","division":"","round":"Masters_Final","topic":{},"id":"y6JQHNWNECYaqXlmg9F9"},{"link":"","round":"3","division":"","infoSlide":"","language":"English","content":"THR the commodification of indigenous art.","tournamentID":"9tZJ2IRGMD2GsDxXtVJA","topic":{},"id":"y6WUfSqqzHlMWKKza1cX"},{"content":"THW require parents to obtain the State's approval before having children.","round":"3","tournamentID":"VQZZXpisO7Sjz81KUlh9","division":"","infoSlide":"","link":"","language":"English","topic":{},"id":"y6i3nZI3VseVQsWlq1Bq"},{"link":"","infoSlide":"","tournamentID":"OLVGf3rE3KKirerr2vyk","division":"","round":"5","topic":{},"language":"Vietnamese","content":"Chúng tôi tin rằng những người phụ nữ có địa vị cao trong xã hội nên từ chối vị trí lãnh đạo trong các phong trào nữ quyền.","id":"y75Uh2i8lWE1N7ZHMkoO"},{"link":"","tournamentID":"NtnveNmZosTMD9TU0qA8","content":"THBT developed states should freeze all debt repayments from developing states until the COVID-19 crisis is effectively contained.","division":"","language":"English","round":"2","topic":{},"infoSlide":"","id":"y7Q6hdnaFlfgzjzhMwxJ"},{"round":"1","link":"","tournamentID":"hoxSwibt3yivmk88aoAD","division":"","content":"THW grant the unqualified right to assisted suicide to all mentally sound adults.","infoSlide":"","language":"English","topic":{},"id":"y99xv22TiWtj7LJc30qo"},{"language":"English","link":"","infoSlide":"","content":"THW ban any technology that can delete or alter a person's memory.","round":"2","tournamentID":"yhJgdE0VFcsqlvWffep1","topic":{},"division":"","id":"y9A1J6VIJTCfDUjbtoBs"},{"tournamentID":"6mCNGJYhhrCUYIhAm6FN","infoSlide":"","language":"English","content":"This house believes that the UK government should remain silent when Donald Trump makes statements that are contrary to UK values.","topic":{},"round":"Open_Final","link":"","division":"","id":"y9V8DShHvzrZNdYCmkdv"},{"round":"Novice_Final","infoSlide":"","division":"","tournamentID":"1DUltfq5WOlWowHiNs5h","topic":{},"link":"","language":"English","content":"THW not grant employers access to applicants' criminal records.","id":"y9j0qtoYc8NQyUJYsYU2"},{"topic":{},"language":"English","round":"3","tournamentID":"9mfNKBqpq9HzOZ9GltTe","infoSlide":"","content":"This House believes that the EU should introduce a unified tax system for companies.","division":"","link":"","id":"y9w2NxTq6Ct1uf1GGnok"},{"topic":{},"tournamentID":"MgpFX31hoBasrUiOV7Eu","infoSlide":"","content":"TH, as Japan, would support closing all U.S. military bases on Japanese territory.","language":"English","division":"","round":"Novice_Quarters","link":"","id":"y9y700XgWazVi3LDqvWN"},{"infoSlide":"","topic":{},"link":"","division":"","language":"English","round":"1","tournamentID":"tLlByvzEQCgHw5hl7kZg","content":"TH, as the academic and debating communities of the UK, would not invite George Galloway to our public debates.","id":"yA7YKsqkiHCjZfIdjVfO"},{"division":"","topic":{},"infoSlide":"","content":"As a black middle-class South African, this house would vote ANC.","language":"English","round":"4","link":"","tournamentID":"roH9ICCjwscIePFGM61P","id":"yAMHFvk2VXulLEWZJ7gS"},{"tournamentID":"wZYAoJ8UubcT3x3E0CVj","division":"","link":"","round":"3","infoSlide":"","language":"English","content":"THW prohibit provincial and local governments from offering tax incentives to lure corporations to open business in their domain.","topic":{},"id":"yATZgrXBZnXTqMZySTeB"},{"content":"THBT treasure hunters should have possession of any artefacts they find.","infoSlide":"","round":"Open_Semis","topic":{},"tournamentID":"xik6XdvZ0JGG1hySfuwC","division":"","link":"","language":"English","id":"yApTvlxe7oOjYuss3JhJ"},{"division":"","tournamentID":"DNe0c1xNBVoG02MsO66g","language":"English","round":"8","content":"THW abandon nuclear energy.","infoSlide":"","link":"","topic":{},"id":"yAt66zkhepusAAlvWlm9"},{"link":"","tournamentID":"RpQnqbHAxB8fhWBQcnaj","content":"This House Would Impose Criminal Laws To Crimes Comitted By Users Of Avatars In Virtual Worlds (Such As ’Second Life’).","language":"English","topic":{},"infoSlide":"","round":"Open_Semis","division":"","id":"yBCjYjtK93y4rQpXNpY5"},{"division":"","language":"English","topic":{},"tournamentID":"gaW3hl0mF758MDm7UkNs","infoSlide":"","link":"","content":"THW require all isolated religious communities to give all 18-year-olds a Rumspringa.","round":"Open_Semis","id":"yC0geJnkNCzmR0ejDyfZ"},{"round":"3","language":"English","content":"THR the Rise of the Women's Magazine.","infoSlide":"","link":"","topic":{},"division":"","tournamentID":"BvbIXgEeyaIcozyDf6R5","id":"yCYPSDk4CDJFG7CbkDpc"},{"content":"THW disallow religious leaders from publicly endorsing, rejecting, or commenting on any political party or candidate.","infoSlide":"","language":"English","link":"","tournamentID":"1zpwTG4R66xy1c4CrMeq","round":"5","topic":{},"division":"","id":"yCbAyTbz10xlWcJ816xt"},{"tournamentID":"AKtcioaPMHcBM5C3fCCP","content":"THBT the NAACP should publicly condemn white artists who appropriate black culture.","division":"","language":"English","topic":{},"link":"","infoSlide":"","round":"2","id":"yCqjCnRgRfcfMV0nVaqd"},{"language":"English","link":"","topic":{},"tournamentID":"d13kY0BTy5kVOwwqu54R","content":"THIS HOUSE WOULD require all government ministers to have majority approval from the professional bodies their department has legislative responsibility for. (For example, the UK Minister for Health would need majority approval from the British Medical Association).","division":"","round":"2","infoSlide":"","id":"yDTaxUI0yeGgfpYfOdFd"},{"content":"THBT humanitarian organisations should, and should be allowed to, give funding, resources or services to illegal armed groups when this is made a condition for access to vulnerable civilians.","tournamentID":"xUGmMsj95M2w5CV6WYVA","topic":{},"division":"","infoSlide":"","round":"ProAm_Semis","language":"English","link":"","id":"yDYkkaYZ0Q6EKTGRRWBJ"},{"link":"","language":"English","content":"That we regret the rise of influencers.","division":"","topic":{},"round":"Novice_Semi","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","infoSlide":"","id":"yDzQ7eqP7pc6h2im2q0T"},{"infoSlide":"","content":"TH, as Harry Potter, would have used The Imperius Curse on Voldemort and control him to do good for the society.","tournamentID":"pp2oK2CPkxitjQPpwO4o","division":"","round":"4","language":"English","topic":{},"link":"","id":"yEojYM9OvJcKwSLoZLNd"},{"tournamentID":"KE7jdAyW9az9nKVb9FMV","content":"THW tax parents of obese children.","round":"1","language":"English","topic":{"publicHealth":{"title":"Public Health","check":true}},"division":"","infoSlide":"","link":"","id":"yF97xoYbw0dW8jWfO12G"},{"link":"","language":"English","tournamentID":"bTRRi7oLbaQA5e1qz6Qc","content":"TH, as a member of Pakistan's Economic Advisory Council, would resign.","round":"Open_Final","infoSlide":"","topic":{},"division":"","id":"yFfcwGxDwFRia4tjatEr"},{"language":"English","division":"","link":"","tournamentID":"pQSBc1H8lG2P8ftbCWZ8","infoSlide":"","content":"This House believes that supreme/constitutional courts should not have the power to strike down legislation.","round":"3","topic":{},"id":"yFiOykvyw18X49bcDcYZ"},{"topic":{},"content":"THBT China “should fix” North Korea.","language":"English","round":"Open_Semis","infoSlide":"","link":"","division":"","tournamentID":"KMM87DnmWFjc4UzTdkjp","id":"yGGax1QP1CZqsLBogrFv"},{"division":"","topic":{},"link":"","language":"English","round":"3","content":"THBT the United Kingdom should abolish its monarchy.","tournamentID":"U2WbXKmpxuh7OC6qZ1zX","infoSlide":"","id":"yGIiBMyRbTVtpPN7IpFd"},{"language":"English","topic":{},"content":"This house supports democratic governments using social disgust as a grounds for restricting public speech or display.","infoSlide":"","tournamentID":"dF61f0kc1Q0KQCGUhM1l","division":"","link":"","round":"2","id":"yGRp6dhFiqYL3W9XQq3P"},{"division":"","language":"English","link":"","content":"Assuming the two are mutually exclusive, THW prefer wage subsidies over a raised minimum wage.","round":"3","tournamentID":"vURFmLn4wdqX6ZbK0ini","infoSlide":"","topic":{},"id":"yGu8oD3XkDHiIXWrxU89"},{"division":"","infoSlide":"","topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"}},"round":"","tournamentID":"mNwitMoNsjWupgwG8pR5","content":"Chúng tôi ủng hộ việc thành lập các trường học dành riêng cho cộng đồng LGBTQIA+.","link":"","language":"Vietnamese","id":"yH3VOYDIYje3LlDNI4ab"},{"topic":{},"round":"2","content":"Assuming they exist, THW prefer not to know the identity of one'a soulmate.","link":"","infoSlide":"","division":"","language":"English","tournamentID":"G1sEnthTpFCqlrrU3bnJ","id":"yHVTlcxPZ8Ue15CkBdVK"},{"division":"","infoSlide":"","content":"THBT billionaires have a moral obligation to donate their money to the US government instead of charities.","link":"","topic":{},"language":"English","round":"5","tournamentID":"ns7JoMyNUkrrS5A6Rbw7","id":"yHjVLobD9mNXyY7AE47S"},{"link":"","language":"English","division":"","tournamentID":"dF61f0kc1Q0KQCGUhM1l","round":"3","infoSlide":"","topic":{},"content":"This house regrets the shift in focus within the academic study of history from studying great figures and institutions to studying cultural forces and the experiences of ordinary people.","id":"yHmlNj47GzheLChV4eM7"},{"link":"","language":"English","topic":{},"tournamentID":"uikc98CupbamVyAQIHsf","round":"4","infoSlide":"","division":"","content":"THBT western nations should require companies seeking to sell products within their borders to abide by national worker’s rights legislation, regardless of where the goods were manufactured and at all stages of the production process.","id":"yJ7cadoWqi1S7PPg3jLo"},{"topic":{},"language":"English","tournamentID":"jGziThakECOfXgvs0uHl","link":"","content":"THBT CDA should vote with the ruling coalition if proposed laws satisfy the Senate criteria of redelijkheid (reasonableness, judiciousness, fairness) and samenhang (congruence with other laws) (addendum: instead of for other political criteria).","division":"","round":"4","infoSlide":"","id":"yJdVvAkcHV8sW805EK1r"},{"round":"3","topic":{},"infoSlide":"","link":"","division":"","language":"English","content":"THBT Facebook, Google, and Yahoo should take active steps to prevent the formation of \"filter bubbles\".","tournamentID":"K2iCOiuVrS3D8RzjGpNe","id":"yKqDlNCPQ8uWjfDVbn80"},{"language":"English","link":"","round":"5","content":"THBT historically oppressed communities should heavily prioritize teaching values of individualism to their children.","infoSlide":"","topic":{},"division":"","tournamentID":"ZjN9B5kqPitiGVpXIpHO","id":"yKycxtL1EwNTg1T0j5yO"},{"content":"THW make participating in sports activities mandatory.","tournamentID":"nMUJTA4Krf9MyO7MGVzA","division":"","topic":{},"language":"English","link":"","round":"10","infoSlide":"","id":"yLSXYgwDbEVcTvkWzhD7"},{"topic":{},"infoSlide":"","language":"English","content":"This House believes that developing countries should prioritise the massive construction of infrastructure over the direct provision of high subsidies and social welfare.","division":"","tournamentID":"oFJV1Acc1Gr7t6B77LSK","round":"Open_Semi","link":"","id":"yLdgJytAZt0HgOuKsGfT"},{"round":"1","division":"","content":"Should media be banned from speculative or evaluative (judgmental) reporting during court cases?.","infoSlide":"","topic":{},"language":"English","tournamentID":"mveJVSu6tAxKx2Vp4IB0","link":"","id":"yLltEzjP8JO4jkv3LGBR"},{"tournamentID":"aOxBzmkAGXikdnjOD33g","division":"","content":"THW remove all restrictions on freedom of speech.","round":"2","topic":{},"language":"English","link":"","infoSlide":"","id":"yMcQdJJnr9mIYrebLM0c"},{"topic":{},"tournamentID":"H8ZxEfGXutRQeJ3mqisV","content":"TH, as fans of the club, supports a takeover by the Saudi Arabian Public Investment Fund.","round":"2","division":"","link":"","language":"English","infoSlide":"","id":"yO0uwLQSlrqLdonw9ENy"},{"tournamentID":"a7Zdmoc5GpY9KlKkDEVg","content":"THS the creation of Personal Artificially Intelligent Robotic Romantic Partners.","link":"","language":"English","division":"","topic":{},"round":"2","infoSlide":"","id":"yOPJ0MtuiIY3NZ7LtInd"},{"language":"English","topic":{},"infoSlide":"","round":"Open_Final","tournamentID":"DLFJWaIyHnSlvFofovjc","link":"","division":"","content":"THW tie the liabilities of borrowers to the value of their provided collateral.","id":"yOhoYuMwIALmCnh5e7aL"},{"infoSlide":"","tournamentID":"UefabB9q8iptn7SCi47p","language":"English","division":"","topic":{},"round":"4","link":"","content":"THBT the western companies and investors should pull out of the Saudi Arabia's Neom project.","id":"yPpsl6loOJk4GH0uluwM"},{"link":"","content":"THB that people who attend mass are morally responsible for the actions of the Catholic Church.","topic":{},"round":"Open_Quarter_2","division":"","tournamentID":"yhJgdE0VFcsqlvWffep1","infoSlide":"","language":"English","id":"yQXvUneR6Kw0Iyx09y0y"},{"language":"English","link":"","infoSlide":"","division":"","content":"THW require all photoshopped images to be labelled.","topic":{},"tournamentID":"BXqPhfwak2R1kYHV48bp","round":"3.3","id":"yRCwLCmdtzBTFjM2M30b"},{"link":"","tournamentID":"0mv3ToZPy0AwAsRnpZBN","division":"","infoSlide":"","topic":{},"content":"This House would ban for-profit universities and colleges.","round":"1","language":"English","id":"yRLxOXLGSFUO8wdqve0Q"},{"division":"","round":"5","infoSlide":"","language":"English","content":"Thw create an international organization to facilitate private individuals suing foreign governments for causing serious harms to their communities.","tournamentID":"9hmPqfKzlDmhAISeJsts","topic":{},"link":"","id":"yRcz49znlQWigNgwVXeJ"},{"language":"English","division":"","content":"THBT major Hollywood studios should increase the number of lead roles for female villains substantially in their blockbuster films.","link":"","round":"4","topic":{},"tournamentID":"2hleRVQkc8xbkOnxRKOY","infoSlide":"","id":"yRfucc0DF7Mg7sMVK5lR"},{"round":"3","infoSlide":"","division":"","language":"English","content":"thw deny tax-exempt status to religious institutions that restrict women from accessing leadership or teaching roles.","tournamentID":"9hmPqfKzlDmhAISeJsts","topic":{},"link":"","id":"yTTtEacEEQQvKqJ67sWr"},{"round":"4.4","topic":{},"language":"English","division":"","link":"","tournamentID":"1leOvfvlbNAIDzW6UnkK","infoSlide":"","content":"THBT imagination is better than knowledge.","id":"yTd2ymGeN5XFWkBAW4kN"},{"language":"English","round":"4","content":"THW stop romanticizing the 1971 liberation war of Bangladesh.","infoSlide":"","link":"","topic":{},"tournamentID":"TSpa3WXkfFl9nQFbVbmi","division":"","id":"yU3NuJOBmuVlgzFLwAYH"},{"link":"","tournamentID":"WqXUc7EMDvkqqg3BVCtf","content":"TH would allow EU citizens to donate to political parties in any EU state.","division":"","language":"English","round":"ESL_Semis_Aborted","topic":{},"infoSlide":"","id":"yU6UcvzkvooRLP5AeCnb"},{"link":"","division":"","content":"TH supports the rise of language-generating AI.","round":"Open Octofinals","language":"English","tournamentID":"uJGjvsaThnluwVzoHFXm","topic":{},"infoSlide":"For the purpose of this debate, 'language-generating AI' is AI that can generate fluent streams of text after processing billions of words from sources such as books, articles and websites. Language-generating AI could conceivably have the potential to write press releases, stories, debate speeches, guitar tabs, scientific hypotheses, technical manuals, code, and more. In limited contexts, the latest versions of the advanced language generating technology were found to be indistinguishable from human writing, however the technology as a whole is still error-prone. Language-generating AI already has commercial & research applications by large organizations, and the technology is expected to rapidly develop in versatility & scale in the near future.","id":"yXAPGhiGtbcd9lhHqzxS"},{"topic":{},"content":"THW, as the USA, withdraw all military presence from Yemen.","infoSlide":"Civil war erupted in Yemen in 2014 when Houthi rebels took control of the capital, Sanaa in the North, forcing President Hadi to flee to the South. In 2015, a Saudi-led coalition launched an offensive in Yemen against the Houthis. Shortly after taking office, President Donald Trump intensified American efforts in Yemen, backing the Saudi-led coalition offensive. Members of the US Armed Forces have provided aerial targeting assistance, intelligence sharing, logistical support, and a naval blockade of Houthi-held territories in “Operation Restoring Hope”.","division":"","tournamentID":"IXq1CdgyiKmkyEDJURrV","round":"5","language":"English","link":"","id":"yXUnmsnJoe16WTJjecCO"},{"tournamentID":"H2Xg2NvZoEwZtgc8tzmz","infoSlide":"","division":"","topic":{},"link":"","language":"English","round":"1","content":"THS the rise of teenagers at the forefront of social movements (e.g. Gretta Thunberg, Malala Yousafzai, the Parkland students).","id":"yXzouKTzsoq0bUBWxjJN"},{"link":"","division":"","infoSlide":"","language":"English","tournamentID":"gmusL4yQ3HD8FyegVRpk","topic":{},"content":"THBT laws about abortion should be decided in women-only referenda.","round":"1","id":"yYFJKg3ZfhwTjjzQ4jQH"},{"language":"English","content":"THBT members of the Eurasian Economic Union should introduce a new common currency.","round":"Open_Semi","infoSlide":"","tournamentID":"3NTAi2gNk5Uyy3NuACO5","division":"","link":"","topic":{},"id":"yYHNc7Q5V9Ek7CdTaLDJ"},{"content":"In cases when economic projects encroach on their land, THBT indigenous communities should strive for compensation over opposing the project altogether.","topic":{},"tournamentID":"DeCtrDtTjNPkklRZT0x6","infoSlide":"","link":"","round":"1","division":"","language":"English","id":"yZbFRNaQsWRfJ6mAn3xj"},{"language":"English","round":"Open_Semis","tournamentID":"kM1DLhtxZLQbdLIScfM9","topic":{},"content":"THBT NATO should create a 'safe zone' in rebel-held territory within Syria.","infoSlide":"","link":"","division":"","id":"yZqItS2zgpFgPenTu09i"},{"infoSlide":"","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"division":"","round":"","tournamentID":"37eWQ7OoHqsPgaN53lHV","content":"THO matchmaking TV shows.","language":"English","link":"","id":"yZqjqLolPTrTjWQrec3o"},{"link":"","tournamentID":"JsJHH6odeVuMVnQ8A5bN","round":"4","content":"THR the romanticisation of Dark Tourism.","division":"","language":"English","topic":{},"infoSlide":"","id":"ya7RUYDc8Ww4uJXOBpYN"},{"topic":{},"content":"THBT developing countries should heavily disincentivise rural to urban migration.","division":"","tournamentID":"7iuaP5vcRAvHJFM4QYmP","language":"English","round":"5","infoSlide":"","link":"","id":"yaBp2k1cCG6rgxTO1JAj"},{"language":"English","content":"THBT Greece should ban Sharia law in Western Thrace.","round":"2","topic":{},"division":"","infoSlide":"","link":"","tournamentID":"o85wPSMfUIKlsHQtkpnr","id":"yaMi2Z47ryNFfXtATuhp"},{"language":"English","infoSlide":"Appeasement is a diplomatic policy of making political or material concessions to an aggressive power in order to avoid conflict. The term is most often applied to the foreign policy of successive British governments, particularly that of Neville Chamberlain, towards Nazi Germany and Fascist Italy between 1935 and 1939. Some consider the Western response to Russia’s annexation of Crimea, US policy towards North Korea, and the recent Abraham Accords between Israel and Middle East states as modern-day examples of Appeasement.","tournamentID":"IXq1CdgyiKmkyEDJURrV","link":"","content":"THO the narrative of condemning appeasement.","topic":{},"division":"","round":"National Semifinals","id":"yasCclQmh6RIW0W90lr0"},{"infoSlide":"","round":"ESL Final","link":"","content":"THW not induct successful athletes strongly suspected to have used performance enhancing drugs to their sport's Hall of Fame.","division":"","language":"English","tournamentID":"CBVZREYhjV5bhCHOuWjU","topic":{},"id":"ybgZJOkdZRVNzfCgOpjW"},{"content":"THBT one party's maximum share in the parliament should be limited to 50% + 1 place.","link":"","division":"","round":"2","language":"English","infoSlide":"","tournamentID":"JlXdLu3VijXjgOdO21tX","topic":{},"id":"ybpApzdTGEAY0XToyCgR"},{"content":"THW allow third parties (i.e. individuals or companies) who have been harmed by a workers strike to sue the union(s) for damages.","infoSlide":"","language":"English","link":"","topic":{},"division":"","round":"3","tournamentID":"hfhyqiLO3boM6Fbp0Jvs","id":"yc3bQ6G3ScclVjcbcxkJ"},{"round":"Open_Final","link":"","content":"THP a world where people believe you should maximize productivity to a world where people believe you should maximize leisure.","infoSlide":"","language":"English","division":"","tournamentID":"68SrKFb9XtsQrLtqLtjO","topic":{},"id":"ycpCEBugwqI29lPbdNml"},{"content":"THB the U.S. should impose substantial tarriffs on Chinese goods until China ceases all currency manipulation.","tournamentID":"yxjvIJregbdMEVkOnzCg","topic":{},"division":"","round":"4","infoSlide":"","link":"","language":"English","id":"ydChv2PIfnskUUTR7I0R"},{"content":"THW set ethnic quota per school.","infoSlide":"","tournamentID":"oopKRuBfN6tSw3UTWZKT","link":"","division":"","round":"3","topic":{},"language":"English","id":"ydCqwQ2bXra0DWePkscF"},{"topic":{},"link":"","division":"","content":"THR the rise of Choice Feminism.","infoSlide":"","language":"English","tournamentID":"yxjvIJregbdMEVkOnzCg","round":"Open_Quarters","id":"ydpKxgAsNvJa3Nu75UXn"},{"content":"THBT feminist organizations should prioritize progressive, well off communities as opposed to communities that are more financially needy, but choose to adhere to strong traditional gender roles.","language":"English","infoSlide":"","division":"","topic":{},"link":"","round":"4","tournamentID":"KMhBpmj1LWPj5LN0aFUK","id":"ye9mcQCa0h7GWDyBPlMg"},{"content":"Following the total defeat of the French army in 1940, the British Government received an offer of peace from Nazi Germany. Any terms would have left Hitler in control of continental Europe, but would have prevented (at least in the short-term) an attack on Britain. The Cabinet of new Prime Minister Winston Churchill was divided over whether to enter into negotiations. TH, as Winston Churchill, would argue against peace - Round 5.","round":"5","topic":{},"tournamentID":"nXN2yUG7soxwCp4xidzj","language":"English","infoSlide":"","division":"","link":"","id":"yeGdRb1Gakst8tPb6Gub"},{"language":"English","division":"","content":"Should we introduce diversity quota, rather than women’s quota?.","link":"","round":"1","tournamentID":"1cqzoXItQEaNAhU2qjNL","infoSlide":"","topic":{},"id":"yeijm9jpBwXUZiRiGfo2"},{"topic":{},"tournamentID":"9MaCpfb2p23wkk8OOSBf","link":"","language":"English","division":"","infoSlide":"","round":"4","content":"THBT China should pay reparations to developing nations severely affected by COVID-19.","id":"yg1pWJQwCNcRhWK3fEDp"},{"topic":{},"tournamentID":"B2zJ5QeyI7MVcboS7m4U","division":"","language":"English","link":"","infoSlide":"","round":"5","content":"THBT companies should not take public stance in gay right issues.","id":"ygjp3lLz77e52vndMrZ7"},{"content":"THBT the feminist movement should oppose presumptive custody in favor of women in cases of divorce.","language":"English","topic":{},"infoSlide":"","tournamentID":"1XSX7FHkgfyCn1pjSqbi","round":"3","link":"","division":"","id":"yh0a4zAQiVOOwBnuhz6n"},{"infoSlide":"","division":"","link":"","tournamentID":"wA1XDLHJESmSgLsfZ9Qe","round":"ESL_Final","topic":{},"language":"English","content":"This House believes that the United States government should cede the authority to prosecute criminal trials involving African Americans (as either victims or alleged perpetrators) to African American interest groups, and allocate funding for this.","id":"yh6gI5sXdMP3PEE3GCxT"},{"content":"Chúng tôi sẽ tạm thời nới giãn triệt để các tiêu chuẩn lao động tối thiểu trong các thời kỳ tỷ lệ thất nghiệp cao bất thường.","link":"","tournamentID":"FZTHJ19pUWQG2SZNeOvr","infoSlide":"","round":"","division":"","language":"English","topic":{"economics":{"title":"Economics","check":true}},"id":"yhzpOZszWJj6wKjY1mNh"},{"link":"","round":"","topic":{"irw":{"check":true,"title":"International Relations/War"}},"content":"THBT South Korea and North Korea should stop all attempts at unity and treat each other as two independent nations.","infoSlide":"","tournamentID":"sgcqNV5ntCoa4H8glRBu","division":"","language":"English","id":"yiZAXAL3Orm77YE4SXWy"},{"content":"THBT all undocumented minors should be granted permanent residency.","tournamentID":"kwsuFgaQ5lYbaXVGrGal","division":"","link":"","topic":{},"round":"5","language":"English","infoSlide":"","id":"yiZFsmm7IWPnvtwnZGEG"},{"link":"","round":"Open_Final","content":"This house believes that Britain should pay reparations to Jamaica.","tournamentID":"WMhTu5CeggGVUPxkfYq6","topic":{},"infoSlide":"","division":"","language":"English","id":"yiaW6AjyhjWz7V3XX9nN"},{"division":"","link":"","infoSlide":"","content":"THBT all countries’ education systems should focus on the teaching of English.","language":"English","round":"2","topic":{},"tournamentID":"DfdqiFdfgcruP1pBNiHK","id":"yjNzVdQSG7EGOv6f3fjV"},{"language":"English","topic":{},"infoSlide":"","round":"Open_Semis","division":"","link":"","content":"TH believes that secular states should force the Catholic church to accept the ordination of female bishops.","tournamentID":"PULmrzx6k00EzEt7BxfG","id":"yjWv6ez8UB8ulLUqh7rz"},{"topic":{},"round":"1","infoSlide":"","language":"English","tournamentID":"oeH2vC3Ht09TthfmAx2F","division":"","content":"THW officially register Pastafarianism as a religion in Poland.","link":"","id":"yjr59bR0LQB3EhtoZvFD"},{"topic":{},"tournamentID":"kM1DLhtxZLQbdLIScfM9","round":"4","language":"English","link":"","content":"TH, as a female visitor to WestWorld, would choose to wear a black hat.","infoSlide":"","division":"","id":"yk8JHLBdbFwdrgUZCLnN"},{"content":"THW create ethnic diversity in neighborhoods by introducing housing quotas.","infoSlide":"","link":"","round":"Open_Final","division":"","tournamentID":"lPXoAGmpaSNRUUBSEwTy","topic":{},"language":"English","id":"ykQ0wrAGeBW2NC2V1QoE"},{"tournamentID":"G40265rxZRrwSbZ3fQSJ","content":"You have invented a pill that would compel the user to tell the truth. THW destroy it.","round":"Open_Final","division":"","language":"English","link":"","topic":{},"infoSlide":"","id":"ykmAMT5joU2RmquUVB77"},{"language":"English","infoSlide":"","division":"","content":"That we regret the culture of fearing death.","topic":{},"round":"1","link":"","tournamentID":"oaIuwyOX7NBIwaiSaVJ8","id":"ykwaymBqVKZwJyisC4D3"},{"infoSlide":"","round":"1","content":"THW decriminalize incest between consenting adults.","tournamentID":"5dx9HmyPaBDPB6JstQGb","language":"English","division":"","topic":{},"link":"","id":"ylUyOcpPk8dfLKtBB2l8"},{"topic":{},"tournamentID":"h2z0CGY0CzqfLCKUb3wz","link":"","division":"","round":"3","content":"THW eliminate adoption preference based on race and ethnicity.","infoSlide":"","language":"English","id":"ym9ziSas3Cpwej4YHBmf"},{"topic":{},"division":"","link":"","content":"THBT international media organisations should only use local reporters to cover foreign stories and events.","tournamentID":"HtADLvDpWQsx5qtLh5A9","infoSlide":"","round":"Open_Semi","language":"English","id":"ymMOoKiGOB6x4pvNtMUM"},{"tournamentID":"m6JzV67uYJSVBRpAbgL7","infoSlide":"","link":"","language":"English","content":"THBT post-conflict societies should construct a national identity around a shared ethnicity, as opposed to a common culture.","topic":{},"division":"","round":"HS_Final","id":"ymbBvZphAJiGGPwkNDRD"},{"link":"","infoSlide":"","topic":{},"division":"","content":"Assuming a technology exists which causes people contemplating committing violent crimes to feel nausea and pain, rendering them unable to think about or commit a crime.","language":"English","round":"Open_Final","tournamentID":"FfDrngjMOaUCYfZgnHPC","id":"ymklNqKZrsGL3JYypmCG"},{"language":"English","content":"This house believes that comedians should not be held to modern standards of political correctness.","link":"","division":"","round":"6","topic":{},"tournamentID":"QDGMrdrzlFCxVT5WcqNn","infoSlide":"","id":"yn9cMrgD5uMFTfiDC6vs"},{"round":"12","topic":{},"tournamentID":"nMUJTA4Krf9MyO7MGVzA","division":"","content":"THW put a cap on the salaries of top athletes.","infoSlide":"","language":"English","link":"","id":"ynYuLDOa03U1fsBdYQ5K"},{"link":"","tournamentID":"Tu7KRlumwIMZzCczqcGG","content":"THW undertake military action against the Syrian government.","infoSlide":"","language":"English","division":"","round":"Open_Final","topic":{},"id":"yngkMIMM4oc9uOW5Ajzr"},{"tournamentID":"9l3qvCwMUUUzEdTVXCoM","language":"English","infoSlide":"","content":"THW alter World Trade Organisation rules to allow poor countries to erect protectionist barriers against rich countries.","division":"","link":"","round":"Open_Semis","topic":{},"id":"ynyZynEpbUgY7BFBQIDY"},{"language":"English","division":"","link":"","round":"4","infoSlide":"","topic":{},"content":"THBT self proclaimed feminists should not alter themselves(e.g. cosmetic surgery, make-up).","tournamentID":"j4lF8rhbFUyC0UTwoz2G","id":"yo6Mmfil1LwjxlJckBkA"},{"link":"","topic":{},"infoSlide":"","language":"English","tournamentID":"MPR74LYpg8Ru6paM45U9","round":"Open_Semis","division":"","content":"THW make the punishment for drunk driving equal to manslaughter, even if the driver caused no accident.","id":"yoG9Kclzkhm9lBRuTH1O"},{"infoSlide":"The Social Dilemma (2020) là một bộ phim của Netflix với nội dung xoay quanh cách các mạng xã hội điều khiển người dùng bằng quảng cáo và thu thập thông tin cá nhân của họ nhằm tối đa hóa lợi nhuận. Đồng thời, bộ phim cũng tố cáo cơ chế hoạt động của chúng ảnh hưởng nghiêm trọng đến tâm lý người dùng, gây nghiện và có thể trở thành các công cụ chính trị. Tuy nhiên, bộ phim nhận sự chỉ trích từ đại diện Facebook về việc nó không có sự thể hiện đa chiều và đã \"ngó lơ toàn bộ nỗ lực của các công ty đã cảnh báo người dùng, cũng như giải quyết các vấn đề được khiếu nại\".","link":"","division":"","language":"Vietnamese","round":"Quarterfinals","tournamentID":"mkrRVvz5EWSZie6LBtCH","topic":{},"content":"Chúng tôi ủng hộ sự phản ánh một chiều của The Social Dilemma.","id":"yoa6qG8YqvrxPO1RcRhD"},{"infoSlide":"","division":"","tournamentID":"p3EOrIRx2qBcnN8fXbHh","link":"","content":"THR the rise of pop-cultural authories on what constitutes good sex.","round":"5","topic":{},"language":"English","id":"yofqTKTq1K4NwMl4D3W2"},{"round":"3","language":"English","division":"","tournamentID":"7lMrN2aiwSzD5rzPFwHz","infoSlide":"","content":"THW make higher education free.","topic":{},"link":"","id":"yozBKlnJLYHY3rcS2KG6"},{"topic":{},"tournamentID":"wE88mu5ettNTfJEaJQY1","link":"","content":"TH regrets the rise of call out culture.","infoSlide":"","round":"Open_Semi","division":"","language":"English","id":"ypDr1im9Ehmiw1pBgWHL"},{"link":"","tournamentID":"YWYo651ohahlD6OyzCXj","language":"English","infoSlide":"","division":"","round":"3","topic":{},"content":"THBT the Labour Party should end its affiliation with trade unions.","id":"ypIPYHOadMoXjhBkJo5m"},{"content":"THW establish an easily performed procedure for individuals to delete the entirety of their internet and social media footprint.","topic":{},"link":"","round":"3","division":"","language":"English","infoSlide":"","tournamentID":"zcO3QSYEVhsJojnUCCNl","id":"ypmUO68rxRIhrXSiI0XN"},{"tournamentID":"RcPsgEaIchl07oq9iFxn","language":"English","infoSlide":"","link":"","topic":{},"round":"Open_Final","content":"In the name of the people: do we need jury panels in our courts?.","division":"","id":"ypqYSaavXRjSeijVrY44"},{"content":"THW partition Sudan.","round":"8","division":"","tournamentID":"t2juKb62UT5HJ0kruUAw","language":"English","link":"","topic":{},"infoSlide":"","id":"yrIZYgyEdS9dA6d5KzDg"},{"link":"","division":"","content":"THBT states should not prosecute members of terrorist organisations (e.g. ISIS, Al-Qaeda) who surrender to those states.","topic":{},"language":"English","round":"1","tournamentID":"NBT7RwLHeAApXuOtrQpt","infoSlide":"","id":"yrMHynqmZEtVCKtZJ5W2"},{"division":"","infoSlide":"","topic":{},"tournamentID":"yDUOVgl6qLMa2DH8lCD5","content":"THBT causing deliberate harms to enemy civilians, by the weaker side, is a justified tactic in asymmetrical warfare.","link":"","round":"5","language":"English","id":"yrNF9fe2Y3xpi0JUhK2p"},{"infoSlide":"","round":"5","tournamentID":"VPUCPVj9FHFW0uzJinv0","content":"This house supports independence for Quebec.","division":"","language":"English","link":"","topic":{},"id":"yrZuteq5M4BKf5uC2Cvp"},{"round":"Open_Semis","topic":{},"language":"English","link":"","tournamentID":"Ryhdb4JOJYP96e5oa49b","content":"THBT the USA should take aggressive military action against the Syrian regime - Semi Final 2.","division":"","infoSlide":"","id":"yrvocjhf5u40z4OlQc9f"},{"division":"","link":"","topic":{},"language":"English","tournamentID":"m6JzV67uYJSVBRpAbgL7","infoSlide":"","content":"TH opposes the narrative that refugees' entitlement to help should be conditional upon their potential utility to the economy.","round":"HS_Final","id":"yryn9eDHZBlGUokmeft3"},{"link":"","language":"English","topic":{},"infoSlide":"","content":"THBT sporting teams should change their names where they are considered insensitive (e.g. Crusaders).","division":"","tournamentID":"tKXlShZl2vec49jC1bif","round":"1","id":"ysQi6XmN4eHX4tW61KQz"},{"division":"","tournamentID":"H2ZQZD4EPmxpktxvJnUz","infoSlide":"","language":"English","topic":{},"link":"","content":"THR the commercialization of religious holidays.","round":"1","id":"ysoDm4fh7xQHaqmexaCH"},{"link":"","tournamentID":"7bcIb5yS1YVpFE3hzoDf","content":"THP a world with memory writing technology.","infoSlide":"","round":"4","topic":{},"division":"","language":"English","id":"ystqDxs8x9AN6lvtsMz9"},{"content":"TH, as Israel and the USA, would extend heavy military and economic aid to (only) Syrian rebel groups who publicly endorse immediate peace with Israel.","language":"English","infoSlide":"","round":"3","link":"","tournamentID":"U5yvbgLSUvue8vCmib81","topic":{},"division":"","id":"ytpaptoUqZpZL02NG7AR"},{"topic":{},"infoSlide":"","division":"","round":"Open_Semi","tournamentID":"xoiSW3hTToX15wvrD6gA","content":"THA the Vatican regrets the China-Vatican deal on the appointment of Chinese Bishops.","language":"English","link":"","id":"yu3VwIIADF10JHMPfGr0"},{"infoSlide":"","round":"4","division":"","topic":{},"link":"","content":"This House would place a constitutional limit on the size of government as a percentage of GDP.","language":"English","tournamentID":"eypKKJZLZblnh6KffyC5","id":"yuIBD6VqwuenR79wSPBy"},{"infoSlide":"","division":"","topic":{},"link":"","content":"THBT governments should provide significant financial incentives for urban citizens to move to rural areas.","tournamentID":"Wg2225mgODwBGF4GMBLR","round":"6","language":"English","id":"yuTGef3cYfkyuF6tqInk"},{"topic":{},"division":"","content":"THW only imprison individuals who pose a direct and continuing threat to society.","tournamentID":"0bpNzjTgN71TZQEkHTak","language":"English","round":"3","link":"","infoSlide":"","id":"yv8iVWhBLnnaLOSnWzeq"},{"infoSlide":"","division":"","language":"English","link":"","content":"THBT Labour MPs elected in Maori seats should publicly criticise any Labour Party policy that hurts Maori.","topic":{},"tournamentID":"tKXlShZl2vec49jC1bif","round":"Open_Semi","id":"ywNdf6I769M9fGEzZfc0"},{"round":"Grand Final","division":"","topic":{},"tournamentID":"2gsOERqtXqSETJffXbnj","infoSlide":"Bức ảnh của Alan Kurdi, cậu bé 3 tuổi người Syria bị sóng đánh dạt vào bờ biển Thổ Nhĩ Kỳ năm 2015, đã được chia sẻ khắp thế giới như một trong những minh chứng sống động và ám ảnh nhất về cuộc khủng hoảng di cư do xung đột Syria gây ra. Bức ảnh đã đánh thức lòng trắc ẩn của hàng triệu người trên toàn thế giới và mang về khoản tiền từ thiện kỉ lục từ các mạnh thường quân trên toàn thế giới dành cho những nạn nhân.","language":"Vietnamese","content":"Chúng tôi hối hận việc công bố ảnh của bé Alan Kurdi.","link":"","id":"yxPvWEkJHohwENXphYEj"},{"link":"","division":"","topic":{},"infoSlide":"","content":"THBT despite the expressed wishes of the Pakistani government, the United States should continue to target the leaders of Tehrik-i-Talibani (Pakistani Taliban).","language":"English","round":"3","tournamentID":"4XkvQJQxtOHIIF6sH97v","id":"yxgLZUnqWOYuZUohuggQ"},{"round":"ESL_Quarter","tournamentID":"5Qomv7BFHTKmY4PchwDr","division":"","infoSlide":"","language":"English","content":"That Non-Western LGBTQ activists should reject sex positivity.","link":"","topic":{},"id":"yy2U3fl8K4R421dQ2WJC"},{"language":"English","topic":{},"content":"THW make parents legally responsible for their children's crimes.","tournamentID":"50nXPc798MPMXDyPN224","division":"","infoSlide":"","round":"2","link":"","id":"yyQAaZ8YkHzX0MSP8yIi"},{"round":"5","link":"","division":"","topic":{},"infoSlide":"","language":"English","content":"This house believes that China and India should bear the same obligations as the West in fighting climate change.","tournamentID":"kFpM1KUkMmDded3L4Zmm","id":"yz5IYFclanqEpbVZTDPk"},{"division":"","link":"","content":"THW consider an academic's publicly stated political positions (e.g. blogs, tweets, editorials) in hiring, tenure and promotion decisions.","tournamentID":"p3EOrIRx2qBcnN8fXbHh","infoSlide":"","topic":{},"language":"English","round":"6","id":"yzX2LFaXsZKNFcLNJ10x"},{"language":"English","tournamentID":"pvKZkg6sqicG5nXA2mvY","division":"","content":"THBT developing countries should ban members of political dynasties from standing for elected office.","infoSlide":"","link":"","topic":{},"round":"4","id":"z05WWLCKMYsseSoUQrz2"},{"language":"English","tournamentID":"py2YomguZSylDKYhWlhK","content":"THBT that individuals who have committed mass atrocities deserve to suffer in the afterlife.","link":"","infoSlide":"","division":"","topic":{},"round":"Open_Final","id":"z0c8MEEvZXxSmvVwpJ3f"},{"topic":{"hr":{"title":"Human Relationships","check":true}},"division":"","content":"THR the emphasis on longevity in relationships.","language":"English","round":"","tournamentID":"nALUKfkpmOnWnQCzecru","link":"","infoSlide":"","id":"z1A5pVe0uPCIayvxRsKj"},{"tournamentID":"mkrRVvz5EWSZie6LBtCH","round":"2","content":"Chúng tôi ủng hộ All Lives Matter.","topic":{},"division":"","language":"Vietnamese","link":"","infoSlide":"\"All Lives Matter\" là một khẩu hiệu được gắn với việc chỉ trích phong trào ủng hộ quyền của người da màu \"Black Lives Matter\" (BLM). Những người ủng hộ khẩu hiệu này cho rằng ủng hộ BLM đồng nghĩa với việc không tôn trọng những \"sinh mạng\" thuộc các nhóm khác và liên tục tuyên truyền chống BLM.","id":"z1rPXjuPg5xwHbQR1bF3"},{"infoSlide":"","division":"","topic":{},"language":"English","content":"TH, as the Baltic states, would incentivize brain drain from Belarus to the Baltics.","round":"4","link":"","tournamentID":"sFRIEYyxie6GRmJwElmF","id":"z2IoRVZ0AxOVwJI1CP93"},{"language":"English","tournamentID":"FAvjs63H5vSbEY0I97Zs","content":"THBT countries should ensure that their militaries are roughly proportionally representative of the diversity of religion, income & race of their populations and that they should, where necessary, use conscription to achieve this.","topic":{},"infoSlide":"","division":"","round":"Open_Semis","link":"","id":"z37kuj19Sg6qiJf8sJ74"},{"language":"English","infoSlide":"","round":"5","division":"","link":"","content":"THB in freedom at all costs.","topic":{},"tournamentID":"DSFg77BvC9y4FK5pBVIv","id":"z5BVkz7jARjVMqjE1RIU"},{"topic":{},"language":"English","division":"","tournamentID":"mUHCV4981T5cYALNdYBk","round":"2","infoSlide":"","link":"","content":"TH, as an immigrant parent, would raise their child exclusively in their own (minority) language.","id":"z5jvGogiDwE7kddJzkT8"},{"content":"THR the prominent usage of self deprecating humour by female poltiicians.","tournamentID":"sQqCNuWw9nlSsN5agLhC","topic":{},"infoSlide":"","division":"","language":"English","round":"1","link":"","id":"z5qTwlCJMVjUMkR7Thsz"},{"division":"","tournamentID":"ovD89w3g4H3GjEFmXcRL","round":"2","topic":{},"content":"THBT conscription should be a war crime.","infoSlide":"","link":"","language":"English","id":"z6B62sRg0fXekadElTXm"},{"division":"","round":"3","content":"THBT life begins at 25.","language":"English","link":"","infoSlide":"","topic":{},"tournamentID":"DSFg77BvC9y4FK5pBVIv","id":"z6ae2mZw7PZZmrjd3sGr"},{"language":"English","tournamentID":"puG4GbGRMRGTQ4eS4GHp","topic":{},"content":"THW require all film companies to practice socially representative film making.","division":"","round":"2","link":"","infoSlide":"","id":"z6gGsZwUDeYPcVQuHWgY"},{"tournamentID":"EP5HDm4G3OfMlciId6YM","division":"","round":"ESL_Quarters","topic":{},"link":"","content":"This House would subsidise art that glorifies the working class.","infoSlide":"","language":"English","id":"z71VtvfOidZgYFfmvgHc"},{"language":"English","infoSlide":"","tournamentID":"PEAicxOTn0uGyCAGiXLX","content":"THBT the west should give substantial extra non-conditional aid packages to countries that have large illegal narcotics exports.","round":"2","division":"","link":"","topic":{},"id":"z7Fzq88nt2kdfeOmfNH8"},{"tournamentID":"rEUwN5dFZYjeXBNtp4NG","content":"THBT twitter has done more harm than good.","link":"","topic":{},"round":"2","infoSlide":"","language":"English","division":"","id":"z8vNcospFiCgVMt0fSH2"},{"infoSlide":"","division":"","round":"1","content":"THW ban teenagers from using Facebook.","language":"English","topic":{},"link":"","tournamentID":"7lMrN2aiwSzD5rzPFwHz","id":"z93kWdUhUwv9q81mUXwj"},{"division":"","content":"THP the characterisation of politics as a “career”, instead of “social / public service”.","link":"","tournamentID":"ruG3JCf2Mh62VDkchi11","language":"English","topic":{},"infoSlide":"","round":"3","id":"z9J4yjpPoPoRrkEZ6GC2"},{"infoSlide":"","tournamentID":"PIBLfC67BXtpF7r3aqIV","content":"THBT media company owners have the right to influence the nature of news.","division":"","round":"2","link":"","topic":{},"language":"English","id":"z9XQStqry0FDBKslAx7B"},{"content":"THBT Science Is Holding Back Humanity.","language":"English","topic":{},"tournamentID":"P1GDtvIjHvhmQ8b6Pr2l","division":"","link":"","round":"Open_Final","infoSlide":"","id":"z9oPSpTPYpUYqnVPQN4h"},{"infoSlide":"","topic":{},"division":"","tournamentID":"lmRNEraLEkD31bc6Nbnn","content":"This House supports laws that protect the health of fetuses (whose mothers intend to carry them to term).","link":"","language":"English","round":"2","id":"zApw7BOQeMysAfaMeo0r"},{"topic":{},"language":"English","link":"","division":"","infoSlide":"","round":"4","content":"Given the choice as an individual who is a typical, healthy 30-year-old, THW elect to never again feel the emotion of sorrow.","tournamentID":"dF61f0kc1Q0KQCGUhM1l","id":"zAuRNaX6CGtBSLyI50Xb"},{"division":"","link":"","infoSlide":"","language":"English","content":"THBT Palestinians should prefer their wellbeing over fighting injustices in Palestine.","round":"1","topic":{},"tournamentID":"m2emSLcIwdpH2tsVpRhp","id":"zAz5UHjt6LVP7LzR1D9C"},{"infoSlide":"","link":"","division":"","round":"4","tournamentID":"Jy8kbmlTXWgf8pRg3dUy","language":"English","content":"This house believes that developing countries should ban the entry of foreign supermarkets chains [added by me] into their markets.","topic":{},"id":"zCZepPCkpx8fCGDyfAVF"},{"topic":{},"division":"","round":"Open_Semis","tournamentID":"HI456ixwVeFxETFg4P5i","content":"THBT, on balance, the internet has been harmful to journalism.","language":"English","link":"","infoSlide":"","id":"zCdd0BRRb12o5VLAvBn0"},{"round":"10.2","link":"","division":"","language":"English","infoSlide":"","content":"THW teach sex positions explicitly for pleasure in sex education lessons.","tournamentID":"BXqPhfwak2R1kYHV48bp","topic":{},"id":"zD7X6hNSPqSwRmYrtr3p"},{"topic":{},"infoSlide":"","round":"Novice_Finals","tournamentID":"ZpOi9wuiFrLbKo4ygC2p","language":"English","content":"Assuming a low probability of detection, THS scientists who falsify data in order to exagerrate the harms of climate change.","link":"","division":"","id":"zEtRcoguqPBF3XepSe9h"},{"round":"1","division":"","tournamentID":"GEF7QfNpKGwIZtimYEsL","topic":{},"language":"English","content":"Given the state of the world, THBT it is immoral for humans to willfully reproduce.","link":"","infoSlide":"","id":"zFgPsRdTuoTiDy3kLNwG"},{"content":"THW cancel the exemption on the 5% vote threshold for national minorities.","link":"","division":"","language":"English","topic":{},"tournamentID":"ovqKzpSVsRvBQDmmn1yj","round":"4","infoSlide":"","id":"zG149C5SJzp3hltFYZFF"},{"round":"1","tournamentID":"4AUWV6dX7gzPml1BbN5u","infoSlide":"","language":"English","division":"","topic":{},"content":"THBT tech companies should never share user information with governments.","link":"","id":"zGUStBdyEtNSLng9tdjM"},{"round":"Open_Finals","content":"THW allow the Children's Aid Society to force chemotherapy.","link":"","tournamentID":"SIrskBVMCwGNCZibcnP1","infoSlide":"","division":"","topic":{},"language":"English","id":"zGY5ecAf7vEFo1C76igd"},{"link":"","language":"English","round":"1","content":"THW significantly reduce funding for schools that perpetuate inaccuracies in their teachings of indigenous history.","division":"","infoSlide":"","topic":{},"tournamentID":"Wg2225mgODwBGF4GMBLR","id":"zGZm9UsN3zHKyPlcslyu"},{"link":"","topic":{},"round":"3","tournamentID":"wYhrxey2tVddZfEkGSYA","content":"Should selfishness be proscribed?.","division":"","language":"English","infoSlide":"","id":"zGr043MBz51lTv2ykTd7"},{"round":"1","link":"","tournamentID":"FBVfHrOa3NYALcBMtKIC","content":"This house would ban sports, where the main purpose is to inflict pain (e.g. boxing, martial arts).","topic":{},"language":"English","division":"","infoSlide":"","id":"zIQuJAZVJR8hr0ZcC5cq"},{"content":"THBT mainstream search engines should refuse to list results with sexist, racist or otherwise offensive content.","topic":{"gfl":{"check":true,"title":"Gender/Feminism/LGBT"}},"round":"6","tournamentID":"7Jdvl74EMNCm0P5fq9PJ","infoSlide":"","language":"English","link":"","division":"","id":"zJagVBoYaMPY0iuskKUc"},{"link":"","topic":{},"round":"1","language":"English","division":"","infoSlide":"","tournamentID":"LJpNoy6NIxtIr7pXj25B","content":"THW strip the voting rights of individuals that did not vote in more than 2 consecutive election cycles.","id":"zJjZjtRA1RpAJqBPHMCe"},{"language":"English","round":"4","content":"THW ban alchocol in all former soviet states.","infoSlide":"","division":"","link":"","topic":{},"tournamentID":"jTIGk8DeHHGFQRpsk85j","id":"zJmbxw8H8SpW2xPzvlWw"},{"round":"2","division":"","tournamentID":"axWwnyCM8L14pVHljukt","infoSlide":"","topic":{},"content":"If it were discovered during an armed conflict that a population hides terrorists, THW not consider a war crime to attack civilians.","link":"","language":"English","id":"zJuwQbLpqsfCH2Q7t7bp"},{"topic":{},"tournamentID":"gaW3hl0mF758MDm7UkNs","content":"THW create separate state schools for those who are LGBTQ.","division":"","round":"1","language":"English","infoSlide":"","link":"","id":"zK6p43IDvK8mNWesxpnX"},{"topic":{},"content":"THBT liberal democratic states should add citizens duties as well as citizens rights in their constitutions.","division":"","round":"1","tournamentID":"9sZiZ9uPaGSIYSFdM4VZ","language":"English","infoSlide":"","link":"","id":"zKNJDwT4pxPqCNzxR8XB"},{"link":"","content":"THW allow civil lawsuits against religious leaders/organizations for damages caused by adherence to the religion (e.g. rejecting medical treatment according to doctrine).","tournamentID":"g7nlvxejABAgCXhGkJg8","infoSlide":"","round":"3","language":"English","topic":{},"division":"","id":"zL37hUbySktWVpAJMwhE"},{"tournamentID":"KErVXbqRahyWD7ZB1Q1m","content":"TH does not regret internet piracy.","topic":{},"language":"English","infoSlide":"","round":"3","division":"","link":"","id":"zLDqPCQ3imS4bj1JsoqK"},{"infoSlide":"","language":"English","tournamentID":"BXqPhfwak2R1kYHV48bp","topic":{},"content":"THW send female diplomats to gender inequality countries.","link":"","round":"9.1","division":"","id":"zLyl6uTmOyBwRK3CQrYj"},{"topic":{},"content":"THR the Generation War (Millennials vs. Baby Boomers).","language":"English","round":"Open_Final","division":"","infoSlide":"","link":"","tournamentID":"YZNcM4Wgq9Um4e7kNLdH","id":"zNCxpShWggen7ZuyJgTQ"},{"topic":{},"link":"","infoSlide":"","tournamentID":"zppT86F7lAE0Gpp7tWYo","division":"","content":"THBT we should not let our schooling interfere with our education.","round":"B1","language":"English","id":"zNDXWDEAGo1C8iUy7SSd"},{"infoSlide":"Giả sử có tồn tại một cỗ máy tạo ra thực tế ảo của riêng một người cho phép con người đó làm tất cả những hành động bạo lực, phi nhân tính nhất trong đó.","round":"Grand Final","language":"Vietnamese","content":"Chúng tôi sẽ phổ biến sự tồn tại của cỗ máy đó.","topic":{},"division":"","link":"","tournamentID":"WEotTkb6ok8UfUOl0Lwb","id":"zNTsGSiUeKtR11cTeDFn"},{"language":"English","content":"This house believes that all states have a right to nuclear weapons.","tournamentID":"Biz1VRjjdg8eWbm4NJr3","link":"","infoSlide":"","topic":{},"division":"","round":"2","id":"zNvra8rwmicV0BqhpKSu"},{"content":"Assuming it is feasible to measure rehabilitation, THW release prisoners purely based on their level of rehabilitation as opposed to having set prison sentences.","division":"","language":"English","infoSlide":"Rehabilitation refers to the process of re-educating and retraining those convicted of crimes in order to help them re-integrate back into society. It involves various forms of approaches, ranging from psychological counselling to work training.","topic":{"cjpl":{"title":"Criminal Justice/Police/Law","check":true}},"round":"","link":"","tournamentID":"LlsxibXteGBGML9aitY2","id":"zQ27iWeTsy7zB5o9ooXo"},{"link":"","tournamentID":"db8a4cSMVYVFuxZgcf0y","topic":{},"content":"This House believes that the open immigration policy is not good for Germany.","infoSlide":"","round":"Open_Semis","language":"English","division":"","id":"zQ4l6IG8xaIQumaiNBgW"},{"topic":{},"tournamentID":"oaIuwyOX7NBIwaiSaVJ8","content":"That we regret the decline of secular Pan-Arab nationalism.","link":"","division":"","round":"Novice_Final","language":"English","infoSlide":"","id":"zQOhRoPqSRzH8zYJdHgZ"},{"content":"THW fabricate and publicise evidence that high ranking religious figures that claim homosexuality to be a sin engage in homosexual acts.","topic":{},"round":"Open_Final","tournamentID":"655ljihoF4Mh7lzjZruS","language":"English","infoSlide":"","link":"","division":"","id":"zQvhUP0Mx3vvHjcrYw0h"},{"language":"English","infoSlide":"","link":"","topic":{},"round":"Open_Final","content":"This House Believes That all countries should implement legislation similar to the US Defense Production Act to combat the Covid-19 pandemic.","division":"","tournamentID":"a6rNMpZKAK9f2nCSkXu1","id":"zRuyf6c4JKhAo7SCzSYY"},{"infoSlide":"","language":"English","content":"This house would destroy the results of unethical research,.","division":"","link":"","topic":{},"round":"1","tournamentID":"5O13410pDrHfcvKnpppR","id":"zS1jrs9fLPPS11uFn90e"},{"link":"","content":"TH, as an agnostic, would take the pill.","language":"English","tournamentID":"NbIgaSiRmXdh3BAZ88Vm","topic":{},"round":"Open_Final","infoSlide":"","division":"","id":"zS4IkLDxz3gBD0AfsX9O"},{"content":"THW, as the US government, recognize the DPRK as a nuclear state and no longer oppose their nuclear program on the condition they discontinue long-range missile development.","infoSlide":"","division":"","language":"English","link":"","round":"Open_Quarters","tournamentID":"hrSRQu49cq5gHsXJLBgQ","topic":{},"id":"zS7xG9tVRriWdOs8HVMo"},{"topic":{},"content":"THW hold parents criminally liable for the repeat offences of their children.","tournamentID":"4dzoeUxkRP5WxDaCVtbY","link":"","division":"","language":"English","round":"Novice_Final","infoSlide":"","id":"zSLTIL0f0LXKJqdpZLsu"},{"language":"Vietnamese","division":"","link":"","content":"Giả sử chúng ta có thể đo được mức độ nguy hiểm đối với xã hội của các thai nhi trong tương lai, chúng tôi tin rằng chính phủ nên nuôi dạy những đứa trẻ sơ sinh có tính đe dọa cao.","infoSlide":"","topic":{"cjpl":{"check":true,"title":"Criminal Justice/Police/Law"}},"tournamentID":"nALUKfkpmOnWnQCzecru","round":"","id":"zSvLzuYbIw5KhvJ1Pov9"},{"round":"4","infoSlide":"","content":"This House Believes That western tech companies should collectively refuse to comply with the Russian personal information law.","topic":{},"tournamentID":"BXOIn4DQsS3fQg4ZnBFn","link":"","language":"English","division":"","id":"zSzKFMQvDTg1N06K6xFX"},{"tournamentID":"znXRdnU2llK8fXmHlci5","content":"Chúng tôi ủng hộ quan niệm xã hội nơi mà các cá nhân ưu tiên sự duy trì các mối quan hệ với số lượng ít thay vì mở rộng vòng tròn xã hội của mình.","link":"","language":"Vietnamese","topic":{},"division":"","infoSlide":"","round":"Final","id":"zT0BSx7Cql5qjT4V8NR4"},{"link":"","round":"Open_Final","tournamentID":"E6Cr0CYWyZinduIgwsMe","topic":{},"division":"","infoSlide":"","content":"THW choose immortality over the opportunity to have children.","language":"English","id":"zT5ToGoX0er19SDmgIKO"},{"tournamentID":"3eIqWfLtHDOZRmzJt05T","language":"English","topic":{},"content":"This house supports the Boycott, Divestment, Sanctions movement.","infoSlide":"","link":"","division":"","round":"2","id":"zTHPlOt8QlI0VEMC2LlN"},{"infoSlide":"","round":"2","link":"","language":"English","content":"TH, as Xi Jinping, would remove Hong Kong’s Special Administrative Status.","topic":{},"tournamentID":"uES9ygXHa8tJuYB7dFEM","division":"","id":"zTaDDqX5iUMN5exEDioI"},{"round":"Grand Final","link":"","infoSlide":"Ties between India and Pakistan have faced considerable deterioration since the abrogation of Article 370 by the Indian government. However, more recently there have been attempts towards rapprochement by both sides and public statements indicating potential pursuit of improved ties. For example, a proposal in the Pakistani federal cabinet was recently extended to allow the import of cotton yarn from India. This proposal was rejected by the Prime Minister who reiterated the policy of prohibiting.","topic":{},"tournamentID":"vzoLJmfiPRVvjgiu4Nrs","language":"English","division":"","content":"TH, as the Government of Imran Khan in Pakistan, would actively pursue normalization of ties with India independent of any negotiations over Kashmir.","id":"zTbtnheDMW2eZ6vAuDci"},{"infoSlide":"","language":"English","tournamentID":"HbzzxzNaEfw54UvTulVq","division":"","topic":{},"round":"5","content":"Humanity has found an alien species of an unknown level of technological development. Motion: THW not make first contact with an alien.","link":"","id":"zTnWSF3eG2KM1jX878Ry"},{"language":"English","round":"3","tournamentID":"JLyF99Vg0hk3hhYCwEgp","topic":{},"content":"This House believes that armies should indoctrinate soldiers to take their own lives in the event that they fall captive to the enemy.","division":"","infoSlide":"","link":"","id":"zUJUiE5FHsktjsIzvyLU"},{"content":"THW not prosecute victims of domestic violence for crimes committed as a result of their abuse.","tournamentID":"0FjoYPaEyMvQKDhX7FzX","topic":{},"language":"English","division":"","link":"","round":"1","infoSlide":"","id":"zUMY2vW60ekGkvTVDXFc"},{"tournamentID":"92dIEXeOXUVvlcFeGCIr","infoSlide":"","round":"1","language":"English","link":"","division":"","topic":{},"content":"THW allow states to use mercenary forces in combat roles in active military operations.","id":"zUx7fAaFnwsSfipYS4VU"},{"content":"TH, being MTV, would publicly denounce acts with lyrics that degrade women or gays and/or glorify violence (approximation).","division":"","link":"","tournamentID":"NNES6CXrTQ3wDbdnrNDb","round":"Open_Final","language":"English","infoSlide":"","topic":{},"id":"zVXlyAofMCIGJ5SBk91L"},{"division":"","language":"English","infoSlide":"","topic":{},"link":"","round":"3","tournamentID":"jiJ3t0fz2aMel6atC1HM","content":"THBT professional football clubs should be forced to field the majority of players from their local community.","id":"zWMoazRl7RkEZfgLNKtW"},{"link":"","division":"","language":"English","round":"Open_Semi","topic":{},"content":"THR the Arab Spring.","tournamentID":"eXqHjvQ9MTXYhyv8NeW7","infoSlide":"","id":"zWcSDOEZxEgeFKhAlycM"},{"division":"","infoSlide":"","topic":{},"tournamentID":"NNES6CXrTQ3wDbdnrNDb","link":"","content":"THW assume the suspect of a crime to be guilty when the witness(es) in a court case are intimidated or physically abused (approximation).","language":"English","round":"4","id":"zWw3QfyxFjyICXFcfosa"},{"topic":{},"tournamentID":"rMtZQSWssQ8170WIyJTX","content":"THB that states should no longer fund or own public broadcasters, such as the BBC, NERIT or PBS.","language":"English","round":"1","infoSlide":"","link":"","division":"","id":"zX29IGlc5SrLVhR9V2xD"},{"language":"English","content":"This House, as a vegan, would actively and persistently seek to convert those around you to veganism or vegetarianism.","division":"","infoSlide":"","tournamentID":"RlKeUHJPWxI30cOSUIu3","link":"","topic":{},"round":"2","id":"zXxqIt6ugVTpeyeSeZa7"},{"topic":{},"content":"This House Believes That the West should discourage and disincentivize economic collaboration and exchange with China.","division":"","link":"","infoSlide":"","tournamentID":"a6rNMpZKAK9f2nCSkXu1","round":"2","language":"English","id":"zY1swB3NnBN7KRtAQwnN"},{"division":"","topic":{"ceam":{"title":"Culture/Entertainment/Art/Media","check":true}},"language":"English","content":"THBT social networks should remove the content and images of individuals and organizations involved in gangster activities. (Huấn Hoa Hồng, Khá Bảnh, etc.)","infoSlide":"","round":"2","tournamentID":"sgcqNV5ntCoa4H8glRBu","link":"","id":"zYgwxi0rF9gbHBv3nHAP"},{"round":"Open_Final","division":"","link":"","content":"THBT Gavrilo Princip was justified in killing Archduke Franz Ferdinand.","tournamentID":"TMUPfAyolz9JkKMmWlLC","infoSlide":"","language":"English","topic":{},"id":"zZnJsERxh1SNIQcoID8v"},{"infoSlide":"","tournamentID":"uk4xP1Lp7BjYaOzgd3Xi","division":"","topic":{},"language":"English","content":"THBT judges should have the option to sentence people to human trials (medical trials?).","round":"Open_Final","link":"","id":"za1nSO5xevLGdGlyt3lH"},{"link":"","content":"THW impose very high taxes on the rich, even when doing so will not increase total tax revenues.","round":"3","language":"English","topic":{},"division":"","tournamentID":"JJmcUH5Gil0nuJObmDP8","infoSlide":"","id":"zaUbvGjxcs5fHXQt9H6a"},{"topic":{},"content":"This house prefers direct intervention of Western nations over backing of non-state actors in armed conflicts.","round":"6","division":"","link":"","tournamentID":"GyiwbDg4TBAWCn1HmjKi","infoSlide":"","language":"English","id":"zaZOpFCci1eeDlMjRwbz"},{"link":"","content":"THBT it would be better if Sinn Fein took their seats (in the UK parliament).","round":"3","topic":{},"infoSlide":"","language":"English","division":"","tournamentID":"riEZk6ypdW0s5dnVIggc","id":"zb0JeYO8e67QoEEZqC91"},{"topic":{},"language":"English","infoSlide":"","tournamentID":"PhJT1xhigiWcZot2PdLn","link":"","round":"3","division":"","content":"This house believes that the Trump administration should abandon the One-China policy.","id":"zb63Fe9iVyWtclVvquy3"},{"division":"","content":"TH supports the US's use of military drones in Pakistan.","link":"","infoSlide":"","language":"English","round":"5","topic":{},"tournamentID":"DPlum9M6fh8xjiyYGBxO","id":"zbtkuodhXf9DtYIMlfrA"},{"division":"","link":"","content":"This House Would expel states which fail to spend a minimum of 2% of GDP on defence from NATO.","infoSlide":"","round":"1","language":"English","tournamentID":"S5UzkuOf9XN6BnhOSbRC","topic":{},"id":"zcND8wEy47dcoeWQio1t"},{"content":"TH approves of the New York Post's decision to publish the subway photograph 'Doomed'.","topic":{},"infoSlide":"","link":"","language":"English","round":"3","tournamentID":"V6eoj3ztq5t3sX9oPVue","division":"","id":"zcSQjCdDvrCnGEzmWx6v"},{"content":"You are Arnold Schwarzenegger, You are presented a script in which you are asked to portray a SS Nazi Officer who is presented in a positive humane light. THW take on the role.","topic":{},"round":"Open_Semis","language":"English","infoSlide":"","tournamentID":"ns7JoMyNUkrrS5A6Rbw7","division":"","link":"","id":"zcWhgubZcfaFqSBmdWqi"},{"content":"THW eject national sports teams from international competitions if their fans or players are found to have committed racist or fascist acts during matches.","round":"1","link":"","language":"English","topic":{},"tournamentID":"013M8EetYEKwpGlokURQ","infoSlide":"","division":"","id":"zdm2bDk7ldy15LlbWDet"},{"division":"","round":"2","content":"THW democratically elect members of constitutional courts (sometimes called \"Supreme Courts\").","infoSlide":"","link":"","language":"English","topic":{},"tournamentID":"jTIGk8DeHHGFQRpsk85j","id":"zeMm48s2uHr5LthIehw1"},{"link":"","round":"4","topic":{},"division":"","infoSlide":"","content":"That This House, as Barack Obama, would use inception to plant socially progressive ideas in Vladimir Putin's dreams.","tournamentID":"6GQGSjlsY612FPwbXRbB","language":"English","id":"zeNmGIXi7Fvm0YUcoz90"},{"topic":{},"language":"English","round":"1","content":"THS an Opinio System of Education.","division":"","tournamentID":"Vis5yhSVMHubvgdJTwP1","link":"","infoSlide":"","id":"zfIQV399DfOSzIlk8Dgi"},{"round":"Open_Quarter","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","link":"","language":"English","topic":{},"infoSlide":"","division":"","content":"THP a world in which people don't engage in virtue signalling.","id":"zfbf8FJgGa8FvqTmLTUj"},{"language":"English","topic":{},"link":"","round":"Open_Quarters","infoSlide":"","division":"","tournamentID":"sXtyoMtY4Bb7XJvcqA3J","content":"This house believes that all laws regarding climate change should be subject to a referendum only open to those aged 30 and below.","id":"zfka5MCTNuj3sR9uFlCA"},{"language":"English","link":"","infoSlide":"","division":"","content":"THW aggressively harass those who post online anonymous abuse.","round":"4","topic":{},"tournamentID":"kIlyrRRnzkKK1188i1Qf","id":"zfsF8u0nStoopFqGDq22"},{"content":"THW remove the right to vote upon retirement.","tournamentID":"MeKByJc38Yt4otefONa7","division":"","round":"1","infoSlide":"","topic":{},"link":"","language":"English","id":"zfxXZvQOvpDVwHoeMSv2"},{"tournamentID":"t1jiRXU99xeGdoIkTeyF","language":"English","topic":{},"infoSlide":"","round":"7","content":"This House believes that South Korea should produce nuclear weapons.","division":"","link":"","id":"zg5ADdczYqNPGtuKzUIk"},{"link":"","infoSlide":"","topic":{"religion":{"title":"Religion","check":true}},"tournamentID":"nALUKfkpmOnWnQCzecru","language":"Vietnamese","content":"Giả sử có thể, chúng tôi tin rằng thế giới sẽ tốt hơn khi một nhóm các nhà lãnh đạo tôn giáo tạo ra một bản diễn dịch được chấp thuận toàn cầu của Kinh Thánh mà tất cả các người theo đạo nên tuân theo.","division":"","round":"","id":"zgZjKuCfzvq8csHk23SP"},{"link":"","infoSlide":"“Self-crit culture” refers to a culture where individuals are encouraged to publicly and openly criticise themselves for their shortcomings.","content":"THR \"self-crit\" culture.","round":"Grand Final","division":"","language":"English","tournamentID":"m6JzV67uYJSVBRpAbgL7","topic":{},"id":"zgbVEuURRrN1Fu9Oh1Fc"},{"language":"English","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","link":"","content":"THS the rise of disaster capitalism.","topic":{},"infoSlide":"","round":"4","division":"","id":"ziZxqPDf0x8RePCS8JIO"},{"tournamentID":"lmRNEraLEkD31bc6Nbnn","round":"3","infoSlide":"","content":"In the event that current talks produce a compromise Brexit deal, This House Would put it to a referendum with “remain” as an alternative.","language":"English","division":"","topic":{},"link":"","id":"zizPv6wKGnyJ7atVqgVk"},{"content":"This House would legalize and train sex workers specifically to work with disabled people.","round":"Open_Final","infoSlide":"","link":"","topic":{},"language":"English","division":"","tournamentID":"9JqIpRhRkA8gulRio4t9","id":"zjeFb0leRnY0UBoXjmbu"},{"tournamentID":"0bpNzjTgN71TZQEkHTak","content":"THW ban political parties and require all candidates for national public office to seek election as independents.","topic":{},"round":"9","link":"","infoSlide":"","language":"English","division":"","id":"zjrIiJylQChlvIDTld12"},{"language":"English","link":"","topic":{},"round":"4","content":"This house would prefer their child, in preschool and early primary school, to have one close friend rather than being 'popular' with several less-close 'friends'.","division":"","infoSlide":"","tournamentID":"Nzien6R9RXvOTrNMJsza","id":"zluDAxJdDUXZFMMorQdd"},{"round":"1","infoSlide":"","topic":{},"content":"THBT religious institutions should to take custody of children in street situations, even without the consent of their parents.","division":"","tournamentID":"axWwnyCM8L14pVHljukt","link":"","language":"English","id":"zlv9ZFDDfWex3VnvtzfA"},{"infoSlide":"","tournamentID":"H2Xg2NvZoEwZtgc8tzmz","language":"English","topic":{},"round":"Open_Octa","division":"","content":"THS two party political systems over multiparty political systems.","link":"","id":"zm6EpQElggqNpy1XnjZD"},{"round":"3","division":"","tournamentID":"V7FJhUQXRQ0Z4dnL94bu","language":"English","content":"TH supports the creation of charter cities in the developing world.","infoSlide":"","link":"","topic":{},"id":"zmM9EL8Xrd56b1ZXgOYf"},{"tournamentID":"NE3BXrt6CASI2EExAgUk","content":"THW reverse austerity measures in Europe.","round":"3","division":"","language":"English","topic":{},"infoSlide":"","link":"","id":"zmXwMxOSsL33m3BJiLtQ"},{"content":"THBT children who broke school law to create more good than harm should not be punished.","round":"1","topic":{},"language":"English","infoSlide":"","division":"","link":"","tournamentID":"m97biSF63NO9Jn1yenBI","id":"zmrPU3OwIJU7DBiwHCXQ"},{"topic":{},"content":"THW ban religious practices that cause cruelty to animals.","link":"","infoSlide":"","division":"","language":"English","tournamentID":"URJkYB098qcNUnuKdfHJ","round":"3","id":"zoWXpXNGZ8TYLRBkteWU"},{"infoSlide":"","round":"1","tournamentID":"8mQg9HgZBO4ebq8ubmRJ","topic":{},"content":"THW substantially lower labour regulations for young people in areas with high youth unemployment.","language":"English","link":"","division":"","id":"zpAWQL7FIZ0Y7I6dIJuC"},{"topic":{},"division":"","infoSlide":"","language":"English","content":"THW not allow pre-nuptial agreements.","link":"","tournamentID":"B63fWPacAJNcBJdaEpVz","round":"3","id":"zuGc26iQL9Jarw3TQHks"},{"tournamentID":"fYRQ3gsDALGgMYQf58zt","topic":{},"link":"","language":"English","infoSlide":"","content":"THBT CONSERVATIVE STATES SHOULD AGGRESSIVELY EMBRACE LIBERAL IDEOLOGIES IN THE PURSUIT OF PROMOTING ECONOMIC DEVELOPMENT.","division":"","round":"3","id":"zuLTgUvWysvdul34ttp4"},{"round":"2","topic":{},"tournamentID":"sv4AWOKZYbl1PfCObw21","language":"English","division":"","link":"","content":"THP a world where significantly more women are cast in lead villain roles by film and TV studios.","infoSlide":"","id":"zvObebND9dlxm0Fduqkx"},{"topic":{},"content":"TH regrets that Brazil is the host of the football World Cup 2014.","division":"","link":"","infoSlide":"","round":"Open_Quarters","tournamentID":"V8KRgdahxIEUYFHrRWYb","language":"English","id":"zvtVpe7JwAj2SX5zJr58"},{"division":"","tournamentID":"NDBMTXQSiGk8gHdwlPou","content":"It is 5 July 1914. THW, as the German Reich, issue the Austrian-Hungarian empire a “blank check” on how to deal with the conflict with Serbia.","link":"","infoSlide":"","round":"1","language":"English","topic":{},"id":"zwb4DrIdd4KJcfGM34fV"},{"topic":{},"round":"2","division":"","tournamentID":"QePDCf8cQ2AX4XfcvR3T","language":"English","content":"THBT that Western countries should revoke the citizenship of individuals that traveled to the Middle East to join Jihadi groups, even if they were minors at the time of their departure / ECCQ los países occidentales deberían revocar la ciudadanía a los individuos que se trasladaron a Medio Oriente para integrarse a grupos Jihadistas , incluso si eran menores de edad al momento de su translado.","link":"","infoSlide":"","id":"zxBZBs2jV1BsJDS4uioV"},{"division":"","content":"“THB it's High Time the Monarchy was Abolished”.","tournamentID":"5ETrS816OeSAWdPhWEHf","topic":{},"infoSlide":"","link":"","round":"3","language":"English","id":"zxCGwkISycdfDs57ZmdM"},{"round":"Open_Final","tournamentID":"0Z9IiWTQjupe7Jbemo9Y","language":"English","link":"","content":"TH is Gandhi. THW declare war on the English occupation.","division":"","topic":{},"infoSlide":"","id":"zxDbS7C4RwwWtrJKatR6"},{"content":"THBT it is in the interest of the Conservative Government to impose a travel ban on Donald Trump.","language":"English","link":"","topic":{},"tournamentID":"3Zgv6Gsne7dxEbg36SPO","round":"3","division":"","infoSlide":"","id":"zxQvGgdasoRG6ZUDOi10"},{"topic":{},"division":"","link":"","content":"THW give the Commission of Future Generations a veto over legislation.","language":"English","tournamentID":"TMBmC1MQwez0ZjQdNyHU","round":"3","infoSlide":"","id":"zxy2a2ez2aHWqF158oNR"},{"language":"English","topic":{},"division":"","link":"","content":"You are a state whose diplomatic and economic power is increasing rapidly. There are maintained attempts to curb the rise of your economic and diplomatic influence by the established regional power. That you should seek active confrontation with the established power.","tournamentID":"HjQJA65fZ9igHKO8DLAP","infoSlide":"","round":"3","id":"zyrp4rD0j1Fj1Gp42BOp"},{"content":"TH supports FEMEN.","topic":{},"link":"","tournamentID":"Jy8kbmlTXWgf8pRg3dUy","infoSlide":"","language":"English","round":"Open_Final","division":"","id":"zyzxBqlrjXThixtaDnT3"},{"tournamentID":"EC3TzMXkzGq0DYNMzQdg","round":"2","infoSlide":"","link":"","topic":{},"language":"English","division":"","content":"Should natural disasters and extreme weather in the future be named after politicians that are against combatting climate change?.","id":"zzMaqB2e4HBHdkjNjoGe"}] \ No newline at end of file diff --git a/src/core/constants/tableClassNames.js b/src/core/constants/tableClassNames.js new file mode 100644 index 0000000..2ce1abc --- /dev/null +++ b/src/core/constants/tableClassNames.js @@ -0,0 +1,40 @@ +export const tableClassNames = { + adminLoadTournaments: { + "tableName": "loadedTournamentsTable", + "headerName": "tournamentsTableHeaderRow", + "headerCellName": "tournamentsTableHeader", + "emptyHeaderCellName": "emptyTournamentsTableHeaderCell", + "rowName": "tournamentTableRow", + "rowCellName": "tournamentTableCell", + "actionCellName": "deleteTournamentCell" + }, + adminLoadMotions: { + "tableName": "loadedMotionsTable", + "headerName": "motionsTableHeaderRow", + "headerCellName": "motionsTableHeader", + "emptyHeaderCellName": "emptyMotionsTableHeaderCell", + "rowName": "motionTableRow", + "rowCellName": "motionTableCell", + "actionCellName": "deleteMotionCell" + }, + adminPendingRequests: { + "tableName": "loadedRequestsTable", + "headerName": "requestsTableHeaderRow", + "headerCellName": "requestsTableHeader", + "emptyHeaderCellName": "emptyRequestsTableHeaderCell", + "rowName": "requestTableRow", + "rowCellName": "requestTableCell", + "actionCellName": "actionRequestCell" + + }, + userLoadMotions: { + "tableName": "tableDatabase", + "headerName": "databaseHeaderRow", + "headerCellName": "databaseTableHeader", + "emptyHeaderCellName": "", + "rowName": "databaseTableRow", + "rowCellName": "databaseTableCell", + "actionCellName": "" + } + +} \ No newline at end of file diff --git a/src/core/constants/topics.js b/src/core/constants/topics.js new file mode 100644 index 0000000..0627a97 --- /dev/null +++ b/src/core/constants/topics.js @@ -0,0 +1,37 @@ +export const topics = [ + { value: 'aac', label: 'Art & Culture' }, + { value: 'ar', label: "Animals' rights" }, + { value: 'business', label: 'Business' }, + { value: 'cjs', label: 'Criminal Justice System' }, + { value: 'development', label: 'Development' }, + { value: 'economics', label: 'Economics' }, + { value: 'education', label: 'Education' }, + { value: 'entertainment', label: 'Entertainment'}, + { value: 'environment', label: 'Environment' }, + { value: 'family', label: 'Family' }, + { value: 'feminism', label: 'Feminism' }, + { value: 'freedoms', label: 'Freedoms' }, + { value: 'fiction', label: 'Fiction' }, + { value: 'funny', label: 'Funny' }, + { value: 'history', label: 'History' }, + { value: 'hr', label: 'Human Relationships' }, + { value: 'ir', label: 'International Relations' }, + { value: 'law', label: 'Law'}, + { value: 'lgbtqia+', label: 'LGBTQIA+' }, + { value: 'media', label: 'Media' }, + { value: 'me', label: 'Medical Ethics' }, + { value: 'mc', label: 'Minority Communities' }, + { value: 'morality', label: 'Morality' }, + { value: 'philosophy', label: 'Philosophy' }, + { value: 'politics', label: 'Politics' }, + { value: 'religion', label: 'Religion' }, + { value: 'sat', label: 'Science & Technology' }, + { value: 'swm', label: 'Security, War and Military' }, + { value: 'sp', label: 'Social Policy' }, + { value: 'sm', label: 'Social Movements' }, + { value: 'sports', label: 'Sports' }, + { value: 'terrorism', label: 'Terrorism' }, + { value: 'the', label: 'The Human Experience' }, + { value: 'others', label: 'Others' }, +] +// module.exports = topics \ No newline at end of file diff --git a/src/core/constants/topicsForMotions.js b/src/core/constants/topicsForMotions.js new file mode 100644 index 0000000..583e3b9 --- /dev/null +++ b/src/core/constants/topicsForMotions.js @@ -0,0 +1,308 @@ +export const topicsForMotions = [ + { + "value": { + "aac": { + "check": true, + "title": "Art & Culture" + } + }, + "label": "Art & Culture" + }, + { + "value": { + "ar": { + "check": true, + "title": "Animals' rights" + } + }, + "label": "Animals' rights" + }, + { + "value": { + "business": { + "check": true, + "title": "Business" + } + }, + "label": "Business" + }, + { + "value": { + "cjs": { + "check": true, + "title": "Criminal Justice System" + } + }, + "label": "Criminal Justice System" + }, + { + "value": { + "development": { + "check": true, + "title": "Development" + } + }, + "label": "Development" + }, + { + "value": { + "economics": { + "check": true, + "title": "Economics" + } + }, + "label": "Economics" + }, + { + "value": { + "education": { + "check": true, + "title": "Education" + } + }, + "label": "Education" + }, + { + "value": { + "entertainment": { + "check": true, + "title": "Entertainment" + } + }, + "label": "Entertainment" + }, + { + "value": { + "environment": { + "check": true, + "title": "Environment" + } + }, + "label": "Environment" + }, + { + "value": { + "family": { + "check": true, + "title": "Family" + } + }, + "label": "Family" + }, + { + "value": { + "feminism": { + "check": true, + "title": "Feminism" + } + }, + "label": "Feminism" + }, + { + "value": { + "freedoms": { + "check": true, + "title": "Freedoms" + } + }, + "label": "Freedoms" + }, + { + "value": { + "fiction": { + "check": true, + "title": "Fiction" + } + }, + "label": "Fiction" + }, + { + "value": { + "funny": { + "check": true, + "title": "Funny" + } + }, + "label": "Funny" + }, + { + "value": { + "history": { + "check": true, + "title": "History" + } + }, + "label": "History" + }, + { + "value": { + "hr": { + "check": true, + "title": "Human Relationships" + } + }, + "label": "Human Relationships" + }, + { + "value": { + "ir": { + "check": true, + "title": "International Relations" + } + }, + "label": "International Relations" + }, + { + "value": { + "law": { + "check": true, + "title": "Law" + } + }, + "label": "Law" + }, + { + "value": { + "lgbtqia+": { + "check": true, + "title": "LGBTQIA+" + } + }, + "label": "LGBTQIA+" + }, + { + "value": { + "media": { + "check": true, + "title": "Media" + } + }, + "label": "Media" + }, + { + "value": { + "me": { + "check": true, + "title": "Medical Ethics" + } + }, + "label": "Medical Ethics" + }, + { + "value": { + "mc": { + "check": true, + "title": "Minority Communities" + } + }, + "label": "Minority Communities" + }, + { + "value": { + "morality": { + "check": true, + "title": "Morality" + } + }, + "label": "Morality" + }, + { + "value": { + "philosophy": { + "check": true, + "title": "Philosophy" + } + }, + "label": "Philosophy" + }, + { + "value": { + "politics": { + "check": true, + "title": "Politics" + } + }, + "label": "Politics" + }, + { + "value": { + "religion": { + "check": true, + "title": "Religion" + } + }, + "label": "Religion" + }, + { + "value": { + "sat": { + "check": true, + "title": "Science & Technology" + } + }, + "label": "Science & Technology" + }, + { + "value": { + "swm": { + "check": true, + "title": "Security, War and Military" + } + }, + "label": "Security, War and Military" + }, + { + "value": { + "sp": { + "check": true, + "title": "Social Policy" + } + }, + "label": "Social Policy" + }, + { + "value": { + "sm": { + "check": true, + "title": "Social Movements" + } + }, + "label": "Social Movements" + }, + { + "value": { + "sports": { + "check": true, + "title": "Sports" + } + }, + "label": "Sports" + }, + { + "value": { + "terrorism": { + "check": true, + "title": "Terrorism" + } + }, + "label": "Terrorism" + }, + { + "value": { + "the": { + "check": true, + "title": "The Human Experience" + } + }, + "label": "The Human Experience" + }, + { + "value": { + "others": { + "check": true, + "title": "Others" + } + }, + "label": "Others" + } +] \ No newline at end of file diff --git a/src/core/constants/tournamentData.json b/src/core/constants/tournamentData.json new file mode 100644 index 0000000..dcb4115 --- /dev/null +++ b/src/core/constants/tournamentData.json @@ -0,0 +1,87 @@ +[ + { + "name": "HKPDS", + "year": "2020", + "format": "BP" + }, + { + "name": "AODC", + "year": "2020", + "format": "BP" + }, + { + "name": "6th SIDO", + "year": "2020", + "format": "BP" + }, + { + "name": "Trường Teen", + "year": "2020", + "format": "" + }, + { + "name": "CDO (CNH Debat Open)", + "year": "2020", + "format": "WSDC" + }, + { + "name": "Spring KNC", + "year": "2020", + "format": "AP" + }, + { + "name": "CODO (Cogic Debate Online)", + "year": "2020", + "format": "AP" + }, + { + "name": "HDT", + "year": "2020", + "format": "WSDC" + }, + { + "name": "SDO", + "year": "2020", + "format": "BP" + }, + { + "name": "HKSDO", + "year": "2020", + "format": "WSDC" + }, + { + "name": "DDO", + "year": "2020", + "format": "AP" + }, + { + "name": "VNDO", + "year": "2020", + "format": "BP" + }, + { + "name": "NTDO (Nghe Tinh Debate Open)", + "year": "2020", + "format": "WSDC" + }, + { + "name": "VBC", + "year": "2020", + "format": "BP" + }, + { + "name": "Pre VBC", + "year": "2021", + "format": "BP" + }, + { + "name": "Online WSDC", + "year": "2020", + "format": "WSDC" + }, + { + "name": "6th Oldham Cup", + "year": "2020", + "format": "WSDC" + } +] \ No newline at end of file diff --git a/src/core/constants/tournamentOptions.json b/src/core/constants/tournamentOptions.json new file mode 100644 index 0000000..3d65c8f --- /dev/null +++ b/src/core/constants/tournamentOptions.json @@ -0,0 +1,3914 @@ +[ + { + "value": "axWwnyCM8L14pVHljukt", + "label": "1st Copa Leones de Debate (CLD) at University of Guadalajara 2018" + }, + { + "value": "zE81kJP5wPjz5f8QxBQV", + "label": "2017 Pan-American Universities Debating Championship 2017" + }, + { + "value": "wCRAjnrtb63AYMccILyl", + "label": "2018 Empire Debates 2018" + }, + { + "value": "z4iSwIorrpMlJtCaMJpP", + "label": "2020 Commonwealth Debating Championship 2020" + }, + { + "value": "kaKFVFzhrgSOIPlruLU6", + "label": "21st SSE Riga IV" + }, + { + "value": "Wpv6iXJkIPUXYIkl0dST", + "label": "6th Oldham Cup 2020" + }, + { + "value": "tkDLesahiehQ4Nqbr4eC", + "label": "6th Shanghai International Debate Open (SIDO) 2020" + }, + { + "value": "hoxSwibt3yivmk88aoAD", + "label": "AIB Trinity IV 2015" + }, + { + "value": "Q8FD3CioEeXKgMlwBG6R", + "label": "ASDO 2020" + }, + { + "value": "oUef705Eak69UuzgVheB", + "label": "Aberdeen Open 2012" + }, + { + "value": "4ENxr34b5j7GiIcVWnv9", + "label": "Aberdeen Open 2014" + }, + { + "value": "ShdZSmrzSQfbl0RYDnj8", + "label": "Aberystwyth Open 2014" + }, + { + "value": "oFJV1Acc1Gr7t6B77LSK", + "label": "Access Debate Tournament 2020" + }, + { + "value": "LDEsIQgDXxAdqGHF4x4e", + "label": "Aghveryan IV 2012" + }, + { + "value": "fYRQ3gsDALGgMYQf58zt", + "label": "All-Nigeria Universities Debate Championship 2019" + }, + { + "value": "YxG2TWeoQ8BT0rpxmfxT", + "label": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin 2018" + }, + { + "value": "MIEMFyC8nYMlqXU4wtOC", + "label": "Alternate Pre-ABP 2020" + }, + { + "value": "UPn4syqdx9T0fJyHm2Ej", + "label": "Alternative Open 2012" + }, + { + "value": "MIGnM2R39W5ZblVNkRTp", + "label": "America's Cup 2019" + }, + { + "value": "m2emSLcIwdpH2tsVpRhp", + "label": "An Najah Arabic Novice Online Debates 2020" + }, + { + "value": "gQ88d3loB2qwgD7ofmmr", + "label": "Arandjelovac Open 2014" + }, + { + "value": "DV29K6gIIl6nTiYeWo2j", + "label": "Argumentum Open 2020" + }, + { + "value": "KMhBpmj1LWPj5LN0aFUK", + "label": "Asia E-Debate Challenge 2020" + }, + { + "value": "TXUiH5ezPBItq39Het98", + "label": "Asia Queer Open 2020" + }, + { + "value": "yDvj9tks9IvE2CTAVfzV", + "label": "Asian English Olympics 2021" + }, + { + "value": "LlsxibXteGBGML9aitY2", + "label": "Asian Online Debating Championship (AODC) - BP 2020" + }, + { + "value": "V4GiH1luZDgYtx44QdOh", + "label": "Asian Online Debating Championship (AODC) - WSDC 2020" + }, + { + "value": "AhKyFYR1ZI0UjUmZnaXu", + "label": "Asian Online Debating Championship (AODC) - WSDC 2021" + }, + { + "value": "gsX4dlvvsr6lcKP3eM2T", + "label": "Assumption WUDC 2008" + }, + { + "value": "xwOMY1HAkkxJbFVQIUFJ", + "label": "Astana Debate Union Online 2020" + }, + { + "value": "irYSGlHj76RukmyCwWOG", + "label": "Astana Debate Union Open 2020" + }, + { + "value": "YF6iuqxO6eUISnAz4iMp", + "label": "Astana EUDC 2020" + }, + { + "value": "YbdPFTE9FbO3iQjZo87D", + "label": "Athens EUDC 2019" + }, + { + "value": "V8TulSs5yNLpZX8Xohpq", + "label": "Athens Open 2015" + }, + { + "value": "o85wPSMfUIKlsHQtkpnr", + "label": "Athens Open 2018" + }, + { + "value": "9MaCpfb2p23wkk8OOSBf", + "label": "Axiom Debate Open 2020" + }, + { + "value": "KMM87DnmWFjc4UzTdkjp", + "label": "Aztec Invitational 2016" + }, + { + "value": "POdYlP5an146yzuVI1Xg", + "label": "BBU Open 2014" + }, + { + "value": "qQd3HyiFI5fx18xViLoe", + "label": "BBU Open 2015" + }, + { + "value": "683xp6VC99fyKWXfWS9H", + "label": "BDC Pre-Worlds 2020" + }, + { + "value": "TSpa3WXkfFl9nQFbVbmi", + "label": "BDC Pro Ams 2017" + }, + { + "value": "Ba2zBwHOYMuoyQZQbecz", + "label": "BGU IV 2012" + }, + { + "value": "KauhYz2zVxnSCnoC8XMr", + "label": "BGU IV 2013" + }, + { + "value": "BsGevifhMX1weZjFgh7y", + "label": "BRAC Bank Great Gender Debates 2015" + }, + { + "value": "zidC2m00xOQF4gT3tgiY", + "label": "BRAC Genders Online 2020" + }, + { + "value": "RF6WJZV8JYPwFqSpNxlR", + "label": "BY Online Debate Open 2021" + }, + { + "value": "C0blbUxGmaQQTDvvJX6D", + "label": "Baden-Württemberg 2012" + }, + { + "value": "X4613Kz1qYjZyFPJzJlB", + "label": "Barcelona Debating Open 2019" + }, + { + "value": "py2YomguZSylDKYhWlhK", + "label": "Bard IV 2019" + }, + { + "value": "MULqjXPKLke2z3n3Aafx", + "label": "Beginner Tournament Mainz (DCJG) 2013" + }, + { + "value": "7eFEPGI7iZMY9BTHG43T", + "label": "Beihang International Online Debating Championship 2020" + }, + { + "value": "75jspJDrwq3Ldwex90Qr", + "label": "Beihang International Winter Online BP Open 2021" + }, + { + "value": "IpWyfCcksctR86jKX66g", + "label": "Belgrade EUDC 2012" + }, + { + "value": "NE3BXrt6CASI2EExAgUk", + "label": "Belgrade Open 2013" + }, + { + "value": "368JyxQNhxMm3WEWlba7", + "label": "Belgrade Open 2014" + }, + { + "value": "LYTCjoO4snxI4nOKTVZB", + "label": "Belgrade Open 2016" + }, + { + "value": "H6MeeIis6pg2gQbgEyuB", + "label": "Berkeley IV 2019" + }, + { + "value": "UlbXxRnvnqr2PXimcFud", + "label": "Berlin IV 2012" + }, + { + "value": "18IIGMrqE33YyULmp5EY", + "label": "Berlin IV 2013" + }, + { + "value": "aC5itVCb0EApgG8DEaqA", + "label": "Berlin IV 2014" + }, + { + "value": "VTJvfdWN7ZYlPkyTmGj1", + "label": "Berlin New Year’s Invitational 2012" + }, + { + "value": "XzAs4cMVeW91DHEgxF0k", + "label": "Berlin Online IV 2020" + }, + { + "value": "uk4xP1Lp7BjYaOzgd3Xi", + "label": "Berlin Punk 2012" + }, + { + "value": "0bpNzjTgN71TZQEkHTak", + "label": "Berlin WUDC 2013" + }, + { + "value": "WZCqEhVlkHd8g5WoExVG", + "label": "Berlin-Brandenburgischen-Meisterschaften (Championships) 2013" + }, + { + "value": "rTasJ7TWWuEMSXmebOaC", + "label": "Bielefeld Religion debate tournament 2014" + }, + { + "value": "pEzcbhejynC2gAdvgw1f", + "label": "Birmingham ESL Novice Mini 2015" + }, + { + "value": "9l3qvCwMUUUzEdTVXCoM", + "label": "Birmingham IV 2012" + }, + { + "value": "vgTQs0itA0pIPKzwI7CK", + "label": "Birmingham IV 2013" + }, + { + "value": "BvbIXgEeyaIcozyDf6R5", + "label": "Birmingham IV 2014" + }, + { + "value": "vTB5rmh37ZMzdOCJ34sF", + "label": "Birmingham IV 2015" + }, + { + "value": "PhJT1xhigiWcZot2PdLn", + "label": "Birmingham IV 2016" + }, + { + "value": "Mp1zDBiaN3PYnRnjPVIk", + "label": "Birmingham IV 2018" + }, + { + "value": "ptDJAxuw5pGiwabyHZil", + "label": "Bishop Anthony Lobo Championship 2020" + }, + { + "value": "LHNbcjmFANvMo9zTZOWN", + "label": "Bodden Cup 2013" + }, + { + "value": "YRWxNK3sQq47UacBwpjn", + "label": "Boddencup 2012" + }, + { + "value": "nzVlQYCb0rPo23sPMkA5", + "label": "Boddencup 2014" + }, + { + "value": "nFlN14QQWlnlNwJKIDru", + "label": "Bogwall (SSDC Novices) 2012" + }, + { + "value": "eBNO1FMsif7tzOa9LlnU", + "label": "Bogwall (SSDC Novices) 2014" + }, + { + "value": "XryJ0KVA6GiVngJthv3K", + "label": "Bogwall 2011" + }, + { + "value": "kpTzHelXPi3MmxVjSizP", + "label": "Bogwall 2013" + }, + { + "value": "3dDCV3YYSGl8TNe5f3iO", + "label": "Bonapartiaans Debattoernooi 2014" + }, + { + "value": "2XJwkUOw6JeegMJHT6Hl", + "label": "Bonapartiaans Debattoernooi Amsterdam (BDT) 2012" + }, + { + "value": "SfEIDDzpv3y19flsWYFH", + "label": "Borneo Online Debate Championship 2020" + }, + { + "value": "Biz1VRjjdg8eWbm4NJr3", + "label": "Botswana WUDC 2011" + }, + { + "value": "y6twZcPBW4VtQsAZQ3Mw", + "label": "Brabants Debattoernooi 2014" + }, + { + "value": "GyiwbDg4TBAWCn1HmjKi", + "label": "Brad Smith Debate Tournament 2015" + }, + { + "value": "P4io30tN10TYMqGkj2sX", + "label": "Brad Smith Debate Tournament 2017" + }, + { + "value": "6j3LrbKUgx9arVygXUjf", + "label": "Brad Smith Debate Tournament 2019" + }, + { + "value": "LczIO0anMv6dKnbpRYYr", + "label": "Brandeis IV 2013" + }, + { + "value": "H2ZQZD4EPmxpktxvJnUz", + "label": "Brandeis IV 2014" + }, + { + "value": "8umdzosR2LakbIpLGOan", + "label": "Brandeis IV 2015" + }, + { + "value": "Wg2225mgODwBGF4GMBLR", + "label": "Brandeis IV 2016" + }, + { + "value": "MNBafFvHXt5WwIet1zGa", + "label": "Brandeis IV 2018" + }, + { + "value": "IIWebjlC0qunFyLmEiVa", + "label": "Bristol IV 2012" + }, + { + "value": "yrT248aRWPJC4Vb6MsRt", + "label": "Bristol Open 2013" + }, + { + "value": "U5yvbgLSUvue8vCmib81", + "label": "Bristol Open 2014" + }, + { + "value": "0NYsqnVN9ZPLLJvXAZdI", + "label": "Bristol Open 2016" + }, + { + "value": "l8sHmpUe0bZ9QUWrf0pm", + "label": "Bristol ProAM 2013" + }, + { + "value": "bWRhS5k8Iv19aHOMEz5C", + "label": "Brno Open 2012" + }, + { + "value": "6SkyoBySWDSJCqeHrA9S", + "label": "Bruder Grimm Cup 2012" + }, + { + "value": "kveNSL63Zo9kOYIUJlW2", + "label": "Brüder Grimm Cup 2013" + }, + { + "value": "OQmCXCvJatQN0zG3lklx", + "label": "Bucharest Cup 2014" + }, + { + "value": "PNpMzinCvz3Z9bTJfV9t", + "label": "Bucharest Universities Debating Cup 2013" + }, + { + "value": "JvpXQ1DYmWydXXgsnZ74", + "label": "Budapest Open 2012" + }, + { + "value": "gaW3hl0mF758MDm7UkNs", + "label": "Budapest Open 2013" + }, + { + "value": "QVeTcZONRdDbH5LSNeSf", + "label": "Budapest Open 2014" + }, + { + "value": "bcb5yQt6p8cx9SACsvYL", + "label": "Budapest Open 2016" + }, + { + "value": "WnH3YWwA4xB4HPfqIqea", + "label": "Budapest Open 2017" + }, + { + "value": "SGpBjVPnJkFrJB0hnxYv", + "label": "Budapest Open 2019" + }, + { + "value": "4WWD63gqcbSKMNoFf5ly", + "label": "Bulgaria Open 2014" + }, + { + "value": "wLfoMQYsV3E4fiFQ126i", + "label": "CMS Cambridge Women's Open 2016" + }, + { + "value": "FZTHJ19pUWQG2SZNeOvr", + "label": "CNH Debate Open (CDO) 2020" + }, + { + "value": "jfv01DUCOrtLcsyMO6qo", + "label": "CP Nationals 2020" + }, + { + "value": "JHo8pIpzQxzUKHUwVDFf", + "label": "Cambridge Asia BP 2021" + }, + { + "value": "7xqpYA72Sruch4lr5Uzj", + "label": "Cambridge IV 2011" + }, + { + "value": "MKnFsrIKq8equaMluK21", + "label": "Cambridge IV 2012" + }, + { + "value": "4XkvQJQxtOHIIF6sH97v", + "label": "Cambridge IV 2013" + }, + { + "value": "tC9C0k05cAmtT3IBK2AV", + "label": "Cambridge IV 2014" + }, + { + "value": "DFNWZhapl7SHDFBrFsMi", + "label": "Cambridge IV 2015" + }, + { + "value": "macdlwUjYqFCGHKvQS20", + "label": "Cambridge IV 2016" + }, + { + "value": "MIrEXPHnAIOpqQw6kxky", + "label": "Cambridge IV 2017" + }, + { + "value": "ChiU8yMbLI2Y2q5rwURP", + "label": "Cambridge IV 2018" + }, + { + "value": "S5UzkuOf9XN6BnhOSbRC", + "label": "Cambridge IV 2019" + }, + { + "value": "fD5a3Vi9JDUEndfjCOKz", + "label": "Cambridge Invitational 2013" + }, + { + "value": "Mi4A41wAaOQFffgxIvSR", + "label": "Cambridge Women's Open 2015" + }, + { + "value": "gDONpxWgr0bu13hZzxYr", + "label": "Cambridge Women’s 2014" + }, + { + "value": "V8KRgdahxIEUYFHrRWYb", + "label": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish) 2013" + }, + { + "value": "yFALyexswW7KtxRDS4He", + "label": "Campeonato Mundial Universitario de Debate en Español (CMUDE) 2014" + }, + { + "value": "Hpsxcd5Zzu5xq9ehtKkj", + "label": "Campus-Debatte Wien 2019" + }, + { + "value": "lFdTm9Bd7AxKRkVImhbS", + "label": "Canadian BP Championships (@ McMaster University) 2013" + }, + { + "value": "WACrra94379E35Be36hc", + "label": "Canadian BP Nationals 2016" + }, + { + "value": "SIrskBVMCwGNCZibcnP1", + "label": "Canadian British Parliamentary Championships (@ Western University) 2014" + }, + { + "value": "TAVBVNzO0c2PrQ44iAyC", + "label": "Canadian British Parliamentary Championships (@ York University) 2015" + }, + { + "value": "mAqW9Go1ryAbaaM1OY8z", + "label": "Canopus Debate Championship 2021" + }, + { + "value": "aywt5Kt0TqoeqngKQ0I4", + "label": "Cape Town Open 2014" + }, + { + "value": "roH9ICCjwscIePFGM61P", + "label": "Cape Town Open 2015" + }, + { + "value": "EP5HDm4G3OfMlciId6YM", + "label": "Cape Town WUDC 2019" + }, + { + "value": "cp0MD0ZRWeTfahcPD6wj", + "label": "Cardiff IV 2012" + }, + { + "value": "MyZkPsGPMuQ4XmFzJLVW", + "label": "Cardiff Open 2014" + }, + { + "value": "HQ85pr5BC7hv3GPpOuzX", + "label": "Cardiff Open 2015" + }, + { + "value": "8PjX16DCJ3bPRWbiNKNn", + "label": "Cardiff Open 2016" + }, + { + "value": "RLX3o4g1PsjOGvcOJBWD", + "label": "Cardiff Schools 2015" + }, + { + "value": "bTRRi7oLbaQA5e1qz6Qc", + "label": "Cedar College Debating Championship 2018" + }, + { + "value": "a6rNMpZKAK9f2nCSkXu1", + "label": "Central European Cyberspace Open 2020" + }, + { + "value": "Jy8kbmlTXWgf8pRg3dUy", + "label": "Centrale IV 2013" + }, + { + "value": "ZQQO7Q0LBTeQnU1Rb8fK", + "label": "Centrale Open 2012" + }, + { + "value": "ovD89w3g4H3GjEFmXcRL", + "label": "Chancellor's Cup (Queen's University) 2013" + }, + { + "value": "PRCVo2dP9UPdRU9tVW31", + "label": "Chancellor's Cup (Queen's University) 2014" + }, + { + "value": "3Gl2F99bU3ZHa2ZjcrUR", + "label": "Chancellor's Cup (Queen's University) 2015" + }, + { + "value": "pvKZkg6sqicG5nXA2mvY", + "label": "Chennai WUDC 2014" + }, + { + "value": "MKOx1AvBmfWL7cHrRXg2", + "label": "China BP 2018" + }, + { + "value": "Ns60Gy3xxrtFcpflRpTk", + "label": "Chittagong University IV 2016" + }, + { + "value": "JtHb8gJ24LeJcHq82rm5", + "label": "Cicero Debattoernooi 2011" + }, + { + "value": "tnPBotxO7gOOKcyCXAUw", + "label": "Cicero Debattoernooi 2012" + }, + { + "value": "48Ba3dAlJxoct1Z9f7GA", + "label": "Cicero Debattoernooi 2014" + }, + { + "value": "bkOT9pwqHsKTlwricRHY", + "label": "Cicero Toernooi 2013" + }, + { + "value": "fkUHa28aVk8LYYEAdofu", + "label": "Cinnamon Scroll 2020" + }, + { + "value": "seLxlAUewt8fbZdlsCGC", + "label": "Circuit Breaker Debate Open 2020" + }, + { + "value": "h5ajoFHOT7mXoe90wbQ3", + "label": "Claremont 2015" + }, + { + "value": "1qq9g2ApB8UdvPr2ewx1", + "label": "Cogic Debate Online (CODO) 2020" + }, + { + "value": "FOAZQcGDy003yv7fx3AI", + "label": "Cogic Debate Online (CODO) 2021" + }, + { + "value": "EpjauMajAi9smGSUAKpC", + "label": "Coimbra Debate changing Europe round 2013" + }, + { + "value": "53fI8Yf0j74CAnSOjn9g", + "label": "Colgate Open 2017" + }, + { + "value": "ZClJskShp09gm6WCITGC", + "label": "Colgate Open 2019" + }, + { + "value": "HoLiUjyGmwX7JSxXmTh1", + "label": "Commonwealth Debating Championship 2020" + }, + { + "value": "bvHOR7Oow9PPlKPlA2BT", + "label": "Commonwealth Open (Australs style) 2013" + }, + { + "value": "FpzYvT6Prqbibn0xYvov", + "label": "Copenhagen Mini Open 2014" + }, + { + "value": "IrZL7r0XTyBpGGSAYVYR", + "label": "Copenhagen Open 2014" + }, + { + "value": "H4i4RR7JXk14xDRe7PUX", + "label": "Copenhagen Open 2015" + }, + { + "value": "riEZk6ypdW0s5dnVIggc", + "label": "Cork IV 2011" + }, + { + "value": "ch7bmkDPz31zOvzM3txF", + "label": "Cork IV 2012" + }, + { + "value": "3tMy4nyufgrwLpV8f6da", + "label": "Cork IV 2013" + }, + { + "value": "wdL4H8i9EHTz4mqKuZHP", + "label": "Cork IV 2016" + }, + { + "value": "JzS0MHRn0Mb2AaYiEq5h", + "label": "Cork Invitational 2013" + }, + { + "value": "kFpM1KUkMmDded3L4Zmm", + "label": "Cork WUDC 2009" + }, + { + "value": "S8L2dAmi0YWoG48OtAbx", + "label": "Cornell Novice Nationals 2017" + }, + { + "value": "8DernPpRwzBf2YIkESEX", + "label": "Cornell Novice Nationals 2019 & Cornell IV 2019" + }, + { + "value": "6NSl7moQPnBVA2R4Z66b", + "label": "Cracow Open 2019" + }, + { + "value": "WcNueZiJXeg9z82dijdL", + "label": "Cross Deb Soc Practice Tournament Ed. 1 2020" + }, + { + "value": "15hrO4GoCxXF2OIdl7fS", + "label": "Cross-DebSoc Pre-ABP Tournament 2020" + }, + { + "value": "pFBjdI3lKCaS5TpjBKVP", + "label": "Cyberpunk IV 2020" + }, + { + "value": "iFjWzR2mR3mBo4zzvGeZ", + "label": "Czech and Slovak Championships 2013" + }, + { + "value": "KEJHhRHDE4CXyVyy0Jy8", + "label": "DAPDI 2013" + }, + { + "value": "xAdc6R4uC1xkQxvmPedU", + "label": "DAV Debate Open (DDO) 2020" + }, + { + "value": "JaZQ7l5B4R6smBKTdFQJ", + "label": "DAV IR Cup 2021" + }, + { + "value": "GfEZYNzXPpqDU3CX6qxi", + "label": "DCU Open 2012" + }, + { + "value": "Kv7YNlz47VitorsH2zY7", + "label": "DCU Open 2013" + }, + { + "value": "6GQGSjlsY612FPwbXRbB", + "label": "DCU Open 2014" + }, + { + "value": "JTOMyeCSk6IujHBgAOMi", + "label": "DDG Masters Cup 2013" + }, + { + "value": "TtoxDZeWyCKcOginS4mH", + "label": "DDG Master’s Cup 2012" + }, + { + "value": "K6vtfx7dBNzsAtTkNiF1", + "label": "DGBDS Mace 2020" + }, + { + "value": "1bBjpR84rI88s6EveWzm", + "label": "DSDC Coherence 2020" + }, + { + "value": "9yPqE2fe1oaHsd7ankOa", + "label": "DTU Parliamentary Debate 2021" + }, + { + "value": "3thiHP0WT1SpBvjVmMFz", + "label": "DU IV 2019" + }, + { + "value": "AKtcioaPMHcBM5C3fCCP", + "label": "DWF Manchester IV 2015" + }, + { + "value": "znXRdnU2llK8fXmHlci5", + "label": "Da Nang Debate Open 2021" + }, + { + "value": "zngB1WF8viOW2uGu6swZ", + "label": "De La Salle WUDC 2012" + }, + { + "value": "1DUltfq5WOlWowHiNs5h", + "label": "Debate for Donation Open 2020" + }, + { + "value": "Y8UBPz5agTr6QKYI2kXS", + "label": "Debatijada Open 2013" + }, + { + "value": "NNES6CXrTQ3wDbdnrNDb", + "label": "Debattoernooi Utrecht (DTU) 2012" + }, + { + "value": "RlGrdg8aVMD5XQVuPN3W", + "label": "Decemberac (beginners tournament) 2013" + }, + { + "value": "HbzzxzNaEfw54UvTulVq", + "label": "Denny Crane 2013" + }, + { + "value": "OJi1hwkxrfVjCOf6ZDRH", + "label": "Denver IV 2017" + }, + { + "value": "Bx1uUqHBcAJ7qAZcUwyz", + "label": "Denver IV 2018" + }, + { + "value": "02vn4ksQhlUNksv2wu0q", + "label": "Deree Invitational LIX 2020" + }, + { + "value": "jS13nU6Cack3rcPrnNZ5", + "label": "Deree Invitational LVII 2019" + }, + { + "value": "VAfi19aZTAIKaUuELBL1", + "label": "Deutsche Debattiermeisterschaft (German Language Debating Championships) 2014" + }, + { + "value": "Ef5RtQo9Rr0nt7Nnhncq", + "label": "Deutschsprachige Debattiermeisterschaft 2013" + }, + { + "value": "uzQt6oPnVD6bic70Yo39", + "label": "Downpour Open '20 2020" + }, + { + "value": "hxyBKkKJhsnBL7pt0NTu", + "label": "Downpour Open 2020" + }, + { + "value": "DIDaTQVu3sv4iXbqf3eE", + "label": "Doxbridge 2: Euros Bungaloo 2020" + }, + { + "value": "nKWTDNECNNvbMxNcdVJM", + "label": "Doxbridge Online Open 2020" + }, + { + "value": "K8mVAYwcb9xlXvnmmJBY", + "label": "Drishty English Debate Championships 2015" + }, + { + "value": "ZZxKEPTbhJYYUI5iW5Cz", + "label": "Durham Australs 2016" + }, + { + "value": "pLQyWywMwoV4AU3XoFJO", + "label": "Durham IV 2011" + }, + { + "value": "sVguH0ZxbQ8C5aNo2rNf", + "label": "Durham IV 2012" + }, + { + "value": "4dzoeUxkRP5WxDaCVtbY", + "label": "Durham IV 2013" + }, + { + "value": "zbDMNQdzWmUf0FHPwYDO", + "label": "Durham IV 2017" + }, + { + "value": "BXqPhfwak2R1kYHV48bp", + "label": "Durham Open 2014" + }, + { + "value": "rTCB6GUTIjymEKsbO01i", + "label": "Dutch Debate Masters 2012" + }, + { + "value": "GnB4dJJK9KmnatnkLGmS", + "label": "Dutch Mace 2012" + }, + { + "value": "IK2tQhXBb3v4DJKRH1Ve", + "label": "Dutch Mace 2014" + }, + { + "value": "IxT6Qaz01G1Db87fU73z", + "label": "Dutch Mace 2016 (The Netherlands) 2016" + }, + { + "value": "eNRfEfbvRNeRnZhk4TS2", + "label": "Dutch Masters 2013" + }, + { + "value": "DpY0fOiqQ2FcccIfvmaH", + "label": "Dutch National Championships 2013" + }, + { + "value": "oopKRuBfN6tSw3UTWZKT", + "label": "Dutch Novice Cup 2011" + }, + { + "value": "B63fWPacAJNcBJdaEpVz", + "label": "Dutch Open 2012" + }, + { + "value": "E91ZTw8wNjTYuX6RmZCc", + "label": "Dutch Pro-Am Tournament 2011" + }, + { + "value": "t1jiRXU99xeGdoIkTeyF", + "label": "Dutch WUDC 2017" + }, + { + "value": "av1jBA9UCgf82WNPu88k", + "label": "EBS Open 2013" + }, + { + "value": "E6Cr0CYWyZinduIgwsMe", + "label": "ESCP Debating Open 2012" + }, + { + "value": "kFgdnpZDLOmYAkEJ1Zu6", + "label": "ESU England Mace 2011" + }, + { + "value": "PIBLfC67BXtpF7r3aqIV", + "label": "EU-China Youth Debate Tournament 2011" + }, + { + "value": "5YRD8EoL8wrQu3pTfkUI", + "label": "EUDC Challenge IV 2020" + }, + { + "value": "H8XCoxhHfhkNSTYxwR42", + "label": "Earlsfort Open 2013" + }, + { + "value": "Izblbv0LXDRNyAVA9nPW", + "label": "Earlsfort Open 2014" + }, + { + "value": "S2mG18EWYdh2bPEadyd9", + "label": "East Coast Asians 2020" + }, + { + "value": "81tUVTFSIzBinbpptw4G", + "label": "Eastern Online IV 2020" + }, + { + "value": "n7qv29PmNuF5SOe42oiz", + "label": "Easters 2019" + }, + { + "value": "9PjiZBOUlI39GMCrggZs", + "label": "Edinburgh Cup 2011" + }, + { + "value": "9jfZRYzidDD9sleXlrNL", + "label": "Edinburgh Cup 2012" + }, + { + "value": "qA0UqqN9np2leDGCNcck", + "label": "Edinburgh Cup 2013" + }, + { + "value": "LuNDiT9YYZhQScUmMX82", + "label": "Edinburgh Cup 2014" + }, + { + "value": "uUwIAKIDo0apui0AqOxG", + "label": "Edinburgh Cup 2016" + }, + { + "value": "pjVFBJWiohJyZdRBk33H", + "label": "Edinburgh IV 2013" + }, + { + "value": "FJoy56lyo9s1SqE3RvFO", + "label": "Elbe Open 2013" + }, + { + "value": "h373wn3dFw9UcWDcJpyy", + "label": "Eloquentiatoernooi (Eloquence tournament) 2014" + }, + { + "value": "TpCKtGVry2w5xrgb90jZ", + "label": "Empire Debates 2017" + }, + { + "value": "JnSWyQ6SCHL0BH7wjdBS", + "label": "Empire Debates 2018" + }, + { + "value": "xixMAepJqW9TAZSYVdsR", + "label": "Empire Debates 2019" + }, + { + "value": "O8PsW6uDBzwzQZ3zO447", + "label": "English Cup 2013" + }, + { + "value": "R2D7uxDuM6stYlRyK9ev", + "label": "English Open 2013" + }, + { + "value": "7nPyt59LCWbXBYzvRfL4", + "label": "English Open 2015" + }, + { + "value": "zUT5H7Cgh7l0a0sJSIba", + "label": "Erasmus Rotterdam Open 2016" + }, + { + "value": "FISzpNaGZKCHkhtDdzPp", + "label": "Erasmus Rotterdam Open 2020" + }, + { + "value": "Cx2GIJEWrhOBR3DTErNu", + "label": "Essex IV 2013" + }, + { + "value": "tp2xo2eFva2we2bqlQBC", + "label": "Estonia Debate Open 2019" + }, + { + "value": "RA6EqhjHK7wF8NHgzThB", + "label": "Estonia Open 2012" + }, + { + "value": "d0CBbRAyIQhiX69bWaKA", + "label": "Estonian BP Championships 2013" + }, + { + "value": "W8zmuuOkdBsEHQw2r0RP", + "label": "Estonian Open 2013" + }, + { + "value": "AsoDjVHcLSyKMQmLkB7S", + "label": "Estonian Open 2014" + }, + { + "value": "b1sXr4qyDgdbj0UNSjmS", + "label": "Estonian Open 2015" + }, + { + "value": "LSZbchiNq33jtWsW0vWQ", + "label": "Estonian Pro-Am Tournament 2011" + }, + { + "value": "BhBkit7bGTegIhEEknJU", + "label": "EuroDebate 2015" + }, + { + "value": "9akG27VqSvbqsF3kGa1l", + "label": "European Round Robin 2019" + }, + { + "value": "V7FJhUQXRQ0Z4dnL94bu", + "label": "Evodio Online Open 2020" + }, + { + "value": "0bOkf8RbGJTfzpOQVOgY", + "label": "Exeter Open 2013" + }, + { + "value": "kIlyrRRnzkKK1188i1Qf", + "label": "Exeter Open 2014" + }, + { + "value": "BPe1MqSgmLovUz7nghmX", + "label": "FLSS Debate Tournament 2021" + }, + { + "value": "4Nqwg2GbRwaUJ5LaWcSt", + "label": "FLTRP Training Beijing Debate Open 2019" + }, + { + "value": "L0ovxzciizWhfK3fHJU8", + "label": "Feminism Open 2019" + }, + { + "value": "CEIVtMmh2XElfzcXXjzn", + "label": "Feminism Open 2020" + }, + { + "value": "3KT5cUfqBjWrhC0DWPAs", + "label": "Feminism and Gender Tournament 2013" + }, + { + "value": "7iuaP5vcRAvHJFM4QYmP", + "label": "FinEst 100 Open 2017" + }, + { + "value": "51E7OUgehZFAtBNKOqe4", + "label": "Final Irish Times 2012" + }, + { + "value": "UVd3X0lgKy2dOb5Yx1c7", + "label": "Finnish National Championships 2011" + }, + { + "value": "qyxvpB5I720Gz7RHswLI", + "label": "French Debate Association Tournament 2012" + }, + { + "value": "1bpcDodsw3NA8n7dGxeb", + "label": "French Debate Association Tournament Final 2012" + }, + { + "value": "yVVVtx7P8rPHdo6JrUJ8", + "label": "French Debate Association Tournament Open_Semiss 2012" + }, + { + "value": "xhybIYo7794YRuqyGPHW", + "label": "French Debate Association Tournament Preliminary Rounds 2012" + }, + { + "value": "Kpa8GUvqSrTVoNVUqmI4", + "label": "French Debating Association Final 2013" + }, + { + "value": "lPDzPC4VnYOwQX2ZPrUv", + "label": "French Debating Association Open_Semiss 2013" + }, + { + "value": "zppT86F7lAE0Gpp7tWYo", + "label": "French Debating Association Tournament 2013" + }, + { + "value": "nMUJTA4Krf9MyO7MGVzA", + "label": "French Language World Championships Debating 2014" + }, + { + "value": "VmS29bKnoZWYDeWGOc08", + "label": "Frischlingscup 2013" + }, + { + "value": "gLCKOLupIE8JBGxBG9vu", + "label": "Frishlingscup 2014" + }, + { + "value": "4AUWV6dX7gzPml1BbN5u", + "label": "GDPPC Open 2013" + }, + { + "value": "mf3XudZleydnsr0lEvkg", + "label": "GGDSD PDC 2020" + }, + { + "value": "lVzNmdGBefqKp5cetQ6Z", + "label": "GUU Ancients 2016" + }, + { + "value": "U5BIn9cy3EEIjFx2mHye", + "label": "GUU Womens 2016" + }, + { + "value": "GFxILtaCaIOzQVLckGus", + "label": "GV Debate 2018" + }, + { + "value": "9tZJ2IRGMD2GsDxXtVJA", + "label": "GWU Eastern Championships 2017" + }, + { + "value": "CLp8pjuIm6vddMdiBEC5", + "label": "GWU IV / US Universities Debate Eastern Championship 2019" + }, + { + "value": "BjyPWHMlV10O4VN8B1XE", + "label": "Galway Open 2012" + }, + { + "value": "m2l0j7TwryKeK2YnXK9e", + "label": "Galway Open 2017" + }, + { + "value": "4NEhQx2m4XcXy6SxnoqS", + "label": "German Language Championships 2012" + }, + { + "value": "wYhrxey2tVddZfEkGSYA", + "label": "German Regional Championships North-East 2013" + }, + { + "value": "2fNmUq1mfr7IP3WAvr0Q", + "label": "German Regional Championships South (Austria and Switzerland) 2013" + }, + { + "value": "nFeuKMAFpK6Amwi6OMai", + "label": "German Regional Championships West 2013" + }, + { + "value": "tLlByvzEQCgHw5hl7kZg", + "label": "Glasgow Ancients 2013" + }, + { + "value": "o2dx25z3TGRcLxLt33Qk", + "label": "Glasgow Ancients 2014" + }, + { + "value": "c7J6C6adBALyiCv5F8G1", + "label": "Glasgow Women’s 2014" + }, + { + "value": "EpANk5V3VQNFWagnktFN", + "label": "Guangdong Debate Challenge 2017" + }, + { + "value": "RautsrmlhwL2BBMyTRVG", + "label": "Guindon Cup (University of Ottawa) 2013" + }, + { + "value": "ZvEJb11Ww6RpoVmg4QV3", + "label": "Guindon Cup (University of Ottawa) 2014" + }, + { + "value": "ZpOi9wuiFrLbKo4ygC2p", + "label": "Guindon Cup (University of Ottawa) 2015" + }, + { + "value": "Awa41MBby9wm71OwFQyo", + "label": "Gutenberg Cup 2012" + }, + { + "value": "zkcJOcuUSlxmaS6nsMl7", + "label": "Gutenberg Cup 2013" + }, + { + "value": "BEmSFvOGfvfXfJxFm9a7", + "label": "Gwalia Open 2020" + }, + { + "value": "sIrS2zWJD8m7ibVjvyDN", + "label": "Gấu Debate Tournament 2021" + }, + { + "value": "m97biSF63NO9Jn1yenBI", + "label": "Gấu Online Debate Open 2020" + }, + { + "value": "dDIi9GGQPeWrjPS0rR75", + "label": "Gấu Online Debating Championship 2020" + }, + { + "value": "aT0uKXAE6J8EslDVKzO1", + "label": "HSE Open 2012" + }, + { + "value": "jHRVS3aznjPPQaxWT8bs", + "label": "HSE Open 2013" + }, + { + "value": "1Zlx7tjmmkRhrDxYF8Qr", + "label": "HSE Open 2014" + }, + { + "value": "mBBGfJmUYufw4KNTlYoR", + "label": "HWS Fall Classic 2015" + }, + { + "value": "WfHILzlB4oGzI34Iwqaw", + "label": "HWS IV 2016" + }, + { + "value": "9WoIT6ofG5A9j3MeLxh4", + "label": "HWS IV 2018" + }, + { + "value": "i3UU49z9MRO6phe9r1BH", + "label": "HWS North American Universities Debating Championsip 2017" + }, + { + "value": "wZYAoJ8UubcT3x3E0CVj", + "label": "HWS Round Robin 2013" + }, + { + "value": "4yVRmMNHzHW12EVIlnyZ", + "label": "HWS Round Robin 2014" + }, + { + "value": "HlR3H86XBK4mqvL9v5HT", + "label": "HWS Round Robin 2015" + }, + { + "value": "7bcIb5yS1YVpFE3hzoDf", + "label": "HWS Round Robin 2016" + }, + { + "value": "dF61f0kc1Q0KQCGUhM1l", + "label": "HWS Round Robin 2017" + }, + { + "value": "2D1SBKQDFgG0zGjX4oHP", + "label": "HWS Round Robin 2018" + }, + { + "value": "lmRNEraLEkD31bc6Nbnn", + "label": "HWS Round Robin 2019" + }, + { + "value": "FvCiiwW1VYBNdYW8QTUA", + "label": "HWS Round Robin 2021" + }, + { + "value": "3B01KdqnCVzQEVjKcHiT", + "label": "Hanoi Debate Tournament (HDT) 2020" + }, + { + "value": "fBPBbh32BZ2p0Y1Fy5Yi", + "label": "Hanoi Debate Tournament (HDT) 2021" + }, + { + "value": "swAbmAXdPnojWIXuZFwm", + "label": "Hart House IV 2014" + }, + { + "value": "xik6XdvZ0JGG1hySfuwC", + "label": "Hart House IV 2015" + }, + { + "value": "G1sEnthTpFCqlrrU3bnJ", + "label": "Hart House IV 2016" + }, + { + "value": "hrSRQu49cq5gHsXJLBgQ", + "label": "Hart House IV 2017" + }, + { + "value": "s6w7WZApDWnBBmzeKY4h", + "label": "Hart House IV 2019" + }, + { + "value": "wLO2B4MufJ4R3qOzUGM8", + "label": "Hart House Inter-Varsity 2018" + }, + { + "value": "RPKNKQNkycR35T4aIzhw", + "label": "Heart of Europe BP 2014" + }, + { + "value": "mk4ycJh6yz0VDCnkysot", + "label": "Heart of Europe British Parliamentary Debate track 2013" + }, + { + "value": "8OIcp0isoNfvCv3ZWmkt", + "label": "HeidelBÄM 2014" + }, + { + "value": "4V6pb0chg0WcRQyc6Zde", + "label": "Helsinki Freshers' ProAm 2017" + }, + { + "value": "qj5XULQcWvkGn23VActf", + "label": "Helsinki Mini 2014" + }, + { + "value": "UFyGWwwkKkZKyD4oHYoI", + "label": "Helsinki Mini 2016" + }, + { + "value": "lleJhm2ki2Ixm97fXI7b", + "label": "Helsinki Open 2014" + }, + { + "value": "FfDrngjMOaUCYfZgnHPC", + "label": "Helsinki Open 2015" + }, + { + "value": "jkJhYCzI3XvX3Zgm0Ivc", + "label": "Helsinki Open 2016" + }, + { + "value": "cTxMF0myfwbQDPdL8Ral", + "label": "Helsinki Open 2020" + }, + { + "value": "98I1jSQnLhtFnsr8fu0R", + "label": "Heriot Watt Open 2013" + }, + { + "value": "XKnRXbL5iWiOHmPMcGVz", + "label": "Heriot-Watt Open 2012" + }, + { + "value": "Ben6dcgLsdnzfbpJrHhp", + "label": "Heriott Watt Open 2014" + }, + { + "value": "0Z9IiWTQjupe7Jbemo9Y", + "label": "History Tournament 2013" + }, + { + "value": "7vCURwwkA80JiqPvxSZu", + "label": "Hollatz Debates 2017" + }, + { + "value": "IXq1CdgyiKmkyEDJURrV", + "label": "Hong Kong Debate Open 2020" + }, + { + "value": "mNwitMoNsjWupgwG8pR5", + "label": "Hong Kong Parliamentary Debating Society (HKPDS) 2020" + }, + { + "value": "VQZZXpisO7Sjz81KUlh9", + "label": "Hong Kong Pro Ams 2020" + }, + { + "value": "KncW7pH1nDIom3xK89VG", + "label": "Hong Kong Schools Debate Open (HKSDO) 2020" + }, + { + "value": "9hmPqfKzlDmhAISeJsts", + "label": "Huber Debates 2016" + }, + { + "value": "yOWDiguNGQHwr42mgnqv", + "label": "Huber Debates 2017" + }, + { + "value": "vURFmLn4wdqX6ZbK0ini", + "label": "Huber Debates 2018" + }, + { + "value": "kDr04nbGJ33SICZ9XUHJ", + "label": "Hull Open 2013" + }, + { + "value": "f1thAYfptp3bklFlrsSe", + "label": "Hull Open 2014" + }, + { + "value": "SE4KfMNAU58WSM6yajEF", + "label": "Hòa Vang Debate Online 2020" + }, + { + "value": "H8ZxEfGXutRQeJ3mqisV", + "label": "IBA DU Nations League 2020" + }, + { + "value": "RBRYOdP46mh5ouOqVUWX", + "label": "ICYD - Oxford Round 2016" + }, + { + "value": "Jl23y0GShc9Ja7NTPZJw", + "label": "ICYD- Oxford Round 2016" + }, + { + "value": "DfdqiFdfgcruP1pBNiHK", + "label": "IDAS 2011" + }, + { + "value": "qDUBTulIlHZP0un39LYK", + "label": "IDAS Tournament 2013" + }, + { + "value": "wuDBbL4uYIZXIthzVv4V", + "label": "IDAS Tournament II 2011" + }, + { + "value": "0M48sfM68g8U5RgkKD2l", + "label": "IDAS tournament 2012" + }, + { + "value": "dhjYMHAKQ3baHl4HMJbh", + "label": "IDC Porto Debate Camp and Open 2012" + }, + { + "value": "gf4DgO2PbJKuaj3RSFTp", + "label": "IDEA Debate@Europe final event 2012" + }, + { + "value": "pTevyvO7FxIMrQi4ThJ5", + "label": "IDEA European Cup 2012" + }, + { + "value": "8mQg9HgZBO4ebq8ubmRJ", + "label": "IDEA League of Young Voters European Cup 2014" + }, + { + "value": "MPR74LYpg8Ru6paM45U9", + "label": "IDEA-DTU 2013" + }, + { + "value": "DWR60IgakRS9N3GeNemc", + "label": "IIT Bombay IV 2017" + }, + { + "value": "LbgZumsAetYW4T3JVQrG", + "label": "ISIC 2016" + }, + { + "value": "0uv0Q5NYNxSkCbhPLLRo", + "label": "IUBDC Rational Wrangle 2020" + }, + { + "value": "myGQJSUNqcxcCjm3bONn", + "label": "IUT Professionals 2018" + }, + { + "value": "C4Vv4FZW36V7ONi9kULg", + "label": "Iasi BP Open 2012" + }, + { + "value": "1zpwTG4R66xy1c4CrMeq", + "label": "Imitation Cup 2020" + }, + { + "value": "ZqM3Me0eKutOMMTkPwgA", + "label": "Imperial College Open 2011" + }, + { + "value": "IliTD9CbISxS4XPApnIH", + "label": "Imperial IV 2014" + }, + { + "value": "iWZAiFK5ukpLd7JEkH5z", + "label": "Imperial IV 2020" + }, + { + "value": "exPe8nnWDA3806gTTyfK", + "label": "Imperial No Notes Open 2013" + }, + { + "value": "1aLx5bJZiwmW3mkmtmNO", + "label": "Imperial Novices 2016" + }, + { + "value": "JcJtvTXBcNJ3kYX5noH9", + "label": "Imperial Open 2012" + }, + { + "value": "wXcojonR6N4b28c9T963", + "label": "Imperial Open 2013" + }, + { + "value": "PULmrzx6k00EzEt7BxfG", + "label": "Imperial Open 2016" + }, + { + "value": "W9AVDusjw9BvQds3bmVL", + "label": "Imperial Summer IV 2012" + }, + { + "value": "H2Xg2NvZoEwZtgc8tzmz", + "label": "India Debate Open AP 2020" + }, + { + "value": "DNe0c1xNBVoG02MsO66g", + "label": "Indian Schools Debating Society Chennai Leagues, 2016" + }, + { + "value": "xv0FPHxLsij7LUJlUmBy", + "label": "Indian Womxn's Debating Championship 2020" + }, + { + "value": "980ImkvfswyUVd54XFQd", + "label": "Inner Temple IV 2013" + }, + { + "value": "rkItJ1M9he5ApXeOVBjJ", + "label": "Inner Temple IV 2016" + }, + { + "value": "if0ptVr0NjWKFiLehpRT", + "label": "Inner Temple IV 2018" + }, + { + "value": "i1HAMqWg9Epu5Ys9FJg5", + "label": "International Competition for Young Debaters, Finals Day, 2017" + }, + { + "value": "2oCOivyDrGd4jrwjPjKk", + "label": "International John Smith Memorial Mace Final 2012" + }, + { + "value": "ZHpmROZ4G7eY4iB9dTsM", + "label": "Irish Mace Debates Round 2 2012" + }, + { + "value": "vi6XWcSzDVFPlnv9t3eB", + "label": "Irish Mace Debates Round 3 2012" + }, + { + "value": "kgaxtYYbqS4IklQaAnXC", + "label": "Irish Mace Third Round 2012" + }, + { + "value": "yK2aesNii4f0c4vvqYng", + "label": "Irish National Law Debates 2014" + }, + { + "value": "mzvnxBrGLKyjonGHD82N", + "label": "Irish National Maidens 2013" + }, + { + "value": "ZoSUPdoPGikxLryJSpIg", + "label": "Irish Times 2011" + }, + { + "value": "AXjvkzPMQjv20acUm3u1", + "label": "Irish Times 2012" + }, + { + "value": "IiQjUorq4oKBnvyHTPAF", + "label": "Irish Times 2013" + }, + { + "value": "9HM0jFxmw9oguRrKeKRC", + "label": "Irish Times Debates 2011" + }, + { + "value": "zkhDsyR1rpDZXDiA2JUj", + "label": "Irish Times Debates 2012" + }, + { + "value": "ilaN8PvangfEGZ95w8h5", + "label": "Irish Times Debates 2014" + }, + { + "value": "zuRiVYzOUi3PjRiq6W3C", + "label": "Irish Times Debates First Round 2011" + }, + { + "value": "u8KEW8sXSGuYMxguTx23", + "label": "Irish Times Debates Open_Semis 2014" + }, + { + "value": "lYtYkBI7ufcjmjzRy4UX", + "label": "Irish Times Debates Round 2 2014" + }, + { + "value": "RDNcZnvGFAsMrxYMLvRz", + "label": "Irish Times Final 2014" + }, + { + "value": "nTji8UPJ8QUs0kF7Lajd", + "label": "Irish Times Open_Semis 2013" + }, + { + "value": "HcG4OhcCxhf0AhRfppdz", + "label": "Irish Times Open_Semiss 2012" + }, + { + "value": "v7hyfFSYXoFdmeuZGEhq", + "label": "Irish Times Round 2 2011" + }, + { + "value": "Tu7KRlumwIMZzCczqcGG", + "label": "Iron Man BP Tournament 2012" + }, + { + "value": "A8uW9F7TCtUhRLICBZWb", + "label": "Iron Man tournament 2013" + }, + { + "value": "aEZUJtwNrlKTdARVPZNh", + "label": "Israel's English Cup 2018" + }, + { + "value": "OZYKzIzIg9zKy9OOiaP3", + "label": "Israeli Nationals 2012" + }, + { + "value": "5wD2Kt4YswcLbEnnV0c5", + "label": "Israeli Open 2012" + }, + { + "value": "TMBmC1MQwez0ZjQdNyHU", + "label": "Israeli Open Championship 2015" + }, + { + "value": "lpOfAtUfJZtb1VnGzV0G", + "label": "Istanbul Meridyen Debating Academy 2016" + }, + { + "value": "WMhTu5CeggGVUPxkfYq6", + "label": "JADE College Cup 2015" + }, + { + "value": "ErS5R7GooWYcG88PT27r", + "label": "JADE College Cup 2016" + }, + { + "value": "DPlum9M6fh8xjiyYGBxO", + "label": "Jacobs Open 2012" + }, + { + "value": "FaBy9PfDE8gfy5w00VdM", + "label": "Jacobs Open 2013" + }, + { + "value": "ruG3JCf2Mh62VDkchi11", + "label": "Japan BP 2020" + }, + { + "value": "Tix5aGpgWpddb7Va0oe6", + "label": "Jena Frauenturnier (Women’s tournament) 2014" + }, + { + "value": "MSkvKRc0Dq8mooTLp6T8", + "label": "Jerusalem Open 2013" + }, + { + "value": "4PekAtlXMCWdSTTJuMol", + "label": "Jewell Debate Tournament 2018" + }, + { + "value": "1hlmlrX6In8aTapDJoTu", + "label": "Joensuu Mini 2018" + }, + { + "value": "ylBDtvOeJmEl8ZjjfgYH", + "label": "John Smith Memorial Irish Mace 2011" + }, + { + "value": "eeAbAOFtB1UKVNuvmwPu", + "label": "John Smith Memorial Irish Mace 2013" + }, + { + "value": "obhZYIJM5cyjHjWQyXep", + "label": "John Smith Memorial Irish Mace Open_Final 2013" + }, + { + "value": "zfN2kWrxLoJHeZkogdk2", + "label": "John Smith Memorial Irish Mace Round 1 2011" + }, + { + "value": "xiDAjYVVSR0PYlxr0F2u", + "label": "John Smith Memorial Mace (Ireland Open_Semis) 2013" + }, + { + "value": "fcP48RMB4twpZB6Lp8B0", + "label": "John Smith Memorial Mace - English Leg 2012" + }, + { + "value": "lzwPRjjdpUi2iKUXkOjp", + "label": "John Smith Memorial Mace - English Leg 2016" + }, + { + "value": "zMiO27j6MljLBqYitUqu", + "label": "John Smith Memorial Mace - Scottish Finals 2016" + }, + { + "value": "zaDEkUUEN76e9CaS6Qty", + "label": "John Smith Memorial Mace - Scottish Leg 2014" + }, + { + "value": "sMUe88NrBl4fVjvIcDCd", + "label": "John Smith Memorial Mace - Scottish Leg 2016" + }, + { + "value": "dUwDNXWo8JGvcW4u6zlP", + "label": "John Smith Memorial Mace - Welsh Leg 2013" + }, + { + "value": "GQttZR3FjAIw20Ek36nP", + "label": "John Smith Memorial Mace 2012" + }, + { + "value": "yhJgdE0VFcsqlvWffep1", + "label": "John Smith Memorial Mace 2013" + }, + { + "value": "qQVIEkUSrajcvdhn8Ivu", + "label": "John Smith Memorial Mace England Leg 2012" + }, + { + "value": "P1GDtvIjHvhmQ8b6Pr2l", + "label": "John Smith Memorial Mace Final 2012" + }, + { + "value": "H3dcSFbp1SVwD6yHKKn5", + "label": "John Smith Memorial Mace International Final 2013" + }, + { + "value": "z8sKt4cp3p6o9gyqVckZ", + "label": "John Smith Memorial Mace Open_Semiss 2012" + }, + { + "value": "oAqQLSLNx2ReUtBIPLkW", + "label": "John Smith Memorial Mace Scotland 2014" + }, + { + "value": "gaf1lshmTMREm1H3xYLr", + "label": "John Smith Memorial Mace Welsh leg 2013" + }, + { + "value": "qqfvtStUydZFYmSwgqlj", + "label": "Joynt Scroll (NZ Prepared Debating Tournament) 2018" + }, + { + "value": "eypKKJZLZblnh6KffyC5", + "label": "Joynt Scroll 2009" + }, + { + "value": "6tyiq2GnlmVmI452js6u", + "label": "Joynt Scroll 2013" + }, + { + "value": "inOeJRfxqTpVMfq0i7Ze", + "label": "Joynt Scroll 2014" + }, + { + "value": "AbrZ6leGJBXAmv4md2Zw", + "label": "Joynt Scroll 2015" + }, + { + "value": "jU6ofoRVsACbu04pXrg6", + "label": "Joynt Scroll 2018" + }, + { + "value": "tKXlShZl2vec49jC1bif", + "label": "Joynt Scroll 2019" + }, + { + "value": "HjQJA65fZ9igHKO8DLAP", + "label": "Jurassic IV 2020" + }, + { + "value": "K2iCOiuVrS3D8RzjGpNe", + "label": "KCL IV 2011" + }, + { + "value": "o29IKQqCI95UODWABA9Y", + "label": "KCL IV 2013" + }, + { + "value": "9STOHMmWtLnanVavJzB2", + "label": "KCL IV 2015" + }, + { + "value": "xUGmMsj95M2w5CV6WYVA", + "label": "KCL IV 2017" + }, + { + "value": "Te8CYa0tImwgHXE99O7W", + "label": "KCL Online Open 2020" + }, + { + "value": "Gx29hnXeBrSjBZrrDKx8", + "label": "KCL Open 2018" + }, + { + "value": "DeCtrDtTjNPkklRZT0x6", + "label": "KL Open Challenge 2017" + }, + { + "value": "2YfQ1XbNnQfXwnjeGyDd", + "label": "KUET IV 2018" + }, + { + "value": "2gsOERqtXqSETJffXbnj", + "label": "Ka Paio Debate Open 2019" + }, + { + "value": "RNJanNDlcAfI2uIKx9LF", + "label": "Ka Paio Online Debate Open 2020" + }, + { + "value": "vx330P6CYx2QKwkFUJiX", + "label": "Kalliope Debattoernooi 2013" + }, + { + "value": "v33DcPMMQZsLJormVjyz", + "label": "Kalliope Debattoernooi 2014" + }, + { + "value": "oaIuwyOX7NBIwaiSaVJ8", + "label": "Karachi Debate Open 2020" + }, + { + "value": "gJ7A4v0TYcDNBa5wySIX", + "label": "Kent IV 2013" + }, + { + "value": "vIcSl55fwy2uPdlGUXsg", + "label": "Kent IV 2014" + }, + { + "value": "zm3L9uKWbGV2QY1WRlcJ", + "label": "Kiev Open 2011" + }, + { + "value": "yKZ612WqYq5uAuH9PAZI", + "label": "Kingsmill Moore Invitational 2013" + }, + { + "value": "6CH8DHWUbQKOjMDFTgFX", + "label": "King’s College IV 2012" + }, + { + "value": "t2juKb62UT5HJ0kruUAw", + "label": "Koc WUDC 2010" + }, + { + "value": "uJGjvsaThnluwVzoHFXm", + "label": "Korea WUDC 2021" + }, + { + "value": "z4fwjDZ02juoVx4MeEih", + "label": "Kyiv Open 2013" + }, + { + "value": "jTIGk8DeHHGFQRpsk85j", + "label": "Kyiv Open 2016" + }, + { + "value": "xQkVRRUcXZJgGzxXZ2t0", + "label": "LSE Open 2012" + }, + { + "value": "o83Oqm9vDtGaG6SVldke", + "label": "LSE Open 2013" + }, + { + "value": "VZL2SmUXq00WGPbW0ZRt", + "label": "LSE Open 2014" + }, + { + "value": "d13kY0BTy5kVOwwqu54R", + "label": "LSE Open 2016" + }, + { + "value": "uES9ygXHa8tJuYB7dFEM", + "label": "LUMS Asians' Debate Open 2019" + }, + { + "value": "NHUypnZQCfkPD98j8TYR", + "label": "LUMS IV 2020" + }, + { + "value": "ukcS5bJ2TUuNfMuzta0w", + "label": "La Salle IV 2017" + }, + { + "value": "j9tMf10ACsn6VW6vG9gA", + "label": "Lancaster IV 2012" + }, + { + "value": "PEAicxOTn0uGyCAGiXLX", + "label": "Lancaster IV 2014" + }, + { + "value": "m357g5mmEMxSAwbDEk5d", + "label": "Lancaster IV 2016" + }, + { + "value": "keyU5X5APEvFXLaZwxeM", + "label": "Leeds Open 2013" + }, + { + "value": "70rnu3F4Q3ntkA4t3Wfl", + "label": "Leeds Open 2014" + }, + { + "value": "50nXPc798MPMXDyPN224", + "label": "Leiden Novice Tournament 2013" + }, + { + "value": "SJ2vZr9NzMvtMMGarKue", + "label": "Leiden Novices' Tournament 2017" + }, + { + "value": "8QddgLiIoLsA9YscCujR", + "label": "Leiden Open 2013" + }, + { + "value": "VyYxJ0FaIE4LYaWheUyL", + "label": "Leiden Open 2014" + }, + { + "value": "9mfNKBqpq9HzOZ9GltTe", + "label": "Leiden Open 2015" + }, + { + "value": "L8JGtnnMnhA8w9ooOx0S", + "label": "Leiden Open 2016" + }, + { + "value": "y6YpD63Uuk3t3fbBC7Tk", + "label": "Leiden Open 2017" + }, + { + "value": "8EaRfOcTe47s5VRlQeNv", + "label": "Leiden Open 2019" + }, + { + "value": "y7meTgIUCGSo7UqVkUQq", + "label": "Leubke Cup (@ Brock University) 2014" + }, + { + "value": "DTutOgCItM4x30SyVavv", + "label": "Link Bate Championship III 2020" + }, + { + "value": "khQAvAFibcPAXBKfxTNY", + "label": "Liverpool IV 2014" + }, + { + "value": "zpoYhp2wK06V8pO2Ljrp", + "label": "Liverpool IV 2016" + }, + { + "value": "qotkEeWGxvmIXOZx52qZ", + "label": "Ljubljana IV 2014" + }, + { + "value": "aL5gnSWQ3OQq2Lb3mRix", + "label": "Ljubljana IV 2015" + }, + { + "value": "p6ZWMCxUvbu1V0BT5gJg", + "label": "Ljubljana IV 2019" + }, + { + "value": "NtnveNmZosTMD9TU0qA8", + "label": "Lockdown.Exe Debate League 2020" + }, + { + "value": "3Zgv6Gsne7dxEbg36SPO", + "label": "London Pro-Am 2016" + }, + { + "value": "dxiwBIWlq2trjdp62R0U", + "label": "London Pro-Am IV 2014" + }, + { + "value": "xoiSW3hTToX15wvrD6gA", + "label": "Lord Discup's Cup 2020" + }, + { + "value": "5dx9HmyPaBDPB6JstQGb", + "label": "Lund Debate Challenge 2012" + }, + { + "value": "x0AmWHi8lm3JhQyyhsfo", + "label": "Lund IV 2013" + }, + { + "value": "yLnbL40w84r9L2K9qxt0", + "label": "Lund IV 2017" + }, + { + "value": "I4LkoGhDJmtXsINMJVjW", + "label": "Lychee Debate Open 2021" + }, + { + "value": "lWGI0B8QpTMEA8NW8UYQ", + "label": "MDX Open 2018" + }, + { + "value": "JDfeMpzRWbEVXloSgRZp", + "label": "MIDP Round Robin 2020" + }, + { + "value": "3b2nSsxJIMIXNPKJTeQx", + "label": "MOE Invitational Debating Championship (MIDC) 2020" + }, + { + "value": "FaXJZrMIEColDcqtOmli", + "label": "Maastricht Open 2016" + }, + { + "value": "YaTXOaEvPKh8XHB3VTBK", + "label": "Macau Tournament of Champions BP IV 2018" + }, + { + "value": "Nzien6R9RXvOTrNMJsza", + "label": "Macquarie Open 2020" + }, + { + "value": "rdyGzmsfHNjLJBTBIlbG", + "label": "Mainzer Debütanten Cup 2014" + }, + { + "value": "q7pvo4zkG31lg89ofmeq", + "label": "Malaysia WUDC 2015" + }, + { + "value": "BtqBGdAUsTtPKorZOcBX", + "label": "Manchester EUDC 2013" + }, + { + "value": "jhyT1LK3YdR0do1cosc6", + "label": "Manchester IV 2012" + }, + { + "value": "V6eoj3ztq5t3sX9oPVue", + "label": "Manchester IV 2013" + }, + { + "value": "a40eH2E5w4GGnWQ3oDT6", + "label": "Manchester IV 2014" + }, + { + "value": "7DiEtR3YNKR69fHccj5Y", + "label": "Manchester IV 2016" + }, + { + "value": "e3m3vjjIT1UO4munSqvD", + "label": "Manchester IV 2018" + }, + { + "value": "Fu8k3vJxi4iJsdZw9d7j", + "label": "Manchester IV 2019" + }, + { + "value": "dgRU54McMXqo1MXISAFt", + "label": "Manchester IV 2020" + }, + { + "value": "NDBMTXQSiGk8gHdwlPou", + "label": "Marburger Geschichte Turnier (History Tournament) 2014" + }, + { + "value": "TjdO3rhaUn53D48P0jlp", + "label": "Masters 2011" + }, + { + "value": "3VTSywK012zU6GDLqZzC", + "label": "Maynooth Open 2018" + }, + { + "value": "krSr8LWxSpEc6v45L1uv", + "label": "McGill Central Novice Championship 2018" + }, + { + "value": "AZDyYLAFE8Mh41BShv5m", + "label": "McGill Novice 2013" + }, + { + "value": "EK7bkCOLaLHjVsqCcikk", + "label": "McGill Novice 2014" + }, + { + "value": "N6GD6E8q4Mbzt8Xexnyy", + "label": "McGill Novice 2015" + }, + { + "value": "HI456ixwVeFxETFg4P5i", + "label": "McMaster Pro-Am 2013" + }, + { + "value": "lgIRNhKweWPgrrSL34Lh", + "label": "McMaster Pro-Am 2014" + }, + { + "value": "OqjcHyR2p27nlpvjQ5oq", + "label": "McMaster Pro-Am 2015" + }, + { + "value": "TtPU6Lwr9qKhUvLMeyVD", + "label": "Mediterranean Universities Debating Championships (Koc University) 2012" + }, + { + "value": "WuHMyE7RKYgEDPOjOxp6", + "label": "Mehran Debating Championship 2018" + }, + { + "value": "5SXUtPGKmOtgXxWouFAs", + "label": "Melbourne Mini 2020" + }, + { + "value": "5mJg23unORtxSJCvBzd9", + "label": "Methusalem Cup 2014" + }, + { + "value": "SGi6PbXyMszZpWzTP1JN", + "label": "Mexican Open 2017" + }, + { + "value": "vS5BTr7lDW40h5Qw31FI", + "label": "Mexico WUDC 2018" + }, + { + "value": "4ptLj1Lmq40xJg12oRVd", + "label": "Middle Man tournament 2013" + }, + { + "value": "LnHXZbgsbq5JIVU7k21X", + "label": "Mitteldeutschen Regionalmeisterschaft 2012" + }, + { + "value": "7gnlDrExulbBsH6xw0jx", + "label": "Mix Team (pro-am tournament) 2013" + }, + { + "value": "ltPXjwYNooGAx72v9bz6", + "label": "MonDO 2020" + }, + { + "value": "5Qomv7BFHTKmY4PchwDr", + "label": "Monash Australs 2020" + }, + { + "value": "BEDaS3pLJHS1T1Xr4txo", + "label": "Monroe Cup 2014" + }, + { + "value": "JlXdLu3VijXjgOdO21tX", + "label": "Moscow Open 2011" + }, + { + "value": "Er03o2M51g3s6dYyUHHm", + "label": "Moscow Open 2012" + }, + { + "value": "EWgHoIX1nWCnY5U0tfPp", + "label": "Moscow Open 2013" + }, + { + "value": "gmusL4yQ3HD8FyegVRpk", + "label": "Moscow Open 2014" + }, + { + "value": "BXOIn4DQsS3fQg4ZnBFn", + "label": "Moscow Open 2016" + }, + { + "value": "hfhyqiLO3boM6Fbp0Jvs", + "label": "Munich Open 2016" + }, + { + "value": "Wn4nk4Gju7tmDZTbrogC", + "label": "Munich Open 2017" + }, + { + "value": "yDUOVgl6qLMa2DH8lCD5", + "label": "Munich Research Open 2019" + }, + { + "value": "kwsuFgaQ5lYbaXVGrGal", + "label": "Muslim Interscholastic Tournament 2019" + }, + { + "value": "ODzhGSyV71DaUGhZEWGT", + "label": "Mykolas Romeris IV 2012" + }, + { + "value": "041lRDdS5oaD5orDuk8q", + "label": "Mykolas Romeris University (MRU) IV 2013" + }, + { + "value": "OwplBrh3NruD1YwoexiY", + "label": "Münster Ironman 2012" + }, + { + "value": "v1Vi2iS2rLowvyk3vIMm", + "label": "NAMDA Novice Cup 2013" + }, + { + "value": "WYCV7Sl9idtN2tulRuB2", + "label": "NAMDA Novices 2011" + }, + { + "value": "p3EOrIRx2qBcnN8fXbHh", + "label": "NAUDC (@ HWS College) 2014" + }, + { + "value": "yxjvIJregbdMEVkOnzCg", + "label": "NAUDC (@ Ithaca College) 2015" + }, + { + "value": "euj80C6nkxdgEhkTaI0g", + "label": "NAUDC (also Hart House IV) 2013" + }, + { + "value": "wL3wAKRctC8syY2eg8t3", + "label": "NAW*DC 2019" + }, + { + "value": "hPTwc7UsLmuGu68x4FDK", + "label": "NCH International Relations Open 2014" + }, + { + "value": "1MV3spmbrmWLKhisZDU8", + "label": "NEAO 2017" + }, + { + "value": "i00RSzvK4b1TDEgnpFJd", + "label": "NEU Debate Open 2021" + }, + { + "value": "xLHei5vZFgpmhHOsyDv6", + "label": "NK Beleidsdebatteren (Dutch Policy Debate Championships) 2014" + }, + { + "value": "w1cmIhewdRlJLYHGdtbg", + "label": "NK Debatteren (Dutch National Championships) 2014" + }, + { + "value": "NxB6ercynISK3sISgci5", + "label": "NK Debatteren 2012" + }, + { + "value": "eSbb5Usou5B1Drm2Dmyl", + "label": "NLUO BPD 2018" + }, + { + "value": "Sf18naS6qmQzDSIMNRFV", + "label": "NTU Debate Online Open 2020" + }, + { + "value": "nXN2yUG7soxwCp4xidzj", + "label": "NZ Easters 2016" + }, + { + "value": "Ryhdb4JOJYP96e5oa49b", + "label": "NZ Easters 2017" + }, + { + "value": "bxhnmh9CZq21XJcRU2BX", + "label": "NZ Easters 2018" + }, + { + "value": "idhVYyUwgWnlyak17o8K", + "label": "Namda Novices 2012" + }, + { + "value": "KTeMrrauFpZYvjtBUkLJ", + "label": "Nanjing Debate Open 2021" + }, + { + "value": "Aic5TDtU01Sp43Neh8N2", + "label": "National Maidens 2015" + }, + { + "value": "dL45ZXh9u0IhHmAuaa0r", + "label": "National Maiden’s 2014" + }, + { + "value": "1cqzoXItQEaNAhU2qjNL", + "label": "Neckarwiesen Cup 2014" + }, + { + "value": "FiF24Yc0spiBkvTxiYwD", + "label": "Netflix International Debate 2021" + }, + { + "value": "JdCT4CooyPOkRsmbNNLg", + "label": "New Zealand BP Debating Championships 2007" + }, + { + "value": "ZKj5YfRQe4wJF8bx4fLp", + "label": "New Zealand BP Debating Championships 2008" + }, + { + "value": "5O13410pDrHfcvKnpppR", + "label": "New Zealand BP Debating Championships 2009" + }, + { + "value": "7zFzGfa6wAGs2h8bbVhq", + "label": "New Zealand BP Debating Championships 2011" + }, + { + "value": "OY8sAGz8SAjQpWA2PicY", + "label": "New Zealand BP Debating Championships 2013" + }, + { + "value": "k1fYFDihwlGzjmVGfSXp", + "label": "New Zealand BP Debating Championships 2014" + }, + { + "value": "D6zNi4CBrpZnwXUgBuKG", + "label": "New Zealand BP Debating Championships 2015" + }, + { + "value": "KpispxU2MtVt41R9j5bV", + "label": "New Zealand BP Debating Championships 2016" + }, + { + "value": "v3Bq7DLUeCcPyvQZjJbj", + "label": "New Zealand BP Debating Championships 2018" + }, + { + "value": "kqAjVyDOCBYWRYze158e", + "label": "New Zealand BP Debating Championships 2019" + }, + { + "value": "pF81od0IQBmQsiQKDxoc", + "label": "Newcastle IV 2012" + }, + { + "value": "c5YoJ5qkI2DsrQ7PAhum", + "label": "Newcastle IV 2013" + }, + { + "value": "HcngLxXLU8ahxFRQkeYc", + "label": "Newcastle IV 2017" + }, + { + "value": "d2f6RXp0B99iQq4RFZeE", + "label": "Newcastle Mixed Doubles 2016" + }, + { + "value": "X7iAuOHrSqi0EHPkRNls", + "label": "Newcastle Mixed Doubles 2017" + }, + { + "value": "hxlmkaNuNgQ6AIDlbsIh", + "label": "Newcastle Mixed Doubles Open 2014" + }, + { + "value": "CbtTNoNzLTvfNvRWmMc2", + "label": "Nghe Tinh Debate Open (NTDO) 2020" + }, + { + "value": "etTxnyhPGMITmcNf2DkM", + "label": "Nikolausturnier 2012" + }, + { + "value": "1cJ1sn6hYwZuN7mUjUE9", + "label": "Nikolausturnier 2013" + }, + { + "value": "ovqKzpSVsRvBQDmmn1yj", + "label": "Norddeutschen Regionalmeisterschaft 2012" + }, + { + "value": "wn4DAqBcGTWBviyQc0CR", + "label": "Nordic Debating Championships 2013" + }, + { + "value": "efp9mMZFiy8fVwkom17I", + "label": "North America Womxn's and Gender Minorities' Debate Championship 2018" + }, + { + "value": "djnlK5jZ2kM6hDrC6E9d", + "label": "North American Universities Debating Championships 2016" + }, + { + "value": "qvnbu5KYCFZ7nM9hTZ2E", + "label": "North American Women & Gender Minorities Debating Championship 2017" + }, + { + "value": "sA03ySqGdgfByNOTfDfC", + "label": "North American Women's (@ Hart House) 2016" + }, + { + "value": "yTe5SQuwd4eeae0M0Sc9", + "label": "North American Women's (@ McGill University) 2014" + }, + { + "value": "44zszGOLcUfUSx7uRJTD", + "label": "North-East German Regional Championships 2014" + }, + { + "value": "qoRL9POR1sxdsrdIdj6B", + "label": "NorthAms (@ Carleton University) 2014" + }, + { + "value": "caeYE7341tdQiO1TJafq", + "label": "NorthAms (@ NYU) 2015" + }, + { + "value": "G40265rxZRrwSbZ3fQSJ", + "label": "NorthAms 2016" + }, + { + "value": "F47KSHUhZJWXR9ZbZpek", + "label": "NorthAms 2018" + }, + { + "value": "h0YK8gvUId7cYnxaY6V1", + "label": "NorthAms 2019" + }, + { + "value": "KcPlJUErwN6d1MPmff00", + "label": "NorthAms 2020" + }, + { + "value": "wTn57tATiKWyTCt5c5aW", + "label": "Northams 2018" + }, + { + "value": "xGBtJ3gsj1aiHrzttPNd", + "label": "Northams 2019" + }, + { + "value": "xc8chahy0szEaDf9QxE8", + "label": "Northams 2020" + }, + { + "value": "CjeO3WtFoEPJ0YkMQ3T2", + "label": "Northeast Regional Opener 2016 Brad Smith Debate Tournament 2016" + }, + { + "value": "mkrRVvz5EWSZie6LBtCH", + "label": "Northern Coast Debate Open 2020" + }, + { + "value": "zeR0rFnynHhmmEJ04jfo", + "label": "Northumbria Open 2014" + }, + { + "value": "b3eMPaD8uywgZW5hZca1", + "label": "Norton Rose Fulbright Warwick IV 2015" + }, + { + "value": "9pAAcbund4BvOXScZxre", + "label": "Nottingham Open 2013" + }, + { + "value": "SjQ6g8g2URks9WV96X0G", + "label": "Nottingham Open 2014" + }, + { + "value": "pQSBc1H8lG2P8ftbCWZ8", + "label": "Nottingham Open 2016" + }, + { + "value": "1iGKg5a8rDH4ci9OIYEG", + "label": "Nottingham Trent IV 2013" + }, + { + "value": "LRHTkoiYpBfYWWuS1rtT", + "label": "Nottingham Trent Open 2014" + }, + { + "value": "onvxs89P4PKzVuAFoTHr", + "label": "Nottingham Trent Open 2018" + }, + { + "value": "1dEXZTvvRtTWhdBLmzFt", + "label": "Novi Sad EUDC 2018" + }, + { + "value": "uHY8OFiOXYb0VdlJt20c", + "label": "Novi Sad Open 2018" + }, + { + "value": "mxxjZaa0262HoUjjXfj8", + "label": "Oldham Cup International League 2021" + }, + { + "value": "eQMzhfh3p9amGITvLICM", + "label": "Olimpia di Debate 2017" + }, + { + "value": "7Jdvl74EMNCm0P5fq9PJ", + "label": "Online WSDC 2020" + }, + { + "value": "6kzErQkhNrOjgjEPAYjE", + "label": "Open de Debates da Sociedade de Debates da Universidade de Coimbra (SDUC) 2012" + }, + { + "value": "p38eB5dZFLa5BwXojatB", + "label": "Open de Debates de Lisboa 2013" + }, + { + "value": "0WQ7djfo2FawxEAC95E0", + "label": "Open de Lisboa 2012" + }, + { + "value": "lDdNAVRcaZNKtbkg8DCP", + "label": "Open de Lisboa 2013" + }, + { + "value": "kBpjU5iP0oBmNFZAtFoS", + "label": "Open de Minho 2013" + }, + { + "value": "aVcqgGmAccQ09iBh9iS1", + "label": "Oxford IV 2011" + }, + { + "value": "B2zJ5QeyI7MVcboS7m4U", + "label": "Oxford IV 2012" + }, + { + "value": "c74XLjeeNJzVbzpMjGlo", + "label": "Oxford IV 2013" + }, + { + "value": "OuMJNWJJy88lWhwWuJmy", + "label": "Oxford IV 2014" + }, + { + "value": "QZvopTthxxEkyvHXmzp3", + "label": "Oxford IV 2015" + }, + { + "value": "JLyF99Vg0hk3hhYCwEgp", + "label": "Oxford IV 2016" + }, + { + "value": "rEUwN5dFZYjeXBNtp4NG", + "label": "Oxford IV 2017" + }, + { + "value": "68SrKFb9XtsQrLtqLtjO", + "label": "Oxford IV 2018" + }, + { + "value": "ZxUcdMSTBBFZQIuIsGtb", + "label": "Oxford Women’s Open 2012" + }, + { + "value": "D8wxxb57dF9p7tV8985s", + "label": "Oxford Women’s Open 2013" + }, + { + "value": "ZQk7wGWckTLOk9Y0j9z4", + "label": "PAUDC Akofena 2019" + }, + { + "value": "nRov7JujhUP4fNtRUQTt", + "label": "PAUDC Tanzania 2018" + }, + { + "value": "RpQnqbHAxB8fhWBQcnaj", + "label": "PEP IV 2017" + }, + { + "value": "FYOADGgnZTJQdU2kOcYb", + "label": "PEP IV 2019" + }, + { + "value": "C09YJyBGrNu3L4IxdHCw", + "label": "PKU Pro-Am 2020" + }, + { + "value": "QePDCf8cQ2AX4XfcvR3T", + "label": "Pan American Debating Championships 2019" + }, + { + "value": "TmlbBgqJnPvT2UGB0Lbb", + "label": "Pan Pacific Debate Championship 2018" + }, + { + "value": "PlnSjN9HlvUnEh6EVkm9", + "label": "Pan-American Universities Debating Championship 2017" + }, + { + "value": "3NTAi2gNk5Uyy3NuACO5", + "label": "Parassat Open 2020" + }, + { + "value": "99Ct9ORyddmNGYGfpDl7", + "label": "Paris Centrale IV 2011" + }, + { + "value": "JsQrI80phRuvDHr37q5N", + "label": "Paris IV 2012" + }, + { + "value": "MqWoP2HpVv77T14aPCqR", + "label": "Paris Open 2013" + }, + { + "value": "uikc98CupbamVyAQIHsf", + "label": "Paris Open 2014" + }, + { + "value": "w7u8NxGDQ6ZD0keRBLHU", + "label": "Paris V 2014" + }, + { + "value": "mLYYpxL9yrhHXXumj4hL", + "label": "Paris V French Debating Association Tournament 2014" + }, + { + "value": "Wt0TddiaryH5reseIqUp", + "label": "Paris V French Debating Association Tournament Open_Semis 2014" + }, + { + "value": "fKuU1uxdPh1ZwmKwjOza", + "label": "Paris V French Debating Association Tournament final 2014" + }, + { + "value": "U2WbXKmpxuh7OC6qZ1zX", + "label": "Patras Open 2013" + }, + { + "value": "lItvEbHHU24VVqcwipRq", + "label": "Penguin Invitational 2018" + }, + { + "value": "XBFpAL1r3TobjAN8vT20", + "label": "Penguin Invitational at Dominican University 2017" + }, + { + "value": "1dwGdjAn9pODo8bQfmJW", + "label": "Philippines Queer Open 2021" + }, + { + "value": "oeH2vC3Ht09TthfmAx2F", + "label": "Polish Parliamentary Debating Championships 2013" + }, + { + "value": "Pt1Z2dTdUinRviVucbZA", + "label": "Pop Culture Grand Prix 2020" + }, + { + "value": "LK6lSp8gpBGbLjuv9caV", + "label": "Potsdam Puls Punk 2013" + }, + { + "value": "yZaksTbsPteB6mPHwkvl", + "label": "Poznan Open 2019" + }, + { + "value": "ERxjvEIrmiL3iSgvcfdB", + "label": "Prague Open 2019" + }, + { + "value": "D8AtyrmDZV48giPFtym5", + "label": "Pre VBC 2021" + }, + { + "value": "ehtU8lykIOIyhZiaczym", + "label": "Pre-Pristina Open 2014" + }, + { + "value": "pu7FduCxL7IOOrWe0ypf", + "label": "Princeton Round Robin 2020" + }, + { + "value": "mEr4tnJE0kt1V0JvT2KG", + "label": "Queen Mary IV 2016" + }, + { + "value": "O0uPnjb8M1dIGLUmO4NP", + "label": "Reading No-Notes Open 2014" + }, + { + "value": "McARyCvnNLDmzAARI8jE", + "label": "Red Sea Open 2011" + }, + { + "value": "Iv1dWODCjV8TBafyTxx7", + "label": "Red Sea Open 2012" + }, + { + "value": "x0FqHVU6TNo1z8egQZct", + "label": "Red Sea Open 2013" + }, + { + "value": "hY7icY7k8fuatysSqMFr", + "label": "Red Sea Open 2016" + }, + { + "value": "7abz3Ipf2RhGUArcqBwg", + "label": "Reedhoven Cup 2014" + }, + { + "value": "mHdtWLh0RKp035BRFblm", + "label": "Regents’ IV 2013" + }, + { + "value": "I5iTcVABscgCPPKzr8Oa", + "label": "Restricted Mara Open 2020" + }, + { + "value": "MeKByJc38Yt4otefONa7", + "label": "Riga Debate Academy 2013" + }, + { + "value": "xDjVbl80WAVFcLqsVPo5", + "label": "Riga Debate Academy 2014" + }, + { + "value": "EHPcBnMOPhSjJDJMUqKQ", + "label": "Riga IV 2016" + }, + { + "value": "cBdmYwHV9z5pBS0q23lF", + "label": "Riga IV 2018" + }, + { + "value": "ZetjyvhBc3exk1eBvmTd", + "label": "Riga Mini, 2nd edition 2017" + }, + { + "value": "sFRIEYyxie6GRmJwElmF", + "label": "Riga Pro-Am 2016" + }, + { + "value": "OFi0KPPvhID0XipYIiiD", + "label": "Riga mini 2017" + }, + { + "value": "PFH5XRScthpwd2dxC2T5", + "label": "Rijeka Open 2014" + }, + { + "value": "FcQa3EO91Xucj4ACR1Wb", + "label": "Rijeka Open 2015" + }, + { + "value": "GEF7QfNpKGwIZtimYEsL", + "label": "Rocky Mountain Championships 2019" + }, + { + "value": "tGXgNi0S9KFBe1hUBu15", + "label": "Rocky Mountain IV 2018" + }, + { + "value": "Y9leM2xAYiRjIMMIqgfX", + "label": "Roosevelt Academy Open (RA Open) 2012" + }, + { + "value": "GeB6bvqs5FhYEP99Q8Ax", + "label": "Roosevelt Academy Open 2013" + }, + { + "value": "DXCgscK3BkzAJGRnyZpD", + "label": "Roosevelt Open 2014" + }, + { + "value": "uvPQBxEeKffyHUkLa5PV", + "label": "Roosevelt Open 2016" + }, + { + "value": "Vis5yhSVMHubvgdJTwP1", + "label": "Roosevelt Open 2018" + }, + { + "value": "jGziThakECOfXgvs0uHl", + "label": "Rotterdam BP Toernooi 2013" + }, + { + "value": "FwXwhiD8hyS9iD7pTyRe", + "label": "Rotterdam BP Tournament 2012" + }, + { + "value": "owvW9MKLd7Sqv8hm9HMq", + "label": "Rotterdam BP toernooi 2013" + }, + { + "value": "SU8WsMguqtUiTUErBeo7", + "label": "Rotterdam Open 2015" + }, + { + "value": "7lMrN2aiwSzD5rzPFwHz", + "label": "Royal Holloway Open 2013" + }, + { + "value": "KErVXbqRahyWD7ZB1Q1m", + "label": "Royal Holloway Open 2014" + }, + { + "value": "IpxNM87k556VVsS2JAPu", + "label": "SDA Novice Competition 2013" + }, + { + "value": "YcxOXVvo0TolX2RquRlw", + "label": "SDA Novices 2014" + }, + { + "value": "STaEp3vuXBuTT2bP0vgU", + "label": "SDA Open 2013" + }, + { + "value": "YZNcM4Wgq9Um4e7kNLdH", + "label": "SDSU 2017" + }, + { + "value": "TwRuBI9R9WS6estcrif9", + "label": "SEC Schools Championship 2020" + }, + { + "value": "Te8RVa4tAIQJaY0sFp5C", + "label": "SOAS IV 2011" + }, + { + "value": "Xt0UV62VgaP360hvHqWG", + "label": "SOAS IV 2012" + }, + { + "value": "xewLQXUxvfe0Xal1qtHM", + "label": "SOAS IV 2013" + }, + { + "value": "JJmcUH5Gil0nuJObmDP8", + "label": "SOAS IV 2014" + }, + { + "value": "m9Mkt1xdSA1jDsNN4zgu", + "label": "SOAS IV 2015" + }, + { + "value": "Wb0k9XSEirfd7kuffEGF", + "label": "SOAS IV 2016" + }, + { + "value": "JA7aghUhZy7G7yhivxxG", + "label": "SOAS Open 2012" + }, + { + "value": "YktmX9iQ8HNzyE1aE4yf", + "label": "SOAS Open 2013" + }, + { + "value": "RlKeUHJPWxI30cOSUIu3", + "label": "SOAS Open 2015" + }, + { + "value": "RKQT9j6jX9NRbleAmjmy", + "label": "SOAS invitational 2013" + }, + { + "value": "QVxXxjR8GyCAclYLIVU9", + "label": "SSE Practice Tournament 2015" + }, + { + "value": "aWnK845Eg0cHNR0VZu3e", + "label": "SSE Riga & LMT IV 2012" + }, + { + "value": "xFs2K66Nme7uYTCMS6Vw", + "label": "SSE Riga Debate Academy 2012" + }, + { + "value": "jJ6q3uq5BHRM31WhI18D", + "label": "SSE Riga Debate Academy 2015" + }, + { + "value": "DYYa510cEyzz1viLavRR", + "label": "SSE Riga Debate Academy 2016" + }, + { + "value": "x1XtlIYDR23OSfEzPpkf", + "label": "SSE Riga IV 2005" + }, + { + "value": "SxA6fvGmUbCEyPLjj4Sw", + "label": "SSE Riga IV 2006" + }, + { + "value": "2iPGMwcaQqidqlVq1gzJ", + "label": "SSE Riga IV 2007" + }, + { + "value": "1V1INGo8OX49g8hUFTF3", + "label": "SSE Riga IV 2010" + }, + { + "value": "eBlrzVaoBbfX5kbian3T", + "label": "SSE Riga IV 2011" + }, + { + "value": "FBVfHrOa3NYALcBMtKIC", + "label": "SSE Riga IV 2012" + }, + { + "value": "zcO3QSYEVhsJojnUCCNl", + "label": "SSE Riga IV 2013" + }, + { + "value": "puG4GbGRMRGTQ4eS4GHp", + "label": "SSE Riga IV 2014" + }, + { + "value": "qLVUbjlIT84ro50ixBwk", + "label": "SSE Riga IV 2015" + }, + { + "value": "DLFJWaIyHnSlvFofovjc", + "label": "SSE Riga Practice Tournament 1999" + }, + { + "value": "j4lF8rhbFUyC0UTwoz2G", + "label": "SSE Riga Practice Tournament 2014" + }, + { + "value": "DvsGvQWaYzshd3lSsDGu", + "label": "Sabanci University International Debate Open 2015" + }, + { + "value": "vBIhHuSgrqmR27ZqUcfZ", + "label": "Saggsn- Masders 2012" + }, + { + "value": "Y81hIZM2YzXWwwRuxR0R", + "label": "Sarawak Schools Online Debating Championship 2020" + }, + { + "value": "ZjN9B5kqPitiGVpXIpHO", + "label": "Saskatoon WSDC 2020" + }, + { + "value": "xDKR551AqNCcautWV6YI", + "label": "Schroeter Cup 2013" + }, + { + "value": "FIZrOByzWbUCfXyq56hs", + "label": "Schwarzwald Cup 2012" + }, + { + "value": "C1d7IlBx1VcZ4eBTl6cr", + "label": "Schwarzwald Cup 2013" + }, + { + "value": "3G6HklWR08yKYY0GbDsU", + "label": "Science Po Le Havre IV 2012" + }, + { + "value": "xm1UErfWKMzGBfeKsba9", + "label": "Sciences Po Open 2013" + }, + { + "value": "UHsyrV6WVu0fgh5gHyPf", + "label": "SdDUP Debate changing Europe round 1 2013" + }, + { + "value": "zZRXGDm7RC8LjYJKzubm", + "label": "Seattle IV 2016" + }, + { + "value": "g87X9iRsC0CxxtZdAjMP", + "label": "Seattle IV 2017" + }, + { + "value": "PGbz2bx1wifAEJU64jdo", + "label": "Seattle IV 2018" + }, + { + "value": "C4TfAdkoNgavFucgidJK", + "label": "Seattle IV 2019" + }, + { + "value": "pq9R1PqBqzQNX8jAplt5", + "label": "Shahjiwana International Debating IV 2017" + }, + { + "value": "NBT7RwLHeAApXuOtrQpt", + "label": "Shanghai International Debate Open 2018" + }, + { + "value": "O8G3JSrsKEY7mvvg6szT", + "label": "Sheffield IV 2013" + }, + { + "value": "TN94ucwzVJ2xKpp2fcrc", + "label": "Sheffield IV 2016" + }, + { + "value": "6mCNGJYhhrCUYIhAm6FN", + "label": "Sheffield IV 2017" + }, + { + "value": "S3X3UeH5zIQsGlSEttfv", + "label": "Simpsons Open 2013" + }, + { + "value": "hUGuNPuqow1Qx4Z2fgOz", + "label": "Skopje Open 2014" + }, + { + "value": "UefabB9q8iptn7SCi47p", + "label": "Sofia Open 2018" + }, + { + "value": "9sZiZ9uPaGSIYSFdM4VZ", + "label": "South German Regional Championships 2014" + }, + { + "value": "81ULNwgwoeeJz6JyR6aq", + "label": "Southampton Open 2013" + }, + { + "value": "UT720iaDHtta4VRkpcnp", + "label": "Southampton Open 2014" + }, + { + "value": "OqQWJjNQBpGOYwMntw3z", + "label": "Southern Debate Open (SDO) 2020" + }, + { + "value": "LjEl8Sog63zZMpDhsInz", + "label": "Split Open 2013" + }, + { + "value": "sol1oNvzZmBI1NXc28Lh", + "label": "Split Open 2018" + }, + { + "value": "lPXoAGmpaSNRUUBSEwTy", + "label": "Split Union Open 2012" + }, + { + "value": "nALUKfkpmOnWnQCzecru", + "label": "Spring KNC 2020" + }, + { + "value": "D3NiQxizKJ06MnU4DU06", + "label": "St Petersburg Debating Open 2013" + }, + { + "value": "sv4AWOKZYbl1PfCObw21", + "label": "St Petersburg Online Open 2020" + }, + { + "value": "ns7JoMyNUkrrS5A6Rbw7", + "label": "Stockholm IV 2013" + }, + { + "value": "zNyImaL5diiDsd93AVoW", + "label": "Strathclyde Cup 2014" + }, + { + "value": "iebTUsXIgV5US8LjoNw7", + "label": "Strathclyde President's Cup 2017" + }, + { + "value": "aUwwV3DTC7VLF1KaHJqj", + "label": "Strathclyde Presidents Cup 2013" + }, + { + "value": "RcPsgEaIchl07oq9iFxn", + "label": "Streitcultur Cup 2011" + }, + { + "value": "EC3TzMXkzGq0DYNMzQdg", + "label": "Streitkultur Cup 2013" + }, + { + "value": "GwkssAj8zxpqlXlKBDqa", + "label": "Stuttgart IV 2011" + }, + { + "value": "Z9FMqY7i0SmIcw5xUsUL", + "label": "Sumatra Online Debate Open 2020" + }, + { + "value": "X8TtbynGKBJ2Z158R7Sw", + "label": "Surrey IV 2016" + }, + { + "value": "HtADLvDpWQsx5qtLh5A9", + "label": "Suzhou Debate Open 2020" + }, + { + "value": "7bjgBH4vUAY8LwONR9i6", + "label": "Swansea Open 2016" + }, + { + "value": "HXAIZhpnUdFYuB97wMF8", + "label": "Süddeutschen Regionalmeisterschaft 2012" + }, + { + "value": "m6JzV67uYJSVBRpAbgL7", + "label": "Taiwan Online Debate Open 2020" + }, + { + "value": "VWMKb2j3CmLwgnB7Jl4O", + "label": "Tallaight IV 2014" + }, + { + "value": "6KzwZLwpFJv7ICEsknpO", + "label": "Tallin EUDC 2017" + }, + { + "value": "pp2oK2CPkxitjQPpwO4o", + "label": "Tallinn Tech Open 2015" + }, + { + "value": "fzLPoPRlME1NEcvf7oVd", + "label": "Taylor's Debate Open 2020" + }, + { + "value": "9G0KckqdiQWitD6Bo6ZK", + "label": "Tech Open 2014" + }, + { + "value": "mzTZLa2tIQsY2lUGe6Yf", + "label": "Tech Open 2015" + }, + { + "value": "UnPx20cVpfgfJ0GCpiYw", + "label": "Tech Open 2016" + }, + { + "value": "jDAkgOHYB1YR6mTfcUKJ", + "label": "Tech Open 2017" + }, + { + "value": "jFJV7RlRveuMvy9xk7UP", + "label": "Tech Open 2018" + }, + { + "value": "g8CCOnnQt2zCZCMbRAUS", + "label": "Tech Open 2019" + }, + { + "value": "oAgYOmWxFy4ZVpvRuJtL", + "label": "TechOpen 2014" + }, + { + "value": "u39lMiqXE91heMDxEgQe", + "label": "Teen X Debate Online 2020" + }, + { + "value": "wA1XDLHJESmSgLsfZ9Qe", + "label": "Thailand WUDC 2020" + }, + { + "value": "Z9WBfg1yDJgSR34BGYp1", + "label": "The Anime Open 2021" + }, + { + "value": "tKaZ8QEH0Hjz3Oiknfdr", + "label": "The Baillie Gifford Oxford Women's Open 2016" + }, + { + "value": "wE88mu5ettNTfJEaJQY1", + "label": "The Beacon Debating Club 2018" + }, + { + "value": "Sf5YtAJo1vVmULRLSMAt", + "label": "The Debate Open 2020" + }, + { + "value": "SPjgjrpUBIPs6H9gmx9P", + "label": "The Debaters VTV7 2020" + }, + { + "value": "D9jVXR7QB0BrNFTW3MDz", + "label": "The English Cup 2012" + }, + { + "value": "EkR93MYW52GdWTuVsaKa", + "label": "The Galway Open (Irish National Law Debates) 2013" + }, + { + "value": "LJpNoy6NIxtIr7pXj25B", + "label": "The Grand Spar August 2020" + }, + { + "value": "vOzlUiodV5GoF1ZtM5Tt", + "label": "The Grand Spar July 2020" + }, + { + "value": "fzTALe8bGudT9BWcFtDO", + "label": "The Grand Spar June 2020" + }, + { + "value": "cDgGdE6ESpUqp2A2gVLj", + "label": "The Grand Spar May 2020" + }, + { + "value": "6GQFhlc28xUwjga5E5G3", + "label": "The Grand Spar September 2020" + }, + { + "value": "sXtyoMtY4Bb7XJvcqA3J", + "label": "The Karachi Cup 2019" + }, + { + "value": "Ke3vqa3ZpQMmG6mDtn1z", + "label": "The Lyceum Debating Championship 2019" + }, + { + "value": "XGnGWhzkfstV6wutkTXQ", + "label": "The Nixor College Debating Championship 2018" + }, + { + "value": "JsJHH6odeVuMVnQ8A5bN", + "label": "The Novice Debate 2020" + }, + { + "value": "6UClYEkoQLViAru2xei4", + "label": "The PES Debate Open 2019" + }, + { + "value": "a7Zdmoc5GpY9KlKkDEVg", + "label": "The QUB Open 2016" + }, + { + "value": "3XjkQ3xKYDnPNq07ZvXY", + "label": "The Queen’s Annual TRUST IV 2016" + }, + { + "value": "gUFKQBcgvghmUX6k0Dj3", + "label": "The Tabate 2021" + }, + { + "value": "rMtZQSWssQ8170WIyJTX", + "label": "Thessaloniki Open 2014" + }, + { + "value": "92dIEXeOXUVvlcFeGCIr", + "label": "Thessaloniki WUDC 2016" + }, + { + "value": "TPp4G8lciZrkipphcyZG", + "label": "Tilbury House 2014" + }, + { + "value": "db8a4cSMVYVFuxZgcf0y", + "label": "Tilbury House Cologne Open 2018" + }, + { + "value": "k3ijyeg4qJCcExIHRlhv", + "label": "Tilbury House Cologne Open 2019" + }, + { + "value": "zNrcKb4T08IU7LfuYSUz", + "label": "Tilbury House IV 2012" + }, + { + "value": "7L67NrnE93IENW8OW03k", + "label": "Tilbury House IV 2013" + }, + { + "value": "jQjuYOl7gbKBTiUrvWM2", + "label": "Tilbury House IV 2015" + }, + { + "value": "kM1DLhtxZLQbdLIScfM9", + "label": "Tilbury House IV 2016" + }, + { + "value": "hlf4hP8CehYHd5yHET3L", + "label": "Tilbury House Novice 2014" + }, + { + "value": "yUDsqlr4IzlUqMSPRKiE", + "label": "Tilbury House Online Ope 2.0" + }, + { + "value": "jz3o0aXm0sxfgpVkfw2J", + "label": "Tilbury House Online Open 2.0" + }, + { + "value": "bH0N4QlKzNNQ8zL97OyO", + "label": "Tilbury House Online Open 2020" + }, + { + "value": "WcTEqzk0ckiyLGdszyy6", + "label": "Tornadu 2014" + }, + { + "value": "yLkpGc1iaQe5cfQPrNvl", + "label": "Tournament of Champions 2013" + }, + { + "value": "ZsVD7wkjXkMvxPWmTARb", + "label": "Tournament without a name (Macedonian-Greek exchange tournament) 2013" + }, + { + "value": "vILiSHUm95tqQYsTjFZs", + "label": "Transatlantic Debating Championships 2013" + }, + { + "value": "r7L7x15Ixt9qEWgdPZ6u", + "label": "Tricity Mini 2017" + }, + { + "value": "uOrbqWx5KdpXchUpHb3Z", + "label": "Trinity IV 2012" + }, + { + "value": "0FjoYPaEyMvQKDhX7FzX", + "label": "Trinity IV 2013" + }, + { + "value": "fIr3uLdOpGeGuZzpnEMf", + "label": "Trinity IV 2014" + }, + { + "value": "nDjxmwMznw4ZJasK7Taj", + "label": "Trinity IV 2016" + }, + { + "value": "o7IbmAZdAZ1UWeWnX7IL", + "label": "Trinity IV 2017" + }, + { + "value": "0vUzx1fMW06W65BNi8Wn", + "label": "Trinity Online Open 2020" + }, + { + "value": "F966uo3Po2bRFWfFesTz", + "label": "Trinity Open 2017" + }, + { + "value": "se3rzB8xVp0Ph3sVbug3", + "label": "Trinity Women's Open 2016" + }, + { + "value": "rmnZcOUQU2iED2r3pXca", + "label": "Trivium Debattoernooi 2014" + }, + { + "value": "2puDg94cQDrpdSauuA78", + "label": "Trivium Tournament 2016" + }, + { + "value": "WEotTkb6ok8UfUOl0Lwb", + "label": "Trouvaille Debate Open 2021" + }, + { + "value": "LSMut8kvHk1gfEyOYYPt", + "label": "Trường Teen 2020" + }, + { + "value": "jiJ3t0fz2aMel6atC1HM", + "label": "Turku Open 2013" + }, + { + "value": "URJkYB098qcNUnuKdfHJ", + "label": "Turku Open 2014" + }, + { + "value": "3um2E0WAP1AdkOXCUDfL", + "label": "Tübingen Herbst Debatten 2013" + }, + { + "value": "7l98EUanZ85SaCAlZg2X", + "label": "UBC Fundraiser Open 2020" + }, + { + "value": "yIBeLUbSZELobFcw30WY", + "label": "UBC IV 2013" + }, + { + "value": "YAsriFfh4M2kLN2FBQPq", + "label": "UBC IV 2018" + }, + { + "value": "jDG8reClMB02DIxLR5LL", + "label": "UBC IV 2019" + }, + { + "value": "VPUCPVj9FHFW0uzJinv0", + "label": "UBC WUDC 2007" + }, + { + "value": "X7PfztBaTR2KFk3oINtG", + "label": "UCD IV 2015" + }, + { + "value": "x0mst3SfcsgMKKZ3eg7G", + "label": "UCD IV 2016" + }, + { + "value": "dptDC5a1y6D1HClBFEO4", + "label": "UCD Novice 2016" + }, + { + "value": "FAvjs63H5vSbEY0I97Zs", + "label": "UCD Novice Cup 2013" + }, + { + "value": "jdV8jBuLPUpb2I5gYBQc", + "label": "UCD Novice IV 2012" + }, + { + "value": "miNjiX9yX5Oq25V4yWeo", + "label": "UCD VP 2011" + }, + { + "value": "hF5AdOa0t9O6mkaChm75", + "label": "UCD Vice President’s Cup 2013" + }, + { + "value": "WqsdOIKQnJkQdFDBVNtA", + "label": "UCD Vice-President’s Cup 2012" + }, + { + "value": "jpLuasMJYB40s1bJk2Ia", + "label": "UCL Clifford Chance IV 2016" + }, + { + "value": "bmpPSwtqn5KEm26j6EB7", + "label": "UCL IV 2013" + }, + { + "value": "y0zBNckmXRI4bCqMyXLg", + "label": "UCL IV 2014" + }, + { + "value": "Sdm6UfNcXB7Ppj4BkdLe", + "label": "UCL President’s Cup 2012" + }, + { + "value": "iARNjQG0MiYXxp1Qk22E", + "label": "UCL President’s Cup 2014" + }, + { + "value": "ti8CFKwd5Fq6RHmrGph0", + "label": "UCL President’s Cup 2016" + }, + { + "value": "9yZPq4vkPBjWs9gMF8AS", + "label": "UCLA IV 2018" + }, + { + "value": "IgBrZRMArYLwB0oVtcRa", + "label": "UCT 150th Year Open 2015" + }, + { + "value": "wYsVMTqiPYP1HFjzExu2", + "label": "UCU Open 2011" + }, + { + "value": "xeyFK25uSH9TtPga8ALE", + "label": "UCU Open 2012" + }, + { + "value": "UWHKNxWBfNyw2FCQAxdk", + "label": "UCU Open 2013" + }, + { + "value": "Hq4qmpVpWAzn16SzuUU8", + "label": "UDP Open 2019" + }, + { + "value": "WCy3lEpZMYjWgaZ7Qx1o", + "label": "UFMG IV 2019" + }, + { + "value": "OAcOsXro6vLkyCebuX4n", + "label": "UK Debate Challenge 2012" + }, + { + "value": "0zMaoLN7qmzWGSYIzhjh", + "label": "UK Debate Challenge 2013" + }, + { + "value": "2b9xHhyeUjald2Iu585W", + "label": "UL Open 2013" + }, + { + "value": "yplVU35a69J2hHBBmAJC", + "label": "UL Open 2014" + }, + { + "value": "QH8qP4fqpVb4nMsZXwxw", + "label": "UL Open 2016" + }, + { + "value": "8ayi1XeWc8ZG8jPzG8bt", + "label": "ULU Westminster IV 2013" + }, + { + "value": "vzoLJmfiPRVvjgiu4Nrs", + "label": "UMT Parliamentary Debate Open 2021" + }, + { + "value": "GN3wIECpidF8WB3WC2l0", + "label": "UNESCO Hong Kong SDG Debating Tournament 2017" + }, + { + "value": "g7nlvxejABAgCXhGkJg8", + "label": "UPenn World Schools Online Debating Tournament 2020" + }, + { + "value": "h2z0CGY0CzqfLCKUb3wz", + "label": "US National Open 2013" + }, + { + "value": "QDGMrdrzlFCxVT5WcqNn", + "label": "US Western Regional Championship 2018" + }, + { + "value": "eXqHjvQ9MTXYhyv8NeW7", + "label": "USC IV 2018" + }, + { + "value": "9wxPRUMGICTUrE7xSaCG", + "label": "USU Open 2012" + }, + { + "value": "MgpFX31hoBasrUiOV7Eu", + "label": "USUDC 2019" + }, + { + "value": "6nBP9jzzLtVU7k4sXrZu", + "label": "UTAD Debate changing Europe round 2013" + }, + { + "value": "CBVZREYhjV5bhCHOuWjU", + "label": "Uhuru Worlds 2021" + }, + { + "value": "rinK386NjH990vvie6wL", + "label": "Ullens Online 2020" + }, + { + "value": "i4XbygF4ZWUtQg8NFKqw", + "label": "University of Latvia Open 2016" + }, + { + "value": "aHKO046eJRUWaom1jPG8", + "label": "VITDT Round Robin 2020" + }, + { + "value": "G1nDRe3mbR7XzsaLbAGR", + "label": "VUAS Debate Tournament 2013" + }, + { + "value": "ARfoyigbkuieCEyKI1GV", + "label": "VUAS Debate tournament 2014" + }, + { + "value": "mUHCV4981T5cYALNdYBk", + "label": "Victoria's Cup 2020" + }, + { + "value": "ZQbHv8rs6yqxtH8VBbkr", + "label": "Vidzeme Open 2015" + }, + { + "value": "WqXUc7EMDvkqqg3BVCtf", + "label": "Vienna EUDC 2015" + }, + { + "value": "b9wXoxHWMOjvJu54cv9Q", + "label": "Vienna Freshers 2012" + }, + { + "value": "XBBB3MfIKpYpUaioBlLB", + "label": "Vienna Freshers 2013" + }, + { + "value": "vY2MtSrfiAgUKzGbzzMm", + "label": "Vienna IV 2012" + }, + { + "value": "LH17DUUbXDstAFfMNJyf", + "label": "Vienna IV 2013" + }, + { + "value": "lM9u9z6CfHfA9HPucSIT", + "label": "Vienna IV 2014" + }, + { + "value": "TMUPfAyolz9JkKMmWlLC", + "label": "Vienna IV 2019" + }, + { + "value": "dqyYdikn4cY0oz6DCMkq", + "label": "Vienna Mini 2013" + }, + { + "value": "KE7jdAyW9az9nKVb9FMV", + "label": "Vietnam BP Championship (VBC) 2021" + }, + { + "value": "sgcqNV5ntCoa4H8glRBu", + "label": "Vietnam Debate Online (VNDO) - BP 2020" + }, + { + "value": "CJKUeBIUibEtZYahoUQV", + "label": "Vietnam Debate Online (VNDO) 2020" + }, + { + "value": "DxF0p5X2fi9LhbzCFGTd", + "label": "Vietnam Schools Debating Championship (VSDC) 2019" + }, + { + "value": "OLVGf3rE3KKirerr2vyk", + "label": "Vietnam University Debating Championship (VUDC) 2021" + }, + { + "value": "uqR5rN63m5rX9CiOtJjb", + "label": "Vietname BP Championship (VBC) 2020" + }, + { + "value": "f95Nh9hCAQsssNcgxALW", + "label": "WSDC 2017" + }, + { + "value": "XnmecTVfWWNVfWZaANER", + "label": "WSDC 2018" + }, + { + "value": "OyqUfVFCTQ5A8iecmNK1", + "label": "WSDC 2019" + }, + { + "value": "nZHihOHKbvuiGhhtsXam", + "label": "WSDC Practice Spars 2020" + }, + { + "value": "M23yN5DieB5FwQ5wfjDl", + "label": "WW III 2019" + }, + { + "value": "UfGg9gZEXlU744RWE1Y1", + "label": "Warsaw EUDC 2016" + }, + { + "value": "013M8EetYEKwpGlokURQ", + "label": "Warsaw Open 2013" + }, + { + "value": "3puXPIrnWCPTSNlOtl3R", + "label": "Warwick IV 2013" + }, + { + "value": "E5iEI92yocDkjANxDoF9", + "label": "Warwick IV 2014" + }, + { + "value": "NMqOqSd4sZ95JVU4Dia8", + "label": "Warwick IV 2016" + }, + { + "value": "4XrkYxI1Z9BN4Rn7DC4S", + "label": "Welsh Novices 2012" + }, + { + "value": "JWLA0D1GfpyCkzoL1qX9", + "label": "Welsh Novices 2013" + }, + { + "value": "IKVZuvI9noj2HK4GNxgS", + "label": "West German Regional Championships 2014" + }, + { + "value": "pMiBCGHX80oXMgUJCqkc", + "label": "Western Regionals 2017" + }, + { + "value": "mXeF4ypkhHofmXrxLWxA", + "label": "Western Regionals 2018" + }, + { + "value": "pgslzxqwnT5Ei6UMGh69", + "label": "Western Washington University 2019" + }, + { + "value": "sQqCNuWw9nlSsN5agLhC", + "label": "Westminster Debating Championships 2020" + }, + { + "value": "o60DawGVHvdGOC58c4vF", + "label": "Westminster IV 2014" + }, + { + "value": "uEekEeJIfFAC4OJWJglf", + "label": "Westminster Open 2014" + }, + { + "value": "oVagPVQLXErhZIkOTqQn", + "label": "Westminster Open 2015" + }, + { + "value": "XL594Q2oZbvHmfmYKFvT", + "label": "Whippersnappa Pre-Australs 2020" + }, + { + "value": "ubSWFCyfoCllO0KSjdjy", + "label": "Wilderness Open 2020" + }, + { + "value": "4BdwKPHB1LrpVYqE4E51", + "label": "Womxn and Gender Minorities Online Debate Open 2020" + }, + { + "value": "uqck8RfOWjSxv4ChXJEV", + "label": "World Schools Debating Championship, 2017" + }, + { + "value": "wP5I8OZ057B9BO0Js6MR", + "label": "Yale IV 2013" + }, + { + "value": "KUgzKY5FHtox24CaztLJ", + "label": "Yale IV 2014" + }, + { + "value": "wKhC6L9zPycGKlqYWb6j", + "label": "Yale IV 2015" + }, + { + "value": "Hk8f1ASR1JhJdfu9tmfK", + "label": "Yale IV 2016" + }, + { + "value": "9JqIpRhRkA8gulRio4t9", + "label": "Yale IV 2018" + }, + { + "value": "Pr7RhJp1TWbTZsqRvQt4", + "label": "Yale NUS Pro Ams 2020" + }, + { + "value": "tPdF4vGV6F0ucJaSF5md", + "label": "York IV 2012" + }, + { + "value": "QV74kB5iA6iDiqLCNz2F", + "label": "York IV 2013" + }, + { + "value": "YWYo651ohahlD6OyzCXj", + "label": "York IV 2014" + }, + { + "value": "L5MIrW7phE11xSIVutdB", + "label": "York IV 2016" + }, + { + "value": "NbIgaSiRmXdh3BAZ88Vm", + "label": "York IV 2018" + }, + { + "value": "kReIJGsf14VAB0aHbDhJ", + "label": "York IV 2019" + }, + { + "value": "F4R04qPZ5ggkBomuSBNI", + "label": "Yorkshire Novice Cup 2013" + }, + { + "value": "sgkzjS4WeJfa3Df1l3zo", + "label": "Yorkshire Novice Cup 2014" + }, + { + "value": "Wqc3dxPJ5gqHiSdQCjYD", + "label": "Yorkshire Novices 2013" + }, + { + "value": "NYyJaJXo1SigW6G8Y1Lm", + "label": "Zagreb EUDC 2014" + }, + { + "value": "qDZwjZ3HER1wsZxsFjBb", + "label": "Zagreb Open 2020" + }, + { + "value": "MSWulSxGMLEhqYJrBR62", + "label": "Zagreb Random Pro Am 2020" + }, + { + "value": "fHaBEm9PW7QYO4ZKFbwi", + "label": "Zalgiris Cup 2013" + }, + { + "value": "EdTnzchhKzipTBRxQvXJ", + "label": "Zeit Debatte Aachen 2013" + }, + { + "value": "YZ4nedbden9wBJH2zqb4", + "label": "Zeit Debatte Dresden 2014" + }, + { + "value": "SYgBNIxUimP727BA2md3", + "label": "Zeit Debatte Frankfurt 2013" + }, + { + "value": "1wIdZYeTVkyLU5yJfjda", + "label": "Zeit Debatte Hamburg 2012" + }, + { + "value": "vRdckCLdD0l2Rjc63y5T", + "label": "Zeit Debatte Hamburg 2013" + }, + { + "value": "dYmkkVK8aVn1dCgd4UDy", + "label": "Zeit Debatte Karlsruhe 2011" + }, + { + "value": "NyCp19C1AzxXzCUQLio8", + "label": "Zeit Debatte Magdeburg 2012" + }, + { + "value": "QjQ9aMJIggiNR9zYImnN", + "label": "Zeit Debatte Mainz 2014" + }, + { + "value": "Z2fhe3NoSvpEOVSzVxzj", + "label": "Zeit Debatte Marburg 2013" + }, + { + "value": "1WET2zUA9uN6rpHTGR8k", + "label": "Zeit Debatte Munster 2012" + }, + { + "value": "N8WiUFJpvPmLaaYYsbsD", + "label": "Zeit Debatte Tübingen 2012" + }, + { + "value": "mveJVSu6tAxKx2Vp4IB0", + "label": "Zeit Debatte Wien 2014" + }, + { + "value": "epYFKCbv9IIbdGwlLvYy", + "label": "Zionism Begin Tournament 2012" + }, + { + "value": "phCn2QcrjTV2Mop5uReH", + "label": "cornell novice nationals and tournament of love 2017" + }, + { + "value": "7xtgzuPYqGNaVt3HtVMl", + "label": "Österreichischen Debattier Meisterschaft (Austrian Debate Championship) 2013" + }, + { + "value": "twKqnL2DsJjSnSlCEi2E", + "label": "Österreichischen Debattier Meisterschaft (Austrian Debate Championships) 2013" + }, + { + "value": "jVtcrR58DYEPrz6PXM17", + "label": "“Denny Crane” Faculty of Political Science 2012" + } +] \ No newline at end of file diff --git a/src/core/constants/tournamentsFromDatabase.json b/src/core/constants/tournamentsFromDatabase.json new file mode 100644 index 0000000..e25ab52 --- /dev/null +++ b/src/core/constants/tournamentsFromDatabase.json @@ -0,0 +1 @@ +[{"format":"","year":"2013","name":"Warsaw Open","id":"013M8EetYEKwpGlokURQ"},{"format":"","year":"2020","name":"Deree Invitational LIX","id":"02vn4ksQhlUNksv2wu0q"},{"format":"","year":"2013","name":"Mykolas Romeris University (MRU) IV","id":"041lRDdS5oaD5orDuk8q"},{"year":"2011","format":"","name":"John Smith Memorial Irish Mace Round 1","id":"0DgXee32WEP3hxmGZExS"},{"format":"","name":"Joynt Scroll (NZ Prepared Debating Tournament)","year":"2018","id":"0EfM3HXUbP8eg9asv3MM"},{"year":"2013","format":"","name":"Trinity IV","id":"0FjoYPaEyMvQKDhX7FzX"},{"year":"2012","format":"","name":"IDAS tournament","id":"0M48sfM68g8U5RgkKD2l"},{"name":"Bristol Open","format":"","year":"2016","id":"0NYsqnVN9ZPLLJvXAZdI"},{"year":"2012","name":"Open de Lisboa","format":"","id":"0WQ7djfo2FawxEAC95E0"},{"year":"2013","format":"","name":"History Tournament","id":"0Z9IiWTQjupe7Jbemo9Y"},{"format":"","year":"2011","name":"Irish Times Round 2","id":"0aaiP0hS7LLjh0VVpofG"},{"year":" 2.0","name":"Tilbury House Online Ope","format":"","id":"0anPdjjejinL3DGvB4L1"},{"format":"","name":"Exeter Open","year":"2013","id":"0bOkf8RbGJTfzpOQVOgY"},{"format":"","name":"Berlin WUDC","year":"2013","id":"0bpNzjTgN71TZQEkHTak"},{"name":"World Schools Debating Championship,","year":"2017","format":"","id":"0mv3ToZPy0AwAsRnpZBN"},{"year":"2012","name":"Irish Times Open_Semiss","format":"","id":"0sEnEupsuf6b6sQ6tqCB"},{"format":"","name":"IUBDC Rational Wrangle","year":"2020","id":"0uv0Q5NYNxSkCbhPLLRo"},{"format":"","name":"Trinity Online Open","year":"2020","id":"0vUzx1fMW06W65BNi8Wn"},{"format":"","name":"UK Debate Challenge","year":"2013","id":"0zMaoLN7qmzWGSYIzhjh"},{"year":"2020","name":"Cross-DebSoc Pre-ABP Tournament","format":"","id":"15hrO4GoCxXF2OIdl7fS"},{"format":"","name":"Berlin IV","year":"2013","id":"18IIGMrqE33YyULmp5EY"},{"year":"2020","format":"","name":"Debate for Donation Open","id":"1DUltfq5WOlWowHiNs5h"},{"format":"","year":"2017","name":"NEAO","id":"1MV3spmbrmWLKhisZDU8"},{"year":"2010","format":"","name":"SSE Riga IV","id":"1V1INGo8OX49g8hUFTF3"},{"year":"2012","format":"","name":"Zeit Debatte Munster","id":"1WET2zUA9uN6rpHTGR8k"},{"year":"2017","format":"","name":"2017 Pan-American Universities Debating Championship","id":"1XSX7FHkgfyCn1pjSqbi"},{"year":"2012","format":"","name":"John Smith Memorial Mace Open_Semiss","id":"1XuVJxN52ldgExm8K3T2"},{"name":"HSE Open","year":"2014","format":"","id":"1Zlx7tjmmkRhrDxYF8Qr"},{"year":"2016","format":"","name":"Imperial Novices","id":"1aLx5bJZiwmW3mkmtmNO"},{"name":"DSDC Coherence","format":"","year":"2020","id":"1bBjpR84rI88s6EveWzm"},{"year":"2020","name":"2020 Commonwealth Debating Championship","format":"","id":"1bHNYzF6GWRqdpr3f5vt"},{"year":"2012","format":"","name":"French Debate Association Tournament Final","id":"1bpcDodsw3NA8n7dGxeb"},{"format":"","year":"2013","name":"Nikolausturnier","id":"1cJ1sn6hYwZuN7mUjUE9"},{"name":"Neckarwiesen Cup","year":"2014","format":"","id":"1cqzoXItQEaNAhU2qjNL"},{"year":"2018","format":"","name":"Novi Sad EUDC","id":"1dEXZTvvRtTWhdBLmzFt"},{"name":"Philippines Queer Open","year":"2021","format":"BP","id":"1dwGdjAn9pODo8bQfmJW"},{"name":"Joensuu Mini","year":"2018","format":"","id":"1hlmlrX6In8aTapDJoTu"},{"year":"2013","name":"Nottingham Trent IV","format":"","id":"1iGKg5a8rDH4ci9OIYEG"},{"format":"","year":"2014","name":"Paris V","id":"1leOvfvlbNAIDzW6UnkK"},{"format":"","name":"Österreichischen Debattier Meisterschaft (Austrian Debate Championships)","year":"2013","id":"1lhrrHzfpU4TfWb63MLz"},{"year":"2020","name":"Cogic Debate Online (CODO)","format":"AP","id":"1qq9g2ApB8UdvPr2ewx1"},{"format":"","year":"2012","name":"Zeit Debatte Hamburg","id":"1wIdZYeTVkyLU5yJfjda"},{"year":"2020","format":"","name":"Imitation Cup","id":"1zpwTG4R66xy1c4CrMeq"},{"format":"","year":"2018","name":"Northams","id":"2C0TX71TRjIIOcsN7CbL"},{"name":"HWS Round Robin","year":"2018","format":"","id":"2D1SBKQDFgG0zGjX4oHP"},{"year":"2012","format":"","name":"John Smith Memorial Mace Open_Semiss","id":"2MJG23XyULcEGjf9LgcH"},{"year":"2014","name":"Paris V French Debating Association Tournament Open_Semis","format":"","id":"2PiAEzXdXq9R2oqnRDNA"},{"name":"Paris V","year":"2014","format":"","id":"2VXzlNSD3gDa1ZljNO7g"},{"name":"Bonapartiaans Debattoernooi Amsterdam (BDT)","year":"2012","format":"","id":"2XJwkUOw6JeegMJHT6Hl"},{"format":"","year":"2018","name":"KUET IV","id":"2YfQ1XbNnQfXwnjeGyDd"},{"name":"UL Open","year":"2013","format":"","id":"2b9xHhyeUjald2Iu585W"},{"name":"John Smith Memorial Irish Mace Round 1","year":"2011","format":"","id":"2eKSmSDuZibu78uYNHUp"},{"format":"","year":"2013","name":"German Regional Championships South (Austria and Switzerland)","id":"2fNmUq1mfr7IP3WAvr0Q"},{"name":"Ka Paio Debate Open","format":"WSDC","year":"2019","id":"2gsOERqtXqSETJffXbnj"},{"year":"2013","format":"","name":"John Smith Memorial Mace Welsh leg","id":"2hleRVQkc8xbkOnxRKOY"},{"year":"2007","name":"SSE Riga IV","format":"","id":"2iPGMwcaQqidqlVq1gzJ"},{"format":"","year":"2012","name":"International John Smith Memorial Mace Final","id":"2oCOivyDrGd4jrwjPjKk"},{"format":"","name":"Trivium Tournament","year":"2016","id":"2puDg94cQDrpdSauuA78"},{"format":"","year":"2018","name":"Northams","id":"2xVATo6gRv1yOS2flcEG"},{"format":"","year":"2014","name":"Belgrade Open","id":"368JyxQNhxMm3WEWlba7"},{"name":"Trường Teen","year":"2020","format":"AP","id":"37eWQ7OoHqsPgaN53lHV"},{"year":"2020","format":"WSDC","name":"Hanoi Debate Tournament (HDT)","id":"3B01KdqnCVzQEVjKcHiT"},{"format":"","name":"Science Po Le Havre IV","year":"2012","id":"3G6HklWR08yKYY0GbDsU"},{"format":"","year":"2015","name":"Chancellor's Cup (Queen's University)","id":"3Gl2F99bU3ZHa2ZjcrUR"},{"name":"Feminism and Gender Tournament","format":"","year":"2013","id":"3KT5cUfqBjWrhC0DWPAs"},{"format":"","year":"2020","name":"Parassat Open","id":"3NTAi2gNk5Uyy3NuACO5"},{"format":"","year":"2011","name":"John Smith Memorial Irish Mace Round 1","id":"3RchPJihiMZiWYVegaZ9"},{"format":"","name":"Maynooth Open","year":"2018","id":"3VTSywK012zU6GDLqZzC"},{"year":"2016","name":"The Queen’s Annual TRUST IV","format":"","id":"3XjkQ3xKYDnPNq07ZvXY"},{"format":"","name":"London Pro-Am","year":"2016","id":"3Zgv6Gsne7dxEbg36SPO"},{"year":"2020","format":"WSDC","name":"MOE Invitational Debating Championship (MIDC)","id":"3b2nSsxJIMIXNPKJTeQx"},{"year":"2014","name":"Bonapartiaans Debattoernooi","format":"","id":"3dDCV3YYSGl8TNe5f3iO"},{"name":"John Smith Memorial Mace - Scottish Finals","year":"2016","format":"","id":"3eIqWfLtHDOZRmzJt05T"},{"name":"Warwick IV","year":"2013","format":"","id":"3puXPIrnWCPTSNlOtl3R"},{"year":"2013","format":"","name":"Cork IV","id":"3tMy4nyufgrwLpV8f6da"},{"name":"DU IV","format":"","year":"2019","id":"3thiHP0WT1SpBvjVmMFz"},{"format":"","year":"2013","name":"Tübingen Herbst Debatten","id":"3um2E0WAP1AdkOXCUDfL"},{"name":"North-East German Regional Championships","year":"2014","format":"","id":"44zszGOLcUfUSx7uRJTD"},{"name":"Cicero Debattoernooi","format":"","year":"2014","id":"48Ba3dAlJxoct1Z9f7GA"},{"format":"","name":"GDPPC Open","year":"2013","id":"4AUWV6dX7gzPml1BbN5u"},{"format":"","year":"2020","name":"Womxn and Gender Minorities Online Debate Open","id":"4BdwKPHB1LrpVYqE4E51"},{"format":"","name":"Aberdeen Open","year":"2014","id":"4ENxr34b5j7GiIcVWnv9"},{"year":"2012","format":"","name":"German Language Championships","id":"4NEhQx2m4XcXy6SxnoqS"},{"name":"FLTRP Training Beijing Debate Open","format":"","year":"2019","id":"4Nqwg2GbRwaUJ5LaWcSt"},{"year":"2018","format":"","name":"Jewell Debate Tournament","id":"4PekAtlXMCWdSTTJuMol"},{"format":"","name":"Helsinki Freshers' ProAm","year":"2017","id":"4V6pb0chg0WcRQyc6Zde"},{"name":"John Smith Memorial Mace - Scottish Finals","format":"","year":"2016","id":"4VruqQYAls6I77LEEWGz"},{"format":"","year":"2014","name":"Bulgaria Open","id":"4WWD63gqcbSKMNoFf5ly"},{"year":"2013","name":"Cambridge IV","format":"","id":"4XkvQJQxtOHIIF6sH97v"},{"format":"","name":"Welsh Novices","year":"2012","id":"4XrkYxI1Z9BN4Rn7DC4S"},{"name":"Durham IV","year":"2013","format":"","id":"4dzoeUxkRP5WxDaCVtbY"},{"year":"2012","format":"","name":"Irish Mace Third Round","id":"4gQdvZTMKBCThKxmhfmU"},{"name":"Middle Man tournament","year":"2013","format":"","id":"4ptLj1Lmq40xJg12oRVd"},{"name":"Northams","year":"2020","format":"","id":"4qwhZS2zOsdzzkyQlcaW"},{"name":"HWS Round Robin","format":"","year":"2014","id":"4yVRmMNHzHW12EVIlnyZ"},{"name":"Leiden Novice Tournament","format":"","year":"2013","id":"50nXPc798MPMXDyPN224"},{"format":"","year":"2012","name":"Final Irish Times","id":"51E7OUgehZFAtBNKOqe4"},{"name":"Österreichischen Debattier Meisterschaft (Austrian Debate Championships)","year":"2013","format":"","id":"52344VItdDlph0iB3ZAy"},{"format":"","name":"Colgate Open","year":"2017","id":"53fI8Yf0j74CAnSOjn9g"},{"name":"John Smith Memorial Mace Scotland","format":"","year":"2014","id":"54Voc2YjynWxScz0a04o"},{"format":"","year":"2011","name":"Irish Times Debates First Round","id":"5ETrS816OeSAWdPhWEHf"},{"year":"2009","format":"","name":"New Zealand BP Debating Championships","id":"5O13410pDrHfcvKnpppR"},{"year":"2012","name":"Irish Times Open_Semiss","format":"","id":"5P58z1p9x5k5BmY1b0Ld"},{"year":"2020","name":"Monash Australs","format":"","id":"5Qomv7BFHTKmY4PchwDr"},{"name":"Melbourne Mini","year":"2020","format":"BP","id":"5SXUtPGKmOtgXxWouFAs"},{"name":"EUDC Challenge IV","year":"2020","format":"","id":"5YRD8EoL8wrQu3pTfkUI"},{"format":"","name":"Open de Debates de Lisboa","year":"2013","id":"5YavcNMFjpdq8R1u3M2H"},{"format":"","year":"2012","name":"Lund Debate Challenge","id":"5dx9HmyPaBDPB6JstQGb"},{"year":"2014","name":"Methusalem Cup","format":"","id":"5mJg23unORtxSJCvBzd9"},{"name":"cornell novice nationals and tournament of love","format":"","year":"2017","id":"5oYH1K5oILZA6OqwhGhz"},{"year":"2014","name":"John Smith Memorial Mace Scotland","format":"","id":"5u3mVlfh6gI4sh6Lsnro"},{"year":"2012","name":"Israeli Open","format":"","id":"5wD2Kt4YswcLbEnnV0c5"},{"name":"Yorkshire Novices","year":"2013","format":"","id":"655ljihoF4Mh7lzjZruS"},{"name":"BDC Pre-Worlds","format":"","year":"2020","id":"683xp6VC99fyKWXfWS9H"},{"year":"2018","format":"","name":"Oxford IV","id":"68SrKFb9XtsQrLtqLtjO"},{"year":"2019","name":"Northams","format":"","id":"6AnUBd9SLIBHmD9Uy5dS"},{"year":"2012","format":"","name":"King’s College IV","id":"6CH8DHWUbQKOjMDFTgFX"},{"year":"2013","format":"","name":"Österreichischen Debattier Meisterschaft (Austrian Debate Championships)","id":"6DmTtRZXgae8yxND5RcJ"},{"name":"The Grand Spar September","format":"","year":"2020","id":"6GQFhlc28xUwjga5E5G3"},{"name":"DCU Open","year":"2014","format":"","id":"6GQGSjlsY612FPwbXRbB"},{"name":"Tallin EUDC","year":"2017","format":"","id":"6KzwZLwpFJv7ICEsknpO"},{"year":"2019","format":"","name":"Cracow Open","id":"6NSl7moQPnBVA2R4Z66b"},{"name":"Österreichischen Debattier Meisterschaft (Austrian Debate Championships)","format":"","year":"2013","id":"6P4ov4JGNVOBp8Ik6hOy"},{"format":"","name":"Bruder Grimm Cup","year":"2012","id":"6SkyoBySWDSJCqeHrA9S"},{"name":"Northams","format":"","year":"2019","id":"6SngNGkOqkpUPFayM9am"},{"format":"","name":"The PES Debate Open","year":"2019","id":"6UClYEkoQLViAru2xei4"},{"year":"2019","format":"","name":"Brad Smith Debate Tournament","id":"6j3LrbKUgx9arVygXUjf"},{"format":"","name":"Northams","year":"2020","id":"6kv2RDFZVpo7fj5rmy31"},{"year":"2012","format":"","name":"Open de Debates da Sociedade de Debates da Universidade de Coimbra (SDUC)","id":"6kzErQkhNrOjgjEPAYjE"},{"format":"","year":"2017","name":"Sheffield IV","id":"6mCNGJYhhrCUYIhAm6FN"},{"name":"UTAD Debate changing Europe round","format":"","year":"2013","id":"6nBP9jzzLtVU7k4sXrZu"},{"name":"Joynt Scroll","format":"","year":"2013","id":"6tyiq2GnlmVmI452js6u"},{"year":"2014","name":"Leeds Open","format":"","id":"70rnu3F4Q3ntkA4t3Wfl"},{"name":"2017 Pan-American Universities Debating Championship","year":"2017","format":"","id":"74j8JMRQiO3vlVA48fxM"},{"year":"2021","format":"BP","name":"Beihang International Winter Online BP Open","id":"75jspJDrwq3Ldwex90Qr"},{"format":"","year":"2016","name":"Manchester IV","id":"7DiEtR3YNKR69fHccj5Y"},{"year":"2020","format":"","name":"Northams","id":"7EZaztgPO8Q1ZD1v7w6n"},{"format":"WSDC","name":"Online WSDC","year":"2020","id":"7Jdvl74EMNCm0P5fq9PJ"},{"format":"","name":"Tilbury House IV","year":"2013","id":"7L67NrnE93IENW8OW03k"},{"name":"2020 Commonwealth Debating Championship","year":"2020","format":"","id":"7XTipAskmVVzvKNKk0Sd"},{"year":"2014","format":"","name":"Reedhoven Cup","id":"7abz3Ipf2RhGUArcqBwg"},{"year":"2016","name":"HWS Round Robin","format":"","id":"7bcIb5yS1YVpFE3hzoDf"},{"name":"Swansea Open","format":"","year":"2016","id":"7bjgBH4vUAY8LwONR9i6"},{"year":"2020","format":"BP","name":"Beihang International Online Debating Championship","id":"7eFEPGI7iZMY9BTHG43T"},{"year":"2013","name":"Mix Team (pro-am tournament)","format":"","id":"7gnlDrExulbBsH6xw0jx"},{"name":"FinEst 100 Open","format":"","year":"2017","id":"7iuaP5vcRAvHJFM4QYmP"},{"name":"UBC Fundraiser Open","year":"2020","format":"","id":"7l98EUanZ85SaCAlZg2X"},{"name":"Royal Holloway Open","format":"","year":"2013","id":"7lMrN2aiwSzD5rzPFwHz"},{"name":"English Open","year":"2015","format":"","id":"7nPyt59LCWbXBYzvRfL4"},{"name":"Hollatz Debates","year":"2017","format":"","id":"7vCURwwkA80JiqPvxSZu"},{"name":"Cambridge IV","format":"","year":"2011","id":"7xqpYA72Sruch4lr5Uzj"},{"name":"Österreichischen Debattier Meisterschaft (Austrian Debate Championship)","year":"2013","format":"","id":"7xtgzuPYqGNaVt3HtVMl"},{"name":"New Zealand BP Debating Championships","year":"2011","format":"","id":"7zFzGfa6wAGs2h8bbVhq"},{"name":"Southampton Open","year":"2013","format":"","id":"81ULNwgwoeeJz6JyR6aq"},{"year":"2020","name":"Eastern Online IV","format":"","id":"81tUVTFSIzBinbpptw4G"},{"name":"World Schools Debating Championship,","year":"2017","format":"","id":"8D4vtkfwfEWbuR8WEkrr"},{"format":"","name":"Cornell Novice Nationals 2019 & Cornell IV","year":"2019","id":"8DernPpRwzBf2YIkESEX"},{"format":"","year":"2019","name":"Leiden Open","id":"8EaRfOcTe47s5VRlQeNv"},{"format":"","name":"HeidelBÄM","year":"2014","id":"8OIcp0isoNfvCv3ZWmkt"},{"format":"","year":"2016","name":"Cardiff Open","id":"8PjX16DCJ3bPRWbiNKNn"},{"name":"Leiden Open","format":"","year":"2013","id":"8QddgLiIoLsA9YscCujR"},{"format":"","name":"2018 Empire Debates","year":"2018","id":"8Vk7pWjDHtGhxQVWidIQ"},{"name":"ULU Westminster IV","format":"","year":"2013","id":"8ayi1XeWc8ZG8jPzG8bt"},{"year":"2019","format":"","name":"Northams","id":"8kobQn0CIdDRIWDlEze2"},{"year":"2014","format":"","name":"IDEA League of Young Voters European Cup","id":"8mQg9HgZBO4ebq8ubmRJ"},{"format":"","year":"2015","name":"Brandeis IV","id":"8umdzosR2LakbIpLGOan"},{"name":"John Smith Memorial Mace England Leg","year":"2012","format":"","id":"8vo3c8Tz12muCmAoWSv2"},{"name":"Thessaloniki WUDC","format":"","year":"2016","id":"92dIEXeOXUVvlcFeGCIr"},{"format":"","name":"Inner Temple IV","year":"2013","id":"980ImkvfswyUVd54XFQd"},{"name":"Heriot Watt Open","format":"","year":"2013","id":"98I1jSQnLhtFnsr8fu0R"},{"format":"","year":"2011","name":"Paris Centrale IV","id":"99Ct9ORyddmNGYGfpDl7"},{"name":"Tech Open","year":"2014","format":"","id":"9G0KckqdiQWitD6Bo6ZK"},{"year":"2011","format":"","name":"Irish Times Debates","id":"9HM0jFxmw9oguRrKeKRC"},{"format":"","name":"Yale IV","year":"2018","id":"9JqIpRhRkA8gulRio4t9"},{"year":"2020","format":"","name":"Axiom Debate Open","id":"9MaCpfb2p23wkk8OOSBf"},{"year":"2011","format":"","name":"Edinburgh Cup","id":"9PjiZBOUlI39GMCrggZs"},{"format":"","year":"2015","name":"KCL IV","id":"9STOHMmWtLnanVavJzB2"},{"format":"","name":"HWS IV","year":"2018","id":"9WoIT6ofG5A9j3MeLxh4"},{"format":"","name":"Irish Times","year":"2012","id":"9ZJdcEMCvdS2u2IeX14g"},{"year":"2019","name":"European Round Robin","format":"","id":"9akG27VqSvbqsF3kGa1l"},{"name":"Huber Debates","format":"","year":"2016","id":"9hmPqfKzlDmhAISeJsts"},{"format":"","name":"Edinburgh Cup","year":"2012","id":"9jfZRYzidDD9sleXlrNL"},{"name":"Birmingham IV","format":"","year":"2012","id":"9l3qvCwMUUUzEdTVXCoM"},{"year":"2015","name":"Leiden Open","format":"","id":"9mfNKBqpq9HzOZ9GltTe"},{"name":"Nottingham Open","format":"","year":"2013","id":"9pAAcbund4BvOXScZxre"},{"name":"South German Regional Championships","year":"2014","format":"","id":"9sZiZ9uPaGSIYSFdM4VZ"},{"year":"2017","format":"","name":"GWU Eastern Championships","id":"9tZJ2IRGMD2GsDxXtVJA"},{"name":"USU Open","year":"2012","format":"","id":"9wxPRUMGICTUrE7xSaCG"},{"name":"DTU Parliamentary Debate","year":"2021","format":"AP","id":"9yPqE2fe1oaHsd7ankOa"},{"format":"","year":"2018","name":"UCLA IV","id":"9yZPq4vkPBjWs9gMF8AS"},{"format":"","name":"Iron Man tournament","year":"2013","id":"A8uW9F7TCtUhRLICBZWb"},{"year":"2020","name":"Gấu Online Debating Championship","format":"BP","id":"ABR5Agcw2iqx5N50gesF"},{"format":"","year":"2015","name":"DWF Manchester IV","id":"AKtcioaPMHcBM5C3fCCP"},{"year":"2014","name":"VUAS Debate tournament","format":"","id":"ARfoyigbkuieCEyKI1GV"},{"year":"2012","format":"","name":"Irish Times","id":"AXjvkzPMQjv20acUm3u1"},{"format":"","name":"McGill Novice","year":"2013","id":"AZDyYLAFE8Mh41BShv5m"},{"format":"","name":"Irish Times Debates First Round","year":"2011","id":"AaBg0lsQxtyD9TCh1WPH"},{"format":"","name":"Joynt Scroll","year":"2015","id":"AbrZ6leGJBXAmv4md2Zw"},{"name":"Asian Online Debating Championship (AODC) - WSDC","year":"2021","format":"WSDC","id":"AhKyFYR1ZI0UjUmZnaXu"},{"name":"National Maidens","year":"2015","format":"","id":"Aic5TDtU01Sp43Neh8N2"},{"name":"Estonian Open","format":"","year":"2014","id":"AsoDjVHcLSyKMQmLkB7S"},{"name":"Gutenberg Cup","format":"","year":"2012","id":"Awa41MBby9wm71OwFQyo"},{"format":"","name":"Oxford IV","year":"2012","id":"B2zJ5QeyI7MVcboS7m4U"},{"format":"","year":"2012","name":"Dutch Open","id":"B63fWPacAJNcBJdaEpVz"},{"year":"2014","name":"Monroe Cup","format":"","id":"BEDaS3pLJHS1T1Xr4txo"},{"format":"","year":"2020","name":"Gwalia Open","id":"BEmSFvOGfvfXfJxFm9a7"},{"format":"WSDC","year":"2021","name":"FLSS Debate Tournament","id":"BPe1MqSgmLovUz7nghmX"},{"format":"","year":"2016","name":"Moscow Open","id":"BXOIn4DQsS3fQg4ZnBFn"},{"year":"2014","format":"","name":"Durham Open","id":"BXqPhfwak2R1kYHV48bp"},{"format":"","year":"2012","name":"BGU IV","id":"Ba2zBwHOYMuoyQZQbecz"},{"year":"2014","name":"Heriott Watt Open","format":"","id":"Ben6dcgLsdnzfbpJrHhp"},{"format":"","name":"2020 Commonwealth Debating Championship","year":"2020","id":"BfEZvkcD4gucg5JLkVfr"},{"format":"","name":"EuroDebate","year":"2015","id":"BhBkit7bGTegIhEEknJU"},{"name":"Botswana WUDC","year":"2011","format":"","id":"Biz1VRjjdg8eWbm4NJr3"},{"format":"","name":"Galway Open","year":"2012","id":"BjyPWHMlV10O4VN8B1XE"},{"name":"BRAC Bank Great Gender Debates","year":"2015","format":"","id":"BsGevifhMX1weZjFgh7y"},{"year":"2013","format":"","name":"Manchester EUDC","id":"BtqBGdAUsTtPKorZOcBX"},{"name":"Birmingham IV","year":"2014","format":"","id":"BvbIXgEeyaIcozyDf6R5"},{"name":"Denver IV","format":"","year":"2018","id":"Bx1uUqHBcAJ7qAZcUwyz"},{"name":"PKU Pro-Am","format":"BP","year":"2020","id":"C09YJyBGrNu3L4IxdHCw"},{"format":"","year":"2012","name":"Baden-Württemberg","id":"C0blbUxGmaQQTDvvJX6D"},{"name":"Schwarzwald Cup","year":"2013","format":"","id":"C1d7IlBx1VcZ4eBTl6cr"},{"year":"2019","name":"Seattle IV","format":"","id":"C4TfAdkoNgavFucgidJK"},{"format":"","name":"Iasi BP Open","year":"2012","id":"C4Vv4FZW36V7ONi9kULg"},{"format":"","year":"2011","name":"John Smith Memorial Irish Mace Round 1","id":"CAD6oBS3ATXaK2MtFMU3"},{"name":"Uhuru Worlds","format":"BP","year":"2021","id":"CBVZREYhjV5bhCHOuWjU"},{"name":"Feminism Open","year":"2020","format":"","id":"CEIVtMmh2XElfzcXXjzn"},{"format":"","year":"2014","name":"TechOpen","id":"CIIwPxm7lqd3hGr5g8JP"},{"year":"2020","format":"WSDC","name":"Vietnam Debate Online (VNDO)","id":"CJKUeBIUibEtZYahoUQV"},{"format":"","name":"GWU IV / US Universities Debate Eastern Championship","year":"2019","id":"CLp8pjuIm6vddMdiBEC5"},{"format":"","year":"2020","name":"Northams","id":"CPeY2HpvmNRx2hlqa30a"},{"name":"World Schools Debating Championship,","year":"2017","format":"","id":"CSqwdDVYJGZSnZO4WcJU"},{"year":"2020","name":"Nghe Tinh Debate Open (NTDO)","format":"WSDC","id":"CbtTNoNzLTvfNvRWmMc2"},{"format":"","name":"Cambridge IV","year":"2018","id":"ChiU8yMbLI2Y2q5rwURP"},{"year":"2016","format":"","name":"Northeast Regional Opener 2016 Brad Smith Debate Tournament","id":"CjeO3WtFoEPJ0YkMQ3T2"},{"name":"French Debating Association Open_Semiss","format":"","year":"2013","id":"CssaPdXkDgBy4xockIGM"},{"name":"Essex IV","format":"","year":"2013","id":"Cx2GIJEWrhOBR3DTErNu"},{"name":"Irish Times Open_Semiss","format":"","year":"2012","id":"D2kdBkcwb5mtCjYVbhFG"},{"format":"","name":"St Petersburg Debating Open","year":"2013","id":"D3NiQxizKJ06MnU4DU06"},{"format":"","name":"New Zealand BP Debating Championships","year":"2015","id":"D6zNi4CBrpZnwXUgBuKG"},{"format":"BP","year":"2021","name":"Pre VBC","id":"D8AtyrmDZV48giPFtym5"},{"format":"","name":"Oxford Women’s Open","year":"2013","id":"D8wxxb57dF9p7tV8985s"},{"year":"2012","format":"","name":"The English Cup","id":"D9jVXR7QB0BrNFTW3MDz"},{"name":"2020 Commonwealth Debating Championship","year":"2020","format":"","id":"DEAT2haT1xJJTqFe7gxF"},{"year":"2015","name":"Cambridge IV","format":"","id":"DFNWZhapl7SHDFBrFsMi"},{"year":"2020","name":"Doxbridge 2: Euros Bungaloo","format":"","id":"DIDaTQVu3sv4iXbqf3eE"},{"year":"1999","name":"SSE Riga Practice Tournament","format":"","id":"DLFJWaIyHnSlvFofovjc"},{"format":"","name":"Indian Schools Debating Society Chennai Leagues,","year":"2016","id":"DNe0c1xNBVoG02MsO66g"},{"year":"2012","name":"Jacobs Open","format":"","id":"DPlum9M6fh8xjiyYGBxO"},{"year":"2012","format":"","name":"French Debate Association Tournament Preliminary Rounds","id":"DSFg77BvC9y4FK5pBVIv"},{"format":"","name":"Link Bate Championship III","year":"2020","id":"DTutOgCItM4x30SyVavv"},{"format":"","year":"2012","name":"John Smith Memorial Mace Open_Semiss","id":"DUuLd7O7acmOlDmqMW5w"},{"year":"2020","name":"Argumentum Open","format":"","id":"DV29K6gIIl6nTiYeWo2j"},{"year":"2017","name":"IIT Bombay IV","format":"","id":"DWR60IgakRS9N3GeNemc"},{"format":"","name":"Roosevelt Open","year":"2014","id":"DXCgscK3BkzAJGRnyZpD"},{"format":"","name":"SSE Riga Debate Academy","year":"2016","id":"DYYa510cEyzz1viLavRR"},{"name":"John Smith Memorial Mace Welsh leg","year":"2013","format":"","id":"DdE19GZVoJqFZ6cqH9rs"},{"format":"","year":"2017","name":"KL Open Challenge","id":"DeCtrDtTjNPkklRZT0x6"},{"year":"2011","name":"IDAS","format":"","id":"DfdqiFdfgcruP1pBNiHK"},{"year":"2013","name":"Dutch National Championships","format":"","id":"DpY0fOiqQ2FcccIfvmaH"},{"name":"2020 Commonwealth Debating Championship","format":"","year":"2020","id":"DqtFvmNFA8oj00cWFgCt"},{"format":"","name":"French Debate Association Tournament Preliminary Rounds","year":"2012","id":"DuId99idlRVvukNA61gw"},{"format":"","year":"2015","name":"Sabanci University International Debate Open","id":"DvsGvQWaYzshd3lSsDGu"},{"year":"2019","name":"Vietnam Schools Debating Championship (VSDC)","format":"WSDC","id":"DxF0p5X2fi9LhbzCFGTd"},{"format":"","name":"Paris V","year":"2014","id":"DzJppUQ7AW941V5iyeui"},{"name":"Warwick IV","year":"2014","format":"","id":"E5iEI92yocDkjANxDoF9"},{"year":"2012","format":"","name":"ESCP Debating Open","id":"E6Cr0CYWyZinduIgwsMe"},{"year":"2011","format":"","name":"Dutch Pro-Am Tournament","id":"E91ZTw8wNjTYuX6RmZCc"},{"format":"","year":"2018","name":"Northams","id":"E91m0mLF7aZRQuWrp2nd"},{"year":"2013","format":"","name":"Yorkshire Novices","id":"EBymp8qhw16qGV9xNiRg"},{"year":"2013","name":"Streitkultur Cup","format":"","id":"EC3TzMXkzGq0DYNMzQdg"},{"name":"Riga IV","year":"2016","format":"","id":"EHPcBnMOPhSjJDJMUqKQ"},{"year":"2014","format":"","name":"McGill Novice","id":"EK7bkCOLaLHjVsqCcikk"},{"year":"2019","name":"Cape Town WUDC","format":"","id":"EP5HDm4G3OfMlciId6YM"},{"format":"","year":"2019","name":"Prague Open","id":"ERxjvEIrmiL3iSgvcfdB"},{"year":"2013","format":"","name":"Moscow Open","id":"EWgHoIX1nWCnY5U0tfPp"},{"format":"","name":"Zeit Debatte Aachen","year":"2013","id":"EdTnzchhKzipTBRxQvXJ"},{"year":"2013","format":"","name":"Deutschsprachige Debattiermeisterschaft","id":"Ef5RtQo9Rr0nt7Nnhncq"},{"format":"","name":"The Galway Open (Irish National Law Debates)","year":"2013","id":"EkR93MYW52GdWTuVsaKa"},{"year":"2017","format":"","name":"Guangdong Debate Challenge","id":"EpANk5V3VQNFWagnktFN"},{"format":"","name":"Coimbra Debate changing Europe round","year":"2013","id":"EpjauMajAi9smGSUAKpC"},{"name":"John Smith Memorial Irish Mace Round 1","year":"2011","format":"","id":"Eq76sG2hBUb3SBiHauo5"},{"name":"Moscow Open","format":"","year":"2012","id":"Er03o2M51g3s6dYyUHHm"},{"year":"2016","name":"JADE College Cup","format":"","id":"ErS5R7GooWYcG88PT27r"},{"format":"","name":"John Smith Memorial Irish Mace Round 1","year":"2011","id":"F0HAuRxNa2zE6NLkMbCI"},{"year":"2018","format":"","name":"NorthAms","id":"F47KSHUhZJWXR9ZbZpek"},{"name":"Yorkshire Novice Cup","year":"2013","format":"","id":"F4R04qPZ5ggkBomuSBNI"},{"format":"","year":"2017","name":"Trinity Open","id":"F966uo3Po2bRFWfFesTz"},{"format":"","name":"UCD Novice Cup","year":"2013","id":"FAvjs63H5vSbEY0I97Zs"},{"name":"SSE Riga IV","year":"2012","format":"","id":"FBVfHrOa3NYALcBMtKIC"},{"year":"2020","name":"Erasmus Rotterdam Open","format":"","id":"FISzpNaGZKCHkhtDdzPp"},{"name":"Schwarzwald Cup","year":"2012","format":"","id":"FIZrOByzWbUCfXyq56hs"},{"year":"2013","name":"Elbe Open","format":"","id":"FJoy56lyo9s1SqE3RvFO"},{"name":"Cogic Debate Online (CODO)","year":"2021","format":"AP","id":"FOAZQcGDy003yv7fx3AI"},{"name":"PEP IV","year":"2019","format":"","id":"FYOADGgnZTJQdU2kOcYb"},{"format":"WSDC","year":"2020","name":"CNH Debate Open (CDO)","id":"FZTHJ19pUWQG2SZNeOvr"},{"format":"","year":"2013","name":"Jacobs Open","id":"FaBy9PfDE8gfy5w00VdM"},{"format":"","year":"2016","name":"Maastricht Open","id":"FaXJZrMIEColDcqtOmli"},{"format":"","name":"Rijeka Open","year":"2015","id":"FcQa3EO91Xucj4ACR1Wb"},{"year":"2015","format":"","name":"Helsinki Open","id":"FfDrngjMOaUCYfZgnHPC"},{"name":"Paris V","format":"","year":"2014","id":"FhEcdMNKDkmugj5LAHZO"},{"name":"Netflix International Debate","format":"AP","year":"2021","id":"FiF24Yc0spiBkvTxiYwD"},{"format":"","name":"Copenhagen Mini Open","year":"2014","id":"FpzYvT6Prqbibn0xYvov"},{"format":"","year":"2017","name":"2017 Pan-American Universities Debating Championship","id":"Frij0G124MRhWQrC5COk"},{"year":"2019","format":"","name":"Manchester IV","id":"Fu8k3vJxi4iJsdZw9d7j"},{"year":"2021","format":"BP","name":"HWS Round Robin","id":"FvCiiwW1VYBNdYW8QTUA"},{"year":"2012","format":"","name":"Rotterdam BP Tournament","id":"FwXwhiD8hyS9iD7pTyRe"},{"format":"","name":"VUAS Debate Tournament","year":"2013","id":"G1nDRe3mbR7XzsaLbAGR"},{"format":"","year":"2016","name":"Hart House IV","id":"G1sEnthTpFCqlrrU3bnJ"},{"name":"NorthAms","format":"","year":"2016","id":"G40265rxZRrwSbZ3fQSJ"},{"name":"French Debate Association Tournament Preliminary Rounds","format":"","year":"2012","id":"GApMimMhk7VINAyAvzKh"},{"name":"Rocky Mountain Championships","format":"","year":"2019","id":"GEF7QfNpKGwIZtimYEsL"},{"format":"","year":"2018","name":"GV Debate","id":"GFxILtaCaIOzQVLckGus"},{"year":"2017","name":"UNESCO Hong Kong SDG Debating Tournament","format":"","id":"GN3wIECpidF8WB3WC2l0"},{"format":"","year":"2017","name":"2017 Pan-American Universities Debating Championship","id":"GP6DSp9r38GxbwnpbuSG"},{"name":"TechOpen","year":"2014","format":"","id":"GQHyt5LLo1JCczk2VO3C"},{"name":"John Smith Memorial Mace","year":"2012","format":"","id":"GQttZR3FjAIw20Ek36nP"},{"year":"2017","name":"cornell novice nationals and tournament of love","format":"","id":"GYPEbEw4WmOoMEKfU2ev"},{"name":"Roosevelt Academy Open","format":"","year":"2013","id":"GeB6bvqs5FhYEP99Q8Ax"},{"year":"2012","name":"DCU Open","format":"","id":"GfEZYNzXPpqDU3CX6qxi"},{"format":"","year":"2016","name":"John Smith Memorial Mace - Scottish Finals","id":"GmjJJG76pNtZmm8B1BDF"},{"format":"","name":"2020 Commonwealth Debating Championship","year":"2020","id":"Gmyq3rZboguOexQqcTpC"},{"name":"Dutch Mace","year":"2012","format":"","id":"GnB4dJJK9KmnatnkLGmS"},{"name":"Stuttgart IV","year":"2011","format":"","id":"GwkssAj8zxpqlXlKBDqa"},{"year":"2018","format":"","name":"KCL Open","id":"Gx29hnXeBrSjBZrrDKx8"},{"year":"2015","name":"Brad Smith Debate Tournament","format":"","id":"GyiwbDg4TBAWCn1HmjKi"},{"format":"","year":"2020","name":"India Debate Open AP","id":"H2Xg2NvZoEwZtgc8tzmz"},{"format":"","year":"2014","name":"Brandeis IV","id":"H2ZQZD4EPmxpktxvJnUz"},{"year":"2013","name":"John Smith Memorial Mace International Final","format":"","id":"H3dcSFbp1SVwD6yHKKn5"},{"name":"Copenhagen Open","format":"","year":"2015","id":"H4i4RR7JXk14xDRe7PUX"},{"year":"2019","format":"","name":"Berkeley IV","id":"H6MeeIis6pg2gQbgEyuB"},{"name":"Earlsfort Open","format":"","year":"2013","id":"H8XCoxhHfhkNSTYxwR42"},{"year":"2020","format":"","name":"IBA DU Nations League","id":"H8ZxEfGXutRQeJ3mqisV"},{"name":"McMaster Pro-Am","format":"","year":"2013","id":"HI456ixwVeFxETFg4P5i"},{"name":"2020 Commonwealth Debating Championship","format":"","year":"2020","id":"HKEDawKRIPEU6zhH7C09"},{"name":"World Schools Debating Championship,","format":"","year":"2017","id":"HKF8MIQqxsS0lUxOPSZP"},{"year":"2015","format":"","name":"Cardiff Open","id":"HQ85pr5BC7hv3GPpOuzX"},{"format":"","year":"2012","name":"Irish Mace Third Round","id":"HSWhDmqGrwjYl65WKfD4"},{"name":"Süddeutschen Regionalmeisterschaft","year":"2012","format":"","id":"HXAIZhpnUdFYuB97wMF8"},{"format":"","year":"2013","name":"Denny Crane","id":"HbzzxzNaEfw54UvTulVq"},{"format":"","year":"2012","name":"Irish Times Open_Semiss","id":"HcG4OhcCxhf0AhRfppdz"},{"name":"Newcastle IV","format":"","year":"2017","id":"HcngLxXLU8ahxFRQkeYc"},{"year":"2020","name":"Jurassic IV","format":"","id":"HjQJA65fZ9igHKO8DLAP"},{"format":"","year":"2016","name":"Yale IV","id":"Hk8f1ASR1JhJdfu9tmfK"},{"format":"","name":"HWS Round Robin","year":"2015","id":"HlR3H86XBK4mqvL9v5HT"},{"format":"","year":"2013","name":"Yorkshire Novices","id":"HnDEyI86o4prwNcEBAk9"},{"name":"Commonwealth Debating Championship","format":"","year":"2020","id":"HoLiUjyGmwX7JSxXmTh1"},{"year":"2019","format":"","name":"Campus-Debatte Wien","id":"Hpsxcd5Zzu5xq9ehtKkj"},{"year":"2019","name":"UDP Open","format":"","id":"Hq4qmpVpWAzn16SzuUU8"},{"format":"","name":"French Debate Association Tournament Preliminary Rounds","year":"2012","id":"Hs8Pf299k9zI88DirL1m"},{"format":"","name":"Suzhou Debate Open","year":"2020","id":"HtADLvDpWQsx5qtLh5A9"},{"format":"WSDC","year":"2021","name":"Lychee Debate Open","id":"I4LkoGhDJmtXsINMJVjW"},{"format":"","name":"Restricted Mara Open","year":"2020","id":"I5iTcVABscgCPPKzr8Oa"},{"name":"Irish Times Debates First Round","format":"","year":"2011","id":"I78AnCES9YFYPvZ3ZceL"},{"year":"2011","format":"","name":"John Smith Memorial Irish Mace Round 1","id":"I7USoRn29eHZxBbIacwF"},{"name":"Bristol IV","year":"2012","format":"","id":"IIWebjlC0qunFyLmEiVa"},{"format":"","name":"Dutch Mace","year":"2014","id":"IK2tQhXBb3v4DJKRH1Ve"},{"format":"","year":"2014","name":"West German Regional Championships","id":"IKVZuvI9noj2HK4GNxgS"},{"year":"2017","format":"","name":"cornell novice nationals and tournament of love","id":"IRPpMm8SikKsWbeXJoF6"},{"format":"WSDC","year":"2020","name":"Hong Kong Debate Open","id":"IXq1CdgyiKmkyEDJURrV"},{"name":"Northams","year":"2019","format":"","id":"Ifck8UULMyosbqBxjV4D"},{"name":"UCT 150th Year Open","year":"2015","format":"","id":"IgBrZRMArYLwB0oVtcRa"},{"name":"Irish Times","year":"2013","format":"","id":"IiQjUorq4oKBnvyHTPAF"},{"format":"","year":"2014","name":"Imperial IV","id":"IliTD9CbISxS4XPApnIH"},{"format":"","year":"2012","name":"French Debate Association Tournament Preliminary Rounds","id":"ImuhvMchXdzzNUcXCHaf"},{"name":"Belgrade EUDC","year":"2012","format":"","id":"IpWyfCcksctR86jKX66g"},{"name":"SDA Novice Competition","year":"2013","format":"","id":"IpxNM87k556VVsS2JAPu"},{"year":"2014","name":"Copenhagen Open","format":"","id":"IrZL7r0XTyBpGGSAYVYR"},{"format":"","name":"Red Sea Open","year":"2012","id":"Iv1dWODCjV8TBafyTxx7"},{"year":"2016","format":"","name":"Dutch Mace 2016 (The Netherlands)","id":"IxT6Qaz01G1Db87fU73z"},{"format":"","name":"Earlsfort Open","year":"2014","id":"Izblbv0LXDRNyAVA9nPW"},{"format":"","year":"2014","name":"John Smith Memorial Mace Scotland","id":"J93VPG9GBuiCPKV5D0Ym"},{"name":"SOAS Open","format":"","year":"2012","id":"JA7aghUhZy7G7yhivxxG"},{"format":"","name":"MIDP Round Robin","year":"2020","id":"JDfeMpzRWbEVXloSgRZp"},{"name":"John Smith Memorial Mace England Leg","year":"2012","format":"","id":"JGSON0BI5WKUG1foBWZu"},{"name":"Northams","format":"","year":"2018","id":"JHTJrAf6gypc7IMz6BKK"},{"name":"Cambridge Asia BP","year":"2021","format":"BP","id":"JHo8pIpzQxzUKHUwVDFf"},{"name":"SOAS IV","format":"","year":"2014","id":"JJmcUH5Gil0nuJObmDP8"},{"name":"Oxford IV","format":"","year":"2016","id":"JLyF99Vg0hk3hhYCwEgp"},{"format":"","year":"2013","name":"DDG Masters Cup","id":"JTOMyeCSk6IujHBgAOMi"},{"format":"","name":"Welsh Novices","year":"2013","id":"JWLA0D1GfpyCkzoL1qX9"},{"name":"DAV IR Cup","format":"BP","year":"2021","id":"JaZQ7l5B4R6smBKTdFQJ"},{"year":"2012","name":"Imperial Open","format":"","id":"JcJtvTXBcNJ3kYX5noH9"},{"format":"","year":"2007","name":"New Zealand BP Debating Championships","id":"JdCT4CooyPOkRsmbNNLg"},{"format":"","name":"2017 Pan-American Universities Debating Championship","year":"2017","id":"Jj5WQoODpBZfSpiLpunG"},{"name":"ICYD- Oxford Round","format":"","year":"2016","id":"Jl23y0GShc9Ja7NTPZJw"},{"format":"","name":"Moscow Open","year":"2011","id":"JlXdLu3VijXjgOdO21tX"},{"year":"2020","format":"","name":"Northams","id":"JmSlDha5icJnagTu05Xz"},{"name":"Empire Debates","year":"2018","format":"","id":"JnSWyQ6SCHL0BH7wjdBS"},{"name":"2020 Commonwealth Debating Championship","year":"2020","format":"","id":"JpB6HSOptRKf1GqASVNf"},{"year":"2020","name":"2020 Commonwealth Debating Championship","format":"","id":"JpGhqm3OZegkLhSo4v2D"},{"name":"John Smith Memorial Irish Mace Round 1","format":"","year":"2011","id":"JrNElOwOQBu2Jo1DTeTP"},{"year":"2020","name":"The Novice Debate","format":"","id":"JsJHH6odeVuMVnQ8A5bN"},{"format":"","year":"2012","name":"Paris IV","id":"JsQrI80phRuvDHr37q5N"},{"name":"Cicero Debattoernooi","year":"2011","format":"","id":"JtHb8gJ24LeJcHq82rm5"},{"year":"2012","name":"Budapest Open","format":"","id":"JvpXQ1DYmWydXXgsnZ74"},{"format":"","year":"2011","name":"John Smith Memorial Irish Mace Round 1","id":"JwMx9Wifyjx3NBsULxeV"},{"year":"2013","name":"Centrale IV","format":"","id":"Jy8kbmlTXWgf8pRg3dUy"},{"name":"Cork Invitational","year":"2013","format":"","id":"JzS0MHRn0Mb2AaYiEq5h"},{"name":"KCL IV","year":"2011","format":"","id":"K2iCOiuVrS3D8RzjGpNe"},{"format":"","year":"2012","name":"French Debate Association Tournament Preliminary Rounds","id":"K6bb1YnBkB6ttVidu92q"},{"name":"DGBDS Mace","year":"2020","format":"","id":"K6vtfx7dBNzsAtTkNiF1"},{"format":"","name":"Drishty English Debate Championships","year":"2015","id":"K8mVAYwcb9xlXvnmmJBY"},{"format":"","year":"2014","name":"TechOpen","id":"K9wl7TuG4hPaZeHD1ZlG"},{"year":"2021","name":"Vietnam BP Championship (VBC)","format":"BP","id":"KE7jdAyW9az9nKVb9FMV"},{"name":"DAPDI","format":"","year":"2013","id":"KEJHhRHDE4CXyVyy0Jy8"},{"format":"","year":"2014","name":"Royal Holloway Open","id":"KErVXbqRahyWD7ZB1Q1m"},{"name":"Aztec Invitational","format":"","year":"2016","id":"KMM87DnmWFjc4UzTdkjp"},{"format":"","year":"2020","name":"Asia E-Debate Challenge","id":"KMhBpmj1LWPj5LN0aFUK"},{"name":"Nanjing Debate Open","year":"2021","format":"WSDC","id":"KTeMrrauFpZYvjtBUkLJ"},{"format":"","year":"2014","name":"Yale IV","id":"KUgzKY5FHtox24CaztLJ"},{"year":"2020","name":"Northams","format":"","id":"KVfkfHWHDrxL45hQlBg5"},{"format":"","name":"BGU IV","year":"2013","id":"KauhYz2zVxnSCnoC8XMr"},{"year":"2020","name":"NorthAms","format":"","id":"KcPlJUErwN6d1MPmff00"},{"year":"2020","format":"","name":"2020 Commonwealth Debating Championship","id":"KctpT2GaRXN4pO1dhEK2"},{"format":"","name":"The Lyceum Debating Championship","year":"2019","id":"Ke3vqa3ZpQMmG6mDtn1z"},{"year":"2012","name":"John Smith Memorial Mace Open_Semiss","format":"","id":"Kktpk1ZozoyUpau0PiPh"},{"format":"WSDC","name":"Hong Kong Schools Debate Open (HKSDO)","year":"2020","id":"KncW7pH1nDIom3xK89VG"},{"name":"French Debating Association Final","year":"2013","format":"","id":"Kpa8GUvqSrTVoNVUqmI4"},{"name":"New Zealand BP Debating Championships","year":"2016","format":"","id":"KpispxU2MtVt41R9j5bV"},{"year":"2013","name":"DCU Open","format":"","id":"Kv7YNlz47VitorsH2zY7"},{"year":"2016","format":"","name":"John Smith Memorial Mace - Scottish Finals","id":"Kw7Jrn2Gb5VDcL0mtDdz"},{"year":" 2.0","format":"","name":"Tilbury House Online Ope","id":"Kxt96b4kkhkn4Z57xwJi"},{"name":"Feminism Open","year":"2019","format":"","id":"L0ovxzciizWhfK3fHJU8"},{"name":"York IV","format":"","year":"2016","id":"L5MIrW7phE11xSIVutdB"},{"name":"Leiden Open","year":"2016","format":"","id":"L8JGtnnMnhA8w9ooOx0S"},{"year":"2012","format":"","name":"Aghveryan IV","id":"LDEsIQgDXxAdqGHF4x4e"},{"name":"Vienna IV","format":"","year":"2013","id":"LH17DUUbXDstAFfMNJyf"},{"name":"Bodden Cup","format":"","year":"2013","id":"LHNbcjmFANvMo9zTZOWN"},{"format":"","name":"The Grand Spar August","year":"2020","id":"LJpNoy6NIxtIr7pXj25B"},{"name":"Potsdam Puls Punk","format":"","year":"2013","id":"LK6lSp8gpBGbLjuv9caV"},{"format":"","year":"2014","name":"Nottingham Trent Open","id":"LRHTkoiYpBfYWWuS1rtT"},{"format":"AP","name":"Trường Teen","year":"2020","id":"LSMut8kvHk1gfEyOYYPt"},{"name":"Estonian Pro-Am Tournament","year":"2011","format":"","id":"LSZbchiNq33jtWsW0vWQ"},{"name":"Belgrade Open","format":"","year":"2016","id":"LYTCjoO4snxI4nOKTVZB"},{"name":"John Smith Memorial Irish Mace Round 1","format":"","year":"2011","id":"LZQU5UyRxxh4Q3tKwqqP"},{"format":"","name":"ISIC","year":"2016","id":"LbgZumsAetYW4T3JVQrG"},{"format":"","name":"Brandeis IV","year":"2013","id":"LczIO0anMv6dKnbpRYYr"},{"year":"2011","name":"Irish Times Debates First Round","format":"","id":"LfmEJUAALwPg7nKeZCnt"},{"name":"Split Open","year":"2013","format":"","id":"LjEl8Sog63zZMpDhsInz"},{"format":"BP","year":"2020","name":"Asian Online Debating Championship (AODC) - BP","id":"LlsxibXteGBGML9aitY2"},{"name":"Mitteldeutschen Regionalmeisterschaft","year":"2012","format":"","id":"LnHXZbgsbq5JIVU7k21X"},{"format":"","name":"Edinburgh Cup","year":"2014","id":"LuNDiT9YYZhQScUmMX82"},{"name":"WW III","format":"","year":"2019","id":"M23yN5DieB5FwQ5wfjDl"},{"year":"2013","name":"Open de Debates de Lisboa","format":"","id":"M3ApDfztxP5NRoAAxKJP"},{"format":"","name":"French Debate Association Tournament Open_Semiss","year":"2012","id":"M5Wyeo5Nqh8J5u0z1RQf"},{"format":"","name":"2020 Commonwealth Debating Championship","year":"2020","id":"MBN5gXU86zIZchDN1v98"},{"name":"Alternate Pre-ABP","year":"2020","format":"","id":"MIEMFyC8nYMlqXU4wtOC"},{"name":"America's Cup","format":"","year":"2019","id":"MIGnM2R39W5ZblVNkRTp"},{"year":"2017","format":"","name":"Cambridge IV","id":"MIrEXPHnAIOpqQw6kxky"},{"name":"China BP","format":"","year":"2018","id":"MKOx1AvBmfWL7cHrRXg2"},{"year":"2012","name":"Cambridge IV","format":"","id":"MKnFsrIKq8equaMluK21"},{"format":"","year":"2018","name":"Brandeis IV","id":"MNBafFvHXt5WwIet1zGa"},{"name":"IDEA-DTU","format":"","year":"2013","id":"MPR74LYpg8Ru6paM45U9"},{"year":"2020","format":"","name":"Zagreb Random Pro Am","id":"MSWulSxGMLEhqYJrBR62"},{"name":"Jerusalem Open","format":"","year":"2013","id":"MSkvKRc0Dq8mooTLp6T8"},{"year":"2013","name":"Beginner Tournament Mainz (DCJG)","format":"","id":"MULqjXPKLke2z3n3Aafx"},{"year":"2011","format":"","name":"Red Sea Open","id":"McARyCvnNLDmzAARI8jE"},{"year":"2013","format":"","name":"Riga Debate Academy","id":"MeKByJc38Yt4otefONa7"},{"format":"","name":"USUDC","year":"2019","id":"MgpFX31hoBasrUiOV7Eu"},{"name":"Cambridge Women's Open","format":"","year":"2015","id":"Mi4A41wAaOQFffgxIvSR"},{"format":"","name":"Yorkshire Novices","year":"2013","id":"MkzOZLNW0GYmMSfHLxvL"},{"name":"Birmingham IV","format":"","year":"2018","id":"Mp1zDBiaN3PYnRnjPVIk"},{"name":"Paris Open","format":"","year":"2013","id":"MqWoP2HpVv77T14aPCqR"},{"name":"Cardiff Open","year":"2014","format":"","id":"MyZkPsGPMuQ4XmFzJLVW"},{"format":"","name":"McGill Novice","year":"2015","id":"N6GD6E8q4Mbzt8Xexnyy"},{"name":"Zeit Debatte Tübingen","format":"","year":"2012","id":"N8WiUFJpvPmLaaYYsbsD"},{"format":"","name":"Shanghai International Debate Open","year":"2018","id":"NBT7RwLHeAApXuOtrQpt"},{"format":"","year":"2014","name":"Marburger Geschichte Turnier (History Tournament)","id":"NDBMTXQSiGk8gHdwlPou"},{"format":"","year":"2013","name":"Belgrade Open","id":"NE3BXrt6CASI2EExAgUk"},{"format":"","year":"2020","name":"LUMS IV","id":"NHUypnZQCfkPD98j8TYR"},{"format":"","year":"2016","name":"Warwick IV","id":"NMqOqSd4sZ95JVU4Dia8"},{"format":"","name":"Debattoernooi Utrecht (DTU)","year":"2012","id":"NNES6CXrTQ3wDbdnrNDb"},{"format":"","name":"Zagreb EUDC","year":"2014","id":"NYyJaJXo1SigW6G8Y1Lm"},{"format":"","name":"York IV","year":"2018","id":"NbIgaSiRmXdh3BAZ88Vm"},{"format":"","year":"2016","name":"Chittagong University IV","id":"Ns60Gy3xxrtFcpflRpTk"},{"format":"","name":"Lockdown.Exe Debate League","year":"2020","id":"NtnveNmZosTMD9TU0qA8"},{"format":"","year":"2011","name":"John Smith Memorial Irish Mace Round 1","id":"NtoAZ8UAJde8CWGv7gD2"},{"year":"2011","format":"","name":"Irish Times Debates First Round","id":"NupXZffSiwwfn3tUttxQ"},{"year":"2012","format":"","name":"NK Debatteren","id":"NxB6ercynISK3sISgci5"},{"format":"","year":"2012","name":"Zeit Debatte Magdeburg","id":"NyCp19C1AzxXzCUQLio8"},{"format":"","name":"Macquarie Open","year":"2020","id":"Nzien6R9RXvOTrNMJsza"},{"year":"2014","format":"","name":"Reading No-Notes Open","id":"O0uPnjb8M1dIGLUmO4NP"},{"format":"","name":"Sheffield IV","year":"2013","id":"O8G3JSrsKEY7mvvg6szT"},{"name":"English Cup","format":"","year":"2013","id":"O8PsW6uDBzwzQZ3zO447"},{"year":"2012","name":"UK Debate Challenge","format":"","id":"OAcOsXro6vLkyCebuX4n"},{"year":"2012","name":"Mykolas Romeris IV","format":"","id":"ODzhGSyV71DaUGhZEWGT"},{"format":"","name":"Riga mini","year":"2017","id":"OFi0KPPvhID0XipYIiiD"},{"format":"","name":"Denver IV","year":"2017","id":"OJi1hwkxrfVjCOf6ZDRH"},{"format":"AP","name":"Vietnam University Debating Championship (VUDC)","year":"2021","id":"OLVGf3rE3KKirerr2vyk"},{"name":"Northams","format":"","year":"2020","id":"OOIJIK4aEbdBmLZr7Btn"},{"year":"2014","format":"","name":"Bucharest Cup","id":"OQmCXCvJatQN0zG3lklx"},{"year":"2013","name":"New Zealand BP Debating Championships","format":"","id":"OY8sAGz8SAjQpWA2PicY"},{"year":"2012","format":"","name":"Israeli Nationals","id":"OZYKzIzIg9zKy9OOiaP3"},{"year":"2018","format":"","name":"Northams","id":"OfKlQHDPnuRdygBYyxst"},{"name":"Southern Debate Open (SDO)","format":"AP","year":"2020","id":"OqQWJjNQBpGOYwMntw3z"},{"format":"","name":"McMaster Pro-Am","year":"2015","id":"OqjcHyR2p27nlpvjQ5oq"},{"name":"Oxford IV","year":"2014","format":"","id":"OuMJNWJJy88lWhwWuJmy"},{"name":"Münster Ironman","year":"2012","format":"","id":"OwplBrh3NruD1YwoexiY"},{"format":"","year":"2014","name":"TechOpen","id":"OyPWYXbyozRrSWGqNAuH"},{"name":"WSDC","format":"WSDC","year":"2019","id":"OyqUfVFCTQ5A8iecmNK1"},{"name":"John Smith Memorial Mace Final","format":"","year":"2012","id":"P1GDtvIjHvhmQ8b6Pr2l"},{"name":"Brad Smith Debate Tournament","year":"2017","format":"","id":"P4io30tN10TYMqGkj2sX"},{"year":"2013","name":"Österreichischen Debattier Meisterschaft (Austrian Debate Championships)","format":"","id":"P8SCFcHieZEY08DNNZr6"},{"name":"Joynt Scroll (NZ Prepared Debating Tournament)","year":"2018","format":"","id":"PBWlCT9ukKbQNbBnmA0w"},{"name":"Northams","year":"2020","format":"","id":"PCeZGc5wagGwlXKaEq2k"},{"format":"","name":"Lancaster IV","year":"2014","id":"PEAicxOTn0uGyCAGiXLX"},{"name":"Rijeka Open","year":"2014","format":"","id":"PFH5XRScthpwd2dxC2T5"},{"year":"2018","format":"","name":"Seattle IV","id":"PGbz2bx1wifAEJU64jdo"},{"year":"2011","name":"EU-China Youth Debate Tournament","format":"","id":"PIBLfC67BXtpF7r3aqIV"},{"year":"2013","name":"Bucharest Universities Debating Cup","format":"","id":"PNpMzinCvz3Z9bTJfV9t"},{"name":"Tilbury House Online Ope","year":" 2.0","format":"","id":"POGM6qlN8eBRPa46pWzg"},{"format":"","year":"2014","name":"BBU Open","id":"POdYlP5an146yzuVI1Xg"},{"year":"2014","name":"Chancellor's Cup (Queen's University)","format":"","id":"PRCVo2dP9UPdRU9tVW31"},{"year":"2016","format":"","name":"Imperial Open","id":"PULmrzx6k00EzEt7BxfG"},{"name":"Birmingham IV","format":"","year":"2016","id":"PhJT1xhigiWcZot2PdLn"},{"year":"2018","format":"","name":"Northams","id":"PhbSW1KwgKGI9yIvT2fj"},{"year":"2017","format":"","name":"Pan-American Universities Debating Championship","id":"PlnSjN9HlvUnEh6EVkm9"},{"year":"2020","format":"","name":"Yale NUS Pro Ams","id":"Pr7RhJp1TWbTZsqRvQt4"},{"format":"","year":"2020","name":"Pop Culture Grand Prix","id":"Pt1Z2dTdUinRviVucbZA"},{"name":"ASDO","year":"2020","format":"","id":"Q8FD3CioEeXKgMlwBG6R"},{"year":"2012","name":"French Debate Association Tournament Preliminary Rounds","format":"","id":"Q9yUZkjffW9pt2MuU6JB"},{"format":"","name":"French Debate Association Tournament Preliminary Rounds","year":"2012","id":"QC46rEiRKX5YkrnlsFnc"},{"format":"","name":"US Western Regional Championship","year":"2018","id":"QDGMrdrzlFCxVT5WcqNn"},{"format":"","name":"UL Open","year":"2016","id":"QH8qP4fqpVb4nMsZXwxw"},{"format":"","name":"John Smith Memorial Mace Scotland","year":"2014","id":"QUyH79WGCYFNdrpNBbcJ"},{"name":"York IV","year":"2013","format":"","id":"QV74kB5iA6iDiqLCNz2F"},{"year":"2014","format":"","name":"Budapest Open","id":"QVeTcZONRdDbH5LSNeSf"},{"name":"SSE Practice Tournament","year":"2015","format":"","id":"QVxXxjR8GyCAclYLIVU9"},{"name":"Oxford IV","year":"2015","format":"","id":"QZvopTthxxEkyvHXmzp3"},{"year":"2019","format":"","name":"Pan American Debating Championships","id":"QePDCf8cQ2AX4XfcvR3T"},{"format":"","year":"2012","name":"John Smith Memorial Mace England Leg","id":"QgxXkrRl6pIK3naJshhM"},{"format":"","name":"Zeit Debatte Mainz","year":"2014","id":"QjQ9aMJIggiNR9zYImnN"},{"year":" 2.0","format":"","name":"Tilbury House Online Ope","id":"QqXyZf9G2OJGqhEoWtjY"},{"year":"2013","name":"English Open","format":"","id":"R2D7uxDuM6stYlRyK9ev"},{"name":"John Smith Memorial Irish Mace Round 1","year":"2011","format":"","id":"R6Phl8s3K2xhtTAyfIcC"},{"name":"Estonia Open","format":"","year":"2012","id":"RA6EqhjHK7wF8NHgzThB"},{"name":"ICYD - Oxford Round","format":"","year":"2016","id":"RBRYOdP46mh5ouOqVUWX"},{"format":"","year":"2014","name":"Irish Times Final","id":"RDNcZnvGFAsMrxYMLvRz"},{"name":"BY Online Debate Open","year":"2021","format":"BP","id":"RF6WJZV8JYPwFqSpNxlR"},{"year":"2013","name":"SOAS invitational","format":"","id":"RKQT9j6jX9NRbleAmjmy"},{"format":"","name":"Cardiff Schools","year":"2015","id":"RLX3o4g1PsjOGvcOJBWD"},{"name":"Ka Paio Online Debate Open","format":"WSDC","year":"2020","id":"RNJanNDlcAfI2uIKx9LF"},{"year":"2014","format":"","name":"Heart of Europe BP","id":"RPKNKQNkycR35T4aIzhw"},{"format":"","year":"2013","name":"John Smith Memorial Mace Welsh leg","id":"RTq0QfZiceInbSrJW91q"},{"name":"cornell novice nationals and tournament of love","format":"","year":"2017","id":"RXlDv1epD2Sx1XVFaabg"},{"name":"Guindon Cup (University of Ottawa)","format":"","year":"2013","id":"RautsrmlhwL2BBMyTRVG"},{"year":"2011","name":"Streitcultur Cup","format":"","id":"RcPsgEaIchl07oq9iFxn"},{"name":"Decemberac (beginners tournament)","format":"","year":"2013","id":"RlGrdg8aVMD5XQVuPN3W"},{"name":"SOAS Open","year":"2015","format":"","id":"RlKeUHJPWxI30cOSUIu3"},{"name":"PEP IV","format":"","year":"2017","id":"RpQnqbHAxB8fhWBQcnaj"},{"name":"Joynt Scroll (NZ Prepared Debating Tournament)","year":"2018","format":"","id":"RqUMqdnIsu8fZXuqhlnC"},{"format":"","name":"NZ Easters","year":"2017","id":"Ryhdb4JOJYP96e5oa49b"},{"format":"","name":"East Coast Asians","year":"2020","id":"S2mG18EWYdh2bPEadyd9"},{"name":"Simpsons Open","year":"2013","format":"","id":"S3X3UeH5zIQsGlSEttfv"},{"name":"Cambridge IV","format":"","year":"2019","id":"S5UzkuOf9XN6BnhOSbRC"},{"year":"2017","name":"Cornell Novice Nationals","format":"","id":"S8L2dAmi0YWoG48OtAbx"},{"format":"","year":"2020","name":"Northams","id":"SBxBETVPCXb1qyrHrRBZ"},{"format":"AP","name":"Hòa Vang Debate Online","year":"2020","id":"SE4KfMNAU58WSM6yajEF"},{"format":"","year":"2017","name":"Mexican Open","id":"SGi6PbXyMszZpWzTP1JN"},{"year":"2019","name":"Budapest Open","format":"","id":"SGpBjVPnJkFrJB0hnxYv"},{"format":"","name":"Irish Times Debates First Round","year":"2011","id":"SHwkVGxIVZUJ7yolV3k6"},{"name":"Canadian British Parliamentary Championships (@ Western University)","format":"","year":"2014","id":"SIrskBVMCwGNCZibcnP1"},{"format":"","year":"2017","name":"Leiden Novices' Tournament","id":"SJ2vZr9NzMvtMMGarKue"},{"name":"Open de Debates de Lisboa","format":"","year":"2013","id":"SJjFHdvMgt1JzOZ21x2F"},{"format":"","name":"The Debaters VTV7","year":"2020","id":"SPjgjrpUBIPs6H9gmx9P"},{"year":"2013","name":"SDA Open","format":"","id":"STaEp3vuXBuTT2bP0vgU"},{"name":"Rotterdam Open","format":"","year":"2015","id":"SU8WsMguqtUiTUErBeo7"},{"format":"","year":"2013","name":"Zeit Debatte Frankfurt","id":"SYgBNIxUimP727BA2md3"},{"year":"2012","format":"","name":"UCL President’s Cup","id":"Sdm6UfNcXB7Ppj4BkdLe"},{"format":"","name":"NTU Debate Online Open","year":"2020","id":"Sf18naS6qmQzDSIMNRFV"},{"format":"","year":"2020","name":"The Debate Open","id":"Sf5YtAJo1vVmULRLSMAt"},{"name":"Borneo Online Debate Championship","format":"","year":"2020","id":"SfEIDDzpv3y19flsWYFH"},{"format":"","year":"2014","name":"Aberystwyth Open","id":"ShdZSmrzSQfbl0RYDnj8"},{"name":"Nottingham Open","year":"2014","format":"","id":"SjQ6g8g2URks9WV96X0G"},{"name":"World Schools Debating Championship,","format":"","year":"2017","id":"Sqzp2Ub87kLbRRehMrbP"},{"format":"","year":"2006","name":"SSE Riga IV","id":"SxA6fvGmUbCEyPLjj4Sw"},{"year":"2017","format":"","name":"cornell novice nationals and tournament of love","id":"SxSNoUo6XihSS70vZq9f"},{"format":"","name":"Tilbury House Online Ope","year":" 2.0","id":"T8PP46KEPKf3a4Z6tRlt"},{"format":"","name":"Canadian British Parliamentary Championships (@ York University)","year":"2015","id":"TAVBVNzO0c2PrQ44iAyC"},{"format":"","year":"2014","name":"Paris V","id":"TDbLOtwTw5VJzgVYPiY1"},{"format":"","year":"2015","name":"Israeli Open Championship","id":"TMBmC1MQwez0ZjQdNyHU"},{"year":"2019","name":"Vienna IV","format":"","id":"TMUPfAyolz9JkKMmWlLC"},{"name":"Sheffield IV","year":"2016","format":"","id":"TN94ucwzVJ2xKpp2fcrc"},{"year":"2014","name":"Tilbury House","format":"","id":"TPp4G8lciZrkipphcyZG"},{"format":"","name":"BDC Pro Ams","year":"2017","id":"TSpa3WXkfFl9nQFbVbmi"},{"name":"Northams","year":"2019","format":"","id":"TWgRdJe0dPYvz3OV3EAD"},{"format":"","name":"Asia Queer Open","year":"2020","id":"TXUiH5ezPBItq39Het98"},{"format":"","name":"KCL Online Open","year":"2020","id":"Te8CYa0tImwgHXE99O7W"},{"name":"SOAS IV","year":"2011","format":"","id":"Te8RVa4tAIQJaY0sFp5C"},{"name":"Northams","year":"2018","format":"","id":"TfYVaHWovETdTEoGtncA"},{"year":"2014","format":"","name":"Paris V","id":"TgsxLENdxHXypJyf1b9s"},{"year":"2014","name":"Jena Frauenturnier (Women’s tournament)","format":"","id":"Tix5aGpgWpddb7Va0oe6"},{"name":"Masters","year":"2011","format":"","id":"TjdO3rhaUn53D48P0jlp"},{"format":"","year":"2018","name":"2018 Empire Debates","id":"Tld20yG8fgY3qJMYx0x0"},{"year":"2018","format":"","name":"Pan Pacific Debate Championship","id":"TmlbBgqJnPvT2UGB0Lbb"},{"year":"2017","name":"Empire Debates","format":"","id":"TpCKtGVry2w5xrgb90jZ"},{"name":"John Smith Memorial Mace Scotland","format":"","year":"2014","id":"TpdaIwCJa5zegbBS3FUQ"},{"name":"Joynt Scroll (NZ Prepared Debating Tournament)","year":"2018","format":"","id":"TpuaUDJ4HmSMFKPutaTo"},{"name":"Mediterranean Universities Debating Championships (Koc University)","year":"2012","format":"","id":"TtPU6Lwr9qKhUvLMeyVD"},{"name":"DDG Master’s Cup","year":"2012","format":"","id":"TtoxDZeWyCKcOginS4mH"},{"year":"2012","format":"","name":"Iron Man BP Tournament","id":"Tu7KRlumwIMZzCczqcGG"},{"name":"SEC Schools Championship","year":"2020","format":"","id":"TwRuBI9R9WS6estcrif9"},{"name":"World Schools Debating Championship,","year":"2017","format":"","id":"TxkvvuzJpDZDYcvwLjod"},{"name":"Patras Open","year":"2013","format":"","id":"U2WbXKmpxuh7OC6qZ1zX"},{"format":"","name":"GUU Womens","year":"2016","id":"U5BIn9cy3EEIjFx2mHye"},{"year":"2014","name":"Bristol Open","format":"","id":"U5yvbgLSUvue8vCmib81"},{"year":"2014","name":"TechOpen","format":"","id":"UFs35obrljBpKjOpH96B"},{"format":"","name":"Helsinki Mini","year":"2016","id":"UFyGWwwkKkZKyD4oHYoI"},{"year":"2013","format":"","name":"SdDUP Debate changing Europe round 1","id":"UHsyrV6WVu0fgh5gHyPf"},{"name":"Alternative Open","year":"2012","format":"","id":"UPn4syqdx9T0fJyHm2Ej"},{"year":"2014","name":"Turku Open","format":"","id":"URJkYB098qcNUnuKdfHJ"},{"name":"Southampton Open","year":"2014","format":"","id":"UT720iaDHtta4VRkpcnp"},{"format":"","year":"2011","name":"Finnish National Championships","id":"UVd3X0lgKy2dOb5Yx1c7"},{"name":"UCU Open","year":"2013","format":"","id":"UWHKNxWBfNyw2FCQAxdk"},{"format":"","name":"Sofia Open","year":"2018","id":"UefabB9q8iptn7SCi47p"},{"year":"2016","format":"","name":"Warsaw EUDC","id":"UfGg9gZEXlU744RWE1Y1"},{"format":"","year":"2011","name":"John Smith Memorial Irish Mace Round 1","id":"UgYFH7zB2M5IjDis2Yr0"},{"year":"2011","name":"John Smith Memorial Irish Mace Round 1","format":"","id":"Uh2sv81ZY03ilCSWzfuc"},{"format":"","name":"Berlin IV","year":"2012","id":"UlbXxRnvnqr2PXimcFud"},{"year":"2016","name":"Tech Open","format":"","id":"UnPx20cVpfgfJ0GCpiYw"},{"format":"","year":"2019","name":"Northams","id":"V4EerbsQTKm7edPUZ5W3"},{"year":"2020","name":"Asian Online Debating Championship (AODC) - WSDC","format":"WSDC","id":"V4GiH1luZDgYtx44QdOh"},{"format":"","year":"2013","name":"Manchester IV","id":"V6eoj3ztq5t3sX9oPVue"},{"format":"","name":"Evodio Online Open","year":"2020","id":"V7FJhUQXRQ0Z4dnL94bu"},{"name":"Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)","format":"","year":"2013","id":"V8KRgdahxIEUYFHrRWYb"},{"year":"2015","name":"Athens Open","format":"","id":"V8TulSs5yNLpZX8Xohpq"},{"name":"Deutsche Debattiermeisterschaft (German Language Debating Championships)","format":"","year":"2014","id":"VAfi19aZTAIKaUuELBL1"},{"format":"","name":"Joynt Scroll (NZ Prepared Debating Tournament)","year":"2018","id":"VJrM6VUkpqQApOpZIiF5"},{"name":"Paris V","year":"2014","format":"","id":"VMO75l0SGi2O6yt13Sml"},{"year":"2007","format":"","name":"UBC WUDC","id":"VPUCPVj9FHFW0uzJinv0"},{"name":"Hong Kong Pro Ams","year":"2020","format":"","id":"VQZZXpisO7Sjz81KUlh9"},{"name":"2018 Empire Debates","format":"","year":"2018","id":"VQr7z5VfwVgaBuaaXYrV"},{"year":"2014","format":"","name":"Irish Times Debates Open_Semis","id":"VT7J9JrIu3vEI0gMHsS2"},{"year":"2012","format":"","name":"Berlin New Year’s Invitational","id":"VTJvfdWN7ZYlPkyTmGj1"},{"format":"","name":"Tallaight IV","year":"2014","id":"VWMKb2j3CmLwgnB7Jl4O"},{"year":"2014","format":"","name":"LSE Open","id":"VZL2SmUXq00WGPbW0ZRt"},{"year":"2016","name":"John Smith Memorial Mace - Scottish Finals","format":"","id":"Vbk9gaT3SemhmV5RPxVN"},{"year":"2020","format":"","name":"2020 Commonwealth Debating Championship","id":"Vc16X0J2U83IcWBfD8xp"},{"format":"","name":"Northams","year":"2018","id":"VgG4TyKIsjc7AL1bsI5k"},{"format":"","year":"2018","name":"Roosevelt Open","id":"Vis5yhSVMHubvgdJTwP1"},{"name":"Frischlingscup","year":"2013","format":"","id":"VmS29bKnoZWYDeWGOc08"},{"name":"Leiden Open","year":"2014","format":"","id":"VyYxJ0FaIE4LYaWheUyL"},{"name":"Estonian Open","format":"","year":"2013","id":"W8zmuuOkdBsEHQw2r0RP"},{"format":"","year":"2012","name":"Imperial Summer IV","id":"W9AVDusjw9BvQds3bmVL"},{"format":"","year":"2016","name":"Canadian BP Nationals","id":"WACrra94379E35Be36hc"},{"format":"","name":"UFMG IV","year":"2019","id":"WCy3lEpZMYjWgaZ7Qx1o"},{"name":"Trouvaille Debate Open","format":"BP","year":"2021","id":"WEotTkb6ok8UfUOl0Lwb"},{"name":"Northams","year":"2019","format":"","id":"WIDzoHi0LCXIk2lGT2K9"},{"year":"2020","name":"Northams","format":"","id":"WJgNifluSG9MI0q5rkyc"},{"year":"2015","name":"JADE College Cup","format":"","id":"WMhTu5CeggGVUPxkfYq6"},{"format":"","name":"Yorkshire Novices","year":"2013","id":"WU1IPwpPSvnZ7hFKlj1h"},{"year":"2011","format":"","name":"NAMDA Novices","id":"WYCV7Sl9idtN2tulRuB2"},{"year":"2013","format":"","name":"Berlin-Brandenburgischen-Meisterschaften (Championships)","id":"WZCqEhVlkHd8g5WoExVG"},{"name":"SOAS IV","format":"","year":"2016","id":"Wb0k9XSEirfd7kuffEGF"},{"format":"","year":"2020","name":"Cross Deb Soc Practice Tournament Ed. 1","id":"WcNueZiJXeg9z82dijdL"},{"year":"2014","name":"Tornadu","format":"","id":"WcTEqzk0ckiyLGdszyy6"},{"year":"2020","format":"","name":"2020 Commonwealth Debating Championship","id":"WdAOoXab2iIsfSah75UC"},{"name":"Open de Debates de Lisboa","format":"","year":"2013","id":"Wewrx8QOMFF3ixbeJBr6"},{"year":"2016","name":"HWS IV","format":"","id":"WfHILzlB4oGzI34Iwqaw"},{"format":"","name":"Brandeis IV","year":"2016","id":"Wg2225mgODwBGF4GMBLR"},{"name":"Paris V","format":"","year":"2014","id":"WgHrPCZLtPUqYQJM6MRi"},{"year":"2017","name":"Munich Open","format":"","id":"Wn4nk4Gju7tmDZTbrogC"},{"name":"Budapest Open","year":"2017","format":"","id":"WnH3YWwA4xB4HPfqIqea"},{"format":"","year":"2014","name":"Paris V","id":"WpEMwbO0Ip1cNpdrFgJW"},{"name":"6th Oldham Cup","format":"WSDC","year":"2020","id":"Wpv6iXJkIPUXYIkl0dST"},{"format":"","year":"2015","name":"Vienna EUDC","id":"WqXUc7EMDvkqqg3BVCtf"},{"year":"2013","name":"Yorkshire Novices","format":"","id":"Wqc3dxPJ5gqHiSdQCjYD"},{"name":"UCD Vice-President’s Cup","year":"2012","format":"","id":"WqsdOIKQnJkQdFDBVNtA"},{"year":"2014","format":"","name":"Paris V French Debating Association Tournament Open_Semis","id":"Wt0TddiaryH5reseIqUp"},{"format":"","year":"2018","name":"Mehran Debating Championship","id":"WuHMyE7RKYgEDPOjOxp6"},{"format":"","year":"2019","name":"Barcelona Debating Open","id":"X4613Kz1qYjZyFPJzJlB"},{"format":"","name":"UCD IV","year":"2015","id":"X7PfztBaTR2KFk3oINtG"},{"format":"","name":"Newcastle Mixed Doubles","year":"2017","id":"X7iAuOHrSqi0EHPkRNls"},{"name":"Surrey IV","format":"","year":"2016","id":"X8TtbynGKBJ2Z158R7Sw"},{"name":"Vienna Freshers","format":"","year":"2013","id":"XBBB3MfIKpYpUaioBlLB"},{"year":"2017","format":"","name":"Penguin Invitational at Dominican University","id":"XBFpAL1r3TobjAN8vT20"},{"name":"The Nixor College Debating Championship","format":"","year":"2018","id":"XGnGWhzkfstV6wutkTXQ"},{"format":"","name":"Heriot-Watt Open","year":"2012","id":"XKnRXbL5iWiOHmPMcGVz"},{"name":"Whippersnappa Pre-Australs","format":"","year":"2020","id":"XL594Q2oZbvHmfmYKFvT"},{"name":"World Schools Debating Championship,","year":"2017","format":"","id":"XP8UfuG8YQctEU4aPSPw"},{"format":"WSDC","name":"WSDC","year":"2018","id":"XnmecTVfWWNVfWZaANER"},{"format":"","name":"Bogwall","year":"2011","id":"XryJ0KVA6GiVngJthv3K"},{"year":"2012","name":"SOAS IV","format":"","id":"Xt0UV62VgaP360hvHqWG"},{"name":"2018 Empire Debates","format":"","year":"2018","id":"XwhbCwp6Xp4O7F0XB0A2"},{"format":"","year":"2020","name":"Berlin Online IV","id":"XzAs4cMVeW91DHEgxF0k"},{"year":"2012","name":"French Debate Association Tournament Preliminary Rounds","format":"","id":"Y3Z5VtYbQjRZRfaNu7U7"},{"format":"","name":"Sarawak Schools Online Debating Championship","year":"2020","id":"Y81hIZM2YzXWwwRuxR0R"},{"name":"Debatijada Open","year":"2013","format":"","id":"Y8UBPz5agTr6QKYI2kXS"},{"format":"","year":"2012","name":"Roosevelt Academy Open (RA Open)","id":"Y9leM2xAYiRjIMMIqgfX"},{"name":"UBC IV","format":"","year":"2018","id":"YAsriFfh4M2kLN2FBQPq"},{"year":"2020","format":"","name":"Astana EUDC","id":"YF6iuqxO6eUISnAz4iMp"},{"format":"","name":"John Smith Memorial Irish Mace Round 1","year":"2011","id":"YIQeT9TczRG66x5pPco1"},{"name":"Northams","year":"2019","format":"","id":"YLNPrpqmmIAB4mSmlKI1"},{"format":"","name":"Boddencup","year":"2012","id":"YRWxNK3sQq47UacBwpjn"},{"year":"2014","format":"","name":"York IV","id":"YWYo651ohahlD6OyzCXj"},{"year":"2020","name":"2020 Commonwealth Debating Championship","format":"","id":"YXbAQgB9XudQEd8WziPf"},{"year":"2014","name":"Zeit Debatte Dresden","format":"","id":"YZ4nedbden9wBJH2zqb4"},{"format":"","name":"SDSU","year":"2017","id":"YZNcM4Wgq9Um4e7kNLdH"},{"name":"Macau Tournament of Champions BP IV","format":"","year":"2018","id":"YaTXOaEvPKh8XHB3VTBK"},{"year":"2019","format":"","name":"Athens EUDC","id":"YbdPFTE9FbO3iQjZo87D"},{"format":"","name":"SDA Novices","year":"2014","id":"YcxOXVvo0TolX2RquRlw"},{"format":"","year":"2011","name":"John Smith Memorial Irish Mace Round 1","id":"YhiLgeHG8opzbFUU8gAZ"},{"name":"SOAS Open","format":"","year":"2013","id":"YktmX9iQ8HNzyE1aE4yf"},{"name":"All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin","year":"2018","format":"","id":"YxG2TWeoQ8BT0rpxmfxT"},{"year":"2020","format":"","name":"2020 Commonwealth Debating Championship","id":"Yz5ceoOLC42Am6F8c8nR"},{"name":"Zeit Debatte Marburg","year":"2013","format":"","id":"Z2fhe3NoSvpEOVSzVxzj"},{"format":"","name":"Sumatra Online Debate Open","year":"2020","id":"Z9FMqY7i0SmIcw5xUsUL"},{"year":"2021","format":"AP","name":"The Anime Open","id":"Z9WBfg1yDJgSR34BGYp1"},{"year":"2018","name":"Northams","format":"","id":"ZBNkqzYn4LscHevfVN4T"},{"format":"","year":"2019","name":"Colgate Open","id":"ZClJskShp09gm6WCITGC"},{"format":"","name":"Irish Mace Debates Round 2","year":"2012","id":"ZHpmROZ4G7eY4iB9dTsM"},{"format":"","name":"New Zealand BP Debating Championships","year":"2008","id":"ZKj5YfRQe4wJF8bx4fLp"},{"format":"","name":"Centrale Open","year":"2012","id":"ZQQO7Q0LBTeQnU1Rb8fK"},{"year":"2015","name":"Vidzeme Open","format":"","id":"ZQbHv8rs6yqxtH8VBbkr"},{"name":"PAUDC Akofena","year":"2019","format":"","id":"ZQk7wGWckTLOk9Y0j9z4"},{"format":"","name":"French Debate Association Tournament Preliminary Rounds","year":"2012","id":"ZYEXcoEAhCRqw7f3JlJB"},{"format":"","year":"2016","name":"Durham Australs","id":"ZZxKEPTbhJYYUI5iW5Cz"},{"year":"2017","name":"Riga Mini, 2nd edition","format":"","id":"ZetjyvhBc3exk1eBvmTd"},{"format":"","name":"Northams","year":"2020","id":"ZfeRJQjvBxfQ7jSP5oZp"},{"format":"","name":"Saskatoon WSDC","year":"2020","id":"ZjN9B5kqPitiGVpXIpHO"},{"name":"Irish Times","year":"2011","format":"","id":"ZoSUPdoPGikxLryJSpIg"},{"year":"2015","name":"Guindon Cup (University of Ottawa)","format":"","id":"ZpOi9wuiFrLbKo4ygC2p"},{"year":"2011","format":"","name":"Imperial College Open","id":"ZqM3Me0eKutOMMTkPwgA"},{"format":"","year":"2012","name":"John Smith Memorial Mace England Leg","id":"ZqxiQxL5x65YVuJZNdbn"},{"year":"2011","format":"","name":"Irish Times Round 2","id":"ZrOCmueZmRgZ0ipuKABp"},{"name":"Tournament without a name (Macedonian-Greek exchange tournament)","year":"2013","format":"","id":"ZsVD7wkjXkMvxPWmTARb"},{"year":"2014","format":"","name":"Guindon Cup (University of Ottawa)","id":"ZvEJb11Ww6RpoVmg4QV3"},{"name":"Oxford Women’s Open","year":"2012","format":"","id":"ZxUcdMSTBBFZQIuIsGtb"},{"year":"2014","name":"Manchester IV","format":"","id":"a40eH2E5w4GGnWQ3oDT6"},{"format":"","name":"Central European Cyberspace Open","year":"2020","id":"a6rNMpZKAK9f2nCSkXu1"},{"year":"2016","name":"The QUB Open","format":"","id":"a7Zdmoc5GpY9KlKkDEVg"},{"name":"Irish Times Debates First Round","format":"","year":"2011","id":"aBYDRIptHqCUvswJPEat"},{"year":"2014","format":"","name":"Berlin IV","id":"aC5itVCb0EApgG8DEaqA"},{"name":"Israel's English Cup","year":"2018","format":"","id":"aEZUJtwNrlKTdARVPZNh"},{"format":"","name":"VITDT Round Robin","year":"2020","id":"aHKO046eJRUWaom1jPG8"},{"year":"2015","name":"Ljubljana IV","format":"","id":"aL5gnSWQ3OQq2Lb3mRix"},{"format":"","year":"2014","name":"Irish Times Debates Round 2","id":"aOxBzmkAGXikdnjOD33g"},{"name":"HSE Open","year":"2012","format":"","id":"aT0uKXAE6J8EslDVKzO1"},{"format":"","name":"Strathclyde Presidents Cup","year":"2013","id":"aUwwV3DTC7VLF1KaHJqj"},{"format":"","name":"Oxford IV","year":"2011","id":"aVcqgGmAccQ09iBh9iS1"},{"format":"","name":"SSE Riga & LMT IV","year":"2012","id":"aWnK845Eg0cHNR0VZu3e"},{"name":"Irish Times Round 2","format":"","year":"2011","id":"afj98lIMav0k6Gk1LJMU"},{"format":"","year":"2020","name":"2020 Commonwealth Debating Championship","id":"agXSSU4jN2jQoiFsc9UJ"},{"name":"EBS Open","format":"","year":"2013","id":"av1jBA9UCgf82WNPu88k"},{"name":"1st Copa Leones de Debate (CLD) at University of Guadalajara","format":"","year":"2018","id":"axWwnyCM8L14pVHljukt"},{"format":"","name":"Cape Town Open","year":"2014","id":"aywt5Kt0TqoeqngKQ0I4"},{"format":"","name":"Estonian Open","year":"2015","id":"b1sXr4qyDgdbj0UNSjmS"},{"year":"2015","format":"","name":"Norton Rose Fulbright Warwick IV","id":"b3eMPaD8uywgZW5hZca1"},{"format":"","year":"2011","name":"John Smith Memorial Irish Mace Round 1","id":"b5hJMfvFnKcPcwTIGUzs"},{"year":"2017","name":"World Schools Debating Championship,","format":"","id":"b6CvuKUUJuB8v1q71mpg"},{"year":"2012","format":"","name":"Vienna Freshers","id":"b9wXoxHWMOjvJu54cv9Q"},{"format":"","year":"2014","name":"John Smith Memorial Mace Scotland","id":"bCHhtderrKW9zq6zAlGb"},{"format":"","year":"2020","name":"Tilbury House Online Open","id":"bH0N4QlKzNNQ8zL97OyO"},{"name":"Cedar College Debating Championship","year":"2018","format":"","id":"bTRRi7oLbaQA5e1qz6Qc"},{"year":"2018","format":"","name":"Northams","id":"bU41neBKGX4PP2d18Z5V"},{"name":"Brno Open","year":"2012","format":"","id":"bWRhS5k8Iv19aHOMEz5C"},{"year":"2016","name":"Budapest Open","format":"","id":"bcb5yQt6p8cx9SACsvYL"},{"format":"","year":"2020","name":"2020 Commonwealth Debating Championship","id":"bfCOlDPP5uUyLMoPujOn"},{"format":"","name":"Irish Times Round 2","year":"2011","id":"bhf4c91hpArMGGGW1D49"},{"format":"","name":"Cicero Toernooi","year":"2013","id":"bkOT9pwqHsKTlwricRHY"},{"format":"","year":"2013","name":"UCL IV","id":"bmpPSwtqn5KEm26j6EB7"},{"format":"","name":"Commonwealth Open (Australs style)","year":"2013","id":"bvHOR7Oow9PPlKPlA2BT"},{"year":"2018","name":"NZ Easters","format":"","id":"bxhnmh9CZq21XJcRU2BX"},{"format":"","name":"Irish Mace Third Round","year":"2012","id":"c243fLjOjBW33LE4ORQl"},{"format":"","year":"2013","name":"Newcastle IV","id":"c5YoJ5qkI2DsrQ7PAhum"},{"name":"Oxford IV","year":"2013","format":"","id":"c74XLjeeNJzVbzpMjGlo"},{"format":"","year":"2014","name":"Glasgow Women’s","id":"c7J6C6adBALyiCv5F8G1"},{"name":"Riga IV","format":"","year":"2018","id":"cBdmYwHV9z5pBS0q23lF"},{"format":"","name":"The Grand Spar May","year":"2020","id":"cDgGdE6ESpUqp2A2gVLj"},{"format":"","name":"Irish Times Debates First Round","year":"2011","id":"cN7wklhPVXSNI8veNLDd"},{"name":"Helsinki Open","year":"2020","format":"","id":"cTxMF0myfwbQDPdL8Ral"},{"format":"","year":"2015","name":"NorthAms (@ NYU)","id":"caeYE7341tdQiO1TJafq"},{"year":"2014","format":"","name":"Paris V","id":"cffR6MKFLdlEDIZQHbE9"},{"format":"","year":"2012","name":"Cork IV","id":"ch7bmkDPz31zOvzM3txF"},{"format":"","year":"2012","name":"Cardiff IV","id":"cp0MD0ZRWeTfahcPD6wj"},{"name":"Irish Mace Third Round","format":"","year":"2012","id":"cq2TtUmMMfIYUSlIlDr2"},{"format":"","year":"2013","name":"Estonian BP Championships","id":"d0CBbRAyIQhiX69bWaKA"},{"name":"LSE Open","format":"","year":"2016","id":"d13kY0BTy5kVOwwqu54R"},{"format":"","year":"2016","name":"Newcastle Mixed Doubles","id":"d2f6RXp0B99iQq4RFZeE"},{"name":"French Debate Association Tournament Preliminary Rounds","format":"","year":"2012","id":"d35TEmWzSQ37EuABKENz"},{"name":"2017 Pan-American Universities Debating Championship","year":"2017","format":"","id":"d4w3dDwY3sC52GhHJYXy"},{"year":"2020","format":"BP","name":"Gấu Online Debating Championship","id":"dDIi9GGQPeWrjPS0rR75"},{"format":"","year":"2017","name":"HWS Round Robin","id":"dF61f0kc1Q0KQCGUhM1l"},{"name":"National Maiden’s","format":"","year":"2014","id":"dL45ZXh9u0IhHmAuaa0r"},{"format":"","year":"2011","name":"Irish Times Round 2","id":"dQjTTJx7Z95CgZDYHoaV"},{"year":"2012","name":"John Smith Memorial Mace England Leg","format":"","id":"dSLdRYylRO2c580zSDu8"},{"year":"2013","format":"","name":"John Smith Memorial Mace - Welsh Leg","id":"dUwDNXWo8JGvcW4u6zlP"},{"year":"2014","format":"","name":"Paris V","id":"dWIFNAb5jOJ6nxXzrvcP"},{"format":"","name":"Zeit Debatte Karlsruhe","year":"2011","id":"dYmkkVK8aVn1dCgd4UDy"},{"format":"","year":"2018","name":"Tilbury House Cologne Open","id":"db8a4cSMVYVFuxZgcf0y"},{"name":"Manchester IV","format":"","year":"2020","id":"dgRU54McMXqo1MXISAFt"},{"name":"IDC Porto Debate Camp and Open","format":"","year":"2012","id":"dhjYMHAKQ3baHl4HMJbh"},{"name":"Irish Mace Third Round","format":"","year":"2012","id":"djHDhAgjfqINIKfae6so"},{"year":" 2.0","name":"Tilbury House Online Ope","format":"","id":"djiXjw59xlk6S987vqMc"},{"format":"","name":"North American Universities Debating Championships","year":"2016","id":"djnlK5jZ2kM6hDrC6E9d"},{"year":"2016","name":"UCD Novice","format":"","id":"dptDC5a1y6D1HClBFEO4"},{"year":"2013","format":"","name":"Vienna Mini","id":"dqyYdikn4cY0oz6DCMkq"},{"name":"John Smith Memorial Mace Welsh leg","format":"","year":"2013","id":"duH2oD0jpI1LHeXNvfzc"},{"year":"2014","name":"London Pro-Am IV","format":"","id":"dxiwBIWlq2trjdp62R0U"},{"year":"2011","format":"","name":"John Smith Memorial Irish Mace Round 1","id":"dyImQuNTX3qAzjCMgFzl"},{"name":"Manchester IV","format":"","year":"2018","id":"e3m3vjjIT1UO4munSqvD"},{"year":"2014","format":"","name":"Paris V","id":"eASJUmL092rhtU35pfoN"},{"year":"2012","format":"","name":"Irish Mace Third Round","id":"eAghBgueE7ROhNa6v20C"},{"name":"Bogwall (SSDC Novices)","format":"","year":"2014","id":"eBNO1FMsif7tzOa9LlnU"},{"year":"2011","format":"","name":"SSE Riga IV","id":"eBlrzVaoBbfX5kbian3T"},{"year":"2013","format":"","name":"Irish Times Open_Semis","id":"eECtQ29Kd45vZq8n2XAr"},{"name":"Dutch Masters","year":"2013","format":"","id":"eNRfEfbvRNeRnZhk4TS2"},{"year":"2017","name":"Olimpia di Debate","format":"","id":"eQMzhfh3p9amGITvLICM"},{"year":"2018","name":"NLUO BPD","format":"","id":"eSbb5Usou5B1Drm2Dmyl"},{"format":"","name":"USC IV","year":"2018","id":"eXqHjvQ9MTXYhyv8NeW7"},{"format":"","name":"John Smith Memorial Irish Mace","year":"2013","id":"eeAbAOFtB1UKVNuvmwPu"},{"year":"2018","format":"","name":"North America Womxn's and Gender Minorities' Debate Championship","id":"efp9mMZFiy8fVwkom17I"},{"year":"2014","format":"","name":"Pre-Pristina Open","id":"ehtU8lykIOIyhZiaczym"},{"name":"Zionism Begin Tournament","format":"","year":"2012","id":"epYFKCbv9IIbdGwlLvYy"},{"year":"2011","name":"John Smith Memorial Irish Mace Round 1","format":"","id":"ersrrcgcGZs5upnNoGG9"},{"format":"","year":"2012","name":"Nikolausturnier","id":"etTxnyhPGMITmcNf2DkM"},{"name":"NAUDC (also Hart House IV)","format":"","year":"2013","id":"euj80C6nkxdgEhkTaI0g"},{"name":"Imperial No Notes Open","format":"","year":"2013","id":"exPe8nnWDA3806gTTyfK"},{"name":"Joynt Scroll","format":"","year":"2009","id":"eypKKJZLZblnh6KffyC5"},{"format":"","name":"Hull Open","year":"2014","id":"f1thAYfptp3bklFlrsSe"},{"format":"","year":"2017","name":"WSDC","id":"f95Nh9hCAQsssNcgxALW"},{"year":"2021","format":"WSDC","name":"Hanoi Debate Tournament (HDT)","id":"fBPBbh32BZ2p0Y1Fy5Yi"},{"year":"2013","name":"Cambridge Invitational","format":"","id":"fD5a3Vi9JDUEndfjCOKz"},{"name":"cornell novice nationals and tournament of love","year":"2017","format":"","id":"fDBEF4LSsnsQc1LTJVMl"},{"name":"Zalgiris Cup","year":"2013","format":"","id":"fHaBEm9PW7QYO4ZKFbwi"},{"name":"Trinity IV","format":"","year":"2014","id":"fIr3uLdOpGeGuZzpnEMf"},{"name":"Paris V French Debating Association Tournament final","year":"2014","format":"","id":"fKuU1uxdPh1ZwmKwjOza"},{"name":"All-Nigeria Universities Debate Championship","year":"2019","format":"","id":"fYRQ3gsDALGgMYQf58zt"},{"format":"","name":"John Smith Memorial Mace - English Leg","year":"2012","id":"fcP48RMB4twpZB6Lp8B0"},{"format":"","year":" 2.0","name":"Tilbury House Online Ope","id":"fhRJyubBGj9G1YZK3iyQ"},{"format":"","year":"2020","name":"Cinnamon Scroll","id":"fkUHa28aVk8LYYEAdofu"},{"name":"Taylor's Debate Open","format":"","year":"2020","id":"fzLPoPRlME1NEcvf7oVd"},{"year":"2020","format":"","name":"The Grand Spar June","id":"fzTALe8bGudT9BWcFtDO"},{"year":"2020","format":"WSDC","name":"UPenn World Schools Online Debating Tournament","id":"g7nlvxejABAgCXhGkJg8"},{"name":"Seattle IV","year":"2017","format":"","id":"g87X9iRsC0CxxtZdAjMP"},{"format":"","year":"2019","name":"Tech Open","id":"g8CCOnnQt2zCZCMbRAUS"},{"format":"","year":"2011","name":"John Smith Memorial Irish Mace Round 1","id":"gBbAeSbFaPMGWDJNYpy9"},{"name":"Cambridge Women’s","year":"2014","format":"","id":"gDONpxWgr0bu13hZzxYr"},{"name":"Irish Times Round 2","format":"","year":"2011","id":"gGww86z0NTQoU37I5SSE"},{"year":"2013","format":"","name":"Kent IV","id":"gJ7A4v0TYcDNBa5wySIX"},{"name":"Frishlingscup","format":"","year":"2014","id":"gLCKOLupIE8JBGxBG9vu"},{"year":"2014","name":"Arandjelovac Open","format":"","id":"gQ88d3loB2qwgD7ofmmr"},{"name":"French Debate Association Tournament Preliminary Rounds","format":"","year":"2012","id":"gS13w2Hs7OJVxISQXJDw"},{"year":"2021","format":"WSDC","name":"The Tabate","id":"gUFKQBcgvghmUX6k0Dj3"},{"name":"Budapest Open","year":"2013","format":"","id":"gaW3hl0mF758MDm7UkNs"},{"year":"2013","name":"John Smith Memorial Mace Welsh leg","format":"","id":"gaf1lshmTMREm1H3xYLr"},{"name":"IDEA Debate@Europe final event","year":"2012","format":"","id":"gf4DgO2PbJKuaj3RSFTp"},{"year":"2014","format":"","name":"Moscow Open","id":"gmusL4yQ3HD8FyegVRpk"},{"name":"Assumption WUDC","format":"","year":"2008","id":"gsX4dlvvsr6lcKP3eM2T"},{"year":"2012","format":"","name":"French Debate Association Tournament Preliminary Rounds","id":"gsqcYdkgsXTncLLWmoLC"},{"name":"NorthAms","year":"2019","format":"","id":"h0YK8gvUId7cYnxaY6V1"},{"year":"2012","name":"John Smith Memorial Mace Open_Semiss","format":"","id":"h0pk8jnfYdiIMwUy6T6F"},{"format":"","year":"2013","name":"US National Open","id":"h2z0CGY0CzqfLCKUb3wz"},{"format":"","year":"2014","name":"Eloquentiatoernooi (Eloquence tournament)","id":"h373wn3dFw9UcWDcJpyy"},{"format":"","name":"Claremont","year":"2015","id":"h5ajoFHOT7mXoe90wbQ3"},{"format":"","year":"2011","name":"John Smith Memorial Irish Mace Round 1","id":"hD2ZoG8Kv4L0t2GbbXck"},{"format":"","name":"UCD Vice President’s Cup","year":"2013","id":"hF5AdOa0t9O6mkaChm75"},{"format":"","year":"2014","name":"NCH International Relations Open","id":"hPTwc7UsLmuGu68x4FDK"},{"format":"","name":"Skopje Open","year":"2014","id":"hUGuNPuqow1Qx4Z2fgOz"},{"format":"","name":"Österreichischen Debattier Meisterschaft (Austrian Debate Championships)","year":"2013","id":"hWXHSxo1YxpnhAvrX2ly"},{"name":"Red Sea Open","format":"","year":"2016","id":"hY7icY7k8fuatysSqMFr"},{"format":"","year":"2016","name":"Munich Open","id":"hfhyqiLO3boM6Fbp0Jvs"},{"format":"","name":"Irish Times Debates First Round","year":"2011","id":"hkJGkO89B5bGLoVbkptp"},{"format":"","year":"2014","name":"Tilbury House Novice","id":"hlf4hP8CehYHd5yHET3L"},{"year":"2011","format":"","name":"Irish Times Debates First Round","id":"hnPtIXFdxCcNVAxjX3HY"},{"year":"2015","name":"AIB Trinity IV","format":"","id":"hoxSwibt3yivmk88aoAD"},{"year":"2017","format":"","name":"Hart House IV","id":"hrSRQu49cq5gHsXJLBgQ"},{"format":"","year":"2017","name":"World Schools Debating Championship,","id":"hw3vybeCQE9v1sLkyUXB"},{"name":"Newcastle Mixed Doubles Open","format":"","year":"2014","id":"hxlmkaNuNgQ6AIDlbsIh"},{"name":"Downpour Open","format":"","year":"2020","id":"hxyBKkKJhsnBL7pt0NTu"},{"year":"2021","name":"NEU Debate Open","format":"AP","id":"i00RSzvK4b1TDEgnpFJd"},{"format":"","year":"2017","name":"International Competition for Young Debaters, Finals Day,","id":"i1HAMqWg9Epu5Ys9FJg5"},{"format":"","year":"2017","name":"HWS North American Universities Debating Championsip","id":"i3UU49z9MRO6phe9r1BH"},{"year":"2016","format":"","name":"University of Latvia Open","id":"i4XbygF4ZWUtQg8NFKqw"},{"format":"","year":"2020","name":"2020 Commonwealth Debating Championship","id":"i5PkXFJTuOSpig9Wxumt"},{"format":"","name":"Downpour Open '20","year":"2020","id":"i6DM0q3jQYZrDmXJHzfr"},{"format":"","year":"2014","name":"UCL President’s Cup","id":"iARNjQG0MiYXxp1Qk22E"},{"year":"2014","name":"Irish Times Debates Open_Semis","format":"","id":"iCpf7iqlw0q3NHfaSkSh"},{"name":"Czech and Slovak Championships","format":"","year":"2013","id":"iFjWzR2mR3mBo4zzvGeZ"},{"year":"2011","format":"","name":"John Smith Memorial Irish Mace Round 1","id":"iKOMNYJLylRqdYtUlmkT"},{"format":"","year":"2014","name":"Paris V","id":"iNo5YIpd1IlmebiXlwRg"},{"year":"2013","name":"Irish Times Open_Semis","format":"","id":"iPaL2YqhE2CaKrbmIMal"},{"format":"","year":"2020","name":"Imperial IV","id":"iWZAiFK5ukpLd7JEkH5z"},{"year":"2012","name":"Namda Novices","format":"","id":"idhVYyUwgWnlyak17o8K"},{"format":"","year":"2017","name":"Strathclyde President's Cup","id":"iebTUsXIgV5US8LjoNw7"},{"format":"","name":"Joynt Scroll (NZ Prepared Debating Tournament)","year":"2018","id":"iegEOLdCbgmBBLA7xMrU"},{"format":"","name":"Inner Temple IV","year":"2018","id":"if0ptVr0NjWKFiLehpRT"},{"year":"2014","format":"","name":"Irish Times Debates","id":"ilaN8PvangfEGZ95w8h5"},{"year":"2014","name":"Joynt Scroll","format":"","id":"inOeJRfxqTpVMfq0i7Ze"},{"format":"","name":"Astana Debate Union Open","year":"2020","id":"irYSGlHj76RukmyCwWOG"},{"year":"2014","format":"","name":"SSE Riga Practice Tournament","id":"j4lF8rhbFUyC0UTwoz2G"},{"name":"John Smith Memorial Mace England Leg","format":"","year":"2012","id":"j9CzcT2MBqm8RkyW4eoN"},{"format":"","name":"Lancaster IV","year":"2012","id":"j9tMf10ACsn6VW6vG9gA"},{"name":"2018 Empire Debates","format":"","year":"2018","id":"j9y7nADZXnpCtZhA3hYv"},{"format":"","name":"French Debate Association Tournament Preliminary Rounds","year":"2012","id":"jBlC88mB27Ee1YTTSTay"},{"name":"Tech Open","format":"","year":"2017","id":"jDAkgOHYB1YR6mTfcUKJ"},{"name":"UBC IV","format":"","year":"2019","id":"jDG8reClMB02DIxLR5LL"},{"format":"","year":"2018","name":"Tech Open","id":"jFJV7RlRveuMvy9xk7UP"},{"format":"","year":"2013","name":"Rotterdam BP Toernooi","id":"jGziThakECOfXgvs0uHl"},{"format":"","name":"HSE Open","year":"2013","id":"jHRVS3aznjPPQaxWT8bs"},{"name":"SSE Riga Debate Academy","format":"","year":"2015","id":"jJ6q3uq5BHRM31WhI18D"},{"format":"","year":"2015","name":"Tilbury House IV","id":"jQjuYOl7gbKBTiUrvWM2"},{"year":"2019","name":"Deree Invitational LVII","format":"","id":"jS13nU6Cack3rcPrnNZ5"},{"year":"2016","format":"","name":"Kyiv Open","id":"jTIGk8DeHHGFQRpsk85j"},{"year":"2011","format":"","name":"John Smith Memorial Irish Mace Round 1","id":"jTMUK6cR09ZufgZKO560"},{"name":"Joynt Scroll","year":"2018","format":"","id":"jU6ofoRVsACbu04pXrg6"},{"name":"“Denny Crane” Faculty of Political Science","year":"2012","format":"","id":"jVtcrR58DYEPrz6PXM17"},{"name":"UCD Novice IV","year":"2012","format":"","id":"jdV8jBuLPUpb2I5gYBQc"},{"format":"","year":"2020","name":"CP Nationals","id":"jfv01DUCOrtLcsyMO6qo"},{"format":"","name":"Manchester IV","year":"2012","id":"jhyT1LK3YdR0do1cosc6"},{"year":"2013","format":"","name":"Turku Open","id":"jiJ3t0fz2aMel6atC1HM"},{"format":"","year":"2016","name":"Helsinki Open","id":"jkJhYCzI3XvX3Zgm0Ivc"},{"year":"2016","name":"UCL Clifford Chance IV","format":"","id":"jpLuasMJYB40s1bJk2Ia"},{"name":"Tilbury House Online Open","format":"","year":" 2.0","id":"jz3o0aXm0sxfgpVkfw2J"},{"year":"2014","format":"","name":"New Zealand BP Debating Championships","id":"k1fYFDihwlGzjmVGfSXp"},{"year":"2019","name":"Tilbury House Cologne Open","format":"","id":"k3ijyeg4qJCcExIHRlhv"},{"name":"Open de Minho","format":"","year":"2013","id":"kBpjU5iP0oBmNFZAtFoS"},{"year":"2013","format":"","name":"Hull Open","id":"kDr04nbGJ33SICZ9XUHJ"},{"year":"2011","name":"ESU England Mace","format":"","id":"kFgdnpZDLOmYAkEJ1Zu6"},{"name":"Cork WUDC","format":"","year":"2009","id":"kFpM1KUkMmDded3L4Zmm"},{"format":"","name":"Exeter Open","year":"2014","id":"kIlyrRRnzkKK1188i1Qf"},{"year":"2016","name":"Tilbury House IV","format":"","id":"kM1DLhtxZLQbdLIScfM9"},{"year":"2019","format":"","name":"York IV","id":"kReIJGsf14VAB0aHbDhJ"},{"name":"Irish Mace Third Round","format":"","year":"2012","id":"kU2GCiSr9XuP3KI7aCxY"},{"name":"21st SSE Riga IV","year":"","format":"","id":"kaKFVFzhrgSOIPlruLU6"},{"year":"2014","format":"","name":"Paris V","id":"kdj9O8MuVwm7jOwizkMH"},{"year":"2013","format":"","name":"Leeds Open","id":"keyU5X5APEvFXLaZwxeM"},{"format":"","year":"2012","name":"Irish Mace Third Round","id":"kgaxtYYbqS4IklQaAnXC"},{"year":"2014","name":"Liverpool IV","format":"","id":"khQAvAFibcPAXBKfxTNY"},{"name":"Paris V","year":"2014","format":"","id":"kkCiVmVZnemJCRkVNOvs"},{"format":"","year":"2013","name":"Bogwall","id":"kpTzHelXPi3MmxVjSizP"},{"year":"2019","name":"New Zealand BP Debating Championships","format":"","id":"kqAjVyDOCBYWRYze158e"},{"year":"2018","format":"","name":"McGill Central Novice Championship","id":"krSr8LWxSpEc6v45L1uv"},{"name":"2020 Commonwealth Debating Championship","year":"2020","format":"","id":"ksNEWKONWHUr67swQWcl"},{"format":"","year":"2013","name":"Brüder Grimm Cup","id":"kveNSL63Zo9kOYIUJlW2"},{"year":"2019","name":"Muslim Interscholastic Tournament","format":"","id":"kwsuFgaQ5lYbaXVGrGal"},{"name":"Bristol ProAM","format":"","year":"2013","id":"l8sHmpUe0bZ9QUWrf0pm"},{"format":"","year":"2013","name":"Open de Lisboa","id":"lDdNAVRcaZNKtbkg8DCP"},{"year":"2013","format":"","name":"Canadian BP Championships (@ McMaster University)","id":"lFdTm9Bd7AxKRkVImhbS"},{"year":"2018","name":"Penguin Invitational","format":"","id":"lItvEbHHU24VVqcwipRq"},{"year":"2014","name":"Vienna IV","format":"","id":"lM9u9z6CfHfA9HPucSIT"},{"format":"","name":"French Debating Association Open_Semiss","year":"2013","id":"lPDzPC4VnYOwQX2ZPrUv"},{"format":"","year":"2012","name":"Split Union Open","id":"lPXoAGmpaSNRUUBSEwTy"},{"year":"2016","name":"GUU Ancients","format":"","id":"lVzNmdGBefqKp5cetQ6Z"},{"year":"2018","format":"","name":"MDX Open","id":"lWGI0B8QpTMEA8NW8UYQ"},{"format":"","name":"Irish Times Debates Open_Semis","year":"2014","id":"lWby0gIwPpMPzX5qMuwO"},{"name":"Irish Times Debates Round 2","year":"2014","format":"","id":"lYtYkBI7ufcjmjzRy4UX"},{"name":"2018 Empire Debates","year":"2018","format":"","id":"lbllVfAmLllTXdgBgwIV"},{"year":"2014","name":"McMaster Pro-Am","format":"","id":"lgIRNhKweWPgrrSL34Lh"},{"format":"","name":"Helsinki Open","year":"2014","id":"lleJhm2ki2Ixm97fXI7b"},{"year":"2019","format":"","name":"HWS Round Robin","id":"lmRNEraLEkD31bc6Nbnn"},{"name":"Istanbul Meridyen Debating Academy","format":"","year":"2016","id":"lpOfAtUfJZtb1VnGzV0G"},{"format":"","name":"Irish Times Debates First Round","year":"2011","id":"lqY0cyB8ENMlnakfPbZA"},{"format":"","name":"MonDO","year":"2020","id":"ltPXjwYNooGAx72v9bz6"},{"year":"2016","name":"John Smith Memorial Mace - English Leg","format":"","id":"lzwPRjjdpUi2iKUXkOjp"},{"format":"","name":"An Najah Arabic Novice Online Debates","year":"2020","id":"m2emSLcIwdpH2tsVpRhp"},{"name":"Galway Open","year":"2017","format":"","id":"m2l0j7TwryKeK2YnXK9e"},{"year":"2016","format":"","name":"Lancaster IV","id":"m357g5mmEMxSAwbDEk5d"},{"name":"Irish Times Debates First Round","format":"","year":"2011","id":"m3HwTwBI4nwxecb18X3H"},{"year":"2011","name":"John Smith Memorial Irish Mace Round 1","format":"","id":"m5GY9wNY7wF3DWlO4C3h"},{"year":"2020","format":"AP","name":"Taiwan Online Debate Open","id":"m6JzV67uYJSVBRpAbgL7"},{"format":"AP","name":"Gấu Online Debate Open","year":"2020","id":"m97biSF63NO9Jn1yenBI"},{"format":"","name":"SOAS IV","year":"2015","id":"m9Mkt1xdSA1jDsNN4zgu"},{"format":"WSDC","year":"2021","name":"Canopus Debate Championship","id":"mAqW9Go1ryAbaaM1OY8z"},{"year":"2015","format":"","name":"HWS Fall Classic","id":"mBBGfJmUYufw4KNTlYoR"},{"name":"cornell novice nationals and tournament of love","format":"","year":"2017","id":"mETgZ6UJuwlVUx88miev"},{"name":"Queen Mary IV","format":"","year":"2016","id":"mEr4tnJE0kt1V0JvT2KG"},{"format":"","name":"Regents’ IV","year":"2013","id":"mHdtWLh0RKp035BRFblm"},{"name":"Paris V French Debating Association Tournament","format":"","year":"2014","id":"mLYYpxL9yrhHXXumj4hL"},{"name":"Hong Kong Parliamentary Debating Society (HKPDS)","format":"BP","year":"2020","id":"mNwitMoNsjWupgwG8pR5"},{"name":"Victoria's Cup","format":"","year":"2020","id":"mUHCV4981T5cYALNdYBk"},{"year":"2018","name":"Western Regionals","format":"","id":"mXeF4ypkhHofmXrxLWxA"},{"name":"2017 Pan-American Universities Debating Championship","year":"2017","format":"","id":"mXgEkaZk5adlLG2Fc5O3"},{"format":"","name":"Cambridge IV","year":"2016","id":"macdlwUjYqFCGHKvQS20"},{"name":"GGDSD PDC","format":"","year":"2020","id":"mf3XudZleydnsr0lEvkg"},{"name":"UCD VP","format":"","year":"2011","id":"miNjiX9yX5Oq25V4yWeo"},{"name":"Heart of Europe British Parliamentary Debate track","year":"2013","format":"","id":"mk4ycJh6yz0VDCnkysot"},{"format":"AP","year":"2020","name":"Northern Coast Debate Open","id":"mkrRVvz5EWSZie6LBtCH"},{"year":" 2.0","name":"Tilbury House Online Ope","format":"","id":"mlSh2Y6QuKu4W8LfHTQk"},{"format":"","year":"2014","name":"Zeit Debatte Wien","id":"mveJVSu6tAxKx2Vp4IB0"},{"name":"Oldham Cup International League","format":"WSDC","year":"2021","id":"mxxjZaa0262HoUjjXfj8"},{"format":"","year":"2018","name":"IUT Professionals","id":"myGQJSUNqcxcCjm3bONn"},{"year":"2015","name":"Tech Open","format":"","id":"mzTZLa2tIQsY2lUGe6Yf"},{"year":"2013","format":"","name":"Irish National Maidens","id":"mzvnxBrGLKyjonGHD82N"},{"name":"Easters","format":"","year":"2019","id":"n7qv29PmNuF5SOe42oiz"},{"format":"AP","year":"2020","name":"Spring KNC","id":"nALUKfkpmOnWnQCzecru"},{"format":"","year":"2016","name":"Trinity IV","id":"nDjxmwMznw4ZJasK7Taj"},{"year":"2013","name":"German Regional Championships West","format":"","id":"nFeuKMAFpK6Amwi6OMai"},{"name":"Bogwall (SSDC Novices)","year":"2012","format":"","id":"nFlN14QQWlnlNwJKIDru"},{"year":"2020","name":"2020 Commonwealth Debating Championship","format":"","id":"nGIA7nNY1gzIUQ3OJKOM"},{"name":"Downpour Open '20","year":"2020","format":"","id":"nIjKOs2CCdlTdHC8vJLb"},{"name":"Northams","year":"2019","format":"","id":"nJqiozm3KWwW0YYIqBgJ"},{"name":"Doxbridge Online Open","year":"2020","format":"","id":"nKWTDNECNNvbMxNcdVJM"},{"year":"2014","name":"French Language World Championships Debating","format":"","id":"nMUJTA4Krf9MyO7MGVzA"},{"format":"","name":"World Schools Debating Championship,","year":"2017","id":"nPU656VZAZPOCw4ydv2c"},{"year":"2018","name":"PAUDC Tanzania","format":"","id":"nRov7JujhUP4fNtRUQTt"},{"year":"2014","format":"","name":"Paris V","id":"nTat0Ld5q2cvGJrEgqlc"},{"format":"","name":"Irish Times Open_Semis","year":"2013","id":"nTji8UPJ8QUs0kF7Lajd"},{"name":"World Schools Debating Championship,","format":"","year":"2017","id":"nTnlMetWUsGxpOWx0wBP"},{"format":"","name":"NZ Easters","year":"2016","id":"nXN2yUG7soxwCp4xidzj"},{"name":"WSDC Practice Spars","year":"2020","format":"","id":"nZHihOHKbvuiGhhtsXam"},{"year":"2017","format":"","name":"2017 Pan-American Universities Debating Championship","id":"nfFidCFtUR40meXpDw75"},{"format":"","name":"Stockholm IV","year":"2013","id":"ns7JoMyNUkrrS5A6Rbw7"},{"name":"Irish Times Round 2","format":"","year":"2011","id":"nxL4bbe65IaYhBwQjpwQ"},{"year":"2014","format":"","name":"Boddencup","id":"nzVlQYCb0rPo23sPMkA5"},{"year":"2013","name":"KCL IV","format":"","id":"o29IKQqCI95UODWABA9Y"},{"year":"2014","name":"Glasgow Ancients","format":"","id":"o2dx25z3TGRcLxLt33Qk"},{"year":"2014","name":"Westminster IV","format":"","id":"o60DawGVHvdGOC58c4vF"},{"format":"","name":"Trinity IV","year":"2017","id":"o7IbmAZdAZ1UWeWnX7IL"},{"format":"","name":"LSE Open","year":"2013","id":"o83Oqm9vDtGaG6SVldke"},{"name":"Athens Open","format":"","year":"2018","id":"o85wPSMfUIKlsHQtkpnr"},{"name":"TechOpen","year":"2014","format":"","id":"oAgYOmWxFy4ZVpvRuJtL"},{"format":"","year":"2014","name":"John Smith Memorial Mace Scotland","id":"oAqQLSLNx2ReUtBIPLkW"},{"format":"","name":"Access Debate Tournament","year":"2020","id":"oFJV1Acc1Gr7t6B77LSK"},{"name":"Aberdeen Open","year":"2012","format":"","id":"oUef705Eak69UuzgVheB"},{"name":"Westminster Open","format":"","year":"2015","id":"oVagPVQLXErhZIkOTqQn"},{"year":"2020","name":"Karachi Debate Open","format":"","id":"oaIuwyOX7NBIwaiSaVJ8"},{"format":"","year":"2013","name":"John Smith Memorial Irish Mace Open_Final","id":"obhZYIJM5cyjHjWQyXep"},{"year":"2011","name":"John Smith Memorial Irish Mace Round 1","format":"","id":"ocnfwFfsKuG1jy3M4tLo"},{"format":"","name":"Polish Parliamentary Debating Championships","year":"2013","id":"oeH2vC3Ht09TthfmAx2F"},{"format":"","year":"2018","name":"Nottingham Trent Open","id":"onvxs89P4PKzVuAFoTHr"},{"year":"2011","name":"Dutch Novice Cup","format":"","id":"oopKRuBfN6tSw3UTWZKT"},{"year":"2013","format":"","name":"Chancellor's Cup (Queen's University)","id":"ovD89w3g4H3GjEFmXcRL"},{"year":"2012","format":"","name":"Norddeutschen Regionalmeisterschaft","id":"ovqKzpSVsRvBQDmmn1yj"},{"name":"Rotterdam BP toernooi","format":"","year":"2013","id":"owvW9MKLd7Sqv8hm9HMq"},{"name":"Open de Debates de Lisboa","format":"","year":"2013","id":"p38eB5dZFLa5BwXojatB"},{"year":"2014","format":"","name":"NAUDC (@ HWS College)","id":"p3EOrIRx2qBcnN8fXbHh"},{"year":"2019","name":"Ljubljana IV","format":"","id":"p6ZWMCxUvbu1V0BT5gJg"},{"format":"","year":"2015","name":"Birmingham ESL Novice Mini","id":"pEzcbhejynC2gAdvgw1f"},{"format":"","year":"2012","name":"Newcastle IV","id":"pF81od0IQBmQsiQKDxoc"},{"year":"2020","format":"","name":"Cyberpunk IV","id":"pFBjdI3lKCaS5TpjBKVP"},{"year":"2014","format":"","name":"Paris V","id":"pHHri6Hr18fiMU1R2eCA"},{"format":"","name":"Durham IV","year":"2011","id":"pLQyWywMwoV4AU3XoFJO"},{"format":"","year":"2017","name":"Western Regionals","id":"pMiBCGHX80oXMgUJCqkc"},{"name":"Nottingham Open","format":"","year":"2016","id":"pQSBc1H8lG2P8ftbCWZ8"},{"name":"IDEA European Cup","year":"2012","format":"","id":"pTevyvO7FxIMrQi4ThJ5"},{"year":"2011","format":"","name":"John Smith Memorial Irish Mace Round 1","id":"pXt2OHCNXSY1SFzGxaKU"},{"format":"","name":"John Smith Memorial Irish Mace Round 1","year":"2011","id":"pgNMIgVM7vTEOFG00Ij4"},{"name":"Western Washington University","year":"2019","format":"","id":"pgslzxqwnT5Ei6UMGh69"},{"name":"cornell novice nationals and tournament of love","format":"","year":"2017","id":"phCn2QcrjTV2Mop5uReH"},{"name":"Edinburgh IV","format":"","year":"2013","id":"pjVFBJWiohJyZdRBk33H"},{"name":"Tallinn Tech Open","year":"2015","format":"","id":"pp2oK2CPkxitjQPpwO4o"},{"year":"2017","name":"Shahjiwana International Debating IV","format":"","id":"pq9R1PqBqzQNX8jAplt5"},{"format":"","name":"Bishop Anthony Lobo Championship","year":"2020","id":"ptDJAxuw5pGiwabyHZil"},{"year":"2020","name":"Princeton Round Robin","format":"","id":"pu7FduCxL7IOOrWe0ypf"},{"name":"SSE Riga IV","year":"2014","format":"","id":"puG4GbGRMRGTQ4eS4GHp"},{"name":"Chennai WUDC","year":"2014","format":"","id":"pvKZkg6sqicG5nXA2mvY"},{"name":"Bard IV","format":"","year":"2019","id":"py2YomguZSylDKYhWlhK"},{"format":"","name":"Irish Times Debates First Round","year":"2011","id":"q3zoeKL39ixlYW5BbJ2a"},{"year":"2015","format":"","name":"Malaysia WUDC","id":"q7pvo4zkG31lg89ofmeq"},{"year":"2013","format":"","name":"Edinburgh Cup","id":"qA0UqqN9np2leDGCNcck"},{"name":"2018 Empire Debates","format":"","year":"2018","id":"qDQmtaPalZphMaXjmxee"},{"name":"IDAS Tournament","year":"2013","format":"","id":"qDUBTulIlHZP0un39LYK"},{"name":"French Debate Association Tournament Preliminary Rounds","format":"","year":"2012","id":"qDUKcKKYaD4am7MZcb5n"},{"name":"Zagreb Open","year":"2020","format":"","id":"qDZwjZ3HER1wsZxsFjBb"},{"year":"2011","name":"John Smith Memorial Irish Mace Round 1","format":"","id":"qENN3bMQUxs8wygcir4y"},{"year":"2015","name":"SSE Riga IV","format":"","id":"qLVUbjlIT84ro50ixBwk"},{"year":"2017","format":"","name":"World Schools Debating Championship,","id":"qQDO5DIG3L8eM6JenGh9"},{"format":"","name":"John Smith Memorial Mace England Leg","year":"2012","id":"qQVIEkUSrajcvdhn8Ivu"},{"year":"2015","format":"","name":"BBU Open","id":"qQd3HyiFI5fx18xViLoe"},{"name":"Helsinki Mini","year":"2014","format":"","id":"qj5XULQcWvkGn23VActf"},{"year":"2014","name":"NorthAms (@ Carleton University)","format":"","id":"qoRL9POR1sxdsrdIdj6B"},{"name":"Ljubljana IV","format":"","year":"2014","id":"qotkEeWGxvmIXOZx52qZ"},{"format":"","name":"Joynt Scroll (NZ Prepared Debating Tournament)","year":"2018","id":"qpwOk9ChywJeE8u6Bu9C"},{"year":"2018","name":"Joynt Scroll (NZ Prepared Debating Tournament)","format":"","id":"qqfvtStUydZFYmSwgqlj"},{"year":"2011","format":"","name":"Irish Times Debates First Round","id":"qrDlPEtsLq0GLTzV91Yj"},{"name":"North American Women & Gender Minorities Debating Championship","format":"","year":"2017","id":"qvnbu5KYCFZ7nM9hTZ2E"},{"year":"2012","name":"French Debate Association Tournament","format":"","id":"qyxvpB5I720Gz7RHswLI"},{"format":"","year":"2017","name":"Tricity Mini","id":"r7L7x15Ixt9qEWgdPZ6u"},{"name":"Oxford IV","format":"","year":"2017","id":"rEUwN5dFZYjeXBNtp4NG"},{"name":"Thessaloniki Open","format":"","year":"2014","id":"rMtZQSWssQ8170WIyJTX"},{"year":"2012","format":"","name":"Dutch Debate Masters","id":"rTCB6GUTIjymEKsbO01i"},{"format":"","year":"2014","name":"Bielefeld Religion debate tournament","id":"rTasJ7TWWuEMSXmebOaC"},{"year":"2014","format":"","name":"Mainzer Debütanten Cup","id":"rdyGzmsfHNjLJBTBIlbG"},{"format":"","year":"2011","name":"Cork IV","id":"riEZk6ypdW0s5dnVIggc"},{"name":"Ullens Online","year":"2020","format":"","id":"rinK386NjH990vvie6wL"},{"name":"Inner Temple IV","format":"","year":"2016","id":"rkItJ1M9he5ApXeOVBjJ"},{"year":"2014","name":"Trivium Debattoernooi","format":"","id":"rmnZcOUQU2iED2r3pXca"},{"year":"2015","name":"Cape Town Open","format":"","id":"roH9ICCjwscIePFGM61P"},{"format":"BP","name":"Japan BP","year":"2020","id":"ruG3JCf2Mh62VDkchi11"},{"year":"2011","format":"","name":"John Smith Memorial Irish Mace Round 1","id":"rxYQaIMvZ9Gxe58LhW6m"},{"year":"2019","format":"","name":"Hart House IV","id":"s6w7WZApDWnBBmzeKY4h"},{"name":"North American Women's (@ Hart House)","year":"2016","format":"","id":"sA03ySqGdgfByNOTfDfC"},{"format":"","year":"2016","name":"Riga Pro-Am","id":"sFRIEYyxie6GRmJwElmF"},{"year":"2021","format":"BP","name":"Gấu Debate Tournament","id":"sIrS2zWJD8m7ibVjvyDN"},{"format":"","name":"John Smith Memorial Mace - Scottish Leg","year":"2016","id":"sMUe88NrBl4fVjvIcDCd"},{"name":"Westminster Debating Championships","format":"","year":"2020","id":"sQqCNuWw9nlSsN5agLhC"},{"year":"2012","name":"Durham IV","format":"","id":"sVguH0ZxbQ8C5aNo2rNf"},{"name":"Downpour Open '20","year":"2020","format":"","id":"sXEKPbYIEiDv6IovWm3O"},{"year":"2019","name":"The Karachi Cup","format":"","id":"sXtyoMtY4Bb7XJvcqA3J"},{"name":"Trinity Women's Open","year":"2016","format":"","id":"se3rzB8xVp0Ph3sVbug3"},{"name":"Circuit Breaker Debate Open","year":"2020","format":"","id":"seLxlAUewt8fbZdlsCGC"},{"format":"BP","year":"2020","name":"Vietnam Debate Online (VNDO) - BP","id":"sgcqNV5ntCoa4H8glRBu"},{"year":"2014","name":"Yorkshire Novice Cup","format":"","id":"sgkzjS4WeJfa3Df1l3zo"},{"year":"2018","name":"Split Open","format":"","id":"sol1oNvzZmBI1NXc28Lh"},{"format":"","year":"2011","name":"Irish Times Debates First Round","id":"suajomEs21H6201u3QoW"},{"name":"St Petersburg Online Open","year":"2020","format":"","id":"sv4AWOKZYbl1PfCObw21"},{"year":"2014","format":"","name":"Hart House IV","id":"swAbmAXdPnojWIXuZFwm"},{"name":"Dutch WUDC","format":"","year":"2017","id":"t1jiRXU99xeGdoIkTeyF"},{"format":"","year":"2010","name":"Koc WUDC","id":"t2juKb62UT5HJ0kruUAw"},{"format":"","year":"2014","name":"Cambridge IV","id":"tC9C0k05cAmtT3IBK2AV"},{"format":"","year":"2018","name":"Rocky Mountain IV","id":"tGXgNi0S9KFBe1hUBu15"},{"year":"2019","format":"","name":"Joynt Scroll","id":"tKXlShZl2vec49jC1bif"},{"year":"2016","format":"","name":"The Baillie Gifford Oxford Women's Open","id":"tKaZ8QEH0Hjz3Oiknfdr"},{"year":"2013","format":"","name":"Glasgow Ancients","id":"tLlByvzEQCgHw5hl7kZg"},{"name":"York IV","format":"","year":"2012","id":"tPdF4vGV6F0ucJaSF5md"},{"year":"2016","format":"","name":"John Smith Memorial Mace - Scottish Finals","id":"ta0eVjHx4SEtG7kF7sqP"},{"format":"","name":"UCL President’s Cup","year":"2016","id":"ti8CFKwd5Fq6RHmrGph0"},{"name":"6th Shanghai International Debate Open (SIDO)","year":"2020","format":"BP","id":"tkDLesahiehQ4Nqbr4eC"},{"year":"2012","name":"Cicero Debattoernooi","format":"","id":"tnPBotxO7gOOKcyCXAUw"},{"format":"","year":"2019","name":"Estonia Debate Open","id":"tp2xo2eFva2we2bqlQBC"},{"year":"2013","name":"Österreichischen Debattier Meisterschaft (Austrian Debate Championships)","format":"","id":"twKqnL2DsJjSnSlCEi2E"},{"name":"Teen X Debate Online","format":"AP","year":"2020","id":"u39lMiqXE91heMDxEgQe"},{"year":"2012","name":"French Debate Association Tournament Preliminary Rounds","format":"","id":"u4uC5no1rnAcAWPn5Gox"},{"format":"","name":"Irish Times Debates Open_Semis","year":"2014","id":"u8KEW8sXSGuYMxguTx23"},{"format":"","year":"2019","name":"LUMS Asians' Debate Open","id":"uES9ygXHa8tJuYB7dFEM"},{"format":"","name":"Westminster Open","year":"2014","id":"uEekEeJIfFAC4OJWJglf"},{"year":"2018","format":"","name":"Novi Sad Open","id":"uHY8OFiOXYb0VdlJt20c"},{"format":"BP","year":"2021","name":"Korea WUDC","id":"uJGjvsaThnluwVzoHFXm"},{"format":"","year":"2012","name":"Trinity IV","id":"uOrbqWx5KdpXchUpHb3Z"},{"format":"","name":"Edinburgh Cup","year":"2016","id":"uUwIAKIDo0apui0AqOxG"},{"name":"Wilderness Open","year":"2020","format":"","id":"ubSWFCyfoCllO0KSjdjy"},{"year":"2014","format":"","name":"Paris Open","id":"uikc98CupbamVyAQIHsf"},{"name":"Berlin Punk","format":"","year":"2012","id":"uk4xP1Lp7BjYaOzgd3Xi"},{"name":"La Salle IV","year":"2017","format":"","id":"ukcS5bJ2TUuNfMuzta0w"},{"year":"2020","format":"BP","name":"Vietname BP Championship (VBC)","id":"uqR5rN63m5rX9CiOtJjb"},{"year":"2017","name":"World Schools Debating Championship,","format":"","id":"uqck8RfOWjSxv4ChXJEV"},{"year":"2016","format":"","name":"Roosevelt Open","id":"uvPQBxEeKffyHUkLa5PV"},{"name":"Downpour Open '20","year":"2020","format":"","id":"uzQt6oPnVD6bic70Yo39"},{"year":"2011","name":"John Smith Memorial Irish Mace Round 1","format":"","id":"v1AxXSS9eXLogYdadM5c"},{"name":"NAMDA Novice Cup","format":"","year":"2013","id":"v1Vi2iS2rLowvyk3vIMm"},{"year":"2014","name":"Kalliope Debattoernooi","format":"","id":"v33DcPMMQZsLJormVjyz"},{"format":"","year":"2018","name":"New Zealand BP Debating Championships","id":"v3Bq7DLUeCcPyvQZjJbj"},{"year":"2011","name":"Irish Times Round 2","format":"","id":"v7hyfFSYXoFdmeuZGEhq"},{"name":"Saggsn- Masders","format":"","year":"2012","id":"vBIhHuSgrqmR27ZqUcfZ"},{"name":"Paris V","format":"","year":"2014","id":"vGDNjKYBbCicYwHCS2wz"},{"year":"2013","name":"Transatlantic Debating Championships","format":"","id":"vILiSHUm95tqQYsTjFZs"},{"year":"2014","name":"Kent IV","format":"","id":"vIcSl55fwy2uPdlGUXsg"},{"format":"","name":"The Grand Spar July","year":"2020","id":"vOzlUiodV5GoF1ZtM5Tt"},{"name":"Zeit Debatte Hamburg","year":"2013","format":"","id":"vRdckCLdD0l2Rjc63y5T"},{"name":"Mexico WUDC","format":"","year":"2018","id":"vS5BTr7lDW40h5Qw31FI"},{"name":"Birmingham IV","format":"","year":"2015","id":"vTB5rmh37ZMzdOCJ34sF"},{"format":"","year":"2018","name":"Huber Debates","id":"vURFmLn4wdqX6ZbK0ini"},{"format":"","name":"Vienna IV","year":"2012","id":"vY2MtSrfiAgUKzGbzzMm"},{"year":"2018","name":"Northams","format":"","id":"vcgVU3WbKYAy3qrwYp30"},{"format":"","name":"Birmingham IV","year":"2013","id":"vgTQs0itA0pIPKzwI7CK"},{"year":"2012","name":"Irish Mace Debates Round 3","format":"","id":"vi6XWcSzDVFPlnv9t3eB"},{"name":"Kalliope Debattoernooi","year":"2013","format":"","id":"vx330P6CYx2QKwkFUJiX"},{"year":"2021","format":"BP","name":"UMT Parliamentary Debate Open","id":"vzoLJmfiPRVvjgiu4Nrs"},{"year":"2014","name":"NK Debatteren (Dutch National Championships)","format":"","id":"w1cmIhewdRlJLYHGdtbg"},{"format":"","year":"2014","name":"Paris V","id":"w7u8NxGDQ6ZD0keRBLHU"},{"year":"2020","name":"Thailand WUDC","format":"","id":"wA1XDLHJESmSgLsfZ9Qe"},{"name":"2018 Empire Debates","format":"","year":"2018","id":"wCRAjnrtb63AYMccILyl"},{"name":"The Beacon Debating Club","year":"2018","format":"","id":"wE88mu5ettNTfJEaJQY1"},{"name":"Northams","format":"","year":"2019","id":"wGFt1lTUhtxmoNtA2aM3"},{"name":"Yale IV","format":"","year":"2015","id":"wKhC6L9zPycGKlqYWb6j"},{"format":"","name":"Northams","year":"2019","id":"wKpX7BYZyqRRlJEIH1mb"},{"year":"2019","format":"","name":"NAW*DC","id":"wL3wAKRctC8syY2eg8t3"},{"name":"Hart House Inter-Varsity","year":"2018","format":"","id":"wLO2B4MufJ4R3qOzUGM8"},{"name":"CMS Cambridge Women's Open","format":"","year":"2016","id":"wLfoMQYsV3E4fiFQ126i"},{"year":"2013","name":"Yale IV","format":"","id":"wP5I8OZ057B9BO0Js6MR"},{"format":"","name":"Northams","year":"2018","id":"wTn57tATiKWyTCt5c5aW"},{"format":"","name":"Imperial Open","year":"2013","id":"wXcojonR6N4b28c9T963"},{"year":"2013","format":"","name":"German Regional Championships North-East","id":"wYhrxey2tVddZfEkGSYA"},{"year":"2011","name":"UCU Open","format":"","id":"wYsVMTqiPYP1HFjzExu2"},{"name":"HWS Round Robin","year":"2013","format":"","id":"wZYAoJ8UubcT3x3E0CVj"},{"format":"","name":"Cork IV","year":"2016","id":"wdL4H8i9EHTz4mqKuZHP"},{"format":"","year":"2013","name":"Nordic Debating Championships","id":"wn4DAqBcGTWBviyQc0CR"},{"name":"IDAS Tournament II","format":"","year":"2011","id":"wuDBbL4uYIZXIthzVv4V"},{"year":"2013","name":"Lund IV","format":"","id":"x0AmWHi8lm3JhQyyhsfo"},{"format":"","year":"2013","name":"Red Sea Open","id":"x0FqHVU6TNo1z8egQZct"},{"year":"2016","name":"UCD IV","format":"","id":"x0mst3SfcsgMKKZ3eg7G"},{"year":"2005","name":"SSE Riga IV","format":"","id":"x1XtlIYDR23OSfEzPpkf"},{"name":"DAV Debate Open (DDO)","year":"2020","format":"AP","id":"xAdc6R4uC1xkQxvmPedU"},{"name":"Schroeter Cup","format":"","year":"2013","id":"xDKR551AqNCcautWV6YI"},{"format":"","name":"Riga Debate Academy","year":"2014","id":"xDjVbl80WAVFcLqsVPo5"},{"format":"","name":"SSE Riga Debate Academy","year":"2012","id":"xFs2K66Nme7uYTCMS6Vw"},{"format":"","name":"Northams","year":"2019","id":"xGBtJ3gsj1aiHrzttPNd"},{"name":"NK Beleidsdebatteren (Dutch Policy Debate Championships)","year":"2014","format":"","id":"xLHei5vZFgpmhHOsyDv6"},{"name":"LSE Open","format":"","year":"2012","id":"xQkVRRUcXZJgGzxXZ2t0"},{"year":"2017","format":"","name":"KCL IV","id":"xUGmMsj95M2w5CV6WYVA"},{"name":"French Debate Association Tournament Preliminary Rounds","year":"2012","format":"","id":"xZGXtqIILx5dAYpUSc7x"},{"format":"","year":"2020","name":"Northams","id":"xc8chahy0szEaDf9QxE8"},{"format":"","year":"2013","name":"SOAS IV","id":"xewLQXUxvfe0Xal1qtHM"},{"format":"","name":"UCU Open","year":"2012","id":"xeyFK25uSH9TtPga8ALE"},{"year":"2012","name":"French Debate Association Tournament Preliminary Rounds","format":"","id":"xhybIYo7794YRuqyGPHW"},{"year":"2013","format":"","name":"John Smith Memorial Mace (Ireland Open_Semis)","id":"xiDAjYVVSR0PYlxr0F2u"},{"name":"Hart House IV","year":"2015","format":"","id":"xik6XdvZ0JGG1hySfuwC"},{"name":"Empire Debates","format":"","year":"2019","id":"xixMAepJqW9TAZSYVdsR"},{"format":"","year":"2013","name":"Sciences Po Open","id":"xm1UErfWKMzGBfeKsba9"},{"name":"Lord Discup's Cup","format":"","year":"2020","id":"xoiSW3hTToX15wvrD6gA"},{"name":"John Smith Memorial Irish Mace Round 1","year":"2011","format":"","id":"xopPMfaphv4DD00LwTqj"},{"name":"Indian Womxn's Debating Championship","format":"","year":"2020","id":"xv0FPHxLsij7LUJlUmBy"},{"year":"2020","format":"","name":"Astana Debate Union Online","id":"xwOMY1HAkkxJbFVQIUFJ"},{"format":"","year":"2014","name":"UCL IV","id":"y0zBNckmXRI4bCqMyXLg"},{"name":"Leiden Open","year":"2017","format":"","id":"y6YpD63Uuk3t3fbBC7Tk"},{"name":"Brabants Debattoernooi","format":"","year":"2014","id":"y6twZcPBW4VtQsAZQ3Mw"},{"year":"2014","format":"","name":"Leubke Cup (@ Brock University)","id":"y7meTgIUCGSo7UqVkUQq"},{"format":"","year":"2019","name":"Munich Research Open","id":"yDUOVgl6qLMa2DH8lCD5"},{"year":"2021","name":"Asian English Olympics","format":"BP","id":"yDvj9tks9IvE2CTAVfzV"},{"format":"","name":"Campeonato Mundial Universitario de Debate en Español (CMUDE)","year":"2014","id":"yFALyexswW7KtxRDS4He"},{"name":"UBC IV","year":"2013","format":"","id":"yIBeLUbSZELobFcw30WY"},{"name":"Irish National Law Debates","format":"","year":"2014","id":"yK2aesNii4f0c4vvqYng"},{"name":"Kingsmill Moore Invitational","year":"2013","format":"","id":"yKZ612WqYq5uAuH9PAZI"},{"year":"2013","format":"","name":"Tournament of Champions","id":"yLkpGc1iaQe5cfQPrNvl"},{"format":"","year":"2017","name":"Lund IV","id":"yLnbL40w84r9L2K9qxt0"},{"format":"","year":"2017","name":"Huber Debates","id":"yOWDiguNGQHwr42mgnqv"},{"year":"2014","name":"North American Women's (@ McGill University)","format":"","id":"yTe5SQuwd4eeae0M0Sc9"},{"year":" 2.0","name":"Tilbury House Online Ope","format":"","id":"yUDsqlr4IzlUqMSPRKiE"},{"format":"","year":"2012","name":"French Debate Association Tournament Open_Semiss","id":"yVVVtx7P8rPHdo6JrUJ8"},{"year":"2019","format":"","name":"Poznan Open","id":"yZaksTbsPteB6mPHwkvl"},{"year":"2013","name":"John Smith Memorial Mace","format":"","id":"yhJgdE0VFcsqlvWffep1"},{"format":"","year":"2011","name":"John Smith Memorial Irish Mace","id":"ylBDtvOeJmEl8ZjjfgYH"},{"name":"UL Open","format":"","year":"2014","id":"yplVU35a69J2hHBBmAJC"},{"name":"Bristol Open","year":"2013","format":"","id":"yrT248aRWPJC4Vb6MsRt"},{"name":"NAUDC (@ Ithaca College)","year":"2015","format":"","id":"yxjvIJregbdMEVkOnzCg"},{"format":"","name":"Kyiv Open","year":"2013","id":"z4fwjDZ02juoVx4MeEih"},{"format":"","name":"2020 Commonwealth Debating Championship","year":"2020","id":"z4iSwIorrpMlJtCaMJpP"},{"year":"2012","format":"","name":"John Smith Memorial Mace Open_Semiss","id":"z8sKt4cp3p6o9gyqVckZ"},{"year":"2017","format":"","name":"2017 Pan-American Universities Debating Championship","id":"zE81kJP5wPjz5f8QxBQV"},{"name":"John Smith Memorial Mace - Scottish Finals","year":"2016","format":"","id":"zMiO27j6MljLBqYitUqu"},{"year":"2012","name":"Tilbury House IV","format":"","id":"zNrcKb4T08IU7LfuYSUz"},{"year":"2014","format":"","name":"Strathclyde Cup","id":"zNyImaL5diiDsd93AVoW"},{"year":"2016","name":"Erasmus Rotterdam Open","format":"","id":"zUT5H7Cgh7l0a0sJSIba"},{"format":"","year":"2016","name":"Seattle IV","id":"zZRXGDm7RC8LjYJKzubm"},{"name":"John Smith Memorial Mace - Scottish Leg","format":"","year":"2014","id":"zaDEkUUEN76e9CaS6Qty"},{"name":"Durham IV","format":"","year":"2017","id":"zbDMNQdzWmUf0FHPwYDO"},{"format":"","year":"2013","name":"SSE Riga IV","id":"zcO3QSYEVhsJojnUCCNl"},{"format":"","name":"Northumbria Open","year":"2014","id":"zeR0rFnynHhmmEJ04jfo"},{"name":"John Smith Memorial Irish Mace Round 1","format":"","year":"2011","id":"zfN2kWrxLoJHeZkogdk2"},{"year":"2020","format":"","name":"BRAC Genders Online","id":"zidC2m00xOQF4gT3tgiY"},{"year":"2013","format":"","name":"Gutenberg Cup","id":"zkcJOcuUSlxmaS6nsMl7"},{"name":"Irish Times Debates","format":"","year":"2012","id":"zkhDsyR1rpDZXDiA2JUj"},{"name":"Kiev Open","year":"2011","format":"","id":"zm3L9uKWbGV2QY1WRlcJ"},{"year":"2021","name":"Da Nang Debate Open","format":"AP","id":"znXRdnU2llK8fXmHlci5"},{"format":"","name":"De La Salle WUDC","year":"2012","id":"zngB1WF8viOW2uGu6swZ"},{"year":"2016","name":"Liverpool IV","format":"","id":"zpoYhp2wK06V8pO2Ljrp"},{"format":"","year":"2013","name":"French Debating Association Tournament","id":"zppT86F7lAE0Gpp7tWYo"},{"format":"","year":"2011","name":"Irish Times Debates First Round","id":"zuRiVYzOUi3PjRiq6W3C"}] \ No newline at end of file diff --git a/src/core/constants/tourneys.json b/src/core/constants/tourneys.json new file mode 100644 index 0000000..6d71dd5 --- /dev/null +++ b/src/core/constants/tourneys.json @@ -0,0 +1,4422 @@ +[ + { + "name": "Debate for Donation Open", + "format": "", + "year": "2020" + }, + { + "name": "Helsinki Open", + "format": "", + "year": "2020" + }, + { + "name": "Imitation Cup", + "format": "", + "year": "2020" + }, + { + "name": "IUBDC Rational Wrangle", + "format": "", + "year": "2020" + }, + { + "name": "BDC Pre-Worlds", + "format": "", + "year": "2020" + }, + { + "name": "Karachi Debate Open", + "format": "", + "year": "2020" + }, + { + "name": "Tilbury House Online Ope", + "format": "", + "year": " 2.0" + }, + { + "name": "Pop Culture Grand Prix", + "format": "", + "year": "2020" + }, + { + "name": "Yale NUS Pro Ams", + "format": "", + "year": "2020" + }, + { + "name": "The Grand Spar September", + "format": "", + "year": "2020" + }, + { + "name": "Argumentum Open", + "format": "", + "year": "2020" + }, + { + "name": "MonDO", + "format": "", + "year": "2020" + }, + { + "name": "SEC Schools Championship", + "format": "", + "year": "2020" + }, + { + "name": "Zagreb Random Pro Am", + "format": "", + "year": "2020" + }, + { + "name": "Alternate Pre-ABP", + "format": "", + "year": "2020" + }, + { + "name": "WSDC Practice Spars", + "format": "", + "year": "2020" + }, + { + "name": "Victoria's Cup", + "format": "", + "year": "2020" + }, + { + "name": "Cross-DebSoc Pre-ABP Tournament", + "format": "", + "year": "2020" + }, + { + "name": "IBA DU Nations League", + "format": "", + "year": "2020" + }, + { + "name": "East Coast Asians", + "format": "", + "year": "2020" + }, + { + "name": "Feminism Open", + "format": "", + "year": "2020" + }, + { + "name": "MIDP Round Robin", + "format": "", + "year": "2020" + }, + { + "name": "The Novice Debate", + "format": "", + "year": "2020" + }, + { + "name": "Wilderness Open", + "format": "", + "year": "2020" + }, + { + "name": "Link Bate Championship III", + "format": "", + "year": "2020" + }, + { + "name": "Princeton Round Robin", + "format": "", + "year": "2020" + }, + { + "name": "Westminster Debating Championships", + "format": "", + "year": "2020" + }, + { + "name": "DSDC Coherence", + "format": "", + "year": "2020" + }, + { + "name": "The Grand Spar August", + "format": "", + "year": "2020" + }, + { + "name": "Astana EUDC", + "format": "", + "year": "2020" + }, + { + "name": "Taylor's Debate Open", + "format": "", + "year": "2020" + }, + { + "name": "Indian Womxn's Debating Championship", + "format": "", + "year": "2020" + }, + { + "name": "KCL Online Open", + "format": "", + "year": "2020" + }, + { + "name": "Womxn and Gender Minorities Online Debate Open", + "format": "", + "year": "2020" + }, + { + "name": "Access Debate Tournament", + "format": "", + "year": "2020" + }, + { + "name": "An Najah Arabic Novice Online Debates", + "format": "", + "year": "2020" + }, + { + "name": "The Debate Open", + "format": "", + "year": "2020" + }, + { + "name": "Doxbridge 2: Euros Bungaloo", + "format": "", + "year": "2020" + }, + { + "name": "Monash Australs", + "format": "", + "year": "2020" + }, + { + "name": "Borneo Online Debate Championship", + "format": "", + "year": "2020" + }, + { + "name": "CP Nationals", + "format": "", + "year": "2020" + }, + { + "name": "ASDO", + "format": "", + "year": "2020" + }, + { + "name": "DGBDS Mace", + "format": "", + "year": "2020" + }, + { + "name": "St Petersburg Online Open", + "format": "", + "year": "2020" + }, + { + "name": "Suzhou Debate Open", + "format": "", + "year": "2020" + }, + { + "name": "The Grand Spar July", + "format": "", + "year": "2020" + }, + { + "name": "Lockdown.Exe Debate League", + "format": "", + "year": "2020" + }, + { + "name": "Imperial IV", + "format": "", + "year": "2020" + }, + { + "name": "Restricted Mara Open", + "format": "", + "year": "2020" + }, + { + "name": "Saskatoon WSDC", + "format": "", + "year": "2020" + }, + { + "name": "UBC Fundraiser Open", + "format": "", + "year": "2020" + }, + { + "name": "Astana Debate Union Online", + "format": "", + "year": "2020" + }, + { + "name": "Evodio Online Open", + "format": "", + "year": "2020" + }, + { + "name": "Hong Kong Pro Ams", + "format": "", + "year": "2020" + }, + { + "name": "Sarawak Schools Online Debating Championship", + "format": "", + "year": "2020" + }, + { + "name": "India Debate Open AP", + "format": "", + "year": "2020" + }, + { + "name": "Cyberpunk IV", + "format": "", + "year": "2020" + }, + { + "name": "Gwalia Open", + "format": "", + "year": "2020" + }, + { + "name": "Macquarie Open", + "format": "", + "year": "2020" + }, + { + "name": "NTU Debate Online Open", + "format": "", + "year": "2020" + }, + { + "name": "BRAC Genders Online", + "format": "", + "year": "2020" + }, + { + "name": "Sumatra Online Debate Open", + "format": "", + "year": "2020" + }, + { + "name": "Trinity Online Open", + "format": "", + "year": "2020" + }, + { + "name": "Cross Deb Soc Practice Tournament Ed. 1", + "format": "", + "year": "2020" + }, + { + "name": "The Grand Spar June", + "format": "", + "year": "2020" + }, + { + "name": "Circuit Breaker Debate Open", + "format": "", + "year": "2020" + }, + { + "name": "Tilbury House Online Open", + "format": "", + "year": "2020" + }, + { + "name": "Whippersnappa Pre-Australs", + "format": "", + "year": "2020" + }, + { + "name": "Eastern Online IV", + "format": "", + "year": "2020" + }, + { + "name": "Taiwan Online Debate Open", + "format": "", + "year": "2020" + }, + { + "name": "Astana Debate Union Open", + "format": "", + "year": "2020" + }, + { + "name": "VITDT Round Robin", + "format": "", + "year": "2020" + }, + { + "name": "Deree Invitational LIX", + "format": "", + "year": "2020" + }, + { + "name": "Parassat Open", + "format": "", + "year": "2020" + }, + { + "name": "Ullens Online", + "format": "", + "year": "2020" + }, + { + "name": "Asia Queer Open", + "format": "", + "year": "2020" + }, + { + "name": "Doxbridge Online Open", + "format": "", + "year": "2020" + }, + { + "name": "Jurassic IV", + "format": "", + "year": "2020" + }, + { + "name": "The Grand Spar May", + "format": "", + "year": "2020" + }, + { + "name": "Axiom Debate Open", + "format": "", + "year": "2020" + }, + { + "name": "Central European Cyberspace Open", + "format": "", + "year": "2020" + }, + { + "name": "Asia E-Debate Challenge", + "format": "", + "year": "2020" + }, + { + "name": "Cinnamon Scroll", + "format": "", + "year": "2020" + }, + { + "name": "EUDC Challenge IV", + "format": "", + "year": "2020" + }, + { + "name": "Berlin Online IV", + "format": "", + "year": "2020" + }, + { + "name": "Lord Discup's Cup", + "format": "", + "year": "2020" + }, + { + "name": "Erasmus Rotterdam Open", + "format": "", + "year": "2020" + }, + { + "name": "Downpour Open", + "format": "", + "year": "2020" + }, + { + "name": "Commonwealth Debating Championship", + "format": "", + "year": "2020" + }, + { + "name": "Zagreb Open", + "format": "", + "year": "2020" + }, + { + "name": "Manchester IV", + "format": "", + "year": "2020" + }, + { + "name": "LUMS IV", + "format": "", + "year": "2020" + }, + { + "name": "Northams", + "format": "", + "year": "2020" + }, + { + "name": "Bishop Anthony Lobo Championship", + "format": "", + "year": "2020" + }, + { + "name": "Thailand WUDC", + "format": "", + "year": "2020" + }, + { + "name": "UFMG IV", + "format": "", + "year": "2019" + }, + { + "name": "PAUDC Akofena", + "format": "", + "year": "2019" + }, + { + "name": "Seattle IV", + "format": "", + "year": "2019" + }, + { + "name": "HWS Round Robin", + "format": "", + "year": "2018" + }, + { + "name": "HWS Round Robin", + "format": "", + "year": "2019" + }, + { + "name": "Prague Open", + "format": "", + "year": "2019" + }, + { + "name": "All-Nigeria Universities Debate Championship", + "format": "", + "year": "2019" + }, + { + "name": "UBC IV", + "format": "", + "year": "2019" + }, + { + "name": "New Zealand BP Debating Championships", + "format": "", + "year": "2019" + }, + { + "name": "Rocky Mountain Championships", + "format": "", + "year": "2019" + }, + { + "name": "Ljubljana IV", + "format": "", + "year": "2019" + }, + { + "name": "Hart House IV", + "format": "", + "year": "2019" + }, + { + "name": "Bard IV", + "format": "", + "year": "2019" + }, + { + "name": "The Karachi Cup", + "format": "", + "year": "2019" + }, + { + "name": "WW III", + "format": "", + "year": "2019" + }, + { + "name": "Joynt Scroll", + "format": "", + "year": "2019" + }, + { + "name": "The Lyceum Debating Championship", + "format": "", + "year": "2019" + }, + { + "name": "Feminism Open", + "format": "", + "year": "2019" + }, + { + "name": "Athens EUDC", + "format": "", + "year": "2019" + }, + { + "name": "European Round Robin", + "format": "", + "year": "2019" + }, + { + "name": "DU IV", + "format": "", + "year": "2019" + }, + { + "name": "Poznan Open", + "format": "", + "year": "2019" + }, + { + "name": "Tilbury House Cologne Open", + "format": "", + "year": "2019" + }, + { + "name": "Vienna IV", + "format": "", + "year": "2019" + }, + { + "name": "Cambridge IV", + "format": "", + "year": "2019" + }, + { + "name": "Easters", + "format": "", + "year": "2019" + }, + { + "name": "Cracow Open", + "format": "", + "year": "2019" + }, + { + "name": "USUDC", + "format": "", + "year": "2019" + }, + { + "name": "America's Cup", + "format": "", + "year": "2019" + }, + { + "name": "Deree Invitational LVII", + "format": "", + "year": "2019" + }, + { + "name": "LUMS Asians' Debate Open", + "format": "", + "year": "2019" + }, + { + "name": "Estonia Debate Open", + "format": "", + "year": "2019" + }, + { + "name": "Barcelona Debating Open", + "format": "", + "year": "2019" + }, + { + "name": "Muslim Interscholastic Tournament", + "format": "", + "year": "2019" + }, + { + "name": "Pan American Debating Championships", + "format": "", + "year": "2019" + }, + { + "name": "Colgate Open", + "format": "", + "year": "2019" + }, + { + "name": "NAW*DC", + "format": "", + "year": "2019" + }, + { + "name": "Budapest Open", + "format": "", + "year": "2019" + }, + { + "name": "Empire Debates", + "format": "", + "year": "2019" + }, + { + "name": "Munich Research Open", + "format": "", + "year": "2019" + }, + { + "name": "Leiden Open", + "format": "", + "year": "2019" + }, + { + "name": "Manchester IV", + "format": "", + "year": "2019" + }, + { + "name": "GWU IV / US Universities Debate Eastern Championship", + "format": "", + "year": "2019" + }, + { + "name": "PEP IV", + "format": "", + "year": "2019" + }, + { + "name": "FLTRP Training Beijing Debate Open", + "format": "", + "year": "2019" + }, + { + "name": "Cornell Novice Nationals 2019 & Cornell IV", + "format": "", + "year": "2019" + }, + { + "name": "UDP Open", + "format": "", + "year": "2019" + }, + { + "name": "Berkeley IV", + "format": "", + "year": "2019" + }, + { + "name": "The PES Debate Open", + "format": "", + "year": "2019" + }, + { + "name": "Northams", + "format": "", + "year": "2019" + }, + { + "name": "Western Washington University", + "format": "", + "year": "2019" + }, + { + "name": "Brad Smith Debate Tournament", + "format": "", + "year": "2019" + }, + { + "name": "York IV", + "format": "", + "year": "2019" + }, + { + "name": "Campus-Debatte Wien", + "format": "", + "year": "2019" + }, + { + "name": "Cape Town WUDC", + "format": "", + "year": "2019" + }, + { + "name": "Birmingham IV", + "format": "", + "year": "2018" + }, + { + "name": "Riga IV", + "format": "", + "year": "2018" + }, + { + "name": "PAUDC Tanzania", + "format": "", + "year": "2018" + }, + { + "name": "Brandeis IV", + "format": "", + "year": "2018" + }, + { + "name": "Seattle IV", + "format": "", + "year": "2018" + }, + { + "name": "Cambridge IV", + "format": "", + "year": "2018" + }, + { + "name": "UCLA IV", + "format": "", + "year": "2018" + }, + { + "name": "Oxford IV", + "format": "", + "year": "2018" + }, + { + "name": "Huber Debates", + "format": "", + "year": "2018" + }, + { + "name": "Penguin Invitational", + "format": "", + "year": "2018" + }, + { + "name": "IUT Professionals", + "format": "", + "year": "2018" + }, + { + "name": "New Zealand BP Debating Championships", + "format": "", + "year": "2018" + }, + { + "name": "Tilbury House Cologne Open", + "format": "", + "year": "2018" + }, + { + "name": "Yale IV", + "format": "", + "year": "2018" + }, + { + "name": "Sofia Open", + "format": "", + "year": "2018" + }, + { + "name": "Rocky Mountain IV", + "format": "", + "year": "2018" + }, + { + "name": "Joensuu Mini", + "format": "", + "year": "2018" + }, + { + "name": "Roosevelt Open", + "format": "", + "year": "2018" + }, + { + "name": "GV Debate", + "format": "", + "year": "2018" + }, + { + "name": "Hart House Inter-Varsity", + "format": "", + "year": "2018" + }, + { + "name": "China BP", + "format": "", + "year": "2018" + }, + { + "name": "Denver IV", + "format": "", + "year": "2018" + }, + { + "name": "HWS IV", + "format": "", + "year": "2018" + }, + { + "name": "Mehran Debating Championship", + "format": "", + "year": "2018" + }, + { + "name": "All-Nigeria Universities Debating Championship (ANUDC), University of Ilorin", + "format": "", + "year": "2018" + }, + { + "name": "McGill Central Novice Championship", + "format": "", + "year": "2018" + }, + { + "name": "Cedar College Debating Championship", + "format": "", + "year": "2018" + }, + { + "name": "Jewell Debate Tournament", + "format": "", + "year": "2018" + }, + { + "name": "Israel's English Cup", + "format": "", + "year": "2018" + }, + { + "name": "Joynt Scroll", + "format": "", + "year": "2018" + }, + { + "name": "The Nixor College Debating Championship", + "format": "", + "year": "2018" + }, + { + "name": "Joynt Scroll (NZ Prepared Debating Tournament)", + "format": "", + "year": "2018" + }, + { + "name": "Macau Tournament of Champions BP IV", + "format": "", + "year": "2018" + }, + { + "name": "Novi Sad EUDC", + "format": "", + "year": "2018" + }, + { + "name": "Split Open", + "format": "", + "year": "2018" + }, + { + "name": "KCL Open", + "format": "", + "year": "2018" + }, + { + "name": "Novi Sad Open", + "format": "", + "year": "2018" + }, + { + "name": "1st Copa Leones de Debate (CLD) at University of Guadalajara", + "format": "", + "year": "2018" + }, + { + "name": "MDX Open", + "format": "", + "year": "2018" + }, + { + "name": "Nottingham Trent Open", + "format": "", + "year": "2018" + }, + { + "name": "Athens Open", + "format": "", + "year": "2018" + }, + { + "name": "Maynooth Open", + "format": "", + "year": "2018" + }, + { + "name": "NLUO BPD", + "format": "", + "year": "2018" + }, + { + "name": "NZ Easters", + "format": "", + "year": "2018" + }, + { + "name": "KUET IV", + "format": "", + "year": "2018" + }, + { + "name": "Shanghai International Debate Open", + "format": "", + "year": "2018" + }, + { + "name": "The Beacon Debating Club", + "format": "", + "year": "2018" + }, + { + "name": "Empire Debates", + "format": "", + "year": "2018" + }, + { + "name": "North America Womxn's and Gender Minorities' Debate Championship", + "format": "", + "year": "2018" + }, + { + "name": "Pan Pacific Debate Championship", + "format": "", + "year": "2018" + }, + { + "name": "US Western Regional Championship", + "format": "", + "year": "2018" + }, + { + "name": "Western Regionals", + "format": "", + "year": "2018" + }, + { + "name": "Manchester IV", + "format": "", + "year": "2018" + }, + { + "name": "USC IV", + "format": "", + "year": "2018" + }, + { + "name": "UBC IV", + "format": "", + "year": "2018" + }, + { + "name": "York IV", + "format": "", + "year": "2018" + }, + { + "name": "Inner Temple IV", + "format": "", + "year": "2018" + }, + { + "name": "Northams", + "format": "", + "year": "2018" + }, + { + "name": "Mexico WUDC", + "format": "", + "year": "2018" + }, + { + "name": "Mexican Open", + "format": "", + "year": "2017" + }, + { + "name": "UNESCO Hong Kong SDG Debating Tournament", + "format": "", + "year": "2017" + }, + { + "name": "Leiden Novices' Tournament", + "format": "", + "year": "2017" + }, + { + "name": "Seattle IV", + "format": "", + "year": "2017" + }, + { + "name": "Sheffield IV", + "format": "", + "year": "2017" + }, + { + "name": "Lund IV", + "format": "", + "year": "2017" + }, + { + "name": "Newcastle IV", + "format": "", + "year": "2017" + }, + { + "name": "Munich Open", + "format": "", + "year": "2017" + }, + { + "name": "NEAO", + "format": "", + "year": "2017" + }, + { + "name": "Cambridge IV", + "format": "", + "year": "2017" + }, + { + "name": "BDC Pro Ams", + "format": "", + "year": "2017" + }, + { + "name": "FinEst 100 Open", + "format": "", + "year": "2017" + }, + { + "name": "Oxford IV", + "format": "", + "year": "2017" + }, + { + "name": "Durham IV", + "format": "", + "year": "2017" + }, + { + "name": "Huber Debates", + "format": "", + "year": "2017" + }, + { + "name": "Penguin Invitational at Dominican University", + "format": "", + "year": "2017" + }, + { + "name": "KCL IV", + "format": "", + "year": "2017" + }, + { + "name": "Strathclyde President's Cup", + "format": "", + "year": "2017" + }, + { + "name": "Denver IV", + "format": "", + "year": "2017" + }, + { + "name": "Olimpia di Debate", + "format": "", + "year": "2017" + }, + { + "name": "Hart House IV", + "format": "", + "year": "2017" + }, + { + "name": "SDSU", + "format": "", + "year": "2017" + }, + { + "name": "HWS North American Universities Debating Championsip", + "format": "", + "year": "2017" + }, + { + "name": "Helsinki Freshers' ProAm", + "format": "", + "year": "2017" + }, + { + "name": "IIT Bombay IV", + "format": "", + "year": "2017" + }, + { + "name": "Brad Smith Debate Tournament", + "format": "", + "year": "2017" + }, + { + "name": "La Salle IV", + "format": "", + "year": "2017" + }, + { + "name": "Hollatz Debates", + "format": "", + "year": "2017" + }, + { + "name": "Guangdong Debate Challenge", + "format": "", + "year": "2017" + }, + { + "name": "Tallin EUDC", + "format": "", + "year": "2017" + }, + { + "name": "World Schools Debating Championship,", + "format": "", + "year": "2017" + }, + { + "name": "Newcastle Mixed Doubles", + "format": "", + "year": "2017" + }, + { + "name": "Trinity Open", + "format": "", + "year": "2017" + }, + { + "name": "International Competition for Young Debaters, Finals Day,", + "format": "", + "year": "2017" + }, + { + "name": "NZ Easters", + "format": "", + "year": "2017" + }, + { + "name": "HWS Round Robin", + "format": "", + "year": "2017" + }, + { + "name": "PEP IV", + "format": "", + "year": "2017" + }, + { + "name": "Colgate Open", + "format": "", + "year": "2017" + }, + { + "name": "Empire Debates", + "format": "", + "year": "2017" + }, + { + "name": "Western Regionals", + "format": "", + "year": "2017" + }, + { + "name": "Tricity Mini", + "format": "", + "year": "2017" + }, + { + "name": "North American Women & Gender Minorities Debating Championship", + "format": "", + "year": "2017" + }, + { + "name": "KL Open Challenge", + "format": "", + "year": "2017" + }, + { + "name": "Pan-American Universities Debating Championship", + "format": "", + "year": "2017" + }, + { + "name": "Budapest Open", + "format": "", + "year": "2017" + }, + { + "name": "Riga Mini, 2nd edition", + "format": "", + "year": "2017" + }, + { + "name": "Leiden Open", + "format": "", + "year": "2017" + }, + { + "name": "GWU Eastern Championships", + "format": "", + "year": "2017" + }, + { + "name": "cornell novice nationals and tournament of love", + "format": "", + "year": "2017" + }, + { + "name": "Galway Open", + "format": "", + "year": "2017" + }, + { + "name": "Riga mini", + "format": "", + "year": "2017" + }, + { + "name": "Shahjiwana International Debating IV", + "format": "", + "year": "2017" + }, + { + "name": "Trinity IV", + "format": "", + "year": "2017" + }, + { + "name": "Dutch WUDC", + "format": "", + "year": "2017" + }, + { + "name": "Birmingham IV", + "format": "", + "year": "2016" + }, + { + "name": "Riga IV", + "format": "", + "year": "2016" + }, + { + "name": "Sheffield IV", + "format": "", + "year": "2016" + }, + { + "name": "Seattle IV", + "format": "", + "year": "2016" + }, + { + "name": "Moscow Open", + "format": "", + "year": "2016" + }, + { + "name": "Cork IV", + "format": "", + "year": "2016" + }, + { + "name": "Tilbury House IV", + "format": "", + "year": "2016" + }, + { + "name": "CMS Cambridge Women's Open", + "format": "", + "year": "2016" + }, + { + "name": "New Zealand BP Debating Championships", + "format": "", + "year": "2016" + }, + { + "name": "Cambridge IV", + "format": "", + "year": "2016" + }, + { + "name": "Oxford IV", + "format": "", + "year": "2016" + }, + { + "name": "Chittagong University IV", + "format": "", + "year": "2016" + }, + { + "name": "Indian Schools Debating Society Chennai Leagues,", + "format": "", + "year": "2016" + }, + { + "name": "Yale IV", + "format": "", + "year": "2016" + }, + { + "name": "Huber Debates", + "format": "", + "year": "2016" + }, + { + "name": "JADE College Cup", + "format": "", + "year": "2016" + }, + { + "name": "Belgrade Open", + "format": "", + "year": "2016" + }, + { + "name": "Munich Open", + "format": "", + "year": "2016" + }, + { + "name": "The QUB Open", + "format": "", + "year": "2016" + }, + { + "name": "Helsinki Mini", + "format": "", + "year": "2016" + }, + { + "name": "SOAS IV", + "format": "", + "year": "2016" + }, + { + "name": "Trivium Tournament", + "format": "", + "year": "2016" + }, + { + "name": "North American Universities Debating Championships", + "format": "", + "year": "2016" + }, + { + "name": "Roosevelt Open", + "format": "", + "year": "2016" + }, + { + "name": "Imperial Novices", + "format": "", + "year": "2016" + }, + { + "name": "Edinburgh Cup", + "format": "", + "year": "2016" + }, + { + "name": "Imperial Open", + "format": "", + "year": "2016" + }, + { + "name": "Hart House IV", + "format": "", + "year": "2016" + }, + { + "name": "Riga Pro-Am", + "format": "", + "year": "2016" + }, + { + "name": "UCL President’s Cup", + "format": "", + "year": "2016" + }, + { + "name": "UCD IV", + "format": "", + "year": "2016" + }, + { + "name": "UCD Novice", + "format": "", + "year": "2016" + }, + { + "name": "ISIC", + "format": "", + "year": "2016" + }, + { + "name": "Aztec Invitational", + "format": "", + "year": "2016" + }, + { + "name": "HWS IV", + "format": "", + "year": "2016" + }, + { + "name": "Northeast Regional Opener 2016 Brad Smith Debate Tournament", + "format": "", + "year": "2016" + }, + { + "name": "Red Sea Open", + "format": "", + "year": "2016" + }, + { + "name": "Istanbul Meridyen Debating Academy", + "format": "", + "year": "2016" + }, + { + "name": "Warsaw EUDC", + "format": "", + "year": "2016" + }, + { + "name": "SSE Riga Debate Academy", + "format": "", + "year": "2016" + }, + { + "name": "Newcastle Mixed Doubles", + "format": "", + "year": "2016" + }, + { + "name": "Bristol Open", + "format": "", + "year": "2016" + }, + { + "name": "Dutch Mace 2016 (The Netherlands)", + "format": "", + "year": "2016" + }, + { + "name": "Helsinki Open", + "format": "", + "year": "2016" + }, + { + "name": "The Baillie Gifford Oxford Women's Open", + "format": "", + "year": "2016" + }, + { + "name": "Maastricht Open", + "format": "", + "year": "2016" + }, + { + "name": "Cardiff Open", + "format": "", + "year": "2016" + }, + { + "name": "GUU Womens", + "format": "", + "year": "2016" + }, + { + "name": "GUU Ancients", + "format": "", + "year": "2016" + }, + { + "name": "HWS Round Robin", + "format": "", + "year": "2016" + }, + { + "name": "NZ Easters", + "format": "", + "year": "2016" + }, + { + "name": "Durham Australs", + "format": "", + "year": "2016" + }, + { + "name": "Canadian BP Nationals", + "format": "", + "year": "2016" + }, + { + "name": "Erasmus Rotterdam Open", + "format": "", + "year": "2016" + }, + { + "name": "Liverpool IV", + "format": "", + "year": "2016" + }, + { + "name": "UCL Clifford Chance IV", + "format": "", + "year": "2016" + }, + { + "name": "Budapest Open", + "format": "", + "year": "2016" + }, + { + "name": "Surrey IV", + "format": "", + "year": "2016" + }, + { + "name": "Lancaster IV", + "format": "", + "year": "2016" + }, + { + "name": "UL Open", + "format": "", + "year": "2016" + }, + { + "name": "Leiden Open", + "format": "", + "year": "2016" + }, + { + "name": "North American Women's (@ Hart House)", + "format": "", + "year": "2016" + }, + { + "name": "Nottingham Open", + "format": "", + "year": "2016" + }, + { + "name": "The Queen’s Annual TRUST IV", + "format": "", + "year": "2016" + }, + { + "name": "Kyiv Open", + "format": "", + "year": "2016" + }, + { + "name": "Manchester IV", + "format": "", + "year": "2016" + }, + { + "name": "LSE Open", + "format": "", + "year": "2016" + }, + { + "name": "Swansea Open", + "format": "", + "year": "2016" + }, + { + "name": "ICYD- Oxford Round", + "format": "", + "year": "2016" + }, + { + "name": "John Smith Memorial Mace - English Leg", + "format": "", + "year": "2016" + }, + { + "name": "John Smith Memorial Mace - Scottish Finals", + "format": "", + "year": "2016" + }, + { + "name": "Warwick IV", + "format": "", + "year": "2016" + }, + { + "name": "Trinity IV", + "format": "", + "year": "2016" + }, + { + "name": "Trinity Women's Open", + "format": "", + "year": "2016" + }, + { + "name": "Queen Mary IV", + "format": "", + "year": "2016" + }, + { + "name": "University of Latvia Open", + "format": "", + "year": "2016" + }, + { + "name": "York IV", + "format": "", + "year": "2016" + }, + { + "name": "Inner Temple IV", + "format": "", + "year": "2016" + }, + { + "name": "NorthAms", + "format": "", + "year": "2016" + }, + { + "name": "London Pro-Am", + "format": "", + "year": "2016" + }, + { + "name": "Brandeis IV", + "format": "", + "year": "2016" + }, + { + "name": "Thessaloniki WUDC", + "format": "", + "year": "2016" + }, + { + "name": "Birmingham IV", + "format": "", + "year": "2015" + }, + { + "name": "SSE Riga IV", + "format": "", + "year": "2015" + }, + { + "name": "Brandeis IV", + "format": "", + "year": "2015" + }, + { + "name": "Canadian British Parliamentary Championships (@ York University)", + "format": "", + "year": "2015" + }, + { + "name": "Cambridge Women's Open", + "format": "", + "year": "2015" + }, + { + "name": "Brad Smith Debate Tournament", + "format": "", + "year": "2015" + }, + { + "name": "JADE College Cup", + "format": "", + "year": "2015" + }, + { + "name": "Cambridge IV", + "format": "", + "year": "2015" + }, + { + "name": "McMaster Pro-Am", + "format": "", + "year": "2015" + }, + { + "name": "Birmingham ESL Novice Mini", + "format": "", + "year": "2015" + }, + { + "name": "SSE Practice Tournament", + "format": "", + "year": "2015" + }, + { + "name": "Guindon Cup (University of Ottawa)", + "format": "", + "year": "2015" + }, + { + "name": "Oxford IV", + "format": "", + "year": "2015" + }, + { + "name": "Westminster Open", + "format": "", + "year": "2015" + }, + { + "name": "Tilbury House IV", + "format": "", + "year": "2015" + }, + { + "name": "New Zealand BP Debating Championships", + "format": "", + "year": "2015" + }, + { + "name": "Chancellor's Cup (Queen's University)", + "format": "", + "year": "2015" + }, + { + "name": "HWS Fall Classic", + "format": "", + "year": "2015" + }, + { + "name": "SOAS IV", + "format": "", + "year": "2015" + }, + { + "name": "KCL IV", + "format": "", + "year": "2015" + }, + { + "name": "Hart House IV", + "format": "", + "year": "2015" + }, + { + "name": "Claremont", + "format": "", + "year": "2015" + }, + { + "name": "UCD IV", + "format": "", + "year": "2015" + }, + { + "name": "Yale IV", + "format": "", + "year": "2015" + }, + { + "name": "McGill Novice", + "format": "", + "year": "2015" + }, + { + "name": "Joynt Scroll", + "format": "", + "year": "2015" + }, + { + "name": "Athens Open", + "format": "", + "year": "2015" + }, + { + "name": "Vienna EUDC", + "format": "", + "year": "2015" + }, + { + "name": "Ljubljana IV", + "format": "", + "year": "2015" + }, + { + "name": "Rijeka Open", + "format": "", + "year": "2015" + }, + { + "name": "SOAS Open", + "format": "", + "year": "2015" + }, + { + "name": "UCT 150th Year Open", + "format": "", + "year": "2015" + }, + { + "name": "EuroDebate", + "format": "", + "year": "2015" + }, + { + "name": "BBU Open", + "format": "", + "year": "2015" + }, + { + "name": "Tallinn Tech Open", + "format": "", + "year": "2015" + }, + { + "name": "English Open", + "format": "", + "year": "2015" + }, + { + "name": "SSE Riga Debate Academy", + "format": "", + "year": "2015" + }, + { + "name": "Tech Open", + "format": "", + "year": "2015" + }, + { + "name": "Tech Open", + "format": "", + "year": "2016" + }, + { + "name": "Tech Open", + "format": "", + "year": "2017" + }, + { + "name": "Tech Open", + "format": "", + "year": "2018" + }, + { + "name": "Tech Open", + "format": "", + "year": "2019" + }, + { + "name": "BRAC Bank Great Gender Debates", + "format": "", + "year": "2015" + }, + { + "name": "Drishty English Debate Championships", + "format": "", + "year": "2015" + }, + { + "name": "Israeli Open Championship", + "format": "", + "year": "2015" + }, + { + "name": "Sabanci University International Debate Open", + "format": "", + "year": "2015" + }, + { + "name": "Helsinki Open", + "format": "", + "year": "2015" + }, + { + "name": "Cape Town Open", + "format": "", + "year": "2015" + }, + { + "name": "Vidzeme Open", + "format": "", + "year": "2015" + }, + { + "name": "HWS Round Robin", + "format": "", + "year": "2015" + }, + { + "name": "Estonian Open", + "format": "", + "year": "2015" + }, + { + "name": "Cardiff Open", + "format": "", + "year": "2015" + }, + { + "name": "Copenhagen Open", + "format": "", + "year": "2015" + }, + { + "name": "National Maidens", + "format": "", + "year": "2015" + }, + { + "name": "NAUDC (@ Ithaca College)", + "format": "", + "year": "2015" + }, + { + "name": "Cardiff Schools", + "format": "", + "year": "2015" + }, + { + "name": "Leiden Open", + "format": "", + "year": "2015" + }, + { + "name": "DWF Manchester IV", + "format": "", + "year": "2015" + }, + { + "name": "Norton Rose Fulbright Warwick IV", + "format": "", + "year": "2015" + }, + { + "name": "AIB Trinity IV", + "format": "", + "year": "2015" + }, + { + "name": "NorthAms (@ NYU)", + "format": "", + "year": "2015" + }, + { + "name": "Rotterdam Open", + "format": "", + "year": "2015" + }, + { + "name": "Malaysia WUDC", + "format": "", + "year": "2015" + }, + { + "name": "Birmingham IV", + "format": "", + "year": "2014" + }, + { + "name": "SSE Riga IV", + "format": "", + "year": "2014" + }, + { + "name": "Westminster Open", + "format": "", + "year": "2014" + }, + { + "name": "Canadian British Parliamentary Championships (@ Western University)", + "format": "", + "year": "2014" + }, + { + "name": "Moscow Open", + "format": "", + "year": "2014" + }, + { + "name": "McMaster Pro-Am", + "format": "", + "year": "2014" + }, + { + "name": "Cambridge Women’s", + "format": "", + "year": "2014" + }, + { + "name": "Yorkshire Novice Cup", + "format": "", + "year": "2014" + }, + { + "name": "Cicero Debattoernooi", + "format": "", + "year": "2014" + }, + { + "name": "Guindon Cup (University of Ottawa)", + "format": "", + "year": "2014" + }, + { + "name": "Cambridge IV", + "format": "", + "year": "2014" + }, + { + "name": "Oxford IV", + "format": "", + "year": "2014" + }, + { + "name": "Durham Open", + "format": "", + "year": "2014" + }, + { + "name": "Skopje Open", + "format": "", + "year": "2014" + }, + { + "name": "Tilbury House", + "format": "", + "year": "2014" + }, + { + "name": "Chancellor's Cup (Queen's University)", + "format": "", + "year": "2014" + }, + { + "name": "New Zealand BP Debating Championships", + "format": "", + "year": "2014" + }, + { + "name": "Thessaloniki Open", + "format": "", + "year": "2014" + }, + { + "name": "SDA Novices", + "format": "", + "year": "2014" + }, + { + "name": "Bogwall (SSDC Novices)", + "format": "", + "year": "2014" + }, + { + "name": "Belgrade Open", + "format": "", + "year": "2014" + }, + { + "name": "SOAS IV", + "format": "", + "year": "2014" + }, + { + "name": "Strathclyde Cup", + "format": "", + "year": "2014" + }, + { + "name": "Roosevelt Open", + "format": "", + "year": "2014" + }, + { + "name": "Turku Open", + "format": "", + "year": "2014" + }, + { + "name": "Hart House IV", + "format": "", + "year": "2014" + }, + { + "name": "UCL President’s Cup", + "format": "", + "year": "2014" + }, + { + "name": "Yale IV", + "format": "", + "year": "2014" + }, + { + "name": "Edinburgh Cup", + "format": "", + "year": "2014" + }, + { + "name": "McGill Novice", + "format": "", + "year": "2014" + }, + { + "name": "Joynt Scroll", + "format": "", + "year": "2014" + }, + { + "name": "Zagreb EUDC", + "format": "", + "year": "2014" + }, + { + "name": "Ljubljana IV", + "format": "", + "year": "2014" + }, + { + "name": "Rijeka Open", + "format": "", + "year": "2014" + }, + { + "name": "Westminster IV", + "format": "", + "year": "2014" + }, + { + "name": "Bielefeld Religion debate tournament", + "format": "", + "year": "2014" + }, + { + "name": "Imperial IV", + "format": "", + "year": "2014" + }, + { + "name": "NCH International Relations Open", + "format": "", + "year": "2014" + }, + { + "name": "Campeonato Mundial Universitario de Debate en Español (CMUDE)", + "format": "", + "year": "2014" + }, + { + "name": "Boddencup", + "format": "", + "year": "2014" + }, + { + "name": "Earlsfort Open", + "format": "", + "year": "2014" + }, + { + "name": "HeidelBÄM", + "format": "", + "year": "2014" + }, + { + "name": "Bulgaria Open", + "format": "", + "year": "2014" + }, + { + "name": "BBU Open", + "format": "", + "year": "2014" + }, + { + "name": "Methusalem Cup", + "format": "", + "year": "2014" + }, + { + "name": "Heart of Europe BP", + "format": "", + "year": "2014" + }, + { + "name": "Eloquentiatoernooi (Eloquence tournament)", + "format": "", + "year": "2014" + }, + { + "name": "Jena Frauenturnier (Women’s tournament)", + "format": "", + "year": "2014" + }, + { + "name": "Newcastle Mixed Doubles Open", + "format": "", + "year": "2014" + }, + { + "name": "Monroe Cup", + "format": "", + "year": "2014" + }, + { + "name": "Bristol Open", + "format": "", + "year": "2014" + }, + { + "name": "Deutsche Debattiermeisterschaft (German Language Debating Championships)", + "format": "", + "year": "2014" + }, + { + "name": "Tilbury House Novice", + "format": "", + "year": "2014" + }, + { + "name": "Riga Debate Academy", + "format": "", + "year": "2014" + }, + { + "name": "TechOpen", + "format": "", + "year": "2014" + }, + { + "name": "Neckarwiesen Cup", + "format": "", + "year": "2014" + }, + { + "name": "Trivium Debattoernooi", + "format": "", + "year": "2014" + }, + { + "name": "Helsinki Open", + "format": "", + "year": "2014" + }, + { + "name": "French Language World Championships Debating", + "format": "", + "year": "2014" + }, + { + "name": "Frishlingscup", + "format": "", + "year": "2014" + }, + { + "name": "Kalliope Debattoernooi", + "format": "", + "year": "2014" + }, + { + "name": "Cape Town Open", + "format": "", + "year": "2014" + }, + { + "name": "IDEA League of Young Voters European Cup", + "format": "", + "year": "2014" + }, + { + "name": "Copenhagen Open", + "format": "", + "year": "2014" + }, + { + "name": "Zeit Debatte Mainz", + "format": "", + "year": "2014" + }, + { + "name": "Hull Open", + "format": "", + "year": "2014" + }, + { + "name": "North-East German Regional Championships", + "format": "", + "year": "2014" + }, + { + "name": "South German Regional Championships", + "format": "", + "year": "2014" + }, + { + "name": "VUAS Debate tournament", + "format": "", + "year": "2014" + }, + { + "name": "West German Regional Championships", + "format": "", + "year": "2014" + }, + { + "name": "Paris Open", + "format": "", + "year": "2014" + }, + { + "name": "Aberdeen Open", + "format": "", + "year": "2014" + }, + { + "name": "HSE Open", + "format": "", + "year": "2014" + }, + { + "name": "Kent IV", + "format": "", + "year": "2014" + }, + { + "name": "Berlin IV", + "format": "", + "year": "2014" + }, + { + "name": "Estonian Open", + "format": "", + "year": "2014" + }, + { + "name": "SSE Riga Practice Tournament", + "format": "", + "year": "2014" + }, + { + "name": "Aberystwyth Open", + "format": "", + "year": "2014" + }, + { + "name": "NK Debatteren (Dutch National Championships)", + "format": "", + "year": "2014" + }, + { + "name": "Northumbria Open", + "format": "", + "year": "2014" + }, + { + "name": "HWS Round Robin", + "format": "", + "year": "2014" + }, + { + "name": "Paris V French Debating Association Tournament final", + "format": "", + "year": "2014" + }, + { + "name": "Cardiff Open", + "format": "", + "year": "2014" + }, + { + "name": "Copenhagen Mini Open", + "format": "", + "year": "2014" + }, + { + "name": "Heriott Watt Open", + "format": "", + "year": "2014" + }, + { + "name": "National Maiden’s", + "format": "", + "year": "2014" + }, + { + "name": "Zeit Debatte Wien", + "format": "", + "year": "2014" + }, + { + "name": "Southampton Open", + "format": "", + "year": "2014" + }, + { + "name": "Exeter Open", + "format": "", + "year": "2014" + }, + { + "name": "Liverpool IV", + "format": "", + "year": "2014" + }, + { + "name": "NK Beleidsdebatteren (Dutch Policy Debate Championships)", + "format": "", + "year": "2014" + }, + { + "name": "Arandjelovac Open", + "format": "", + "year": "2014" + }, + { + "name": "DCU Open", + "format": "", + "year": "2014" + }, + { + "name": "Royal Holloway Open", + "format": "", + "year": "2014" + }, + { + "name": "Bucharest Cup", + "format": "", + "year": "2014" + }, + { + "name": "Reedhoven Cup", + "format": "", + "year": "2014" + }, + { + "name": "UCL IV", + "format": "", + "year": "2014" + }, + { + "name": "NAUDC (@ HWS College)", + "format": "", + "year": "2014" + }, + { + "name": "Paris V French Debating Association Tournament Open_Semis", + "format": "", + "year": "2014" + }, + { + "name": "Pre-Pristina Open", + "format": "", + "year": "2014" + }, + { + "name": "Leeds Open", + "format": "", + "year": "2014" + }, + { + "name": "Mainzer Debütanten Cup", + "format": "", + "year": "2014" + }, + { + "name": "UL Open", + "format": "", + "year": "2014" + }, + { + "name": "Vienna IV", + "format": "", + "year": "2014" + }, + { + "name": "Glasgow Women’s", + "format": "", + "year": "2014" + }, + { + "name": "Glasgow Ancients", + "format": "", + "year": "2014" + }, + { + "name": "Helsinki Mini", + "format": "", + "year": "2014" + }, + { + "name": "Marburger Geschichte Turnier (History Tournament)", + "format": "", + "year": "2014" + }, + { + "name": "Nottingham Open", + "format": "", + "year": "2014" + }, + { + "name": "Tallaight IV", + "format": "", + "year": "2014" + }, + { + "name": "Budapest Open", + "format": "", + "year": "2014" + }, + { + "name": "Irish Times Final", + "format": "", + "year": "2014" + }, + { + "name": "Leubke Cup (@ Brock University)", + "format": "", + "year": "2014" + }, + { + "name": "Leiden Open", + "format": "", + "year": "2014" + }, + { + "name": "Manchester IV", + "format": "", + "year": "2014" + }, + { + "name": "Tornadu", + "format": "", + "year": "2014" + }, + { + "name": "Bonapartiaans Debattoernooi", + "format": "", + "year": "2014" + }, + { + "name": "Irish Times Debates Open_Semis", + "format": "", + "year": "2014" + }, + { + "name": "LSE Open", + "format": "", + "year": "2014" + }, + { + "name": "Irish National Law Debates", + "format": "", + "year": "2014" + }, + { + "name": "North American Women's (@ McGill University)", + "format": "", + "year": "2014" + }, + { + "name": "Reading No-Notes Open", + "format": "", + "year": "2014" + }, + { + "name": "Dutch Mace", + "format": "", + "year": "2014" + }, + { + "name": "John Smith Memorial Mace Scotland", + "format": "", + "year": "2014" + }, + { + "name": "Lancaster IV", + "format": "", + "year": "2014" + }, + { + "name": "NorthAms (@ Carleton University)", + "format": "", + "year": "2014" + }, + { + "name": "Warwick IV", + "format": "", + "year": "2014" + }, + { + "name": "Brabants Debattoernooi", + "format": "", + "year": "2014" + }, + { + "name": "York IV", + "format": "", + "year": "2014" + }, + { + "name": "Trinity IV", + "format": "", + "year": "2014" + }, + { + "name": "Paris V", + "format": "", + "year": "2014" + }, + { + "name": "Irish Times Debates Round 2", + "format": "", + "year": "2014" + }, + { + "name": "London Pro-Am IV", + "format": "", + "year": "2014" + }, + { + "name": "Nottingham Trent Open", + "format": "", + "year": "2014" + }, + { + "name": "Zeit Debatte Dresden", + "format": "", + "year": "2014" + }, + { + "name": "Brandeis IV", + "format": "", + "year": "2014" + }, + { + "name": "Chennai WUDC", + "format": "", + "year": "2014" + }, + { + "name": "Decemberac (beginners tournament)", + "format": "", + "year": "2013" + }, + { + "name": "Birmingham IV", + "format": "", + "year": "2013" + }, + { + "name": "Jerusalem Open", + "format": "", + "year": "2013" + }, + { + "name": "Tournament without a name (Macedonian-Greek exchange tournament)", + "format": "", + "year": "2013" + }, + { + "name": "KCL IV", + "format": "", + "year": "2013" + }, + { + "name": "Leiden Novice Tournament", + "format": "", + "year": "2013" + }, + { + "name": "Streitkultur Cup", + "format": "", + "year": "2013" + }, + { + "name": "BGU IV", + "format": "", + "year": "2013" + }, + { + "name": "Tilbury House IV", + "format": "", + "year": "2013" + }, + { + "name": "John Smith Memorial Mace Welsh leg", + "format": "", + "year": "2013" + }, + { + "name": "Sheffield IV", + "format": "", + "year": "2013" + }, + { + "name": "Tournament of Champions", + "format": "", + "year": "2013" + }, + { + "name": "Brandeis IV", + "format": "", + "year": "2013" + }, + { + "name": "Centrale IV", + "format": "", + "year": "2013" + }, + { + "name": "Lund IV", + "format": "", + "year": "2013" + }, + { + "name": "Moscow Open", + "format": "", + "year": "2013" + }, + { + "name": "Warsaw Open", + "format": "", + "year": "2013" + }, + { + "name": "English Cup", + "format": "", + "year": "2013" + }, + { + "name": "Bristol ProAM", + "format": "", + "year": "2013" + }, + { + "name": "Newcastle IV", + "format": "", + "year": "2013" + }, + { + "name": "Nikolausturnier", + "format": "", + "year": "2013" + }, + { + "name": "Schroeter Cup", + "format": "", + "year": "2013" + }, + { + "name": "SSE Riga IV", + "format": "", + "year": "2013" + }, + { + "name": "Cork IV", + "format": "", + "year": "2013" + }, + { + "name": "IDAS Tournament", + "format": "", + "year": "2013" + }, + { + "name": "Iron Man tournament", + "format": "", + "year": "2013" + }, + { + "name": "UCU Open", + "format": "", + "year": "2013" + }, + { + "name": "Cork Invitational", + "format": "", + "year": "2013" + }, + { + "name": "Cicero Toernooi", + "format": "", + "year": "2013" + }, + { + "name": "John Smith Memorial Mace", + "format": "", + "year": "2013" + }, + { + "name": "Tübingen Herbst Debatten", + "format": "", + "year": "2013" + }, + { + "name": "Yorkshire Novices", + "format": "", + "year": "2013" + }, + { + "name": "Zeit Debatte Frankfurt", + "format": "", + "year": "2013" + }, + { + "name": "Canadian BP Championships (@ McMaster University)", + "format": "", + "year": "2013" + }, + { + "name": "Schwarzwald Cup", + "format": "", + "year": "2013" + }, + { + "name": "Bogwall", + "format": "", + "year": "2013" + }, + { + "name": "Cambridge IV", + "format": "", + "year": "2013" + }, + { + "name": "Oxford IV", + "format": "", + "year": "2013" + }, + { + "name": "UK Debate Challenge", + "format": "", + "year": "2013" + }, + { + "name": "Debatijada Open", + "format": "", + "year": "2013" + }, + { + "name": "Guindon Cup (University of Ottawa)", + "format": "", + "year": "2013" + }, + { + "name": "Vienna Freshers", + "format": "", + "year": "2013" + }, + { + "name": "Durham IV", + "format": "", + "year": "2013" + }, + { + "name": "Welsh Novices", + "format": "", + "year": "2013" + }, + { + "name": "Chancellor's Cup (Queen's University)", + "format": "", + "year": "2013" + }, + { + "name": "New Zealand BP Debating Championships", + "format": "", + "year": "2013" + }, + { + "name": "SDA Open", + "format": "", + "year": "2013" + }, + { + "name": "UBC IV", + "format": "", + "year": "2013" + }, + { + "name": "SDA Novice Competition", + "format": "", + "year": "2013" + }, + { + "name": "Dutch Masters", + "format": "", + "year": "2013" + }, + { + "name": "Imperial Open", + "format": "", + "year": "2013" + }, + { + "name": "Middle Man tournament", + "format": "", + "year": "2013" + }, + { + "name": "NAMDA Novice Cup", + "format": "", + "year": "2013" + }, + { + "name": "Strathclyde Presidents Cup", + "format": "", + "year": "2013" + }, + { + "name": "McMaster Pro-Am", + "format": "", + "year": "2013" + }, + { + "name": "Turku Open", + "format": "", + "year": "2013" + }, + { + "name": "UCD Vice President’s Cup", + "format": "", + "year": "2013" + }, + { + "name": "UCD Novice Cup", + "format": "", + "year": "2013" + }, + { + "name": "Simpsons Open", + "format": "", + "year": "2013" + }, + { + "name": "SOAS IV", + "format": "", + "year": "2013" + }, + { + "name": "Open de Debates de Lisboa", + "format": "", + "year": "2013" + }, + { + "name": "US National Open", + "format": "", + "year": "2013" + }, + { + "name": "EBS Open", + "format": "", + "year": "2013" + }, + { + "name": "Roosevelt Academy Open", + "format": "", + "year": "2013" + }, + { + "name": "Yale IV", + "format": "", + "year": "2013" + }, + { + "name": "Edinburgh Cup", + "format": "", + "year": "2013" + }, + { + "name": "Gutenberg Cup", + "format": "", + "year": "2013" + }, + { + "name": "McGill Novice", + "format": "", + "year": "2013" + }, + { + "name": "DDG Masters Cup", + "format": "", + "year": "2013" + }, + { + "name": "Red Sea Open", + "format": "", + "year": "2013" + }, + { + "name": "Joynt Scroll", + "format": "", + "year": "2013" + }, + { + "name": "Commonwealth Open (Australs style)", + "format": "", + "year": "2013" + }, + { + "name": "Manchester EUDC", + "format": "", + "year": "2013" + }, + { + "name": "DAPDI", + "format": "", + "year": "2013" + }, + { + "name": "SOAS invitational", + "format": "", + "year": "2013" + }, + { + "name": "SOAS Open", + "format": "", + "year": "2013" + }, + { + "name": "Heart of Europe British Parliamentary Debate track", + "format": "", + "year": "2013" + }, + { + "name": "Bodden Cup", + "format": "", + "year": "2013" + }, + { + "name": "Patras Open", + "format": "", + "year": "2013" + }, + { + "name": "Campeonato Mundial Universitario de Debate en Español (CMUDE or Worlds in Spanish)", + "format": "", + "year": "2013" + }, + { + "name": "Earlsfort Open", + "format": "", + "year": "2013" + }, + { + "name": "Frischlingscup", + "format": "", + "year": "2013" + }, + { + "name": "Imperial No Notes Open", + "format": "", + "year": "2013" + }, + { + "name": "English Open", + "format": "", + "year": "2013" + }, + { + "name": "Mix Team (pro-am tournament)", + "format": "", + "year": "2013" + }, + { + "name": "ULU Westminster IV", + "format": "", + "year": "2013" + }, + { + "name": "Essex IV", + "format": "", + "year": "2013" + }, + { + "name": "Vienna Mini", + "format": "", + "year": "2013" + }, + { + "name": "Elbe Open", + "format": "", + "year": "2013" + }, + { + "name": "Berlin IV", + "format": "", + "year": "2013" + }, + { + "name": "GDPPC Open", + "format": "", + "year": "2013" + }, + { + "name": "Bristol Open", + "format": "", + "year": "2013" + }, + { + "name": "Riga Debate Academy", + "format": "", + "year": "2013" + }, + { + "name": "Deutschsprachige Debattiermeisterschaft", + "format": "", + "year": "2013" + }, + { + "name": "History Tournament", + "format": "", + "year": "2013" + }, + { + "name": "Brüder Grimm Cup", + "format": "", + "year": "2013" + }, + { + "name": "Belgrade Open", + "format": "", + "year": "2013" + }, + { + "name": "Kalliope Debattoernooi", + "format": "", + "year": "2013" + }, + { + "name": "Denny Crane", + "format": "", + "year": "2013" + }, + { + "name": "Oxford Women’s Open", + "format": "", + "year": "2013" + }, + { + "name": "Stockholm IV", + "format": "", + "year": "2013" + }, + { + "name": "Zeit Debatte Aachen", + "format": "", + "year": "2013" + }, + { + "name": "Kyiv Open", + "format": "", + "year": "2013" + }, + { + "name": "Cambridge Invitational", + "format": "", + "year": "2013" + }, + { + "name": "Jacobs Open", + "format": "", + "year": "2013" + }, + { + "name": "Open de Minho", + "format": "", + "year": "2013" + }, + { + "name": "Split Open", + "format": "", + "year": "2013" + }, + { + "name": "SdDUP Debate changing Europe round 1", + "format": "", + "year": "2013" + }, + { + "name": "Dutch National Championships", + "format": "", + "year": "2013" + }, + { + "name": "German Regional Championships North-East", + "format": "", + "year": "2013" + }, + { + "name": "German Regional Championships South (Austria and Switzerland)", + "format": "", + "year": "2013" + }, + { + "name": "German Regional Championships West", + "format": "", + "year": "2013" + }, + { + "name": "Hull Open", + "format": "", + "year": "2013" + }, + { + "name": "John Smith Memorial Mace International Final", + "format": "", + "year": "2013" + }, + { + "name": "Nordic Debating Championships", + "format": "", + "year": "2013" + }, + { + "name": "Coimbra Debate changing Europe round", + "format": "", + "year": "2013" + }, + { + "name": "UTAD Debate changing Europe round", + "format": "", + "year": "2013" + }, + { + "name": "HSE Open", + "format": "", + "year": "2013" + }, + { + "name": "Estonian Open", + "format": "", + "year": "2013" + }, + { + "name": "Potsdam Puls Punk", + "format": "", + "year": "2013" + }, + { + "name": "Transatlantic Debating Championships", + "format": "", + "year": "2013" + }, + { + "name": "Paris Open", + "format": "", + "year": "2013" + }, + { + "name": "DCU Open", + "format": "", + "year": "2013" + }, + { + "name": "HWS Round Robin", + "format": "", + "year": "2013" + }, + { + "name": "Heriot Watt Open", + "format": "", + "year": "2013" + }, + { + "name": "Kent IV", + "format": "", + "year": "2013" + }, + { + "name": "St Petersburg Debating Open", + "format": "", + "year": "2013" + }, + { + "name": "French Debating Association Final", + "format": "", + "year": "2013" + }, + { + "name": "Estonian BP Championships", + "format": "", + "year": "2013" + }, + { + "name": "Exeter Open", + "format": "", + "year": "2013" + }, + { + "name": "Mykolas Romeris University (MRU) IV", + "format": "", + "year": "2013" + }, + { + "name": "Irish National Maidens", + "format": "", + "year": "2013" + }, + { + "name": "Leiden Open", + "format": "", + "year": "2013" + }, + { + "name": "Zalgiris Cup", + "format": "", + "year": "2013" + }, + { + "name": "Zeit Debatte Marburg", + "format": "", + "year": "2013" + }, + { + "name": "Feminism and Gender Tournament", + "format": "", + "year": "2013" + }, + { + "name": "Royal Holloway Open", + "format": "", + "year": "2013" + }, + { + "name": "Berlin-Brandenburgischen-Meisterschaften (Championships)", + "format": "", + "year": "2013" + }, + { + "name": "Bucharest Universities Debating Cup", + "format": "", + "year": "2013" + }, + { + "name": "Czech and Slovak Championships", + "format": "", + "year": "2013" + }, + { + "name": "John Smith Memorial Irish Mace Open_Final", + "format": "", + "year": "2013" + }, + { + "name": "UCL IV", + "format": "", + "year": "2013" + }, + { + "name": "VUAS Debate Tournament", + "format": "", + "year": "2013" + }, + { + "name": "NAUDC (also Hart House IV)", + "format": "", + "year": "2013" + }, + { + "name": "Leeds Open", + "format": "", + "year": "2013" + }, + { + "name": "Southampton Open", + "format": "", + "year": "2013" + }, + { + "name": "Vienna IV", + "format": "", + "year": "2013" + }, + { + "name": "French Debating Association Open_Semiss", + "format": "", + "year": "2013" + }, + { + "name": "John Smith Memorial Mace (Ireland Open_Semis)", + "format": "", + "year": "2013" + }, + { + "name": "Nottingham Open", + "format": "", + "year": "2013" + }, + { + "name": "Budapest Open", + "format": "", + "year": "2013" + }, + { + "name": "Glasgow Ancients", + "format": "", + "year": "2013" + }, + { + "name": "UL Open", + "format": "", + "year": "2013" + }, + { + "name": "Manchester IV", + "format": "", + "year": "2013" + }, + { + "name": "Polish Parliamentary Debating Championships", + "format": "", + "year": "2013" + }, + { + "name": "Edinburgh IV", + "format": "", + "year": "2013" + }, + { + "name": "IDEA-DTU", + "format": "", + "year": "2013" + }, + { + "name": "LSE Open", + "format": "", + "year": "2013" + }, + { + "name": "The Galway Open (Irish National Law Debates)", + "format": "", + "year": "2013" + }, + { + "name": "Österreichischen Debattier Meisterschaft (Austrian Debate Championships)", + "format": "", + "year": "2013" + }, + { + "name": "Sciences Po Open", + "format": "", + "year": "2013" + }, + { + "name": "Warwick IV", + "format": "", + "year": "2013" + }, + { + "name": "Inner Temple IV", + "format": "", + "year": "2013" + }, + { + "name": "Irish Times Open_Semis", + "format": "", + "year": "2013" + }, + { + "name": "Beginner Tournament Mainz (DCJG)", + "format": "", + "year": "2013" + }, + { + "name": "Rotterdam BP toernooi", + "format": "", + "year": "2013" + }, + { + "name": "York IV", + "format": "", + "year": "2013" + }, + { + "name": "Rotterdam BP Toernooi", + "format": "", + "year": "2013" + }, + { + "name": "Trinity IV", + "format": "", + "year": "2013" + }, + { + "name": "French Debating Association Tournament", + "format": "", + "year": "2013" + }, + { + "name": "Kingsmill Moore Invitational", + "format": "", + "year": "2013" + }, + { + "name": "Regents’ IV", + "format": "", + "year": "2013" + }, + { + "name": "Nottingham Trent IV", + "format": "", + "year": "2013" + }, + { + "name": "Zeit Debatte Hamburg", + "format": "", + "year": "2013" + }, + { + "name": "Berlin WUDC", + "format": "", + "year": "2013" + }, + { + "name": "IDEA European Cup", + "format": "", + "year": "2012" + }, + { + "name": "Birmingham IV", + "format": "", + "year": "2012" + }, + { + "name": "Centrale Open", + "format": "", + "year": "2012" + }, + { + "name": "The English Cup", + "format": "", + "year": "2012" + }, + { + "name": "Baden-Württemberg", + "format": "", + "year": "2012" + }, + { + "name": "Lancaster IV", + "format": "", + "year": "2012" + }, + { + "name": "SSE Riga & LMT IV", + "format": "", + "year": "2012" + }, + { + "name": "Bristol IV", + "format": "", + "year": "2012" + }, + { + "name": "Tilbury House IV", + "format": "", + "year": "2012" + }, + { + "name": "Irish Times Debates", + "format": "", + "year": "2012" + }, + { + "name": "King’s College IV", + "format": "", + "year": "2012" + }, + { + "name": "Nikolausturnier", + "format": "", + "year": "2012" + }, + { + "name": "BGU IV", + "format": "", + "year": "2012" + }, + { + "name": "Cork IV", + "format": "", + "year": "2012" + }, + { + "name": "Moscow Open", + "format": "", + "year": "2012" + }, + { + "name": "Münster Ironman", + "format": "", + "year": "2012" + }, + { + "name": "IDEA Debate@Europe final event", + "format": "", + "year": "2012" + }, + { + "name": "Cicero Debattoernooi", + "format": "", + "year": "2012" + }, + { + "name": "John Smith Memorial Mace England Leg", + "format": "", + "year": "2012" + }, + { + "name": "IDAS tournament", + "format": "", + "year": "2012" + }, + { + "name": "Lund Debate Challenge", + "format": "", + "year": "2012" + }, + { + "name": "Zeit Debatte Tübingen", + "format": "", + "year": "2012" + }, + { + "name": "John Smith Memorial Mace", + "format": "", + "year": "2012" + }, + { + "name": "Iasi BP Open", + "format": "", + "year": "2012" + }, + { + "name": "Cambridge IV", + "format": "", + "year": "2012" + }, + { + "name": "Brno Open", + "format": "", + "year": "2012" + }, + { + "name": "ESCP Debating Open", + "format": "", + "year": "2012" + }, + { + "name": "Open de Debates da Sociedade de Debates da Universidade de Coimbra (SDUC)", + "format": "", + "year": "2012" + }, + { + "name": "Vienna Freshers", + "format": "", + "year": "2012" + }, + { + "name": "Oxford IV", + "format": "", + "year": "2012" + }, + { + "name": "UK Debate Challenge", + "format": "", + "year": "2012" + }, + { + "name": "Durham IV", + "format": "", + "year": "2012" + }, + { + "name": "Welsh Novices", + "format": "", + "year": "2012" + }, + { + "name": "Newcastle IV", + "format": "", + "year": "2012" + }, + { + "name": "UCU Open", + "format": "", + "year": "2012" + }, + { + "name": "Imperial Open", + "format": "", + "year": "2012" + }, + { + "name": "Namda Novices", + "format": "", + "year": "2012" + }, + { + "name": "UCD Vice-President’s Cup", + "format": "", + "year": "2012" + }, + { + "name": "UCD Novice IV", + "format": "", + "year": "2012" + }, + { + "name": "Bogwall (SSDC Novices)", + "format": "", + "year": "2012" + }, + { + "name": "Dutch Debate Masters", + "format": "", + "year": "2012" + }, + { + "name": "Gutenberg Cup", + "format": "", + "year": "2012" + }, + { + "name": "SOAS IV", + "format": "", + "year": "2012" + }, + { + "name": "Alternative Open", + "format": "", + "year": "2012" + }, + { + "name": "UCL President’s Cup", + "format": "", + "year": "2012" + }, + { + "name": "Edinburgh Cup", + "format": "", + "year": "2012" + }, + { + "name": "Open de Lisboa", + "format": "", + "year": "2012" + }, + { + "name": "DDG Master’s Cup", + "format": "", + "year": "2012" + }, + { + "name": "Roosevelt Academy Open (RA Open)", + "format": "", + "year": "2012" + }, + { + "name": "Red Sea Open", + "format": "", + "year": "2012" + }, + { + "name": "SSE Riga IV", + "format": "", + "year": "2012" + }, + { + "name": "Belgrade EUDC", + "format": "", + "year": "2012" + }, + { + "name": "Mediterranean Universities Debating Championships (Koc University)", + "format": "", + "year": "2012" + }, + { + "name": "IDC Porto Debate Camp and Open", + "format": "", + "year": "2012" + }, + { + "name": "SOAS Open", + "format": "", + "year": "2012" + }, + { + "name": "Boddencup", + "format": "", + "year": "2012" + }, + { + "name": "Imperial Summer IV", + "format": "", + "year": "2012" + }, + { + "name": "Berlin IV", + "format": "", + "year": "2012" + }, + { + "name": "Israeli Nationals", + "format": "", + "year": "2012" + }, + { + "name": "German Language Championships", + "format": "", + "year": "2012" + }, + { + "name": "Iron Man BP Tournament", + "format": "", + "year": "2012" + }, + { + "name": "Bruder Grimm Cup", + "format": "", + "year": "2012" + }, + { + "name": "Dutch Mace", + "format": "", + "year": "2012" + }, + { + "name": "Split Union Open", + "format": "", + "year": "2012" + }, + { + "name": "SSE Riga Debate Academy", + "format": "", + "year": "2012" + }, + { + "name": "“Denny Crane” Faculty of Political Science", + "format": "", + "year": "2012" + }, + { + "name": "Zeit Debatte Munster", + "format": "", + "year": "2012" + }, + { + "name": "Zionism Begin Tournament", + "format": "", + "year": "2012" + }, + { + "name": "International John Smith Memorial Mace Final", + "format": "", + "year": "2012" + }, + { + "name": "Saggsn- Masders", + "format": "", + "year": "2012" + }, + { + "name": "Israeli Open", + "format": "", + "year": "2012" + }, + { + "name": "Mitteldeutschen Regionalmeisterschaft", + "format": "", + "year": "2012" + }, + { + "name": "NK Debatteren", + "format": "", + "year": "2012" + }, + { + "name": "Norddeutschen Regionalmeisterschaft", + "format": "", + "year": "2012" + }, + { + "name": "Süddeutschen Regionalmeisterschaft", + "format": "", + "year": "2012" + }, + { + "name": "Estonia Open", + "format": "", + "year": "2012" + }, + { + "name": "Jacobs Open", + "format": "", + "year": "2012" + }, + { + "name": "Science Po Le Havre IV", + "format": "", + "year": "2012" + }, + { + "name": "USU Open", + "format": "", + "year": "2012" + }, + { + "name": "HSE Open", + "format": "", + "year": "2012" + }, + { + "name": "Paris IV", + "format": "", + "year": "2012" + }, + { + "name": "Schwarzwald Cup", + "format": "", + "year": "2012" + }, + { + "name": "Dutch Open", + "format": "", + "year": "2012" + }, + { + "name": "John Smith Memorial Mace Final", + "format": "", + "year": "2012" + }, + { + "name": "French Debate Association Tournament Final", + "format": "", + "year": "2012" + }, + { + "name": "Heriot-Watt Open", + "format": "", + "year": "2012" + }, + { + "name": "Mykolas Romeris IV", + "format": "", + "year": "2012" + }, + { + "name": "DCU Open", + "format": "", + "year": "2012" + }, + { + "name": "John Smith Memorial Mace Open_Semiss", + "format": "", + "year": "2012" + }, + { + "name": "Debattoernooi Utrecht (DTU)", + "format": "", + "year": "2012" + }, + { + "name": "Zeit Debatte Magdeburg", + "format": "", + "year": "2012" + }, + { + "name": "Vienna IV", + "format": "", + "year": "2012" + }, + { + "name": "French Debate Association Tournament Open_Semiss", + "format": "", + "year": "2012" + }, + { + "name": "Budapest Open", + "format": "", + "year": "2012" + }, + { + "name": "Manchester IV", + "format": "", + "year": "2012" + }, + { + "name": "Aberdeen Open", + "format": "", + "year": "2012" + }, + { + "name": "Final Irish Times", + "format": "", + "year": "2012" + }, + { + "name": "LSE Open", + "format": "", + "year": "2012" + }, + { + "name": "Irish Mace Third Round", + "format": "", + "year": "2012" + }, + { + "name": "Bonapartiaans Debattoernooi Amsterdam (BDT)", + "format": "", + "year": "2012" + }, + { + "name": "Cardiff IV", + "format": "", + "year": "2012" + }, + { + "name": "Galway Open", + "format": "", + "year": "2012" + }, + { + "name": "Aghveryan IV", + "format": "", + "year": "2012" + }, + { + "name": "Irish Times Open_Semiss", + "format": "", + "year": "2012" + }, + { + "name": "Trinity IV", + "format": "", + "year": "2012" + }, + { + "name": "York IV", + "format": "", + "year": "2012" + }, + { + "name": "French Debate Association Tournament Preliminary Rounds", + "format": "", + "year": "2012" + }, + { + "name": "Irish Mace Debates Round 2", + "format": "", + "year": "2012" + }, + { + "name": "Berlin Punk", + "format": "", + "year": "2012" + }, + { + "name": "Rotterdam BP Tournament", + "format": "", + "year": "2012" + }, + { + "name": "Berlin New Year’s Invitational", + "format": "", + "year": "2012" + }, + { + "name": "Oxford Women’s Open", + "format": "", + "year": "2012" + }, + { + "name": "Zeit Debatte Hamburg", + "format": "", + "year": "2012" + }, + { + "name": "De La Salle WUDC", + "format": "", + "year": "2012" + }, + { + "name": "Dutch Novice Cup", + "format": "", + "year": "2011" + }, + { + "name": "Stuttgart IV", + "format": "", + "year": "2011" + }, + { + "name": "SSE Riga IV", + "format": "", + "year": "2011" + }, + { + "name": "Streitcultur Cup", + "format": "", + "year": "2011" + }, + { + "name": "Estonian Pro-Am Tournament", + "format": "", + "year": "2011" + }, + { + "name": "Finnish National Championships", + "format": "", + "year": "2011" + }, + { + "name": "KCL IV", + "format": "", + "year": "2011" + }, + { + "name": "Cork IV", + "format": "", + "year": "2011" + }, + { + "name": "Paris Centrale IV", + "format": "", + "year": "2011" + }, + { + "name": "Cicero Debattoernooi", + "format": "", + "year": "2011" + }, + { + "name": "ESU England Mace", + "format": "", + "year": "2011" + }, + { + "name": "Moscow Open", + "format": "", + "year": "2011" + }, + { + "name": "Zeit Debatte Karlsruhe", + "format": "", + "year": "2011" + }, + { + "name": "IDAS", + "format": "", + "year": "2011" + }, + { + "name": "IDAS Tournament II", + "format": "", + "year": "2011" + }, + { + "name": "Irish Times Round 2", + "format": "", + "year": "2011" + }, + { + "name": "Bogwall", + "format": "", + "year": "2011" + }, + { + "name": "Cambridge IV", + "format": "", + "year": "2011" + }, + { + "name": "Oxford IV", + "format": "", + "year": "2011" + }, + { + "name": "John Smith Memorial Irish Mace Round 1", + "format": "", + "year": "2011" + }, + { + "name": "Durham IV", + "format": "", + "year": "2011" + }, + { + "name": "UCU Open", + "format": "", + "year": "2011" + }, + { + "name": "New Zealand BP Debating Championships", + "format": "", + "year": "2011" + }, + { + "name": "Irish Times Debates First Round", + "format": "", + "year": "2011" + }, + { + "name": "Imperial College Open", + "format": "", + "year": "2011" + }, + { + "name": "NAMDA Novices", + "format": "", + "year": "2011" + }, + { + "name": "UCD VP", + "format": "", + "year": "2011" + }, + { + "name": "SOAS IV", + "format": "", + "year": "2011" + }, + { + "name": "Masters", + "format": "", + "year": "2011" + }, + { + "name": "Edinburgh Cup", + "format": "", + "year": "2011" + }, + { + "name": "Dutch Pro-Am Tournament", + "format": "", + "year": "2011" + }, + { + "name": "Kiev Open", + "format": "", + "year": "2011" + }, + { + "name": "EU-China Youth Debate Tournament", + "format": "", + "year": "2011" + }, + { + "name": "Red Sea Open", + "format": "", + "year": "2011" + }, + { + "name": "Botswana WUDC", + "format": "", + "year": "2011" + }, + { + "name": "SSE Riga IV", + "format": "", + "year": "2010" + }, + { + "name": "Koc WUDC", + "format": "", + "year": "2010" + }, + { + "name": "New Zealand BP Debating Championships", + "format": "", + "year": "2009" + }, + { + "name": "Joynt Scroll", + "format": "", + "year": "2009" + }, + { + "name": "Cork WUDC", + "format": "", + "year": "2009" + }, + { + "name": "New Zealand BP Debating Championships", + "format": "", + "year": "2008" + }, + { + "name": "Assumption WUDC", + "format": "", + "year": "2008" + }, + { + "name": "New Zealand BP Debating Championships", + "format": "", + "year": "2007" + }, + { + "name": "SSE Riga IV", + "format": "", + "year": "2007" + }, + { + "name": "UBC WUDC", + "format": "", + "year": "2007" + }, + { + "name": "SSE Riga IV", + "format": "", + "year": "2006" + }, + { + "name": "SSE Riga IV", + "format": "", + "year": "2005" + }, + { + "name": "SSE Riga Practice Tournament", + "format": "", + "year": "1999" + }, + { + "name": "21st SSE Riga IV", + "format": "", + "year": "" + }, + { + "name": "GGDSD PDC", + "format": "", + "year": "2020" + } +] \ No newline at end of file diff --git a/src/core/constants/vietnameseIDs.json b/src/core/constants/vietnameseIDs.json new file mode 100644 index 0000000..6d8b982 --- /dev/null +++ b/src/core/constants/vietnameseIDs.json @@ -0,0 +1 @@ +["03QXghW0HfhMWSPob1kN","0GMllrkJwSzZ5PQA7qa7","0LNOnqv3I69hSlPPNwp5","0he1P3rh0Yru8nqJYfLB","0mToj6WIehXo2UUxH81X","0srZjwSqh7pLAS2vqCqz","10NMt5aBqtpx8tXn5twV","15kDsm8D3y6h4GK0WQ71","1YV4OlMLbVWzRAzqjS80","1ZECGxl47R5VM8haQLaZ","1bXit50urqG4WZJjNTmC","1eKHPYo4aIv7eJsQqNsD","2AHarnkF6tAqmQTPKhFz","2Z1LmZaoooHpECYG096k","2chkmOaB8oiCkD7rN6mR","2sy5Ei7prDvFhIYsinFE","3GMc17taKEWtlx3UsBdv","3Mv04hw42JC2FZrSNRQF","3j2X9dU6KxjvouPUTykn","3lPVULHP7nfFgX29LLHw","3rx22mSCmVvjTbI4BVzZ","3y1x23RY7CVUBm2vvNJT","447XzKev967DmUm2VqNF","4Bq1VcvCzlo6L4F1X7ov","4GsCd2KVXslLME7PZm8X","4NlvmAzeLCgNaijlZQ3e","4ZcuCFE9kyVuGoDugvhW","5CSVMkFdT8AqjrwWJSrl","5CoHhmJS01QIcLv5v21t","5EyS4m5RgXzWm6Ra6hFk","5U1AZbC5HoVzNgQ83N8F","5X9VQ2ubiUTu7lZ5gAJR","5XiS5tq0g7moovH5rBmQ","5tnKdvYC0im2W7Sj3Rsl","6GAShZ1W3Egp5CWzQNqQ","6NdFlTAxZiGF5f4JWYq1","6VZ67MSbGj2x4t4ANPcR","6YMY6pE2egpQnc925F2O","6nVlgI08pxGebIyh048h","6tqFXMXlcXYxcTFw2xLV","6uxeQofPMP8CevyB1o2f","70FtGDLcGOA8rFWRg4jN","7RDe0dPR02ennz88igxi","7YoXCRlcY0fHNjTpTwHf","7jlT18rd6lHfZSTbA66V","7vHX3ezkLffeUs2z6au5","8RkwUmttlPWE3gX0BxyE","8igUgjeNmo10xIgmWaea","8tzKyvzlEc0kf8FUQ14G","923I7GSEd1KmGki5PhlJ","93UTOIl7hn19X1LjHLNk","99S1JQ0y9j544QHD3oX6","9EGIYbAMv9Oc7Pd9WUFt","9IxQxuzoPyhWyiIXE4EX","9puRMnSfNWKhvmb3sexp","ABjGTzy47ehEKXHhgvxR","AEucVJoLQkXaGHssB1CE","AGHI6QP6fmwdAkChKRH4","AJaQLRdjDB6CcjmpyfO4","AbpSPgOfuAwRUwI8JGDs","BRlmNq8IRNoF1SygrJUq","BV7U92UgyPuTeLefKQdi","BcQyxGysvLOvbM5KETzG","BcuP6PTSn2YyXKGu818B","BnFAjCfsMDrVZL8XDteO","ByUrsVgjafdg9ry3YtYM","C5BbSNdqYIFRBJ5V9DOm","C80S5P2gUbU82ymvg0O8","C9oTQH8wxz9wm003RcPM","CAUzCubS3S8ljrTMxnZ8","CMjY7yuqSPmWMLDrs0pd","CPdQMWAzLUIyzsGe3yGx","CyWF87blHUjwfCx64eE1","DK91CneGxFRrB760yCUQ","DLea9rVnWAGienq3qJUw","DPGdX4h9qxGzQFUkhUQz","DhJMvyC7YzO3rxjb7g8x","E1f5egkdwe3pECUaiVbk","Ed18NtcmNEGWh1JtXMD3","EyMyBWI0MVN9kDBCX7Qj","FAkKdtmvi9Hy43Kf1Jpc","FBUQKYpdFWECYQPLiGNY","FHsZdENUOFfTec4DVspQ","FPcQSALkS6zH0df0CKxO","Fn6GWN4OWiyjikiEYiqe","G452sp5Tcofp6i27oKjW","GAcTLeyMhAQW4gTq95Aj","GDEGSSCxd66crXzmcCLe","Ga1EWKd86NtzYKa9E172","Ghwsoo1fUN0UkaicK0kR","GjogWdpAWQqStpyQvSxj","GuSSMLc5mxg0TsvbqoGd","H9bo9b09QEdeocpB6cGm","HRMMuUhIXxFELSFaPs5F","HWgJl1ZpBmBOkTLqesDG","HWqi6PsKdlxLOIEvmMUx","HnoU0zicNW1CeUOpLXwM","Hp1gNQ10k3WC6DiYDpNp","HzCNdGjcw0HJpezr4dnY","IEOCtUu0EmrU9sMQQWKD","INa60agd7vpeu80eIu6F","IPkgn3alaRjHbcfD6k9x","IQPOYH5F7UbVjrpdTjA4","IWxVCLm7IeIPqO4k39mw","IatNcl4o8surbiGHgvXv","IjgMDHoNFrSVeFqJ7sFE","IsA8tN9ZJI45AhXEhCsf","IsXgJXa8WBtlErDKHsBN","IxXbcO2w825xiKpxIqLd","J0kekG4fdi6z1eZuRvYY","JbUPsFB8JD7uWAy2twBZ","JdQUFUOBTqdqDJZC1aCL","K0KyainVMV2PSYWAtQJv","KJjOTwfCZZW35IFdG6IE","KXVJffalz1fh3U2lRCge","KtmlTKgVN1A9iL9xktTw","LRD7C6kBZQQ536SeUuLz","LdQkdqk6zBsd4MGNrEQB","MIpCoAiJU9kveOUA4McN","N3VHIMJCyhMCnAB29CyS","N9OhKnJcJPhvGfjMQOeZ","NKOUx42zua3vmKcwPBfj","NhDxFSXOY11pdPmiCvxr","NkA0lzWNhJoe7Yt3hed7","NxFkLgawiLqFpF1MqhNt","NyAgf5sF2VTg0anpSOfa","O5e9lYlcwIYwITrsGDvC","ODvn4Z3lrUZophVNDdnY","OJSwyv2yCilpO393rlPx","OPR6ezC6Zm1VIzaAfVN4","OZnunIXxgU2JkctIfGBQ","OggaTcF45ffQp3B26J9a","OlslIiwPbDtmxG4ASVs0","Oo5OHnXOUe4Yu6cfYPR5","PEA7e38tUCaRuLphnm1r","PHFL94cR0fBiSDDiiMPe","PLILZj5nebWLeOHgSHUE","PSRYTun9dnLeJ4kVBsR7","PbqHojBPEudVDWDfTRFI","PfuZDj4WK94iH9laAvQF","PgvRx4tYAS3XBPgRmFZe","Pm5XoxsdISs9LvSLJS7M","PxDGQZ7pqzGJHtdrYLsa","Q7u2yYcZbScvkFEgl5l6","QOv4SA8XKPuzbFyouwyH","QUieI8ya6W3FN6qMS4Ww","QnBqtlp0SooQ1VZsivva","QoUHWT4BcYInj0MFvMQk","QuUubywVVUdR7nuxJLNj","R5bCF7MYP8rhERLiRvoA","RK0fLZdSGUdMzmZGZJmO","RMPyaESLgpOdFcQGhGTI","RTW10Gq4z4TOvZkDy96b","Re2ZKhyAsGxmsbwXHb3B","Rj91xi7BTDaJ5veIFOtp","RtBxkAzdByvVIyAqyq85","S0nrEw59aSBWacu3fAKT","S7mhwOEeUE8BnXzaMwvE","SDhcSf2fD9pmQ0AL6ED8","SE0OLFWm6tREGBOxJdv8","SfDh6KDqErE8Nk0SgVq2","SnqwyJdGAQsOEYrEYqUh","T1vXQ5Znv24x86iSEQpt","T4itddGk1NjW54TD412g","TBxIOktc88nGPjSWvtem","TDXRC2zbFmdBrCRVYZPN","TGDdZYJFTN3HSbRhOpJh","TTXSkzC0nGqNB45oFOeH","TYVBcjFrFJxNAPD9RCE0","Tnq0DehFvy2BRxDOvkLA","TtLLYFXDim2Mojc1X77m","U3nZ4HIkavZ4MbDboXBb","U9WDDYVkYY5T5VXhZ7JQ","UADTDmXvJ79dYPxoA1SD","UGe4Im3ZeMUDuTbtfFjZ","UexT49RkpyW6yooCDhbG","UnjYYEVIntUmGtvuQaMy","V8IbQEmMZC1ueod6BLdy","VUKnqSIrrbSoYGb2TWVQ","VkkzDIR77Sj7eE7krLe2","VoF0ENbZS0JdomgRMelT","VwZgdS4CLWxW2ClT0swo","W1pBcDqRkhiBsfiYeAhC","W36OCrd88rYjHx3b7cSH","WEd5ACgWSikjIl4z2GZO","WF4rg7RWkdSE0lnTFfdU","WGbfGXjSjSv7JpiWSkn0","WLPN0dNWglHaM8zAGAqt","WSgb1f7Zqkzz9C7bjiu0","WZm47OalDTZkaEO9DvQI","WaIwBLTyHpveuqft2qG5","WlBbCDRA5XgrhCBQ3nJx","Wo19pEdjwVqoL3SjuQuJ","WpldUE4VqnTsR9XRdtwJ","Wzdbq7ttXX8ywwR9eRa6","X7tdeovfsBGzvm3v3cnE","XBi5nOdDB4TdFU67gXoi","XIfS2klkQjBZC6kYkRZI","XJ5NFgoUTSYtjbzE13Gf","XURgD38pTnRpt6DObRRV","XgeHQuXUCnmTxukMUoxe","Y08RcvojKROLKLIOgjva","Y1wKMIxctOH1n9nOX2Vx","Y5YThht4KbjQXq7yga8m","YNiQ14WCE1hrDolLknyq","YSS8E5e7ZTx1iWtthAc7","YW71Dn72cT16JdyEtX66","YgLhBaujBrx8MuMZNExl","YjFyfawtKsQM0wLwDwcg","ZzdyL0QvWc3zV18Nyb3a","aAQRH1vrDL866ZOA4G9x","aKX5ElLyXTQX50WiblIW","aTeb3KEnPAP1Fk7ynRak","aTlzFKjXcofper6QCtOP","aWhB2dmwp0EboCkSSmto","at0DCHpfScnkHUSG7guS","b1YFFOUKm2gXFzlGq8Wu","bNCDkD6qgSyPl7c8HrOn","bYQhTGD5zvMsg9a0dYdC","bmzZrcghdbZY47Mnw2SC","bq5CHsFKU8n0ZIj97vzM","c3YaDRAtXFyXPUEa8RD6","cCgDL8xUZCsXWUCbwe1P","cFCs77obazWb6QAPvd5T","cQGmfpxmAkZH8c1Be7KT","cbwxDK2cQbIyCUVHTH9e","cszTwaN3ijPQGhU84M8b","d3nUrAJ0VG0vq3TJrGup","d979GghGqkXN7CobbImH","dC0ETv6345avsT1IsAfL","dGmbAzHH527ZfhhncdXO","dYGNe6ZtokyIA5r7Giac","da8xiJclYrAgdkl63HW8","ddRmeBEIy49sUMhHhZ9l","dyEIbcrs07WBEuoOji1c","e0chJzqTUo0nJZdiA83A","eQ4rwC9mnXgASANAKMSB","eQTFgQrAZvAFi3f9oO7Z","ehT4i7FDuSx7oIFtxLmE","euoh1egihgCUljZn9vyu","f3r8Qa5wiGhkQCroarCM","f3w0ioJsIJ3t3rz4cgV8","fFPz72fBnu8AHrPpYamV","fPvOmEXQmGR7gT7BQ1sm","fg3gkwQCDRzfFn7XC70K","fs5zKuHI4RxeXOEfuuyn","fw72xhg2xkCCKf51UIPR","fy8gC7O2I5RCRWLRxiXU","gc3WTMhUIyb58Q1jPTO9","gd0IhWQk4nkpZjlOr5pg","geTKbc8W7TWDB2ZqFyJd","hDn3fkKIAseI5zB4K1cJ","hFPPJOiXwlPDTd2FLLK5","ho1KXiEprXQKc5UnkUu6","iMxYI8ltuu1utMvePE9a","iblUyqlVCueuBQXbnvOv","iiCCH6HFcg3NFbAMloDz","imyFRaQtw4fJaC1cYMHj","irsD9ZCVpfVhHycVvfhG","j9DFtGi3a1VpRGCSnZwg","jDdN7emCCFACYjHbjdJS","jIx1C3HlfWjLokeAiP05","jOpNyss2ZpONVX65QkQz","jQWjXkcO2RrsCRZWOdH0","jbKc4SuOaWmLrpFMWdlq","jduWw0mt6tB5xZ94xxxO","jgo7CnTvp2Sx9GsaHyYH","ji9ATzzfwlk2RXb2OH6h","jrscUhjBbL6WGEVeWmdl","jtrYM96pExKGEqwNw50L","k4sdLiUMeiTSTFFTpAxg","kGuJWvPvdXmiDamQuhRz","kHiujwDAJvTmRSnurXha","kKqQ3mRGzpRp3BjaLl6b","kRYpc4Pis2CS98vvAmkI","kVoGqJcFQGaZQTNPTJpM","kf3C81SfpPoGndN9uOWP","kh6PmOXdXYC28KEYZL11","kkhcCP72wN1EmNMI5CiY","klIGobdB4HfVTunDbu3g","lNLgfajjbQdvUOHmtzqu","lRbxM1D6Ay5wxmhYtN2H","lTqYlNx2yIcH7yiE6Quf","lU5ivnRUcwCS7w8Nj0YL","lVU8XoB9wkujmVVAd4il","lVfBRIhXekB9Sle0lUfA","lXNQLgRTeer9mJfo3RNa","lvN67T9gkPoHtKn4yxPQ","m220GndL6oFsOr8AhIG9","m6C4ExL8wukPmU2NdCMi","mevsK84iKjuXX6zQLMWF","ml7z9GgsO0Th0hzW7UVr","mwxhqfoqiMXF0J4LC10f","n1PurcaeaR9h4J52DxnO","n1bSR5VhwNxW5LVh6ih9","nAVsY3NeV7NUxizBecIM","nAhBzoKlTO8m4OqSaLqQ","nQPKAoNYfO0Vhgx9UQHJ","nb5McnYfZUlN5KRvFTD5","nhWpNHOdT7UGYg0gy3ye","nsRwmKi9IlI3kXzIj1lz","nu9bNl3jEXPSb3p4EK5v","o6CYFYMy1pe2yAUzwAKT","oGuSd3Cra2KdNyQspzuE","oNAcdDcY7ysQO30XFt8b","obv46ugMxEgNs9iViIJs","onjksA5PO715pOUZfOXh","ooMrM9Mtfz9IataqYFEX","otP1PuBH1iaauNanALqI","pDKhyqzJjzsl86TBnawS","pKOFhLhwQUfSHxSex8Cc","plFQAQdIu19ksm3owXdq","psDzNm7JQ9RxBarOYvYp","psgMqmB2PL0cPOcDfviI","ptSvIOb52Q6Q0WP9inRz","px78sljuF60rjSuCbvkN","qNpVGt4mJdHmyWgPjvnL","qWSSIDHgHjFhaH6dGgO9","qgvKurtFvjqxPAasRh1S","r2Xjvj0T2CNubxEL5UaE","rN4SooSQ7RwDlqufVvSw","rPzSYDwS3FC0fZg03zRy","rh5PgeGGlKrW58l6wYTA","rrzii2NhPV0cn6OiRU16","rsfNwzWX0qGXxrecGS5v","ruIjsJCCReudK25E9yKu","ruWjzXaA9twoIAC7BHfj","s0JvPas972QGoZkJP9oU","s9lCo99j3PDEekyk1E78","sIwOMPYtpxH585XmxijR","sJth83LAevL3QqQkvm2i","tNqLHXcoBqWiAoKNnUnY","tgrf7zdv5doqNk9IqxGN","tjjg4EeRe7RB2CGwiRkx","toYfZJ9ADCmRu6WOzG1I","trVJ5VbQeQCoiwB41Jsc","tsefZa8mGpNwROz3i359","tuHyQEW5apB0uncHyDSA","tz8pM338f1pnO1DWG8Dc","uVhcnjerIgpVWi1JGDrC","uipOzER4D7IJhdpHGg8o","uuJ8d7BsccZehNpysMz0","uwcZJUkV8LIEieLUhHvg","v2ddjb9mGyHRG6BdPLoE","v8zeMFVs6Pb79y4PU6Yw","vLW8Hz4P9pLMtQK4fgfi","vQe2wFcg8vleOPdwEtXP","vavh0WwdESJFw9V1wFQq","vc4nY2oPZPDhwlvyspI1","wEqM44flM6OxDX9A7rov","wHBfseVnkgtRHs71LWq1","wWg1xHJCkXhfkVyvTZCJ","wZUV3uCCfv4iuYI76Cpb","wuBGlCiY7qcAfmZuDcA9","wzQ6j4voGw9i17240nyq","x6o13b8gU931SxwNNIZz","xBQlslh965AvjRwBtMRI","xBoHKJEZixLMf53vXN9g","xD93r7aumJa2ucabsgwh","xFgGwWoDXpt981tTynkW","xHdBWlwOabCmZTDGlxW1","xJeIhKXpo7jZujszkas4","xNfBdU3I7801D3vQGp6G","xViWVKZL40AuKA5D7MrB","xiaBUNK0od6DUzXt0MOR","xqY56S0dmWSI96DtHdA3","xysWLYDzM6IfaCCN2C5o","y6w5U9RnUTUHaOVANwrl","y9SHNSRCfxI19GIcWA17","yF2x3CgtM65ETiL5zp6f","yJKUpCs5GGiqLFdkayI0","ySHBxA9XPKBgycuoXrU6","ySt48Kj7bHJDg5VCfmg1","yW1x6fGLCy1yCVE6RIMv","yYQnGR19dLpPqsusqpwk","ylAxlUp6JO6TLyhtkzWb","ymfm953mJNipaf6Ju4eU","ypaBqZrQbvJf6QtwVtb9","zDikcqWNeJ8xALfllzX9","zIBaWYLQeR7MRnoBROpN","zIDoiSuot5QdvLu8ORPX","zSXyjVaQShjmYbqLfTmj","zWF146zIY1KJvljBBFtx","zk18W5Q1I3pVjNSGYvj0","zlqbsU62RCCnXYPk4IfE","ztkOtdYwP4wJHquDod0v"] \ No newline at end of file diff --git a/src/core/helpers/breakCalculator.js b/src/core/helpers/breakCalculator.js new file mode 100644 index 0000000..84d4f29 --- /dev/null +++ b/src/core/helpers/breakCalculator.js @@ -0,0 +1,74 @@ +export function calculateBreaks({format, teamNumber, roundNumber, breakNumber}){ + var teamarr1 = []; + var teamarr2 = []; + + //All teams at zero points in the beginning. + for (var i=0; i=breakMin){ + totalCount[teamarr[i]]++;; + } + } + return({ + breakCount, totalCount + }) +} diff --git a/src/core/helpers/countMotions.js b/src/core/helpers/countMotions.js new file mode 100644 index 0000000..cb8cc91 --- /dev/null +++ b/src/core/helpers/countMotions.js @@ -0,0 +1,12 @@ +const motionsFromDatabase = require('./data/motionsFromDatabase.json') +let eng = 0, vn = 0; +motionsFromDatabase.forEach(motion => { + if (motion.language == "English") { + eng++; + } + else { + vn++; + } +}) +console.log(`Number of English motions: ${eng}`) +console.log(`Number of Vietnamese motions: ${vn}`) \ No newline at end of file diff --git a/src/core/helpers/createTournamentOptions.js b/src/core/helpers/createTournamentOptions.js new file mode 100644 index 0000000..ff8e9c8 --- /dev/null +++ b/src/core/helpers/createTournamentOptions.js @@ -0,0 +1,46 @@ +const fs = require('fs'); +const tournaments = require('../constants/tournamentsFromDatabase.json'); +const optionsUnsorted = [] +const labels = [] +tournaments.forEach(tournament => { + const name = tournament.name + const year = tournament.year + const id = tournament.id + let label + if (year == "") { + label = name + } + else { + label = `${name} ${year}` + } + labels.push(label) + optionsUnsorted.push({ + value: id, + label: label + }) +}) +labels.sort() +let optionsSorted = [] +labels.forEach(label => { + let id = undefined + optionsUnsorted.forEach(option => { + if (option.label == label) { + id = option.value + } + }) + optionsSorted.push({ + value: id, + label: label + }) +}) +optionsSorted = optionsSorted.filter((obj, index, self) => + index === self.findIndex((el) => el.value === obj.value) +); +const optionsJSON = JSON.stringify(optionsSorted) +fs.writeFile(`../constants/tournamentOptions.json`, optionsJSON, 'utf8', function (err) { + if (err) { + console.log("An error occured while writing JSON Object to File."); + return console.log(err); + } + console.log("JSON file has been saved."); +}); \ No newline at end of file diff --git a/src/core/helpers/endWithDot.js b/src/core/helpers/endWithDot.js new file mode 100644 index 0000000..725557a --- /dev/null +++ b/src/core/helpers/endWithDot.js @@ -0,0 +1,8 @@ +export const endWithDot = (str) => { + if (str.slice(-1) == ".") { + return (str) + } + else { + return (str + ".") + } +} \ No newline at end of file diff --git a/src/core/helpers/fetchPAMotionsJSON.js b/src/core/helpers/fetchPAMotionsJSON.js new file mode 100644 index 0000000..d6aadc5 --- /dev/null +++ b/src/core/helpers/fetchPAMotionsJSON.js @@ -0,0 +1,21 @@ +// const fetch = require("node-fetch"); +const fs = require('fs'); +const run = async () => { + let numCount = 1; + let firstPart = 'https://spreadsheets.google.com/feeds/cells/10_KEaM4jA5tnMPp4OD9eXnR7n_zx3rOtPnw6YW2ww5M/' + let secondPart = '/public/full?alt=json' + for (let i = 1; i<=13; i++) { + const fullURL = `${firstPart}${i}${secondPart}` + const jsonResponse = await fetch(`${fullURL}`); + const jsonData = await jsonResponse.json(); + const jsonString = JSON.stringify(jsonData); + fs.writeFile(`data/${i}.json`, jsonString, 'utf8', function (err) { + if (err) { + console.log("An error occured while writing JSON Object to File."); + return console.log(err); + } + console.log("JSON file has been saved."); + }); + } +} +run(); \ No newline at end of file diff --git a/src/core/helpers/getFormattedTopicsFromValues.js b/src/core/helpers/getFormattedTopicsFromValues.js new file mode 100644 index 0000000..aa08d64 --- /dev/null +++ b/src/core/helpers/getFormattedTopicsFromValues.js @@ -0,0 +1,15 @@ +import { topics } from '../constants/topics' +export const getFormattedTopicsFromValues = (topicValues) => { + let topicArray = {} + topicValues.forEach(topicValue => { + topics.forEach(topicItem => { + if (topicItem.value == topicValue) { + topicArray[`${topicValue}`] = { + check: true, + title: topicItem.label + } + } + }) + }) + return topicArray +} \ No newline at end of file diff --git a/src/core/helpers/getIDs.js b/src/core/helpers/getIDs.js new file mode 100644 index 0000000..728fb63 --- /dev/null +++ b/src/core/helpers/getIDs.js @@ -0,0 +1,27 @@ +const fs = require('fs'); +const motions = require("./data/motionsFromDatabase.json") +const vietnameseIDs = [], englishIDs = []; +motions.forEach(motion => { + if (motion.language == "English") { + englishIDs.push(motion.id); + } + else if (motion.language == "Vietnamese") { + vietnameseIDs.push (motion.id); + } +}) +let englishIDsJSON = JSON.stringify(englishIDs); +let vietnameseIDsJSON = JSON.stringify(vietnameseIDs); +fs.writeFile(`data/vietnameseIDs.json`, vietnameseIDsJSON, 'utf8', function (err) { + if (err) { + console.log("An error occured while writing JSON Object to File."); + return console.log(err); + } + console.log("JSON file has been saved."); +}); +fs.writeFile(`data/englishIDs.json`, englishIDsJSON, 'utf8', function (err) { + if (err) { + console.log("An error occured while writing JSON Object to File."); + return console.log(err); + } + console.log("JSON file has been saved."); +}); \ No newline at end of file diff --git a/src/core/helpers/getTourneyID.js b/src/core/helpers/getTourneyID.js new file mode 100644 index 0000000..52cb779 --- /dev/null +++ b/src/core/helpers/getTourneyID.js @@ -0,0 +1,19 @@ +import { firebaseFirestore } from "../../firebase" +export const getTourneyID = async (name, year, format) => { + let tournamentsRef = firebaseFirestore.collection('tournaments').where('name', '==', name) + if (year != '') { + tournamentsRef = tournamentsRef.where('year', '==', year) + } + if (format != '') { + tournamentsRef = tournamentsRef.where('format', '==', format) + } + const tournamentData = await tournamentsRef.get() + if (tournamentData.docs.length == 0) { + await firebaseFirestore.collection("tournaments").add({ name: name, year: year, format: format }) + const newTournamentData = await tournamentsRef.get() + return newTournamentData.docs[0].id + } + else { + return tournamentData.docs[0].id + } +} \ No newline at end of file diff --git a/src/core/helpers/getTourneyInfo.js b/src/core/helpers/getTourneyInfo.js new file mode 100644 index 0000000..2a5b150 --- /dev/null +++ b/src/core/helpers/getTourneyInfo.js @@ -0,0 +1,18 @@ +import { firebaseFirestore } from "../../firebase" +export const getTourneyInfo = async (id) => { + const tournamentsRef = firebaseFirestore.collection('tournaments').doc(id) + const tournamentData = await tournamentsRef.get(); + if (tournamentData.exists == false) { + return {} + } + else { + const name = tournamentData.data().name + const year = tournamentData.data().year + const format = tournamentData.data().format + return { + name, + year, + format + } + } +} \ No newline at end of file diff --git a/src/core/helpers/index.js b/src/core/helpers/index.js new file mode 100644 index 0000000..1e07f8a --- /dev/null +++ b/src/core/helpers/index.js @@ -0,0 +1,6 @@ +export * from './breakCalculator' +export * from './endWithDot' +export * from './getFormattedTopicsFromValues' +export * from './getTourneyID' +export * from './getTourneyInfo' +export * from './isObject' \ No newline at end of file diff --git a/src/core/helpers/isObject.js b/src/core/helpers/isObject.js new file mode 100644 index 0000000..947134b --- /dev/null +++ b/src/core/helpers/isObject.js @@ -0,0 +1,3 @@ +export function isObject(value) { + return value && typeof value === 'object' && value.constructor === Object; +} \ No newline at end of file diff --git a/src/core/helpers/makeMotions.js b/src/core/helpers/makeMotions.js new file mode 100644 index 0000000..c1fab6e --- /dev/null +++ b/src/core/helpers/makeMotions.js @@ -0,0 +1,41 @@ +const fs = require('fs'); +const motionDataRaw = require('./data/motionDataRaw.json'); +const endWithDot = (str) => { + if (str.slice(-1) == ".") { + return (str) + } + else { + return (str + ".") + } +} +let motions = []; +motionDataRaw.forEach(async (motion) => { + let date = new Date(motion.Date); + let year = date.getFullYear().toString(); + if (year == "NaN") { + year = "" + } + let tournament = motion.Tournament; + let lastFour = tournament.slice(-4) + if (!isNaN(lastFour)) { + year = tournament.slice(-4) + tournament = tournament.slice(0, -5) + } + let id = "" + let content = endWithDot(motion.Motion) + let infoSlide = '' + if (motion.InfoSlide != undefined) { + infoSlide = endWithDot(motion.InfoSlide) + } + const curMot = { tournament: tournament, year: year, format: "", content: content, infoSlide: infoSlide, division: '', language: 'English', link: '', round: motion.Round, topic: {}, tournamentID: id } + motions.push(curMot) +}) +let motionJSON = JSON.stringify(motions) +fs.writeFile(`data/motions.json`, motionJSON, 'utf8', function (err) { + if (err) { + console.log("An error occured while writing JSON Object to File."); + return console.log(err); + } + console.log("JSON file has been saved."); +}); + diff --git a/src/core/helpers/makeTopicsForMotions.js b/src/core/helpers/makeTopicsForMotions.js new file mode 100644 index 0000000..93f3b6c --- /dev/null +++ b/src/core/helpers/makeTopicsForMotions.js @@ -0,0 +1,25 @@ +const topics = require('./data/topics') +const fs = require('fs'); +const topicsForMotions = [] +topics.forEach(topic => { + const topicForMotion = { + value: { + [`${topic.value}`]: { + "check": true, + "title": `${topic.label}` + } + }, + label: `${topic.label}` + } + topicsForMotions.push(topicForMotion) +}) +console.log(topicsForMotions) +let topicsForMotionsJSON = JSON.stringify(topicsForMotions, null, 4) +fs.writeFile(`data/topicsForMotions.js`,`export const topicsForMotions = ${topicsForMotionsJSON}`, 'utf8', function (err) { + if (err) { + console.log("An error occured while writing JSON Object to File."); + return console.log(err); + } + console.log("JSON file has been saved."); +}); + diff --git a/src/core/helpers/makeTourneys.js b/src/core/helpers/makeTourneys.js new file mode 100644 index 0000000..4421a9d --- /dev/null +++ b/src/core/helpers/makeTourneys.js @@ -0,0 +1,64 @@ +//motionDataRaw.json was scraped from hellomotions.com which belongs to Jessica Yung +/* +MIT License + +Copyright (c) 2016 Jessica Yung. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +*/ +const fs = require('fs'); +const _ = require('lodash'); +const motionDataRaw = require('./data/motionDataRaw.json'); +let tourneys = []; +for (let motion of motionDataRaw) { + let date = new Date(motion.Date); + let year = date.getFullYear().toString(); + if (year == "NaN") { + year = "" + } + let tournament = motion.Tournament; + let firstFour = tournament.slice(0,4) + let lastFour = tournament.slice(-4) + if (!isNaN(lastFour)) { + year = lastFour + tournament = tournament.slice(0, -5) + } + if (!isNaN(firstFour)) { + year = firstFour + tournament = tournament.slice(5) + } + let newTournament = { + "name": tournament, + "format": "", + "year": year + } + tourneys.push(newTournament) +} +const uniqueTourneys = _.uniqBy(tourneys, (tourney) => { + return tourney.name + tourney.year +}) +let tourneyJSON = JSON.stringify(uniqueTourneys) +fs.writeFile(`data/tourneys.json`, tourneyJSON, 'utf8', function (err) { + if (err) { + console.log("An error occured while writing JSON Object to File."); + return console.log(err); + } + console.log("JSON file has been saved."); +}); + diff --git a/src/core/hooks/index.js b/src/core/hooks/index.js new file mode 100644 index 0000000..f5d31e4 --- /dev/null +++ b/src/core/hooks/index.js @@ -0,0 +1,4 @@ +export * from './useForm' +export * from './useDeviceBreakPoint' +export * from './useDocumentTitle' +export * from './usePageTracker' \ No newline at end of file diff --git a/src/core/hooks/useDeviceBreakPoint.js b/src/core/hooks/useDeviceBreakPoint.js new file mode 100644 index 0000000..a85c7a8 --- /dev/null +++ b/src/core/hooks/useDeviceBreakPoint.js @@ -0,0 +1,7 @@ +import { useMediaQuery } from 'react-responsive' +export const useDeviceBreakPoint = () => { + const isExtraSmall = useMediaQuery({ maxWidth: 379 }) + const isPhone = useMediaQuery({ minWidth: 380, maxWidth: 425 }) + const isTablet = useMediaQuery({ minWidth: 426, maxWidth: 768 }) + return { isPhone, isTablet, isExtraSmall } +} \ No newline at end of file diff --git a/src/core/hooks/useDocumentTitle.js b/src/core/hooks/useDocumentTitle.js new file mode 100644 index 0000000..3b0173e --- /dev/null +++ b/src/core/hooks/useDocumentTitle.js @@ -0,0 +1,7 @@ +import { useEffect } from 'react' + +export const useDocumentTitle = (title) => { + useEffect(() => { + document.title = title + }, []) +} \ No newline at end of file diff --git a/src/core/hooks/useForm.js b/src/core/hooks/useForm.js new file mode 100644 index 0000000..b369898 --- /dev/null +++ b/src/core/hooks/useForm.js @@ -0,0 +1,15 @@ +import { useState } from 'react' +export const useForm = (defaultFormValues) => { + const [formValue, setFormValue] = useState(defaultFormValues) + function changeFormValue(fieldName, fieldValue) { + setFormValue({ ...formValue, [fieldName]: fieldValue }); + } + function resetFormValue() { + setFormValue(defaultFormValues) + } + return ({ + formValue, + changeFormValue, + resetFormValue, + }) +} \ No newline at end of file diff --git a/src/core/hooks/usePageTracker.js b/src/core/hooks/usePageTracker.js new file mode 100644 index 0000000..261b7a8 --- /dev/null +++ b/src/core/hooks/usePageTracker.js @@ -0,0 +1,10 @@ +import { useEffect } from 'react' +import ReactGA4 from 'react-ga4' // for GA +import ReactGA from 'react-ga' // for UA (old) + +export const usePageTracker = () => { + useEffect(() => { + ReactGA4.send('pageview') + ReactGA.pageview(window.location.pathname) + }, []) +} \ No newline at end of file diff --git a/src/firebase.js b/src/firebase.js new file mode 100644 index 0000000..e8f970e --- /dev/null +++ b/src/firebase.js @@ -0,0 +1,16 @@ +import firebase from 'firebase' +import 'firebase/firebase-auth' +import 'firebase/firestore' + +const firebaseConfig = { + apiKey: process.env.REACT_APP_FIREBASE_API_KEY, + authDomain: process.env.REACT_APP_FIREBASE_AUTH_DOMAIN, + projectId: process.env.REACT_APP_FIREBASE_PROJECT_ID, + storageBucket: process.env.REACT_APP_FIREBASE_STORAGE_BUCKET, + messagingSenderId: process.env.REACT_APP_FIREBASE_MESSAGING_SENDER_ID, + appId: process.env.REACT_APP_FIREBASE_APP_ID +} +// Initialize Firebase +const app = firebase.initializeApp(firebaseConfig) +export const firebaseAuth = app.auth() +export const firebaseFirestore = app.firestore() diff --git a/src/index.css b/src/index.css new file mode 100644 index 0000000..d8bc550 --- /dev/null +++ b/src/index.css @@ -0,0 +1,9 @@ +* { + padding: 0; + margin: 0; + box-sizing: border-box; +} +::selection { + background: #282a35; + color: white; +} diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..901b1a5 --- /dev/null +++ b/src/index.js @@ -0,0 +1,13 @@ +import { createRoot } from 'react-dom/client' +// import ReactGA from 'react-ga' +// import ReactGA4 from 'react-ga4' +import App from './App' +import './index.css' + +const container = document.getElementById('app') +const root = createRoot(container) // createRoot(container!) if you use TypeScript +root.render() +// ReactGA4.initialize(process.env.REACT_APP_GA_TRACKING_ID_WEB) +// ReactGA.initialize('UA-216107831-1', { +// siteSpeedSampleRate: 100 +// }) diff --git a/src/pages/About/About.jsx b/src/pages/About/About.jsx new file mode 100644 index 0000000..aa2a590 --- /dev/null +++ b/src/pages/About/About.jsx @@ -0,0 +1,119 @@ +import { Helmet } from 'react-helmet' +// import MessengerCustomerChat from 'react-messenger-customer-chat' +import { useDeviceBreakPoint, usePageTracker } from '../../core/hooks' +import './style.scss' + +export const About = () => { + const { isPhone, isTablet, isExtraSmall } = useDeviceBreakPoint() + usePageTracker() + return ( +
+ + About + + + + {/* */} +
+
About
+
+ debaters-toolkit is a handy toolkit for all debaters. +
+
+ Search over 7000 motions, calculate break chances or use a free online + timekeeping tool. +
+ {!isExtraSmall ? ( +
+ Help make debaters-toolkit better by contributing code, ideas and + features at its{' '} + + GitHub Repository + + . +
+ ) : ( + <> + )} +
+ Special thanks to the following contributors: +
+
+
+ -{' '} + + Ms. Dieu Linh Hoang + + for giving me the idea ;) +
+
+ -{' '} + + Moji Debate + {' '} + for their{' '} + + Motions for Vietnam Debate Community + + . +
+
+ -{' '} + + Puzzles Ams + {' '} + for their{' '} + + Motion Database 2020-2021 + + . +
+
+
+ Follow me on social media or support my work by becoming a Patron: +
+
+ {/* I no longer use Facebook. */} + + + + {/* I no longer use Twitter. */} + + + + + + + {/* I no longer use Patreon. */} + + + +
+
+
+
+ Licensed under + + MIT license + + . +
+
© 2021 [Quy Anh] «Elliot» Nguyen.
+
+
+ ) +} diff --git a/src/pages/About/style.scss b/src/pages/About/style.scss new file mode 100644 index 0000000..264826a --- /dev/null +++ b/src/pages/About/style.scss @@ -0,0 +1,168 @@ +.about { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + background-color: #535353; + height: 93vh; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + .topStuffs { + height: 83vh; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + width: 100%; + .aboutHeader { + color: white; + font-size: 2rem; + font-weight: bold; + display: flex; + justify-content: center; + } + .contributors { + display: flex; + flex-direction: column; + align-items: flex-start; + .aboutSubHeaderInContributors { + color: white; + margin: 0.25rem; + width: 100%; + #specialATag { + margin-right: 0.25rem; + } + a { + text-decoration: none; + span { + color: white; + margin-left: 0.25rem; + text-decoration: underline; + } + span:hover { + color: #4caf50; + } + } + } + } + .aboutSubHeader { + color: white; + margin: 0.5rem; + display: flex; + justify-content: center; + width: 100%; + #specialATag { + margin-right: 0.25rem; + } + a { + text-decoration: none; + span { + color: white; + margin-left: 0.25rem; + text-decoration: underline; + } + span:hover { + color: #4caf50; + } + } + } + button { + background-color: #282a35; + border: 1px solid transparent; + border-radius: 5px; + padding: 0.5rem; + i { + color: white; + font-size: 2rem; + } + } + button:hover { + background-color: white; + i { + color: black; + } + } + .icons { + width: 13rem; + display: flex; + align-items: center; + justify-content: space-between; + } + } + .bottomStuffs { + height: 10vh; + margin-top: auto; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + .aboutSubHeader { + color: white; + margin: 0.25rem; + display: flex; + justify-content: center; + width: 100%; + a { + text-decoration: none; + span { + color: white; + margin-left: 0.25rem; + text-decoration: underline; + } + span:hover { + color: #4caf50; + } + } + } + // position: relative; + // top: 5rem; + } +} +@media only screen and (max-width: 379px) { + .about { + .topStuffs { + width: 95%; + button { + padding: 0.2rem; + i { + font-size: 1rem; + } + } + .contributors { + font-size: 0.8rem; + } + .aboutSubHeader { + display: flex; + justify-content: center; + flex-direction: column; + text-align: center; + font-size: 0.8rem; + margin: 0.25rem; + } + } + .bottomStuffs { + font-size: 0.8rem; + } + } +} +@media only screen and (max-width: 425px) and (min-width: 380px) { + .about { + .topStuffs { + button { + margin-top: 0.5rem; + padding: 0.3rem; + } + .contributors { + font-size: 0.525rem; + } + .aboutSubHeader { + font-size: 0.525rem; + margin: 0.25rem; + } + } + .bottomStuffs { + margin-bottom: 3rem; + } + } +} +@media only screen and (max-width: 768px) and (min-width: 426px) { +} diff --git a/src/pages/Admin/Admin.jsx b/src/pages/Admin/Admin.jsx new file mode 100644 index 0000000..bdd5543 --- /dev/null +++ b/src/pages/Admin/Admin.jsx @@ -0,0 +1,34 @@ +import { useState } from 'react' +import { Helmet } from 'react-helmet' +import { AddTournament } from './components/AddTournament' +import { AddMotion } from './components/AddMotion' +import { LoadTournaments } from './components/LoadTournaments' +import { PendingRequests } from './components/PendingRequests' +import { LoadMotions } from './components/LoadMotions' +import { SignIn } from './components/SignIn' +import './style.css' + +export const AdminPage = () => { + const [loggedIn, setLoggedIn] = useState(false) + return ( +
+ + Debaters' toolkit | Admin + + {loggedIn ? ( + <> + + + + + + + ) : ( + + )} +
+ ) +} diff --git a/src/pages/Admin/components/AddMotion/index.jsx b/src/pages/Admin/components/AddMotion/index.jsx new file mode 100644 index 0000000..08c189c --- /dev/null +++ b/src/pages/Admin/components/AddMotion/index.jsx @@ -0,0 +1,201 @@ +import './style.css' +import Select from 'react-select' +import { firebaseFirestore } from '../../../../firebase' +import { useForm } from '../../../../core/hooks' +import { topics, languages, customTheme } from '../../../../core/constants' +import tournamentOptions from '../../../../core/constants/tournamentOptions.json' +import { Message } from '../../../../core/components' +import { useEffect, useState, useRef } from 'react' +import TextareaAutosize from 'react-textarea-autosize' +import { getTourneyID } from '../../../../core/helpers/getTourneyID' +import _ from 'lodash' +export const AddMotion = () => { + const [sent, setSent] = useState(undefined) + const [saving, setSaving] = useState(false) + const topicRef = useRef(null) + const tournamentRef = useRef(null) + const { formValue, changeFormValue, resetFormValue } = useForm({ content: "", infoSlide: "", topic: {}, language: "English", division: "", tournamentID: "", round: "", link: "" }) + const submit = async (e) => { + e.preventDefault() + setSent(true) + if (formValue.content != "" && formValue.tournamentID != "" && formValue.topic != {}) { + setSaving(true) + try { + await firebaseFirestore.collection("motions").add(formValue) + setSaving(false) + setSent(true) + resetFormValue() + topicRef.current.select.setValue([]) + tournamentRef.current.select.setValue('') + } + catch (err) { + setSent(false) + setTimeout(() => { setSent(undefined) }, 1500) + } + } + else { + setSent(false) + setTimeout(() => { setSent(undefined) }, 1500) + } + } + function changeTopic(val) { + val.forEach(obj => { + changeFormValue('topic', { ...formValue.topic, [obj.value]: { check: true, title: obj.label } }) + }) + } + function changeLanguage(val) { + if (val != null && val != undefined && val != "") { + changeFormValue('language', val.value) + } + } + function changeTournament(val) { + if (val != null && val != undefined && val != "") { + changeFormValue('tournamentID', val.value) + } + } + function changeTournamentID(e) { + changeFormValue("tournamentID", e.target.value) + let newOption + tournamentOptions.forEach(option => { + if (option.value == e.target.value) { + newOption = tournamentOptions[tournamentOptions.indexOf(option)] + } + }) + if (newOption != undefined) { + tournamentRef.current.select.setValue(newOption) + } + else { + tournamentRef.current.select.setValue('') + } + } + const fileInput = useRef(null) + const [selectedFile, setSelectedFile] = useState(undefined) + const [selected, setSelected] = useState(false) + const [motions, setMotions] = useState(undefined) + const changeHandler = (event) => { + setSelectedFile(event.target.files[0]) + setSelected(true) + } + useEffect(() => { + if (selectedFile != undefined) { + const reader = new FileReader() + reader.readAsText(selectedFile) + reader.onload = (e) => { + setMotions(JSON.parse(e.target.result)) + } + } + }, [selectedFile]) + const addMotions = async (e) => { + e.preventDefault() + setSent(true) + setSaving(true) + try { + if (!_.isString(motions[0].tournament) || !_.isString(motions[0].content) || !_.isString(motions[0].year)) { + alert('Invalid JSON Selected !') + setSaving(false) + setSent(false) + setTimeout(() => { setSent(undefined) }, 1500) + setSelectedFile(undefined) + setSelected(false) + setMotions(undefined) + } + else { + motions.forEach(async (motion) => { + const tournament = motion.tournament + const year = motion.year + const format = motion.format + const id = await getTourneyID(tournament, year, format) + let infoSlide = "" + if (motion.infoSlide != undefined) { + infoSlide = motion.infoSlide + } + let round + if (!_.isString(motion.round)) { + round = motion.round.toString() + } + else { + round = motion.round + } + const curMot = { content: motion.content, infoSlide: infoSlide, division: '', language: motion.language, link: '', round: round, topic: motion.topic, tournamentID: id } + await firebaseFirestore.collection("motions").add(curMot) + //test first b4 uploading + }) + setSaving(false) + setSent(true) + setSelectedFile(undefined) + setSelected(false) + setMotions(undefined) + alert("Done !") + } + } + catch (err) { + setSaving(false) + setSent(false) + setTimeout(() => { setSent(undefined) }, 1500) + setSelectedFile(undefined) + setSelected(false) + setMotions(undefined) + } + } + //--------------------------------------------------------------------------------------------------------- + return ( +
+
Add Motion:
+
+
+ + +
+ { + `Current file: ${selectedFile ? selectedFile.name : ""}` + } +
+
+
+ +
+
+
+ { changeFormValue("content", e.target.value) }} /> + { changeFormValue("infoSlide", e.target.value) }} /> + + { changeFormValue("division", e.target.value) }} /> + { changeFormValue("round", e.target.value) }} /> + + { changeFormValue("link", e.target.value) }} /> + + +
+ { + saving ?
Loading
:
MOTION ADDED
MOTION ADDED SUCCESSFULLY
} failureMessage={<>
MOTION NOT ADDED
MOTION ADDING FAILED. PLEASE TRY AGAIN
} /> + } +
+
+ ) +} \ No newline at end of file diff --git a/src/pages/Admin/components/AddMotion/style.css b/src/pages/Admin/components/AddMotion/style.css new file mode 100644 index 0000000..80b4474 --- /dev/null +++ b/src/pages/Admin/components/AddMotion/style.css @@ -0,0 +1,138 @@ +.addMotion { + display: flex; + flex-direction: column; + align-items: center; + width: 100%; + border-bottom: 1px solid black; + font-family: "Lora", serif; +} + +.addMotionTitle { + display: flex; + width: 100%; + margin-bottom: 1rem; + padding-left: 5rem; +} + +.uploadMotionsFromJSON { + width: 100%; + display: flex; + flex-direction: column; + align-items: flex-start; + margin: 1rem; + margin-top: 0rem; + font-size: 0.9rem; +} + +.uploadMotionsFromJSON button { + color: white; + background-color: #282a35; + border: none; + padding: 0.5rem; + border-radius: 10px; + font-weight: bolder; +} + +.uploadMotionsFromJSON button:hover { + background-color: #000000; +} + +.getMotionJSONFile { + margin-left: 7rem; + display: flex; + align-items: center; + margin-bottom: 0.75rem; +} +.loadMotionJSONFileButton { + margin-right: 1rem; +} +.uploadMotionsJSONButton { + margin-left: 7rem; +} +.addMotionButton { + color: white; + background-color: #282a35; + border: none; + padding: 0.5rem; + border-radius: 10px; + font-weight: bolder; + margin-top: 1rem; +} + +.addMotionButton:hover { + background-color: #000000; +} + +#motionForm { + display: flex; + flex-direction: column; + align-items: center; +} + +.motionInfoItem { + width: 20rem; + margin: 0.3rem; +} + +.largeTextBox { + resize: none; + overflow: hidden; +} + +.motionAttributeSelect { + font-size: 0.8rem; +} + +.motionAttributeSelect input { + font-family: "Lora", serif; +} + +#motionForm textarea { + border: 1.5px solid #e1e1e1; + border-radius: 3px; + padding: 0.5rem; + font-family: "Lora", serif; +} + +.inputMotionBox { + border: 1.5px solid #e1e1e1; + border-radius: 3px; + padding: 0.5rem; + height: 2.33rem; + font-family: "Lora", serif; +} + +.motionAddingResultContainer { + width: 100%; + display: flex; + justify-content: center; + align-items: center; + margin-top: 0; + height: 4rem; +} + +@media only screen and (max-width: 425px) { + .addMotionTitle { + display: flex; + width: 100%; + justify-content: center; + padding-left: 0; + } + .getMotionJSONFile { + margin-left: 3rem; + } + .uploadMotionsJSONButton { + margin-left: 3rem; + } + .inputMotionBox { + height: 2.33rem; + } +} +@media only screen and (max-width: 768px) and (min-width: 426px) { + .getMotionJSONFile { + margin-left: 6rem; + } + .uploadMotionsJSONButton { + margin-left: 6rem; + } +} \ No newline at end of file diff --git a/src/pages/Admin/components/AddTournament/index.jsx b/src/pages/Admin/components/AddTournament/index.jsx new file mode 100644 index 0000000..ce5f938 --- /dev/null +++ b/src/pages/Admin/components/AddTournament/index.jsx @@ -0,0 +1,119 @@ +import { firebaseFirestore } from '../../../../firebase' +import { useForm } from "../../../../core/hooks" +import { useEffect, useState, useRef } from 'react' +import { Message } from '../../../../core/components' +import _ from "lodash" +import './style.scss' +export const AddTournament = () => { + const { formValue, changeFormValue, resetFormValue } = useForm({ name: "", format: "", year: "" }) + const [saving, setSaving] = useState(false) + const [sent, setSent] = useState(undefined) + const submit = async (e) => { + e.preventDefault() + setSent(true) + if (formValue.name != "" && formValue.format != "" && formValue.year != "") { + setSaving(true) + try { + await firebaseFirestore.collection("tournaments").add(formValue) + const tourneys = await firebaseFirestore.collection("tournaments").where('name', '==', formValue.name).where('format', '==', formValue.format).where('year', '==', formValue.year).get() + const id = tourneys.docs[0].id + console.log(id) + setSaving(false) + setSent(true) + resetFormValue() + } + catch (err) { + setSent(false) + setTimeout(() => { setSent(undefined) }, 1500) + } + } + else { + setSent(false) + setTimeout(() => { setSent(undefined) }, 1500) + } + } + const [selectedFile, setSelectedFile] = useState(undefined) + const [selected, setSelected] = useState(false) + const [tourneys, setTourneys] = useState(undefined) + const addTournaments = async (e) => { + e.preventDefault() + setSent(true) + setSaving(true) + try { + if (!_.isString(tourneys[0].name) || !_.isString(tourneys[0].format) || !_.isString(tourneys[0].year)) { + alert('Invalid JSON Selected !') + setSaving(false) + setSent(false) + setTimeout(() => { setSent(undefined) }, 1500) + setSelectedFile(undefined) + setSelected(false) + setTourneys(undefined) + } + else { + tourneys.forEach(async (tournament) => { + const curTour = { name: tournament.name, format: tournament.format, year: tournament.year } + await firebaseFirestore.collection("tournaments").add(curTour) + }) + setSaving(false) + setSent(true) + setSelectedFile(undefined) + setSelected(false) + setTourneys(undefined) + alert("Done !") + } + } + catch (err) { + setSaving(false) + setSent(false) + setTimeout(() => { setSent(undefined) }, 1500) + setSelectedFile(undefined) + setSelected(false) + setTourneys(undefined) + } + } + const fileInput = useRef(null) + const changeHandler = (event) => { + setSelectedFile(event.target.files[0]) + setSelected(true) + } + useEffect(() => { + if (selectedFile != undefined) { + const reader = new FileReader() + reader.readAsText(selectedFile) + reader.onload = (e) => { + setTourneys(JSON.parse(e.target.result)) + } + } + }, [selectedFile]) + return ( +
+
Add Tournament:
+
+
+ + +
+ { + `Current file: ${selectedFile ? selectedFile.name : ""}` + } +
+
+
+ +
+
+
+ { changeFormValue("name", e.target.value) }} /> + { changeFormValue("format", e.target.value) }} /> + { changeFormValue("year", e.target.value) }} /> + +
+
+ { + saving ?
Loading
:
TOURNAMENT(S) ADDED
TOURNAMENT(S) ADDED SUCCESSFULLY
} failureMessage={<>
TOURNAMENT(S) NOT ADDED
TOURNAMENT(S) ADDING FAILED. PLEASE TRY AGAIN
} /> + } +
+
+
+ ) +} \ No newline at end of file diff --git a/src/pages/Admin/components/AddTournament/style.scss b/src/pages/Admin/components/AddTournament/style.scss new file mode 100644 index 0000000..bdca8b9 --- /dev/null +++ b/src/pages/Admin/components/AddTournament/style.scss @@ -0,0 +1,129 @@ +.addTournament { + display: flex; + flex-direction: column; + align-items: center; + width: 100%; +} + +.addTournamentTitle { + width: 100%; + display: flex; + align-items: center; + font-family: "Lora", serif; + margin-top: 1rem; + padding-left: 5rem; + font-size: 1rem; +} +.uploadTournamentsFromJSON { + width: 100%; + display: flex; + flex-direction: column; + align-items: flex-start; + margin: 1rem; + font-size: 0.9rem; +} +.uploadTournamentsFromJSON button { + color: white; + background-color: #282a35; + border: none; + padding: 0.5rem; + border-radius: 10px; + font-weight: bolder; +} +.uploadTournamentsFromJSON button:hover { + background-color: #000000; +} +.getTournamentJSONFile { + margin-left: 7rem; + display: flex; + align-items: center; + margin-bottom: 0.75rem; +} +.loadTournamentJSONFileButton { + margin-right: 1rem; +} +.uploadTournamentsJSONButton { + margin-left: 7rem; +} +#tournamentForm { + display: flex; + margin-top: 0.5rem; +} + +#tournamentForm input { + font-family: "Lora", serif; + padding-left: 0.3rem; +} + +.addTournamentButton { + color: white; + background-color: #282a35; + border: none; + padding: 0.5rem; + border-radius: 10px; + font-weight: bolder; + margin-left: 1rem; +} + +.addTournamentButton:hover { + background-color: #000000; +} + +.tournamentAddingResultContainer { + width: 100%; + display: flex; + justify-content: center; + align-items: center; + margin-top: 0; + height: 4rem; +} + +.endingLine { + margin-top: 0rem; + margin-bottom: 1rem; + width: 100%; + border-top: 1px solid black; +} + +@media only screen and (max-width: 425px) { + .addTournamentTitle { + width: 100%; + display: flex; + justify-content: center; + padding-left: 0; + font-size: 1rem; + } + .getTournamentJSONFile { + margin-left: 3rem; + } + .uploadTournamentsJSONButton { + margin-left: 3rem; + } + #tournamentForm { + display: flex; + flex-direction: column; + align-items: center; + } + #tournamentForm input { + margin: 0.3rem; + height: 2rem; + border: 1.5px solid #e1e1e1; + border-radius: 5px; + } + .addTournamentButton { + margin-top: 1rem; + margin-left: 0; + } +} + +@media only screen and (max-width: 768px) and (min-width: 426px) { + .addTournamentTitle { + font-size: 1rem; + } + .getMotionJSONFile { + margin-left: 6rem; + } + .uploadMotionsJSONButton { + margin-left: 6rem; + } +} diff --git a/src/pages/Admin/components/LoadMotions/components/tables/TablePC.jsx b/src/pages/Admin/components/LoadMotions/components/tables/TablePC.jsx new file mode 100644 index 0000000..0b1c220 --- /dev/null +++ b/src/pages/Admin/components/LoadMotions/components/tables/TablePC.jsx @@ -0,0 +1,149 @@ +import { Table, EditableText, EditableTextArea, EditableSelector } from '../../../../../../core/components' +import { tableClassNames } from '../../../../../../core/constants/tableClassNames' +import { topicsForMotions } from '../../../../../../core/constants/topicsForMotions' +import Select, { components } from 'react-select' +import { customTheme } from '../../../../../../core/constants/customTheme' +import { ValueContainer, MultiValueContainer, Placeholder, Option } from '../../../../../../core/components/SelectComponents' +import { useEffect, useState } from 'react' +export const TablePC = (props) => { + const { updateMotion, del, motions, getDefaultTopic } = props + const fifthColumnOptions = [ + { value: 'language', label: 'Language' }, + { value: 'division', label: 'Division' }, + { value: 'round', label: 'Round' }, + { value: 'link', label: 'Link' }, + ] + const [fifthColumn, setFifthColumn] = useState('round') + const fifthColumnSelectorStyles = { + valueContainer: base => ({ + ...base, + display: "flex", + justifyContent: "center", + }), + } + const topicSelectorStyles = { + multiValue: base => ({ + ...base, + fontSize: '0.7rem' + }), + placeholder: base => ({ + ...base, + fontSize: '0.7rem' + }), + option: base => ({ + ...base, + fontSize: '0.7rem' + }), + } + const tableColumns = [ + { + name: 'Content', + width: '18%', + render: (motion) => { + return ( + { updateMotion('content', newValue, motion.id) }} style={{ fontSize: "0.7rem", padding: "0.4rem" }} /> + ) + } + }, + { + name: 'InfoSlide', + width: '18%', + render: (motion) => { + return ( + { updateMotion('infoSlide', newValue, motion.id) }} style={{ fontSize: "0.7rem", padding: "0.4rem" }} /> + ) + } + }, + { + name: 'Tournament', + width: '13%', + render: (motion) => { + return ( + { updateMotion('tournamentID', newValue, motion.id) }} style={{ textAlign: "center", fontSize: "0.7rem" }} /> + ) + } + }, + { + name: 'ID', + width: '13%', + render: (motion) => { + return ( +
{motion.id}
+ ) + } + }, + { + name: + + + { setMotionID(e.target.value) }} /> + + +
+ +
+ {/*--------------------------------------Hide-this-by-default-------------------------------------------------*/} + {/*
+ +
*/} + {/*--------------------------------------Ultra-Dangerous-Hidden-Dark-Magic------------------------------------*/} +
+ { + loading ?
Loading
: +
+ { + isPhone ? : + <> + { + isTablet ? : + } + + } +
+ } +
+ + + ) +} \ No newline at end of file diff --git a/src/pages/Admin/components/LoadMotions/style.css b/src/pages/Admin/components/LoadMotions/style.css new file mode 100644 index 0000000..061d044 --- /dev/null +++ b/src/pages/Admin/components/LoadMotions/style.css @@ -0,0 +1,222 @@ +.loadMotions { + width: 100%; + font-family: "Lora", serif; + display: flex; + flex-direction: column; +} + +.loadedMotionsHeaderContainer { + display: flex; + justify-content: flex-start; + align-items: center; + margin-top: 1rem; + margin-bottom: 1rem; +} + +.motionsListTitle { + padding-left: 5rem; +} + +#fetchMotionsButton { + background-color: #282a35; + color: white; + border: none; + font-weight: bolder; + padding: 0.5rem; + border-radius: 10px; + margin-left: 2rem; +} + +#fetchMotionsButton:hover { + background-color: #000000; +} + +.filterMotions { + display: flex; + margin-left: 6rem; + flex-direction: column; +} + +.filterMotions input { + font-family: "Lora", serif; + padding: 0.3rem; + padding-left: 0.6rem; + border-radius: 5px; + border: 1.5px solid #e1e1e1; +} + +.motionFilterItem { + width: 25rem; + margin: 0.3rem; + font-size: 0.9rem; +} + +.motionFilterItemBox { + height: 2.33rem; +} +/* Chrome, Safari, Edge, Opera */ +.inputMax::-webkit-outer-spin-button, +.inputMax::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +/* Firefox */ +.inputMax[type=number] { + -moz-appearance: textfield; +} +.displayExistingMotions { + padding-top: 1rem; +} + +.loadingMotionMessage { + margin-left: 6rem; +} +.downloadMotionsJSONButtonContainer { + width: 100%; + display: flex; +} +.downloadMotionsJSON { + background-color: #282a35; + color: white; + padding: 0.5rem; + border: none; + border-radius: 10px; + font-weight: bolder; + box-sizing: border-box; + margin-top: 1rem; + margin-left: 6rem; +} +.downloadMotionsJSON:hover { + background-color: #000000; +} +.motionsTableContainer { + width: 100%; + display: flex; + justify-content: center; +} +.motionScriptContainer { + width: 100%; + display: flex; +} +.runMotionScript { + background-color: #282a35; + color: white; + padding: 0.5rem; + border: none; + border-radius: 10px; + font-weight: bolder; + box-sizing: border-box; + margin-top: 1rem; + margin-left: 6rem; +} +.runMotionScript:hover { + background-color: #000000; +} +.loadedMotionsTable { + width: 97%; + border-collapse: collapse; + border: 1px solid black; + margin-bottom: 2rem; +} + +.motionsTableHeaderRow { + display: flex; +} + +.motionsTableHeader { + display: flex; + justify-content: center; + align-items: center; + margin: 0; + border: 1px solid black; +} + +.emptyMotionsTableHeaderCell { + border: 1px solid black; +} + +.motionTableRow { + display: flex; +} + +.motionTableCell { + margin: 0; + border: 1px solid black; + /* padding: 0.5rem; */ + display: flex; + justify-content: center; + align-items: center; +} +.fifthColumnSelector { + width: 100%; +} +.motionTopicSelector { + font-size: 0.65rem; +} +.removeMotionButton { + padding: 0; + color: #e49191; + background-color: transparent; + border: none; +} + +.removeMotionButton:hover { + color: rgb(167, 0, 0); +} + +.deleteMotionCell { + width: 4%; +} + +@media only screen and (max-width: 425px) { + .loadMotionsHeaderContainer { + padding-left: 0; + width: 100%; + display: flex; + justify-content: center; + } + .filterMotions { + margin-left: 0; + width: 100%; + display: flex; + flex-direction: column; + align-items: center; + } + .displayExistingMotions { + width: 100%; + } + .loadingMotionMessage { + width: 100%; + margin-left: 0; + display: flex; + justify-content: center; + margin-bottom: 2rem; + } + .loadedMotionsTable { + width: 97%; + } + .motionsTableHeader { + font-size: 0.7rem; + display: flex; + justify-content: center; + align-items: center; + padding: 0.2rem; + } + .motionTableCell { + /* font-size: 0.5rem; */ + display: flex; + justify-content: center; + align-items: center; + /* padding: 0.4rem; */ + } + .removeMotionButton i { + font-size: 0.7rem; + } + .motionFilterItem { + width: 15rem; + } +} + +@media only screen and (max-width: 768px) and (min-width: 426px) { +} diff --git a/src/pages/Admin/components/LoadTournaments/components/tables/TablePC.jsx b/src/pages/Admin/components/LoadTournaments/components/tables/TablePC.jsx new file mode 100644 index 0000000..84cba65 --- /dev/null +++ b/src/pages/Admin/components/LoadTournaments/components/tables/TablePC.jsx @@ -0,0 +1,65 @@ +import { Table, EditableText } from '../../../../../../core/components' +import { tableClassNames } from '../../../../../../core/constants/tableClassNames' +export const TablePC = (props) => { + const { updateTournament, del, tournaments } = props + return ( + { + return ( + { updateTournament('name', newValue, tournament.id) }} /> + ) + } + }, + { + name: 'Year', + width: '10%', + render: (tournament) => { + return ( + { updateTournament('year', newValue, tournament.id) }} /> + ) + } + }, + { + name: 'Format', + width: '10%', + render: (tournament) => { + return ( + { updateTournament('format', newValue, tournament.id) }} /> + ) + } + }, + { + name: 'ID', + width: '30%', + render: (tournament) => { + return ( +
{tournament.id}
+ ) + } + }, + { + type: "action", + width: '4%', + render: (tournament) => { + return ( + + ) + } + } + ]} + dataSource={tournaments} + names={tableClassNames.adminLoadTournaments} + showActions={true} + /> + ) +} \ No newline at end of file diff --git a/src/pages/Admin/components/LoadTournaments/components/tables/TablePhone.jsx b/src/pages/Admin/components/LoadTournaments/components/tables/TablePhone.jsx new file mode 100644 index 0000000..6cd72fb --- /dev/null +++ b/src/pages/Admin/components/LoadTournaments/components/tables/TablePhone.jsx @@ -0,0 +1,66 @@ +import { Table } from '../../../../../../core/components/Table' +import { EditableText } from '../../../../../../core/components' +import { tableClassNames } from '../../../../../../core/constants/tableClassNames' +export const TablePhone = (props) => { + const { updateTournament, del, tournaments } = props + return ( +
{ + return ( + { updateTournament('name', newValue, tournament.id) }} /> + ) + } + }, + { + name: 'Year', + width: '10%', + render: (tournament) => { + return ( + { updateTournament('year', newValue, tournament.id) }} /> + ) + } + }, + { + name: 'Format', + width: '10%', + render: (tournament) => { + return ( + { updateTournament('format', newValue, tournament.id) }} /> + ) + } + }, + { + name: 'ID', + width: '30%', + render: (tournament) => { + return ( +
{tournament.id}
+ ) + } + }, + { + type: "action", + width: '4%', + render: (tournament) => { + return ( + + ) + } + } + ]} + dataSource={tournaments} + names={tableClassNames.adminLoadTournaments} + showActions={true} + /> + ) +} \ No newline at end of file diff --git a/src/pages/Admin/components/LoadTournaments/components/tables/TableTablet.jsx b/src/pages/Admin/components/LoadTournaments/components/tables/TableTablet.jsx new file mode 100644 index 0000000..a309b4b --- /dev/null +++ b/src/pages/Admin/components/LoadTournaments/components/tables/TableTablet.jsx @@ -0,0 +1,68 @@ +import { Table, EditableText } from '../../../../../../core/components' +import { tableClassNames } from '../../../../../../core/constants/tableClassNames' +export const TableTablet = (props) => { + const { updateTournament, del, tournaments } = props + return ( +
{ + return ( + { updateTournament('name', newValue, tournament.id) }} /> + ) + } + }, + { + name: 'Year', + width: '10%', + render: (tournament) => { + return ( + { updateTournament('year', newValue, tournament.id) }} /> + ) + } + }, + { + name: 'Format', + width: '10%', + render: (tournament) => { + return ( + { updateTournament('format', newValue, tournament.id) }} /> + ) + } + }, + { + name: 'ID', + width: '30%', + render: (tournament) => { + return ( +
{tournament.id}
+ ) + } + }, + { + type: "action", + width: '4%', + render: (tournament) => { + return ( + + ) + } + } + ]} + dataSource={tournaments} + names={tableClassNames.adminLoadTournaments} + showActions={true} + /> + ) +} \ No newline at end of file diff --git a/src/pages/Admin/components/LoadTournaments/components/tables/index.js b/src/pages/Admin/components/LoadTournaments/components/tables/index.js new file mode 100644 index 0000000..705ccdc --- /dev/null +++ b/src/pages/Admin/components/LoadTournaments/components/tables/index.js @@ -0,0 +1,3 @@ +export * from "./TablePC" +export * from "./TablePhone" +export * from "./TableTablet" \ No newline at end of file diff --git a/src/pages/Admin/components/LoadTournaments/index.jsx b/src/pages/Admin/components/LoadTournaments/index.jsx new file mode 100644 index 0000000..429fc05 --- /dev/null +++ b/src/pages/Admin/components/LoadTournaments/index.jsx @@ -0,0 +1,185 @@ +import './style.css' +import Select from 'react-select' +import DownloadLink from 'react-download-link' +import { useState, useRef } from 'react' +import { firebaseFirestore } from '../../../../firebase' +import { formats, customTheme } from '../../../../core/constants' +import tournamentOptions from '../../../../core/constants/tournamentOptions.json' +import { useDeviceBreakPoint } from '../../../../core/hooks' +import { TablePC, TablePhone, TableTablet } from './components/tables' +export const LoadTournaments = () => { + const { isPhone, isTablet } = useDeviceBreakPoint() + const [year, setYear] = useState('') + const [format, setFormat] = useState('') + const [id, setID] = useState('') + const [loading, setLoading] = useState(false) + const [tournaments, setTournaments] = useState([]) + const [max, setMax] = useState(10) + const tournamentRef = useRef(null) + const loadTournaments = async () => { + let tournamentsRef = firebaseFirestore.collection('tournaments') + setLoading(true) + let tournamentDataRaw = undefined + if (id == '') { + if (format != '') { + tournamentsRef = tournamentsRef.where('format', '==', format) + } + if (year != '') { + tournamentsRef = tournamentsRef.where('year', '==', year) + } + tournamentDataRaw = await tournamentsRef.limit(max).get() + const tournamentData = [] + tournamentDataRaw.forEach(doc => { tournamentData.push({ ...doc.data(), id: doc.id }) }) + setTournaments(tournamentData) + setLoading(false) + } + else { + tournamentDataRaw = await tournamentsRef.doc(id).get() + if (tournamentDataRaw.exists == true) { + const name = tournamentDataRaw._delegate._document.data.value.mapValue.fields.name.stringValue + const year = tournamentDataRaw._delegate._document.data.value.mapValue.fields.year.stringValue + const format = tournamentDataRaw._delegate._document.data.value.mapValue.fields.format.stringValue + const tournamentData = [] + tournamentData.push({ name: name, year: year, format: format, id: id }) + setTournaments(tournamentData) + setLoading(false) + } + else { + setLoading(false) + setTournaments([]) + } + } + + } + function changeTournament(val) { + if (val == null) { + setID('') + } + else { + setID(val.value) + } + } + function changeTournamentID(e) { + setID(e.target.value) + let newOption + tournamentOptions.forEach(option => { + if (option.value == e.target.value) { + newOption = tournamentOptions[tournamentOptions.indexOf(option)] + } + }) + if (newOption != undefined) { + tournamentRef.current.select.setValue(newOption) + } + else { + tournamentRef.current.select.setValue('') + } + } + const changeMax = (e) => { + if (e.target.value == "") { + setMax(10) + } + else { + setMax(e.target.value) + } + } + const del = (id) => { + firebaseFirestore.collection("tournaments").doc(id).delete() + const newTournaments = tournaments.filter(tournament => { + return (tournament.id !== id) + }) + setTournaments(newTournaments) + } + function changeFormat(val) { + setFormat(val.value) + } + const updateTournament = async (fieldName, newValue, id) => { + const tournamentsRef = firebaseFirestore.collection('tournaments').doc(id) + const response = await tournamentsRef.update({ + [fieldName]: newValue + }) + } + const downloadJSON = async () => { + let tournamentsRef = firebaseFirestore.collection('tournaments') + const tournamentDataRaw = await tournamentsRef.get() + const tournamentData = [] + tournamentDataRaw.forEach(doc => { tournamentData.push({ ...doc.data(), id: doc.id }) }) + return JSON.stringify(tournamentData) + } + const tableProps = { updateTournament, del, tournaments } + //--------------------------------------------------------------------------------------------------------- + const script = async () => { + const tournamentsRef = firebaseFirestore.collection('tournaments') + const tournamentDataRaw = await tournamentsRef.get() + const tournamentData = [] + tournamentDataRaw.forEach(doc => { + tournamentData.push({ ...doc.data(), id: doc.id }) + }) + tournamentData.forEach(async (doc) => { + const name = doc.name + const firstFour = name.slice(0, 4) + if (!isNaN(firstFour)) { + const newName = name.slice(5) + await tournamentsRef.doc(doc.id).update({ name: newName }) + } + }) + alert("Done !") + } + //--------------------------------------------------------------------------------------------------------- + return ( +
+
+
Existing tournaments:
+ +
+
+ { setYear(e.target.value) }} /> + + +
+
+ +
+ {/*--------------------------------------Hide-this-by-default-------------------------------------------------*/} + {/*
+ +
*/} + {/*--------------------------------------Ultra-Dangerous-Hidden-Dark-Magic------------------------------------*/} +
+ { + loading ?
Loading
: +
+ { + isPhone ? : + <> + { + isTablet ? : + } + + } +
+ } +
+
+ ) +} \ No newline at end of file diff --git a/src/pages/Admin/components/LoadTournaments/style.css b/src/pages/Admin/components/LoadTournaments/style.css new file mode 100644 index 0000000..f027cb7 --- /dev/null +++ b/src/pages/Admin/components/LoadTournaments/style.css @@ -0,0 +1,236 @@ +.loadTournaments { + width: 100%; + font-family: "Lora", serif; + display: flex; + flex-direction: column; + border-bottom: 1px solid black; + padding-bottom: 2rem; +} + +.loadedTournamentsHeaderContainer { + display: flex; + justify-content: flex-start; + align-items: center; + margin-top: 1rem; +} + +.tournamentsListTitle { + padding-left: 5rem; +} + +#fetchTournamentsButton { + margin-left: 2rem; + background-color: #282a35; + color: white; + padding: 0.5rem; + border: none; + border-radius: 10px; + font-weight: bolder; +} + +#fetchTournamentsButton:hover { + background-color: #000000; +} + +.displayExistingTournaments { + padding-top: 1rem; +} + +.loadingTournamentMessage { + margin-left: 6rem; +} + +.filterTournaments { + display: flex; + flex-direction: column; + margin-left: 6rem; +} + +.filterTournaments input { + font-family: "Lora", serif; + padding: 0.3rem; + padding-left: 0.6rem; + border-radius: 5px; + border: 1.5px solid #e1e1e1; +} + +.tournamentFilterItem { + width: 15rem; + margin: 0.3rem; + font-size: 0.9rem; +} + +.tournamentFilterItemBox { + height: 2.33rem; +} +/* Chrome, Safari, Edge, Opera */ +.maxNum::-webkit-outer-spin-button, +.maxNum::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +/* Firefox */ +.maxNum[type=number] { + -moz-appearance: textfield; +} +.tournamentsTableContainer { + width: 100%; +} +.downloadTournamentsJSONButtonContainer { + width: 100%; + display: flex; +} +.downloadTournamentsJSON { + background-color: #282a35; + color: white; + padding: 0.5rem; + border: none; + border-radius: 10px; + font-weight: bolder; + box-sizing: border-box; + margin-top: 1rem; + margin-left: 6rem; +} +.downloadTournamentsJSON:hover { + background-color: #000000; +} +.tournamentScriptContainer { + width: 100%; + display: flex; +} +.runTournamentScript { + background-color: #282a35; + color: white; + padding: 0.5rem; + border: none; + border-radius: 10px; + font-weight: bolder; + box-sizing: border-box; + margin-top: 1rem; + margin-left: 6rem; +} +.runTournamentScript:hover { + background-color: #000000; +} +.loadedTournamentsTable { + width: 70%; + margin-left: 6rem; + border: 1px solid black; + border-collapse: collapse; +} + +.tournamentsTableHeaderRow { + display: flex; +} + +.tournamentsTableHeader { + display: flex; + justify-content: center; + align-items: center; + margin: 0; + border: 1px solid black; +} + +.emptyTournamentsTableHeaderCell { + border: 1px solid black; +} + +.tournamentTableRow { + display: flex; + font-size: 0.8rem; +} + +.tournamentTableCell { + margin: 0; + border: 1px solid black; + padding: 0.5rem; + display: flex; + justify-content: center; + align-items: center; +} + +.removeTournamentButton { + padding: 0; + color: #e49191; + background-color: transparent; + border: none; +} + +.removeTournamentButton:hover { + color: rgb(167, 0, 0); +} + +.deleteTournamentCell { + display: flex; + justify-content: center; + align-items: center; +} + +@media only screen and (max-width: 425px) { + .filterTournaments { + margin-left: 0; + width: 100%; + display: flex; + flex-direction: column; + align-items: center; + margin-top: 1rem; + } + .loadingTournamentMessage { + margin-left: 0; + display: flex; + justify-content: center; + } + .loadedTournamentsTable { + font-size: 0.6rem; + width: 100%; + margin-left: 0.3rem; + margin-right: 0.3rem; + } + .tournamentsTableContainer { + width: 100%; + display: flex; + justify-content: center; + } + .tournamentsTableContainer input { + font-size: 0.47rem; + } + .tournamentsTableHeader { + padding: 0.2rem; + } + .tournamentTableCell { + font-size: 0.47rem; + padding: 0; + } + .removeTournamentButton i { + font-size: 0.6rem; + } +} + +@media only screen and (max-width: 768px) and (min-width: 426px) { + .loadTournaments { + } + .loadedTournamentsTable { + font-size: 1rem; + width: 95%; + margin-left: 0; + } + .tournamentsTableContainer { + width: 100%; + display: flex; + justify-content: center; + } + .tournamentsTableHeader { + padding: 0.4rem; + } + .tournamentTableCell { + padding: 0; + } + .filterTournaments { + width: 100%; + margin-top: 1rem; + display: flex; + justify-content: center; + margin-left: 6rem; + } +} diff --git a/src/pages/Admin/components/PendingRequests/components/tables/TablePC.jsx b/src/pages/Admin/components/PendingRequests/components/tables/TablePC.jsx new file mode 100644 index 0000000..cb0f97b --- /dev/null +++ b/src/pages/Admin/components/PendingRequests/components/tables/TablePC.jsx @@ -0,0 +1,137 @@ +import { Table, EditableText, EditableTextArea, EditableSelector } from '../../../../../../core/components' +import { tableClassNames } from '../../../../../../core/constants/tableClassNames' +import { topics } from '../../../../../../core/constants/topics' +import { formats } from '../../../../../../core/constants/formats' +export const TablePC = (props) => { + const { updateRequest, del, requests, getDefaultFormat, getDefaultTopic, addToDatabase } = props + return ( +
{ + return ( + { updateRequest('motion', newValue, request.id) }} /> + ) + } + }, + { + name: 'InfoSlide', + width: '13%', + render: (request) => { + return ( + { updateRequest('infoSlide', newValue, request.id) }} /> + ) + } + }, + { + name: 'Topic', + width: '25%', + render: (request) => { + return ( + { updateRequest('topic', newValue, request.id) }} + options={topics} + multi={true} + /> + ) + } + }, + { + name: 'Language', + width: '7%', + render: (request) => { + return ( + { updateRequest('language', newValue, request.id) }} /> + ) + } + }, + { + name: 'Tournament', + width: '9%', + render: (request) => { + return ( + { updateRequest('tournamentName', newValue, request.id) }} /> + ) + } + }, + { + name: 'Year', + width: '5%', + render: (request) => { + return ( + { updateRequest('year', newValue, request.id) }} /> + ) + } + }, + { + name: 'Round', + width: '5%', + render: (request) => { + return ( + { updateRequest('round', newValue, request.id) }} /> + ) + } + }, + { + name: 'Format', + width: '12%', + render: (request) => { + return ( + { updateRequest('format', newValue, request.id) }} + options={formats} + multi={false} + /> + ) + } + }, + { + name: 'Link', + width: '6%', + render: (request) => { + return ( + { updateRequest('link', newValue, request.id) }} /> + ) + } + }, + { + type: "action", + width: '5%', + render: (request) => { + return ( +
+ + +
+ ) + } + } + + ]} + dataSource={requests} + names={tableClassNames.adminPendingRequests} + showActions={true} + /> + ) +} \ No newline at end of file diff --git a/src/pages/Admin/components/PendingRequests/components/tables/TablePhone.jsx b/src/pages/Admin/components/PendingRequests/components/tables/TablePhone.jsx new file mode 100644 index 0000000..1592fd3 --- /dev/null +++ b/src/pages/Admin/components/PendingRequests/components/tables/TablePhone.jsx @@ -0,0 +1,187 @@ +import { Table, EditableText, EditableTextArea, EditableSelector } from '../../../../../../core/components' +import { tableClassNames } from '../../../../../../core/constants/tableClassNames' +import { topics } from '../../../../../../core/constants/topics' +import { formats } from '../../../../../../core/constants/formats' +import Select, { components } from 'react-select' +import { ValueContainer, MultiValueContainer, SelectContainer, ClearIndicator, DropdownIndicator } from '../../../../../../core/components/SelectComponents' +import { customTheme } from '../../../../../../core/constants/customTheme' +import { useState } from 'react' +export const TablePhone = (props) => { + const { updateRequest, getDefaultFormat, getDefaultTopic, addToDatabase, del, requests } = props + const thirdColumnOptions = [ + { value: 'name', label: 'Tournament\'s name' }, + { value: 'topic', label: "Topic" }, + { value: 'language', label: 'Language' }, + { value: 'year', label: 'Year' }, + { value: 'round', label: 'Round' }, + { value: 'format', label: 'Format' }, + { value: 'link', label: 'Link' }, + ] + const [thirdColumn, setThirdColumn] = useState('name') + const IndicatorsContainer = props => { + return ( +
+ +
+ ) + } + const thirdColumnSelectorStyles = { + valueContainer: base => ({ + ...base, + display: "flex", + justifyContent: "center", + }), + } + const indicatorSeparatorStyle = { + alignSelf: 'stretch', + backgroundColor: 'hsl(0, 0%, 80%)', + marginBottom: '8px', + marginTop: '8px', + width: '1px', + height: '0.8rem', + } + + const IndicatorSeparator = ({ innerProps }) => { + return + } + const topicSelectorStyles = { + valueContainer: base => ({ + ...base, + padding: "0.5rem", + }), + clearIndicator: base => ({ + ...base, + padding: 0.5, + marginTop: 0.7, + transform: 'scaleX(0.85)', + transform: 'scaleY(0.85)', + }), + dropdownIndicator: base => ({ + ...base, + padding: 0.5, + }), + indicatorsContainer: base => ({ + ...base, + }) + } + return ( +
{ + return ( + { updateRequest('motion', newValue, request.id) }} /> + ) + } + }, + { + name: 'InfoSlide', + width: '20.5%', + render: (request) => { + return ( + { updateRequest('infoSlide', newValue, request.id) }} /> + ) + } + }, + { + name:
{ + return ( + { updateRequest('motion', newValue, request.id) }} /> + ) + } + }, + { + name: 'InfoSlide', + width: '27%', //30 + render: (request) => { + return ( + { updateRequest('infoSlide', newValue, request.id) }} /> + ) + } + }, + { + name: { + changeFormValue('email', e.target.value) + }} + /> + { + changeFormValue('password', e.target.value) + }} + /> + + + ) +} diff --git a/src/pages/Admin/components/SignIn/style.scss b/src/pages/Admin/components/SignIn/style.scss new file mode 100644 index 0000000..ee07b7c --- /dev/null +++ b/src/pages/Admin/components/SignIn/style.scss @@ -0,0 +1,37 @@ +.signIn { + height: 93vh; + width: 100%; + display: flex; + flex-direction: column; + align-items: center; + overflow: hidden; + padding-top: 5rem; + input { + font-family: "Lora", serif; + padding: 0.5rem; + border: 1.5px solid #e1e1e1; + border-radius: 5px; + width: 15rem; + margin: 0.3rem; + font-size: 0.8rem; + text-align: center; + } + button { + background-color: #282a35; + color: white; + border: none; + font-weight: bold; + border-radius: 10px; + font-family: "Source Sans Pro", sans-serif; + padding: 0.3rem 0.5rem 0.3rem 0.5rem; + margin: 0; + display: flex; + justify-content: center; + align-items: center; + margin-top: 0.5rem; + font-size: 0.8rem; + } + button:hover { + background-color: #000000; + } +} diff --git a/src/pages/Admin/style.css b/src/pages/Admin/style.css new file mode 100644 index 0000000..7b23529 --- /dev/null +++ b/src/pages/Admin/style.css @@ -0,0 +1,9 @@ +.admin { + display: flex; + flex-direction: column; + align-items: center; + font-family: "Lora", serif; + width: 100%; +} + + diff --git a/src/pages/BreakCalculator/BreakCalculator.jsx b/src/pages/BreakCalculator/BreakCalculator.jsx new file mode 100644 index 0000000..75f0bb8 --- /dev/null +++ b/src/pages/BreakCalculator/BreakCalculator.jsx @@ -0,0 +1,126 @@ +import { useState } from 'react' +import { Helmet } from 'react-helmet' +import Select from 'react-select' +import { Result } from './Result' +import { + Placeholder, + SingleValue, + Option, +} from '../../core/components/SelectComponents' +import { customTheme } from '../../core/constants' +import { formatStyle } from './formatStyle' +import { calculateBreaks } from '../../core/helpers' +// import MessengerCustomerChat from 'react-messenger-customer-chat' +import { usePageTracker } from '../../core/hooks' +import './style.css' + +export const BreakCalculator = () => { + const [format, setFormat] = useState('') + const [teamNumber, setTeamNumber] = useState(undefined) + const [roundNumber, setRoundNumber] = useState(undefined) + const [breakNumber, setBreakNumber] = useState(undefined) + const [result, setResult] = useState({}) + const [hasResult, setHasResult] = useState(false) + const changeFormat = (val) => { + setFormat(val.value) + } + const calculate = () => { + if ( + format != '' && + teamNumber != undefined && + roundNumber != undefined && + breakNumber != undefined + ) { + if (teamNumber > 500 || roundNumber > 500 || breakNumber > 500) { + alert('Please enter smaller input!') + setTeamNumber(undefined) + setRoundNumber(undefined) + setBreakNumber(undefined) + setHasResult(false) + } else { + setResult( + calculateBreaks({ format, teamNumber, roundNumber, breakNumber }) + ) + setHasResult(true) + } + } + } + usePageTracker() + return ( +
+ + Break Calculator + + + + {/* */} +
Break Calculator
+
+ { + setTeamNumber(parseInt(e.target.value, 10)) + }} + /> + { + setBreakNumber(parseInt(e.target.value, 10)) + }} + /> + { + setRoundNumber(parseInt(e.target.value, 10)) + }} + /> + +
+
+
+
+ {format.periods[currentPeriod].name} +
+ { + hasPrep ? + <> + { + currentPeriod == 0 ? +
+ {elapsed ? <>+ : <>} + {minute < 10 ? <>0{minute} : <>{minute}} :{' '} + {second < 10 ? <>0{second} : <>{second}} +
+ : +
+ { + minuteCountUp < 10 ? + <>0{minuteCountUp} + : + <>{minuteCountUp} + }{' '} + :{' '} + { + secondCountUp < 10 ? + <>0{secondCountUp} + : + <>{secondCountUp} + } +
+ } + + : + // noprep +
+ {minuteCountUp < 10 ? <>0{minuteCountUp} : <>{minuteCountUp}}{' '} + :{' '} + {secondCountUp < 10 ? <>0{secondCountUp} : <>{secondCountUp}} +
+ } + { + format.periods[currentPeriod].hasPOI && + + } +
+ {format.periods[currentPeriod].bottomTexts} +
+
+
+ + + + + +
+ + ) +} diff --git a/src/pages/DebateKeeper/Timer/style.css b/src/pages/DebateKeeper/Timer/style.css new file mode 100644 index 0000000..bc80311 --- /dev/null +++ b/src/pages/DebateKeeper/Timer/style.css @@ -0,0 +1,379 @@ +.timer { + display: flex; + flex-direction: column; + align-items: center; + width: 100%; + height: 100%; + font-family: 'source sans pro', sans-serif; + overflow: hidden; +} + +.topBar { + background-color: #212121; + width: 100%; + height: 10vh; + font-weight: 700; + display: flex; + justify-content: flex-start; + align-items: center; + color: white; + border-bottom: 2.5px solid white; +} + +.topBar::selection { + background: #282a35; +} + +.formatName { + font-size: 2.3rem; + width: 40%; + margin-right: 27%; /*35%*/ + height: 100%; + display: flex; + justify-content: center; + align-items: center; +} + +.bellButton { + border: none; + background-color: transparent; + background: none; +} +/* .bellButton i { + font-size: 1.6rem !important; +} */ +.fa-redo-alt { + -webkit-transform: scaleX(-1); + transform: scaleX(-1); +} + +.topBarIcons { + display: flex; + align-items: center; + justify-content: space-between; + height: 100%; + width: 10%; +} +.topBarIcons i { + font-size: 1.5rem; +} +.topBarIcon { + display: flex; + justify-content: center; + align-items: center; + height: 100%; + width: 50%; +} + +.topBarIcon:hover { + background-color: #000000; +} + +.topBarIcons .fas { + color: white; +} + +.totalReset { + background: none; + border: none; +} + +.formatSelectorContainer { + display: flex; + justify-content: center; + align-items: center; + height: 100%; + width: 23%; /*15%*/ + color: black; +} +.extraSmallFormatSelector input { + font-size: 2rem; +} +.formatSelectorContainer:hover { + background-color: black; +} + +#formatSelector { + width: 80%; + font-size: 0.8rem; +} + +.mainScreen { + height: 73vh; + width: 100%; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + color: white; + background-color: black; + font-size: 1.6rem; /*2*/ +} + +.currentPeriod { + margin-bottom: auto; + margin-top: 1rem; +} + +.timeDisplay { + font-size: 5.6rem; /*7*/ + margin-bottom: 1rem; +} + +.elapsed { + color: rgb(255, 0, 0); +} + +.bottomBar { + height: 10vh; + width: 100%; + display: flex; + justify-content: space-between; + align-items: center; + border-top: 2px solid white; + color: white; + background-color: black; +} + +.bottomBar button { + background-color: #212121; + border: none; + color: white; + height: 100%; + font-size: 1.6rem; + border: 1px solid black; + font-weight: bolder; + display: flex; + align-items: center; + justify-content: center; +} + +.bottomBar button:hover { + background-color: black; +} + +.actionButton { + width: 35%; +} + +.arrowButton { + width: 13%; +} + +.ringBell { + color: white; + height: 10vh; + width: 10%; + /*shud be 4 but set to 10 for desk view*/ +} + +.ringBell i { + font-size: 2rem; /*2.5*/ +} + +.poiButton { + height: 3rem; + background-color: #282a35; + color: white; + font-size: 2rem; + border-radius: 10px; + font-weight: bold; + border: none; + width: 7rem; +} + +.poiButton:hover { + background-color: rgb(82, 82, 82); +} + +.emptyDiv { + height: 3rem; +} + +.bottomTexts { + margin-top: auto; + margin-bottom: 1rem; +} + +@media only screen and (max-width: 379px) { + .topBar { + background-color: #212121; + width: 100%; + height: 10vh; + font-weight: 700; + display: flex; + align-items: center; + color: white; + border-bottom: 2.5px solid white; + } + .formatName { + font-size: 0.9rem; + width: 48%; /*40%*/ + margin-right: 0%; + } + .topBarIcons { + width: 20%; + } + .topBarIcon { + margin: 0; + } + .topBarIcons i { + font-size: 1rem; + } + .topBarIcon:hover { + background-color: transparent; + } + .formatSelectorContainer { + width: 42%; + } + #formatSelector { + font-size: 0.7rem; + width: 100%; + } + .mainScreen { + height: 77vh; + } + .currentPeriod { + font-size: 1.5rem; + } + .timeDisplay { + font-size: 5rem; + } + .poiButton:hover { + background-color: #282a35; + } + .bottomTexts { + font-size: 0.75rem; + margin-bottom: 0.5rem; + } + .bottomBar { + height: 6vh; + border: none; + } + .bottomBar button { + font-size: 0.8rem; + font-weight: 600; + margin: 0.1rem; + height: 80%; + border-radius: 5px; + } + .bottomBar button:hover { + background-color: #212121; + } + .ringBell i { + font-size: 0.8rem; + } +} +@media only screen and (max-width: 425px) and (min-width: 380px) { + .topBar { + height: 7vh; + } + .formatName { + font-size: 0.85rem; + width: 43%; /*40%*/ + margin-right: 2%; /*7%*/ + } + .topBarIcons { + width: 17%; /*20%*/ + } + .topBarIcon { + margin: 0; + outline: 0; + } + .bellButton i { + font-size: 1rem; + } + .totalReset i { + font-size: 1rem; + } + .topBarIcon:hover { + background-color: transparent; + } + .formatSelectorContainer { + width: 45%; /*40%*/ + margin-right: 1%; + margin-left: 2%; + } + #formatSelector { + font-size: 0.8rem; + width: 100%; + } + .mainScreen { + height: 80vh; + } + .currentPeriod { + font-size: 1.5rem; + } + .timeDisplay { + font-size: 5rem; + } + .poiButton:hover { + background-color: #282a35; + } + .bottomTexts { + font-size: 0.8rem; + margin-bottom: 0.2rem; + } + .bottomBar { + height: 6vh; + border: none; + } + .bottomBar button { + font-size: 0.8rem; + margin: 0.1rem; + height: 80%; + border-radius: 5px; + } + .bottomBar button:hover { + background-color: #212121; + } + .ringBell i { + font-size: 1rem; + } +} +@media only screen and (max-width: 768px) and (min-width: 426px) { + .topBar { + border-bottom: 3px solid white; + } + .formatName { + width: 45%; /*40%*/ + margin-right: 5%; /*15%*/ + font-size: 1.75rem; + } + .topBarIcons { + width: 15%; + } + .bellButton { + } + .totalReset { + } + .topBarIcon:hover { + background-color: transparent; + } + .formatSelectorContainer { + width: 35%; /*30%*/ + } + #formatSelector { + } + .mainScreen { + } + .currentPeriod { + } + .timeDisplay { + } + .poiButton:hover { + background-color: #282a35; + } + .bottomTexts { + font-size: 1.5rem; + } + .bottomBar { + } + .bottomBar button { + } + .bottomBar button:hover { + background-color: #212121; + } + .ringBell i { + } +} diff --git a/src/pages/DebateKeeper/Timer/style.js b/src/pages/DebateKeeper/Timer/style.js new file mode 100644 index 0000000..a8a7b4a --- /dev/null +++ b/src/pages/DebateKeeper/Timer/style.js @@ -0,0 +1,579 @@ +export const stylePC = ` +.timer { + display: flex; + flex-direction: column; + align-items: center; + width: 100%; + height: 100%; + font-family: 'source sans pro', sans-serif; + overflow: hidden; +} + +.topBar { + background-color: #212121; + width: 100%; + min-width: 58.875rem; + height: 10vh; + min-height: 3.75rem; + font-weight: 700; + display: flex; + justify-content: flex-start; + align-items: center; + color: white; + border-bottom: 2.5px solid white; +} + +.topBar::selection { + background: #282a35; +} + +.formatName { + font-size: 2.3rem; + margin-left: 5rem; + height: 100%; + display: flex; + justify-content: center; + align-items: center; +} + +.bellButton { + border: none; + background-color: transparent; + background: none; +} +/* .bellButton i { + font-size: 1.6rem !important; +} */ +.fa-redo-alt { + -webkit-transform: scaleX(-1); + transform: scaleX(-1); +} + +.topBarIcons { + display: flex; + align-items: center; + justify-content: space-between; + height: 100%; + width: 8rem; + margin-left: auto; +} +.topBarIcons i { + font-size: 1.5rem; +} +.topBarIcon { + display: flex; + justify-content: center; + align-items: center; + height: 100%; + width: 50%; +} + +.topBarIcon:hover { + background-color: #000000; +} + +.topBarIcons .fas { + color: white; +} + +.totalReset { + background: none; + border: none; +} + +.formatSelectorContainer { + display: flex; + justify-content: center; + align-items: center; + height: 100%; + width: 18.4rem; + color: black; +} +.extraSmallFormatSelector input { + font-size: 2rem; +} +.formatSelectorContainer:hover { + background-color: black; +} + +#formatSelector { + width: 80%; + font-size: 0.8rem; +} + +.mainScreen { + height: 73vh; + min-height: 15rem; + width: 100%; + display: flex; + flex-direction: column; + justify-content: space-between; + align-items: center; + color: white; + background-color: black; + font-size: 1.6rem; +} + +.currentPeriod { + margin-top: 1rem; +} + +.timeDisplay { + font-size: 5.6rem; + margin-bottom: 1rem; +} + +.timeDisplayWithPoi { + margin-top: 4.1rem; +} + +.elapsed { + color: rgb(255, 0, 0); +} + +.poiButton { + height: 3rem; + background-color: #282a35; + color: white; + font-size: 2rem; + border-radius: 10px; + font-weight: bold; + border: none; + width: 7rem; +} + +.poiButton:hover { + background-color: rgb(82, 82, 82); +} + + +.bottomTexts { + margin-bottom: 1rem; +} + +.bottomBar { + height: 10vh; + min-height: 3.75rem; + width: 100%; + display: flex; + justify-content: space-between; + align-items: center; + border-top: 2px solid white; + color: white; + background-color: black; +} + +.bottomBar button { + background-color: #212121; + border: none; + color: white; + height: 100%; + font-size: 1.6rem; + border: 1px solid black; + font-weight: bolder; + display: flex; + align-items: center; + justify-content: center; +} + +.bottomBar button:hover { + background-color: black; +} + +.actionButton { + width: 35%; +} + +.arrowButton { + width: 13%; +} + +.ringBell { + color: white; + height: 10vh; + width: 10%; + /*shud be 4 but set to 10 for desk view*/ +} + +.ringBell i { + font-size: 2rem; /*2.5*/ +} +` +export const styleMobile = ` +.timer { + display: flex; + flex-direction: column; + align-items: center; + width: 100%; + height: 100%; + font-family: 'source sans pro', sans-serif; + overflow: hidden; +} + +.topBar { + background-color: #212121; + width: 100%; + height: 10vh; + font-weight: 700; + display: flex; + justify-content: flex-start; + align-items: center; + color: white; + border-bottom: 2.5px solid white; +} + +.topBar::selection { + background: #282a35; +} + +.formatName { + font-size: 2.3rem; + width: 40%; + margin-right: 27%; /*35%*/ + height: 100%; + display: flex; + justify-content: center; + align-items: center; +} + +.bellButton { + border: none; + background-color: transparent; + background: none; +} +/* .bellButton i { + font-size: 1.6rem !important; +} */ +.fa-redo-alt { + -webkit-transform: scaleX(-1); + transform: scaleX(-1); +} + +.topBarIcons { + display: flex; + align-items: center; + justify-content: space-between; + height: 100%; + width: 10%; +} +.topBarIcons i { + font-size: 1.5rem; +} +.topBarIcon { + display: flex; + justify-content: center; + align-items: center; + height: 100%; + width: 50%; +} + +.topBarIcon:hover { + background-color: #000000; +} + +.topBarIcons .fas { + color: white; +} + +.totalReset { + background: none; + border: none; +} + +.formatSelectorContainer { + display: flex; + justify-content: center; + align-items: center; + height: 100%; + width: 23%; /*15%*/ + color: black; +} +.extraSmallFormatSelector input { + font-size: 2rem; +} +.formatSelectorContainer:hover { + background-color: black; +} + +#formatSelector { + width: 80%; + font-size: 0.8rem; +} + +.mainScreen { + height: 73vh; + width: 100%; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + color: white; + background-color: black; + font-size: 1.6rem; /*2*/ +} + +.currentPeriod { + margin-bottom: auto; + margin-top: 1rem; +} + +.timeDisplay { + font-size: 5.6rem; /*7*/ + margin-bottom: 1rem; +} + +.elapsed { + color: rgb(255, 0, 0); +} + +.bottomBar { + height: 10vh; + width: 100%; + display: flex; + justify-content: space-between; + align-items: center; + border-top: 2px solid white; + color: white; + background-color: black; +} + +.bottomBar button { + background-color: #212121; + border: none; + color: white; + height: 100%; + font-size: 1.6rem; + border: 1px solid black; + font-weight: bolder; + display: flex; + align-items: center; + justify-content: center; +} + +.bottomBar button:hover { + background-color: black; +} + +.actionButton { + width: 35%; +} + +.arrowButton { + width: 13%; +} + +.ringBell { + color: white; + height: 10vh; + width: 10%; + /*shud be 4 but set to 10 for desk view*/ +} + +.ringBell i { + font-size: 2rem; /*2.5*/ +} + +.poiButton { + height: 3rem; + background-color: #282a35; + color: white; + font-size: 2rem; + border-radius: 10px; + font-weight: bold; + border: none; + width: 7rem; +} + +.poiButton:hover { + background-color: rgb(82, 82, 82); +} + + +.bottomTexts { + margin-top: auto; + margin-bottom: 1rem; +} + +@media only screen and (max-width: 379px) { + .topBar { + background-color: #212121; + width: 100%; + height: 10vh; + font-weight: 700; + display: flex; + align-items: center; + color: white; + border-bottom: 2.5px solid white; + } + .formatName { + font-size: 0.9rem; + width: 48%; /*40%*/ + margin-right: 0%; + } + .topBarIcons { + width: 20%; + } + .topBarIcon { + margin: 0; + } + .topBarIcons i { + font-size: 1rem; + } + .topBarIcon:hover { + background-color: transparent; + } + .formatSelectorContainer { + width: 42%; + } + #formatSelector { + font-size: 0.7rem; + width: 100%; + } + .mainScreen { + height: 77vh; + } + .currentPeriod { + font-size: 1.5rem; + } + .timeDisplay { + font-size: 5rem; + } + .poiButton:hover { + background-color: #282a35; + } + .bottomTexts { + font-size: 0.75rem; + margin-bottom: 0.5rem; + } + .bottomBar { + height: 6vh; + border: none; + } + .bottomBar button { + font-size: 0.8rem; + font-weight: 600; + margin: 0.1rem; + height: 80%; + border-radius: 5px; + } + .bottomBar button:hover { + background-color: #212121; + } + .ringBell i { + font-size: 0.8rem; + } +} +@media only screen and (max-width: 425px) and (min-width: 380px) { + .topBar { + height: 7vh; + } + .formatName { + font-size: 0.85rem; + width: 43%; /*40%*/ + margin-right: 2%; /*7%*/ + } + .topBarIcons { + width: 17%; /*20%*/ + } + .topBarIcon { + margin: 0; + outline: 0; + } + .bellButton i { + font-size: 1rem; + } + .totalReset i { + font-size: 1rem; + } + .topBarIcon:hover { + background-color: transparent; + } + .formatSelectorContainer { + width: 45%; /*40%*/ + margin-right: 1%; + margin-left: 2%; + } + #formatSelector { + font-size: 0.8rem; + width: 100%; + } + .mainScreen { + height: 80vh; + } + .currentPeriod { + font-size: 1.5rem; + } + .timeDisplay { + font-size: 5rem; + } + .poiButton:hover { + background-color: #282a35; + } + .bottomTexts { + font-size: 0.8rem; + margin-bottom: 0.2rem; + } + .bottomBar { + height: 6vh; + border: none; + } + .bottomBar button { + font-size: 0.8rem; + margin: 0.1rem; + height: 80%; + border-radius: 5px; + } + .bottomBar button:hover { + background-color: #212121; + } + .ringBell i { + font-size: 1rem; + } +} +@media only screen and (max-width: 768px) and (min-width: 426px) { + .topBar { + border-bottom: 3px solid white; + } + .formatName { + width: 45%; /*40%*/ + margin-right: 5%; /*15%*/ + font-size: 1.75rem; + } + .topBarIcons { + width: 15%; + } + .bellButton { + } + .totalReset { + } + .topBarIcon:hover { + background-color: transparent; + } + .formatSelectorContainer { + width: 35%; /*30%*/ + } + #formatSelector { + } + .mainScreen { + } + .currentPeriod { + } + .timeDisplay { + } + .poiButton:hover { + background-color: #282a35; + } + .bottomTexts { + font-size: 1.5rem; + } + .bottomBar { + } + .bottomBar button { + } + .bottomBar button:hover { + background-color: #212121; + } + .ringBell i { + } +} +` diff --git a/src/pages/DebateKeeper/style.css b/src/pages/DebateKeeper/style.css new file mode 100644 index 0000000..1f5e429 --- /dev/null +++ b/src/pages/DebateKeeper/style.css @@ -0,0 +1,20 @@ +.debateKeeper { + width: 100%; + height: 93vh; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} +.selector { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} +@media only screen and (max-width: 379px) { +} +@media only screen and (max-width: 425px) and (min-width: 380px) { +} +@media only screen and (max-width: 768px) and (min-width: 426px) { +} diff --git a/src/pages/HomePage/HomePage.jsx b/src/pages/HomePage/HomePage.jsx new file mode 100644 index 0000000..272e1b1 --- /dev/null +++ b/src/pages/HomePage/HomePage.jsx @@ -0,0 +1,35 @@ +import { Helmet } from 'react-helmet' +// import MessengerCustomerChat from 'react-messenger-customer-chat' +import { + MotionGeneratorIntro, + MotionDatabaseIntro, + BreakCalculatorIntro, + DebateKeeperIntro, +} from './components' +import { InformationContainer, FacebookChat } from '../../core/components' +import { usePageTracker } from '../../core/hooks' + +export const HomePage = () => { + usePageTracker() + return ( +
+ + Debaters' toolkit + + + + {/* */} + + + + + +
+ ) +} diff --git a/src/pages/HomePage/components/BreakCalculatorIntro/index.jsx b/src/pages/HomePage/components/BreakCalculatorIntro/index.jsx new file mode 100644 index 0000000..a89f491 --- /dev/null +++ b/src/pages/HomePage/components/BreakCalculatorIntro/index.jsx @@ -0,0 +1,15 @@ +import { useNavigate } from 'react-router-dom' +import './style.scss' + +export const BreakCalculatorIntro = () => { + const navigate = useNavigate() + return ( +
+
Break Calculator
+
+ Calculate break for BP, AP and WSDC +
+ +
+ ) +} \ No newline at end of file diff --git a/src/pages/HomePage/components/BreakCalculatorIntro/style.scss b/src/pages/HomePage/components/BreakCalculatorIntro/style.scss new file mode 100644 index 0000000..652af83 --- /dev/null +++ b/src/pages/HomePage/components/BreakCalculatorIntro/style.scss @@ -0,0 +1,55 @@ +.breakCalculatorInfo { + height: 100vh; + min-height: 37.5rem; + background-color: #fff4a3; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + font-family: 'Source Sans Pro', sans-serif; + .breakCalculatorTitle { + font-size: 3rem; + font-weight: bold; + } + .breakCalculatorSubHeader { + font-size: 1.3rem; + } + button { + color: white; + margin: 1rem; + height: 2rem; + background-color: #282a35; + border: none; + padding: 0.5rem 1rem 0.5rem 1rem; + border-radius: 20px; + font-weight: bold; + } + button:hover { + background-color: #000000; + } +} +@media only screen and (max-width: 379px) { + .breakCalculatorInfo { + .breakCalculatorTitle { + font-size: 2.3rem; + } + .breakCalculatorSubHeader { + font-size: 0.9rem; + } + button { + padding: 0.5rem 0.7rem 0.5rem 0.7rem; + } + } +} +@media only screen and (max-width: 425px) and (min-width: 380px) { + .breakCalculatorInfo { + .breakCalculatorTitle { + font-size: 2.5rem; + } + .breakCalculatorSubHeader { + font-size: 1rem; + } + } +} +@media only screen and (max-width: 768px) and (min-width: 426px) { +} diff --git a/src/pages/HomePage/components/DebateKeeperIntro/index.jsx b/src/pages/HomePage/components/DebateKeeperIntro/index.jsx new file mode 100644 index 0000000..51d5dce --- /dev/null +++ b/src/pages/HomePage/components/DebateKeeperIntro/index.jsx @@ -0,0 +1,15 @@ +import { useNavigate } from 'react-router-dom' +import './style.scss' + +export const DebateKeeperIntro = () => { + const navigate = useNavigate() + return ( +
+
Timekeeper
+
+ Debate timekeeping tool, no downloading required +
+ +
+ ) +} diff --git a/src/pages/HomePage/components/DebateKeeperIntro/style.scss b/src/pages/HomePage/components/DebateKeeperIntro/style.scss new file mode 100644 index 0000000..b21a954 --- /dev/null +++ b/src/pages/HomePage/components/DebateKeeperIntro/style.scss @@ -0,0 +1,55 @@ +.debateKeeperInfo { + height: 100vh; + min-height: 37.5rem; + background-color: #96d4d4; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + font-family: 'Source Sans Pro', sans-serif; + .debateKeeperTitle { + font-size: 3rem; + font-weight: bold; + } + .debateKeeperSubHeader { + font-size: 1.3rem; + } + button { + color: white; + margin: 1rem; + height: 2rem; + background-color: #282a35; + border: none; + padding: 0.5rem 1rem 0.5rem 1rem; + border-radius: 20px; + font-weight: bold; + } + button:hover { + background-color: #000000; + } +} +@media only screen and (max-width: 379px) { + .debateKeeperInfo { + .debateKeeperTitle { + font-size: 2.3rem; + } + .debateKeeperSubHeader { + font-size: 0.9rem; + } + button { + padding: 0.5rem 0.7rem 0.5rem 0.7rem; + } + } +} +@media only screen and (max-width: 425px) and (min-width: 380px) { + .debateKeeperInfo { + .debateKeeperTitle { + font-size: 2.5rem; + } + .debateKeeperSubHeader { + font-size: 1rem; + } + } +} +@media only screen and (max-width: 768px) and (min-width: 426px) { +} diff --git a/src/pages/HomePage/components/MotionDatabaseIntro/index.jsx b/src/pages/HomePage/components/MotionDatabaseIntro/index.jsx new file mode 100644 index 0000000..008ef7b --- /dev/null +++ b/src/pages/HomePage/components/MotionDatabaseIntro/index.jsx @@ -0,0 +1,15 @@ +import { useNavigate } from 'react-router-dom' +import './style.scss' + +export const MotionDatabaseIntro = () => { + const navigate = useNavigate() + return ( +
+
Motion Database
+
+ Over 900 debate tournaments and 7000 motions +
+ +
+ ) +} diff --git a/src/pages/HomePage/components/MotionDatabaseIntro/style.scss b/src/pages/HomePage/components/MotionDatabaseIntro/style.scss new file mode 100644 index 0000000..8d630cb --- /dev/null +++ b/src/pages/HomePage/components/MotionDatabaseIntro/style.scss @@ -0,0 +1,55 @@ +.motionDatabaseInfo { + height: 100vh; + min-height: 37.5rem; + background-color: #d9eee1; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + font-family: 'Source Sans Pro', sans-serif; + .motionDatabaseTitle { + font-size: 3rem; + font-weight: bold; + } + .motionDatabaseSubHeader { + font-size: 1.3rem; + } + button { + color: white; + margin: 1rem; + height: 2rem; + background-color: #282a35; + border: none; + padding: 0.5rem 1rem 0.5rem 1rem; + border-radius: 20px; + font-weight: bold; + } + button:hover { + background-color: #000000; + } +} +@media only screen and (max-width: 379px) { + .motionDatabaseInfo { + .motionDatabaseTitle { + font-size: 2.3rem; + } + .motionDatabaseSubHeader { + font-size: 0.9rem; + } + button { + padding: 0.5rem 0.7rem 0.5rem 0.7rem; + } + } +} +@media only screen and (max-width: 425px) and (min-width: 380px) { + .motionDatabaseInfo { + .motionDatabaseTitle { + font-size: 2.5rem; + } + .motionDatabaseSubHeader { + font-size: 1rem; + } + } +} +@media only screen and (max-width: 768px) and (min-width: 426px) { +} diff --git a/src/pages/HomePage/components/MotionGeneratorIntro/index.jsx b/src/pages/HomePage/components/MotionGeneratorIntro/index.jsx new file mode 100644 index 0000000..6d59669 --- /dev/null +++ b/src/pages/HomePage/components/MotionGeneratorIntro/index.jsx @@ -0,0 +1,15 @@ +import { useNavigate } from 'react-router-dom' +import './style.scss' + +export const MotionGeneratorIntro = () => { + const navigate = useNavigate() + return ( +
+
Motion Generator
+
+ Get 1 random motion from over 7000 +
+ +
+ ) +} diff --git a/src/pages/HomePage/components/MotionGeneratorIntro/style.scss b/src/pages/HomePage/components/MotionGeneratorIntro/style.scss new file mode 100644 index 0000000..9c0b462 --- /dev/null +++ b/src/pages/HomePage/components/MotionGeneratorIntro/style.scss @@ -0,0 +1,59 @@ +.motionGeneratorInfo { + height: 92vh; + min-height: 37.5rem; + background-color: rgb(83, 83, 83); + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + font-family: 'Source Sans Pro', sans-serif; + .motionGeneratorTitle { + font-size: 3rem; + font-weight: bold; + color: white; + } + .motionGeneratorSubHeader { + font-size: 1.3rem; + color: white; + } + button { + color: white; + margin: 1rem; + height: 2rem; + background-color: #282a35; + border: none; + padding: 0.5rem 1rem 0.5rem 1rem; + border-radius: 20px; + font-weight: bold; + } + button:hover { + background-color: #000000; + } +} +@media only screen and (max-width: 379px) { + .motionGeneratorInfo { + padding-bottom: 20%; + .motionGeneratorTitle { + font-size: 2.3rem; + } + .motionGeneratorSubHeader { + font-size: 0.9rem; + } + button { + padding: 0.5rem 0.7rem 0.5rem 0.7rem; + } + } +} +@media only screen and (max-width: 425px) and (min-width: 380px) { + .motionGeneratorInfo { + padding-bottom: 30%; + .motionGeneratorTitle { + font-size: 2.5rem; + } + .motionGeneratorSubHeader { + font-size: 1rem; + } + } +} +@media only screen and (max-width: 768px) and (min-width: 426px) { +} diff --git a/src/pages/HomePage/components/index.js b/src/pages/HomePage/components/index.js new file mode 100644 index 0000000..c826cc5 --- /dev/null +++ b/src/pages/HomePage/components/index.js @@ -0,0 +1,4 @@ +export * from './MotionGeneratorIntro' +export * from './MotionDatabaseIntro' +export * from './BreakCalculatorIntro' +export * from './DebateKeeperIntro' \ No newline at end of file diff --git a/src/pages/MotionDatabase/DisplayTournament.jsx b/src/pages/MotionDatabase/DisplayTournament.jsx new file mode 100644 index 0000000..b3b1b3d --- /dev/null +++ b/src/pages/MotionDatabase/DisplayTournament.jsx @@ -0,0 +1,28 @@ +import { firebaseFirestore } from '../../firebase' +import { useState, useEffect } from 'react' +export const DisplayTournament = (props) => { + const { id } = props + const [name, setName] = useState('') + const [year, setYear] = useState('') + async function getTournament(id) { + const tournamentDataRaw = await firebaseFirestore.collection('tournaments').doc(id).get() + const response = tournamentDataRaw.data() + if (response) { + setName(response.name) + setYear(response.year) + } + } + useEffect(() => { + getTournament(id) + }, []) + return ( + <> + { + name && year && + <> + {name} {`${year}`} + + } + + ) +} \ No newline at end of file diff --git a/src/pages/MotionDatabase/MotionDatabase.jsx b/src/pages/MotionDatabase/MotionDatabase.jsx new file mode 100644 index 0000000..bdf118a --- /dev/null +++ b/src/pages/MotionDatabase/MotionDatabase.jsx @@ -0,0 +1,285 @@ +import { useEffect, useState } from 'react' +import Select from 'react-select' +import { Helmet } from 'react-helmet' +import { firebaseFirestore } from '../../firebase' +import TextareaAutosize from 'react-textarea-autosize' +// import MessengerCustomerChat from 'react-messenger-customer-chat' +import { + Placeholder, + SingleValue, + Option, + Input, +} from '../../core/components/SelectComponents' +import { Table } from '../../core/components' +import { languageStyle, topicStyle, tournamentStyle } from './styles' +import { getTourneyInfo } from '../../core/helpers' +import { + tableClassNames, + topics, + languages, + customTheme, +} from '../../core/constants' +import tournamentOptions from '../../core/constants/tournamentOptions.json' +import { usePageTracker } from '../../core/hooks' +import './style.css' + +export const MotionDatabase = () => { + const [topic, setTopic] = useState('') + const [language, setLanguage] = useState('English') + const [tournament, setTournament] = useState('') + const [max, setMax] = useState(10) + const [motions, setMotions] = useState([]) + const [motionData, setMotionData] = useState([]) + const [configJustChanged, setConfigJustChanged] = useState(true) + const [loading, setLoading] = useState(false) + function changeTopic(val) { + setConfigJustChanged(true) + if (val == null) { + setTopic('') + } else { + setTopic(val.value) + } + } + function changeLanguage(val) { + setConfigJustChanged(true) + if (val == null) { + setLanguage('') + } else { + setLanguage(val.value) + } + } + function changeTournament(val) { + setConfigJustChanged(true) + if (val == null) { + setTournament('') + } else { + setTournament(val.value) + } + } + const changeMax = (e) => { + setConfigJustChanged(true) + if (e.target.value == '') { + setMax(10) + } else { + setMax(e.target.value) + } + } + async function loadMotions() { + if (configJustChanged) { + setLoading(true) + let motionsRef = firebaseFirestore.collection('motions') + if (language != '') { + motionsRef = motionsRef.where('language', '==', language) + } + if (topic != '') { + motionsRef = motionsRef.where(`topic.${topic}.check`, '==', true) + } + if (tournament != '') { + motionsRef = motionsRef.where('tournamentID', '==', tournament) + } + let motionDataRaw = await motionsRef.limit(max).get() + let motionDataSorted = [] + const preliminaryMotions = [] + const octofinals = [] + const semifinals = [] + const quarterfinals = [] + const finals = [] + const theRest = [] + motionDataRaw.docs.forEach((motion) => { + if (!isNaN(motion.data().round)) { + preliminaryMotions.push(motion) + } else if (motion.data().round.includes('Octofinals')) { + octofinals.push(motion) + } else if (motion.data().round.includes('Semifinals')) { + semifinals.push(motion) + } else if (motion.data().round.includes('Quarterfinals')) { + quarterfinals.push(motion) + } else if (motion.data().round.includes('Final')) { + finals.push(motion) + } else { + theRest.push(motion) + } + }) + preliminaryMotions.sort((a, b) => + a.data().round > b.data().round ? 1 : -1 + ) + octofinals.sort((a, b) => (a.data().round > b.data().round ? 1 : -1)) + semifinals.sort((a, b) => (a.data().round > b.data().round ? 1 : -1)) + quarterfinals.sort((a, b) => (a.data().round > b.data().round ? 1 : -1)) + finals.sort((a, b) => (a.data().round > b.data().round ? 1 : -1)) + theRest.sort((a, b) => (a.data().round > b.data().round ? 1 : -1)) + motionDataSorted = motionDataSorted.concat( + preliminaryMotions, + octofinals, + semifinals, + quarterfinals, + finals, + theRest + ) + motionDataSorted.forEach(async (doc) => { + const loadedTopicTemp = { ...doc.data() } + const tempTopics = [] + for (const key in loadedTopicTemp.topic) { + tempTopics.push(loadedTopicTemp.topic[key]['title']) + } + const { name, year } = await getTourneyInfo(doc.data().tournamentID) + setMotionData([ + ...motionData, + { + ...doc.data(), + topicList: tempTopics, + tournament: name, + year: year, + }, + ]) + }) + setLoading(false) + setConfigJustChanged(false) + setMotionData([]) + } + } + useEffect(() => { + setMotions([]) + motionData.forEach((motion) => { + setMotions([...motions, motion]) + }) + }, [motionData]) + usePageTracker() + return ( +
+ + Motion Database + + + + {/* */} +
Search for motions from our database:
+
+ + +
+ +
+ Loading +
+
+
{ + return <>{motion.content} + }, + }, + { + name: 'Infoslide', + width: '33%', + render: (motion) => { + return <>{motion.infoSlide} + }, + }, + { + name: 'Tournament', + width: '33%', + render: (motion) => { + return ( + + ) + }, + }, + ]} + dataSource={motions} + names={tableClassNames.userLoadMotions} + showActions={false} + /> + +
+
Can't find your favourite motion?
+ + + +
+ + ) +} diff --git a/src/pages/MotionDatabase/style.css b/src/pages/MotionDatabase/style.css new file mode 100644 index 0000000..c022008 --- /dev/null +++ b/src/pages/MotionDatabase/style.css @@ -0,0 +1,267 @@ +.motionDatabase { + display: flex; + flex-direction: column; + align-items: center; + width: 100%; + height: 93vh; +} +.notLoaded { + overflow-y: hidden; +} +.pageTitle { + width: 100%; + display: flex; + align-items: center; + font-family: "Lora", serif; + margin-top: 1.5rem; + justify-content: center; + margin-bottom: 1rem; + font-size: 1rem; /*1rem*/ +} +.motionFilters { + width: 100%; + display: flex; + flex-direction: column; + align-items: center; + margin-bottom: 1rem; +} +.motionFilters input { + text-align: center; +} +.motionFilter { + width: 21rem; /*19*/ + margin: 0.2rem; /*0.2*/ + font-size: 0.9rem; /*0.75*/ +} +.motionFilter input { + font-family: "Lora", serif; +} +.queryBox { + border: 1.5px solid #e1e1e1; + border-radius: 3px; + padding: 0.5rem; + height: 2.33rem; + font-family: "Lora", serif; +} +/* Chrome, Safari, Edge, Opera */ +.maxBox::-webkit-outer-spin-button, +.maxBox::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +/* Firefox */ +.maxBox[type=number] { + -moz-appearance: textfield; +} +#searchMotionsButton { + background-color: #282a35; + color: white; + border: none; + font-weight: bold; + border-radius: 10px; + font-family: "Source Sans Pro", sans-serif; + font-size: 1rem; /*0.8*/ + padding: 0.6rem; + padding-top: 0.3rem; + padding-bottom: 0.3rem; +} +#searchMotionsButton:hover { + background-color: #000000; +} +.displayMotionDatabase { + width: 100%; + display: flex; + justify-content: center; + margin-top: 2rem; +} +.tableDatabase { + display: flex; + flex-direction: column; + width: 80%; /*60%*/ + border-collapse: collapse; +} +.databaseHeaderRow { + width: 100%; + display: flex; +} +.databaseTableHeader { + display: flex; + justify-content: center; + margin: 0; + border: 1px solid black; + font-size: 1rem; +} +.databaseTableRow { + display: flex; +} +.databaseTableCell { + font-size: 0.9rem; /*0.7*/ + border: 1px solid black; + padding: 0.5rem; + display: flex; + justify-content: center; + align-items: center; +} +.databaseTopicCell { + display: flex; + flex-direction: column; +} +.databaseAlignCenter { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} +.submitNewMotionNotification { + height: 7vh; + width: 100%; + margin-top: auto; + display: flex; + justify-content: center; + align-items: center; +} +.submitNewMotionNotification a { + height: 5vh; + display: flex; + justify-content: center; + align-items: center; + text-decoration: none; + border-radius: 10px; + margin: 1rem; +} +.submitNewMotionNotification button { + height: 100%; + background-color: #282a35; + color: white; + border: none; + font-weight: bold; + border-radius: 10px; + font-family: "Source Sans Pro", sans-serif; + padding: 0.3rem 0.5rem 0.3rem 0.5rem; + margin: 0; + display: flex; + justify-content: center; + align-items: center; +} +.submitNewMotionNotification button:hover { + background-color: #000000; +} +@media only screen and (max-width: 379px) { + .pageTitle { + font-size: 0.9rem; + } + .motionFilter { + width: 16.8rem; + font-size: 0.8rem; + } + #searchMotionsButton { + font-size: 0.9rem; + } + .tableDatabase { + width: 98%; + } + .databaseTableHeader { + padding: 0.5rem; + } + .submitNewMotionNotification div { + display: flex; + flex-wrap: wrap; + justify-content: center; + align-items: center; + font-size: 0.8rem; + } + .submitNewMotionNotification a { + height: 1.8rem; + } + .submitNewMotionNotification button { + font-size: 0.8rem; + padding: 0.3rem 0.35rem 0.3rem 0.35rem; + } +} +@media only screen and (max-width: 425px) and (min-width: 380px) { + .pageTitle { + font-size: 1rem; + margin-top: 3rem; + margin-bottom: 2rem; + } + .tableDatabase { + width: 90%; + font-size: 1rem; + } + .databaseTableCell { + font-size: 0.8rem; + } + .databaseTableHeader { + font-size: 1rem; + padding: 0.5rem; + } + #searchMotionsButton { + font-size: 1rem; + padding: 0.5rem; + } + .motionFilters { + margin-bottom: 1rem; + } + .motionFilter { + width: 20rem; + margin: 0.2rem; + font-size: 0.9rem; + } + .submitNewMotionNotification { + font-size: 0.9rem; + } + .submitNewMotionNotification div { + display: flex; + flex-wrap: wrap; + justify-content: center; + align-items: center; + } + .submitNewMotionNotification a { + height: 1.8rem; + } + .submitNewMotionNotification button { + padding: 0.3rem; + } +} +@media only screen and (max-width: 768px) and (min-width: 426px) { + .tableDatabase { + width: 90%; + font-size: 1rem; + } + .pageTitle { + font-size: 1.5rem; + } + .motionFilter { + font-size: 1.3rem; + width: 55vw; + margin: 0.4rem; + } + #searchMotionsButton { + font-size: 1.3rem; + padding: 0.4rem 0.6rem 0.4rem 0.6rem; + /* padding-left: 0.9rem; + padding-right: 0.9rem; */ + } + .databaseTableCell { + font-size: 1.3rem; + } + .databaseTableHeader { + font-size: 1.3rem; + } + .submitNewMotionNotification div { + display: flex; + flex-wrap: wrap; + justify-content: center; + align-items: center; + font-size: 1.3rem; + } + .submitNewMotionNotification a { + height: 1.8rem; + } + .submitNewMotionNotification button { + font-weight: 500; + font-size: 1.1rem; + padding: 0.4rem; + } +} diff --git a/src/pages/MotionDatabase/styles/index.js b/src/pages/MotionDatabase/styles/index.js new file mode 100644 index 0000000..db05be1 --- /dev/null +++ b/src/pages/MotionDatabase/styles/index.js @@ -0,0 +1,3 @@ +export * from './languageStyle' +export * from './topicStyle' +export * from './tournamentStyle' \ No newline at end of file diff --git a/src/pages/MotionDatabase/styles/languageStyle.js b/src/pages/MotionDatabase/styles/languageStyle.js new file mode 100644 index 0000000..5520292 --- /dev/null +++ b/src/pages/MotionDatabase/styles/languageStyle.js @@ -0,0 +1,18 @@ +export const languageStyle = { + placeholder: base => ({ + ...base, + textAlign: "center !important", + width: "100% !important", + marginLeft: "0.7rem !important" + }), + singleValue: base => ({ + ...base, + width: "100%", + textAlign: "center", + marginLeft: "2rem !important" + }), + option: base => ({ + ...base, + textAlign: "center" + }), +} \ No newline at end of file diff --git a/src/pages/MotionDatabase/styles/topicStyle.js b/src/pages/MotionDatabase/styles/topicStyle.js new file mode 100644 index 0000000..d4b7d55 --- /dev/null +++ b/src/pages/MotionDatabase/styles/topicStyle.js @@ -0,0 +1,19 @@ +export const topicStyle = { + placeholder: base => ({ + ...base, + textAlign: "center", + width: "100%", + marginLeft: "0.65rem" + }), + singleValue: base => ({ + ...base, + width: "100%", + textAlign: "center", + marginLeft: "1.8rem !important" + }), + option: base => ({ + ...base, + textAlign: "center", + marginLeft: "0.3rem !important" + }), +} \ No newline at end of file diff --git a/src/pages/MotionDatabase/styles/tournamentStyle.js b/src/pages/MotionDatabase/styles/tournamentStyle.js new file mode 100644 index 0000000..6bc1be2 --- /dev/null +++ b/src/pages/MotionDatabase/styles/tournamentStyle.js @@ -0,0 +1,26 @@ +export const tournamentStyle = { + placeholder: base => ({ + ...base, + textAlign: "center", + width: "100%", + marginLeft: "0.7rem" + }), + singleValue: base => ({ + ...base, + width: "100%", + textAlign: "center", + marginLeft: "2.1rem !important" + }), + option: base => ({ + ...base, + textAlign: "center", + marginLeft: "0.7rem !important" + }), + input: base => ({ + ...base, + width: '100%', + display: 'flex', + paddingLeft: '2.2rem', + justifyContent: 'center', + }) +} \ No newline at end of file diff --git a/src/pages/MotionGenerator/MotionGenerator.jsx b/src/pages/MotionGenerator/MotionGenerator.jsx new file mode 100644 index 0000000..a1cda3a --- /dev/null +++ b/src/pages/MotionGenerator/MotionGenerator.jsx @@ -0,0 +1,184 @@ +import { useState, useEffect } from 'react' +import { Helmet } from 'react-helmet' +import Select from 'react-select' +// import MessengerCustomerChat from 'react-messenger-customer-chat' +import { + Placeholder, + SingleValue, + Option, +} from '../../core/components/SelectComponents' +import { topicStyle, languageStyle } from './styles' +import { customTheme, languages, topics } from '../../core/constants' +import motionsFromDatabase from '../../core/constants/motionsFromDatabase.json' // import separately to avoid netlify error +import { usePageTracker } from '../../core/hooks' +import './style.css' + +export const MotionGenerator = () => { + const [topic, setTopic] = useState('') + const [language, setLanguage] = useState('') + const [keyword, setKeyword] = useState('') + const [currentMotion, setCurrentMotion] = useState(undefined) + const [loading, setLoading] = useState(false) + const [configJustChanged, setConfigJustChanged] = useState(true) + const [onStartUp, setOnStartUp] = useState(true) + const [validMotions, setValidMotions] = useState(motionsFromDatabase) + function changeTopic(val) { + setConfigJustChanged(true) + if (val == null) { + setTopic('') + } else { + setTopic(val.value) + } + } + function changeLanguage(val) { + setConfigJustChanged(true) + if (val == null) { + setLanguage('') + } else { + setLanguage(val.value) + } + } + function changeKeyword(e) { + setConfigJustChanged(true) + setKeyword(e.target.value) + } + const loadMotions = async () => { + if (onStartUp) { + setOnStartUp(false) + } + if (configJustChanged) { + let currentValidMotions = [] + motionsFromDatabase.forEach((motion) => { + currentValidMotions.push(motion) + }) + if (language != '') { + currentValidMotions = currentValidMotions.filter((motion) => { + return motion.language == language + }) + } else { + currentValidMotions = currentValidMotions.filter((motion) => { + return motion.language == 'English' + }) + } + if (topic != '') { + currentValidMotions = currentValidMotions.filter((motion) => { + return Object.keys(motion.topic).includes(topic) + }) + } + if (keyword != '') { + currentValidMotions = currentValidMotions.filter((motion) => { + return ( + motion.content.toUpperCase().includes(keyword.toUpperCase()) || + motion.infoSlide.toUpperCase().includes(keyword.toUpperCase()) + ) + }) + } + setValidMotions(currentValidMotions) + setConfigJustChanged(false) + } else { + setCurrentMotion( + validMotions[Math.floor(Math.random() * validMotions.length)] + ) + } + } + useEffect(() => { + if (!onStartUp) { + setCurrentMotion( + validMotions[Math.floor(Math.random() * validMotions.length)] + ) + } + }, [validMotions]) + usePageTracker() + return ( +
+ + Motion Generator + + + + {/* */} +
+ + +
+ +
+ Loading +
+
+ {currentMotion ? ( + currentMotion.infoSlide ? ( +
+
+ Infoslide: {currentMotion.infoSlide} +
+
{currentMotion.content}
+
+ ) : ( +
+
{currentMotion.content}
+
+ ) + ) : ( + <> + )} +
+
+ ) +} diff --git a/src/pages/MotionGenerator/style.css b/src/pages/MotionGenerator/style.css new file mode 100644 index 0000000..a54b4dd --- /dev/null +++ b/src/pages/MotionGenerator/style.css @@ -0,0 +1,137 @@ +.motionGenerator { + display: flex; + max-height: 93vh; + height: 100%; + flex-direction: column; + align-items: center; +} + +.options { + margin-top: 15vh; + margin-bottom: 0.5rem; +} + +.option { + width: 20rem; + margin: 0.2rem; + font-size: 0.85rem; +} +.option input { + font-family: "Lora", serif; +} +#keywordBox { + border: 1.5px solid #e1e1e1; + border-radius: 3px; + padding: 0.5rem; + height: 2.33rem; + font-family: "Lora", serif; + text-align: center; +} +.generateButton { + border-radius: 10px; + padding: 0.4rem 0.5rem 0.4rem 0.5rem; + font-size: 0.85rem; + color: white; + background-color: #282a35; + font-family: "Source Sans Pro", sans-serif; + border: none; + font-weight: bolder; +} + +.generateButton:hover { + background-color: #000000; +} + +.displayRandomMotion { + width: 100%; + display: flex; + justify-content: center; +} + +.currentMotion { + display: flex; + font-size: 0.9rem; +} +.hasInfoslide { + display: flex; + flex-direction: column; + align-items: center; + width: 60%; +} +.noInfoslide { + justify-content: center; +} +.motionInfo { + margin: 1rem; + width: 100%; + display: flex; + align-items: center; + text-align: center; + justify-content: center; +} +@media only screen and (max-width: 379px) { + .option { + width: 18rem; + font-size: 0.75rem; + } + .motionInfo { + font-size: 0.75rem !important; + padding: 1rem; + } + .loadingRandomMotionMessage { + font-size: 0.75rem !important; + } + .hasInfoslide { + width: 100%; + } +} +@media only screen and (max-width: 425px) and (min-width: 380px) { + .currentMotion { + display: flex; + flex-direction: column; + align-items: center; + margin-top: 1rem; + } + .motionInfo { + width: 100%; + padding: 1rem; + margin: 0; + margin-bottom: 1rem; + } + .hasInfoslide { + width: 100%; + } + .option { + font-size: 0.9rem; + } + .generateButton { + font-size: 0.9rem; + padding: 0.5rem; + } +} + +@media only screen and (max-width: 768px) and (min-width: 426px) { + .displayRandomMotion { + margin-top: 1rem; + } + .options { + margin-top: 4vh; + } + .option { + width: 21rem; + font-size: 0.9rem; + } + .generateButton { + font-size: 0.9rem; + } + .motionInfo { + margin: 1rem; + width: 95%; + display: flex; + align-items: center; + font-size: 0.9rem; + } + .hasInfoslide { + width: 90%; + } +} diff --git a/src/pages/MotionGenerator/styles/index.js b/src/pages/MotionGenerator/styles/index.js new file mode 100644 index 0000000..8b4b3bb --- /dev/null +++ b/src/pages/MotionGenerator/styles/index.js @@ -0,0 +1,2 @@ +export * from './topicStyle' +export * from './languageStyle' \ No newline at end of file diff --git a/src/pages/MotionGenerator/styles/languageStyle.js b/src/pages/MotionGenerator/styles/languageStyle.js new file mode 100644 index 0000000..66f6b86 --- /dev/null +++ b/src/pages/MotionGenerator/styles/languageStyle.js @@ -0,0 +1,18 @@ +export const languageStyle = { + placeholder: base => ({ + ...base, + textAlign: "center !important", + width: "100% !important", + marginLeft: "0.7rem !important" + }), + singleValue: base => ({ + ...base, + width: "100%", + textAlign: "center", + marginLeft: "0.87rem !important" + }), + option: base => ({ + ...base, + textAlign: "center" + }) +} \ No newline at end of file diff --git a/src/pages/MotionGenerator/styles/topicStyle.js b/src/pages/MotionGenerator/styles/topicStyle.js new file mode 100644 index 0000000..bb689d1 --- /dev/null +++ b/src/pages/MotionGenerator/styles/topicStyle.js @@ -0,0 +1,19 @@ +export const topicStyle = { + placeholder: (base) => ({ + ...base, + textAlign: 'center !important', + width: '100% !important', + marginLeft: '0.6rem !important', + }), + singleValue: (base) => ({ + ...base, + width: '100%', + textAlign: 'center', + marginLeft: '2.1rem !important', + }), + option: (base) => ({ + ...base, + textAlign: 'center', + marginLeft: '0.6rem !important', + }) +} diff --git a/src/pages/SubmitNewMotion/SubmitNewMotion.jsx b/src/pages/SubmitNewMotion/SubmitNewMotion.jsx new file mode 100644 index 0000000..7bf8423 --- /dev/null +++ b/src/pages/SubmitNewMotion/SubmitNewMotion.jsx @@ -0,0 +1,243 @@ +import { useState, useRef } from 'react' +import { Helmet } from 'react-helmet' +import Select from 'react-select' +// import MessengerCustomerChat from 'react-messenger-customer-chat' +import { useForm, usePageTracker } from '../../core/hooks' +import { firebaseFirestore } from '../../firebase' +import { Message } from '../../core/components' +import { topics, languages, formats, customTheme } from '../../core/constants' +import TextareaAutosize from 'react-textarea-autosize' +import './style.css' + +export const SubmitNewMotion = () => { + const { formValue, changeFormValue, resetFormValue } = useForm({ + motion: '', + infoSlide: '', + topic: [], + language: '', + division: '', + tournamentName: '', + year: '', + round: '', + format: '', + link: '', + }) + const [sent, setSent] = useState(undefined) + const [saving, setSaving] = useState(false) + const topicRef = useRef(null) + const languageRef = useRef(null) + const formatRef = useRef(null) + const submit = async (e) => { + e.preventDefault() + setSent(true) + if ( + formValue.motion != '' && + formValue.topic != [] && + formValue.tournamentName != '' + ) { + setSaving(true) + try { + await firebaseFirestore.collection('requests').add(formValue) + setSaving(false) + setSent(true) + resetFormValue() + languageRef.current.select.setValue('') + topicRef.current.select.setValue([]) + formatRef.current.select.setValue('') + } catch (err) { + setSent(false) + setTimeout(() => { + setSent(undefined) + }, 2000) + } + } else { + setSent(false) + setTimeout(() => { + setSent(undefined) + }, 2000) + } + } + function changeTopic(val) { + if (val.length == 0) { + changeFormValue('topic', []) + } else { + val.forEach((valItem) => { + changeFormValue('topic', [...formValue.topic, valItem.value]) + }) + } + } + function changeLanguage(val) { + if (val == null) { + changeFormValue('language', '') + } else { + changeFormValue('language', val.value) + } + } + function changeFormat(val) { + if (val == null) { + changeFormValue('format', '') + } else { + changeFormValue('format', val.value) + } + } + usePageTracker() + return ( +
+ + Submit new motions + + + + {/* */} +
+ Submit a request for a motion to be added to our Database +
+
+ { + changeFormValue('motion', e.target.value) + }} + /> + { + changeFormValue('infoSlide', e.target.value) + }} + /> + + { + changeFormValue('division', e.target.value) + }} + /> + { + changeFormValue('tournamentName', e.target.value) + }} + /> + { + changeFormValue('year', e.target.value) + }} + /> + { + changeFormValue('round', e.target.value) + }} + /> + { + changeFormValue('link', e.target.value) + }} + /> +
+ +
+ {saving ? ( +
Loading
+ ) : ( + +
MOTION SUBMITTED!
{' '} +
+ YOUR MOTION HAS BEEN SUBMITTED SUCCESSFULLY +
+ + } + failureMessage={ + <> +
MOTION NOT SUBMITTED!
{' '} +
+ MOTION SUBMISSION FAILED. PLEASE TRY AGAIN +
+ + } + /> + )} +
+
+ ) +} diff --git a/src/pages/SubmitNewMotion/style.css b/src/pages/SubmitNewMotion/style.css new file mode 100644 index 0000000..5fc0d48 --- /dev/null +++ b/src/pages/SubmitNewMotion/style.css @@ -0,0 +1,137 @@ +.submitNewMotion { + display: flex; + flex-direction: column; + align-items: center; + /* max-height: 100vh; */ + height: 100%; +} + +.top-text { + margin-top: 1rem; + font-size: 0.8rem; + margin-bottom: 3vh; +} + +.details { + display: flex; + flex-direction: column; +} + +.detail { + margin: 0.3rem; + width: 20rem; + font-size: 0.8rem; +} + +.inputBox { + border: 1.5px solid #e1e1e1; + border-radius: 3px; + padding: 0.3rem; + padding-left: 0.5rem; + font-family: 'Lora', serif; + height: 2.33rem; +} + +#largeInputBox { + min-height: 7rem; + height: auto; + resize: none; + overflow: hidden; +} + +#motionSubmitButton { + font-family: 'Source Sans Pro', sans-serif; + background-color: #282a35; + color: white; + font-weight: bolder; + font-size: 0.8rem; + border: none; + padding: 0.4rem; + padding-left: 0.6rem; + padding-right: 0.6rem; + border-radius: 10px; + margin-top: 0.7rem; + /* margin-bottom: 2rem; */ +} + +#motionSubmitButton:hover { + background-color: black; +} + +.selectTopic { + font-family: 'Lora', serif; + font-size: 0.8rem; +} + +.selectLanguage { + font-family: 'Lora', serif; + font-size: 0.8rem; +} + +.selectFormat { + font-family: 'Lora', serif; + font-size: 0.8rem; +} + +.selectTopic input { + font-family: 'Lora', serif; +} + +.selectLanguage input { + font-family: 'Lora', serif; +} + +.selectFormat input { + font-family: 'Lora', serif; +} + +.submitStatus { + display: flex; + justify-content: center; + align-items: center; + width: 100%; + height: 5rem; + padding-top: 2rem; + padding-bottom: 3rem; +} + +@media only screen and (max-width: 425px) { + .top-text { + } + .detail { + margin: 0.3rem; + width: 20rem; + } + .inputBox { + padding: 0.3rem; + padding-left: 0.5rem; + } + #motionSubmitButton { + padding: 0.4rem; + padding-left: 0.5rem; + padding-right: 0.5rem; + border-radius: 10px; + margin-top: 0.7rem; + } + .submitStatus { + padding: 0; + height: 5rem; + } +} + +@media only screen and (max-width: 768px) and (min-width: 426px) { + .top-text { + font-size: 1.3rem; + } + .detail { + font-size: 1rem; + width: 30rem; + } + #motionSubmitButton { + font-size: 1rem; + } + .submitStatus { + padding: 0; + height: 5rem; + } +} diff --git a/src/pages/index.js b/src/pages/index.js new file mode 100644 index 0000000..06da79f --- /dev/null +++ b/src/pages/index.js @@ -0,0 +1,8 @@ +export * from './Admin/Admin' +export * from './HomePage/HomePage' +export * from './MotionDatabase/MotionDatabase' +export * from './BreakCalculator/BreakCalculator' +export * from './SubmitNewMotion/SubmitNewMotion' +export * from './DebateKeeper/DebateKeeper' +export * from './MotionGenerator/MotionGenerator' +export * from './About/About' \ No newline at end of file diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..d6db57b --- /dev/null +++ b/yarn.lock @@ -0,0 +1,20468 @@ +# This file is generated by running "yarn install" inside your project. +# Manual changes might be lost - proceed with caution! + +__metadata: + version: 6 + cacheKey: 8 + +"7zip-bin@npm:~5.1.1": + version: 5.1.1 + resolution: "7zip-bin@npm:5.1.1" + checksum: 1e58ba3742ac86daa84d2e60c46fd545f235c9f60a00cd36a87a70bf824cc0c821fdc418994f1745081b17e7bc83d155e1e82bd44b06996e7cab0a491ce644c1 + languageName: node + linkType: hard + +"@aashutoshrathi/word-wrap@npm:^1.2.3": + version: 1.2.6 + resolution: "@aashutoshrathi/word-wrap@npm:1.2.6" + checksum: ada901b9e7c680d190f1d012c84217ce0063d8f5c5a7725bb91ec3c5ed99bb7572680eb2d2938a531ccbaec39a95422fcd8a6b4a13110c7d98dd75402f66a0cd + languageName: node + linkType: hard + +"@adobe/css-tools@npm:^4.0.1": + version: 4.3.1 + resolution: "@adobe/css-tools@npm:4.3.1" + checksum: ad43456379ff391132aff687ece190cb23ea69395e23c9b96690eeabe2468da89a4aaf266e4f8b6eaab53db3d1064107ce0f63c3a974e864f4a04affc768da3f + languageName: node + linkType: hard + +"@ampproject/remapping@npm:^2.2.0": + version: 2.2.1 + resolution: "@ampproject/remapping@npm:2.2.1" + dependencies: + "@jridgewell/gen-mapping": ^0.3.0 + "@jridgewell/trace-mapping": ^0.3.9 + checksum: 03c04fd526acc64a1f4df22651186f3e5ef0a9d6d6530ce4482ec9841269cf7a11dbb8af79237c282d721c5312024ff17529cd72cc4768c11e999b58e2302079 + languageName: node + linkType: hard + +"@babel/code-frame@npm:7.10.4": + version: 7.10.4 + resolution: "@babel/code-frame@npm:7.10.4" + dependencies: + "@babel/highlight": ^7.10.4 + checksum: feb4543c8a509fe30f0f6e8d7aa84f82b41148b963b826cd330e34986f649a85cb63b2f13dd4effdf434ac555d16f14940b8ea5f4433297c2f5ff85486ded019 + languageName: node + linkType: hard + +"@babel/code-frame@npm:7.12.11": + version: 7.12.11 + resolution: "@babel/code-frame@npm:7.12.11" + dependencies: + "@babel/highlight": ^7.10.4 + checksum: 3963eff3ebfb0e091c7e6f99596ef4b258683e4ba8a134e4e95f77afe85be5c931e184fff6435fb4885d12eba04a5e25532f7fbc292ca13b48e7da943474e2f3 + languageName: node + linkType: hard + +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.5.5": + version: 7.22.13 + resolution: "@babel/code-frame@npm:7.22.13" + dependencies: + "@babel/highlight": ^7.22.13 + chalk: ^2.4.2 + checksum: 22e342c8077c8b77eeb11f554ecca2ba14153f707b85294fcf6070b6f6150aae88a7b7436dd88d8c9289970585f3fe5b9b941c5aa3aa26a6d5a8ef3f292da058 + languageName: node + linkType: hard + +"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.22.9, @babel/compat-data@npm:^7.23.2": + version: 7.23.2 + resolution: "@babel/compat-data@npm:7.23.2" + checksum: d8dc27437d40907b271161d4c88ffe72ccecb034c730deb1960a417b59a14d7c5ebca8cd80dd458a01cd396a7a329eb48cddcc3791b5a84da33d7f278f7bec6a + languageName: node + linkType: hard + +"@babel/core@npm:7.12.3": + version: 7.12.3 + resolution: "@babel/core@npm:7.12.3" + dependencies: + "@babel/code-frame": ^7.10.4 + "@babel/generator": ^7.12.1 + "@babel/helper-module-transforms": ^7.12.1 + "@babel/helpers": ^7.12.1 + "@babel/parser": ^7.12.3 + "@babel/template": ^7.10.4 + "@babel/traverse": ^7.12.1 + "@babel/types": ^7.12.1 + convert-source-map: ^1.7.0 + debug: ^4.1.0 + gensync: ^1.0.0-beta.1 + json5: ^2.1.2 + lodash: ^4.17.19 + resolve: ^1.3.2 + semver: ^5.4.1 + source-map: ^0.5.0 + checksum: 29ee14dd7ae66c1af84d1b2864e1e9e1bec23b89f41e414917b10151ae1fcb6d3b6a8a25d028a7e22dba3bb7b69eb1f7f0d844797341357e36fa71ff967fb4a5 + languageName: node + linkType: hard + +"@babel/core@npm:^7.1.0, @babel/core@npm:^7.12.3, @babel/core@npm:^7.16.0, @babel/core@npm:^7.7.5, @babel/core@npm:^7.8.4": + version: 7.23.2 + resolution: "@babel/core@npm:7.23.2" + dependencies: + "@ampproject/remapping": ^2.2.0 + "@babel/code-frame": ^7.22.13 + "@babel/generator": ^7.23.0 + "@babel/helper-compilation-targets": ^7.22.15 + "@babel/helper-module-transforms": ^7.23.0 + "@babel/helpers": ^7.23.2 + "@babel/parser": ^7.23.0 + "@babel/template": ^7.22.15 + "@babel/traverse": ^7.23.2 + "@babel/types": ^7.23.0 + convert-source-map: ^2.0.0 + debug: ^4.1.0 + gensync: ^1.0.0-beta.2 + json5: ^2.2.3 + semver: ^6.3.1 + checksum: 003897718ded16f3b75632d63cd49486bf67ff206cc7ebd1a10d49e2456f8d45740910d5ec7e42e3faf0deec7a2e96b1a02e766d19a67a8309053f0d4e57c0fe + languageName: node + linkType: hard + +"@babel/generator@npm:^7.12.1, @babel/generator@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/generator@npm:7.23.0" + dependencies: + "@babel/types": ^7.23.0 + "@jridgewell/gen-mapping": ^0.3.2 + "@jridgewell/trace-mapping": ^0.3.17 + jsesc: ^2.5.1 + checksum: 8efe24adad34300f1f8ea2add420b28171a646edc70f2a1b3e1683842f23b8b7ffa7e35ef0119294e1901f45bfea5b3dc70abe1f10a1917ccdfb41bed69be5f1 + languageName: node + linkType: hard + +"@babel/helper-annotate-as-pure@npm:^7.18.6, @babel/helper-annotate-as-pure@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-annotate-as-pure@npm:7.22.5" + dependencies: + "@babel/types": ^7.22.5 + checksum: 53da330f1835c46f26b7bf4da31f7a496dee9fd8696cca12366b94ba19d97421ce519a74a837f687749318f94d1a37f8d1abcbf35e8ed22c32d16373b2f6198d + languageName: node + linkType: hard + +"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.5": + version: 7.22.15 + resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.22.15" + dependencies: + "@babel/types": ^7.22.15 + checksum: 639c697a1c729f9fafa2dd4c9af2e18568190299b5907bd4c2d0bc818fcbd1e83ffeecc2af24327a7faa7ac4c34edd9d7940510a5e66296c19bad17001cf5c7a + languageName: node + linkType: hard + +"@babel/helper-compilation-targets@npm:^7.22.15, @babel/helper-compilation-targets@npm:^7.22.5, @babel/helper-compilation-targets@npm:^7.22.6": + version: 7.22.15 + resolution: "@babel/helper-compilation-targets@npm:7.22.15" + dependencies: + "@babel/compat-data": ^7.22.9 + "@babel/helper-validator-option": ^7.22.15 + browserslist: ^4.21.9 + lru-cache: ^5.1.1 + semver: ^6.3.1 + checksum: ce85196769e091ae54dd39e4a80c2a9df1793da8588e335c383d536d54f06baf648d0a08fc873044f226398c4ded15c4ae9120ee18e7dfd7c639a68e3cdc9980 + languageName: node + linkType: hard + +"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.21.0, @babel/helper-create-class-features-plugin@npm:^7.22.11, @babel/helper-create-class-features-plugin@npm:^7.22.15, @babel/helper-create-class-features-plugin@npm:^7.22.5": + version: 7.22.15 + resolution: "@babel/helper-create-class-features-plugin@npm:7.22.15" + dependencies: + "@babel/helper-annotate-as-pure": ^7.22.5 + "@babel/helper-environment-visitor": ^7.22.5 + "@babel/helper-function-name": ^7.22.5 + "@babel/helper-member-expression-to-functions": ^7.22.15 + "@babel/helper-optimise-call-expression": ^7.22.5 + "@babel/helper-replace-supers": ^7.22.9 + "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5 + "@babel/helper-split-export-declaration": ^7.22.6 + semver: ^6.3.1 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 52c500d8d164abb3a360b1b7c4b8fff77bc4a5920d3a2b41ae6e1d30617b0dc0b972c1f5db35b1752007e04a748908b4a99bc872b73549ae837e87dcdde005a3 + languageName: node + linkType: hard + +"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.22.5": + version: 7.22.15 + resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.15" + dependencies: + "@babel/helper-annotate-as-pure": ^7.22.5 + regexpu-core: ^5.3.1 + semver: ^6.3.1 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 0243b8d4854f1dc8861b1029a46d3f6393ad72f366a5a08e36a4648aa682044f06da4c6e87a456260e1e1b33c999f898ba591a0760842c1387bcc93fbf2151a6 + languageName: node + linkType: hard + +"@babel/helper-define-polyfill-provider@npm:^0.4.3": + version: 0.4.3 + resolution: "@babel/helper-define-polyfill-provider@npm:0.4.3" + dependencies: + "@babel/helper-compilation-targets": ^7.22.6 + "@babel/helper-plugin-utils": ^7.22.5 + debug: ^4.1.1 + lodash.debounce: ^4.0.8 + resolve: ^1.14.2 + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: 5d21e3f47b320e4b5b644195ec405e7ebc3739e48e65899efc808c5fa9c3bf5b06ce0d8ff5246ca99d1411e368f4557bc66730196c5781a5c4e986ee703bee79 + languageName: node + linkType: hard + +"@babel/helper-environment-visitor@npm:^7.22.20, @babel/helper-environment-visitor@npm:^7.22.5": + version: 7.22.20 + resolution: "@babel/helper-environment-visitor@npm:7.22.20" + checksum: d80ee98ff66f41e233f36ca1921774c37e88a803b2f7dca3db7c057a5fea0473804db9fb6729e5dbfd07f4bed722d60f7852035c2c739382e84c335661590b69 + languageName: node + linkType: hard + +"@babel/helper-function-name@npm:^7.22.5, @babel/helper-function-name@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/helper-function-name@npm:7.23.0" + dependencies: + "@babel/template": ^7.22.15 + "@babel/types": ^7.23.0 + checksum: e44542257b2d4634a1f979244eb2a4ad8e6d75eb6761b4cfceb56b562f7db150d134bc538c8e6adca3783e3bc31be949071527aa8e3aab7867d1ad2d84a26e10 + languageName: node + linkType: hard + +"@babel/helper-hoist-variables@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-hoist-variables@npm:7.22.5" + dependencies: + "@babel/types": ^7.22.5 + checksum: 394ca191b4ac908a76e7c50ab52102669efe3a1c277033e49467913c7ed6f7c64d7eacbeabf3bed39ea1f41731e22993f763b1edce0f74ff8563fd1f380d92cc + languageName: node + linkType: hard + +"@babel/helper-member-expression-to-functions@npm:^7.22.15": + version: 7.23.0 + resolution: "@babel/helper-member-expression-to-functions@npm:7.23.0" + dependencies: + "@babel/types": ^7.23.0 + checksum: 494659361370c979ada711ca685e2efe9460683c36db1b283b446122596602c901e291e09f2f980ecedfe6e0f2bd5386cb59768285446530df10c14df1024e75 + languageName: node + linkType: hard + +"@babel/helper-module-imports@npm:^7.0.0, @babel/helper-module-imports@npm:^7.16.7, @babel/helper-module-imports@npm:^7.22.15, @babel/helper-module-imports@npm:^7.22.5": + version: 7.22.15 + resolution: "@babel/helper-module-imports@npm:7.22.15" + dependencies: + "@babel/types": ^7.22.15 + checksum: ecd7e457df0a46f889228f943ef9b4a47d485d82e030676767e6a2fdcbdaa63594d8124d4b55fd160b41c201025aec01fc27580352b1c87a37c9c6f33d116702 + languageName: node + linkType: hard + +"@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.22.5, @babel/helper-module-transforms@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/helper-module-transforms@npm:7.23.0" + dependencies: + "@babel/helper-environment-visitor": ^7.22.20 + "@babel/helper-module-imports": ^7.22.15 + "@babel/helper-simple-access": ^7.22.5 + "@babel/helper-split-export-declaration": ^7.22.6 + "@babel/helper-validator-identifier": ^7.22.20 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 6e2afffb058cf3f8ce92f5116f710dda4341c81cfcd872f9a0197ea594f7ce0ab3cb940b0590af2fe99e60d2e5448bfba6bca8156ed70a2ed4be2adc8586c891 + languageName: node + linkType: hard + +"@babel/helper-optimise-call-expression@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-optimise-call-expression@npm:7.22.5" + dependencies: + "@babel/types": ^7.22.5 + checksum: c70ef6cc6b6ed32eeeec4482127e8be5451d0e5282d5495d5d569d39eb04d7f1d66ec99b327f45d1d5842a9ad8c22d48567e93fc502003a47de78d122e355f7c + languageName: node + linkType: hard + +"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3": + version: 7.22.5 + resolution: "@babel/helper-plugin-utils@npm:7.22.5" + checksum: c0fc7227076b6041acd2f0e818145d2e8c41968cc52fb5ca70eed48e21b8fe6dd88a0a91cbddf4951e33647336eb5ae184747ca706817ca3bef5e9e905151ff5 + languageName: node + linkType: hard + +"@babel/helper-remap-async-to-generator@npm:^7.22.20, @babel/helper-remap-async-to-generator@npm:^7.22.5": + version: 7.22.20 + resolution: "@babel/helper-remap-async-to-generator@npm:7.22.20" + dependencies: + "@babel/helper-annotate-as-pure": ^7.22.5 + "@babel/helper-environment-visitor": ^7.22.20 + "@babel/helper-wrap-function": ^7.22.20 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 2fe6300a6f1b58211dffa0aed1b45d4958506d096543663dba83bd9251fe8d670fa909143a65b45e72acb49e7e20fbdb73eae315d9ddaced467948c3329986e7 + languageName: node + linkType: hard + +"@babel/helper-replace-supers@npm:^7.22.20, @babel/helper-replace-supers@npm:^7.22.5, @babel/helper-replace-supers@npm:^7.22.9": + version: 7.22.20 + resolution: "@babel/helper-replace-supers@npm:7.22.20" + dependencies: + "@babel/helper-environment-visitor": ^7.22.20 + "@babel/helper-member-expression-to-functions": ^7.22.15 + "@babel/helper-optimise-call-expression": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: a0008332e24daedea2e9498733e3c39b389d6d4512637e000f96f62b797e702ee24a407ccbcd7a236a551590a38f31282829a8ef35c50a3c0457d88218cae639 + languageName: node + linkType: hard + +"@babel/helper-simple-access@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-simple-access@npm:7.22.5" + dependencies: + "@babel/types": ^7.22.5 + checksum: fe9686714caf7d70aedb46c3cce090f8b915b206e09225f1e4dbc416786c2fdbbee40b38b23c268b7ccef749dd2db35f255338fb4f2444429874d900dede5ad2 + languageName: node + linkType: hard + +"@babel/helper-skip-transparent-expression-wrappers@npm:^7.20.0, @babel/helper-skip-transparent-expression-wrappers@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.22.5" + dependencies: + "@babel/types": ^7.22.5 + checksum: 1012ef2295eb12dc073f2b9edf3425661e9b8432a3387e62a8bc27c42963f1f216ab3124228015c748770b2257b4f1fda882ca8fa34c0bf485e929ae5bc45244 + languageName: node + linkType: hard + +"@babel/helper-split-export-declaration@npm:^7.22.6": + version: 7.22.6 + resolution: "@babel/helper-split-export-declaration@npm:7.22.6" + dependencies: + "@babel/types": ^7.22.5 + checksum: e141cace583b19d9195f9c2b8e17a3ae913b7ee9b8120246d0f9ca349ca6f03cb2c001fd5ec57488c544347c0bb584afec66c936511e447fd20a360e591ac921 + languageName: node + linkType: hard + +"@babel/helper-string-parser@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-string-parser@npm:7.22.5" + checksum: 836851ca5ec813077bbb303acc992d75a360267aa3b5de7134d220411c852a6f17de7c0d0b8c8dcc0f567f67874c00f4528672b2a4f1bc978a3ada64c8c78467 + languageName: node + linkType: hard + +"@babel/helper-validator-identifier@npm:^7.14.9, @babel/helper-validator-identifier@npm:^7.22.20": + version: 7.22.20 + resolution: "@babel/helper-validator-identifier@npm:7.22.20" + checksum: 136412784d9428266bcdd4d91c32bcf9ff0e8d25534a9d94b044f77fe76bc50f941a90319b05aafd1ec04f7d127cd57a179a3716009ff7f3412ef835ada95bdc + languageName: node + linkType: hard + +"@babel/helper-validator-option@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/helper-validator-option@npm:7.22.15" + checksum: 68da52b1e10002a543161494c4bc0f4d0398c8fdf361d5f7f4272e95c45d5b32d974896d44f6a0ea7378c9204988879d73613ca683e13bd1304e46d25ff67a8d + languageName: node + linkType: hard + +"@babel/helper-wrap-function@npm:^7.22.20": + version: 7.22.20 + resolution: "@babel/helper-wrap-function@npm:7.22.20" + dependencies: + "@babel/helper-function-name": ^7.22.5 + "@babel/template": ^7.22.15 + "@babel/types": ^7.22.19 + checksum: 221ed9b5572612aeb571e4ce6a256f2dee85b3c9536f1dd5e611b0255e5f59a3d0ec392d8d46d4152149156a8109f92f20379b1d6d36abb613176e0e33f05fca + languageName: node + linkType: hard + +"@babel/helpers@npm:^7.12.1, @babel/helpers@npm:^7.23.2": + version: 7.23.2 + resolution: "@babel/helpers@npm:7.23.2" + dependencies: + "@babel/template": ^7.22.15 + "@babel/traverse": ^7.23.2 + "@babel/types": ^7.23.0 + checksum: aaf4828df75ec460eaa70e5c9f66e6dadc28dae3728ddb7f6c13187dbf38030e142194b83d81aa8a31bbc35a5529a5d7d3f3cf59d5d0b595f5dd7f9d8f1ced8e + languageName: node + linkType: hard + +"@babel/highlight@npm:^7.10.4, @babel/highlight@npm:^7.22.13": + version: 7.22.20 + resolution: "@babel/highlight@npm:7.22.20" + dependencies: + "@babel/helper-validator-identifier": ^7.22.20 + chalk: ^2.4.2 + js-tokens: ^4.0.0 + checksum: 84bd034dca309a5e680083cd827a766780ca63cef37308404f17653d32366ea76262bd2364b2d38776232f2d01b649f26721417d507e8b4b6da3e4e739f6d134 + languageName: node + linkType: hard + +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.3, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.22.15, @babel/parser@npm:^7.23.0, @babel/parser@npm:^7.7.0": + version: 7.23.0 + resolution: "@babel/parser@npm:7.23.0" + bin: + parser: ./bin/babel-parser.js + checksum: 453fdf8b9e2c2b7d7b02139e0ce003d1af21947bbc03eb350fb248ee335c9b85e4ab41697ddbdd97079698de825a265e45a0846bb2ed47a2c7c1df833f42a354 + languageName: node + linkType: hard + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.22.15" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 8910ca21a7ec7c06f7b247d4b86c97c5aa15ef321518f44f6f490c5912fdf82c605aaa02b90892e375d82ccbedeadfdeadd922c1b836c9dd4c596871bf654753 + languageName: node + linkType: hard + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.22.15" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5 + "@babel/plugin-transform-optional-chaining": ^7.22.15 + peerDependencies: + "@babel/core": ^7.13.0 + checksum: fbefedc0da014c37f1a50a8094ce7dbbf2181ae93243f23d6ecba2499b5b20196c2124d6a4dfe3e9e0125798e80593103e456352a4beb4e5c6f7c75efb80fdac + languageName: node + linkType: hard + +"@babel/plugin-proposal-class-properties@npm:^7.16.0": + version: 7.18.6 + resolution: "@babel/plugin-proposal-class-properties@npm:7.18.6" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.18.6 + "@babel/helper-plugin-utils": ^7.18.6 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 49a78a2773ec0db56e915d9797e44fd079ab8a9b2e1716e0df07c92532f2c65d76aeda9543883916b8e0ff13606afeffa67c5b93d05b607bc87653ad18a91422 + languageName: node + linkType: hard + +"@babel/plugin-proposal-decorators@npm:^7.16.4": + version: 7.23.2 + resolution: "@babel/plugin-proposal-decorators@npm:7.23.2" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.22.15 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-replace-supers": ^7.22.20 + "@babel/helper-split-export-declaration": ^7.22.6 + "@babel/plugin-syntax-decorators": ^7.22.10 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a8f63451c4678ce34268a0493aa4bc702d0ee164b39b53c12d33619ff3b47518c4369163ef49602cde7f0674db6e6e8584ee3d6a414ea0bbc3dc16c0304ef413 + languageName: node + linkType: hard + +"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.16.0": + version: 7.18.6 + resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.18.6" + dependencies: + "@babel/helper-plugin-utils": ^7.18.6 + "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 949c9ddcdecdaec766ee610ef98f965f928ccc0361dd87cf9f88cf4896a6ccd62fce063d4494778e50da99dea63d270a1be574a62d6ab81cbe9d85884bf55a7d + languageName: node + linkType: hard + +"@babel/plugin-proposal-numeric-separator@npm:^7.16.0": + version: 7.18.6 + resolution: "@babel/plugin-proposal-numeric-separator@npm:7.18.6" + dependencies: + "@babel/helper-plugin-utils": ^7.18.6 + "@babel/plugin-syntax-numeric-separator": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f370ea584c55bf4040e1f78c80b4eeb1ce2e6aaa74f87d1a48266493c33931d0b6222d8cee3a082383d6bb648ab8d6b7147a06f974d3296ef3bc39c7851683ec + languageName: node + linkType: hard + +"@babel/plugin-proposal-optional-chaining@npm:^7.16.0": + version: 7.21.0 + resolution: "@babel/plugin-proposal-optional-chaining@npm:7.21.0" + dependencies: + "@babel/helper-plugin-utils": ^7.20.2 + "@babel/helper-skip-transparent-expression-wrappers": ^7.20.0 + "@babel/plugin-syntax-optional-chaining": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 11c5449e01b18bb8881e8e005a577fa7be2fe5688e2382c8822d51f8f7005342a301a46af7b273b1f5645f9a7b894c428eee8526342038a275ef6ba4c8d8d746 + languageName: node + linkType: hard + +"@babel/plugin-proposal-private-methods@npm:^7.16.0": + version: 7.18.6 + resolution: "@babel/plugin-proposal-private-methods@npm:7.18.6" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.18.6 + "@babel/helper-plugin-utils": ^7.18.6 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 22d8502ee96bca99ad2c8393e8493e2b8d4507576dd054490fd8201a36824373440106f5b098b6d821b026c7e72b0424ff4aeca69ed5f42e48f029d3a156d5ad + languageName: node + linkType: hard + +"@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2": + version: 7.21.0-placeholder-for-preset-env.2 + resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: d97745d098b835d55033ff3a7fb2b895b9c5295b08a5759e4f20df325aa385a3e0bc9bd5ad8f2ec554a44d4e6525acfc257b8c5848a1345cb40f26a30e277e91 + languageName: node + linkType: hard + +"@babel/plugin-proposal-private-property-in-object@npm:^7.16.0": + version: 7.21.11 + resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.11" + dependencies: + "@babel/helper-annotate-as-pure": ^7.18.6 + "@babel/helper-create-class-features-plugin": ^7.21.0 + "@babel/helper-plugin-utils": ^7.20.2 + "@babel/plugin-syntax-private-property-in-object": ^7.14.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 1b880543bc5f525b360b53d97dd30807302bb82615cd42bf931968f59003cac75629563d6b104868db50abd22235b3271fdf679fea5db59a267181a99cc0c265 + languageName: node + linkType: hard + +"@babel/plugin-syntax-async-generators@npm:^7.8.4": + version: 7.8.4 + resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367 + languageName: node + linkType: hard + +"@babel/plugin-syntax-bigint@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-bigint@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3a10849d83e47aec50f367a9e56a6b22d662ddce643334b087f9828f4c3dd73bdc5909aaeabe123fed78515767f9ca43498a0e621c438d1cd2802d7fae3c9648 + languageName: node + linkType: hard + +"@babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3": + version: 7.12.13 + resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13" + dependencies: + "@babel/helper-plugin-utils": ^7.12.13 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 24f34b196d6342f28d4bad303612d7ff566ab0a013ce89e775d98d6f832969462e7235f3e7eaf17678a533d4be0ba45d3ae34ab4e5a9dcbda5d98d49e5efa2fc + languageName: node + linkType: hard + +"@babel/plugin-syntax-class-static-block@npm:^7.14.5": + version: 7.14.5 + resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5" + dependencies: + "@babel/helper-plugin-utils": ^7.14.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3e80814b5b6d4fe17826093918680a351c2d34398a914ce6e55d8083d72a9bdde4fbaf6a2dcea0e23a03de26dc2917ae3efd603d27099e2b98380345703bf948 + languageName: node + linkType: hard + +"@babel/plugin-syntax-decorators@npm:^7.22.10": + version: 7.22.10 + resolution: "@babel/plugin-syntax-decorators@npm:7.22.10" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: baaa10fa52d76ee8b9447f7aedb1c8df7cf2ef83ae29c085c07444e691685aa8b1a326dfb7a3a0e3ae4d5f9fd083175e46ea5e2316d8200f0278f3fd54a58696 + languageName: node + linkType: hard + +"@babel/plugin-syntax-dynamic-import@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: ce307af83cf433d4ec42932329fad25fa73138ab39c7436882ea28742e1c0066626d224e0ad2988724c82644e41601cef607b36194f695cb78a1fcdc959637bd + languageName: node + linkType: hard + +"@babel/plugin-syntax-export-namespace-from@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 85740478be5b0de185228e7814451d74ab8ce0a26fcca7613955262a26e99e8e15e9da58f60c754b84515d4c679b590dbd3f2148f0f58025f4ae706f1c5a5d4a + languageName: node + linkType: hard + +"@babel/plugin-syntax-flow@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-flow@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 84c8c40fcfe8e78cecdd6fb90e8f97f419e3f3b27a33de8324ae97d5ce1b87cdd98a636fa21a68d4d2c37c7d63f3a279bb84b6956b849921affed6b806b6ffe7 + languageName: node + linkType: hard + +"@babel/plugin-syntax-import-assertions@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-import-assertions@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 2b8b5572db04a7bef1e6cd20debf447e4eef7cb012616f5eceb8fa3e23ce469b8f76ee74fd6d1e158ba17a8f58b0aec579d092fb67c5a30e83ccfbc5754916c1 + languageName: node + linkType: hard + +"@babel/plugin-syntax-import-attributes@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-import-attributes@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 197b3c5ea2a9649347f033342cb222ab47f4645633695205c0250c6bf2af29e643753b8bb24a2db39948bef08e7c540babfd365591eb57fc110cb30b425ffc47 + languageName: node + linkType: hard + +"@babel/plugin-syntax-import-meta@npm:^7.10.4, @babel/plugin-syntax-import-meta@npm:^7.8.3": + version: 7.10.4 + resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4" + dependencies: + "@babel/helper-plugin-utils": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 166ac1125d10b9c0c430e4156249a13858c0366d38844883d75d27389621ebe651115cb2ceb6dc011534d5055719fa1727b59f39e1ab3ca97820eef3dcab5b9b + languageName: node + linkType: hard + +"@babel/plugin-syntax-json-strings@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a + languageName: node + linkType: hard + +"@babel/plugin-syntax-jsx@npm:7.14.5": + version: 7.14.5 + resolution: "@babel/plugin-syntax-jsx@npm:7.14.5" + dependencies: + "@babel/helper-plugin-utils": ^7.14.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3a2ba87534b0f9ee70eba0754d2ae544825c25afd98efb8e42b41399e02de4cc5b1f70fc5ce444fb7a7e5b09972c289eed2f00917be5b88d67407f4cbde8e960 + languageName: node + linkType: hard + +"@babel/plugin-syntax-jsx@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-jsx@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 8829d30c2617ab31393d99cec2978e41f014f4ac6f01a1cecf4c4dd8320c3ec12fdc3ce121126b2d8d32f6887e99ca1a0bad53dedb1e6ad165640b92b24980ce + languageName: node + linkType: hard + +"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3": + version: 7.10.4 + resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4" + dependencies: + "@babel/helper-plugin-utils": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: aff33577037e34e515911255cdbb1fd39efee33658aa00b8a5fd3a4b903585112d037cce1cc9e4632f0487dc554486106b79ccd5ea63a2e00df4363f6d4ff886 + languageName: node + linkType: hard + +"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1 + languageName: node + linkType: hard + +"@babel/plugin-syntax-numeric-separator@npm:^7.10.4, @babel/plugin-syntax-numeric-separator@npm:^7.8.3": + version: 7.10.4 + resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4" + dependencies: + "@babel/helper-plugin-utils": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 01ec5547bd0497f76cc903ff4d6b02abc8c05f301c88d2622b6d834e33a5651aa7c7a3d80d8d57656a4588f7276eba357f6b7e006482f5b564b7a6488de493a1 + languageName: node + linkType: hard + +"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf + languageName: node + linkType: hard + +"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 910d90e72bc90ea1ce698e89c1027fed8845212d5ab588e35ef91f13b93143845f94e2539d831dc8d8ededc14ec02f04f7bd6a8179edd43a326c784e7ed7f0b9 + languageName: node + linkType: hard + +"@babel/plugin-syntax-optional-chaining@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: eef94d53a1453361553c1f98b68d17782861a04a392840341bc91780838dd4e695209c783631cf0de14c635758beafb6a3a65399846ffa4386bff90639347f30 + languageName: node + linkType: hard + +"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5": + version: 7.14.5 + resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5" + dependencies: + "@babel/helper-plugin-utils": ^7.14.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b317174783e6e96029b743ccff2a67d63d38756876e7e5d0ba53a322e38d9ca452c13354a57de1ad476b4c066dbae699e0ca157441da611117a47af88985ecda + languageName: node + linkType: hard + +"@babel/plugin-syntax-top-level-await@npm:^7.14.5, @babel/plugin-syntax-top-level-await@npm:^7.8.3": + version: 7.14.5 + resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5" + dependencies: + "@babel/helper-plugin-utils": ^7.14.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: bbd1a56b095be7820029b209677b194db9b1d26691fe999856462e66b25b281f031f3dfd91b1619e9dcf95bebe336211833b854d0fb8780d618e35667c2d0d7e + languageName: node + linkType: hard + +"@babel/plugin-syntax-typescript@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-typescript@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 8ab7718fbb026d64da93681a57797d60326097fd7cb930380c8bffd9eb101689e90142c760a14b51e8e69c88a73ba3da956cb4520a3b0c65743aee5c71ef360a + languageName: node + linkType: hard + +"@babel/plugin-syntax-unicode-sets-regex@npm:^7.18.6": + version: 7.18.6 + resolution: "@babel/plugin-syntax-unicode-sets-regex@npm:7.18.6" + dependencies: + "@babel/helper-create-regexp-features-plugin": ^7.18.6 + "@babel/helper-plugin-utils": ^7.18.6 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: a651d700fe63ff0ddfd7186f4ebc24447ca734f114433139e3c027bc94a900d013cf1ef2e2db8430425ba542e39ae160c3b05f06b59fd4656273a3df97679e9c + languageName: node + linkType: hard + +"@babel/plugin-transform-arrow-functions@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-arrow-functions@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 35abb6c57062802c7ce8bd96b2ef2883e3124370c688bbd67609f7d2453802fb73944df8808f893b6c67de978eb2bcf87bbfe325e46d6f39b5fcb09ece11d01a + languageName: node + linkType: hard + +"@babel/plugin-transform-async-generator-functions@npm:^7.23.2": + version: 7.23.2 + resolution: "@babel/plugin-transform-async-generator-functions@npm:7.23.2" + dependencies: + "@babel/helper-environment-visitor": ^7.22.20 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-remap-async-to-generator": ^7.22.20 + "@babel/plugin-syntax-async-generators": ^7.8.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: e1abae0edcda7304d7c17702ac25a127578791b89c4f767d60589249fa3e50ec33f8c9ff39d3d8d41f00b29947654eaddd4fd586e04c4d598122db745fab2868 + languageName: node + linkType: hard + +"@babel/plugin-transform-async-to-generator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-async-to-generator@npm:7.22.5" + dependencies: + "@babel/helper-module-imports": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-remap-async-to-generator": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b95f23f99dcb379a9f0a1c2a3bbea3f8dc0e1b16dc1ac8b484fe378370169290a7a63d520959a9ba1232837cf74a80e23f6facbe14fd42a3cda6d3c2d7168e62 + languageName: node + linkType: hard + +"@babel/plugin-transform-block-scoped-functions@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 416b1341858e8ca4e524dee66044735956ced5f478b2c3b9bc11ec2285b0c25d7dbb96d79887169eb938084c95d0a89338c8b2fe70d473bd9dc92e5d9db1732c + languageName: node + linkType: hard + +"@babel/plugin-transform-block-scoping@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/plugin-transform-block-scoping@npm:7.23.0" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 0cfe925cc3b5a3ad407e2253fab3ceeaa117a4b291c9cb245578880872999bca91bd83ffa0128ae9ca356330702e1ef1dcb26804f28d2cef678239caf629f73e + languageName: node + linkType: hard + +"@babel/plugin-transform-class-properties@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-class-properties@npm:7.22.5" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b830152dfc2ff2f647f0abe76e6251babdfbef54d18c4b2c73a6bf76b1a00050a5d998dac80dc901a48514e95604324943a9dd39317073fe0928b559e0e0c579 + languageName: node + linkType: hard + +"@babel/plugin-transform-class-static-block@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-class-static-block@npm:7.22.11" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.22.11 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-class-static-block": ^7.14.5 + peerDependencies: + "@babel/core": ^7.12.0 + checksum: 69f040506fad66f1c6918d288d0e0edbc5c8a07c8b4462c1184ad2f9f08995d68b057126c213871c0853ae0c72afc60ec87492049dfacb20902e32346a448bcb + languageName: node + linkType: hard + +"@babel/plugin-transform-classes@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/plugin-transform-classes@npm:7.22.15" + dependencies: + "@babel/helper-annotate-as-pure": ^7.22.5 + "@babel/helper-compilation-targets": ^7.22.15 + "@babel/helper-environment-visitor": ^7.22.5 + "@babel/helper-function-name": ^7.22.5 + "@babel/helper-optimise-call-expression": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-replace-supers": ^7.22.9 + "@babel/helper-split-export-declaration": ^7.22.6 + globals: ^11.1.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: d3f4d0c107dd8a3557ea3575cc777fab27efa92958b41e4a9822f7499725c1f554beae58855de16ddec0a7b694e45f59a26cea8fbde4275563f72f09c6e039a0 + languageName: node + linkType: hard + +"@babel/plugin-transform-computed-properties@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-computed-properties@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/template": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c2a77a0f94ec71efbc569109ec14ea2aa925b333289272ced8b33c6108bdbb02caf01830ffc7e49486b62dec51911924d13f3a76f1149f40daace1898009e131 + languageName: node + linkType: hard + +"@babel/plugin-transform-destructuring@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/plugin-transform-destructuring@npm:7.23.0" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: cd6dd454ccc2766be551e4f8a04b1acc2aa539fa19e5c7501c56cc2f8cc921dd41a7ffb78455b4c4b2f954fcab8ca4561ba7c9c7bd5af9f19465243603d18cc3 + languageName: node + linkType: hard + +"@babel/plugin-transform-dotall-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-dotall-regex@npm:7.22.5" + dependencies: + "@babel/helper-create-regexp-features-plugin": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 409b658d11e3082c8f69e9cdef2d96e4d6d11256f005772425fb230cc48fd05945edbfbcb709dab293a1a2f01f9c8a5bb7b4131e632b23264039d9f95864b453 + languageName: node + linkType: hard + +"@babel/plugin-transform-duplicate-keys@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-duplicate-keys@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: bb1280fbabaab6fab2ede585df34900712698210a3bd413f4df5bae6d8c24be36b496c92722ae676a7a67d060a4624f4d6c23b923485f906bfba8773c69f55b4 + languageName: node + linkType: hard + +"@babel/plugin-transform-dynamic-import@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-dynamic-import@npm:7.22.11" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-dynamic-import": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 78fc9c532210bf9e8f231747f542318568ac360ee6c27e80853962c984283c73da3f8f8aebe83c2096090a435b356b092ed85de617a156cbe0729d847632be45 + languageName: node + linkType: hard + +"@babel/plugin-transform-exponentiation-operator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.22.5" + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f2d660c1b1d51ad5fec1cd5ad426a52187204068c4158f8c4aa977b31535c61b66898d532603eef21c15756827be8277f724c869b888d560f26d7fe848bb5eae + languageName: node + linkType: hard + +"@babel/plugin-transform-export-namespace-from@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-export-namespace-from@npm:7.22.11" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-export-namespace-from": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 73af5883a321ed56a4bfd43c8a7de0164faebe619287706896fc6ee2f7a4e69042adaa1338c0b8b4bdb9f7e5fdceb016fb1d40694cb43ca3b8827429e8aac4bf + languageName: node + linkType: hard + +"@babel/plugin-transform-flow-strip-types@npm:^7.16.0": + version: 7.22.5 + resolution: "@babel/plugin-transform-flow-strip-types@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-flow": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 1ba48187d6f33814be01c6870489f0b1858256cf2b9dd7e62f02af8b30049bf375112f1d44692c5fed3cb9cd26ee2fb32e358cd79b6ad2360a51e8f993e861bf + languageName: node + linkType: hard + +"@babel/plugin-transform-for-of@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/plugin-transform-for-of@npm:7.22.15" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f395ae7bce31e14961460f56cf751b5d6e37dd27d7df5b1f4e49fec1c11b6f9cf71991c7ffbe6549878591e87df0d66af798cf26edfa4bfa6b4c3dba1fb2f73a + languageName: node + linkType: hard + +"@babel/plugin-transform-function-name@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-function-name@npm:7.22.5" + dependencies: + "@babel/helper-compilation-targets": ^7.22.5 + "@babel/helper-function-name": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: cff3b876357999cb8ae30e439c3ec6b0491a53b0aa6f722920a4675a6dd5b53af97a833051df4b34791fe5b3dd326ccf769d5c8e45b322aa50ee11a660b17845 + languageName: node + linkType: hard + +"@babel/plugin-transform-json-strings@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-json-strings@npm:7.22.11" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-json-strings": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 50665e5979e66358c50e90a26db53c55917f78175127ac2fa05c7888d156d418ffb930ec0a109353db0a7c5f57c756ce01bfc9825d24cbfd2b3ec453f2ed8cba + languageName: node + linkType: hard + +"@babel/plugin-transform-literals@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-literals@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: ec37cc2ffb32667af935ab32fe28f00920ec8a1eb999aa6dc6602f2bebd8ba205a558aeedcdccdebf334381d5c57106c61f52332045730393e73410892a9735b + languageName: node + linkType: hard + +"@babel/plugin-transform-logical-assignment-operators@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.22.11" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c664e9798e85afa7f92f07b867682dee7392046181d82f5d21bae6f2ca26dfe9c8375cdc52b7483c3fc09a983c1989f60eff9fbc4f373b0c0a74090553d05739 + languageName: node + linkType: hard + +"@babel/plugin-transform-member-expression-literals@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-member-expression-literals@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: ec4b0e07915ddd4fda0142fd104ee61015c208608a84cfa13643a95d18760b1dc1ceb6c6e0548898b8c49e5959a994e46367260176dbabc4467f729b21868504 + languageName: node + linkType: hard + +"@babel/plugin-transform-modules-amd@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/plugin-transform-modules-amd@npm:7.23.0" + dependencies: + "@babel/helper-module-transforms": ^7.23.0 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 5d92875170a37b8282d4bcd805f55829b8fab0f9c8d08b53d32a7a0bfdc62b868e489b52d329ae768ecafc0c993eed0ad7a387baa673ac33211390a9f833ab5d + languageName: node + linkType: hard + +"@babel/plugin-transform-modules-commonjs@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/plugin-transform-modules-commonjs@npm:7.23.0" + dependencies: + "@babel/helper-module-transforms": ^7.23.0 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-simple-access": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 7fb25997194053e167c4207c319ff05362392da841bd9f42ddb3caf9c8798a5d203bd926d23ddf5830fdf05eddc82c2810f40d1287e3a4f80b07eff13d1024b5 + languageName: node + linkType: hard + +"@babel/plugin-transform-modules-systemjs@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/plugin-transform-modules-systemjs@npm:7.23.0" + dependencies: + "@babel/helper-hoist-variables": ^7.22.5 + "@babel/helper-module-transforms": ^7.23.0 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-validator-identifier": ^7.22.20 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 2d481458b22605046badea2317d5cc5c94ac3031c2293e34c96f02063f5b02af0979c4da6a8fbc67cc249541575dc9c6d710db6b919ede70b7337a22d9fd57a7 + languageName: node + linkType: hard + +"@babel/plugin-transform-modules-umd@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-modules-umd@npm:7.22.5" + dependencies: + "@babel/helper-module-transforms": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 46622834c54c551b231963b867adbc80854881b3e516ff29984a8da989bd81665bd70e8cba6710345248e97166689310f544aee1a5773e262845a8f1b3e5b8b4 + languageName: node + linkType: hard + +"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.22.5" + dependencies: + "@babel/helper-create-regexp-features-plugin": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 3ee564ddee620c035b928fdc942c5d17e9c4b98329b76f9cefac65c111135d925eb94ed324064cd7556d4f5123beec79abea1d4b97d1c8a2a5c748887a2eb623 + languageName: node + linkType: hard + +"@babel/plugin-transform-new-target@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-new-target@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 6b72112773487a881a1d6ffa680afde08bad699252020e86122180ee7a88854d5da3f15d9bca3331cf2e025df045604494a8208a2e63b486266b07c14e2ffbf3 + languageName: node + linkType: hard + +"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.22.11" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 167babecc8b8fe70796a7b7d34af667ebbf43da166c21689502e5e8cc93180b7a85979c77c9f64b7cce431b36718bd0a6df9e5e0ffea4ae22afb22cfef886372 + languageName: node + linkType: hard + +"@babel/plugin-transform-numeric-separator@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-numeric-separator@npm:7.22.11" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-numeric-separator": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: af064d06a4a041767ec396a5f258103f64785df290e038bba9f0ef454e6c914f2ac45d862bbdad8fac2c7ad47fa4e95356f29053c60c100a0160b02a995fe2a3 + languageName: node + linkType: hard + +"@babel/plugin-transform-object-rest-spread@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/plugin-transform-object-rest-spread@npm:7.22.15" + dependencies: + "@babel/compat-data": ^7.22.9 + "@babel/helper-compilation-targets": ^7.22.15 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-object-rest-spread": ^7.8.3 + "@babel/plugin-transform-parameters": ^7.22.15 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 62197a6f12289c1c1bd57f3bed9f0f765ca32390bfe91e0b5561dd94dd9770f4480c4162dec98da094bc0ba99d2c2ebba68de47c019454041b0b7a68ba2ec66d + languageName: node + linkType: hard + +"@babel/plugin-transform-object-super@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-object-super@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-replace-supers": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b71887877d74cb64dbccb5c0324fa67e31171e6a5311991f626650e44a4083e5436a1eaa89da78c0474fb095d4ec322d63ee778b202d33aa2e4194e1ed8e62d7 + languageName: node + linkType: hard + +"@babel/plugin-transform-optional-catch-binding@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.22.11" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-optional-catch-binding": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f17abd90e1de67c84d63afea29c8021c74abb2794d3a6eeafb0bbe7372d3db32aefca386e392116ec63884537a4a2815d090d26264d259bacc08f6e3ed05294c + languageName: node + linkType: hard + +"@babel/plugin-transform-optional-chaining@npm:^7.22.15, @babel/plugin-transform-optional-chaining@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/plugin-transform-optional-chaining@npm:7.23.0" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5 + "@babel/plugin-syntax-optional-chaining": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f702634f2b97e5260dbec0d4bde05ccb6f4d96d7bfa946481aeacfa205ca846cb6e096a38312f9d51fdbdac1f258f211138c5f7075952e46a5bf8574de6a1329 + languageName: node + linkType: hard + +"@babel/plugin-transform-parameters@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/plugin-transform-parameters@npm:7.22.15" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 541188bb7d1876cad87687b5c7daf90f63d8208ae83df24acb1e2b05020ad1c78786b2723ca4054a83fcb74fb6509f30c4cacc5b538ee684224261ad5fb047c1 + languageName: node + linkType: hard + +"@babel/plugin-transform-private-methods@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-private-methods@npm:7.22.5" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 321479b4fcb6d3b3ef622ab22fd24001e43d46e680e8e41324c033d5810c84646e470f81b44cbcbef5c22e99030784f7cac92f1829974da7a47a60a7139082c3 + languageName: node + linkType: hard + +"@babel/plugin-transform-private-property-in-object@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-private-property-in-object@npm:7.22.11" + dependencies: + "@babel/helper-annotate-as-pure": ^7.22.5 + "@babel/helper-create-class-features-plugin": ^7.22.11 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-private-property-in-object": ^7.14.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 4d029d84901e53c46dead7a46e2990a7bc62470f4e4ca58a0d063394f86652fd58fe4eea1eb941da3669cd536b559b9d058b342b59300026346b7a2a51badac8 + languageName: node + linkType: hard + +"@babel/plugin-transform-property-literals@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-property-literals@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 796176a3176106f77fcb8cd04eb34a8475ce82d6d03a88db089531b8f0453a2fb8b0c6ec9a52c27948bc0ea478becec449893741fc546dfc3930ab927e3f9f2e + languageName: node + linkType: hard + +"@babel/plugin-transform-react-constant-elements@npm:^7.12.1": + version: 7.22.5 + resolution: "@babel/plugin-transform-react-constant-elements@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 596db90e37174dd703f4859fef3c86156a7c8564d8351168ac6fdca79c912ef8b8746ae04516ac3909d2cc750702d58d451badacb3c54ea998938ad05d99f9d2 + languageName: node + linkType: hard + +"@babel/plugin-transform-react-display-name@npm:^7.16.0, @babel/plugin-transform-react-display-name@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-react-display-name@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a12bfd1e4e93055efca3ace3c34722571bda59d9740dca364d225d9c6e3ca874f134694d21715c42cc63d79efd46db9665bd4a022998767f9245f1e29d5d204d + languageName: node + linkType: hard + +"@babel/plugin-transform-react-jsx-development@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-react-jsx-development@npm:7.22.5" + dependencies: + "@babel/plugin-transform-react-jsx": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 36bc3ff0b96bb0ef4723070a50cfdf2e72cfd903a59eba448f9fe92fea47574d6f22efd99364413719e1f3fb3c51b6c9b2990b87af088f8486a84b2a5f9e4560 + languageName: node + linkType: hard + +"@babel/plugin-transform-react-jsx@npm:^7.22.15, @babel/plugin-transform-react-jsx@npm:^7.22.5": + version: 7.22.15 + resolution: "@babel/plugin-transform-react-jsx@npm:7.22.15" + dependencies: + "@babel/helper-annotate-as-pure": ^7.22.5 + "@babel/helper-module-imports": ^7.22.15 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-jsx": ^7.22.5 + "@babel/types": ^7.22.15 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3899054e89550c3a0ef041af7c47ee266e2e934f498ee80fefeda778a6aa177b48aa8b4d2a8bf5848de977fec564571699ab952d9fa089c4c19b45ddb121df09 + languageName: node + linkType: hard + +"@babel/plugin-transform-react-pure-annotations@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.22.5" + dependencies: + "@babel/helper-annotate-as-pure": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 092021c4f404e267002099ec20b3f12dd730cb90b0d83c5feed3dc00dbe43b9c42c795a18e7c6c7d7bddea20c7dd56221b146aec81b37f2e7eb5137331c61120 + languageName: node + linkType: hard + +"@babel/plugin-transform-regenerator@npm:^7.22.10": + version: 7.22.10 + resolution: "@babel/plugin-transform-regenerator@npm:7.22.10" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + regenerator-transform: ^0.15.2 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: e13678d62d6fa96f11cb8b863f00e8693491e7adc88bfca3f2820f80cbac8336e7dec3a596eee6a1c4663b7ececc3564f2cd7fb44ed6d4ce84ac2bb7f39ecc6e + languageName: node + linkType: hard + +"@babel/plugin-transform-reserved-words@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-reserved-words@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3ffd7dbc425fe8132bfec118b9817572799cab1473113a635d25ab606c1f5a2341a636c04cf6b22df3813320365ed5a965b5eeb3192320a10e4cc2c137bd8bfc + languageName: node + linkType: hard + +"@babel/plugin-transform-runtime@npm:^7.16.4": + version: 7.23.2 + resolution: "@babel/plugin-transform-runtime@npm:7.23.2" + dependencies: + "@babel/helper-module-imports": ^7.22.15 + "@babel/helper-plugin-utils": ^7.22.5 + babel-plugin-polyfill-corejs2: ^0.4.6 + babel-plugin-polyfill-corejs3: ^0.8.5 + babel-plugin-polyfill-regenerator: ^0.5.3 + semver: ^6.3.1 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 09f4273bfe9600c67e72e26f853f11c24ee4c1cbb3935c4a28a94d388e7c0d8733479d868c333cb34e9c236f1765788c6daef7852331f5c70a3b5543fd0247a1 + languageName: node + linkType: hard + +"@babel/plugin-transform-shorthand-properties@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-shorthand-properties@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a5ac902c56ea8effa99f681340ee61bac21094588f7aef0bc01dff98246651702e677552fa6d10e548c4ac22a3ffad047dd2f8c8f0540b68316c2c203e56818b + languageName: node + linkType: hard + +"@babel/plugin-transform-spread@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-spread@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 5587f0deb60b3dfc9b274e269031cc45ec75facccf1933ea2ea71ced9fd3ce98ed91bb36d6cd26817c14474b90ed998c5078415f0eab531caf301496ce24c95c + languageName: node + linkType: hard + +"@babel/plugin-transform-sticky-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-sticky-regex@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 63b2c575e3e7f96c32d52ed45ee098fb7d354b35c2223b8c8e76840b32cc529ee0c0ceb5742fd082e56e91e3d82842a367ce177e82b05039af3d602c9627a729 + languageName: node + linkType: hard + +"@babel/plugin-transform-template-literals@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-template-literals@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 27e9bb030654cb425381c69754be4abe6a7c75b45cd7f962cd8d604b841b2f0fb7b024f2efc1c25cc53f5b16d79d5e8cfc47cacbdaa983895b3aeefa3e7e24ff + languageName: node + linkType: hard + +"@babel/plugin-transform-typeof-symbol@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-typeof-symbol@npm:7.22.5" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 82a53a63ffc3010b689ca9a54e5f53b2718b9f4b4a9818f36f9b7dba234f38a01876680553d2716a645a61920b5e6e4aaf8d4a0064add379b27ca0b403049512 + languageName: node + linkType: hard + +"@babel/plugin-transform-typescript@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/plugin-transform-typescript@npm:7.22.15" + dependencies: + "@babel/helper-annotate-as-pure": ^7.22.5 + "@babel/helper-create-class-features-plugin": ^7.22.15 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-typescript": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c5d96cdbf0e1512707aa1c1e3ac6b370a25fd9c545d26008ce44eb13a47bd7fd67a1eb799c98b5ccc82e33a345fda55c0055e1fe3ed97646ed405dd13020b226 + languageName: node + linkType: hard + +"@babel/plugin-transform-unicode-escapes@npm:^7.22.10": + version: 7.22.10 + resolution: "@babel/plugin-transform-unicode-escapes@npm:7.22.10" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 807f40ed1324c8cb107c45358f1903384ca3f0ef1d01c5a3c5c9b271c8d8eec66936a3dcc8d75ddfceea9421420368c2e77ae3adef0a50557e778dfe296bf382 + languageName: node + linkType: hard + +"@babel/plugin-transform-unicode-property-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.22.5" + dependencies: + "@babel/helper-create-regexp-features-plugin": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 2495e5f663cb388e3d888b4ba3df419ac436a5012144ac170b622ddfc221f9ea9bdba839fa2bc0185cb776b578030666406452ec7791cbf0e7a3d4c88ae9574c + languageName: node + linkType: hard + +"@babel/plugin-transform-unicode-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-unicode-regex@npm:7.22.5" + dependencies: + "@babel/helper-create-regexp-features-plugin": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 6b5d1404c8c623b0ec9bd436c00d885a17d6a34f3f2597996343ddb9d94f6379705b21582dfd4cec2c47fd34068872e74ab6b9580116c0566b3f9447e2a7fa06 + languageName: node + linkType: hard + +"@babel/plugin-transform-unicode-sets-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.22.5" + dependencies: + "@babel/helper-create-regexp-features-plugin": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: c042070f980b139547f8b0179efbc049ac5930abec7fc26ed7a41d89a048d8ab17d362200e204b6f71c3c20d6991a0e74415e1a412a49adc8131c2a40c04822e + languageName: node + linkType: hard + +"@babel/preset-env@npm:^7.12.1, @babel/preset-env@npm:^7.16.4, @babel/preset-env@npm:^7.8.4": + version: 7.23.2 + resolution: "@babel/preset-env@npm:7.23.2" + dependencies: + "@babel/compat-data": ^7.23.2 + "@babel/helper-compilation-targets": ^7.22.15 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-validator-option": ^7.22.15 + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ^7.22.15 + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ^7.22.15 + "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2 + "@babel/plugin-syntax-async-generators": ^7.8.4 + "@babel/plugin-syntax-class-properties": ^7.12.13 + "@babel/plugin-syntax-class-static-block": ^7.14.5 + "@babel/plugin-syntax-dynamic-import": ^7.8.3 + "@babel/plugin-syntax-export-namespace-from": ^7.8.3 + "@babel/plugin-syntax-import-assertions": ^7.22.5 + "@babel/plugin-syntax-import-attributes": ^7.22.5 + "@babel/plugin-syntax-import-meta": ^7.10.4 + "@babel/plugin-syntax-json-strings": ^7.8.3 + "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4 + "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 + "@babel/plugin-syntax-numeric-separator": ^7.10.4 + "@babel/plugin-syntax-object-rest-spread": ^7.8.3 + "@babel/plugin-syntax-optional-catch-binding": ^7.8.3 + "@babel/plugin-syntax-optional-chaining": ^7.8.3 + "@babel/plugin-syntax-private-property-in-object": ^7.14.5 + "@babel/plugin-syntax-top-level-await": ^7.14.5 + "@babel/plugin-syntax-unicode-sets-regex": ^7.18.6 + "@babel/plugin-transform-arrow-functions": ^7.22.5 + "@babel/plugin-transform-async-generator-functions": ^7.23.2 + "@babel/plugin-transform-async-to-generator": ^7.22.5 + "@babel/plugin-transform-block-scoped-functions": ^7.22.5 + "@babel/plugin-transform-block-scoping": ^7.23.0 + "@babel/plugin-transform-class-properties": ^7.22.5 + "@babel/plugin-transform-class-static-block": ^7.22.11 + "@babel/plugin-transform-classes": ^7.22.15 + "@babel/plugin-transform-computed-properties": ^7.22.5 + "@babel/plugin-transform-destructuring": ^7.23.0 + "@babel/plugin-transform-dotall-regex": ^7.22.5 + "@babel/plugin-transform-duplicate-keys": ^7.22.5 + "@babel/plugin-transform-dynamic-import": ^7.22.11 + "@babel/plugin-transform-exponentiation-operator": ^7.22.5 + "@babel/plugin-transform-export-namespace-from": ^7.22.11 + "@babel/plugin-transform-for-of": ^7.22.15 + "@babel/plugin-transform-function-name": ^7.22.5 + "@babel/plugin-transform-json-strings": ^7.22.11 + "@babel/plugin-transform-literals": ^7.22.5 + "@babel/plugin-transform-logical-assignment-operators": ^7.22.11 + "@babel/plugin-transform-member-expression-literals": ^7.22.5 + "@babel/plugin-transform-modules-amd": ^7.23.0 + "@babel/plugin-transform-modules-commonjs": ^7.23.0 + "@babel/plugin-transform-modules-systemjs": ^7.23.0 + "@babel/plugin-transform-modules-umd": ^7.22.5 + "@babel/plugin-transform-named-capturing-groups-regex": ^7.22.5 + "@babel/plugin-transform-new-target": ^7.22.5 + "@babel/plugin-transform-nullish-coalescing-operator": ^7.22.11 + "@babel/plugin-transform-numeric-separator": ^7.22.11 + "@babel/plugin-transform-object-rest-spread": ^7.22.15 + "@babel/plugin-transform-object-super": ^7.22.5 + "@babel/plugin-transform-optional-catch-binding": ^7.22.11 + "@babel/plugin-transform-optional-chaining": ^7.23.0 + "@babel/plugin-transform-parameters": ^7.22.15 + "@babel/plugin-transform-private-methods": ^7.22.5 + "@babel/plugin-transform-private-property-in-object": ^7.22.11 + "@babel/plugin-transform-property-literals": ^7.22.5 + "@babel/plugin-transform-regenerator": ^7.22.10 + "@babel/plugin-transform-reserved-words": ^7.22.5 + "@babel/plugin-transform-shorthand-properties": ^7.22.5 + "@babel/plugin-transform-spread": ^7.22.5 + "@babel/plugin-transform-sticky-regex": ^7.22.5 + "@babel/plugin-transform-template-literals": ^7.22.5 + "@babel/plugin-transform-typeof-symbol": ^7.22.5 + "@babel/plugin-transform-unicode-escapes": ^7.22.10 + "@babel/plugin-transform-unicode-property-regex": ^7.22.5 + "@babel/plugin-transform-unicode-regex": ^7.22.5 + "@babel/plugin-transform-unicode-sets-regex": ^7.22.5 + "@babel/preset-modules": 0.1.6-no-external-plugins + "@babel/types": ^7.23.0 + babel-plugin-polyfill-corejs2: ^0.4.6 + babel-plugin-polyfill-corejs3: ^0.8.5 + babel-plugin-polyfill-regenerator: ^0.5.3 + core-js-compat: ^3.31.0 + semver: ^6.3.1 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 49327ef584b529b56aedd6577937b80c0d89603c68b23795495a13af04b5aa008db9ad04cd280423600cdc0d3cce13ae9d0d9a977db5c8193697b20ced8a10b2 + languageName: node + linkType: hard + +"@babel/preset-modules@npm:0.1.6-no-external-plugins": + version: 0.1.6-no-external-plugins + resolution: "@babel/preset-modules@npm:0.1.6-no-external-plugins" + dependencies: + "@babel/helper-plugin-utils": ^7.0.0 + "@babel/types": ^7.4.4 + esutils: ^2.0.2 + peerDependencies: + "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0 + checksum: 4855e799bc50f2449fb5210f78ea9e8fd46cf4f242243f1e2ed838e2bd702e25e73e822e7f8447722a5f4baa5e67a8f7a0e403f3e7ce04540ff743a9c411c375 + languageName: node + linkType: hard + +"@babel/preset-react@npm:^7.12.5, @babel/preset-react@npm:^7.16.0": + version: 7.22.15 + resolution: "@babel/preset-react@npm:7.22.15" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-validator-option": ^7.22.15 + "@babel/plugin-transform-react-display-name": ^7.22.5 + "@babel/plugin-transform-react-jsx": ^7.22.15 + "@babel/plugin-transform-react-jsx-development": ^7.22.5 + "@babel/plugin-transform-react-pure-annotations": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c3ef99dfa2e9f57d2e08603e883aa20f47630a826c8e413888a93ae6e0084b5016871e463829be125329d40a1ba0a89f7c43d77b6dab52083c225cb43e63d10e + languageName: node + linkType: hard + +"@babel/preset-typescript@npm:^7.16.0": + version: 7.23.2 + resolution: "@babel/preset-typescript@npm:7.23.2" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-validator-option": ^7.22.15 + "@babel/plugin-syntax-jsx": ^7.22.5 + "@babel/plugin-transform-modules-commonjs": ^7.23.0 + "@babel/plugin-transform-typescript": ^7.22.15 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c4b065c90e7f085dd7a0e57032983ac230c7ffd1d616e4c2b66581e765d5befc9271495f33250bf1cf9b4d436239c8ca3b19ada9f6c419c70bdab2cf6c868f9f + languageName: node + linkType: hard + +"@babel/regjsgen@npm:^0.8.0": + version: 0.8.0 + resolution: "@babel/regjsgen@npm:0.8.0" + checksum: 89c338fee774770e5a487382170711014d49a68eb281e74f2b5eac88f38300a4ad545516a7786a8dd5702e9cf009c94c2f582d200f077ac5decd74c56b973730 + languageName: node + linkType: hard + +"@babel/runtime-corejs3@npm:^7.10.2": + version: 7.23.2 + resolution: "@babel/runtime-corejs3@npm:7.23.2" + dependencies: + core-js-pure: ^3.30.2 + regenerator-runtime: ^0.14.0 + checksum: 922f25c47996a8af604cea82441e41be8b11910e96c662511e54120078f4c64258c045a28a311467a8f14a0c17f46a1f057f7c0501e567869a4343a6ce017962 + languageName: node + linkType: hard + +"@babel/runtime@npm:^7.10.2, @babel/runtime@npm:^7.12.0, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.16.3, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.20.13, @babel/runtime@npm:^7.20.7, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.22.6, @babel/runtime@npm:^7.23.1, @babel/runtime@npm:^7.3.1, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.3, @babel/runtime@npm:^7.8.4, @babel/runtime@npm:^7.8.7, @babel/runtime@npm:^7.9.2": + version: 7.23.2 + resolution: "@babel/runtime@npm:7.23.2" + dependencies: + regenerator-runtime: ^0.14.0 + checksum: 6c4df4839ec75ca10175f636d6362f91df8a3137f86b38f6cd3a4c90668a0fe8e9281d320958f4fbd43b394988958585a17c3aab2a4ea6bf7316b22916a371fb + languageName: node + linkType: hard + +"@babel/template@npm:^7.10.4, @babel/template@npm:^7.22.15, @babel/template@npm:^7.22.5, @babel/template@npm:^7.3.3": + version: 7.22.15 + resolution: "@babel/template@npm:7.22.15" + dependencies: + "@babel/code-frame": ^7.22.13 + "@babel/parser": ^7.22.15 + "@babel/types": ^7.22.15 + checksum: 1f3e7dcd6c44f5904c184b3f7fe280394b191f2fed819919ffa1e529c259d5b197da8981b6ca491c235aee8dbad4a50b7e31304aa531271cb823a4a24a0dd8fd + languageName: node + linkType: hard + +"@babel/traverse@npm:^7.1.0, @babel/traverse@npm:^7.12.1, @babel/traverse@npm:^7.23.2, @babel/traverse@npm:^7.7.0": + version: 7.23.2 + resolution: "@babel/traverse@npm:7.23.2" + dependencies: + "@babel/code-frame": ^7.22.13 + "@babel/generator": ^7.23.0 + "@babel/helper-environment-visitor": ^7.22.20 + "@babel/helper-function-name": ^7.23.0 + "@babel/helper-hoist-variables": ^7.22.5 + "@babel/helper-split-export-declaration": ^7.22.6 + "@babel/parser": ^7.23.0 + "@babel/types": ^7.23.0 + debug: ^4.1.0 + globals: ^11.1.0 + checksum: 26a1eea0dde41ab99dde8b9773a013a0dc50324e5110a049f5d634e721ff08afffd54940b3974a20308d7952085ac769689369e9127dea655f868c0f6e1ab35d + languageName: node + linkType: hard + +"@babel/types@npm:7.15.0": + version: 7.15.0 + resolution: "@babel/types@npm:7.15.0" + dependencies: + "@babel/helper-validator-identifier": ^7.14.9 + to-fast-properties: ^2.0.0 + checksum: 6d6bcdfce94b5446520a24087c6dede453e28425af092965b304d4028e9bca79712fd691cdad031e3570c7667bf3206e5f642bcccbfccb33d42ca4a8203587f9 + languageName: node + linkType: hard + +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.12.1, @babel/types@npm:^7.12.6, @babel/types@npm:^7.20.7, @babel/types@npm:^7.22.15, @babel/types@npm:^7.22.19, @babel/types@npm:^7.22.5, @babel/types@npm:^7.23.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.7.0, @babel/types@npm:^7.8.3": + version: 7.23.0 + resolution: "@babel/types@npm:7.23.0" + dependencies: + "@babel/helper-string-parser": ^7.22.5 + "@babel/helper-validator-identifier": ^7.22.20 + to-fast-properties: ^2.0.0 + checksum: 215fe04bd7feef79eeb4d33374b39909ce9cad1611c4135a4f7fdf41fe3280594105af6d7094354751514625ea92d0875aba355f53e86a92600f290e77b0e604 + languageName: node + linkType: hard + +"@bcoe/v8-coverage@npm:^0.2.3": + version: 0.2.3 + resolution: "@bcoe/v8-coverage@npm:0.2.3" + checksum: 850f9305536d0f2bd13e9e0881cb5f02e4f93fad1189f7b2d4bebf694e3206924eadee1068130d43c11b750efcc9405f88a8e42ef098b6d75239c0f047de1a27 + languageName: node + linkType: hard + +"@capacitor/android@npm:^3.3.3": + version: 3.9.0 + resolution: "@capacitor/android@npm:3.9.0" + peerDependencies: + "@capacitor/core": ^3.9.0 + checksum: 71b01fc8d1ae1da2243ffb38af4479498e663e0d95392515ca55faa7fc6d99d6c79342f66c44e9a3ba19f315fc8a29446c389f484c599fdd0017b8df8d35d9b4 + languageName: node + linkType: hard + +"@capacitor/cli@npm:^3.3.3": + version: 3.9.0 + resolution: "@capacitor/cli@npm:3.9.0" + dependencies: + "@ionic/cli-framework-output": ^2.2.1 + "@ionic/utils-fs": ^3.1.5 + "@ionic/utils-subprocess": ^2.1.6 + "@ionic/utils-terminal": ^2.3.0 + commander: ^6.0.0 + debug: ^4.2.0 + env-paths: ^2.2.0 + kleur: ^4.1.1 + native-run: ^1.5.0 + open: ^7.4.2 + plist: ^3.0.2 + prompts: ^2.3.2 + semver: ^7.3.2 + tar: ^6.1.11 + tslib: ^2.1.0 + xml2js: ^0.4.23 + bin: + cap: bin/capacitor + capacitor: bin/capacitor + checksum: 94647111a35a3d86603fb0432875272700d5406dc532ca29fc2fa469decefa6e12a60f8f161de0bea4e4f4ac36fbfc63f68ccc1c04879cad9d2a3b3a69d05068 + languageName: node + linkType: hard + +"@capacitor/core@npm:^3.3.3": + version: 3.9.0 + resolution: "@capacitor/core@npm:3.9.0" + dependencies: + tslib: ^2.1.0 + checksum: eec3e321f8077ec4ef3bc5dda2176388f0277598b6473ed05e6c86e0cf16e0e8e7f40ff078510577404b03a636a2ff431c090257e960b0af02556683b0b14b79 + languageName: node + linkType: hard + +"@cnakazawa/watch@npm:^1.0.3": + version: 1.0.4 + resolution: "@cnakazawa/watch@npm:1.0.4" + dependencies: + exec-sh: ^0.3.2 + minimist: ^1.2.0 + bin: + watch: cli.js + checksum: 88f395ca0af2f3c0665b8ce7bb29e83647ec5d141e8735712aeeee4117081555436712966b6957aa1c461f6f826a4d23b0034e379c443a10e919f81c8748bf29 + languageName: node + linkType: hard + +"@csstools/convert-colors@npm:^1.4.0": + version: 1.4.0 + resolution: "@csstools/convert-colors@npm:1.4.0" + checksum: 26069eeb845a506934c821c203feb97f5de634c5fbeb9978505a2271d6cfdb0ce400240fca9620a4ef2e68953928ea25aab92ea8454e0edf5cd074066d9ad57b + languageName: node + linkType: hard + +"@csstools/normalize.css@npm:^10.1.0": + version: 10.1.0 + resolution: "@csstools/normalize.css@npm:10.1.0" + checksum: c0adedd58e16b73b6588377ca505bfbc3f6273ab1ba1b55dd343aa5e4c0bf81bd74f051a1317a0d383bdcd59af665ba34db00b0c51c7dbc176c1a536175c2b03 + languageName: node + linkType: hard + +"@develar/schema-utils@npm:~2.6.5": + version: 2.6.5 + resolution: "@develar/schema-utils@npm:2.6.5" + dependencies: + ajv: ^6.12.0 + ajv-keywords: ^3.4.1 + checksum: e1c3771af7fb934a0a985c31b901ece41a3015ef352b58e8e1c4bce691fe5792ebb65712e43ec70fa91a8fa0c929ccacf6b52c8f8de0fd83681db2cbeb62d143 + languageName: node + linkType: hard + +"@electron/get@npm:^1.13.0": + version: 1.14.1 + resolution: "@electron/get@npm:1.14.1" + dependencies: + debug: ^4.1.1 + env-paths: ^2.2.0 + fs-extra: ^8.1.0 + global-agent: ^3.0.0 + global-tunnel-ng: ^2.7.1 + got: ^9.6.0 + progress: ^2.0.3 + semver: ^6.2.0 + sumchecker: ^3.0.1 + dependenciesMeta: + global-agent: + optional: true + global-tunnel-ng: + optional: true + checksum: 21fec5e82bbee8f9fa183b46e05675b137c3130c7999d3b2b34a0047d1a06ec3c76347b9bbdb9911ba9b2123697804e360a15dda9db614c0226d5d4dcc4d6d15 + languageName: node + linkType: hard + +"@electron/universal@npm:1.0.5": + version: 1.0.5 + resolution: "@electron/universal@npm:1.0.5" + dependencies: + "@malept/cross-spawn-promise": ^1.1.0 + asar: ^3.0.3 + debug: ^4.3.1 + dir-compare: ^2.4.0 + fs-extra: ^9.0.1 + checksum: 64eae3bbbfa422f28dbc1e92d12d954059cec7dac9ecc3ecad2c7895bb6cd10d30e8b3848092bfba8815bc71b60393a42f792751e50b9b5f643d6f1d03826b86 + languageName: node + linkType: hard + +"@emotion/babel-plugin@npm:^11.11.0": + version: 11.11.0 + resolution: "@emotion/babel-plugin@npm:11.11.0" + dependencies: + "@babel/helper-module-imports": ^7.16.7 + "@babel/runtime": ^7.18.3 + "@emotion/hash": ^0.9.1 + "@emotion/memoize": ^0.8.1 + "@emotion/serialize": ^1.1.2 + babel-plugin-macros: ^3.1.0 + convert-source-map: ^1.5.0 + escape-string-regexp: ^4.0.0 + find-root: ^1.1.0 + source-map: ^0.5.7 + stylis: 4.2.0 + checksum: 6b363edccc10290f7a23242c06f88e451b5feb2ab94152b18bb8883033db5934fb0e421e2d67d09907c13837c21218a3ac28c51707778a54d6cd3706c0c2f3f9 + languageName: node + linkType: hard + +"@emotion/cache@npm:^11.11.0, @emotion/cache@npm:^11.4.0": + version: 11.11.0 + resolution: "@emotion/cache@npm:11.11.0" + dependencies: + "@emotion/memoize": ^0.8.1 + "@emotion/sheet": ^1.2.2 + "@emotion/utils": ^1.2.1 + "@emotion/weak-memoize": ^0.3.1 + stylis: 4.2.0 + checksum: 8eb1dc22beaa20c21a2e04c284d5a2630a018a9d51fb190e52de348c8d27f4e8ca4bbab003d68b4f6cd9cc1c569ca747a997797e0f76d6c734a660dc29decf08 + languageName: node + linkType: hard + +"@emotion/hash@npm:^0.9.1": + version: 0.9.1 + resolution: "@emotion/hash@npm:0.9.1" + checksum: 716e17e48bf9047bf9383982c071de49f2615310fb4e986738931776f5a823bc1f29c84501abe0d3df91a3803c80122d24e28b57351bca9e01356ebb33d89876 + languageName: node + linkType: hard + +"@emotion/memoize@npm:^0.8.1": + version: 0.8.1 + resolution: "@emotion/memoize@npm:0.8.1" + checksum: a19cc01a29fcc97514948eaab4dc34d8272e934466ed87c07f157887406bc318000c69ae6f813a9001c6a225364df04249842a50e692ef7a9873335fbcc141b0 + languageName: node + linkType: hard + +"@emotion/react@npm:^11.8.1": + version: 11.11.1 + resolution: "@emotion/react@npm:11.11.1" + dependencies: + "@babel/runtime": ^7.18.3 + "@emotion/babel-plugin": ^11.11.0 + "@emotion/cache": ^11.11.0 + "@emotion/serialize": ^1.1.2 + "@emotion/use-insertion-effect-with-fallbacks": ^1.0.1 + "@emotion/utils": ^1.2.1 + "@emotion/weak-memoize": ^0.3.1 + hoist-non-react-statics: ^3.3.1 + peerDependencies: + react: ">=16.8.0" + peerDependenciesMeta: + "@types/react": + optional: true + checksum: aec3c36650f5f0d3d4445ff44d73dd88712b1609645b6af3e6d08049cfbc51f1785fe13dea1a1d4ab1b0800d68f2339ab11e459687180362b1ef98863155aae5 + languageName: node + linkType: hard + +"@emotion/serialize@npm:^1.1.2": + version: 1.1.2 + resolution: "@emotion/serialize@npm:1.1.2" + dependencies: + "@emotion/hash": ^0.9.1 + "@emotion/memoize": ^0.8.1 + "@emotion/unitless": ^0.8.1 + "@emotion/utils": ^1.2.1 + csstype: ^3.0.2 + checksum: 413c352e657f1b5e27ea6437b3ef7dcc3860669b7ae17fd5c18bfbd44e033af1acc56b64d252284a813ca4f3b3e1b0841c42d3fb08e02d2df56fd3cd63d72986 + languageName: node + linkType: hard + +"@emotion/sheet@npm:^1.2.2": + version: 1.2.2 + resolution: "@emotion/sheet@npm:1.2.2" + checksum: d973273c9c15f1c291ca2269728bf044bd3e92a67bca87943fa9ec6c3cd2b034f9a6bfe95ef1b5d983351d128c75b547b43ff196a00a3875f7e1d269793cecfe + languageName: node + linkType: hard + +"@emotion/unitless@npm:^0.8.1": + version: 0.8.1 + resolution: "@emotion/unitless@npm:0.8.1" + checksum: 385e21d184d27853bb350999471f00e1429fa4e83182f46cd2c164985999d9b46d558dc8b9cc89975cb337831ce50c31ac2f33b15502e85c299892e67e7b4a88 + languageName: node + linkType: hard + +"@emotion/use-insertion-effect-with-fallbacks@npm:^1.0.1": + version: 1.0.1 + resolution: "@emotion/use-insertion-effect-with-fallbacks@npm:1.0.1" + peerDependencies: + react: ">=16.8.0" + checksum: 700b6e5bbb37a9231f203bb3af11295eed01d73b2293abece0bc2a2237015e944d7b5114d4887ad9a79776504aa51ed2a8b0ddbc117c54495dd01a6b22f93786 + languageName: node + linkType: hard + +"@emotion/utils@npm:^1.2.1": + version: 1.2.1 + resolution: "@emotion/utils@npm:1.2.1" + checksum: e0b44be0705b56b079c55faff93952150be69e79b660ae70ddd5b6e09fc40eb1319654315a9f34bb479d7f4ec94be6068c061abbb9e18b9778ae180ad5d97c73 + languageName: node + linkType: hard + +"@emotion/weak-memoize@npm:^0.3.1": + version: 0.3.1 + resolution: "@emotion/weak-memoize@npm:0.3.1" + checksum: b2be47caa24a8122622ea18cd2d650dbb4f8ad37b636dc41ed420c2e082f7f1e564ecdea68122b546df7f305b159bf5ab9ffee872abd0f052e687428459af594 + languageName: node + linkType: hard + +"@eslint/eslintrc@npm:^0.4.3": + version: 0.4.3 + resolution: "@eslint/eslintrc@npm:0.4.3" + dependencies: + ajv: ^6.12.4 + debug: ^4.1.1 + espree: ^7.3.0 + globals: ^13.9.0 + ignore: ^4.0.6 + import-fresh: ^3.2.1 + js-yaml: ^3.13.1 + minimatch: ^3.0.4 + strip-json-comments: ^3.1.1 + checksum: 03a7704150b868c318aab6a94d87a33d30dc2ec579d27374575014f06237ba1370ae11178db772f985ef680d469dc237e7b16a1c5d8edaaeb8c3733e7a95a6d3 + languageName: node + linkType: hard + +"@firebase/analytics-types@npm:0.6.0": + version: 0.6.0 + resolution: "@firebase/analytics-types@npm:0.6.0" + checksum: 3065acd8de0ce6e00b11a3ee4d862adc146304ca3cacb4adf32236c4c1dc3fb257735308ae92968d5c04893e85518fc7833509f26995221f3d6f02eb3106664a + languageName: node + linkType: hard + +"@firebase/analytics@npm:0.6.18": + version: 0.6.18 + resolution: "@firebase/analytics@npm:0.6.18" + dependencies: + "@firebase/analytics-types": 0.6.0 + "@firebase/component": 0.5.6 + "@firebase/installations": 0.4.32 + "@firebase/logger": 0.2.6 + "@firebase/util": 1.3.0 + tslib: ^2.1.0 + peerDependencies: + "@firebase/app": 0.x + "@firebase/app-types": 0.x + checksum: 488723118e18a6e0e5d5a810bea56937591734e16a1ba02b42f13d678f03ec36457671129f630aaa2407862ca22991b0fa39268b2452e0665eb7612877a510e4 + languageName: node + linkType: hard + +"@firebase/app-check-interop-types@npm:0.1.0": + version: 0.1.0 + resolution: "@firebase/app-check-interop-types@npm:0.1.0" + checksum: 20bf685e8b77a87ff70d704d604e1677e400ef96d09dff96b36176340fa07a8e0d775dd5b83a9bf74ae996c63f11df75de61faa2966072dd13601fb7717b622d + languageName: node + linkType: hard + +"@firebase/app-check-types@npm:0.3.1": + version: 0.3.1 + resolution: "@firebase/app-check-types@npm:0.3.1" + checksum: 78263ef5d668be580488f7fc1ca0bf8a52d766db9238df22026dfba0c13176758d60fb81152811435ad25f1b6a2e4d5d54e009b80773864ae78858b37e6375a3 + languageName: node + linkType: hard + +"@firebase/app-check@npm:0.3.2": + version: 0.3.2 + resolution: "@firebase/app-check@npm:0.3.2" + dependencies: + "@firebase/app-check-interop-types": 0.1.0 + "@firebase/app-check-types": 0.3.1 + "@firebase/component": 0.5.6 + "@firebase/logger": 0.2.6 + "@firebase/util": 1.3.0 + tslib: ^2.1.0 + peerDependencies: + "@firebase/app": 0.x + "@firebase/app-types": 0.x + checksum: 881e88c94b5c62c34c31d5c074b8941f3e890150759ecda3af8254c2ba0df69314c7d512dc9707caecf15ec5390c0dcd22e927d7d67c90327c9532fe74eb638a + languageName: node + linkType: hard + +"@firebase/app-types@npm:0.6.3": + version: 0.6.3 + resolution: "@firebase/app-types@npm:0.6.3" + checksum: f4523ee29ef667a68110a97275dcba43b3275264055887baca49c7f726aa5a9006f6e31ab47a24472b4a0864b8018ddf48424081a85a7558431d399ae8c3cfb1 + languageName: node + linkType: hard + +"@firebase/app@npm:0.6.30": + version: 0.6.30 + resolution: "@firebase/app@npm:0.6.30" + dependencies: + "@firebase/app-types": 0.6.3 + "@firebase/component": 0.5.6 + "@firebase/logger": 0.2.6 + "@firebase/util": 1.3.0 + dom-storage: 2.1.0 + tslib: ^2.1.0 + xmlhttprequest: 1.8.0 + checksum: 37578664edd4f68e478519d1fab0ffdaf6f82adf8a84183692bb32907f76fc70dba36c5f0c0b17ba30cee44a0fd260c0fa89fd33b4b8c2b71b7150020c0bd1bb + languageName: node + linkType: hard + +"@firebase/auth-interop-types@npm:0.1.6": + version: 0.1.6 + resolution: "@firebase/auth-interop-types@npm:0.1.6" + peerDependencies: + "@firebase/app-types": 0.x + "@firebase/util": 1.x + checksum: 25db353581b23605c3e26a1ae5d070c2bfcb3c79752729c4e3f6280c81662723e9c4ef6edda82c6fd5dc79e124181a4aa649fcfd12b007e886e1d8efebc04910 + languageName: node + linkType: hard + +"@firebase/auth-types@npm:0.10.3": + version: 0.10.3 + resolution: "@firebase/auth-types@npm:0.10.3" + peerDependencies: + "@firebase/app-types": 0.x + "@firebase/util": 1.x + checksum: 08b4faf7f6612e29f740f41ed8bf0a9f9731448f6b3c2cf1fe4265e1d4f354dd0c3f4654b79aa4853b74be4c71736173c7ef669c665582ffd198200a9e39b5d6 + languageName: node + linkType: hard + +"@firebase/auth@npm:0.16.8": + version: 0.16.8 + resolution: "@firebase/auth@npm:0.16.8" + dependencies: + "@firebase/auth-types": 0.10.3 + peerDependencies: + "@firebase/app": 0.x + checksum: 1c734957204ec781de5c453275166ed63d9a7517830581affc274cbbf6918ab75d287c8baccba959a433414203d45b7c55f6b735f378f5238c0250e84719ad06 + languageName: node + linkType: hard + +"@firebase/component@npm:0.5.6": + version: 0.5.6 + resolution: "@firebase/component@npm:0.5.6" + dependencies: + "@firebase/util": 1.3.0 + tslib: ^2.1.0 + checksum: 53ea07ba4fa4876ecabccff49c19dc6476bb3020c6ff8ca3d8401c5aebb48066811681878663e3e98bd6fbe727fde91a16a1da2d4e226c73be5d6cf5657ed9d7 + languageName: node + linkType: hard + +"@firebase/database-types@npm:0.8.0": + version: 0.8.0 + resolution: "@firebase/database-types@npm:0.8.0" + dependencies: + "@firebase/app-types": 0.6.3 + "@firebase/util": 1.3.0 + checksum: b2536dc66e90fba7464d82535e7cbf3a3504d791b17f8d0578ef708ccd59a78fc13e9563996aaa560dea31dae7f2220751742a6143b6ee862985a62f597d4caf + languageName: node + linkType: hard + +"@firebase/database@npm:0.11.0": + version: 0.11.0 + resolution: "@firebase/database@npm:0.11.0" + dependencies: + "@firebase/auth-interop-types": 0.1.6 + "@firebase/component": 0.5.6 + "@firebase/database-types": 0.8.0 + "@firebase/logger": 0.2.6 + "@firebase/util": 1.3.0 + faye-websocket: 0.11.3 + tslib: ^2.1.0 + checksum: 0d16da1ce7036e0e07d905560e6223eb9eaf6fa1d5b2b1d70f65a98cd59f25d461d17cb140ca95d7fd134be1d1274f5724181292ecbde9df5209194469a22fe2 + languageName: node + linkType: hard + +"@firebase/firestore-types@npm:2.4.0": + version: 2.4.0 + resolution: "@firebase/firestore-types@npm:2.4.0" + peerDependencies: + "@firebase/app-types": 0.x + "@firebase/util": 1.x + checksum: be62b8cca8021df7f383b92c329317e4b80fbc5388991448343aea50788e9dcd43166c978ccd336107b946818a75378819fc976461a40e455c68574048e52726 + languageName: node + linkType: hard + +"@firebase/firestore@npm:2.4.1": + version: 2.4.1 + resolution: "@firebase/firestore@npm:2.4.1" + dependencies: + "@firebase/component": 0.5.6 + "@firebase/firestore-types": 2.4.0 + "@firebase/logger": 0.2.6 + "@firebase/util": 1.3.0 + "@firebase/webchannel-wrapper": 0.5.1 + "@grpc/grpc-js": ^1.3.2 + "@grpc/proto-loader": ^0.6.0 + node-fetch: 2.6.7 + tslib: ^2.1.0 + peerDependencies: + "@firebase/app": 0.x + "@firebase/app-types": 0.x + checksum: c2ed675faa97488c2b337445397f667c85d4805fe0ac80704dd9c4c39fee961d9eb9d7bca2f49cdb469eaf7e9e84bc06b3c9b2f14aa91140eb2671d96411b86d + languageName: node + linkType: hard + +"@firebase/functions-types@npm:0.4.0": + version: 0.4.0 + resolution: "@firebase/functions-types@npm:0.4.0" + checksum: 4f78409675728ce0f0c22b560015867f7f57de4acbe7fcae78ce87717a936fef842cfe812c4a15c947b88cc1c6424b7e75f7d0b97a696db13c87f4f40a465eda + languageName: node + linkType: hard + +"@firebase/functions@npm:0.6.16": + version: 0.6.16 + resolution: "@firebase/functions@npm:0.6.16" + dependencies: + "@firebase/component": 0.5.6 + "@firebase/functions-types": 0.4.0 + "@firebase/messaging-types": 0.5.0 + node-fetch: 2.6.7 + tslib: ^2.1.0 + peerDependencies: + "@firebase/app": 0.x + "@firebase/app-types": 0.x + checksum: 22691db73d48ad7c142ce085efabc1226afd9a4bb961a15fa0dcec82dcfa1eaec3dcfc99745a435229a8139ca4f7794ac46b06db5acf106191deaccaa4b5ccb8 + languageName: node + linkType: hard + +"@firebase/installations-types@npm:0.3.4": + version: 0.3.4 + resolution: "@firebase/installations-types@npm:0.3.4" + peerDependencies: + "@firebase/app-types": 0.x + checksum: 34fe46ecfef814837d4545bea600674bb5e995fbaca026623a3b5feb955f013d1e5de605fcce9076821995b8d7f566832b05ad4429fc0194d4f947c91b5d53c2 + languageName: node + linkType: hard + +"@firebase/installations@npm:0.4.32": + version: 0.4.32 + resolution: "@firebase/installations@npm:0.4.32" + dependencies: + "@firebase/component": 0.5.6 + "@firebase/installations-types": 0.3.4 + "@firebase/util": 1.3.0 + idb: 3.0.2 + tslib: ^2.1.0 + peerDependencies: + "@firebase/app": 0.x + "@firebase/app-types": 0.x + checksum: 6a194dd535b01886a6a118adfcee661e33adf35c3466926fc5e963fb716e57763407f51a7c091af96cba32aeca6aab199800f40e68614e2f24ab344a4fe4199c + languageName: node + linkType: hard + +"@firebase/logger@npm:0.2.6": + version: 0.2.6 + resolution: "@firebase/logger@npm:0.2.6" + checksum: 459d6d367a07423e7e2d6a46f9ed60a94d7d6602603d2d5454ac141e19857db11bf19b6c349331d68803be7288696491f7c5efda8fbb00612bdeda48c96aa141 + languageName: node + linkType: hard + +"@firebase/messaging-types@npm:0.5.0": + version: 0.5.0 + resolution: "@firebase/messaging-types@npm:0.5.0" + peerDependencies: + "@firebase/app-types": 0.x + checksum: 3bfcdfb5e635239103f1a9bae6674c1a02031966920ace6fe06cf4eefa498e588ca4b523036fd405e485dd824ebfa41f7ec1a9037cfb676c96be50912f500634 + languageName: node + linkType: hard + +"@firebase/messaging@npm:0.8.0": + version: 0.8.0 + resolution: "@firebase/messaging@npm:0.8.0" + dependencies: + "@firebase/component": 0.5.6 + "@firebase/installations": 0.4.32 + "@firebase/messaging-types": 0.5.0 + "@firebase/util": 1.3.0 + idb: 3.0.2 + tslib: ^2.1.0 + peerDependencies: + "@firebase/app": 0.x + "@firebase/app-types": 0.x + checksum: 5b45da030edf9d1b30ceb45e1fef4896260cdd16a3af3ec1cfd4f4935c4794a20034d81bf194b25c1e6c5798688a2829a41646a2b8ca02c5146886dd3741b5b6 + languageName: node + linkType: hard + +"@firebase/performance-types@npm:0.0.13": + version: 0.0.13 + resolution: "@firebase/performance-types@npm:0.0.13" + checksum: 1bc0cbbfa1905fc9f5d45a24b1555b0fda1f058737023de5f984e91a84f8d8134ce460124978a06467b50713e23af159b7dcf3b29bdaa03b4374e94c4f6d484b + languageName: node + linkType: hard + +"@firebase/performance@npm:0.4.18": + version: 0.4.18 + resolution: "@firebase/performance@npm:0.4.18" + dependencies: + "@firebase/component": 0.5.6 + "@firebase/installations": 0.4.32 + "@firebase/logger": 0.2.6 + "@firebase/performance-types": 0.0.13 + "@firebase/util": 1.3.0 + tslib: ^2.1.0 + peerDependencies: + "@firebase/app": 0.x + "@firebase/app-types": 0.x + checksum: 23c112a8b0a294f0916619a4907ea2c74fd8d5a2868f69308d30ab2075f46bde2d7d6a792583c3dc42e0396157c201ce643ca50027a86c4f7a2cdef0f602f6b2 + languageName: node + linkType: hard + +"@firebase/polyfill@npm:0.3.36": + version: 0.3.36 + resolution: "@firebase/polyfill@npm:0.3.36" + dependencies: + core-js: 3.6.5 + promise-polyfill: 8.1.3 + whatwg-fetch: 2.0.4 + checksum: 530904e8871c724dfef46eb2f613cb59c45cbb2a0afb31a9803c03146185200bc2ad9a1debec34a2635f0c26fe02ead0086522200f6aa2941d0c10be69f7a04d + languageName: node + linkType: hard + +"@firebase/remote-config-types@npm:0.1.9": + version: 0.1.9 + resolution: "@firebase/remote-config-types@npm:0.1.9" + checksum: 6783c5072cec80a444b9ce6e4b3c4e6230d3d717405d251495327a21c97206cdeffca55ba2521b683d92beee5ac5c3c09db6f4bcdca6631257eb74eab493a3d0 + languageName: node + linkType: hard + +"@firebase/remote-config@npm:0.1.43": + version: 0.1.43 + resolution: "@firebase/remote-config@npm:0.1.43" + dependencies: + "@firebase/component": 0.5.6 + "@firebase/installations": 0.4.32 + "@firebase/logger": 0.2.6 + "@firebase/remote-config-types": 0.1.9 + "@firebase/util": 1.3.0 + tslib: ^2.1.0 + peerDependencies: + "@firebase/app": 0.x + "@firebase/app-types": 0.x + checksum: 05a099b057a8993791dcbd0895e1c17c28df17b0662ebfbfb2966b79b90ac6b0793d041ac2cab1746e2e313bb2566098e1239ad412bb79b278b37d12c06ccd4a + languageName: node + linkType: hard + +"@firebase/storage-types@npm:0.5.0": + version: 0.5.0 + resolution: "@firebase/storage-types@npm:0.5.0" + peerDependencies: + "@firebase/app-types": 0.x + "@firebase/util": 1.x + checksum: f66fb23a09044d95531a2536def98d3f497998429d4ba37c1059cf9447521bb9211a030880a3d599f59e68ac2585dc9f992797dee3cd2ee76f41f1520c5defb5 + languageName: node + linkType: hard + +"@firebase/storage@npm:0.7.1": + version: 0.7.1 + resolution: "@firebase/storage@npm:0.7.1" + dependencies: + "@firebase/component": 0.5.6 + "@firebase/storage-types": 0.5.0 + "@firebase/util": 1.3.0 + node-fetch: 2.6.7 + tslib: ^2.1.0 + peerDependencies: + "@firebase/app": 0.x + "@firebase/app-types": 0.x + checksum: c1d3ae2099bbe4576002a8493337d4b98147cb739d949f8f8e2d299d30afc51da328dd863c41ca7953846c957834521f58877ba6a7f62648a4eaaeae7d9d49bf + languageName: node + linkType: hard + +"@firebase/util@npm:1.3.0": + version: 1.3.0 + resolution: "@firebase/util@npm:1.3.0" + dependencies: + tslib: ^2.1.0 + checksum: 9dcaac1532268c9ccd0d6bf2fc77b2575d8d4660a21f0b64fd105a423f8192c7084798a77211f66a25718afd1d0870430066b366b5c62539e3a9315839e46fcb + languageName: node + linkType: hard + +"@firebase/webchannel-wrapper@npm:0.5.1": + version: 0.5.1 + resolution: "@firebase/webchannel-wrapper@npm:0.5.1" + checksum: ed28c5c49a8fef9747387b5914e3c408081af1c3367d1d0cc7f7f6b99d366deb7e155f71b1bdfca4e97002ef7cb1795f1b40f6626b7a508205d60636e5d91f3b + languageName: node + linkType: hard + +"@floating-ui/core@npm:^1.4.2": + version: 1.5.0 + resolution: "@floating-ui/core@npm:1.5.0" + dependencies: + "@floating-ui/utils": ^0.1.3 + checksum: 54b4fe26b3c228746ac5589f97303abf158b80aa5f8b99027259decd68d1c2030c4c637648ebd33dfe78a4212699453bc2bd7537fd5a594d3bd3e63d362f666f + languageName: node + linkType: hard + +"@floating-ui/dom@npm:^1.0.1, @floating-ui/dom@npm:^1.5.1": + version: 1.5.3 + resolution: "@floating-ui/dom@npm:1.5.3" + dependencies: + "@floating-ui/core": ^1.4.2 + "@floating-ui/utils": ^0.1.3 + checksum: 00053742064aac70957f0bd5c1542caafb3bfe9716588bfe1d409fef72a67ed5e60450d08eb492a77f78c22ed1ce4f7955873cc72bf9f9caf2b0f43ae3561c21 + languageName: node + linkType: hard + +"@floating-ui/react-dom@npm:^2.0.2": + version: 2.0.2 + resolution: "@floating-ui/react-dom@npm:2.0.2" + dependencies: + "@floating-ui/dom": ^1.5.1 + peerDependencies: + react: ">=16.8.0" + react-dom: ">=16.8.0" + checksum: 4797e1f7a19c1e531ed0d578ccdcbe58970743e5a480ba30424857fc953063f36d481f8c5d69248a8f1d521b739e94bf5e1ffb35506400dea3d914f166ed2f7f + languageName: node + linkType: hard + +"@floating-ui/utils@npm:^0.1.3": + version: 0.1.6 + resolution: "@floating-ui/utils@npm:0.1.6" + checksum: b34d4b5470869727f52e312e08272edef985ba5a450a76de0917ba0a9c6f5df2bdbeb99448e2c60f39b177fb8981c772ff1831424e75123471a27ebd5b52c1eb + languageName: node + linkType: hard + +"@gar/promisify@npm:^1.0.1": + version: 1.1.3 + resolution: "@gar/promisify@npm:1.1.3" + checksum: 4059f790e2d07bf3c3ff3e0fec0daa8144fe35c1f6e0111c9921bd32106adaa97a4ab096ad7dab1e28ee6a9060083c4d1a4ada42a7f5f3f7a96b8812e2b757c1 + languageName: node + linkType: hard + +"@grpc/grpc-js@npm:^1.3.2": + version: 1.9.7 + resolution: "@grpc/grpc-js@npm:1.9.7" + dependencies: + "@grpc/proto-loader": ^0.7.8 + "@types/node": ">=12.12.47" + checksum: aaeb1a9a19a40f327bc92cd721c00b5e9ede676ebf279b8cf3cc1b3e58bbcf9e860f17911060881668f0c3338b620527c671ba35ae62999775890dda9cc61c4b + languageName: node + linkType: hard + +"@grpc/proto-loader@npm:^0.6.0": + version: 0.6.13 + resolution: "@grpc/proto-loader@npm:0.6.13" + dependencies: + "@types/long": ^4.0.1 + lodash.camelcase: ^4.3.0 + long: ^4.0.0 + protobufjs: ^6.11.3 + yargs: ^16.2.0 + bin: + proto-loader-gen-types: build/bin/proto-loader-gen-types.js + checksum: 863417e961cfa3acb579124f5c2bbfbeaee4d507c33470dc0af3b6792892c68706c6c61e26629f5ff3d28cb631dc4f0a00233323135e322406e3cb19a0b92823 + languageName: node + linkType: hard + +"@grpc/proto-loader@npm:^0.7.8": + version: 0.7.10 + resolution: "@grpc/proto-loader@npm:0.7.10" + dependencies: + lodash.camelcase: ^4.3.0 + long: ^5.0.0 + protobufjs: ^7.2.4 + yargs: ^17.7.2 + bin: + proto-loader-gen-types: build/bin/proto-loader-gen-types.js + checksum: 4987e23b57942c2363b6a6a106e63efae636666cefa348778dfafef2ff72da7343c8587667521cb1d52482827bcd001dd535bdc27065110af56d9c7c176334c9 + languageName: node + linkType: hard + +"@hapi/address@npm:2.x.x": + version: 2.1.4 + resolution: "@hapi/address@npm:2.1.4" + checksum: 10341c3b650746c79ac2c57118efb05d45d850b33aef82a6f2ba89419fdbf1b6d337c8b085cc9bc1af7a5fb18379c07edaf3be7584426f40bd370ed6de29e965 + languageName: node + linkType: hard + +"@hapi/bourne@npm:1.x.x": + version: 1.3.2 + resolution: "@hapi/bourne@npm:1.3.2" + checksum: 8403a2e8297fbb49a0e4fca30e874590d96ecaf7165740804037ff30625f3fdea6353d9f7f4422607eb069a3f471900a3037df34285a95135d15c6a8b10094b0 + languageName: node + linkType: hard + +"@hapi/hoek@npm:8.x.x, @hapi/hoek@npm:^8.3.0": + version: 8.5.1 + resolution: "@hapi/hoek@npm:8.5.1" + checksum: 8f8ce36be4f5e5d7a712072d4a028a4a95beec7a7da3a7a6e9a0c07d697f04c19b37d93751db352c314ea831f7e2120569a035dc6a351ed8c0444f1d3b275621 + languageName: node + linkType: hard + +"@hapi/hoek@npm:^9.0.0": + version: 9.3.0 + resolution: "@hapi/hoek@npm:9.3.0" + checksum: 4771c7a776242c3c022b168046af4e324d116a9d2e1d60631ee64f474c6e38d1bb07092d898bf95c7bc5d334c5582798a1456321b2e53ca817d4e7c88bc25b43 + languageName: node + linkType: hard + +"@hapi/joi@npm:^15.1.0": + version: 15.1.1 + resolution: "@hapi/joi@npm:15.1.1" + dependencies: + "@hapi/address": 2.x.x + "@hapi/bourne": 1.x.x + "@hapi/hoek": 8.x.x + "@hapi/topo": 3.x.x + checksum: 5bc3df9d43d4a53c41fd172d2958a4a846dbacbe2a2abe16830059109c436776d7be98144f14af9d328ebd107dbebafe55e00a9032a905aef45aadff988b54bf + languageName: node + linkType: hard + +"@hapi/topo@npm:3.x.x": + version: 3.1.6 + resolution: "@hapi/topo@npm:3.1.6" + dependencies: + "@hapi/hoek": ^8.3.0 + checksum: 34278bc13b4023d6d0d7c913605a254b2d728dc6489cd465269eebaa7d8d2d81cda3f2157398dca87d3cb9e1a8aa8a1158ce2564c71a8e289b807c144e3b4c1e + languageName: node + linkType: hard + +"@hapi/topo@npm:^5.0.0": + version: 5.1.0 + resolution: "@hapi/topo@npm:5.1.0" + dependencies: + "@hapi/hoek": ^9.0.0 + checksum: 604dfd5dde76d5c334bd03f9001fce69c7ce529883acf92da96f4fe7e51221bf5e5110e964caca287a6a616ba027c071748ab636ff178ad750547fba611d6014 + languageName: node + linkType: hard + +"@humanwhocodes/config-array@npm:^0.5.0": + version: 0.5.0 + resolution: "@humanwhocodes/config-array@npm:0.5.0" + dependencies: + "@humanwhocodes/object-schema": ^1.2.0 + debug: ^4.1.1 + minimatch: ^3.0.4 + checksum: 44ee6a9f05d93dd9d5935a006b17572328ba9caff8002442f601736cbda79c580cc0f5a49ce9eb88fbacc5c3a6b62098357c2e95326cd17bb9f1a6c61d6e95e7 + languageName: node + linkType: hard + +"@humanwhocodes/object-schema@npm:^1.2.0": + version: 1.2.1 + resolution: "@humanwhocodes/object-schema@npm:1.2.1" + checksum: a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1 + languageName: node + linkType: hard + +"@ionic/cli-framework-output@npm:^2.2.1": + version: 2.2.6 + resolution: "@ionic/cli-framework-output@npm:2.2.6" + dependencies: + "@ionic/utils-terminal": 2.3.4 + debug: ^4.0.0 + tslib: ^2.0.1 + checksum: ac39c57130f4c03a0378b0269f32412a298c2f43fa6a87abc216952a51e2ee68464b8c3e70e82c0139d8f892f8986b855f971b7bb5768a857144dd4f9eacb699 + languageName: node + linkType: hard + +"@ionic/utils-array@npm:2.1.6": + version: 2.1.6 + resolution: "@ionic/utils-array@npm:2.1.6" + dependencies: + debug: ^4.0.0 + tslib: ^2.0.1 + checksum: 13d7b56906bb394a9362622c001578f0788f06ee2d8c724a51fb415cf4bdc1ccf1f92c2358935524f0089a660a4323d5f0bfa9403a0b3050ed921c039125b5e8 + languageName: node + linkType: hard + +"@ionic/utils-fs@npm:3.1.7, @ionic/utils-fs@npm:^3.1.5, @ionic/utils-fs@npm:^3.1.6": + version: 3.1.7 + resolution: "@ionic/utils-fs@npm:3.1.7" + dependencies: + "@types/fs-extra": ^8.0.0 + debug: ^4.0.0 + fs-extra: ^9.0.0 + tslib: ^2.0.1 + checksum: e917023a3a69dfb7ae7513357b46dcbbe9ac643b297034d2816409d38ea8f5a8cd1fccd525d11faadfa2e46804f8709b1e5ea46c84a340ea6aa8d76ea9fa8222 + languageName: node + linkType: hard + +"@ionic/utils-object@npm:2.1.6": + version: 2.1.6 + resolution: "@ionic/utils-object@npm:2.1.6" + dependencies: + debug: ^4.0.0 + tslib: ^2.0.1 + checksum: c545f09ede118a801c7eb4c794d4b479c574a98023b752421c0b18e340cb0f509aa7d7e92ef9b1048361e194a0b6f80df8922cd56bae8201d2fb796b71d87e60 + languageName: node + linkType: hard + +"@ionic/utils-process@npm:2.1.11": + version: 2.1.11 + resolution: "@ionic/utils-process@npm:2.1.11" + dependencies: + "@ionic/utils-object": 2.1.6 + "@ionic/utils-terminal": 2.3.4 + debug: ^4.0.0 + signal-exit: ^3.0.3 + tree-kill: ^1.2.2 + tslib: ^2.0.1 + checksum: 376994e15774778af7b951c22d20c19510fa2009b5ff1c2e1244be6a0d2b059eba5e7b6db6ddd9e3764c326ab35e4446a17e49f2e1deab66b4eccd008f66cc49 + languageName: node + linkType: hard + +"@ionic/utils-stream@npm:3.1.6": + version: 3.1.6 + resolution: "@ionic/utils-stream@npm:3.1.6" + dependencies: + debug: ^4.0.0 + tslib: ^2.0.1 + checksum: cd207a12fdcfa39c3f215620dee17491aca6bf0fa39cd9c7a9a21188013113aa3f3f9e50e2eae590f2dae9f5411e54a6f9cd3916cd87837be9206ea3fedd65f3 + languageName: node + linkType: hard + +"@ionic/utils-subprocess@npm:^2.1.6": + version: 2.1.12 + resolution: "@ionic/utils-subprocess@npm:2.1.12" + dependencies: + "@ionic/utils-array": 2.1.6 + "@ionic/utils-fs": 3.1.7 + "@ionic/utils-process": 2.1.11 + "@ionic/utils-stream": 3.1.6 + "@ionic/utils-terminal": 2.3.4 + cross-spawn: ^7.0.3 + debug: ^4.0.0 + tslib: ^2.0.1 + checksum: 2821e535d747e5b84addc0e4737211216190cb9e5563ee973b1eeed329f8114026ac238322ff37fecb13b5e5dc2556de3a7b11aaf265b95f572075e00695e6f6 + languageName: node + linkType: hard + +"@ionic/utils-terminal@npm:2.3.4, @ionic/utils-terminal@npm:^2.3.0, @ionic/utils-terminal@npm:^2.3.3": + version: 2.3.4 + resolution: "@ionic/utils-terminal@npm:2.3.4" + dependencies: + "@types/slice-ansi": ^4.0.0 + debug: ^4.0.0 + signal-exit: ^3.0.3 + slice-ansi: ^4.0.0 + string-width: ^4.1.0 + strip-ansi: ^6.0.0 + tslib: ^2.0.1 + untildify: ^4.0.0 + wrap-ansi: ^7.0.0 + checksum: d32fbeb6c7b355717a28ea2b0741c50c2fee5f959c25373f17887f6d8150523bffc54caaa1cd8c585809f94bdcbfd7f13ade63d02a9f122e93ff7d4ca1645698 + languageName: node + linkType: hard + +"@isaacs/cliui@npm:^8.0.2": + version: 8.0.2 + resolution: "@isaacs/cliui@npm:8.0.2" + dependencies: + string-width: ^5.1.2 + string-width-cjs: "npm:string-width@^4.2.0" + strip-ansi: ^7.0.1 + strip-ansi-cjs: "npm:strip-ansi@^6.0.1" + wrap-ansi: ^8.1.0 + wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" + checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb + languageName: node + linkType: hard + +"@istanbuljs/load-nyc-config@npm:^1.0.0": + version: 1.1.0 + resolution: "@istanbuljs/load-nyc-config@npm:1.1.0" + dependencies: + camelcase: ^5.3.1 + find-up: ^4.1.0 + get-package-type: ^0.1.0 + js-yaml: ^3.13.1 + resolve-from: ^5.0.0 + checksum: d578da5e2e804d5c93228450a1380e1a3c691de4953acc162f387b717258512a3e07b83510a936d9fab03eac90817473917e24f5d16297af3867f59328d58568 + languageName: node + linkType: hard + +"@istanbuljs/schema@npm:^0.1.2": + version: 0.1.3 + resolution: "@istanbuljs/schema@npm:0.1.3" + checksum: 5282759d961d61350f33d9118d16bcaed914ebf8061a52f4fa474b2cb08720c9c81d165e13b82f2e5a8a212cc5af482f0c6fc1ac27b9e067e5394c9a6ed186c9 + languageName: node + linkType: hard + +"@jest/console@npm:^26.6.2": + version: 26.6.2 + resolution: "@jest/console@npm:26.6.2" + dependencies: + "@jest/types": ^26.6.2 + "@types/node": "*" + chalk: ^4.0.0 + jest-message-util: ^26.6.2 + jest-util: ^26.6.2 + slash: ^3.0.0 + checksum: 69a9ca6ba357d7634fd537e3b87c64369865ffb59f57fe6661223088bd62273d0c1d660fefce3625a427f42a37d32590f6b291e1295ea6d6b7cb31ddae36a737 + languageName: node + linkType: hard + +"@jest/core@npm:^26.6.0, @jest/core@npm:^26.6.3": + version: 26.6.3 + resolution: "@jest/core@npm:26.6.3" + dependencies: + "@jest/console": ^26.6.2 + "@jest/reporters": ^26.6.2 + "@jest/test-result": ^26.6.2 + "@jest/transform": ^26.6.2 + "@jest/types": ^26.6.2 + "@types/node": "*" + ansi-escapes: ^4.2.1 + chalk: ^4.0.0 + exit: ^0.1.2 + graceful-fs: ^4.2.4 + jest-changed-files: ^26.6.2 + jest-config: ^26.6.3 + jest-haste-map: ^26.6.2 + jest-message-util: ^26.6.2 + jest-regex-util: ^26.0.0 + jest-resolve: ^26.6.2 + jest-resolve-dependencies: ^26.6.3 + jest-runner: ^26.6.3 + jest-runtime: ^26.6.3 + jest-snapshot: ^26.6.2 + jest-util: ^26.6.2 + jest-validate: ^26.6.2 + jest-watcher: ^26.6.2 + micromatch: ^4.0.2 + p-each-series: ^2.1.0 + rimraf: ^3.0.0 + slash: ^3.0.0 + strip-ansi: ^6.0.0 + checksum: f52b26ffe9b923ed67b3ff30e170b3a434d4263990f78d96cd43acbd0aa8ad36aecad2f1822f376da3a80228714fd6b7f7acd51744133cfcd2780ba0e3da537b + languageName: node + linkType: hard + +"@jest/environment@npm:^26.6.0, @jest/environment@npm:^26.6.2": + version: 26.6.2 + resolution: "@jest/environment@npm:26.6.2" + dependencies: + "@jest/fake-timers": ^26.6.2 + "@jest/types": ^26.6.2 + "@types/node": "*" + jest-mock: ^26.6.2 + checksum: 7748081b2a758161785aff161780b05084dccaff908c8ed82c04f7da5d5e5439e77b5eb667306d5c4e1422653c7a67ed2955f26704f48c65c404195e1e21780a + languageName: node + linkType: hard + +"@jest/expect-utils@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/expect-utils@npm:29.7.0" + dependencies: + jest-get-type: ^29.6.3 + checksum: 75eb177f3d00b6331bcaa057e07c0ccb0733a1d0a1943e1d8db346779039cb7f103789f16e502f888a3096fb58c2300c38d1f3748b36a7fa762eb6f6d1b160ed + languageName: node + linkType: hard + +"@jest/fake-timers@npm:^26.6.2": + version: 26.6.2 + resolution: "@jest/fake-timers@npm:26.6.2" + dependencies: + "@jest/types": ^26.6.2 + "@sinonjs/fake-timers": ^6.0.1 + "@types/node": "*" + jest-message-util: ^26.6.2 + jest-mock: ^26.6.2 + jest-util: ^26.6.2 + checksum: c732658fac4014a424e6629495296c3b2e8697787518df34c74539ec139625e7141ad792b8a4d3c8392b47954ad01be9846b7c57cc8c631490969e7cafa84e6a + languageName: node + linkType: hard + +"@jest/globals@npm:^26.6.2": + version: 26.6.2 + resolution: "@jest/globals@npm:26.6.2" + dependencies: + "@jest/environment": ^26.6.2 + "@jest/types": ^26.6.2 + expect: ^26.6.2 + checksum: 49b28d0cc7e99898eeaf23e6899e3c9ee25a2a4831caa3eb930ec1722de2e92a0e8a6a6f649438fdd20ff0c0d5e522dd78cb719466a57f011a88d60419b903c5 + languageName: node + linkType: hard + +"@jest/reporters@npm:^26.6.2": + version: 26.6.2 + resolution: "@jest/reporters@npm:26.6.2" + dependencies: + "@bcoe/v8-coverage": ^0.2.3 + "@jest/console": ^26.6.2 + "@jest/test-result": ^26.6.2 + "@jest/transform": ^26.6.2 + "@jest/types": ^26.6.2 + chalk: ^4.0.0 + collect-v8-coverage: ^1.0.0 + exit: ^0.1.2 + glob: ^7.1.2 + graceful-fs: ^4.2.4 + istanbul-lib-coverage: ^3.0.0 + istanbul-lib-instrument: ^4.0.3 + istanbul-lib-report: ^3.0.0 + istanbul-lib-source-maps: ^4.0.0 + istanbul-reports: ^3.0.2 + jest-haste-map: ^26.6.2 + jest-resolve: ^26.6.2 + jest-util: ^26.6.2 + jest-worker: ^26.6.2 + node-notifier: ^8.0.0 + slash: ^3.0.0 + source-map: ^0.6.0 + string-length: ^4.0.1 + terminal-link: ^2.0.0 + v8-to-istanbul: ^7.0.0 + dependenciesMeta: + node-notifier: + optional: true + checksum: 53c7a697c562becb7682a9a6248ea553013bf7048c08ddce5bf9fb53b975fc9f799ca163f7494e0be6c4d3cf181c8bc392976268da52b7de8ce4470b971ed84e + languageName: node + linkType: hard + +"@jest/schemas@npm:^29.6.3": + version: 29.6.3 + resolution: "@jest/schemas@npm:29.6.3" + dependencies: + "@sinclair/typebox": ^0.27.8 + checksum: 910040425f0fc93cd13e68c750b7885590b8839066dfa0cd78e7def07bbb708ad869381f725945d66f2284de5663bbecf63e8fdd856e2ae6e261ba30b1687e93 + languageName: node + linkType: hard + +"@jest/source-map@npm:^26.6.2": + version: 26.6.2 + resolution: "@jest/source-map@npm:26.6.2" + dependencies: + callsites: ^3.0.0 + graceful-fs: ^4.2.4 + source-map: ^0.6.0 + checksum: b171cef442738887dda85527ab78229996db5946c6435ddb56d442c2851889ba493729a9de73100f1a31b9a31a91207b55bc75656ae7df9843d65078b925385e + languageName: node + linkType: hard + +"@jest/test-result@npm:^26.6.0, @jest/test-result@npm:^26.6.2": + version: 26.6.2 + resolution: "@jest/test-result@npm:26.6.2" + dependencies: + "@jest/console": ^26.6.2 + "@jest/types": ^26.6.2 + "@types/istanbul-lib-coverage": ^2.0.0 + collect-v8-coverage: ^1.0.0 + checksum: dcb6175825231e9377e43546aed4edd6acc22f1788d5f099bbba36bb55b9115a92f760e88426c076bcdeff5a50d8f697327a920db0cd1fb339781fc3713fa8c7 + languageName: node + linkType: hard + +"@jest/test-sequencer@npm:^26.6.3": + version: 26.6.3 + resolution: "@jest/test-sequencer@npm:26.6.3" + dependencies: + "@jest/test-result": ^26.6.2 + graceful-fs: ^4.2.4 + jest-haste-map: ^26.6.2 + jest-runner: ^26.6.3 + jest-runtime: ^26.6.3 + checksum: a3450b3d7057f74da1828bb7b3658f228a7c049dc4082c5c49b8bafbd8f69d102a8a99007b7ed5d43464712f7823f53fe3564fda17787f178c219cccf329a461 + languageName: node + linkType: hard + +"@jest/transform@npm:^26.6.2": + version: 26.6.2 + resolution: "@jest/transform@npm:26.6.2" + dependencies: + "@babel/core": ^7.1.0 + "@jest/types": ^26.6.2 + babel-plugin-istanbul: ^6.0.0 + chalk: ^4.0.0 + convert-source-map: ^1.4.0 + fast-json-stable-stringify: ^2.0.0 + graceful-fs: ^4.2.4 + jest-haste-map: ^26.6.2 + jest-regex-util: ^26.0.0 + jest-util: ^26.6.2 + micromatch: ^4.0.2 + pirates: ^4.0.1 + slash: ^3.0.0 + source-map: ^0.6.1 + write-file-atomic: ^3.0.0 + checksum: 31667b925a2f3b310d854495da0ab67be8f5da24df76ecfc51162e75f1140aed5d18069ba190cb5e0c7e492b04272c8c79076ddf5bbcff530ee80a16a02c4545 + languageName: node + linkType: hard + +"@jest/types@npm:^26.6.0, @jest/types@npm:^26.6.2": + version: 26.6.2 + resolution: "@jest/types@npm:26.6.2" + dependencies: + "@types/istanbul-lib-coverage": ^2.0.0 + "@types/istanbul-reports": ^3.0.0 + "@types/node": "*" + "@types/yargs": ^15.0.0 + chalk: ^4.0.0 + checksum: a0bd3d2f22f26ddb23f41fddf6e6a30bf4fab2ce79ec1cb6ce6fdfaf90a72e00f4c71da91ec61e13db3b10c41de22cf49d07c57ff2b59171d64b29f909c1d8d6 + languageName: node + linkType: hard + +"@jest/types@npm:^29.6.3": + version: 29.6.3 + resolution: "@jest/types@npm:29.6.3" + dependencies: + "@jest/schemas": ^29.6.3 + "@types/istanbul-lib-coverage": ^2.0.0 + "@types/istanbul-reports": ^3.0.0 + "@types/node": "*" + "@types/yargs": ^17.0.8 + chalk: ^4.0.0 + checksum: a0bcf15dbb0eca6bdd8ce61a3fb055349d40268622a7670a3b2eb3c3dbafe9eb26af59938366d520b86907b9505b0f9b29b85cec11579a9e580694b87cd90fcc + languageName: node + linkType: hard + +"@jridgewell/gen-mapping@npm:^0.3.0, @jridgewell/gen-mapping@npm:^0.3.2": + version: 0.3.3 + resolution: "@jridgewell/gen-mapping@npm:0.3.3" + dependencies: + "@jridgewell/set-array": ^1.0.1 + "@jridgewell/sourcemap-codec": ^1.4.10 + "@jridgewell/trace-mapping": ^0.3.9 + checksum: 4a74944bd31f22354fc01c3da32e83c19e519e3bbadafa114f6da4522ea77dd0c2842607e923a591d60a76699d819a2fbb6f3552e277efdb9b58b081390b60ab + languageName: node + linkType: hard + +"@jridgewell/resolve-uri@npm:^3.1.0": + version: 3.1.1 + resolution: "@jridgewell/resolve-uri@npm:3.1.1" + checksum: f5b441fe7900eab4f9155b3b93f9800a916257f4e8563afbcd3b5a5337b55e52bd8ae6735453b1b745457d9f6cdb16d74cd6220bbdd98cf153239e13f6cbb653 + languageName: node + linkType: hard + +"@jridgewell/set-array@npm:^1.0.1": + version: 1.1.2 + resolution: "@jridgewell/set-array@npm:1.1.2" + checksum: 69a84d5980385f396ff60a175f7177af0b8da4ddb81824cb7016a9ef914eee9806c72b6b65942003c63f7983d4f39a5c6c27185bbca88eb4690b62075602e28e + languageName: node + linkType: hard + +"@jridgewell/source-map@npm:^0.3.3": + version: 0.3.5 + resolution: "@jridgewell/source-map@npm:0.3.5" + dependencies: + "@jridgewell/gen-mapping": ^0.3.0 + "@jridgewell/trace-mapping": ^0.3.9 + checksum: 1ad4dec0bdafbade57920a50acec6634f88a0eb735851e0dda906fa9894e7f0549c492678aad1a10f8e144bfe87f238307bf2a914a1bc85b7781d345417e9f6f + languageName: node + linkType: hard + +"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14": + version: 1.4.15 + resolution: "@jridgewell/sourcemap-codec@npm:1.4.15" + checksum: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8 + languageName: node + linkType: hard + +"@jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.9": + version: 0.3.20 + resolution: "@jridgewell/trace-mapping@npm:0.3.20" + dependencies: + "@jridgewell/resolve-uri": ^3.1.0 + "@jridgewell/sourcemap-codec": ^1.4.14 + checksum: cd1a7353135f385909468ff0cf20bdd37e59f2ee49a13a966dedf921943e222082c583ade2b579ff6cd0d8faafcb5461f253e1bf2a9f48fec439211fdbe788f5 + languageName: node + linkType: hard + +"@malept/cross-spawn-promise@npm:^1.1.0": + version: 1.1.1 + resolution: "@malept/cross-spawn-promise@npm:1.1.1" + dependencies: + cross-spawn: ^7.0.1 + checksum: 1aa468f9ff3aa59dbaa720731ddf9c1928228b6844358d8821b86628953e0608420e88c6366d85af35acad73b1addaa472026a1836ad3fec34813eb38b2bd25a + languageName: node + linkType: hard + +"@malept/flatpak-bundler@npm:^0.4.0": + version: 0.4.0 + resolution: "@malept/flatpak-bundler@npm:0.4.0" + dependencies: + debug: ^4.1.1 + fs-extra: ^9.0.0 + lodash: ^4.17.15 + tmp-promise: ^3.0.2 + checksum: 12527e42c2865504eb2a91cc419e52dd7a68c1eda1138c0713a1520a5413ef9dabfa9d21b7908d211998b75c60035d1d5ae87c00fe8ff5be8fa8449525235dd5 + languageName: node + linkType: hard + +"@mapbox/node-pre-gyp@npm:^1.0.4": + version: 1.0.11 + resolution: "@mapbox/node-pre-gyp@npm:1.0.11" + dependencies: + detect-libc: ^2.0.0 + https-proxy-agent: ^5.0.0 + make-dir: ^3.1.0 + node-fetch: ^2.6.7 + nopt: ^5.0.0 + npmlog: ^5.0.1 + rimraf: ^3.0.2 + semver: ^7.3.5 + tar: ^6.1.11 + bin: + node-pre-gyp: bin/node-pre-gyp + checksum: b848f6abc531a11961d780db813cc510ca5a5b6bf3184d72134089c6875a91c44d571ba6c1879470020803f7803609e7b2e6e429651c026fe202facd11d444b8 + languageName: node + linkType: hard + +"@mui/base@npm:5.0.0-beta.20": + version: 5.0.0-beta.20 + resolution: "@mui/base@npm:5.0.0-beta.20" + dependencies: + "@babel/runtime": ^7.23.1 + "@floating-ui/react-dom": ^2.0.2 + "@mui/types": ^7.2.6 + "@mui/utils": ^5.14.13 + "@popperjs/core": ^2.11.8 + clsx: ^2.0.0 + prop-types: ^15.8.1 + peerDependencies: + "@types/react": ^17.0.0 || ^18.0.0 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + checksum: a9a27b15b0723dd91b4bb87ad3a76c4101535788387ee75bbf0798205bfa7e6343f5c6600b7beb112837f2e9ddaec714cead17d836377002429843739a4f277f + languageName: node + linkType: hard + +"@mui/core-downloads-tracker@npm:^5.14.14": + version: 5.14.14 + resolution: "@mui/core-downloads-tracker@npm:5.14.14" + checksum: 93a1f16141e3ef4ef63985079dabf6b6196b8f7581f2d71338fca5c00e5834bcecb65ee0ad6a20fc61bbdce33a55b3f02d18c37e1c9937106d65d67b6fa25acd + languageName: node + linkType: hard + +"@mui/icons-material@npm:^5.2.4": + version: 5.14.14 + resolution: "@mui/icons-material@npm:5.14.14" + dependencies: + "@babel/runtime": ^7.23.1 + peerDependencies: + "@mui/material": ^5.0.0 + "@types/react": ^17.0.0 || ^18.0.0 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + checksum: f69689a2c4ea26a8bf5602d3688922f867155c32393eff2b0722c84cd0dabac8d1fd5ed3d54cf2b8e35157967fb2f99c373ba663d5ca3bf741934e221b5227d8 + languageName: node + linkType: hard + +"@mui/lab@npm:^5.0.0-alpha.60": + version: 5.0.0-alpha.149 + resolution: "@mui/lab@npm:5.0.0-alpha.149" + dependencies: + "@babel/runtime": ^7.23.1 + "@mui/base": 5.0.0-beta.20 + "@mui/system": ^5.14.14 + "@mui/types": ^7.2.6 + "@mui/utils": ^5.14.13 + "@mui/x-tree-view": 6.0.0-alpha.1 + clsx: ^2.0.0 + prop-types: ^15.8.1 + peerDependencies: + "@emotion/react": ^11.5.0 + "@emotion/styled": ^11.3.0 + "@mui/material": ^5.0.0 + "@types/react": ^17.0.0 || ^18.0.0 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@emotion/react": + optional: true + "@emotion/styled": + optional: true + "@types/react": + optional: true + checksum: 0b6c3abb478d5b474bb3236dd983cf5c002a9fae8b0db79dab8db233b969225b52270773d2faf22fe2b47c41dbd90607fb160a1c0a19ce0492198f07ce712969 + languageName: node + linkType: hard + +"@mui/material@npm:^5.2.4": + version: 5.14.14 + resolution: "@mui/material@npm:5.14.14" + dependencies: + "@babel/runtime": ^7.23.1 + "@mui/base": 5.0.0-beta.20 + "@mui/core-downloads-tracker": ^5.14.14 + "@mui/system": ^5.14.14 + "@mui/types": ^7.2.6 + "@mui/utils": ^5.14.13 + "@types/react-transition-group": ^4.4.7 + clsx: ^2.0.0 + csstype: ^3.1.2 + prop-types: ^15.8.1 + react-is: ^18.2.0 + react-transition-group: ^4.4.5 + peerDependencies: + "@emotion/react": ^11.5.0 + "@emotion/styled": ^11.3.0 + "@types/react": ^17.0.0 || ^18.0.0 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@emotion/react": + optional: true + "@emotion/styled": + optional: true + "@types/react": + optional: true + checksum: b7e30db2b82732d42940d702ede13e2298535e3dcf76fc841e1f2c7d1bafa30716ff5e05e3f51d326c3a870bf2f7c1de8559f27a43b30d7466f1b1a5a5287b76 + languageName: node + linkType: hard + +"@mui/private-theming@npm:^5.14.14": + version: 5.14.14 + resolution: "@mui/private-theming@npm:5.14.14" + dependencies: + "@babel/runtime": ^7.23.1 + "@mui/utils": ^5.14.13 + prop-types: ^15.8.1 + peerDependencies: + "@types/react": ^17.0.0 || ^18.0.0 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + checksum: c6ed9b757f908c3d3e6d210e11afab35d67ba9d63278546568ae6b811a5f6703150a099edccc729933be17dd33c518bab1318b3cccc5c0c96bf6af00ecdbdb1d + languageName: node + linkType: hard + +"@mui/styled-engine@npm:^5.14.13": + version: 5.14.14 + resolution: "@mui/styled-engine@npm:5.14.14" + dependencies: + "@babel/runtime": ^7.23.1 + "@emotion/cache": ^11.11.0 + csstype: ^3.1.2 + prop-types: ^15.8.1 + peerDependencies: + "@emotion/react": ^11.4.1 + "@emotion/styled": ^11.3.0 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@emotion/react": + optional: true + "@emotion/styled": + optional: true + checksum: fc5694c92546a1b2025965219865971e651e37cda5cf2e2ab8a5e4653a7d2a36ae861e93bcd095855348a66e78f3a4ac5cf5d9eff0b87a48506f3d485ae2d42d + languageName: node + linkType: hard + +"@mui/styles@npm:^5.2.3": + version: 5.14.14 + resolution: "@mui/styles@npm:5.14.14" + dependencies: + "@babel/runtime": ^7.23.1 + "@emotion/hash": ^0.9.1 + "@mui/private-theming": ^5.14.14 + "@mui/types": ^7.2.6 + "@mui/utils": ^5.14.13 + clsx: ^2.0.0 + csstype: ^3.1.2 + hoist-non-react-statics: ^3.3.2 + jss: ^10.10.0 + jss-plugin-camel-case: ^10.10.0 + jss-plugin-default-unit: ^10.10.0 + jss-plugin-global: ^10.10.0 + jss-plugin-nested: ^10.10.0 + jss-plugin-props-sort: ^10.10.0 + jss-plugin-rule-value-function: ^10.10.0 + jss-plugin-vendor-prefixer: ^10.10.0 + prop-types: ^15.8.1 + peerDependencies: + "@types/react": ^17.0.0 || ^18.0.0 + react: ^17.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 354bdc6335675035bd98095269d14b2bb2d7e51014818052fae50866c836c655bddff4887f9096bd4c6c41f4f76ff4c4747cf0d6de1bc103c46d24659d73233d + languageName: node + linkType: hard + +"@mui/system@npm:^5.14.14": + version: 5.14.14 + resolution: "@mui/system@npm:5.14.14" + dependencies: + "@babel/runtime": ^7.23.1 + "@mui/private-theming": ^5.14.14 + "@mui/styled-engine": ^5.14.13 + "@mui/types": ^7.2.6 + "@mui/utils": ^5.14.13 + clsx: ^2.0.0 + csstype: ^3.1.2 + prop-types: ^15.8.1 + peerDependencies: + "@emotion/react": ^11.5.0 + "@emotion/styled": ^11.3.0 + "@types/react": ^17.0.0 || ^18.0.0 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@emotion/react": + optional: true + "@emotion/styled": + optional: true + "@types/react": + optional: true + checksum: e5f41d52bec630bd1549ad5c40cb8ced2beee6324a326ec587aab4716b5ffc2fc88327d148b4edb200ba0f2b12611af2207b54bd4aa745abb7fc1e9a653a9240 + languageName: node + linkType: hard + +"@mui/types@npm:^7.2.6": + version: 7.2.6 + resolution: "@mui/types@npm:7.2.6" + peerDependencies: + "@types/react": ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + checksum: eb92f9c2fa5df048bcf182a611131bee2799ce1de64acfca12855f349d0b69f5f92c953b7e6c4e341e1df48f0e86f1329ed0251be4835ed194f53342827bd576 + languageName: node + linkType: hard + +"@mui/utils@npm:^5.14.13, @mui/utils@npm:^5.14.3": + version: 5.14.14 + resolution: "@mui/utils@npm:5.14.14" + dependencies: + "@babel/runtime": ^7.23.1 + "@types/prop-types": ^15.7.7 + prop-types: ^15.8.1 + react-is: ^18.2.0 + peerDependencies: + "@types/react": ^17.0.0 || ^18.0.0 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + checksum: b13afa9fd7503d9e22d68ab9d6bcaf38bcf02b8c18a8b175b5c0bf082a386b34a631abe4b22fd86f2cc55edf0173fec80953a4ebe810117167fd38d32c1d3d80 + languageName: node + linkType: hard + +"@mui/x-tree-view@npm:6.0.0-alpha.1": + version: 6.0.0-alpha.1 + resolution: "@mui/x-tree-view@npm:6.0.0-alpha.1" + dependencies: + "@babel/runtime": ^7.22.6 + "@mui/utils": ^5.14.3 + "@types/react-transition-group": ^4.4.6 + clsx: ^2.0.0 + prop-types: ^15.8.1 + react-transition-group: ^4.4.5 + peerDependencies: + "@emotion/react": ^11.9.0 + "@emotion/styled": ^11.8.1 + "@mui/base": ^5.0.0-alpha.87 + "@mui/material": ^5.8.6 + "@mui/system": ^5.8.0 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + checksum: 87e659401c81ba4b1ed7eccb9e3167b4d22f27630c26bb436ff6eb4f79aa2fc0f3c50afda4625c9df898bcd1710c4de47813ee8f5bba51d0d9c85fb678a53658 + languageName: node + linkType: hard + +"@nodelib/fs.scandir@npm:2.1.5": + version: 2.1.5 + resolution: "@nodelib/fs.scandir@npm:2.1.5" + dependencies: + "@nodelib/fs.stat": 2.0.5 + run-parallel: ^1.1.9 + checksum: a970d595bd23c66c880e0ef1817791432dbb7acbb8d44b7e7d0e7a22f4521260d4a83f7f9fd61d44fda4610105577f8f58a60718105fb38352baed612fd79e59 + languageName: node + linkType: hard + +"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2": + version: 2.0.5 + resolution: "@nodelib/fs.stat@npm:2.0.5" + checksum: 012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0 + languageName: node + linkType: hard + +"@nodelib/fs.walk@npm:^1.2.3": + version: 1.2.8 + resolution: "@nodelib/fs.walk@npm:1.2.8" + dependencies: + "@nodelib/fs.scandir": 2.1.5 + fastq: ^1.6.0 + checksum: 190c643f156d8f8f277bf2a6078af1ffde1fd43f498f187c2db24d35b4b4b5785c02c7dc52e356497b9a1b65b13edc996de08de0b961c32844364da02986dc53 + languageName: node + linkType: hard + +"@npmcli/fs@npm:^1.0.0": + version: 1.1.1 + resolution: "@npmcli/fs@npm:1.1.1" + dependencies: + "@gar/promisify": ^1.0.1 + semver: ^7.3.5 + checksum: f5ad92f157ed222e4e31c352333d0901df02c7c04311e42a81d8eb555d4ec4276ea9c635011757de20cc476755af33e91622838de573b17e52e2e7703f0a9965 + languageName: node + linkType: hard + +"@npmcli/fs@npm:^3.1.0": + version: 3.1.0 + resolution: "@npmcli/fs@npm:3.1.0" + dependencies: + semver: ^7.3.5 + checksum: a50a6818de5fc557d0b0e6f50ec780a7a02ab8ad07e5ac8b16bf519e0ad60a144ac64f97d05c443c3367235d337182e1d012bbac0eb8dbae8dc7b40b193efd0e + languageName: node + linkType: hard + +"@npmcli/move-file@npm:^1.0.1": + version: 1.1.2 + resolution: "@npmcli/move-file@npm:1.1.2" + dependencies: + mkdirp: ^1.0.4 + rimraf: ^3.0.2 + checksum: c96381d4a37448ea280951e46233f7e541058cf57a57d4094dd4bdcaae43fa5872b5f2eb6bfb004591a68e29c5877abe3cdc210cb3588cbf20ab2877f31a7de7 + languageName: node + linkType: hard + +"@pkgjs/parseargs@npm:^0.11.0": + version: 0.11.0 + resolution: "@pkgjs/parseargs@npm:0.11.0" + checksum: 6ad6a00fc4f2f2cfc6bff76fb1d88b8ee20bc0601e18ebb01b6d4be583733a860239a521a7fbca73b612e66705078809483549d2b18f370eb346c5155c8e4a0f + languageName: node + linkType: hard + +"@pmmmwh/react-refresh-webpack-plugin@npm:0.4.3": + version: 0.4.3 + resolution: "@pmmmwh/react-refresh-webpack-plugin@npm:0.4.3" + dependencies: + ansi-html: ^0.0.7 + error-stack-parser: ^2.0.6 + html-entities: ^1.2.1 + native-url: ^0.2.6 + schema-utils: ^2.6.5 + source-map: ^0.7.3 + peerDependencies: + "@types/webpack": 4.x + react-refresh: ">=0.8.3 <0.10.0" + sockjs-client: ^1.4.0 + type-fest: ^0.13.1 + webpack: ">=4.43.0 <6.0.0" + webpack-dev-server: 3.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + "@types/webpack": + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true + checksum: 36a7b0c63f0aabde856a2b43f3f3bfa7919920afa67b4fbcf7d4980b286c7c11e34ada13654d81bf30c3d3e2c12a5b9eef6c15e21a200003b8030809d3ddd6c6 + languageName: node + linkType: hard + +"@popperjs/core@npm:^2.11.8": + version: 2.11.8 + resolution: "@popperjs/core@npm:2.11.8" + checksum: e5c69fdebf52a4012f6a1f14817ca8e9599cb1be73dd1387e1785e2ed5e5f0862ff817f420a87c7fc532add1f88a12e25aeb010ffcbdc98eace3d55ce2139cf0 + languageName: node + linkType: hard + +"@protobufjs/aspromise@npm:^1.1.1, @protobufjs/aspromise@npm:^1.1.2": + version: 1.1.2 + resolution: "@protobufjs/aspromise@npm:1.1.2" + checksum: 011fe7ef0826b0fd1a95935a033a3c0fd08483903e1aa8f8b4e0704e3233406abb9ee25350ec0c20bbecb2aad8da0dcea58b392bbd77d6690736f02c143865d2 + languageName: node + linkType: hard + +"@protobufjs/base64@npm:^1.1.2": + version: 1.1.2 + resolution: "@protobufjs/base64@npm:1.1.2" + checksum: 67173ac34de1e242c55da52c2f5bdc65505d82453893f9b51dc74af9fe4c065cf4a657a4538e91b0d4a1a1e0a0642215e31894c31650ff6e3831471061e1ee9e + languageName: node + linkType: hard + +"@protobufjs/codegen@npm:^2.0.4": + version: 2.0.4 + resolution: "@protobufjs/codegen@npm:2.0.4" + checksum: 59240c850b1d3d0b56d8f8098dd04787dcaec5c5bd8de186fa548de86b86076e1c50e80144b90335e705a044edf5bc8b0998548474c2a10a98c7e004a1547e4b + languageName: node + linkType: hard + +"@protobufjs/eventemitter@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/eventemitter@npm:1.1.0" + checksum: 0369163a3d226851682f855f81413cbf166cd98f131edb94a0f67f79e75342d86e89df9d7a1df08ac28be2bc77e0a7f0200526bb6c2a407abbfee1f0262d5fd7 + languageName: node + linkType: hard + +"@protobufjs/fetch@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/fetch@npm:1.1.0" + dependencies: + "@protobufjs/aspromise": ^1.1.1 + "@protobufjs/inquire": ^1.1.0 + checksum: 3fce7e09eb3f1171dd55a192066450f65324fd5f7cc01a431df01bb00d0a895e6bfb5b0c5561ce157ee1d886349c90703d10a4e11a1a256418ff591b969b3477 + languageName: node + linkType: hard + +"@protobufjs/float@npm:^1.0.2": + version: 1.0.2 + resolution: "@protobufjs/float@npm:1.0.2" + checksum: 5781e1241270b8bd1591d324ca9e3a3128d2f768077a446187a049e36505e91bc4156ed5ac3159c3ce3d2ba3743dbc757b051b2d723eea9cd367bfd54ab29b2f + languageName: node + linkType: hard + +"@protobufjs/inquire@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/inquire@npm:1.1.0" + checksum: ca06f02eaf65ca36fb7498fc3492b7fc087bfcc85c702bac5b86fad34b692bdce4990e0ef444c1e2aea8c034227bd1f0484be02810d5d7e931c55445555646f4 + languageName: node + linkType: hard + +"@protobufjs/path@npm:^1.1.2": + version: 1.1.2 + resolution: "@protobufjs/path@npm:1.1.2" + checksum: 856eeb532b16a7aac071cacde5c5620df800db4c80cee6dbc56380524736205aae21e5ae47739114bf669ab5e8ba0e767a282ad894f3b5e124197cb9224445ee + languageName: node + linkType: hard + +"@protobufjs/pool@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/pool@npm:1.1.0" + checksum: d6a34fbbd24f729e2a10ee915b74e1d77d52214de626b921b2d77288bd8f2386808da2315080f2905761527cceffe7ec34c7647bd21a5ae41a25e8212ff79451 + languageName: node + linkType: hard + +"@protobufjs/utf8@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/utf8@npm:1.1.0" + checksum: f9bf3163d13aaa3b6f5e6fbf37a116e094ea021c0e1f2a7ccd0e12a29e2ce08dafba4e8b36e13f8ed7397e1591610ce880ed1289af4d66cf4ace8a36a9557278 + languageName: node + linkType: hard + +"@remix-run/router@npm:1.10.0": + version: 1.10.0 + resolution: "@remix-run/router@npm:1.10.0" + checksum: f8f9fcd5f08465a7e0a05378398ff6df2c5c5ef5766df3490a134d64260b3b16f1bd490bb0c3f5925c2671a0c1d8d1fa01dfbdc7ecc3b2447dc6eafe6b73bcc2 + languageName: node + linkType: hard + +"@rollup/plugin-node-resolve@npm:^7.1.1": + version: 7.1.3 + resolution: "@rollup/plugin-node-resolve@npm:7.1.3" + dependencies: + "@rollup/pluginutils": ^3.0.8 + "@types/resolve": 0.0.8 + builtin-modules: ^3.1.0 + is-module: ^1.0.0 + resolve: ^1.14.2 + peerDependencies: + rollup: ^1.20.0||^2.0.0 + checksum: e787c35f123652762d212b63f8cfaf577307434a935466397021c31b71d0d94357c6fa4e326b49bf44b959e22e41bc21f5648470eabec086566e7c36c5d041b1 + languageName: node + linkType: hard + +"@rollup/plugin-replace@npm:^2.3.1": + version: 2.4.2 + resolution: "@rollup/plugin-replace@npm:2.4.2" + dependencies: + "@rollup/pluginutils": ^3.1.0 + magic-string: ^0.25.7 + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 + checksum: b2f1618ee5526d288e2f8ae328dcb326e20e8dc8bd1f60d3e14d6708a5832e4aa44811f7d493f4aed2deeadca86e3b6b0503cd39bf50cfb4b595bb9da027fad0 + languageName: node + linkType: hard + +"@rollup/pluginutils@npm:^3.0.8, @rollup/pluginutils@npm:^3.1.0": + version: 3.1.0 + resolution: "@rollup/pluginutils@npm:3.1.0" + dependencies: + "@types/estree": 0.0.39 + estree-walker: ^1.0.1 + picomatch: ^2.2.2 + peerDependencies: + rollup: ^1.20.0||^2.0.0 + checksum: 8be16e27863c219edbb25a4e6ec2fe0e1e451d9e917b6a43cf2ae5bc025a6b8faaa40f82a6e53b66d0de37b58ff472c6c3d57a83037ae635041f8df959d6d9aa + languageName: node + linkType: hard + +"@sideway/address@npm:^4.1.3": + version: 4.1.4 + resolution: "@sideway/address@npm:4.1.4" + dependencies: + "@hapi/hoek": ^9.0.0 + checksum: b9fca2a93ac2c975ba12e0a6d97853832fb1f4fb02393015e012b47fa916a75ca95102d77214b2a29a2784740df2407951af8c5dde054824c65577fd293c4cdb + languageName: node + linkType: hard + +"@sideway/formula@npm:^3.0.1": + version: 3.0.1 + resolution: "@sideway/formula@npm:3.0.1" + checksum: e4beeebc9dbe2ff4ef0def15cec0165e00d1612e3d7cea0bc9ce5175c3263fc2c818b679bd558957f49400ee7be9d4e5ac90487e1625b4932e15c4aa7919c57a + languageName: node + linkType: hard + +"@sideway/pinpoint@npm:^2.0.0": + version: 2.0.0 + resolution: "@sideway/pinpoint@npm:2.0.0" + checksum: 0f4491e5897fcf5bf02c46f5c359c56a314e90ba243f42f0c100437935daa2488f20482f0f77186bd6bf43345095a95d8143ecf8b1f4d876a7bc0806aba9c3d2 + languageName: node + linkType: hard + +"@sinclair/typebox@npm:^0.27.8": + version: 0.27.8 + resolution: "@sinclair/typebox@npm:0.27.8" + checksum: 00bd7362a3439021aa1ea51b0e0d0a0e8ca1351a3d54c606b115fdcc49b51b16db6e5f43b4fe7a28c38688523e22a94d49dd31168868b655f0d4d50f032d07a1 + languageName: node + linkType: hard + +"@sindresorhus/is@npm:^0.14.0": + version: 0.14.0 + resolution: "@sindresorhus/is@npm:0.14.0" + checksum: 971e0441dd44ba3909b467219a5e242da0fc584048db5324cfb8048148fa8dcc9d44d71e3948972c4f6121d24e5da402ef191420d1266a95f713bb6d6e59c98a + languageName: node + linkType: hard + +"@sinonjs/commons@npm:^1.7.0": + version: 1.8.6 + resolution: "@sinonjs/commons@npm:1.8.6" + dependencies: + type-detect: 4.0.8 + checksum: 7d3f8c1e85f30cd4e83594fc19b7a657f14d49eb8d95a30095631ce15e906c869e0eff96c5b93dffea7490c00418b07f54582ba49c6560feb2a8c34c0b16832d + languageName: node + linkType: hard + +"@sinonjs/fake-timers@npm:^6.0.1": + version: 6.0.1 + resolution: "@sinonjs/fake-timers@npm:6.0.1" + dependencies: + "@sinonjs/commons": ^1.7.0 + checksum: 8e331aa1412d905ecc8efd63550f58a6f77dcb510f878172004e53be63eb82650623618763001a918fc5e21257b86c45041e4e97c454ed6a2d187de084abbd11 + languageName: node + linkType: hard + +"@surma/rollup-plugin-off-main-thread@npm:^1.1.1": + version: 1.4.2 + resolution: "@surma/rollup-plugin-off-main-thread@npm:1.4.2" + dependencies: + ejs: ^2.6.1 + magic-string: ^0.25.0 + checksum: da721792036a0e1253911f9b5280e6cb236024d7d2255bde3b6e87587c0ea8f46404224c8c032a27ee11ab3244eda752587fb37ec78c2e64eb53e10557373102 + languageName: node + linkType: hard + +"@svgr/babel-plugin-add-jsx-attribute@npm:^5.4.0": + version: 5.4.0 + resolution: "@svgr/babel-plugin-add-jsx-attribute@npm:5.4.0" + checksum: 1c538cf312b486598c6aea17f9b72d7fc308eb5dd32effd804630206a185493b8a828ff980ceb29d57d8319c085614c7cea967be709c71ae77702a4c30037011 + languageName: node + linkType: hard + +"@svgr/babel-plugin-remove-jsx-attribute@npm:^5.4.0": + version: 5.4.0 + resolution: "@svgr/babel-plugin-remove-jsx-attribute@npm:5.4.0" + checksum: ad2231bfcb14daa944201df66236c222cde05a07c4cffaecab1d36d33f606b6caf17bda21844fc435780c1a27195e49beb8397536fe5e7545dfffcfbbcecb7f8 + languageName: node + linkType: hard + +"@svgr/babel-plugin-remove-jsx-empty-expression@npm:^5.0.1": + version: 5.0.1 + resolution: "@svgr/babel-plugin-remove-jsx-empty-expression@npm:5.0.1" + checksum: 175c8f13ddcb0744f7c3910ebed3799cfb961a75bff130e1ed2071c87ca8b8df8964825c988e511b2e3c5dbf48ad3d4fbbb6989edc53294253df40cf2a24375e + languageName: node + linkType: hard + +"@svgr/babel-plugin-replace-jsx-attribute-value@npm:^5.0.1": + version: 5.0.1 + resolution: "@svgr/babel-plugin-replace-jsx-attribute-value@npm:5.0.1" + checksum: 68f4e2a5b95eca44e22fce485dc2ddd10adabe2b38f6db3ef9071b35e84bf379685f7acab6c05b7a82f722328c02f6424f8252c6dd5c2c4ed2f00104072b1dfe + languageName: node + linkType: hard + +"@svgr/babel-plugin-svg-dynamic-title@npm:^5.4.0": + version: 5.4.0 + resolution: "@svgr/babel-plugin-svg-dynamic-title@npm:5.4.0" + checksum: c46feb52454acea32031d1d881a81334f2e5f838ed25a2d9014acb5e9541d404405911e86dbee8bee9f1e43c9e07118123a07dc297962dbed0c4c5a86bdc4be9 + languageName: node + linkType: hard + +"@svgr/babel-plugin-svg-em-dimensions@npm:^5.4.0": + version: 5.4.0 + resolution: "@svgr/babel-plugin-svg-em-dimensions@npm:5.4.0" + checksum: 0d19b26147bbba932bd973258dab4a80a7ea6b9d674713186f0e10fa21a9e3aa4327326b2bf1892e8051712bce0ea30561eb187ca27bb241d33c350cea51ac88 + languageName: node + linkType: hard + +"@svgr/babel-plugin-transform-react-native-svg@npm:^5.4.0": + version: 5.4.0 + resolution: "@svgr/babel-plugin-transform-react-native-svg@npm:5.4.0" + checksum: 8ac5dc9fb2dee24addc74dbcb169860c95a69247606f986eabb0618fb300dd08e8f220891b758e62c051428ba04d8dd50f2c2bf877e15fa190e6d384d1ccd2ad + languageName: node + linkType: hard + +"@svgr/babel-plugin-transform-svg-component@npm:^5.5.0": + version: 5.5.0 + resolution: "@svgr/babel-plugin-transform-svg-component@npm:5.5.0" + checksum: 94c3fed490deb8544af4ea32a5d78a840334cdcc8a5a33fe8ea9f1c220a4d714d57c9e10934492de99b7e1acc17963b1749a49927e27b1e839a4dc3c893605c7 + languageName: node + linkType: hard + +"@svgr/babel-preset@npm:^5.5.0": + version: 5.5.0 + resolution: "@svgr/babel-preset@npm:5.5.0" + dependencies: + "@svgr/babel-plugin-add-jsx-attribute": ^5.4.0 + "@svgr/babel-plugin-remove-jsx-attribute": ^5.4.0 + "@svgr/babel-plugin-remove-jsx-empty-expression": ^5.0.1 + "@svgr/babel-plugin-replace-jsx-attribute-value": ^5.0.1 + "@svgr/babel-plugin-svg-dynamic-title": ^5.4.0 + "@svgr/babel-plugin-svg-em-dimensions": ^5.4.0 + "@svgr/babel-plugin-transform-react-native-svg": ^5.4.0 + "@svgr/babel-plugin-transform-svg-component": ^5.5.0 + checksum: 5d396c4499c9ff2df9db6d08a160d10386b9f459cb9c2bb5ee183ab03b2f46c8ef3c9a070f1eee93f4e4433a5f00704e7632b1386078eb697ad8a2b38edb8522 + languageName: node + linkType: hard + +"@svgr/core@npm:^5.5.0": + version: 5.5.0 + resolution: "@svgr/core@npm:5.5.0" + dependencies: + "@svgr/plugin-jsx": ^5.5.0 + camelcase: ^6.2.0 + cosmiconfig: ^7.0.0 + checksum: 39b230151e30b9ca8551d10674e50efb821d1a49ce10969b09587af130780eba581baa1e321b0922f48331943096f05590aa6ae92d88d011d58093a89dd34158 + languageName: node + linkType: hard + +"@svgr/hast-util-to-babel-ast@npm:^5.5.0": + version: 5.5.0 + resolution: "@svgr/hast-util-to-babel-ast@npm:5.5.0" + dependencies: + "@babel/types": ^7.12.6 + checksum: a03c1c7ab92b1a6dbd7671b0b78df4c07e8d808ff092671554a78752ec0c0425c03b6c82569a5f33903d191c73379eedf631f23aeb30b7a70185f5f2fc67fae6 + languageName: node + linkType: hard + +"@svgr/plugin-jsx@npm:^5.5.0": + version: 5.5.0 + resolution: "@svgr/plugin-jsx@npm:5.5.0" + dependencies: + "@babel/core": ^7.12.3 + "@svgr/babel-preset": ^5.5.0 + "@svgr/hast-util-to-babel-ast": ^5.5.0 + svg-parser: ^2.0.2 + checksum: e053f8dd6bfcd72377b432dd5b1db3c89d503d29839639a87f85b597a680d0b69e33a4db376f5a1074a89615f7157cd36f63f94bdb4083a0fd5bbe918c7fcb9b + languageName: node + linkType: hard + +"@svgr/plugin-svgo@npm:^5.5.0": + version: 5.5.0 + resolution: "@svgr/plugin-svgo@npm:5.5.0" + dependencies: + cosmiconfig: ^7.0.0 + deepmerge: ^4.2.2 + svgo: ^1.2.2 + checksum: bef5d09581349afdf654209f82199670649cc749b81ff5f310ce4a3bbad749cde877c9b1a711dd9ced51224e2b5b5a720d242bdf183fa0f83e08e8d5e069b0b6 + languageName: node + linkType: hard + +"@svgr/webpack@npm:5.5.0": + version: 5.5.0 + resolution: "@svgr/webpack@npm:5.5.0" + dependencies: + "@babel/core": ^7.12.3 + "@babel/plugin-transform-react-constant-elements": ^7.12.1 + "@babel/preset-env": ^7.12.1 + "@babel/preset-react": ^7.12.5 + "@svgr/core": ^5.5.0 + "@svgr/plugin-jsx": ^5.5.0 + "@svgr/plugin-svgo": ^5.5.0 + loader-utils: ^2.0.0 + checksum: 540391bd63791625d26d6b5e0dd3c716ef51176bfba53bf0979a1ac4781afd2672f4bef2d76cf3d9cdc8e9ee61bda6863ed405a237b10406633ede4cd524f1cc + languageName: node + linkType: hard + +"@szmarczak/http-timer@npm:^1.1.2": + version: 1.1.2 + resolution: "@szmarczak/http-timer@npm:1.1.2" + dependencies: + defer-to-connect: ^1.0.1 + checksum: 4d9158061c5f397c57b4988cde33a163244e4f02df16364f103971957a32886beb104d6180902cbe8b38cb940e234d9f98a4e486200deca621923f62f50a06fe + languageName: node + linkType: hard + +"@testing-library/dom@npm:^7.28.1": + version: 7.31.2 + resolution: "@testing-library/dom@npm:7.31.2" + dependencies: + "@babel/code-frame": ^7.10.4 + "@babel/runtime": ^7.12.5 + "@types/aria-query": ^4.2.0 + aria-query: ^4.2.2 + chalk: ^4.1.0 + dom-accessibility-api: ^0.5.6 + lz-string: ^1.4.4 + pretty-format: ^26.6.2 + checksum: 54fbedd1ecdfe1d47be2e592b98d18b2ab9d7e731f57231caf9b152593fe7329fe5ebe219e0e5d1e0df5b1ab803121cb8acd8b73bd1fb292bfdc2c55663eb01d + languageName: node + linkType: hard + +"@testing-library/jest-dom@npm:^5.14.1": + version: 5.17.0 + resolution: "@testing-library/jest-dom@npm:5.17.0" + dependencies: + "@adobe/css-tools": ^4.0.1 + "@babel/runtime": ^7.9.2 + "@types/testing-library__jest-dom": ^5.9.1 + aria-query: ^5.0.0 + chalk: ^3.0.0 + css.escape: ^1.5.1 + dom-accessibility-api: ^0.5.6 + lodash: ^4.17.15 + redent: ^3.0.0 + checksum: 9f28dbca8b50d7c306aae40c3aa8e06f0e115f740360004bd87d57f95acf7ab4b4f4122a7399a76dbf2bdaaafb15c99cc137fdcb0ae457a92e2de0f3fbf9b03b + languageName: node + linkType: hard + +"@testing-library/react@npm:^11.2.7": + version: 11.2.7 + resolution: "@testing-library/react@npm:11.2.7" + dependencies: + "@babel/runtime": ^7.12.5 + "@testing-library/dom": ^7.28.1 + peerDependencies: + react: "*" + react-dom: "*" + checksum: 64e07cb96e40dbdbd3c46a09c47bed14446b30efafaa65a5d4fed5a7553878990cda108578f2b114422a775f31c635d51fd50b752f6163ddd6b8474e0e5fc2ce + languageName: node + linkType: hard + +"@testing-library/user-event@npm:^12.8.3": + version: 12.8.3 + resolution: "@testing-library/user-event@npm:12.8.3" + dependencies: + "@babel/runtime": ^7.12.5 + peerDependencies: + "@testing-library/dom": ">=7.21.4" + checksum: c9fb5ee07cbe79ddf32d81e1a353e556d02a1f1619456ccfad6abcdf1b7db400fdc9d7a8e0be3994f456e7135a0dfb7fa10b29fb98a0f5fc417b99fce0ce8166 + languageName: node + linkType: hard + +"@tootallnate/once@npm:1": + version: 1.1.2 + resolution: "@tootallnate/once@npm:1.1.2" + checksum: e1fb1bbbc12089a0cb9433dc290f97bddd062deadb6178ce9bcb93bb7c1aecde5e60184bc7065aec42fe1663622a213493c48bbd4972d931aae48315f18e1be9 + languageName: node + linkType: hard + +"@tootallnate/once@npm:2": + version: 2.0.0 + resolution: "@tootallnate/once@npm:2.0.0" + checksum: ad87447820dd3f24825d2d947ebc03072b20a42bfc96cbafec16bff8bbda6c1a81fcb0be56d5b21968560c5359a0af4038a68ba150c3e1694fe4c109a063bed8 + languageName: node + linkType: hard + +"@trysound/sax@npm:0.2.0": + version: 0.2.0 + resolution: "@trysound/sax@npm:0.2.0" + checksum: 11226c39b52b391719a2a92e10183e4260d9651f86edced166da1d95f39a0a1eaa470e44d14ac685ccd6d3df7e2002433782872c0feeb260d61e80f21250e65c + languageName: node + linkType: hard + +"@types/aria-query@npm:^4.2.0": + version: 4.2.2 + resolution: "@types/aria-query@npm:4.2.2" + checksum: 6f2ce11d91e2d665f3873258db19da752d91d85d3679eb5efcdf9c711d14492287e1e4eb52613b28e60375841a9e428594e745b68436c963d8bad4bf72188df3 + languageName: node + linkType: hard + +"@types/babel__core@npm:^7.0.0, @types/babel__core@npm:^7.1.7": + version: 7.20.3 + resolution: "@types/babel__core@npm:7.20.3" + dependencies: + "@babel/parser": ^7.20.7 + "@babel/types": ^7.20.7 + "@types/babel__generator": "*" + "@types/babel__template": "*" + "@types/babel__traverse": "*" + checksum: 8d14acc14d99b4b8bf36c00da368f6d597bd9ae3344aa7048f83f0f701b0463fa7c7bf2e50c3e4382fdbcfd1e4187b3452a0f0888b0f3ae8fad975591f7bdb94 + languageName: node + linkType: hard + +"@types/babel__generator@npm:*": + version: 7.6.6 + resolution: "@types/babel__generator@npm:7.6.6" + dependencies: + "@babel/types": ^7.0.0 + checksum: 36e8838c7e16eff611447579e840526946a8b14c794c82486cee2a5ad2257aa6cad746d8ecff3144e3721178837d2c25d0a435d384391eb67846b933c062b075 + languageName: node + linkType: hard + +"@types/babel__template@npm:*": + version: 7.4.3 + resolution: "@types/babel__template@npm:7.4.3" + dependencies: + "@babel/parser": ^7.1.0 + "@babel/types": ^7.0.0 + checksum: 55deb814c94d1bfb78c4d1de1de1b73eb17c79374602f3bd8aa14e356a77fca64d01646cebe25ec9b307f53a047acc6d53ad6e931019d0726422f5f911e945aa + languageName: node + linkType: hard + +"@types/babel__traverse@npm:*, @types/babel__traverse@npm:^7.0.4, @types/babel__traverse@npm:^7.0.6": + version: 7.20.3 + resolution: "@types/babel__traverse@npm:7.20.3" + dependencies: + "@babel/types": ^7.20.7 + checksum: 6d0f70d8972647c9b78b51a54f0b6481c4f23f0bb2699ad276e6070678bd121fede99e8e2c8c3e409d2f31a0bf83ae511abc6fefb91f0630c8d728a3a9136790 + languageName: node + linkType: hard + +"@types/bytebuffer@npm:^5.0.40": + version: 5.0.46 + resolution: "@types/bytebuffer@npm:5.0.46" + dependencies: + "@types/long": ^3.0.0 + "@types/node": "*" + checksum: 43dc8df469141b65e3ac1f864f079ca046041794917b69a4a962014502daf140732276ffa241d849678ca867e8751332037c7857d2a5b81fe919f20f139fc573 + languageName: node + linkType: hard + +"@types/debug@npm:^4.1.6": + version: 4.1.10 + resolution: "@types/debug@npm:4.1.10" + dependencies: + "@types/ms": "*" + checksum: 938f79c5b610f851da9c67ecd8641a09b33ce9cb38fe4c9f4d20ee743d6bccb5d8e9a833a4cd23e0684a316622af67a0634fa706baea5a01f5219961d1976314 + languageName: node + linkType: hard + +"@types/eslint@npm:^7.29.0": + version: 7.29.0 + resolution: "@types/eslint@npm:7.29.0" + dependencies: + "@types/estree": "*" + "@types/json-schema": "*" + checksum: df13991c554954353ce8f3bb03e19da6cc71916889443d68d178d4f858b561ba4cc4a4f291c6eb9eebb7f864b12b9b9313051b3a8dfea3e513dadf3188a77bdf + languageName: node + linkType: hard + +"@types/eslint@npm:^7.29.0 || ^8.4.1": + version: 8.44.6 + resolution: "@types/eslint@npm:8.44.6" + dependencies: + "@types/estree": "*" + "@types/json-schema": "*" + checksum: ed8de582ab3dbd7ec0bf97d41f4f3de28dd8a37fc48bc423e1c406bbb70d1fd8c4175ba17ad6495ef9ef99a43df71421277b7a2a0355097489c4c4cf6bb266ff + languageName: node + linkType: hard + +"@types/estree@npm:*": + version: 1.0.3 + resolution: "@types/estree@npm:1.0.3" + checksum: f21a5448995f8aa61ab2248d10590d275666b11d26c27fe75b3c23420b07b469d5ce820deefcf7399671faa09d56eb7ce012322948e484d94686fda154be5221 + languageName: node + linkType: hard + +"@types/estree@npm:0.0.39": + version: 0.0.39 + resolution: "@types/estree@npm:0.0.39" + checksum: 412fb5b9868f2c418126451821833414189b75cc6bf84361156feed733e3d92ec220b9d74a89e52722e03d5e241b2932732711b7497374a404fad49087adc248 + languageName: node + linkType: hard + +"@types/fs-extra@npm:^8.0.0": + version: 8.1.4 + resolution: "@types/fs-extra@npm:8.1.4" + dependencies: + "@types/node": "*" + checksum: f9245f083977b76d8d9dbda4b13d3c735ebbc8f17656cda7205a5648d31462c33589bd0dea7dfc12bd04d2b62cf969d29e8ef2a4e54ce91a0f5c90cc9c0053db + languageName: node + linkType: hard + +"@types/fs-extra@npm:^9.0.11": + version: 9.0.13 + resolution: "@types/fs-extra@npm:9.0.13" + dependencies: + "@types/node": "*" + checksum: add79e212acd5ac76b97b9045834e03a7996aef60a814185e0459088fd290519a3c1620865d588fa36c4498bf614210d2a703af5cf80aa1dbc125db78f6edac3 + languageName: node + linkType: hard + +"@types/glob@npm:^7.1.1": + version: 7.2.0 + resolution: "@types/glob@npm:7.2.0" + dependencies: + "@types/minimatch": "*" + "@types/node": "*" + checksum: 6ae717fedfdfdad25f3d5a568323926c64f52ef35897bcac8aca8e19bc50c0bd84630bbd063e5d52078b2137d8e7d3c26eabebd1a2f03ff350fff8a91e79fc19 + languageName: node + linkType: hard + +"@types/graceful-fs@npm:^4.1.2": + version: 4.1.8 + resolution: "@types/graceful-fs@npm:4.1.8" + dependencies: + "@types/node": "*" + checksum: 6e1ee9c119e075134696171b680fee7b627f3e077ec5e5ad9ba9359f1688a84fa35ea6804f96922c43ca30ab8d4ca9531a526b64f57fa13e1d721bf741884829 + languageName: node + linkType: hard + +"@types/html-minifier-terser@npm:^5.0.0": + version: 5.1.2 + resolution: "@types/html-minifier-terser@npm:5.1.2" + checksum: 4bca779c44d2aebe4cc4036c5db370abe7466249038e9c5996cb3c192debeff1c75b7a2ab78e5fd2a014ad24ebf0f357f9a174a4298540dc1e1317d43aa69cfa + languageName: node + linkType: hard + +"@types/istanbul-lib-coverage@npm:*, @types/istanbul-lib-coverage@npm:^2.0.0, @types/istanbul-lib-coverage@npm:^2.0.1": + version: 2.0.5 + resolution: "@types/istanbul-lib-coverage@npm:2.0.5" + checksum: 978eaf327f9a238eb1e2828b93b4b48e288ffb88c4be81330c74477ab8b93fac41a8784260d72bdd9995535d70608f738199b6364fd3344842e924a3ec3301e7 + languageName: node + linkType: hard + +"@types/istanbul-lib-report@npm:*": + version: 3.0.2 + resolution: "@types/istanbul-lib-report@npm:3.0.2" + dependencies: + "@types/istanbul-lib-coverage": "*" + checksum: 549e44e14a4dc98164ce477ca8650d33898e5c74a6bb8079cbec7f811567dcb805a3bfdbf83ce53222eaecc37ae53aa7f25bda1a7d8347449155c8f0b4f30232 + languageName: node + linkType: hard + +"@types/istanbul-reports@npm:^3.0.0": + version: 3.0.3 + resolution: "@types/istanbul-reports@npm:3.0.3" + dependencies: + "@types/istanbul-lib-report": "*" + checksum: 21d007be7dd09165ed24f5cc9947319ad435fc3b3e568f3eec0a42ee80fd2adccdeb929bc1311efb2cf7597835638cde865d3630d8b4c15d1390c9527bcad1a9 + languageName: node + linkType: hard + +"@types/jest@npm:*": + version: 29.5.6 + resolution: "@types/jest@npm:29.5.6" + dependencies: + expect: ^29.0.0 + pretty-format: ^29.0.0 + checksum: fa13a27bd1c8efd0381a419478769d0d6d3a8e93e1952d7ac3a16274e8440af6f73ed6f96ac1ff00761198badf2ee226b5ab5583a5d87a78d609ea78da5c5a24 + languageName: node + linkType: hard + +"@types/json-schema@npm:*, @types/json-schema@npm:^7.0.3, @types/json-schema@npm:^7.0.5, @types/json-schema@npm:^7.0.7, @types/json-schema@npm:^7.0.8, @types/json-schema@npm:^7.0.9": + version: 7.0.14 + resolution: "@types/json-schema@npm:7.0.14" + checksum: 4b3dd99616c7c808201c56f6c7f6552eb67b5c0c753ab3fa03a6cb549aae950da537e9558e53fa65fba23d1be624a1e4e8d20c15027efbe41e03ca56f2b04fb0 + languageName: node + linkType: hard + +"@types/json5@npm:^0.0.29": + version: 0.0.29 + resolution: "@types/json5@npm:0.0.29" + checksum: e60b153664572116dfea673c5bda7778dbff150498f44f998e34b5886d8afc47f16799280e4b6e241c0472aef1bc36add771c569c68fc5125fc2ae519a3eb9ac + languageName: node + linkType: hard + +"@types/keyv@npm:^3.1.1": + version: 3.1.4 + resolution: "@types/keyv@npm:3.1.4" + dependencies: + "@types/node": "*" + checksum: e009a2bfb50e90ca9b7c6e8f648f8464067271fd99116f881073fa6fa76dc8d0133181dd65e6614d5fb1220d671d67b0124aef7d97dc02d7e342ab143a47779d + languageName: node + linkType: hard + +"@types/long@npm:^3.0.0": + version: 3.0.32 + resolution: "@types/long@npm:3.0.32" + checksum: 7c64c64b4a8bf38d9a6690f725ed5e92383905b22c1320493749729c4f476a74fa2507cc9364268ecdfdba1cf11573a46648157f3e34cb0c39f51b05d13c37eb + languageName: node + linkType: hard + +"@types/long@npm:^4.0.1": + version: 4.0.2 + resolution: "@types/long@npm:4.0.2" + checksum: d16cde7240d834cf44ba1eaec49e78ae3180e724cd667052b194a372f350d024cba8dd3f37b0864931683dab09ca935d52f0c4c1687178af5ada9fc85b0635f4 + languageName: node + linkType: hard + +"@types/minimatch@npm:*": + version: 5.1.2 + resolution: "@types/minimatch@npm:5.1.2" + checksum: 0391a282860c7cb6fe262c12b99564732401bdaa5e395bee9ca323c312c1a0f45efbf34dce974682036e857db59a5c9b1da522f3d6055aeead7097264c8705a8 + languageName: node + linkType: hard + +"@types/ms@npm:*": + version: 0.7.33 + resolution: "@types/ms@npm:0.7.33" + checksum: 2cb5af611ace05ab2ae40422c8539850cf983197982bb04b83acf59e6e692e2faccf336a82ac4db97f7ea28f2baa0a8990fa5eb1cd72c5cab17b5b3609b0b650 + languageName: node + linkType: hard + +"@types/node@npm:*, @types/node@npm:>=12.12.47, @types/node@npm:>=13.7.0": + version: 20.8.7 + resolution: "@types/node@npm:20.8.7" + dependencies: + undici-types: ~5.25.1 + checksum: 2173c0c03daefcb60c03a61b1371b28c8fe412e7a40dc6646458b809d14a85fbc7aeb369d957d57f0aaaafd99964e77436f29b3b579232d8f2b20c58abbd1d25 + languageName: node + linkType: hard + +"@types/node@npm:^14.6.2": + version: 14.18.63 + resolution: "@types/node@npm:14.18.63" + checksum: be909061a54931778c71c49dc562586c32f909c4b6197e3d71e6dac726d8bd9fccb9f599c0df99f52742b68153712b5097c0f00cac4e279fa894b0ea6719a8fd + languageName: node + linkType: hard + +"@types/normalize-package-data@npm:^2.4.0": + version: 2.4.3 + resolution: "@types/normalize-package-data@npm:2.4.3" + checksum: 6f60e157c0fc39b80d80eb9043cdd78e4090f25c5264ef0317f5701648a5712fd453d364569675a19aef44a18c6f14f6e4809bdc0b97a46a0ed9ce4a320bbe42 + languageName: node + linkType: hard + +"@types/parse-json@npm:^4.0.0": + version: 4.0.1 + resolution: "@types/parse-json@npm:4.0.1" + checksum: 467c5fb95f4b03ea10fac007b4de7c9db103e8fce87b039ba5b37f17b374911833724624c311f3591435e4c42e376cab219400af1aef1dc314d5bd495d22fde7 + languageName: node + linkType: hard + +"@types/plist@npm:^3.0.1": + version: 3.0.4 + resolution: "@types/plist@npm:3.0.4" + dependencies: + "@types/node": "*" + xmlbuilder: ">=11.0.1" + checksum: fa5b60c231ff53ce69fda589eb2e982784400d6db9669eafb8a7d2ec990be7233204eef782d156f5d7ea1890ca76a2087d5fef3f0577c89794525d771603f609 + languageName: node + linkType: hard + +"@types/prettier@npm:^2.0.0": + version: 2.7.3 + resolution: "@types/prettier@npm:2.7.3" + checksum: 705384209cea6d1433ff6c187c80dcc0b95d99d5c5ce21a46a9a58060c527973506822e428789d842761e0280d25e3359300f017fbe77b9755bc772ab3dc2f83 + languageName: node + linkType: hard + +"@types/prop-types@npm:*, @types/prop-types@npm:^15.7.7": + version: 15.7.9 + resolution: "@types/prop-types@npm:15.7.9" + checksum: c7591d3ff7593e243908a07e1d3e2bb6e8879008af5800d8378115a90d0fdf669a1cae72a6d7f69e59c4fa7bb4c8ed61f6ebc1c520fe110c6f2b03ac02414072 + languageName: node + linkType: hard + +"@types/q@npm:^1.5.1": + version: 1.5.7 + resolution: "@types/q@npm:1.5.7" + checksum: 6396fc20d7c0cdaf29d3d3d9fa4e07f6b79025ec3f0782a94a97a373f3e3b9cb658d3738982fb82d16a14846a526f64ef48f661f61271c1c2b070a3be3e238e5 + languageName: node + linkType: hard + +"@types/react-select@npm:^5.0.1": + version: 5.0.1 + resolution: "@types/react-select@npm:5.0.1" + dependencies: + react-select: "*" + checksum: d0d378336a4f4875b6f1d0ed42ac7561fec54e09f3466b58d8ade2715c6046791bcac2012ef8f83673608a075c09ea788406e60b2a9eadd159d8443089bc166d + languageName: node + linkType: hard + +"@types/react-transition-group@npm:^4.4.0, @types/react-transition-group@npm:^4.4.6, @types/react-transition-group@npm:^4.4.7": + version: 4.4.8 + resolution: "@types/react-transition-group@npm:4.4.8" + dependencies: + "@types/react": "*" + checksum: ad7ba2bce97631fda9d89b4ed9772489bd050fec3ccd7563041b206dbe219d37d22e0d7731b1f90f56e89daf40e69ba16beba8066c42165bf8a584533feb6a2c + languageName: node + linkType: hard + +"@types/react@npm:*": + version: 18.2.31 + resolution: "@types/react@npm:18.2.31" + dependencies: + "@types/prop-types": "*" + "@types/scheduler": "*" + csstype: ^3.0.2 + checksum: b11be8e39174d3303e308461400889e353e422d22b01d09795b2c35b7b99d5351716503d9ec5c58e4c2c871249603fa52840d45a34fb5901dd7a26e06129c716 + languageName: node + linkType: hard + +"@types/resolve@npm:0.0.8": + version: 0.0.8 + resolution: "@types/resolve@npm:0.0.8" + dependencies: + "@types/node": "*" + checksum: f241bb773ab14b14500623ac3b57c52006ce32b20426b6d8bf2fe5fdc0344f42c77ac0f94ff57b443ae1d320a1a86c62b4e47239f0321699404402fbeb24bad6 + languageName: node + linkType: hard + +"@types/responselike@npm:^1.0.0": + version: 1.0.2 + resolution: "@types/responselike@npm:1.0.2" + dependencies: + "@types/node": "*" + checksum: ff1767e947eb7d49849e4566040453efcd894888e85b398f7f8cb731552f303f26aceda573b680a142b77ec5fb6c79535d9c6d047d9f936c386dbf3863d2ae17 + languageName: node + linkType: hard + +"@types/scheduler@npm:*": + version: 0.16.5 + resolution: "@types/scheduler@npm:0.16.5" + checksum: 5aae67331bb7877edc65f77f205fb03c3808d9e51c186afe26945ce69f4072886629580a751e9ce8573e4a7538d0dfa1e4ce388c7c451fa689a4c592fdf1ea45 + languageName: node + linkType: hard + +"@types/slice-ansi@npm:^4.0.0": + version: 4.0.0 + resolution: "@types/slice-ansi@npm:4.0.0" + checksum: 343086bc4e686349382b386a6fb49d632fb4dd08ecc08f1b9872815199efe8db7648731e56c1d10dc0f596fe77a8fce6136e0067136f8e0cefda6b29797aa4f1 + languageName: node + linkType: hard + +"@types/source-list-map@npm:*": + version: 0.1.4 + resolution: "@types/source-list-map@npm:0.1.4" + checksum: c18896ead356c77aa7a5bb6bd0ad72a5e8dea4c7ec1e5162c3f4d7e5afa6f547ace66ce506c47d1726adb34aee9758f9367b35ddd03126f3c9d4bde4700cddf4 + languageName: node + linkType: hard + +"@types/stack-utils@npm:^2.0.0": + version: 2.0.2 + resolution: "@types/stack-utils@npm:2.0.2" + checksum: 777cc7ac0c1000c5a07561013bcf7bd8477a3d55f55f376ee2f0c586331f7b999f57788140cfbdb65f6d7d97c0c41fe8fe6c778fd3ed71859c9b681ea76fc621 + languageName: node + linkType: hard + +"@types/tapable@npm:^1, @types/tapable@npm:^1.0.5": + version: 1.0.10 + resolution: "@types/tapable@npm:1.0.10" + checksum: 7733cc6bd360ca0b225736cb51a98fa97ed0bc08f26c06437268b05dce174fe0c23c179bc2c856f428f37741b0a062defd22dfbf2f91793aff1b298ee5a7f2a5 + languageName: node + linkType: hard + +"@types/testing-library__jest-dom@npm:^5.9.1": + version: 5.14.9 + resolution: "@types/testing-library__jest-dom@npm:5.14.9" + dependencies: + "@types/jest": "*" + checksum: d364494fc2545316292e88861146146af1e3818792ca63b62a63758b2f737669b687f4aaddfcfbcb7d0e1ed7890a9bd05de23ff97f277d5e68de574497a9ee72 + languageName: node + linkType: hard + +"@types/uglify-js@npm:*": + version: 3.17.3 + resolution: "@types/uglify-js@npm:3.17.3" + dependencies: + source-map: ^0.6.1 + checksum: ba4a566f47205a3d0a6f91fe03a7cfa5d90932dd7818643dfc866260f17045885d522d179160dff900989a6732a00c9229c0296fc658a3ea4d7b699888d0d3a2 + languageName: node + linkType: hard + +"@types/verror@npm:^1.10.3": + version: 1.10.8 + resolution: "@types/verror@npm:1.10.8" + checksum: 6dcc79b4f79b626e6b3bd82c9701b56e60663e6787dd8a5344f7f4bf40ca805fb68d4a569e0f592284e2dc77ec59c345efc37b1f1ddba723d757a8c268e2b93f + languageName: node + linkType: hard + +"@types/webpack-sources@npm:*": + version: 3.2.2 + resolution: "@types/webpack-sources@npm:3.2.2" + dependencies: + "@types/node": "*" + "@types/source-list-map": "*" + source-map: ^0.7.3 + checksum: 5f9604eeaa0f6c91c226a1c6010cc04c7293a1e2cc39113ff8e596d6294fde44be8518e5aac8ee5c36db89be4c9c5b79187c1ad80c691248d95f6bc702534fe1 + languageName: node + linkType: hard + +"@types/webpack@npm:^4.41.8": + version: 4.41.35 + resolution: "@types/webpack@npm:4.41.35" + dependencies: + "@types/node": "*" + "@types/tapable": ^1 + "@types/uglify-js": "*" + "@types/webpack-sources": "*" + anymatch: ^3.0.0 + source-map: ^0.6.0 + checksum: 44f279aed35a6659859220129ad7e3857aabf3fffa9520bc741108ba93bb5c4baac0ce75031f6debdb3f84e159d062aa1fc1d200cb50ff6f252a90d84d4d5a13 + languageName: node + linkType: hard + +"@types/yargs-parser@npm:*": + version: 21.0.2 + resolution: "@types/yargs-parser@npm:21.0.2" + checksum: e979051aac91d778fdb3953aced8cf039d954c3936b910b57735b7b52a413d065e6b2aea1cb2c583f6c23296a6f8543d2541879d798f0afedd7409a562b7bdeb + languageName: node + linkType: hard + +"@types/yargs@npm:^15.0.0": + version: 15.0.17 + resolution: "@types/yargs@npm:15.0.17" + dependencies: + "@types/yargs-parser": "*" + checksum: b306af8c32ed5eee219d66fb2b302b24460e5551f6df38ac52c26906e2689ac55d64190cf15feec46b380abd0b1994631690d9ffcc7bcd9dd3ff1242740fa5f0 + languageName: node + linkType: hard + +"@types/yargs@npm:^17.0.1, @types/yargs@npm:^17.0.8": + version: 17.0.29 + resolution: "@types/yargs@npm:17.0.29" + dependencies: + "@types/yargs-parser": "*" + checksum: 8bbc0edd573a5a084cb13a9985c124490fd74e73b1ed8a3058861c13124e103b00a19770dc55c53215653a7845d7033e0695917b75153cfe9618d5b2fd3cf86e + languageName: node + linkType: hard + +"@typescript-eslint/eslint-plugin@npm:^4.5.0": + version: 4.33.0 + resolution: "@typescript-eslint/eslint-plugin@npm:4.33.0" + dependencies: + "@typescript-eslint/experimental-utils": 4.33.0 + "@typescript-eslint/scope-manager": 4.33.0 + debug: ^4.3.1 + functional-red-black-tree: ^1.0.1 + ignore: ^5.1.8 + regexpp: ^3.1.0 + semver: ^7.3.5 + tsutils: ^3.21.0 + peerDependencies: + "@typescript-eslint/parser": ^4.0.0 + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: d74855d0a5ffe0b2f362ec02fcd9301d39a53fb4155b9bd0cb15a0a31d065143129ebf98df9d86af4b6f74de1d423a4c0d8c0095520844068117453afda5bc4f + languageName: node + linkType: hard + +"@typescript-eslint/experimental-utils@npm:4.33.0, @typescript-eslint/experimental-utils@npm:^4.0.1": + version: 4.33.0 + resolution: "@typescript-eslint/experimental-utils@npm:4.33.0" + dependencies: + "@types/json-schema": ^7.0.7 + "@typescript-eslint/scope-manager": 4.33.0 + "@typescript-eslint/types": 4.33.0 + "@typescript-eslint/typescript-estree": 4.33.0 + eslint-scope: ^5.1.1 + eslint-utils: ^3.0.0 + peerDependencies: + eslint: "*" + checksum: f859800ada0884f92db6856f24efcb1d073ac9883ddc2b1aa9339f392215487895bed8447ebce3741e8141bb32e545244abef62b73193ba9a8a0527c523aabae + languageName: node + linkType: hard + +"@typescript-eslint/experimental-utils@npm:^3.10.1": + version: 3.10.1 + resolution: "@typescript-eslint/experimental-utils@npm:3.10.1" + dependencies: + "@types/json-schema": ^7.0.3 + "@typescript-eslint/types": 3.10.1 + "@typescript-eslint/typescript-estree": 3.10.1 + eslint-scope: ^5.0.0 + eslint-utils: ^2.0.0 + peerDependencies: + eslint: "*" + checksum: 635cc1afe466088b04901c2bce0e4c3e48bb74668e61e39aa74a485f856c6f9683482350d4b16b3f4c0112ce40cad2c2c427d4fe5e11a3329b3bb93286d4ab26 + languageName: node + linkType: hard + +"@typescript-eslint/parser@npm:^4.5.0": + version: 4.33.0 + resolution: "@typescript-eslint/parser@npm:4.33.0" + dependencies: + "@typescript-eslint/scope-manager": 4.33.0 + "@typescript-eslint/types": 4.33.0 + "@typescript-eslint/typescript-estree": 4.33.0 + debug: ^4.3.1 + peerDependencies: + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 102457eae1acd516211098fea081c8a2ed728522bbda7f5a557b6ef23d88970514f9a0f6285d53fca134d3d4d7d17822b5d5e12438d5918df4d1f89cc9e67d57 + languageName: node + linkType: hard + +"@typescript-eslint/scope-manager@npm:4.33.0": + version: 4.33.0 + resolution: "@typescript-eslint/scope-manager@npm:4.33.0" + dependencies: + "@typescript-eslint/types": 4.33.0 + "@typescript-eslint/visitor-keys": 4.33.0 + checksum: 9a25fb7ba7c725ea7227a24d315b0f6aacbad002e2549a049edf723c1d3615c22f5c301f0d7d615b377f2cdf2f3519d97e79af0c459de6ef8d2aaf0906dff13e + languageName: node + linkType: hard + +"@typescript-eslint/types@npm:3.10.1": + version: 3.10.1 + resolution: "@typescript-eslint/types@npm:3.10.1" + checksum: 3ea820d37c2595d457acd6091ffda8b531e5d916e1cce708336bf958aa8869126f95cca3268a724f453ce13be11c5388a0a4143bf09bca51be1020ec46635d92 + languageName: node + linkType: hard + +"@typescript-eslint/types@npm:4.33.0": + version: 4.33.0 + resolution: "@typescript-eslint/types@npm:4.33.0" + checksum: 3baae1ca35872421b4eb60f5d3f3f32dc1d513f2ae0a67dee28c7d159fd7a43ed0d11a8a5a0f0c2d38507ffa036fc7c511cb0f18a5e8ac524b3ebde77390ec53 + languageName: node + linkType: hard + +"@typescript-eslint/typescript-estree@npm:3.10.1": + version: 3.10.1 + resolution: "@typescript-eslint/typescript-estree@npm:3.10.1" + dependencies: + "@typescript-eslint/types": 3.10.1 + "@typescript-eslint/visitor-keys": 3.10.1 + debug: ^4.1.1 + glob: ^7.1.6 + is-glob: ^4.0.1 + lodash: ^4.17.15 + semver: ^7.3.2 + tsutils: ^3.17.1 + peerDependenciesMeta: + typescript: + optional: true + checksum: 911680da9d26220944f4f8f26f88349917609844fafcff566147cecae37ff0211d66c626eb62a2b24d17fd50d10715f5b0f32b2e7f5d9a88efc46709266d5053 + languageName: node + linkType: hard + +"@typescript-eslint/typescript-estree@npm:4.33.0": + version: 4.33.0 + resolution: "@typescript-eslint/typescript-estree@npm:4.33.0" + dependencies: + "@typescript-eslint/types": 4.33.0 + "@typescript-eslint/visitor-keys": 4.33.0 + debug: ^4.3.1 + globby: ^11.0.3 + is-glob: ^4.0.1 + semver: ^7.3.5 + tsutils: ^3.21.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 2566984390c76bd95f43240057215c068c69769e406e27aba41e9f21fd300074d6772e4983fa58fe61e80eb5550af1548d2e31e80550d92ba1d051bb00fe6f5c + languageName: node + linkType: hard + +"@typescript-eslint/visitor-keys@npm:3.10.1": + version: 3.10.1 + resolution: "@typescript-eslint/visitor-keys@npm:3.10.1" + dependencies: + eslint-visitor-keys: ^1.1.0 + checksum: 0c4825b9829b1c11258a73aaee70d64834ba6d9b24157e7624e80f27f6537f468861d4dd33ad233c13ad2c6520afb9008c0675da6d792f26e82d75d6bfe9b0c6 + languageName: node + linkType: hard + +"@typescript-eslint/visitor-keys@npm:4.33.0": + version: 4.33.0 + resolution: "@typescript-eslint/visitor-keys@npm:4.33.0" + dependencies: + "@typescript-eslint/types": 4.33.0 + eslint-visitor-keys: ^2.0.0 + checksum: 59953e474ad4610c1aa23b2b1a964445e2c6201521da6367752f37939d854352bbfced5c04ea539274065e012b1337ba3ffa49c2647a240a4e87155378ba9873 + languageName: node + linkType: hard + +"@webassemblyjs/ast@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/ast@npm:1.9.0" + dependencies: + "@webassemblyjs/helper-module-context": 1.9.0 + "@webassemblyjs/helper-wasm-bytecode": 1.9.0 + "@webassemblyjs/wast-parser": 1.9.0 + checksum: 8a9838dc7fdac358aee8daa75eefa35934ab18dafb594092ff7be79c467ebe9dabb2543e58313c905fd802bdcc3cb8320e4e19af7444e49853a7a24e25138f75 + languageName: node + linkType: hard + +"@webassemblyjs/floating-point-hex-parser@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/floating-point-hex-parser@npm:1.9.0" + checksum: d3aeb19bc30da26f639698daa28e44e0c18d5aa135359ef3c54148e194eec46451a912d0506099d479a71a94bc3eef6ef52d6ec234799528a25a9744789852de + languageName: node + linkType: hard + +"@webassemblyjs/helper-api-error@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/helper-api-error@npm:1.9.0" + checksum: 9179d3148639cc202e89a118145b485cf834613260679a99af6ec487bbc15f238566ca713207394b336160a41bf8c1b75cf2e853b3e96f0cc73c1e5c735b3f64 + languageName: node + linkType: hard + +"@webassemblyjs/helper-buffer@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/helper-buffer@npm:1.9.0" + checksum: dcb85f630f8a2e22b7346ad4dd58c3237a2cad1457699423e8fd19592a0bd3eacbc2639178a1b9a873c3ac217bfc7a23a134ff440a099496b590e82c7a4968d5 + languageName: node + linkType: hard + +"@webassemblyjs/helper-code-frame@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/helper-code-frame@npm:1.9.0" + dependencies: + "@webassemblyjs/wast-printer": 1.9.0 + checksum: a28fa057f7beff0fd14bff716561520f8edb8c9c56c7a5559451e6765acfb70aaeb8af718ea2bd2262e7baeba597545af407e28eb2eff8329235afe8605f20d1 + languageName: node + linkType: hard + +"@webassemblyjs/helper-fsm@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/helper-fsm@npm:1.9.0" + checksum: 374cc510c8f5a7a07d4fe9eb7036cc475a96a670b5d25c31f16757ac8295be8d03a2f29657ff53eaefa9e8315670a48824d430ed910e7c1835788ac79f93124e + languageName: node + linkType: hard + +"@webassemblyjs/helper-module-context@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/helper-module-context@npm:1.9.0" + dependencies: + "@webassemblyjs/ast": 1.9.0 + checksum: 55e8f89c7ea1beaa78fad88403f3753b8413b0f3b6bb32d898ce95078b3e1d1b48ade0919c00b82fc2e3813c0ab6901e415f7a4d4fa9be50944e2431adde75a5 + languageName: node + linkType: hard + +"@webassemblyjs/helper-wasm-bytecode@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/helper-wasm-bytecode@npm:1.9.0" + checksum: 280da4df3c556f73a1a02053277f8a4be481de32df4aa21050b015c8f4d27c46af89f0417eb88e486df117e5df4bccffae593f78cb1e79f212d3b3d4f3ed0f04 + languageName: node + linkType: hard + +"@webassemblyjs/helper-wasm-section@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/helper-wasm-section@npm:1.9.0" + dependencies: + "@webassemblyjs/ast": 1.9.0 + "@webassemblyjs/helper-buffer": 1.9.0 + "@webassemblyjs/helper-wasm-bytecode": 1.9.0 + "@webassemblyjs/wasm-gen": 1.9.0 + checksum: b8f7bb45d4194074c82210211a5d3e402a5b5fa63ecae26d2c356ae3978af5a530e91192fb260f32f9d561b18e2828b3da2e2f41c59efadb5f3c6d72446807f0 + languageName: node + linkType: hard + +"@webassemblyjs/ieee754@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/ieee754@npm:1.9.0" + dependencies: + "@xtuc/ieee754": ^1.2.0 + checksum: 7fe4a217ba0f7051e2cfef92919d4a64fac1a63c65411763779bd50907820f33f440255231a474fe3ba03bd1d9ee0328662d1eae3fce4c59b91549d6b62b839b + languageName: node + linkType: hard + +"@webassemblyjs/leb128@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/leb128@npm:1.9.0" + dependencies: + "@xtuc/long": 4.2.2 + checksum: 4ca7cbb869530d78d42a414f34ae53249364cb1ecebbfb6ed5d562c2f209fce857502f088822ee82a23876f653a262ddc34ab64e45a7962510a263d39bb3f51a + languageName: node + linkType: hard + +"@webassemblyjs/utf8@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/utf8@npm:1.9.0" + checksum: e328a30ac8a503bbd015d32e75176e0dedcb45a21d4be051c25dfe89a00035ca7a6dbd8937b442dd5b4b334de3959d4f5fe0b330037bd226a28b9814cd49e84f + languageName: node + linkType: hard + +"@webassemblyjs/wasm-edit@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/wasm-edit@npm:1.9.0" + dependencies: + "@webassemblyjs/ast": 1.9.0 + "@webassemblyjs/helper-buffer": 1.9.0 + "@webassemblyjs/helper-wasm-bytecode": 1.9.0 + "@webassemblyjs/helper-wasm-section": 1.9.0 + "@webassemblyjs/wasm-gen": 1.9.0 + "@webassemblyjs/wasm-opt": 1.9.0 + "@webassemblyjs/wasm-parser": 1.9.0 + "@webassemblyjs/wast-printer": 1.9.0 + checksum: 1997e0c2f4051c33239587fb143242919320bc861a0af03a873c7150a27d6404bd2e063c658193288b0aa88c35aadbe0c4fde601fe642bae0743a8c8eda52717 + languageName: node + linkType: hard + +"@webassemblyjs/wasm-gen@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/wasm-gen@npm:1.9.0" + dependencies: + "@webassemblyjs/ast": 1.9.0 + "@webassemblyjs/helper-wasm-bytecode": 1.9.0 + "@webassemblyjs/ieee754": 1.9.0 + "@webassemblyjs/leb128": 1.9.0 + "@webassemblyjs/utf8": 1.9.0 + checksum: 2456e84e8e6bedb7ab47f6333a0ee170f7ef62842c90862ca787c08528ca8041061f3f8bc257fc2a01bf6e8d1a76fddaddd43418c738f681066e5b50f88fe7df + languageName: node + linkType: hard + +"@webassemblyjs/wasm-opt@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/wasm-opt@npm:1.9.0" + dependencies: + "@webassemblyjs/ast": 1.9.0 + "@webassemblyjs/helper-buffer": 1.9.0 + "@webassemblyjs/wasm-gen": 1.9.0 + "@webassemblyjs/wasm-parser": 1.9.0 + checksum: 91242205bdbd1aa8045364a5338bfb34880cb2c65f56db8dd19382894209673699fb31a0e5279f25c7e5bcd8f3097d6c9ca84d8969d9613ef2cf166450cc3515 + languageName: node + linkType: hard + +"@webassemblyjs/wasm-parser@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/wasm-parser@npm:1.9.0" + dependencies: + "@webassemblyjs/ast": 1.9.0 + "@webassemblyjs/helper-api-error": 1.9.0 + "@webassemblyjs/helper-wasm-bytecode": 1.9.0 + "@webassemblyjs/ieee754": 1.9.0 + "@webassemblyjs/leb128": 1.9.0 + "@webassemblyjs/utf8": 1.9.0 + checksum: 493f6cfc63a5e16073056c81ff0526a9936f461327379ef3c83cc841000e03623b6352704f6bf9f7cb5b3610f0032020a61f9cca78c91b15b8e995854b29c098 + languageName: node + linkType: hard + +"@webassemblyjs/wast-parser@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/wast-parser@npm:1.9.0" + dependencies: + "@webassemblyjs/ast": 1.9.0 + "@webassemblyjs/floating-point-hex-parser": 1.9.0 + "@webassemblyjs/helper-api-error": 1.9.0 + "@webassemblyjs/helper-code-frame": 1.9.0 + "@webassemblyjs/helper-fsm": 1.9.0 + "@xtuc/long": 4.2.2 + checksum: 705dd48fbbceec7f6bed299b8813631b242fd9312f9594dbb2985dda86c9688048692357d684f6080fc2c5666287cefaa26b263d01abadb6a9049d4c8978b9db + languageName: node + linkType: hard + +"@webassemblyjs/wast-printer@npm:1.9.0": + version: 1.9.0 + resolution: "@webassemblyjs/wast-printer@npm:1.9.0" + dependencies: + "@webassemblyjs/ast": 1.9.0 + "@webassemblyjs/wast-parser": 1.9.0 + "@xtuc/long": 4.2.2 + checksum: 3d1e1b2e84745a963f69acd1c02425b321dd2e608e11dabc467cae0c9a808962bc769ec9afc46fbcea7188cc1e47d72370da762d258f716fb367cb1a7865c54b + languageName: node + linkType: hard + +"@xmldom/xmldom@npm:^0.8.8": + version: 0.8.10 + resolution: "@xmldom/xmldom@npm:0.8.10" + checksum: 4c136aec31fb3b49aaa53b6fcbfe524d02a1dc0d8e17ee35bd3bf35e9ce1344560481cd1efd086ad1a4821541482528672306d5e37cdbd187f33d7fadd3e2cf0 + languageName: node + linkType: hard + +"@xtuc/ieee754@npm:^1.2.0": + version: 1.2.0 + resolution: "@xtuc/ieee754@npm:1.2.0" + checksum: ac56d4ca6e17790f1b1677f978c0c6808b1900a5b138885d3da21732f62e30e8f0d9120fcf8f6edfff5100ca902b46f8dd7c1e3f903728634523981e80e2885a + languageName: node + linkType: hard + +"@xtuc/long@npm:4.2.2": + version: 4.2.2 + resolution: "@xtuc/long@npm:4.2.2" + checksum: 8ed0d477ce3bc9c6fe2bf6a6a2cc316bb9c4127c5a7827bae947fa8ec34c7092395c5a283cc300c05b5fa01cbbfa1f938f410a7bf75db7c7846fea41949989ec + languageName: node + linkType: hard + +"abab@npm:^2.0.3, abab@npm:^2.0.5": + version: 2.0.6 + resolution: "abab@npm:2.0.6" + checksum: 6ffc1af4ff315066c62600123990d87551ceb0aafa01e6539da77b0f5987ac7019466780bf480f1787576d4385e3690c81ccc37cfda12819bf510b8ab47e5a3e + languageName: node + linkType: hard + +"abbrev@npm:1, abbrev@npm:^1.0.0": + version: 1.1.1 + resolution: "abbrev@npm:1.1.1" + checksum: a4a97ec07d7ea112c517036882b2ac22f3109b7b19077dc656316d07d308438aac28e4d9746dc4d84bf6b1e75b4a7b0a5f3cb30592419f128ca9a8cee3bcfa17 + languageName: node + linkType: hard + +"accepts@npm:~1.3.4, accepts@npm:~1.3.5, accepts@npm:~1.3.8": + version: 1.3.8 + resolution: "accepts@npm:1.3.8" + dependencies: + mime-types: ~2.1.34 + negotiator: 0.6.3 + checksum: 50c43d32e7b50285ebe84b613ee4a3aa426715a7d131b65b786e2ead0fd76b6b60091b9916d3478a75f11f162628a2139991b6c03ab3f1d9ab7c86075dc8eab4 + languageName: node + linkType: hard + +"acorn-globals@npm:^6.0.0": + version: 6.0.0 + resolution: "acorn-globals@npm:6.0.0" + dependencies: + acorn: ^7.1.1 + acorn-walk: ^7.1.1 + checksum: 72d95e5b5e585f9acd019b993ab8bbba68bb3cbc9d9b5c1ebb3c2f1fe5981f11deababfb4949f48e6262f9c57878837f5958c0cca396f81023814680ca878042 + languageName: node + linkType: hard + +"acorn-jsx@npm:^5.3.1": + version: 5.3.2 + resolution: "acorn-jsx@npm:5.3.2" + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + checksum: c3d3b2a89c9a056b205b69530a37b972b404ee46ec8e5b341666f9513d3163e2a4f214a71f4dfc7370f5a9c07472d2fd1c11c91c3f03d093e37637d95da98950 + languageName: node + linkType: hard + +"acorn-walk@npm:^7.1.1": + version: 7.2.0 + resolution: "acorn-walk@npm:7.2.0" + checksum: 9252158a79b9d92f1bc0dd6acc0fcfb87a67339e84bcc301bb33d6078936d27e35d606b4d35626d2962cd43c256d6f27717e70cbe15c04fff999ab0b2260b21f + languageName: node + linkType: hard + +"acorn@npm:^6.4.1": + version: 6.4.2 + resolution: "acorn@npm:6.4.2" + bin: + acorn: bin/acorn + checksum: 44b07053729db7f44d28343eed32247ed56dc4a6ec6dff2b743141ecd6b861406bbc1c20bf9d4f143ea7dd08add5dc8c290582756539bc03a8db605050ce2fb4 + languageName: node + linkType: hard + +"acorn@npm:^7.1.0, acorn@npm:^7.1.1, acorn@npm:^7.4.0": + version: 7.4.1 + resolution: "acorn@npm:7.4.1" + bin: + acorn: bin/acorn + checksum: 1860f23c2107c910c6177b7b7be71be350db9e1080d814493fae143ae37605189504152d1ba8743ba3178d0b37269ce1ffc42b101547fdc1827078f82671e407 + languageName: node + linkType: hard + +"acorn@npm:^8.2.4, acorn@npm:^8.5.0, acorn@npm:^8.8.2": + version: 8.10.0 + resolution: "acorn@npm:8.10.0" + bin: + acorn: bin/acorn + checksum: 538ba38af0cc9e5ef983aee196c4b8b4d87c0c94532334fa7e065b2c8a1f85863467bb774231aae91613fcda5e68740c15d97b1967ae3394d20faddddd8af61d + languageName: node + linkType: hard + +"address@npm:1.1.2": + version: 1.1.2 + resolution: "address@npm:1.1.2" + checksum: d966deee6ab9a0f96ed1d25dc73e91a248f64479c91f9daeb15237b8e3c39a02faac4e6afe8987ef9e5aea60a1593cef5882b7456ab2e6196fc0229a93ec39c2 + languageName: node + linkType: hard + +"address@npm:^1.0.1": + version: 1.2.2 + resolution: "address@npm:1.2.2" + checksum: ace439960c1e3564d8f523aff23a841904bf33a2a7c2e064f7f60a064194075758b9690e65bd9785692a4ef698a998c57eb74d145881a1cecab8ba658ddb1607 + languageName: node + linkType: hard + +"adjust-sourcemap-loader@npm:3.0.0": + version: 3.0.0 + resolution: "adjust-sourcemap-loader@npm:3.0.0" + dependencies: + loader-utils: ^2.0.0 + regex-parser: ^2.2.11 + checksum: 5ceabea85219fcafed06f7d1aafb37dc761c6435e4ded2a8c6b01c69844250aa94ef65a4d07210dc7566c2d8b4c9ba8897518db596a550461eed26fbeb76b96f + languageName: node + linkType: hard + +"adjust-sourcemap-loader@npm:^4.0.0": + version: 4.0.0 + resolution: "adjust-sourcemap-loader@npm:4.0.0" + dependencies: + loader-utils: ^2.0.0 + regex-parser: ^2.2.11 + checksum: d524ae23582f41e2275af5d88faab7a9dc09770ed588244e0a76d3196d0d6a90bf02760c71bc6213dbfef3aef4a86232ac9521bfd629752c32b7af37bc74c660 + languageName: node + linkType: hard + +"agent-base@npm:6, agent-base@npm:^6.0.2": + version: 6.0.2 + resolution: "agent-base@npm:6.0.2" + dependencies: + debug: 4 + checksum: f52b6872cc96fd5f622071b71ef200e01c7c4c454ee68bc9accca90c98cfb39f2810e3e9aa330435835eedc8c23f4f8a15267f67c6e245d2b33757575bdac49d + languageName: node + linkType: hard + +"agentkeepalive@npm:^4.2.1": + version: 4.5.0 + resolution: "agentkeepalive@npm:4.5.0" + dependencies: + humanize-ms: ^1.2.1 + checksum: 13278cd5b125e51eddd5079f04d6fe0914ac1b8b91c1f3db2c1822f99ac1a7457869068997784342fe455d59daaff22e14fb7b8c3da4e741896e7e31faf92481 + languageName: node + linkType: hard + +"aggregate-error@npm:^3.0.0": + version: 3.1.0 + resolution: "aggregate-error@npm:3.1.0" + dependencies: + clean-stack: ^2.0.0 + indent-string: ^4.0.0 + checksum: 1101a33f21baa27a2fa8e04b698271e64616b886795fd43c31068c07533c7b3facfcaf4e9e0cab3624bd88f729a592f1c901a1a229c9e490eafce411a8644b79 + languageName: node + linkType: hard + +"ajv-errors@npm:^1.0.0": + version: 1.0.1 + resolution: "ajv-errors@npm:1.0.1" + peerDependencies: + ajv: ">=5.0.0" + checksum: 2c9fc02cf58f9aae5bace61ebd1b162e1ea372ae9db5999243ba5e32a9a78c0d635d29ae085f652c61c941a43af0b2b1acdb255e29d44dc43a6e021085716d8c + languageName: node + linkType: hard + +"ajv-formats@npm:^2.1.1": + version: 2.1.1 + resolution: "ajv-formats@npm:2.1.1" + dependencies: + ajv: ^8.0.0 + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + checksum: 4a287d937f1ebaad4683249a4c40c0fa3beed30d9ddc0adba04859026a622da0d317851316ea64b3680dc60f5c3c708105ddd5d5db8fe595d9d0207fd19f90b7 + languageName: node + linkType: hard + +"ajv-keywords@npm:^3.1.0, ajv-keywords@npm:^3.4.1, ajv-keywords@npm:^3.5.2": + version: 3.5.2 + resolution: "ajv-keywords@npm:3.5.2" + peerDependencies: + ajv: ^6.9.1 + checksum: 7dc5e5931677a680589050f79dcbe1fefbb8fea38a955af03724229139175b433c63c68f7ae5f86cf8f65d55eb7c25f75a046723e2e58296707617ca690feae9 + languageName: node + linkType: hard + +"ajv-keywords@npm:^5.1.0": + version: 5.1.0 + resolution: "ajv-keywords@npm:5.1.0" + dependencies: + fast-deep-equal: ^3.1.3 + peerDependencies: + ajv: ^8.8.2 + checksum: c35193940b853119242c6757787f09ecf89a2c19bcd36d03ed1a615e710d19d450cb448bfda407b939aba54b002368c8bff30529cc50a0536a8e10bcce300421 + languageName: node + linkType: hard + +"ajv@npm:^6.1.0, ajv@npm:^6.10.0, ajv@npm:^6.10.2, ajv@npm:^6.12.0, ajv@npm:^6.12.4, ajv@npm:^6.12.5": + version: 6.12.6 + resolution: "ajv@npm:6.12.6" + dependencies: + fast-deep-equal: ^3.1.1 + fast-json-stable-stringify: ^2.0.0 + json-schema-traverse: ^0.4.1 + uri-js: ^4.2.2 + checksum: 874972efe5c4202ab0a68379481fbd3d1b5d0a7bd6d3cc21d40d3536ebff3352a2a1fabb632d4fd2cc7fe4cbdcd5ed6782084c9bbf7f32a1536d18f9da5007d4 + languageName: node + linkType: hard + +"ajv@npm:^8.0.0, ajv@npm:^8.0.1, ajv@npm:^8.9.0": + version: 8.12.0 + resolution: "ajv@npm:8.12.0" + dependencies: + fast-deep-equal: ^3.1.1 + json-schema-traverse: ^1.0.0 + require-from-string: ^2.0.2 + uri-js: ^4.2.2 + checksum: 4dc13714e316e67537c8b31bc063f99a1d9d9a497eb4bbd55191ac0dcd5e4985bbb71570352ad6f1e76684fb6d790928f96ba3b2d4fd6e10024be9612fe3f001 + languageName: node + linkType: hard + +"alphanum-sort@npm:^1.0.0": + version: 1.0.2 + resolution: "alphanum-sort@npm:1.0.2" + checksum: 5a32d0b3c0944e65d22ff3ae2f88d7a4f8d88a78a703033caeae33f2944915e053d283d02f630dc94823edc7757148ecdcf39fd687a5117bda5c10133a03a7d8 + languageName: node + linkType: hard + +"ansi-align@npm:^3.0.0": + version: 3.0.1 + resolution: "ansi-align@npm:3.0.1" + dependencies: + string-width: ^4.1.0 + checksum: 6abfa08f2141d231c257162b15292467081fa49a208593e055c866aa0455b57f3a86b5a678c190c618faa79b4c59e254493099cb700dd9cf2293c6be2c8f5d8d + languageName: node + linkType: hard + +"ansi-colors@npm:^3.0.0": + version: 3.2.4 + resolution: "ansi-colors@npm:3.2.4" + checksum: 026c51880e9f8eb59b112669a87dbea4469939ff94b131606303bbd697438a6691b16b9db3027aa9bf132a244214e83ab1508b998496a34d2aea5b437ac9e62d + languageName: node + linkType: hard + +"ansi-colors@npm:^4.1.1": + version: 4.1.3 + resolution: "ansi-colors@npm:4.1.3" + checksum: a9c2ec842038a1fabc7db9ece7d3177e2fe1c5dc6f0c51ecfbf5f39911427b89c00b5dc6b8bd95f82a26e9b16aaae2e83d45f060e98070ce4d1333038edceb0e + languageName: node + linkType: hard + +"ansi-escapes@npm:^4.2.1, ansi-escapes@npm:^4.3.1": + version: 4.3.2 + resolution: "ansi-escapes@npm:4.3.2" + dependencies: + type-fest: ^0.21.3 + checksum: 93111c42189c0a6bed9cdb4d7f2829548e943827ee8479c74d6e0b22ee127b2a21d3f8b5ca57723b8ef78ce011fbfc2784350eb2bde3ccfccf2f575fa8489815 + languageName: node + linkType: hard + +"ansi-html@npm:0.0.7, ansi-html@npm:^0.0.7": + version: 0.0.7 + resolution: "ansi-html@npm:0.0.7" + bin: + ansi-html: ./bin/ansi-html + checksum: 9b839ce99650b4c2d83621d67d68622d27e7948b54f7a4386f2218a3997ee4e684e5a6e8d290880c3f3260e8d90c2613c59c7028f04992ad5c8d99d3a0fcc02c + languageName: node + linkType: hard + +"ansi-regex@npm:^2.0.0": + version: 2.1.1 + resolution: "ansi-regex@npm:2.1.1" + checksum: 190abd03e4ff86794f338a31795d262c1dfe8c91f7e01d04f13f646f1dcb16c5800818f886047876f1272f065570ab86b24b99089f8b68a0e11ff19aed4ca8f1 + languageName: node + linkType: hard + +"ansi-regex@npm:^4.1.0": + version: 4.1.1 + resolution: "ansi-regex@npm:4.1.1" + checksum: b1a6ee44cb6ecdabaa770b2ed500542714d4395d71c7e5c25baa631f680fb2ad322eb9ba697548d498a6fd366949fc8b5bfcf48d49a32803611f648005b01888 + languageName: node + linkType: hard + +"ansi-regex@npm:^5.0.0, ansi-regex@npm:^5.0.1": + version: 5.0.1 + resolution: "ansi-regex@npm:5.0.1" + checksum: 2aa4bb54caf2d622f1afdad09441695af2a83aa3fe8b8afa581d205e57ed4261c183c4d3877cee25794443fde5876417d859c108078ab788d6af7e4fe52eb66b + languageName: node + linkType: hard + +"ansi-regex@npm:^6.0.1": + version: 6.0.1 + resolution: "ansi-regex@npm:6.0.1" + checksum: 1ff8b7667cded1de4fa2c9ae283e979fc87036864317da86a2e546725f96406746411d0d85e87a2d12fa5abd715d90006de7fa4fa0477c92321ad3b4c7d4e169 + languageName: node + linkType: hard + +"ansi-styles@npm:^3.2.0, ansi-styles@npm:^3.2.1": + version: 3.2.1 + resolution: "ansi-styles@npm:3.2.1" + dependencies: + color-convert: ^1.9.0 + checksum: d85ade01c10e5dd77b6c89f34ed7531da5830d2cb5882c645f330079975b716438cd7ebb81d0d6e6b4f9c577f19ae41ab55f07f19786b02f9dfd9e0377395665 + languageName: node + linkType: hard + +"ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0": + version: 4.3.0 + resolution: "ansi-styles@npm:4.3.0" + dependencies: + color-convert: ^2.0.1 + checksum: 513b44c3b2105dd14cc42a19271e80f386466c4be574bccf60b627432f9198571ebf4ab1e4c3ba17347658f4ee1711c163d574248c0c1cdc2d5917a0ad582ec4 + languageName: node + linkType: hard + +"ansi-styles@npm:^5.0.0": + version: 5.2.0 + resolution: "ansi-styles@npm:5.2.0" + checksum: d7f4e97ce0623aea6bc0d90dcd28881ee04cba06c570b97fd3391bd7a268eedfd9d5e2dd4fdcbdd82b8105df5faf6f24aaedc08eaf3da898e702db5948f63469 + languageName: node + linkType: hard + +"ansi-styles@npm:^6.1.0": + version: 6.2.1 + resolution: "ansi-styles@npm:6.2.1" + checksum: ef940f2f0ced1a6347398da88a91da7930c33ecac3c77b72c5905f8b8fe402c52e6fde304ff5347f616e27a742da3f1dc76de98f6866c69251ad0b07a66776d9 + languageName: node + linkType: hard + +"anymatch@npm:^2.0.0": + version: 2.0.0 + resolution: "anymatch@npm:2.0.0" + dependencies: + micromatch: ^3.1.4 + normalize-path: ^2.1.1 + checksum: f7bb1929842b4585cdc28edbb385767d499ce7d673f96a8f11348d2b2904592ffffc594fe9229b9a1e9e4dccb9329b7692f9f45e6a11dcefbb76ecdc9ab740f6 + languageName: node + linkType: hard + +"anymatch@npm:^3.0.0, anymatch@npm:^3.0.3, anymatch@npm:~3.1.2": + version: 3.1.3 + resolution: "anymatch@npm:3.1.3" + dependencies: + normalize-path: ^3.0.0 + picomatch: ^2.0.4 + checksum: 3e044fd6d1d26545f235a9fe4d7a534e2029d8e59fa7fd9f2a6eb21230f6b5380ea1eaf55136e60cbf8e613544b3b766e7a6fa2102e2a3a117505466e3025dc2 + languageName: node + linkType: hard + +"app-builder-bin@npm:3.7.1": + version: 3.7.1 + resolution: "app-builder-bin@npm:3.7.1" + checksum: aae6152d7e7e6eabe35e5430f8b4733cc713bd3f80fdb861c5b675ebc8951aa26b520821d27c5ee31f05e850cdfd9b923b58064307f1ae583fb4e7434d380209 + languageName: node + linkType: hard + +"app-builder-lib@npm:22.14.13": + version: 22.14.13 + resolution: "app-builder-lib@npm:22.14.13" + dependencies: + 7zip-bin: ~5.1.1 + "@develar/schema-utils": ~2.6.5 + "@electron/universal": 1.0.5 + "@malept/flatpak-bundler": ^0.4.0 + async-exit-hook: ^2.0.1 + bluebird-lst: ^1.0.9 + builder-util: 22.14.13 + builder-util-runtime: 8.9.2 + chromium-pickle-js: ^0.2.0 + debug: ^4.3.2 + ejs: ^3.1.6 + electron-osx-sign: ^0.5.0 + electron-publish: 22.14.13 + form-data: ^4.0.0 + fs-extra: ^10.0.0 + hosted-git-info: ^4.0.2 + is-ci: ^3.0.0 + isbinaryfile: ^4.0.8 + js-yaml: ^4.1.0 + lazy-val: ^1.0.5 + minimatch: ^3.0.4 + read-config-file: 6.2.0 + sanitize-filename: ^1.6.3 + semver: ^7.3.5 + temp-file: ^3.4.0 + checksum: a32a5ef25b3f70ddcd9b6ba0691221b9e66b0b0a4e1c28e9dc90854d7dcd0183445af55132587458963202afe40b1860b705558b990622d9e5953931b0de2572 + languageName: node + linkType: hard + +"aproba@npm:^1.0.3 || ^2.0.0": + version: 2.0.0 + resolution: "aproba@npm:2.0.0" + checksum: 5615cadcfb45289eea63f8afd064ab656006361020e1735112e346593856f87435e02d8dcc7ff0d11928bc7d425f27bc7c2a84f6c0b35ab0ff659c814c138a24 + languageName: node + linkType: hard + +"aproba@npm:^1.1.1": + version: 1.2.0 + resolution: "aproba@npm:1.2.0" + checksum: 0fca141966559d195072ed047658b6e6c4fe92428c385dd38e288eacfc55807e7b4989322f030faff32c0f46bb0bc10f1e0ac32ec22d25315a1e5bbc0ebb76dc + languageName: node + linkType: hard + +"are-we-there-yet@npm:^2.0.0": + version: 2.0.0 + resolution: "are-we-there-yet@npm:2.0.0" + dependencies: + delegates: ^1.0.0 + readable-stream: ^3.6.0 + checksum: 6c80b4fd04ecee6ba6e737e0b72a4b41bdc64b7d279edfc998678567ff583c8df27e27523bc789f2c99be603ffa9eaa612803da1d886962d2086e7ff6fa90c7c + languageName: node + linkType: hard + +"are-we-there-yet@npm:^3.0.0": + version: 3.0.1 + resolution: "are-we-there-yet@npm:3.0.1" + dependencies: + delegates: ^1.0.0 + readable-stream: ^3.6.0 + checksum: 52590c24860fa7173bedeb69a4c05fb573473e860197f618b9a28432ee4379049336727ae3a1f9c4cb083114601c1140cee578376164d0e651217a9843f9fe83 + languageName: node + linkType: hard + +"argparse@npm:^1.0.7": + version: 1.0.10 + resolution: "argparse@npm:1.0.10" + dependencies: + sprintf-js: ~1.0.2 + checksum: 7ca6e45583a28de7258e39e13d81e925cfa25d7d4aacbf806a382d3c02fcb13403a07fb8aeef949f10a7cfe4a62da0e2e807b348a5980554cc28ee573ef95945 + languageName: node + linkType: hard + +"argparse@npm:^2.0.1": + version: 2.0.1 + resolution: "argparse@npm:2.0.1" + checksum: 83644b56493e89a254bae05702abf3a1101b4fa4d0ca31df1c9985275a5a5bd47b3c27b7fa0b71098d41114d8ca000e6ed90cad764b306f8a503665e4d517ced + languageName: node + linkType: hard + +"aria-query@npm:^4.2.2": + version: 4.2.2 + resolution: "aria-query@npm:4.2.2" + dependencies: + "@babel/runtime": ^7.10.2 + "@babel/runtime-corejs3": ^7.10.2 + checksum: 38401a9a400f26f3dcc24b84997461a16b32869a9893d323602bed8da40a8bcc0243b8d2880e942249a1496cea7a7de769e93d21c0baa439f01e1ee936fed665 + languageName: node + linkType: hard + +"aria-query@npm:^5.0.0, aria-query@npm:^5.1.3": + version: 5.3.0 + resolution: "aria-query@npm:5.3.0" + dependencies: + dequal: ^2.0.3 + checksum: 305bd73c76756117b59aba121d08f413c7ff5e80fa1b98e217a3443fcddb9a232ee790e24e432b59ae7625aebcf4c47cb01c2cac872994f0b426f5bdfcd96ba9 + languageName: node + linkType: hard + +"arity-n@npm:^1.0.4": + version: 1.0.4 + resolution: "arity-n@npm:1.0.4" + checksum: 3d76e16907f7b8a9452690c1efc301d0fbecea457365797eccfbade9b8d1653175b2c38343201bf26fdcbf0bcbb31eab6d912e7c008c6d19042301dc0be80a73 + languageName: node + linkType: hard + +"arr-diff@npm:^4.0.0": + version: 4.0.0 + resolution: "arr-diff@npm:4.0.0" + checksum: ea7c8834842ad3869297f7915689bef3494fd5b102ac678c13ffccab672d3d1f35802b79e90c4cfec2f424af3392e44112d1ccf65da34562ed75e049597276a0 + languageName: node + linkType: hard + +"arr-flatten@npm:^1.1.0": + version: 1.1.0 + resolution: "arr-flatten@npm:1.1.0" + checksum: 963fe12564fca2f72c055f3f6c206b9e031f7c433a0c66ca9858b484821f248c5b1e5d53c8e4989d80d764cd776cf6d9b160ad05f47bdc63022bfd63b5455e22 + languageName: node + linkType: hard + +"arr-union@npm:^3.1.0": + version: 3.1.0 + resolution: "arr-union@npm:3.1.0" + checksum: b5b0408c6eb7591143c394f3be082fee690ddd21f0fdde0a0a01106799e847f67fcae1b7e56b0a0c173290e29c6aca9562e82b300708a268bc8f88f3d6613cb9 + languageName: node + linkType: hard + +"array-buffer-byte-length@npm:^1.0.0": + version: 1.0.0 + resolution: "array-buffer-byte-length@npm:1.0.0" + dependencies: + call-bind: ^1.0.2 + is-array-buffer: ^3.0.1 + checksum: 044e101ce150f4804ad19c51d6c4d4cfa505c5b2577bd179256e4aa3f3f6a0a5e9874c78cd428ee566ac574c8a04d7ce21af9fe52e844abfdccb82b33035a7c3 + languageName: node + linkType: hard + +"array-flatten@npm:1.1.1": + version: 1.1.1 + resolution: "array-flatten@npm:1.1.1" + checksum: a9925bf3512d9dce202112965de90c222cd59a4fbfce68a0951d25d965cf44642931f40aac72309c41f12df19afa010ecadceb07cfff9ccc1621e99d89ab5f3b + languageName: node + linkType: hard + +"array-flatten@npm:^2.1.0": + version: 2.1.2 + resolution: "array-flatten@npm:2.1.2" + checksum: e8988aac1fbfcdaae343d08c9a06a6fddd2c6141721eeeea45c3cf523bf4431d29a46602929455ed548c7a3e0769928cdc630405427297e7081bd118fdec9262 + languageName: node + linkType: hard + +"array-includes@npm:^3.1.6": + version: 3.1.7 + resolution: "array-includes@npm:3.1.7" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + get-intrinsic: ^1.2.1 + is-string: ^1.0.7 + checksum: 06f9e4598fac12a919f7c59a3f04f010ea07f0b7f0585465ed12ef528a60e45f374e79d1bddbb34cdd4338357d00023ddbd0ac18b0be36964f5e726e8965d7fc + languageName: node + linkType: hard + +"array-union@npm:^1.0.1": + version: 1.0.2 + resolution: "array-union@npm:1.0.2" + dependencies: + array-uniq: ^1.0.1 + checksum: 82cec6421b6e6766556c484835a6d476a873f1b71cace5ab2b4f1b15b1e3162dc4da0d16f7a2b04d4aec18146c6638fe8f661340b31ba8e469fd811a1b45dc8d + languageName: node + linkType: hard + +"array-union@npm:^2.1.0": + version: 2.1.0 + resolution: "array-union@npm:2.1.0" + checksum: 5bee12395cba82da674931df6d0fea23c4aa4660cb3b338ced9f828782a65caa232573e6bf3968f23e0c5eb301764a382cef2f128b170a9dc59de0e36c39f98d + languageName: node + linkType: hard + +"array-uniq@npm:^1.0.1": + version: 1.0.3 + resolution: "array-uniq@npm:1.0.3" + checksum: 1625f06b093d8bf279b81adfec6e72951c0857d65b5e3f65f053fffe9f9dd61c2fc52cff57e38a4700817e7e3f01a4faa433d505ea9e33cdae4514c334e0bf9e + languageName: node + linkType: hard + +"array-unique@npm:^0.3.2": + version: 0.3.2 + resolution: "array-unique@npm:0.3.2" + checksum: da344b89cfa6b0a5c221f965c21638bfb76b57b45184a01135382186924f55973cd9b171d4dad6bf606c6d9d36b0d721d091afdc9791535ead97ccbe78f8a888 + languageName: node + linkType: hard + +"array.prototype.findlastindex@npm:^1.2.2": + version: 1.2.3 + resolution: "array.prototype.findlastindex@npm:1.2.3" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + es-shim-unscopables: ^1.0.0 + get-intrinsic: ^1.2.1 + checksum: 31f35d7b370c84db56484618132041a9af401b338f51899c2e78ef7690fbba5909ee7ca3c59a7192085b328cc0c68c6fd1f6d1553db01a689a589ae510f3966e + languageName: node + linkType: hard + +"array.prototype.flat@npm:^1.3.1": + version: 1.3.2 + resolution: "array.prototype.flat@npm:1.3.2" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + es-shim-unscopables: ^1.0.0 + checksum: 5d6b4bf102065fb3f43764bfff6feb3295d372ce89591e6005df3d0ce388527a9f03c909af6f2a973969a4d178ab232ffc9236654149173e0e187ec3a1a6b87b + languageName: node + linkType: hard + +"array.prototype.flatmap@npm:^1.3.1": + version: 1.3.2 + resolution: "array.prototype.flatmap@npm:1.3.2" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + es-shim-unscopables: ^1.0.0 + checksum: ce09fe21dc0bcd4f30271f8144083aa8c13d4639074d6c8dc82054b847c7fc9a0c97f857491f4da19d4003e507172a78f4bcd12903098adac8b9cd374f734be3 + languageName: node + linkType: hard + +"array.prototype.reduce@npm:^1.0.6": + version: 1.0.6 + resolution: "array.prototype.reduce@npm:1.0.6" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + es-array-method-boxes-properly: ^1.0.0 + is-string: ^1.0.7 + checksum: c709c3f5caa2aac4fb10e0c6c1982cca50328a2a48658d53b1da8ee3a78069ad67cdac21296d6285521aa3a932a8178c0e192b5fc831fae2977b69a5a8a64ad7 + languageName: node + linkType: hard + +"array.prototype.tosorted@npm:^1.1.1": + version: 1.1.2 + resolution: "array.prototype.tosorted@npm:1.1.2" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + es-shim-unscopables: ^1.0.0 + get-intrinsic: ^1.2.1 + checksum: 3607a7d6b117f0ffa6f4012457b7af0d47d38cf05e01d50e09682fd2fb782a66093a5e5fbbdbad77c8c824794a9d892a51844041641f719ad41e3a974f0764de + languageName: node + linkType: hard + +"arraybuffer.prototype.slice@npm:^1.0.2": + version: 1.0.2 + resolution: "arraybuffer.prototype.slice@npm:1.0.2" + dependencies: + array-buffer-byte-length: ^1.0.0 + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + get-intrinsic: ^1.2.1 + is-array-buffer: ^3.0.2 + is-shared-array-buffer: ^1.0.2 + checksum: c200faf437786f5b2c80d4564ff5481c886a16dee642ef02abdc7306c7edd523d1f01d1dd12b769c7eb42ac9bc53874510db19a92a2c035c0f6696172aafa5d3 + languageName: node + linkType: hard + +"arrify@npm:^2.0.1": + version: 2.0.1 + resolution: "arrify@npm:2.0.1" + checksum: 067c4c1afd182806a82e4c1cb8acee16ab8b5284fbca1ce29408e6e91281c36bb5b612f6ddfbd40a0f7a7e0c75bf2696eb94c027f6e328d6e9c52465c98e4209 + languageName: node + linkType: hard + +"asap@npm:~2.0.6": + version: 2.0.6 + resolution: "asap@npm:2.0.6" + checksum: b296c92c4b969e973260e47523207cd5769abd27c245a68c26dc7a0fe8053c55bb04360237cb51cab1df52be939da77150ace99ad331fb7fb13b3423ed73ff3d + languageName: node + linkType: hard + +"asar@npm:^3.0.3": + version: 3.2.0 + resolution: "asar@npm:3.2.0" + dependencies: + "@types/glob": ^7.1.1 + chromium-pickle-js: ^0.2.0 + commander: ^5.0.0 + glob: ^7.1.6 + minimatch: ^3.0.4 + dependenciesMeta: + "@types/glob": + optional: true + bin: + asar: bin/asar.js + checksum: f7d30b45970b053252ac124230bf319459d0728d7f6dedbe2f765cd2a83792d5a716d2c3f2861ceda69372b401f335e1f46460335169eadd0e91a0904a4f5a15 + languageName: node + linkType: hard + +"ascli@npm:~1": + version: 1.0.1 + resolution: "ascli@npm:1.0.1" + dependencies: + colour: ~0.7.1 + optjs: ~3.2.2 + checksum: 367dcc9a4f7b39d0460d987d5da774a630fddf54d5cb11bacdb5b8627e23d86ed3a8a27e300ecf7b138d1252a35477d5fe9991116bc9feda63659492464d8a25 + languageName: node + linkType: hard + +"asn1.js@npm:^5.2.0": + version: 5.4.1 + resolution: "asn1.js@npm:5.4.1" + dependencies: + bn.js: ^4.0.0 + inherits: ^2.0.1 + minimalistic-assert: ^1.0.0 + safer-buffer: ^2.1.0 + checksum: 3786a101ac6f304bd4e9a7df79549a7561950a13d4bcaec0c7790d44c80d147c1a94ba3d4e663673406064642a40b23fcd6c82a9952468e386c1a1376d747f9a + languageName: node + linkType: hard + +"assert-plus@npm:^1.0.0": + version: 1.0.0 + resolution: "assert-plus@npm:1.0.0" + checksum: 19b4340cb8f0e6a981c07225eacac0e9d52c2644c080198765d63398f0075f83bbc0c8e95474d54224e297555ad0d631c1dcd058adb1ddc2437b41a6b424ac64 + languageName: node + linkType: hard + +"assert@npm:^1.1.1": + version: 1.5.1 + resolution: "assert@npm:1.5.1" + dependencies: + object.assign: ^4.1.4 + util: ^0.10.4 + checksum: bfc539da97545f9b2989395d6b85be40b70649ce57464f3cc6e61f4975fb097ba0689c386f95bdb4c3ab867931e40a565c9e193ae3c02263a8e92acb17c9dc93 + languageName: node + linkType: hard + +"assign-symbols@npm:^1.0.0": + version: 1.0.0 + resolution: "assign-symbols@npm:1.0.0" + checksum: c0eb895911d05b6b2d245154f70461c5e42c107457972e5ebba38d48967870dee53bcdf6c7047990586daa80fab8dab3cc6300800fbd47b454247fdedd859a2c + languageName: node + linkType: hard + +"ast-types-flow@npm:^0.0.7": + version: 0.0.7 + resolution: "ast-types-flow@npm:0.0.7" + checksum: a26dcc2182ffee111cad7c471759b0bda22d3b7ebacf27c348b22c55f16896b18ab0a4d03b85b4020dce7f3e634b8f00b593888f622915096ea1927fa51866c4 + languageName: node + linkType: hard + +"astral-regex@npm:^2.0.0": + version: 2.0.0 + resolution: "astral-regex@npm:2.0.0" + checksum: 876231688c66400473ba505731df37ea436e574dd524520294cc3bbc54ea40334865e01fa0d074d74d036ee874ee7e62f486ea38bc421ee8e6a871c06f011766 + languageName: node + linkType: hard + +"async-each@npm:^1.0.1": + version: 1.0.6 + resolution: "async-each@npm:1.0.6" + checksum: d237e8c39348d5f1441edbd3893692912afbacaf83a2ccce8978ebeea804529a8838654b12208fbbc08c8b0411a1248948ee9bf9291ebe1921aabd5b613bc5db + languageName: node + linkType: hard + +"async-exit-hook@npm:^2.0.1": + version: 2.0.1 + resolution: "async-exit-hook@npm:2.0.1" + checksum: b72cbdd19ea90fa33a3a57b0dbff83e4bf2f4e4acd70b2b3847a588f9f16a45d38590ee13f285375dd919c224f60fa58dc3d315a87678d3aa24ff686d1c0200a + languageName: node + linkType: hard + +"async-limiter@npm:~1.0.0": + version: 1.0.1 + resolution: "async-limiter@npm:1.0.1" + checksum: 2b849695b465d93ad44c116220dee29a5aeb63adac16c1088983c339b0de57d76e82533e8e364a93a9f997f28bbfc6a92948cefc120652bd07f3b59f8d75cf2b + languageName: node + linkType: hard + +"async@npm:^2.6.4": + version: 2.6.4 + resolution: "async@npm:2.6.4" + dependencies: + lodash: ^4.17.14 + checksum: a52083fb32e1ebe1d63e5c5624038bb30be68ff07a6c8d7dfe35e47c93fc144bd8652cbec869e0ac07d57dde387aa5f1386be3559cdee799cb1f789678d88e19 + languageName: node + linkType: hard + +"async@npm:^3.2.3, async@npm:^3.2.4": + version: 3.2.4 + resolution: "async@npm:3.2.4" + checksum: 43d07459a4e1d09b84a20772414aa684ff4de085cbcaec6eea3c7a8f8150e8c62aa6cd4e699fe8ee93c3a5b324e777d34642531875a0817a35697522c1b02e89 + languageName: node + linkType: hard + +"asynciterator.prototype@npm:^1.0.0": + version: 1.0.0 + resolution: "asynciterator.prototype@npm:1.0.0" + dependencies: + has-symbols: ^1.0.3 + checksum: e8ebfd9493ac651cf9b4165e9d64030b3da1d17181bb1963627b59e240cdaf021d9b59d44b827dc1dde4e22387ec04c2d0f8720cf58a1c282e34e40cc12721b3 + languageName: node + linkType: hard + +"asynckit@npm:^0.4.0": + version: 0.4.0 + resolution: "asynckit@npm:0.4.0" + checksum: 7b78c451df768adba04e2d02e63e2d0bf3b07adcd6e42b4cf665cb7ce899bedd344c69a1dcbce355b5f972d597b25aaa1c1742b52cffd9caccb22f348114f6be + languageName: node + linkType: hard + +"at-least-node@npm:^1.0.0": + version: 1.0.0 + resolution: "at-least-node@npm:1.0.0" + checksum: 463e2f8e43384f1afb54bc68485c436d7622acec08b6fad269b421cb1d29cebb5af751426793d0961ed243146fe4dc983402f6d5a51b720b277818dbf6f2e49e + languageName: node + linkType: hard + +"atob@npm:^2.1.2": + version: 2.1.2 + resolution: "atob@npm:2.1.2" + bin: + atob: bin/atob.js + checksum: dfeeeb70090c5ebea7be4b9f787f866686c645d9f39a0d184c817252d0cf08455ed25267d79c03254d3be1f03ac399992a792edcd5ffb9c91e097ab5ef42833a + languageName: node + linkType: hard + +"autoprefixer@npm:^9.6.1": + version: 9.8.8 + resolution: "autoprefixer@npm:9.8.8" + dependencies: + browserslist: ^4.12.0 + caniuse-lite: ^1.0.30001109 + normalize-range: ^0.1.2 + num2fraction: ^1.2.2 + picocolors: ^0.2.1 + postcss: ^7.0.32 + postcss-value-parser: ^4.1.0 + bin: + autoprefixer: bin/autoprefixer + checksum: 8f017672fbac248db0cf4e86aa707d8b148d9abadb842b5cf4c6be306d80fa6a654fadefd17e46213234c1f0947612acce2864f93e903f3e736b183fc1aedc45 + languageName: node + linkType: hard + +"available-typed-arrays@npm:^1.0.5": + version: 1.0.5 + resolution: "available-typed-arrays@npm:1.0.5" + checksum: 20eb47b3cefd7db027b9bbb993c658abd36d4edd3fe1060e83699a03ee275b0c9b216cc076ff3f2db29073225fb70e7613987af14269ac1fe2a19803ccc97f1a + languageName: node + linkType: hard + +"axe-core@npm:^4.6.2": + version: 4.8.2 + resolution: "axe-core@npm:4.8.2" + checksum: 8c19f507dabfcb8514e4280c7fc66e85143be303ddb57ec9f119338021228dc9b80560993938003837bda415fde7c07bba3a96560008ffa5f4145a248ed8f5fe + languageName: node + linkType: hard + +"axios@npm:^0.25.0": + version: 0.25.0 + resolution: "axios@npm:0.25.0" + dependencies: + follow-redirects: ^1.14.7 + checksum: 2a8a3787c05f2a0c9c3878f49782357e2a9f38945b93018fb0c4fd788171c43dceefbb577988628e09fea53952744d1ecebde234b561f1e703aa43e0a598a3ad + languageName: node + linkType: hard + +"axobject-query@npm:^3.1.1": + version: 3.2.1 + resolution: "axobject-query@npm:3.2.1" + dependencies: + dequal: ^2.0.3 + checksum: a94047e702b57c91680e6a952ec4a1aaa2cfd0d80ead76bc8c954202980d8c51968a6ea18b4d8010e8e2cf95676533d8022a8ebba9abc1dfe25686721df26fd2 + languageName: node + linkType: hard + +"babel-eslint@npm:^10.1.0": + version: 10.1.0 + resolution: "babel-eslint@npm:10.1.0" + dependencies: + "@babel/code-frame": ^7.0.0 + "@babel/parser": ^7.7.0 + "@babel/traverse": ^7.7.0 + "@babel/types": ^7.7.0 + eslint-visitor-keys: ^1.0.0 + resolve: ^1.12.0 + peerDependencies: + eslint: ">= 4.12.1" + checksum: bdc1f62b6b0f9c4d5108c96d835dad0c0066bc45b7c020fcb2d6a08107cf69c9217a99d3438dbd701b2816896190c4283ba04270ed9a8349ee07bd8dafcdc050 + languageName: node + linkType: hard + +"babel-extract-comments@npm:^1.0.0": + version: 1.0.0 + resolution: "babel-extract-comments@npm:1.0.0" + dependencies: + babylon: ^6.18.0 + checksum: 6345c688ccb56a7b750223afb42c1ddc83865b8ac33d7b808b5ad5e3619624563cf8324fbacdcf41cf073a40d935468a05f806e1a7622b0186fa5dad1232a07b + languageName: node + linkType: hard + +"babel-jest@npm:^26.6.0, babel-jest@npm:^26.6.3": + version: 26.6.3 + resolution: "babel-jest@npm:26.6.3" + dependencies: + "@jest/transform": ^26.6.2 + "@jest/types": ^26.6.2 + "@types/babel__core": ^7.1.7 + babel-plugin-istanbul: ^6.0.0 + babel-preset-jest: ^26.6.2 + chalk: ^4.0.0 + graceful-fs: ^4.2.4 + slash: ^3.0.0 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 5917233f0d381e719e195b69b81e46da90293432d10288d79f8f59b8f3f9ac030e14701f3d9f90893fb739481df1d132446f1b983d841e65e2623775db100897 + languageName: node + linkType: hard + +"babel-loader@npm:8.1.0": + version: 8.1.0 + resolution: "babel-loader@npm:8.1.0" + dependencies: + find-cache-dir: ^2.1.0 + loader-utils: ^1.4.0 + mkdirp: ^0.5.3 + pify: ^4.0.1 + schema-utils: ^2.6.5 + peerDependencies: + "@babel/core": ^7.0.0 + webpack: ">=2" + checksum: fdbcae91cc43366206320a1cbe40d358a64ba2dfaa561fbd690efe0db6256c9d27ab7600f7c84041fbc4c2a6f0279175b1f8d1fa5ed17ec30bbd734da84a1bc0 + languageName: node + linkType: hard + +"babel-plugin-istanbul@npm:^6.0.0": + version: 6.1.1 + resolution: "babel-plugin-istanbul@npm:6.1.1" + dependencies: + "@babel/helper-plugin-utils": ^7.0.0 + "@istanbuljs/load-nyc-config": ^1.0.0 + "@istanbuljs/schema": ^0.1.2 + istanbul-lib-instrument: ^5.0.4 + test-exclude: ^6.0.0 + checksum: cb4fd95738219f232f0aece1116628cccff16db891713c4ccb501cddbbf9272951a5df81f2f2658dfdf4b3e7b236a9d5cbcf04d5d8c07dd5077297339598061a + languageName: node + linkType: hard + +"babel-plugin-jest-hoist@npm:^26.6.2": + version: 26.6.2 + resolution: "babel-plugin-jest-hoist@npm:26.6.2" + dependencies: + "@babel/template": ^7.3.3 + "@babel/types": ^7.3.3 + "@types/babel__core": ^7.0.0 + "@types/babel__traverse": ^7.0.6 + checksum: abe3732fdf20f96e91cbf788a54d776b30bd7a6054cb002a744d7071c656813e26e77a780dc2a6f6b197472897e220836cd907bda3fadb9d0481126bfd6c3783 + languageName: node + linkType: hard + +"babel-plugin-macros@npm:^3.1.0": + version: 3.1.0 + resolution: "babel-plugin-macros@npm:3.1.0" + dependencies: + "@babel/runtime": ^7.12.5 + cosmiconfig: ^7.0.0 + resolve: ^1.19.0 + checksum: 765de4abebd3e4688ebdfbff8571ddc8cd8061f839bb6c3e550b0344a4027b04c60491f843296ce3f3379fb356cc873d57a9ee6694262547eb822c14a25be9a6 + languageName: node + linkType: hard + +"babel-plugin-named-asset-import@npm:^0.3.7": + version: 0.3.8 + resolution: "babel-plugin-named-asset-import@npm:0.3.8" + peerDependencies: + "@babel/core": ^7.1.0 + checksum: d1e58df8cb75d91d070feea31087bc989906d3465144bde7e9f3c3690b514a90a55d3aebf3e65e76c5d4c743ecedde5f640f09f43a21fa60f1a5d413cb3f7a67 + languageName: node + linkType: hard + +"babel-plugin-polyfill-corejs2@npm:^0.4.6": + version: 0.4.6 + resolution: "babel-plugin-polyfill-corejs2@npm:0.4.6" + dependencies: + "@babel/compat-data": ^7.22.6 + "@babel/helper-define-polyfill-provider": ^0.4.3 + semver: ^6.3.1 + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: 08896811df31530be6a9bcdd630cb9fd4b5ae5181039d18db3796efbc54e38d57a42af460845c10a04434e1bc45c0d47743c7e6c860383cc6b141083cde22030 + languageName: node + linkType: hard + +"babel-plugin-polyfill-corejs3@npm:^0.8.5": + version: 0.8.5 + resolution: "babel-plugin-polyfill-corejs3@npm:0.8.5" + dependencies: + "@babel/helper-define-polyfill-provider": ^0.4.3 + core-js-compat: ^3.32.2 + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: 54ff3956c4f88e483d38b27ceec6199b9e73fceac10ebf969469d215e6a62929384e4433f85335c9a6ba809329636e27f9bdae2f54075f833e7a745341c07d84 + languageName: node + linkType: hard + +"babel-plugin-polyfill-regenerator@npm:^0.5.3": + version: 0.5.3 + resolution: "babel-plugin-polyfill-regenerator@npm:0.5.3" + dependencies: + "@babel/helper-define-polyfill-provider": ^0.4.3 + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: 2bb546582cda1870d19e646a7183baeb2cccd56e0ef3e4eaeabd28e120daf17cb87399194a9ccdcf32506bcaa68d23e73440fc8ab990a7a0f8c5a77c12d5d4bc + languageName: node + linkType: hard + +"babel-plugin-syntax-object-rest-spread@npm:^6.8.0": + version: 6.13.0 + resolution: "babel-plugin-syntax-object-rest-spread@npm:6.13.0" + checksum: 14083f2783c760f5f199160f48e42ad4505fd35fc7cf9c4530812b176705259562b77db6d3ddc5e3cbce9e9b2b61ec9db3065941f0949b68e77cae3e395a6eef + languageName: node + linkType: hard + +"babel-plugin-transform-object-rest-spread@npm:^6.26.0": + version: 6.26.0 + resolution: "babel-plugin-transform-object-rest-spread@npm:6.26.0" + dependencies: + babel-plugin-syntax-object-rest-spread: ^6.8.0 + babel-runtime: ^6.26.0 + checksum: aad583fb0d08073678838f77fa822788b9a0b842ba33e34f8d131246852f7ed31cfb5fdf57644dec952f84dcae862a27dbf3d12ccbee6bdb0aed6e7ed13ca9ba + languageName: node + linkType: hard + +"babel-plugin-transform-react-remove-prop-types@npm:^0.4.24": + version: 0.4.24 + resolution: "babel-plugin-transform-react-remove-prop-types@npm:0.4.24" + checksum: 54afe56d67f0d118c9da23996f39948e502a152b3f582eb6e8f163fcb76c2c1ea4e0cdd4f9fac5c0ef050eab4fe0a950b0b74aae6237bcc0d31d8fc4cc808d1a + languageName: node + linkType: hard + +"babel-preset-current-node-syntax@npm:^1.0.0": + version: 1.0.1 + resolution: "babel-preset-current-node-syntax@npm:1.0.1" + dependencies: + "@babel/plugin-syntax-async-generators": ^7.8.4 + "@babel/plugin-syntax-bigint": ^7.8.3 + "@babel/plugin-syntax-class-properties": ^7.8.3 + "@babel/plugin-syntax-import-meta": ^7.8.3 + "@babel/plugin-syntax-json-strings": ^7.8.3 + "@babel/plugin-syntax-logical-assignment-operators": ^7.8.3 + "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 + "@babel/plugin-syntax-numeric-separator": ^7.8.3 + "@babel/plugin-syntax-object-rest-spread": ^7.8.3 + "@babel/plugin-syntax-optional-catch-binding": ^7.8.3 + "@babel/plugin-syntax-optional-chaining": ^7.8.3 + "@babel/plugin-syntax-top-level-await": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: d118c2742498c5492c095bc8541f4076b253e705b5f1ad9a2e7d302d81a84866f0070346662355c8e25fc02caa28dc2da8d69bcd67794a0d60c4d6fab6913cc8 + languageName: node + linkType: hard + +"babel-preset-jest@npm:^26.6.2": + version: 26.6.2 + resolution: "babel-preset-jest@npm:26.6.2" + dependencies: + babel-plugin-jest-hoist: ^26.6.2 + babel-preset-current-node-syntax: ^1.0.0 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 1d9bef3a7ac6751a09d29ceb84be8b1998abd210fafa12223689c744db4f2a63ab90cba7986a71f3154d9aceda9dbeca563178731d21cbaf793b4096ed3a4d01 + languageName: node + linkType: hard + +"babel-preset-react-app@npm:^10.0.0": + version: 10.0.1 + resolution: "babel-preset-react-app@npm:10.0.1" + dependencies: + "@babel/core": ^7.16.0 + "@babel/plugin-proposal-class-properties": ^7.16.0 + "@babel/plugin-proposal-decorators": ^7.16.4 + "@babel/plugin-proposal-nullish-coalescing-operator": ^7.16.0 + "@babel/plugin-proposal-numeric-separator": ^7.16.0 + "@babel/plugin-proposal-optional-chaining": ^7.16.0 + "@babel/plugin-proposal-private-methods": ^7.16.0 + "@babel/plugin-transform-flow-strip-types": ^7.16.0 + "@babel/plugin-transform-react-display-name": ^7.16.0 + "@babel/plugin-transform-runtime": ^7.16.4 + "@babel/preset-env": ^7.16.4 + "@babel/preset-react": ^7.16.0 + "@babel/preset-typescript": ^7.16.0 + "@babel/runtime": ^7.16.3 + babel-plugin-macros: ^3.1.0 + babel-plugin-transform-react-remove-prop-types: ^0.4.24 + checksum: ee66043484e67b8aef2541976388299691478ea00834f3bb14b6b3d5edcd316a5ac95351f6ec084b41ee555cad820d4194280ad38ce51884fedc7e8946a57b74 + languageName: node + linkType: hard + +"babel-runtime@npm:^6.26.0": + version: 6.26.0 + resolution: "babel-runtime@npm:6.26.0" + dependencies: + core-js: ^2.4.0 + regenerator-runtime: ^0.11.0 + checksum: 8aeade94665e67a73c1ccc10f6fd42ba0c689b980032b70929de7a6d9a12eb87ef51902733f8fefede35afea7a5c3ef7e916a64d503446c1eedc9e3284bd3d50 + languageName: node + linkType: hard + +"babylon@npm:^6.18.0": + version: 6.18.0 + resolution: "babylon@npm:6.18.0" + bin: + babylon: ./bin/babylon.js + checksum: 0777ae0c735ce1cbfc856d627589ed9aae212b84fb0c03c368b55e6c5d3507841780052808d0ad46e18a2ba516e93d55eeed8cd967f3b2938822dfeccfb2a16d + languageName: node + linkType: hard + +"balanced-match@npm:^1.0.0": + version: 1.0.2 + resolution: "balanced-match@npm:1.0.2" + checksum: 9706c088a283058a8a99e0bf91b0a2f75497f185980d9ffa8b304de1d9e58ebda7c72c07ebf01dadedaac5b2907b2c6f566f660d62bd336c3468e960403b9d65 + languageName: node + linkType: hard + +"base64-js@npm:^1.0.2, base64-js@npm:^1.3.1, base64-js@npm:^1.5.1": + version: 1.5.1 + resolution: "base64-js@npm:1.5.1" + checksum: 669632eb3745404c2f822a18fc3a0122d2f9a7a13f7fb8b5823ee19d1d2ff9ee5b52c53367176ea4ad093c332fd5ab4bd0ebae5a8e27917a4105a4cfc86b1005 + languageName: node + linkType: hard + +"base@npm:^0.11.1": + version: 0.11.2 + resolution: "base@npm:0.11.2" + dependencies: + cache-base: ^1.0.1 + class-utils: ^0.3.5 + component-emitter: ^1.2.1 + define-property: ^1.0.0 + isobject: ^3.0.1 + mixin-deep: ^1.2.0 + pascalcase: ^0.1.1 + checksum: a4a146b912e27eea8f66d09cb0c9eab666f32ce27859a7dfd50f38cd069a2557b39f16dba1bc2aecb3b44bf096738dd207b7970d99b0318423285ab1b1994edd + languageName: node + linkType: hard + +"batch@npm:0.6.1": + version: 0.6.1 + resolution: "batch@npm:0.6.1" + checksum: 61f9934c7378a51dce61b915586191078ef7f1c3eca707fdd58b96ff2ff56d9e0af2bdab66b1462301a73c73374239e6542d9821c0af787f3209a23365d07e7f + languageName: node + linkType: hard + +"bfj@npm:^7.0.2": + version: 7.1.0 + resolution: "bfj@npm:7.1.0" + dependencies: + bluebird: ^3.7.2 + check-types: ^11.2.3 + hoopy: ^0.1.4 + jsonpath: ^1.1.1 + tryer: ^1.0.1 + checksum: 36da9ed36c60f377a3f43bb0433092af7dc40442914b8155a1330ae86b1905640baf57e9c195ab83b36d6518b27cf8ed880adff663aa444c193be149e027d722 + languageName: node + linkType: hard + +"big-integer@npm:1.6.x": + version: 1.6.51 + resolution: "big-integer@npm:1.6.51" + checksum: 3d444173d1b2e20747e2c175568bedeebd8315b0637ea95d75fd27830d3b8e8ba36c6af40374f36bdaea7b5de376dcada1b07587cb2a79a928fccdb6e6e3c518 + languageName: node + linkType: hard + +"big.js@npm:^5.2.2": + version: 5.2.2 + resolution: "big.js@npm:5.2.2" + checksum: b89b6e8419b097a8fb4ed2399a1931a68c612bce3cfd5ca8c214b2d017531191070f990598de2fc6f3f993d91c0f08aa82697717f6b3b8732c9731866d233c9e + languageName: node + linkType: hard + +"binary-extensions@npm:^1.0.0": + version: 1.13.1 + resolution: "binary-extensions@npm:1.13.1" + checksum: ad7747f33c07e94ba443055de130b50c8b8b130a358bca064c580d91769ca6a69c7ac65ca008ff044ed4541d2c6ad45496e1fadbef5218a68770996b6a2194d7 + languageName: node + linkType: hard + +"binary-extensions@npm:^2.0.0": + version: 2.2.0 + resolution: "binary-extensions@npm:2.2.0" + checksum: ccd267956c58d2315f5d3ea6757cf09863c5fc703e50fbeb13a7dc849b812ef76e3cf9ca8f35a0c48498776a7478d7b4a0418e1e2b8cb9cb9731f2922aaad7f8 + languageName: node + linkType: hard + +"bindings@npm:^1.5.0": + version: 1.5.0 + resolution: "bindings@npm:1.5.0" + dependencies: + file-uri-to-path: 1.0.0 + checksum: 65b6b48095717c2e6105a021a7da4ea435aa8d3d3cd085cb9e85bcb6e5773cf318c4745c3f7c504412855940b585bdf9b918236612a1c7a7942491de176f1ae7 + languageName: node + linkType: hard + +"bluebird-lst@npm:^1.0.9": + version: 1.0.9 + resolution: "bluebird-lst@npm:1.0.9" + dependencies: + bluebird: ^3.5.5 + checksum: 5662542d7303cfc2dcd63e87e153cd0cc6adb2d8b383d08cb11582625ba5f0116b2eb725ea471feaea74e993482634c4c5bcb39b0b6efd42fc2fc749f5c6e0da + languageName: node + linkType: hard + +"bluebird@npm:^3.5.0, bluebird@npm:^3.5.5, bluebird@npm:^3.7.2": + version: 3.7.2 + resolution: "bluebird@npm:3.7.2" + checksum: 869417503c722e7dc54ca46715f70e15f4d9c602a423a02c825570862d12935be59ed9c7ba34a9b31f186c017c23cac6b54e35446f8353059c101da73eac22ef + languageName: node + linkType: hard + +"bn.js@npm:^4.0.0, bn.js@npm:^4.1.0, bn.js@npm:^4.11.9": + version: 4.12.0 + resolution: "bn.js@npm:4.12.0" + checksum: 39afb4f15f4ea537b55eaf1446c896af28ac948fdcf47171961475724d1bb65118cca49fa6e3d67706e4790955ec0e74de584e45c8f1ef89f46c812bee5b5a12 + languageName: node + linkType: hard + +"bn.js@npm:^5.0.0, bn.js@npm:^5.1.1": + version: 5.2.1 + resolution: "bn.js@npm:5.2.1" + checksum: 3dd8c8d38055fedfa95c1d5fc3c99f8dd547b36287b37768db0abab3c239711f88ff58d18d155dd8ad902b0b0cee973747b7ae20ea12a09473272b0201c9edd3 + languageName: node + linkType: hard + +"body-parser@npm:1.20.1": + version: 1.20.1 + resolution: "body-parser@npm:1.20.1" + dependencies: + bytes: 3.1.2 + content-type: ~1.0.4 + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + on-finished: 2.4.1 + qs: 6.11.0 + raw-body: 2.5.1 + type-is: ~1.6.18 + unpipe: 1.0.0 + checksum: f1050dbac3bede6a78f0b87947a8d548ce43f91ccc718a50dd774f3c81f2d8b04693e52acf62659fad23101827dd318da1fb1363444ff9a8482b886a3e4a5266 + languageName: node + linkType: hard + +"bonjour@npm:^3.5.0": + version: 3.5.0 + resolution: "bonjour@npm:3.5.0" + dependencies: + array-flatten: ^2.1.0 + deep-equal: ^1.0.1 + dns-equal: ^1.0.0 + dns-txt: ^2.0.2 + multicast-dns: ^6.0.1 + multicast-dns-service-types: ^1.1.0 + checksum: 2cfbe9fa861f4507b5ff3853eeae3ef03a231ede2b7363efedd80880ea3c0576f64416f98056c96e429ed68ff38dc4a70c0583d1eb4dab72e491ca44a0f03444 + languageName: node + linkType: hard + +"boolbase@npm:^1.0.0, boolbase@npm:~1.0.0": + version: 1.0.0 + resolution: "boolbase@npm:1.0.0" + checksum: 3e25c80ef626c3a3487c73dbfc70ac322ec830666c9ad915d11b701142fab25ec1e63eff2c450c74347acfd2de854ccde865cd79ef4db1683f7c7b046ea43bb0 + languageName: node + linkType: hard + +"boolean@npm:^3.0.1": + version: 3.2.0 + resolution: "boolean@npm:3.2.0" + checksum: fb29535b8bf710ef45279677a86d14f5185d604557204abd2ca5fa3fb2a5c80e04d695c8dbf13ab269991977a79bb6c04b048220a6b2a3849853faa94f4a7d77 + languageName: node + linkType: hard + +"boxen@npm:^5.0.0": + version: 5.1.2 + resolution: "boxen@npm:5.1.2" + dependencies: + ansi-align: ^3.0.0 + camelcase: ^6.2.0 + chalk: ^4.1.0 + cli-boxes: ^2.2.1 + string-width: ^4.2.2 + type-fest: ^0.20.2 + widest-line: ^3.1.0 + wrap-ansi: ^7.0.0 + checksum: 82d03e42a72576ff235123f17b7c505372fe05c83f75f61e7d4fa4bcb393897ec95ce766fecb8f26b915f0f7a7227d66e5ec7cef43f5b2bd9d3aeed47ec55877 + languageName: node + linkType: hard + +"bplist-parser@npm:^0.3.2": + version: 0.3.2 + resolution: "bplist-parser@npm:0.3.2" + dependencies: + big-integer: 1.6.x + checksum: fad0f6eb155a9b636b4096a1725ce972a0386490d7d38df7be11a3a5645372446b7c44aacbc6626d24d2c17d8b837765361520ebf2960aeffcaf56765811620e + languageName: node + linkType: hard + +"brace-expansion@npm:^1.1.7": + version: 1.1.11 + resolution: "brace-expansion@npm:1.1.11" + dependencies: + balanced-match: ^1.0.0 + concat-map: 0.0.1 + checksum: faf34a7bb0c3fcf4b59c7808bc5d2a96a40988addf2e7e09dfbb67a2251800e0d14cd2bfc1aa79174f2f5095c54ff27f46fb1289fe2d77dac755b5eb3434cc07 + languageName: node + linkType: hard + +"brace-expansion@npm:^2.0.1": + version: 2.0.1 + resolution: "brace-expansion@npm:2.0.1" + dependencies: + balanced-match: ^1.0.0 + checksum: a61e7cd2e8a8505e9f0036b3b6108ba5e926b4b55089eeb5550cd04a471fe216c96d4fe7e4c7f995c728c554ae20ddfc4244cad10aef255e72b62930afd233d1 + languageName: node + linkType: hard + +"braces@npm:^2.3.1, braces@npm:^2.3.2": + version: 2.3.2 + resolution: "braces@npm:2.3.2" + dependencies: + arr-flatten: ^1.1.0 + array-unique: ^0.3.2 + extend-shallow: ^2.0.1 + fill-range: ^4.0.0 + isobject: ^3.0.1 + repeat-element: ^1.1.2 + snapdragon: ^0.8.1 + snapdragon-node: ^2.0.1 + split-string: ^3.0.2 + to-regex: ^3.0.1 + checksum: e30dcb6aaf4a31c8df17d848aa283a65699782f75ad61ae93ec25c9729c66cf58e66f0000a9fec84e4add1135bb7da40f7cb9601b36bebcfa9ca58e8d5c07de0 + languageName: node + linkType: hard + +"braces@npm:^3.0.2, braces@npm:~3.0.2": + version: 3.0.2 + resolution: "braces@npm:3.0.2" + dependencies: + fill-range: ^7.0.1 + checksum: e2a8e769a863f3d4ee887b5fe21f63193a891c68b612ddb4b68d82d1b5f3ff9073af066c343e9867a393fe4c2555dcb33e89b937195feb9c1613d259edfcd459 + languageName: node + linkType: hard + +"brorand@npm:^1.0.1, brorand@npm:^1.1.0": + version: 1.1.0 + resolution: "brorand@npm:1.1.0" + checksum: 8a05c9f3c4b46572dec6ef71012b1946db6cae8c7bb60ccd4b7dd5a84655db49fe043ecc6272e7ef1f69dc53d6730b9e2a3a03a8310509a3d797a618cbee52be + languageName: node + linkType: hard + +"browser-process-hrtime@npm:^1.0.0": + version: 1.0.0 + resolution: "browser-process-hrtime@npm:1.0.0" + checksum: e30f868cdb770b1201afb714ad1575dd86366b6e861900884665fb627109b3cc757c40067d3bfee1ff2a29c835257ea30725a8018a9afd02ac1c24b408b1e45f + languageName: node + linkType: hard + +"browserify-aes@npm:^1.0.0, browserify-aes@npm:^1.0.4": + version: 1.2.0 + resolution: "browserify-aes@npm:1.2.0" + dependencies: + buffer-xor: ^1.0.3 + cipher-base: ^1.0.0 + create-hash: ^1.1.0 + evp_bytestokey: ^1.0.3 + inherits: ^2.0.1 + safe-buffer: ^5.0.1 + checksum: 4a17c3eb55a2aa61c934c286f34921933086bf6d67f02d4adb09fcc6f2fc93977b47d9d884c25619144fccd47b3b3a399e1ad8b3ff5a346be47270114bcf7104 + languageName: node + linkType: hard + +"browserify-cipher@npm:^1.0.0": + version: 1.0.1 + resolution: "browserify-cipher@npm:1.0.1" + dependencies: + browserify-aes: ^1.0.4 + browserify-des: ^1.0.0 + evp_bytestokey: ^1.0.0 + checksum: 2d8500acf1ee535e6bebe808f7a20e4c3a9e2ed1a6885fff1facbfd201ac013ef030422bec65ca9ece8ffe82b03ca580421463f9c45af6c8415fd629f4118c13 + languageName: node + linkType: hard + +"browserify-des@npm:^1.0.0": + version: 1.0.2 + resolution: "browserify-des@npm:1.0.2" + dependencies: + cipher-base: ^1.0.1 + des.js: ^1.0.0 + inherits: ^2.0.1 + safe-buffer: ^5.1.2 + checksum: b15a3e358a1d78a3b62ddc06c845d02afde6fc826dab23f1b9c016e643e7b1fda41de628d2110b712f6a44fb10cbc1800bc6872a03ddd363fb50768e010395b7 + languageName: node + linkType: hard + +"browserify-rsa@npm:^4.0.0, browserify-rsa@npm:^4.0.1": + version: 4.1.0 + resolution: "browserify-rsa@npm:4.1.0" + dependencies: + bn.js: ^5.0.0 + randombytes: ^2.0.1 + checksum: 155f0c135873efc85620571a33d884aa8810e40176125ad424ec9d85016ff105a07f6231650914a760cca66f29af0494087947b7be34880dd4599a0cd3c38e54 + languageName: node + linkType: hard + +"browserify-sign@npm:^4.0.0": + version: 4.2.1 + resolution: "browserify-sign@npm:4.2.1" + dependencies: + bn.js: ^5.1.1 + browserify-rsa: ^4.0.1 + create-hash: ^1.2.0 + create-hmac: ^1.1.7 + elliptic: ^6.5.3 + inherits: ^2.0.4 + parse-asn1: ^5.1.5 + readable-stream: ^3.6.0 + safe-buffer: ^5.2.0 + checksum: 0221f190e3f5b2d40183fa51621be7e838d9caa329fe1ba773406b7637855f37b30f5d83e52ff8f244ed12ffe6278dd9983638609ed88c841ce547e603855707 + languageName: node + linkType: hard + +"browserify-zlib@npm:^0.2.0": + version: 0.2.0 + resolution: "browserify-zlib@npm:0.2.0" + dependencies: + pako: ~1.0.5 + checksum: 5cd9d6a665190fedb4a97dfbad8dabc8698d8a507298a03f42c734e96d58ca35d3c7d4085e283440bbca1cd1938cff85031728079bedb3345310c58ab1ec92d6 + languageName: node + linkType: hard + +"browserslist@npm:4.14.2": + version: 4.14.2 + resolution: "browserslist@npm:4.14.2" + dependencies: + caniuse-lite: ^1.0.30001125 + electron-to-chromium: ^1.3.564 + escalade: ^3.0.2 + node-releases: ^1.1.61 + bin: + browserslist: cli.js + checksum: 44b5d7a444b867e1f027923f37a8ed537b4403f8a85a35869904e7d3e4071b37459df08d41ab4d425f5191f3125f1c5a191cbff9070f81f4d311803dc0a2fb0f + languageName: node + linkType: hard + +"browserslist@npm:^4.0.0, browserslist@npm:^4.12.0, browserslist@npm:^4.21.9, browserslist@npm:^4.22.1, browserslist@npm:^4.6.2, browserslist@npm:^4.6.4": + version: 4.22.1 + resolution: "browserslist@npm:4.22.1" + dependencies: + caniuse-lite: ^1.0.30001541 + electron-to-chromium: ^1.4.535 + node-releases: ^2.0.13 + update-browserslist-db: ^1.0.13 + bin: + browserslist: cli.js + checksum: 7e6b10c53f7dd5d83fd2b95b00518889096382539fed6403829d447e05df4744088de46a571071afb447046abc3c66ad06fbc790e70234ec2517452e32ffd862 + languageName: node + linkType: hard + +"bser@npm:2.1.1": + version: 2.1.1 + resolution: "bser@npm:2.1.1" + dependencies: + node-int64: ^0.4.0 + checksum: 9ba4dc58ce86300c862bffc3ae91f00b2a03b01ee07f3564beeeaf82aa243b8b03ba53f123b0b842c190d4399b94697970c8e7cf7b1ea44b61aa28c3526a4449 + languageName: node + linkType: hard + +"buffer-alloc-unsafe@npm:^1.1.0": + version: 1.1.0 + resolution: "buffer-alloc-unsafe@npm:1.1.0" + checksum: c5e18bf51f67754ec843c9af3d4c005051aac5008a3992938dda1344e5cfec77c4b02b4ca303644d1e9a6e281765155ce6356d85c6f5ccc5cd21afc868def396 + languageName: node + linkType: hard + +"buffer-alloc@npm:^1.2.0": + version: 1.2.0 + resolution: "buffer-alloc@npm:1.2.0" + dependencies: + buffer-alloc-unsafe: ^1.1.0 + buffer-fill: ^1.0.0 + checksum: 560cd27f3cbe73c614867da373407d4506309c62fe18de45a1ce191f3785ec6ca2488d802ff82065798542422980ca25f903db078c57822218182c37c3576df5 + languageName: node + linkType: hard + +"buffer-crc32@npm:~0.2.3": + version: 0.2.13 + resolution: "buffer-crc32@npm:0.2.13" + checksum: 06252347ae6daca3453b94e4b2f1d3754a3b146a111d81c68924c22d91889a40623264e95e67955b1cb4a68cbedf317abeabb5140a9766ed248973096db5ce1c + languageName: node + linkType: hard + +"buffer-equal@npm:1.0.0": + version: 1.0.0 + resolution: "buffer-equal@npm:1.0.0" + checksum: c63a62d25ffc6f3a7064a86dd0d92d93a32d03b14f22d17374790bc10e94bca2312302895fdd28a2b0060999d4385cf90cbf6ad1a6678065156c664016d3be45 + languageName: node + linkType: hard + +"buffer-fill@npm:^1.0.0": + version: 1.0.0 + resolution: "buffer-fill@npm:1.0.0" + checksum: c29b4723ddeab01e74b5d3b982a0c6828f2ded49cef049ddca3dac661c874ecdbcecb5dd8380cf0f4adbeb8cff90a7de724126750a1f1e5ebd4eb6c59a1315b1 + languageName: node + linkType: hard + +"buffer-from@npm:^1.0.0": + version: 1.1.2 + resolution: "buffer-from@npm:1.1.2" + checksum: 0448524a562b37d4d7ed9efd91685a5b77a50672c556ea254ac9a6d30e3403a517d8981f10e565db24e8339413b43c97ca2951f10e399c6125a0d8911f5679bb + languageName: node + linkType: hard + +"buffer-indexof@npm:^1.0.0": + version: 1.1.1 + resolution: "buffer-indexof@npm:1.1.1" + checksum: 0967abc2981a8e7d776324c6b84811e4d84a7ead89b54a3bb8791437f0c4751afd060406b06db90a436f1cf771867331b5ecf5c4aca95b4ccb9f6cb146c22ebc + languageName: node + linkType: hard + +"buffer-xor@npm:^1.0.3": + version: 1.0.3 + resolution: "buffer-xor@npm:1.0.3" + checksum: 10c520df29d62fa6e785e2800e586a20fc4f6dfad84bcdbd12e1e8a83856de1cb75c7ebd7abe6d036bbfab738a6cf18a3ae9c8e5a2e2eb3167ca7399ce65373a + languageName: node + linkType: hard + +"buffer@npm:^4.3.0": + version: 4.9.2 + resolution: "buffer@npm:4.9.2" + dependencies: + base64-js: ^1.0.2 + ieee754: ^1.1.4 + isarray: ^1.0.0 + checksum: 8801bc1ba08539f3be70eee307a8b9db3d40f6afbfd3cf623ab7ef41dffff1d0a31de0addbe1e66e0ca5f7193eeb667bfb1ecad3647f8f1b0750de07c13295c3 + languageName: node + linkType: hard + +"buffer@npm:^5.1.0": + version: 5.7.1 + resolution: "buffer@npm:5.7.1" + dependencies: + base64-js: ^1.3.1 + ieee754: ^1.1.13 + checksum: e2cf8429e1c4c7b8cbd30834ac09bd61da46ce35f5c22a78e6c2f04497d6d25541b16881e30a019c6fd3154150650ccee27a308eff3e26229d788bbdeb08ab84 + languageName: node + linkType: hard + +"builder-util-runtime@npm:8.9.2": + version: 8.9.2 + resolution: "builder-util-runtime@npm:8.9.2" + dependencies: + debug: ^4.3.2 + sax: ^1.2.4 + checksum: 35adcd6162e2ed16635ff7b7ecc353e400dcbbb3e7cd01823bfefc7256cefca8c820f62d15a0f7dbee1c7495a5f1fba4e0e238857a79b48d5f6bd35064f27208 + languageName: node + linkType: hard + +"builder-util@npm:22.14.13": + version: 22.14.13 + resolution: "builder-util@npm:22.14.13" + dependencies: + 7zip-bin: ~5.1.1 + "@types/debug": ^4.1.6 + "@types/fs-extra": ^9.0.11 + app-builder-bin: 3.7.1 + bluebird-lst: ^1.0.9 + builder-util-runtime: 8.9.2 + chalk: ^4.1.1 + cross-spawn: ^7.0.3 + debug: ^4.3.2 + fs-extra: ^10.0.0 + http-proxy-agent: ^5.0.0 + https-proxy-agent: ^5.0.0 + is-ci: ^3.0.0 + js-yaml: ^4.1.0 + source-map-support: ^0.5.19 + stat-mode: ^1.0.0 + temp-file: ^3.4.0 + checksum: 6d72cc1f0bf7e72debe70049dede2a5eac302fb98b87eb7e60b7feed8631dc66877821367d5e7a87aea881f937a565c25e4e24042b421ef12c1d2afa8b7cc02d + languageName: node + linkType: hard + +"builtin-modules@npm:^3.1.0": + version: 3.3.0 + resolution: "builtin-modules@npm:3.3.0" + checksum: db021755d7ed8be048f25668fe2117620861ef6703ea2c65ed2779c9e3636d5c3b82325bd912244293959ff3ae303afa3471f6a15bf5060c103e4cc3a839749d + languageName: node + linkType: hard + +"builtin-status-codes@npm:^3.0.0": + version: 3.0.0 + resolution: "builtin-status-codes@npm:3.0.0" + checksum: 1119429cf4b0d57bf76b248ad6f529167d343156ebbcc4d4e4ad600484f6bc63002595cbb61b67ad03ce55cd1d3c4711c03bbf198bf24653b8392420482f3773 + languageName: node + linkType: hard + +"bytebuffer@npm:~5": + version: 5.0.1 + resolution: "bytebuffer@npm:5.0.1" + dependencies: + long: ~3 + checksum: d95db66499df77394d6f769b216054b596e492783905f53a06e7c0b7091b24d7b0477de133d08300672e0cd5e140eab81728cdd31ccd9367f7dc4944cdaf913b + languageName: node + linkType: hard + +"bytes@npm:3.0.0": + version: 3.0.0 + resolution: "bytes@npm:3.0.0" + checksum: a2b386dd8188849a5325f58eef69c3b73c51801c08ffc6963eddc9be244089ba32d19347caf6d145c86f315ae1b1fc7061a32b0c1aa6379e6a719090287ed101 + languageName: node + linkType: hard + +"bytes@npm:3.1.2": + version: 3.1.2 + resolution: "bytes@npm:3.1.2" + checksum: e4bcd3948d289c5127591fbedf10c0b639ccbf00243504e4e127374a15c3bc8eed0d28d4aaab08ff6f1cf2abc0cce6ba3085ed32f4f90e82a5683ce0014e1b6e + languageName: node + linkType: hard + +"cacache@npm:^12.0.2": + version: 12.0.4 + resolution: "cacache@npm:12.0.4" + dependencies: + bluebird: ^3.5.5 + chownr: ^1.1.1 + figgy-pudding: ^3.5.1 + glob: ^7.1.4 + graceful-fs: ^4.1.15 + infer-owner: ^1.0.3 + lru-cache: ^5.1.1 + mississippi: ^3.0.0 + mkdirp: ^0.5.1 + move-concurrently: ^1.0.1 + promise-inflight: ^1.0.1 + rimraf: ^2.6.3 + ssri: ^6.0.1 + unique-filename: ^1.1.1 + y18n: ^4.0.0 + checksum: c88a72f36939b2523533946ffb27828443db5bf5995d761b35ae17af1eb6c8e20ac55b00b74c2ca900b2e1e917f0afba6847bf8cc16bee05ccca6aa150e0830c + languageName: node + linkType: hard + +"cacache@npm:^15.0.5": + version: 15.3.0 + resolution: "cacache@npm:15.3.0" + dependencies: + "@npmcli/fs": ^1.0.0 + "@npmcli/move-file": ^1.0.1 + chownr: ^2.0.0 + fs-minipass: ^2.0.0 + glob: ^7.1.4 + infer-owner: ^1.0.4 + lru-cache: ^6.0.0 + minipass: ^3.1.1 + minipass-collect: ^1.0.2 + minipass-flush: ^1.0.5 + minipass-pipeline: ^1.2.2 + mkdirp: ^1.0.3 + p-map: ^4.0.0 + promise-inflight: ^1.0.1 + rimraf: ^3.0.2 + ssri: ^8.0.1 + tar: ^6.0.2 + unique-filename: ^1.1.1 + checksum: a07327c27a4152c04eb0a831c63c00390d90f94d51bb80624a66f4e14a6b6360bbf02a84421267bd4d00ca73ac9773287d8d7169e8d2eafe378d2ce140579db8 + languageName: node + linkType: hard + +"cacache@npm:^17.0.0": + version: 17.1.4 + resolution: "cacache@npm:17.1.4" + dependencies: + "@npmcli/fs": ^3.1.0 + fs-minipass: ^3.0.0 + glob: ^10.2.2 + lru-cache: ^7.7.1 + minipass: ^7.0.3 + minipass-collect: ^1.0.2 + minipass-flush: ^1.0.5 + minipass-pipeline: ^1.2.4 + p-map: ^4.0.0 + ssri: ^10.0.0 + tar: ^6.1.11 + unique-filename: ^3.0.0 + checksum: b7751df756656954a51201335addced8f63fc53266fa56392c9f5ae83c8d27debffb4458ac2d168a744a4517ec3f2163af05c20097f93d17bdc2dc8a385e14a6 + languageName: node + linkType: hard + +"cache-base@npm:^1.0.1": + version: 1.0.1 + resolution: "cache-base@npm:1.0.1" + dependencies: + collection-visit: ^1.0.0 + component-emitter: ^1.2.1 + get-value: ^2.0.6 + has-value: ^1.0.0 + isobject: ^3.0.1 + set-value: ^2.0.0 + to-object-path: ^0.3.0 + union-value: ^1.0.0 + unset-value: ^1.0.0 + checksum: 9114b8654fe2366eedc390bad0bcf534e2f01b239a888894e2928cb58cdc1e6ea23a73c6f3450dcfd2058aa73a8a981e723cd1e7c670c047bf11afdc65880107 + languageName: node + linkType: hard + +"cacheable-request@npm:^6.0.0": + version: 6.1.0 + resolution: "cacheable-request@npm:6.1.0" + dependencies: + clone-response: ^1.0.2 + get-stream: ^5.1.0 + http-cache-semantics: ^4.0.0 + keyv: ^3.0.0 + lowercase-keys: ^2.0.0 + normalize-url: ^4.1.0 + responselike: ^1.0.2 + checksum: b510b237b18d17e89942e9ee2d2a077cb38db03f12167fd100932dfa8fc963424bfae0bfa1598df4ae16c944a5484e43e03df8f32105b04395ee9495e9e4e9f1 + languageName: node + linkType: hard + +"call-bind@npm:^1.0.0, call-bind@npm:^1.0.2, call-bind@npm:^1.0.4, call-bind@npm:^1.0.5": + version: 1.0.5 + resolution: "call-bind@npm:1.0.5" + dependencies: + function-bind: ^1.1.2 + get-intrinsic: ^1.2.1 + set-function-length: ^1.1.1 + checksum: 449e83ecbd4ba48e7eaac5af26fea3b50f8f6072202c2dd7c5a6e7a6308f2421abe5e13a3bbd55221087f76320c5e09f25a8fdad1bab2b77c68ae74d92234ea5 + languageName: node + linkType: hard + +"caller-callsite@npm:^2.0.0": + version: 2.0.0 + resolution: "caller-callsite@npm:2.0.0" + dependencies: + callsites: ^2.0.0 + checksum: b685e9d126d9247b320cfdfeb3bc8da0c4be28d8fb98c471a96bc51aab3130099898a2fe3bf0308f0fe048d64c37d6d09f563958b9afce1a1e5e63d879c128a2 + languageName: node + linkType: hard + +"caller-path@npm:^2.0.0": + version: 2.0.0 + resolution: "caller-path@npm:2.0.0" + dependencies: + caller-callsite: ^2.0.0 + checksum: 3e12ccd0c71ec10a057aac69e3ec175b721ca858c640df021ef0d25999e22f7c1d864934b596b7d47038e9b56b7ec315add042abbd15caac882998b50102fb12 + languageName: node + linkType: hard + +"callsites@npm:^2.0.0": + version: 2.0.0 + resolution: "callsites@npm:2.0.0" + checksum: be2f67b247df913732b7dec1ec0bbfcdbaea263e5a95968b19ec7965affae9496b970e3024317e6d4baa8e28dc6ba0cec03f46fdddc2fdcc51396600e53c2623 + languageName: node + linkType: hard + +"callsites@npm:^3.0.0": + version: 3.1.0 + resolution: "callsites@npm:3.1.0" + checksum: 072d17b6abb459c2ba96598918b55868af677154bec7e73d222ef95a8fdb9bbf7dae96a8421085cdad8cd190d86653b5b6dc55a4484f2e5b2e27d5e0c3fc15b3 + languageName: node + linkType: hard + +"camel-case@npm:^4.1.1": + version: 4.1.2 + resolution: "camel-case@npm:4.1.2" + dependencies: + pascal-case: ^3.1.2 + tslib: ^2.0.3 + checksum: bcbd25cd253b3cbc69be3f535750137dbf2beb70f093bdc575f73f800acc8443d34fd52ab8f0a2413c34f1e8203139ffc88428d8863e4dfe530cfb257a379ad6 + languageName: node + linkType: hard + +"camelcase@npm:5.3.1, camelcase@npm:^5.0.0, camelcase@npm:^5.3.1": + version: 5.3.1 + resolution: "camelcase@npm:5.3.1" + checksum: e6effce26b9404e3c0f301498184f243811c30dfe6d0b9051863bd8e4034d09c8c2923794f280d6827e5aa055f6c434115ff97864a16a963366fb35fd673024b + languageName: node + linkType: hard + +"camelcase@npm:^2.0.1": + version: 2.1.1 + resolution: "camelcase@npm:2.1.1" + checksum: 20a3ef08f348de832631d605362ffe447d883ada89617144a82649363ed5860923b021f8e09681624ef774afb93ff3597cfbcf8aaf0574f65af7648f1aea5e50 + languageName: node + linkType: hard + +"camelcase@npm:^6.0.0, camelcase@npm:^6.1.0, camelcase@npm:^6.2.0": + version: 6.3.0 + resolution: "camelcase@npm:6.3.0" + checksum: 8c96818a9076434998511251dcb2761a94817ea17dbdc37f47ac080bd088fc62c7369429a19e2178b993497132c8cbcf5cc1f44ba963e76782ba469c0474938d + languageName: node + linkType: hard + +"caniuse-api@npm:^3.0.0": + version: 3.0.0 + resolution: "caniuse-api@npm:3.0.0" + dependencies: + browserslist: ^4.0.0 + caniuse-lite: ^1.0.0 + lodash.memoize: ^4.1.2 + lodash.uniq: ^4.5.0 + checksum: db2a229383b20d0529b6b589dde99d7b6cb56ba371366f58cbbfa2929c9f42c01f873e2b6ef641d4eda9f0b4118de77dbb2805814670bdad4234bf08e720b0b4 + languageName: node + linkType: hard + +"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30000981, caniuse-lite@npm:^1.0.30001109, caniuse-lite@npm:^1.0.30001125, caniuse-lite@npm:^1.0.30001541": + version: 1.0.30001551 + resolution: "caniuse-lite@npm:1.0.30001551" + checksum: ffdee85b1c130cbebf0aa978ba839f3525f8e304855ba9bf0fbefaac8dd8c40051a7e19ac84a7cf4ba026410abcbe6f8b45560b22ee417c52daecaf955108e65 + languageName: node + linkType: hard + +"capacitor@npm:^0.5.5": + version: 0.5.6 + resolution: "capacitor@npm:0.5.6" + dependencies: + immutable: ^3.7.3 + lodash: ^4.17.21 + checksum: 3fb5cac54461343797d993be3d112751adead830fe037af916fc5f71a95cd2d254e2b86364a81cda2134590abe46514f6f7ad86ff490bae47376438d538a31d0 + languageName: node + linkType: hard + +"capture-exit@npm:^2.0.0": + version: 2.0.0 + resolution: "capture-exit@npm:2.0.0" + dependencies: + rsvp: ^4.8.4 + checksum: 0b9f10daca09e521da9599f34c8e7af14ad879c336e2bdeb19955b375398ae1c5bcc91ac9f2429944343057ee9ed028b1b2fb28816c384e0e55d70c439b226f4 + languageName: node + linkType: hard + +"case-sensitive-paths-webpack-plugin@npm:2.3.0": + version: 2.3.0 + resolution: "case-sensitive-paths-webpack-plugin@npm:2.3.0" + checksum: 2fa78f7a495d7e73e66d1f528eac5abde65df797c9487624eeae9815a409ba6d584d8fbfe8b6c89157292fbb08d0ee6cc3418fe7f8c75b83fb2c8e29c30f205d + languageName: node + linkType: hard + +"chalk@npm:2.4.2, chalk@npm:^2.4.1, chalk@npm:^2.4.2": + version: 2.4.2 + resolution: "chalk@npm:2.4.2" + dependencies: + ansi-styles: ^3.2.1 + escape-string-regexp: ^1.0.5 + supports-color: ^5.3.0 + checksum: ec3661d38fe77f681200f878edbd9448821924e0f93a9cefc0e26a33b145f1027a2084bf19967160d11e1f03bfe4eaffcabf5493b89098b2782c3fe0b03d80c2 + languageName: node + linkType: hard + +"chalk@npm:^3.0.0": + version: 3.0.0 + resolution: "chalk@npm:3.0.0" + dependencies: + ansi-styles: ^4.1.0 + supports-color: ^7.1.0 + checksum: 8e3ddf3981c4da405ddbd7d9c8d91944ddf6e33d6837756979f7840a29272a69a5189ecae0ff84006750d6d1e92368d413335eab4db5476db6e6703a1d1e0505 + languageName: node + linkType: hard + +"chalk@npm:^4.0.0, chalk@npm:^4.0.2, chalk@npm:^4.1.0, chalk@npm:^4.1.1": + version: 4.1.2 + resolution: "chalk@npm:4.1.2" + dependencies: + ansi-styles: ^4.1.0 + supports-color: ^7.1.0 + checksum: fe75c9d5c76a7a98d45495b91b2172fa3b7a09e0cc9370e5c8feb1c567b85c4288e2b3fded7cfdd7359ac28d6b3844feb8b82b8686842e93d23c827c417e83fc + languageName: node + linkType: hard + +"char-regex@npm:^1.0.2": + version: 1.0.2 + resolution: "char-regex@npm:1.0.2" + checksum: b563e4b6039b15213114626621e7a3d12f31008bdce20f9c741d69987f62aeaace7ec30f6018890ad77b2e9b4d95324c9f5acfca58a9441e3b1dcdd1e2525d17 + languageName: node + linkType: hard + +"check-types@npm:^11.2.3": + version: 11.2.3 + resolution: "check-types@npm:11.2.3" + checksum: f99ff09ae65e63cfcfa40a1275c0a70d8c43ffbf9ac35095f3bf030cc70361c92e075a9975a1144329e50b4fe4620be6bedb4568c18abc96071a3e23aed3ed8e + languageName: node + linkType: hard + +"chokidar@npm:>=3.0.0 <4.0.0, chokidar@npm:^3.4.1": + version: 3.5.3 + resolution: "chokidar@npm:3.5.3" + dependencies: + anymatch: ~3.1.2 + braces: ~3.0.2 + fsevents: ~2.3.2 + glob-parent: ~5.1.2 + is-binary-path: ~2.1.0 + is-glob: ~4.0.1 + normalize-path: ~3.0.0 + readdirp: ~3.6.0 + dependenciesMeta: + fsevents: + optional: true + checksum: b49fcde40176ba007ff361b198a2d35df60d9bb2a5aab228279eb810feae9294a6b4649ab15981304447afe1e6ffbf4788ad5db77235dc770ab777c6e771980c + languageName: node + linkType: hard + +"chokidar@npm:^2.1.8": + version: 2.1.8 + resolution: "chokidar@npm:2.1.8" + dependencies: + anymatch: ^2.0.0 + async-each: ^1.0.1 + braces: ^2.3.2 + fsevents: ^1.2.7 + glob-parent: ^3.1.0 + inherits: ^2.0.3 + is-binary-path: ^1.0.0 + is-glob: ^4.0.0 + normalize-path: ^3.0.0 + path-is-absolute: ^1.0.0 + readdirp: ^2.2.1 + upath: ^1.1.1 + dependenciesMeta: + fsevents: + optional: true + checksum: 0c43e89cbf0268ef1e1f41ce8ec5233c7ba022c6f3282c2ef6530e351d42396d389a1148c5a040f291cf1f4083a4c6b2f51dad3f31c726442ea9a337de316bcf + languageName: node + linkType: hard + +"chownr@npm:^1.1.1": + version: 1.1.4 + resolution: "chownr@npm:1.1.4" + checksum: 115648f8eb38bac5e41c3857f3e663f9c39ed6480d1349977c4d96c95a47266fcacc5a5aabf3cb6c481e22d72f41992827db47301851766c4fd77ac21a4f081d + languageName: node + linkType: hard + +"chownr@npm:^2.0.0": + version: 2.0.0 + resolution: "chownr@npm:2.0.0" + checksum: c57cf9dd0791e2f18a5ee9c1a299ae6e801ff58fee96dc8bfd0dcb4738a6ce58dd252a3605b1c93c6418fe4f9d5093b28ffbf4d66648cb2a9c67eaef9679be2f + languageName: node + linkType: hard + +"chrome-trace-event@npm:^1.0.2": + version: 1.0.3 + resolution: "chrome-trace-event@npm:1.0.3" + checksum: cb8b1fc7e881aaef973bd0c4a43cd353c2ad8323fb471a041e64f7c2dd849cde4aad15f8b753331a32dda45c973f032c8a03b8177fc85d60eaa75e91e08bfb97 + languageName: node + linkType: hard + +"chromium-pickle-js@npm:^0.2.0": + version: 0.2.0 + resolution: "chromium-pickle-js@npm:0.2.0" + checksum: 5ccacc538b0a1ecf3484c8fb3327eae129ceee858db0f64eb0a5ff87bda096a418d0d3e6f6e0967c6334d336a2c7463f7b683ec0e1cafbe736907fa2ee2f58ca + languageName: node + linkType: hard + +"ci-info@npm:^2.0.0": + version: 2.0.0 + resolution: "ci-info@npm:2.0.0" + checksum: 3b374666a85ea3ca43fa49aa3a048d21c9b475c96eb13c133505d2324e7ae5efd6a454f41efe46a152269e9b6a00c9edbe63ec7fa1921957165aae16625acd67 + languageName: node + linkType: hard + +"ci-info@npm:^3.2.0": + version: 3.9.0 + resolution: "ci-info@npm:3.9.0" + checksum: 6b19dc9b2966d1f8c2041a838217299718f15d6c4b63ae36e4674edd2bee48f780e94761286a56aa59eb305a85fbea4ddffb7630ec063e7ec7e7e5ad42549a87 + languageName: node + linkType: hard + +"cipher-base@npm:^1.0.0, cipher-base@npm:^1.0.1, cipher-base@npm:^1.0.3": + version: 1.0.4 + resolution: "cipher-base@npm:1.0.4" + dependencies: + inherits: ^2.0.1 + safe-buffer: ^5.0.1 + checksum: 47d3568dbc17431a339bad1fe7dff83ac0891be8206911ace3d3b818fc695f376df809bea406e759cdea07fff4b454fa25f1013e648851bec790c1d75763032e + languageName: node + linkType: hard + +"cjs-module-lexer@npm:^0.6.0": + version: 0.6.0 + resolution: "cjs-module-lexer@npm:0.6.0" + checksum: 445b039607efd74561d7db8d0867031c8b6a69f25e83fdd861b0fa1fbc11f12de057ba1db80637f3c9016774354092af5325eebb90505d65ccc5389cae09d1fd + languageName: node + linkType: hard + +"class-utils@npm:^0.3.5": + version: 0.3.6 + resolution: "class-utils@npm:0.3.6" + dependencies: + arr-union: ^3.1.0 + define-property: ^0.2.5 + isobject: ^3.0.0 + static-extend: ^0.1.1 + checksum: be108900801e639e50f96a7e4bfa8867c753a7750a7603879f3981f8b0a89cba657497a2d5f40cd4ea557ff15d535a100818bb486baf6e26fe5d7872e75f1078 + languageName: node + linkType: hard + +"clean-css@npm:^4.2.3": + version: 4.2.4 + resolution: "clean-css@npm:4.2.4" + dependencies: + source-map: ~0.6.0 + checksum: 045ff6fcf4b5c76a084b24e1633e0c78a13b24080338fc8544565a9751559aa32ff4ee5886d9e52c18a644a6ff119bd8e37bc58e574377c05382a1fb7dbe39f8 + languageName: node + linkType: hard + +"clean-stack@npm:^2.0.0": + version: 2.2.0 + resolution: "clean-stack@npm:2.2.0" + checksum: 2ac8cd2b2f5ec986a3c743935ec85b07bc174d5421a5efc8017e1f146a1cf5f781ae962618f416352103b32c9cd7e203276e8c28241bbe946160cab16149fb68 + languageName: node + linkType: hard + +"cli-boxes@npm:^2.2.1": + version: 2.2.1 + resolution: "cli-boxes@npm:2.2.1" + checksum: be79f8ec23a558b49e01311b39a1ea01243ecee30539c880cf14bf518a12e223ef40c57ead0cb44f509bffdffc5c129c746cd50d863ab879385370112af4f585 + languageName: node + linkType: hard + +"cli-truncate@npm:^2.1.0": + version: 2.1.0 + resolution: "cli-truncate@npm:2.1.0" + dependencies: + slice-ansi: ^3.0.0 + string-width: ^4.2.0 + checksum: bf1e4e6195392dc718bf9cd71f317b6300dc4a9191d052f31046b8773230ece4fa09458813bf0e3455a5e68c0690d2ea2c197d14a8b85a7b5e01c97f4b5feb5d + languageName: node + linkType: hard + +"cliui@npm:^3.0.3": + version: 3.2.0 + resolution: "cliui@npm:3.2.0" + dependencies: + string-width: ^1.0.1 + strip-ansi: ^3.0.1 + wrap-ansi: ^2.0.0 + checksum: c68d1dbc3e347bfe79ed19cc7f48007d5edd6cd8438342e32073e0b4e311e3c44e1f4f19221462bc6590de56c2df520e427533a9dde95dee25710bec322746ad + languageName: node + linkType: hard + +"cliui@npm:^5.0.0": + version: 5.0.0 + resolution: "cliui@npm:5.0.0" + dependencies: + string-width: ^3.1.0 + strip-ansi: ^5.2.0 + wrap-ansi: ^5.1.0 + checksum: 0bb8779efe299b8f3002a73619eaa8add4081eb8d1c17bc4fedc6240557fb4eacdc08fe87c39b002eacb6cfc117ce736b362dbfd8bf28d90da800e010ee97df4 + languageName: node + linkType: hard + +"cliui@npm:^6.0.0": + version: 6.0.0 + resolution: "cliui@npm:6.0.0" + dependencies: + string-width: ^4.2.0 + strip-ansi: ^6.0.0 + wrap-ansi: ^6.2.0 + checksum: 4fcfd26d292c9f00238117f39fc797608292ae36bac2168cfee4c85923817d0607fe21b3329a8621e01aedf512c99b7eaa60e363a671ffd378df6649fb48ae42 + languageName: node + linkType: hard + +"cliui@npm:^7.0.2": + version: 7.0.4 + resolution: "cliui@npm:7.0.4" + dependencies: + string-width: ^4.2.0 + strip-ansi: ^6.0.0 + wrap-ansi: ^7.0.0 + checksum: ce2e8f578a4813806788ac399b9e866297740eecd4ad1823c27fd344d78b22c5f8597d548adbcc46f0573e43e21e751f39446c5a5e804a12aace402b7a315d7f + languageName: node + linkType: hard + +"cliui@npm:^8.0.1": + version: 8.0.1 + resolution: "cliui@npm:8.0.1" + dependencies: + string-width: ^4.2.0 + strip-ansi: ^6.0.1 + wrap-ansi: ^7.0.0 + checksum: 79648b3b0045f2e285b76fb2e24e207c6db44323581e421c3acbd0e86454cba1b37aea976ab50195a49e7384b871e6dfb2247ad7dec53c02454ac6497394cb56 + languageName: node + linkType: hard + +"clone-response@npm:^1.0.2": + version: 1.0.3 + resolution: "clone-response@npm:1.0.3" + dependencies: + mimic-response: ^1.0.0 + checksum: 4e671cac39b11c60aa8ba0a450657194a5d6504df51bca3fac5b3bd0145c4f8e8464898f87c8406b83232e3bc5cca555f51c1f9c8ac023969ebfbf7f6bdabb2e + languageName: node + linkType: hard + +"clsx@npm:^2.0.0": + version: 2.0.0 + resolution: "clsx@npm:2.0.0" + checksum: a2cfb2351b254611acf92faa0daf15220f4cd648bdf96ce369d729813b85336993871a4bf6978ddea2b81b5a130478339c20d9d0b5c6fc287e5147f0c059276e + languageName: node + linkType: hard + +"co@npm:^4.6.0": + version: 4.6.0 + resolution: "co@npm:4.6.0" + checksum: 5210d9223010eb95b29df06a91116f2cf7c8e0748a9013ed853b53f362ea0e822f1e5bb054fb3cefc645239a4cf966af1f6133a3b43f40d591f3b68ed6cf0510 + languageName: node + linkType: hard + +"coa@npm:^2.0.2": + version: 2.0.2 + resolution: "coa@npm:2.0.2" + dependencies: + "@types/q": ^1.5.1 + chalk: ^2.4.1 + q: ^1.1.2 + checksum: 44736914aac2160d3d840ed64432a90a3bb72285a0cd6a688eb5cabdf15d15a85eee0915b3f6f2a4659d5075817b1cb577340d3c9cbb47d636d59ab69f819552 + languageName: node + linkType: hard + +"code-point-at@npm:^1.0.0": + version: 1.1.0 + resolution: "code-point-at@npm:1.1.0" + checksum: 17d5666611f9b16d64fdf48176d9b7fb1c7d1c1607a189f7e600040a11a6616982876af148230336adb7d8fe728a559f743a4e29db3747e3b1a32fa7f4529681 + languageName: node + linkType: hard + +"collect-v8-coverage@npm:^1.0.0": + version: 1.0.2 + resolution: "collect-v8-coverage@npm:1.0.2" + checksum: c10f41c39ab84629d16f9f6137bc8a63d332244383fc368caf2d2052b5e04c20cd1fd70f66fcf4e2422b84c8226598b776d39d5f2d2a51867cc1ed5d1982b4da + languageName: node + linkType: hard + +"collection-visit@npm:^1.0.0": + version: 1.0.0 + resolution: "collection-visit@npm:1.0.0" + dependencies: + map-visit: ^1.0.0 + object-visit: ^1.0.0 + checksum: 15d9658fe6eb23594728346adad5433b86bb7a04fd51bbab337755158722f9313a5376ef479de5b35fbc54140764d0d39de89c339f5d25b959ed221466981da9 + languageName: node + linkType: hard + +"color-convert@npm:^1.9.0, color-convert@npm:^1.9.3": + version: 1.9.3 + resolution: "color-convert@npm:1.9.3" + dependencies: + color-name: 1.1.3 + checksum: fd7a64a17cde98fb923b1dd05c5f2e6f7aefda1b60d67e8d449f9328b4e53b228a428fd38bfeaeb2db2ff6b6503a776a996150b80cdf224062af08a5c8a3a203 + languageName: node + linkType: hard + +"color-convert@npm:^2.0.1": + version: 2.0.1 + resolution: "color-convert@npm:2.0.1" + dependencies: + color-name: ~1.1.4 + checksum: 79e6bdb9fd479a205c71d89574fccfb22bd9053bd98c6c4d870d65c132e5e904e6034978e55b43d69fcaa7433af2016ee203ce76eeba9cfa554b373e7f7db336 + languageName: node + linkType: hard + +"color-name@npm:1.1.3": + version: 1.1.3 + resolution: "color-name@npm:1.1.3" + checksum: 09c5d3e33d2105850153b14466501f2bfb30324a2f76568a408763a3b7433b0e50e5b4ab1947868e65cb101bb7cb75029553f2c333b6d4b8138a73fcc133d69d + languageName: node + linkType: hard + +"color-name@npm:^1.0.0, color-name@npm:~1.1.4": + version: 1.1.4 + resolution: "color-name@npm:1.1.4" + checksum: b0445859521eb4021cd0fb0cc1a75cecf67fceecae89b63f62b201cca8d345baf8b952c966862a9d9a2632987d4f6581f0ec8d957dfacece86f0a7919316f610 + languageName: node + linkType: hard + +"color-string@npm:^1.6.0": + version: 1.9.1 + resolution: "color-string@npm:1.9.1" + dependencies: + color-name: ^1.0.0 + simple-swizzle: ^0.2.2 + checksum: c13fe7cff7885f603f49105827d621ce87f4571d78ba28ef4a3f1a104304748f620615e6bf065ecd2145d0d9dad83a3553f52bb25ede7239d18e9f81622f1cc5 + languageName: node + linkType: hard + +"color-support@npm:^1.1.2, color-support@npm:^1.1.3": + version: 1.1.3 + resolution: "color-support@npm:1.1.3" + bin: + color-support: bin.js + checksum: 9b7356817670b9a13a26ca5af1c21615463b500783b739b7634a0c2047c16cef4b2865d7576875c31c3cddf9dd621fa19285e628f20198b233a5cfdda6d0793b + languageName: node + linkType: hard + +"color@npm:^3.0.0": + version: 3.2.1 + resolution: "color@npm:3.2.1" + dependencies: + color-convert: ^1.9.3 + color-string: ^1.6.0 + checksum: f81220e8b774d35865c2561be921f5652117638dcda7ca4029262046e37fc2444ac7bbfdd110cf1fd9c074a4ee5eda8f85944ffbdda26186b602dd9bb05f6400 + languageName: node + linkType: hard + +"colors@npm:1.0.3": + version: 1.0.3 + resolution: "colors@npm:1.0.3" + checksum: 234e8d3ab7e4003851cdd6a1f02eaa16dabc502ee5f4dc576ad7959c64b7477b15bd21177bab4055a4c0a66aa3d919753958030445f87c39a253d73b7a3637f5 + languageName: node + linkType: hard + +"colour@npm:~0.7.1": + version: 0.7.1 + resolution: "colour@npm:0.7.1" + checksum: 1669948efdd0cebca0261476737ccda3ff26f4de789793de604d9f07bf147e2aca21d4ae038cd359d438f39183cf3c50f1b986126509ad30b9d1ad79f75d7199 + languageName: node + linkType: hard + +"combined-stream@npm:^1.0.8": + version: 1.0.8 + resolution: "combined-stream@npm:1.0.8" + dependencies: + delayed-stream: ~1.0.0 + checksum: 49fa4aeb4916567e33ea81d088f6584749fc90c7abec76fd516bf1c5aa5c79f3584b5ba3de6b86d26ddd64bae5329c4c7479343250cfe71c75bb366eae53bb7c + languageName: node + linkType: hard + +"commander@npm:2.9.0": + version: 2.9.0 + resolution: "commander@npm:2.9.0" + dependencies: + graceful-readlink: ">= 1.0.0" + checksum: 37939b6866ae190784fa946ea5b926dfe713731064c746e818642ac59e28f513b54e88e35d8c34b4d24d063cb465977dca2efd2ec974f91e495c743fcb2ae7a2 + languageName: node + linkType: hard + +"commander@npm:^11.0.0": + version: 11.1.0 + resolution: "commander@npm:11.1.0" + checksum: fd1a8557c6b5b622c89ecdfde703242ab7db3b628ea5d1755784c79b8e7cb0d74d65b4a262289b533359cd58e1bfc0bf50245dfbcd2954682a6f367c828b79ef + languageName: node + linkType: hard + +"commander@npm:^2.20.0": + version: 2.20.3 + resolution: "commander@npm:2.20.3" + checksum: ab8c07884e42c3a8dbc5dd9592c606176c7eb5c1ca5ff274bcf907039b2c41de3626f684ea75ccf4d361ba004bbaff1f577d5384c155f3871e456bdf27becf9e + languageName: node + linkType: hard + +"commander@npm:^4.1.1": + version: 4.1.1 + resolution: "commander@npm:4.1.1" + checksum: d7b9913ff92cae20cb577a4ac6fcc121bd6223319e54a40f51a14740a681ad5c574fd29a57da478a5f234a6fa6c52cbf0b7c641353e03c648b1ae85ba670b977 + languageName: node + linkType: hard + +"commander@npm:^5.0.0": + version: 5.1.0 + resolution: "commander@npm:5.1.0" + checksum: 0b7fec1712fbcc6230fcb161d8d73b4730fa91a21dc089515489402ad78810547683f058e2a9835929c212fead1d6a6ade70db28bbb03edbc2829a9ab7d69447 + languageName: node + linkType: hard + +"commander@npm:^6.0.0": + version: 6.2.1 + resolution: "commander@npm:6.2.1" + checksum: d7090410c0de6bc5c67d3ca41c41760d6d268f3c799e530aafb73b7437d1826bbf0d2a3edac33f8b57cc9887b4a986dce307fa5557e109be40eadb7c43b21742 + languageName: node + linkType: hard + +"commander@npm:^7.2.0": + version: 7.2.0 + resolution: "commander@npm:7.2.0" + checksum: 53501cbeee61d5157546c0bef0fedb6cdfc763a882136284bed9a07225f09a14b82d2a84e7637edfd1a679fb35ed9502fd58ef1d091e6287f60d790147f68ddc + languageName: node + linkType: hard + +"common-tags@npm:^1.8.0": + version: 1.8.2 + resolution: "common-tags@npm:1.8.2" + checksum: 767a6255a84bbc47df49a60ab583053bb29a7d9687066a18500a516188a062c4e4cd52de341f22de0b07062e699b1b8fe3cfa1cb55b241cb9301aeb4f45b4dff + languageName: node + linkType: hard + +"commondir@npm:^1.0.1": + version: 1.0.1 + resolution: "commondir@npm:1.0.1" + checksum: 59715f2fc456a73f68826285718503340b9f0dd89bfffc42749906c5cf3d4277ef11ef1cca0350d0e79204f00f1f6d83851ececc9095dc88512a697ac0b9bdcb + languageName: node + linkType: hard + +"compare-version@npm:^0.1.2": + version: 0.1.2 + resolution: "compare-version@npm:0.1.2" + checksum: 0ceaf50b5f912c8eb8eeca19375e617209d200abebd771e9306510166462e6f91ad764f33f210a3058ee27c83f2f001a7a4ca32f509da2d207d0143a3438a020 + languageName: node + linkType: hard + +"component-emitter@npm:^1.2.1": + version: 1.3.0 + resolution: "component-emitter@npm:1.3.0" + checksum: b3c46de38ffd35c57d1c02488355be9f218e582aec72d72d1b8bbec95a3ac1b38c96cd6e03ff015577e68f550fbb361a3bfdbd9bb248be9390b7b3745691be6b + languageName: node + linkType: hard + +"compose-function@npm:3.0.3": + version: 3.0.3 + resolution: "compose-function@npm:3.0.3" + dependencies: + arity-n: ^1.0.4 + checksum: 9f17d431e3ee4797c844f2870e13494079882ac3dbc54c143b7d99967b371908e0ce7ceb71c6aed61e2ecddbcd7bb437d91428a3d0e6569aee17a87fcbc7918f + languageName: node + linkType: hard + +"compressible@npm:~2.0.16": + version: 2.0.18 + resolution: "compressible@npm:2.0.18" + dependencies: + mime-db: ">= 1.43.0 < 2" + checksum: 58321a85b375d39230405654721353f709d0c1442129e9a17081771b816302a012471a9b8f4864c7dbe02eef7f2aaac3c614795197092262e94b409c9be108f0 + languageName: node + linkType: hard + +"compression@npm:^1.7.4": + version: 1.7.4 + resolution: "compression@npm:1.7.4" + dependencies: + accepts: ~1.3.5 + bytes: 3.0.0 + compressible: ~2.0.16 + debug: 2.6.9 + on-headers: ~1.0.2 + safe-buffer: 5.1.2 + vary: ~1.1.2 + checksum: 35c0f2eb1f28418978615dc1bc02075b34b1568f7f56c62d60f4214d4b7cc00d0f6d282b5f8a954f59872396bd770b6b15ffd8aa94c67d4bce9b8887b906999b + languageName: node + linkType: hard + +"concat-map@npm:0.0.1": + version: 0.0.1 + resolution: "concat-map@npm:0.0.1" + checksum: 902a9f5d8967a3e2faf138d5cb784b9979bad2e6db5357c5b21c568df4ebe62bcb15108af1b2253744844eb964fc023fbd9afbbbb6ddd0bcc204c6fb5b7bf3af + languageName: node + linkType: hard + +"concat-stream@npm:^1.5.0, concat-stream@npm:^1.6.2": + version: 1.6.2 + resolution: "concat-stream@npm:1.6.2" + dependencies: + buffer-from: ^1.0.0 + inherits: ^2.0.3 + readable-stream: ^2.2.2 + typedarray: ^0.0.6 + checksum: 1ef77032cb4459dcd5187bd710d6fc962b067b64ec6a505810de3d2b8cc0605638551b42f8ec91edf6fcd26141b32ef19ad749239b58fae3aba99187adc32285 + languageName: node + linkType: hard + +"concurrently@npm:^6.4.0": + version: 6.5.1 + resolution: "concurrently@npm:6.5.1" + dependencies: + chalk: ^4.1.0 + date-fns: ^2.16.1 + lodash: ^4.17.21 + rxjs: ^6.6.3 + spawn-command: ^0.0.2-1 + supports-color: ^8.1.0 + tree-kill: ^1.2.2 + yargs: ^16.2.0 + bin: + concurrently: bin/concurrently.js + checksum: 3f4d89b464fa5c9fb6f9489b46594c30ba54eff6ff10ab3cb5f30f64b74c83be664623a0f0cc731a3cb3f057a1f4a3292f7d3470c012a292c44aca31f214a3fa + languageName: node + linkType: hard + +"config-chain@npm:^1.1.11": + version: 1.1.13 + resolution: "config-chain@npm:1.1.13" + dependencies: + ini: ^1.3.4 + proto-list: ~1.2.1 + checksum: 828137a28e7c2fc4b7fb229bd0cd6c1397bcf83434de54347e608154008f411749041ee392cbe42fab6307e02de4c12480260bf769b7d44b778fdea3839eafab + languageName: node + linkType: hard + +"configstore@npm:^5.0.1": + version: 5.0.1 + resolution: "configstore@npm:5.0.1" + dependencies: + dot-prop: ^5.2.0 + graceful-fs: ^4.1.2 + make-dir: ^3.0.0 + unique-string: ^2.0.0 + write-file-atomic: ^3.0.0 + xdg-basedir: ^4.0.0 + checksum: 60ef65d493b63f96e14b11ba7ec072fdbf3d40110a94fb7199d1c287761bdea5c5244e76b2596325f30c1b652213aa75de96ea20afd4a5f82065e61ea090988e + languageName: node + linkType: hard + +"confusing-browser-globals@npm:^1.0.10": + version: 1.0.11 + resolution: "confusing-browser-globals@npm:1.0.11" + checksum: 3afc635abd37e566477f610e7978b15753f0e84025c25d49236f1f14d480117185516bdd40d2a2167e6bed8048641a9854964b9c067e3dcdfa6b5d0ad3c3a5ef + languageName: node + linkType: hard + +"connect-history-api-fallback@npm:^1.6.0": + version: 1.6.0 + resolution: "connect-history-api-fallback@npm:1.6.0" + checksum: 804ca2be28c999032ecd37a9f71405e5d7b7a4b3defcebbe41077bb8c5a0a150d7b59f51dcc33b2de30bc7e217a31d10f8cfad27e8e74c2fc7655eeba82d6e7e + languageName: node + linkType: hard + +"console-browserify@npm:^1.1.0": + version: 1.2.0 + resolution: "console-browserify@npm:1.2.0" + checksum: 226591eeff8ed68e451dffb924c1fb750c654d54b9059b3b261d360f369d1f8f70650adecf2c7136656236a4bfeb55c39281b5d8a55d792ebbb99efd3d848d52 + languageName: node + linkType: hard + +"console-control-strings@npm:^1.0.0, console-control-strings@npm:^1.1.0": + version: 1.1.0 + resolution: "console-control-strings@npm:1.1.0" + checksum: 8755d76787f94e6cf79ce4666f0c5519906d7f5b02d4b884cf41e11dcd759ed69c57da0670afd9236d229a46e0f9cf519db0cd829c6dca820bb5a5c3def584ed + languageName: node + linkType: hard + +"constants-browserify@npm:^1.0.0": + version: 1.0.0 + resolution: "constants-browserify@npm:1.0.0" + checksum: f7ac8c6d0b6e4e0c77340a1d47a3574e25abd580bfd99ad707b26ff7618596cf1a5e5ce9caf44715e9e01d4a5d12cb3b4edaf1176f34c19adb2874815a56e64f + languageName: node + linkType: hard + +"content-disposition@npm:0.5.4": + version: 0.5.4 + resolution: "content-disposition@npm:0.5.4" + dependencies: + safe-buffer: 5.2.1 + checksum: afb9d545e296a5171d7574fcad634b2fdf698875f4006a9dd04a3e1333880c5c0c98d47b560d01216fb6505a54a2ba6a843ee3a02ec86d7e911e8315255f56c3 + languageName: node + linkType: hard + +"content-type@npm:~1.0.4": + version: 1.0.5 + resolution: "content-type@npm:1.0.5" + checksum: 566271e0a251642254cde0f845f9dd4f9856e52d988f4eb0d0dcffbb7a1f8ec98de7a5215fc628f3bce30fe2fb6fd2bc064b562d721658c59b544e2d34ea2766 + languageName: node + linkType: hard + +"convert-source-map@npm:1.7.0": + version: 1.7.0 + resolution: "convert-source-map@npm:1.7.0" + dependencies: + safe-buffer: ~5.1.1 + checksum: bcd2e3ea7d37f96b85a6e362c8a89402ccc73757256e3ee53aa2c22fe915adb854c66b1f81111be815a3a6a6ce3c58e8001858e883c9d5b4fe08a853fa865967 + languageName: node + linkType: hard + +"convert-source-map@npm:^0.3.3": + version: 0.3.5 + resolution: "convert-source-map@npm:0.3.5" + checksum: 33b209aa8f33bcaa9a22f2dbf6bfb71f4a429d8e948068d61b6087304e3194c30016d1e02e842184e653b74442c7e2dd2e7db97532b67f556aded3d8b4377a2c + languageName: node + linkType: hard + +"convert-source-map@npm:^1.4.0, convert-source-map@npm:^1.5.0, convert-source-map@npm:^1.6.0, convert-source-map@npm:^1.7.0": + version: 1.9.0 + resolution: "convert-source-map@npm:1.9.0" + checksum: dc55a1f28ddd0e9485ef13565f8f756b342f9a46c4ae18b843fe3c30c675d058d6a4823eff86d472f187b176f0adf51ea7b69ea38be34be4a63cbbf91b0593c8 + languageName: node + linkType: hard + +"convert-source-map@npm:^2.0.0": + version: 2.0.0 + resolution: "convert-source-map@npm:2.0.0" + checksum: 63ae9933be5a2b8d4509daca5124e20c14d023c820258e484e32dc324d34c2754e71297c94a05784064ad27615037ef677e3f0c00469fb55f409d2bb21261035 + languageName: node + linkType: hard + +"cookie-signature@npm:1.0.6": + version: 1.0.6 + resolution: "cookie-signature@npm:1.0.6" + checksum: f4e1b0a98a27a0e6e66fd7ea4e4e9d8e038f624058371bf4499cfcd8f3980be9a121486995202ba3fca74fbed93a407d6d54d43a43f96fd28d0bd7a06761591a + languageName: node + linkType: hard + +"cookie@npm:0.5.0": + version: 0.5.0 + resolution: "cookie@npm:0.5.0" + checksum: 1f4bd2ca5765f8c9689a7e8954183f5332139eb72b6ff783d8947032ec1fdf43109852c178e21a953a30c0dd42257828185be01b49d1eb1a67fd054ca588a180 + languageName: node + linkType: hard + +"copy-concurrently@npm:^1.0.0": + version: 1.0.5 + resolution: "copy-concurrently@npm:1.0.5" + dependencies: + aproba: ^1.1.1 + fs-write-stream-atomic: ^1.0.8 + iferr: ^0.1.5 + mkdirp: ^0.5.1 + rimraf: ^2.5.4 + run-queue: ^1.0.0 + checksum: 63c169f582e09445260988f697b2d07793d439dfc31e97c8999707bd188dd94d1c7f2ca3533c7786fb75f03a3f2f54ad1ee08055f95f61bb8d2e862498c1d460 + languageName: node + linkType: hard + +"copy-descriptor@npm:^0.1.0": + version: 0.1.1 + resolution: "copy-descriptor@npm:0.1.1" + checksum: d4b7b57b14f1d256bb9aa0b479241048afd7f5bcf22035fc7b94e8af757adeae247ea23c1a774fe44869fd5694efba4a969b88d966766c5245fdee59837fe45b + languageName: node + linkType: hard + +"core-js-compat@npm:^3.31.0, core-js-compat@npm:^3.32.2": + version: 3.33.1 + resolution: "core-js-compat@npm:3.33.1" + dependencies: + browserslist: ^4.22.1 + checksum: 39329daf135a3d8fdd86cf61d4fb2e868d1d9a60308cd98fccd0296d5e40b040c107e9aaa8a87163d8c058c69fbd441bc0a7a035aebd2d0978275bd0b257df15 + languageName: node + linkType: hard + +"core-js-pure@npm:^3.30.2": + version: 3.33.1 + resolution: "core-js-pure@npm:3.33.1" + checksum: 8accbdf5449b5e8c368a0a3569f281ef6ad3369c023766fe4f4cd8336af671852f0fa123a0172cd47b193b7d522d72eb01bd0c5c1620f0bac21150a91c2f72a1 + languageName: node + linkType: hard + +"core-js@npm:3.6.5": + version: 3.6.5 + resolution: "core-js@npm:3.6.5" + checksum: b7fcf92f888bfe40f3f005e3f729e66aa49a3a9a797e8fb4d09d429c6abcd505781b2c03836858f0dc0159249d4b7a035fc763052c9c34adbc93b6f8a6a86305 + languageName: node + linkType: hard + +"core-js@npm:^2.4.0": + version: 2.6.12 + resolution: "core-js@npm:2.6.12" + checksum: 44fa9934a85f8c78d61e0c8b7b22436330471ffe59ec5076fe7f324d6e8cf7f824b14b1c81ca73608b13bdb0fef035bd820989bf059767ad6fa13123bb8bd016 + languageName: node + linkType: hard + +"core-js@npm:^3.19.2, core-js@npm:^3.6.5": + version: 3.33.1 + resolution: "core-js@npm:3.33.1" + checksum: 3a95003b0e77995203587117f3bde7f4e96adf434b6b78033dbe60347ffe38b2bac31eafab6a4cc641e5766062846b52f336ab4553fc0902c278959af4778e53 + languageName: node + linkType: hard + +"core-util-is@npm:1.0.2": + version: 1.0.2 + resolution: "core-util-is@npm:1.0.2" + checksum: 7a4c925b497a2c91421e25bf76d6d8190f0b2359a9200dbeed136e63b2931d6294d3b1893eda378883ed363cd950f44a12a401384c609839ea616befb7927dab + languageName: node + linkType: hard + +"core-util-is@npm:~1.0.0": + version: 1.0.3 + resolution: "core-util-is@npm:1.0.3" + checksum: 9de8597363a8e9b9952491ebe18167e3b36e7707569eed0ebf14f8bba773611376466ae34575bca8cfe3c767890c859c74056084738f09d4e4a6f902b2ad7d99 + languageName: node + linkType: hard + +"cosmiconfig@npm:^5.0.0": + version: 5.2.1 + resolution: "cosmiconfig@npm:5.2.1" + dependencies: + import-fresh: ^2.0.0 + is-directory: ^0.3.1 + js-yaml: ^3.13.1 + parse-json: ^4.0.0 + checksum: 8b6f1d3c8a5ffdf663a952f17af0761adf210b7a5933d0fe8988f3ca3a1f0e1e5cbbb74d5b419c15933dd2fdcaec31dbc5cc85cb8259a822342b93b529eff89c + languageName: node + linkType: hard + +"cosmiconfig@npm:^7.0.0": + version: 7.1.0 + resolution: "cosmiconfig@npm:7.1.0" + dependencies: + "@types/parse-json": ^4.0.0 + import-fresh: ^3.2.1 + parse-json: ^5.0.0 + path-type: ^4.0.0 + yaml: ^1.10.0 + checksum: c53bf7befc1591b2651a22414a5e786cd5f2eeaa87f3678a3d49d6069835a9d8d1aef223728e98aa8fec9a95bf831120d245096db12abe019fecb51f5696c96f + languageName: node + linkType: hard + +"crc@npm:^3.8.0": + version: 3.8.0 + resolution: "crc@npm:3.8.0" + dependencies: + buffer: ^5.1.0 + checksum: dabbc4eba223b206068b92ca82bb471d583eb6be2384a87f5c3712730cfd6ba4b13a45e8ba3ef62174d5a781a2c5ac5c20bf36cf37bba73926899bd0aa19186f + languageName: node + linkType: hard + +"create-ecdh@npm:^4.0.0": + version: 4.0.4 + resolution: "create-ecdh@npm:4.0.4" + dependencies: + bn.js: ^4.1.0 + elliptic: ^6.5.3 + checksum: 0dd7fca9711d09e152375b79acf1e3f306d1a25ba87b8ff14c2fd8e68b83aafe0a7dd6c4e540c9ffbdd227a5fa1ad9b81eca1f233c38bb47770597ba247e614b + languageName: node + linkType: hard + +"create-hash@npm:^1.1.0, create-hash@npm:^1.1.2, create-hash@npm:^1.2.0": + version: 1.2.0 + resolution: "create-hash@npm:1.2.0" + dependencies: + cipher-base: ^1.0.1 + inherits: ^2.0.1 + md5.js: ^1.3.4 + ripemd160: ^2.0.1 + sha.js: ^2.4.0 + checksum: 02a6ae3bb9cd4afee3fabd846c1d8426a0e6b495560a977ba46120c473cb283be6aa1cace76b5f927cf4e499c6146fb798253e48e83d522feba807d6b722eaa9 + languageName: node + linkType: hard + +"create-hmac@npm:^1.1.0, create-hmac@npm:^1.1.4, create-hmac@npm:^1.1.7": + version: 1.1.7 + resolution: "create-hmac@npm:1.1.7" + dependencies: + cipher-base: ^1.0.3 + create-hash: ^1.1.0 + inherits: ^2.0.1 + ripemd160: ^2.0.0 + safe-buffer: ^5.0.1 + sha.js: ^2.4.8 + checksum: ba12bb2257b585a0396108c72830e85f882ab659c3320c83584b1037f8ab72415095167ced80dc4ce8e446a8ecc4b2acf36d87befe0707d73b26cf9dc77440ed + languageName: node + linkType: hard + +"cross-env@npm:^7.0.3": + version: 7.0.3 + resolution: "cross-env@npm:7.0.3" + dependencies: + cross-spawn: ^7.0.1 + bin: + cross-env: src/bin/cross-env.js + cross-env-shell: src/bin/cross-env-shell.js + checksum: 26f2f3ea2ab32617f57effb70d329c2070d2f5630adc800985d8b30b56e8bf7f5f439dd3a0358b79cee6f930afc23cf8e23515f17ccfb30092c6b62c6b630a79 + languageName: node + linkType: hard + +"cross-spawn@npm:7.0.3, cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.1, cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3": + version: 7.0.3 + resolution: "cross-spawn@npm:7.0.3" + dependencies: + path-key: ^3.1.0 + shebang-command: ^2.0.0 + which: ^2.0.1 + checksum: 671cc7c7288c3a8406f3c69a3ae2fc85555c04169e9d611def9a675635472614f1c0ed0ef80955d5b6d4e724f6ced67f0ad1bb006c2ea643488fcfef994d7f52 + languageName: node + linkType: hard + +"cross-spawn@npm:^6.0.0": + version: 6.0.5 + resolution: "cross-spawn@npm:6.0.5" + dependencies: + nice-try: ^1.0.4 + path-key: ^2.0.1 + semver: ^5.5.0 + shebang-command: ^1.2.0 + which: ^1.2.9 + checksum: f893bb0d96cd3d5751d04e67145bdddf25f99449531a72e82dcbbd42796bbc8268c1076c6b3ea51d4d455839902804b94bc45dfb37ecbb32ea8e54a6741c3ab9 + languageName: node + linkType: hard + +"crypto-browserify@npm:^3.11.0": + version: 3.12.0 + resolution: "crypto-browserify@npm:3.12.0" + dependencies: + browserify-cipher: ^1.0.0 + browserify-sign: ^4.0.0 + create-ecdh: ^4.0.0 + create-hash: ^1.1.0 + create-hmac: ^1.1.0 + diffie-hellman: ^5.0.0 + inherits: ^2.0.1 + pbkdf2: ^3.0.3 + public-encrypt: ^4.0.0 + randombytes: ^2.0.0 + randomfill: ^1.0.3 + checksum: c1609af82605474262f3eaa07daa0b2140026bd264ab316d4bf1170272570dbe02f0c49e29407fe0d3634f96c507c27a19a6765fb856fed854a625f9d15618e2 + languageName: node + linkType: hard + +"crypto-random-string@npm:^1.0.0": + version: 1.0.0 + resolution: "crypto-random-string@npm:1.0.0" + checksum: 6fc61a46c18547b49a93da24f4559c4a1c859f4ee730ecc9533c1ba89fa2a9e9d81f390c2789467afbbd0d1c55a6e96a71e4716b6cd3e77736ed5fced7a2df9a + languageName: node + linkType: hard + +"crypto-random-string@npm:^2.0.0": + version: 2.0.0 + resolution: "crypto-random-string@npm:2.0.0" + checksum: 0283879f55e7c16fdceacc181f87a0a65c53bc16ffe1d58b9d19a6277adcd71900d02bb2c4843dd55e78c51e30e89b0fec618a7f170ebcc95b33182c28f05fd6 + languageName: node + linkType: hard + +"css-blank-pseudo@npm:^0.1.4": + version: 0.1.4 + resolution: "css-blank-pseudo@npm:0.1.4" + dependencies: + postcss: ^7.0.5 + bin: + css-blank-pseudo: cli.js + checksum: f995a6ca5dbb867af4b30c3dc872a8f0b27ad120442c34796eef7f9c4dcf014249522aaa0a2da3c101c4afa5d7d376436bb978ae1b2c02deddec283fad30c998 + languageName: node + linkType: hard + +"css-color-names@npm:0.0.4, css-color-names@npm:^0.0.4": + version: 0.0.4 + resolution: "css-color-names@npm:0.0.4" + checksum: 9c6106320430a9da3a13daab8d8b4def39113edbfb68042444585d9a214af5fd5cb384b9be45124bc75f88261d461b517e00e278f4d2e0ab5a619b182f9f0e2d + languageName: node + linkType: hard + +"css-declaration-sorter@npm:^4.0.1": + version: 4.0.1 + resolution: "css-declaration-sorter@npm:4.0.1" + dependencies: + postcss: ^7.0.1 + timsort: ^0.3.0 + checksum: c38c00245c6706bd1127a6a2807bbdea3a2621c1f4e4bcb4710f6736c15c4ec414e02213adeab2171623351616090cb96374f683b90ec2aad18903066c4526d7 + languageName: node + linkType: hard + +"css-has-pseudo@npm:^0.10.0": + version: 0.10.0 + resolution: "css-has-pseudo@npm:0.10.0" + dependencies: + postcss: ^7.0.6 + postcss-selector-parser: ^5.0.0-rc.4 + bin: + css-has-pseudo: cli.js + checksum: 88d891ba18f821e8a94d821ecdd723c606019462664c7d86e7d8731622bd26f9d55582e494bcc2a62f9399cc7b89049ddc8a9d1e8f1bf1a133c2427739d2d334 + languageName: node + linkType: hard + +"css-loader@npm:4.3.0": + version: 4.3.0 + resolution: "css-loader@npm:4.3.0" + dependencies: + camelcase: ^6.0.0 + cssesc: ^3.0.0 + icss-utils: ^4.1.1 + loader-utils: ^2.0.0 + postcss: ^7.0.32 + postcss-modules-extract-imports: ^2.0.0 + postcss-modules-local-by-default: ^3.0.3 + postcss-modules-scope: ^2.2.0 + postcss-modules-values: ^3.0.0 + postcss-value-parser: ^4.1.0 + schema-utils: ^2.7.1 + semver: ^7.3.2 + peerDependencies: + webpack: ^4.27.0 || ^5.0.0 + checksum: 697a8838f0975f86c634e7a920572604879a9738128fcc01e5393fae5ac9a7a1a925c0d14ebb6ed67fa7e14bd17849eec152a99e3299cc92f422f6b0cd4eff73 + languageName: node + linkType: hard + +"css-mediaquery@npm:^0.1.2": + version: 0.1.2 + resolution: "css-mediaquery@npm:0.1.2" + checksum: 8e26ae52d8aaaa71893f82fc485363ff0fab494b7d3b3464572aaed50714b8b538d33dbdaa69f0c02cf7f80d1f4d9a77519306c0492223ce91b3987475031a69 + languageName: node + linkType: hard + +"css-prefers-color-scheme@npm:^3.1.1": + version: 3.1.1 + resolution: "css-prefers-color-scheme@npm:3.1.1" + dependencies: + postcss: ^7.0.5 + bin: + css-prefers-color-scheme: cli.js + checksum: ba69a86b006818ffe3548bcbeb5e4e8139b8b6cf45815a3b3dddd12cd9acf3d8ac3b94e63fe0abd34e0683cf43ed8c2344e3bd472bbf02a6eb40c7bbf565d587 + languageName: node + linkType: hard + +"css-select-base-adapter@npm:^0.1.1": + version: 0.1.1 + resolution: "css-select-base-adapter@npm:0.1.1" + checksum: c107e9cfa53a23427e4537451a67358375e656baa3322345a982d3c2751fb3904002aae7e5d72386c59f766fe6b109d1ffb43eeab1c16f069f7a3828eb17851c + languageName: node + linkType: hard + +"css-select@npm:^2.0.0": + version: 2.1.0 + resolution: "css-select@npm:2.1.0" + dependencies: + boolbase: ^1.0.0 + css-what: ^3.2.1 + domutils: ^1.7.0 + nth-check: ^1.0.2 + checksum: 0c4099910f2411e2a9103cf92ea6a4ad738b57da75bcf73d39ef2c14a00ef36e5f16cb863211c901320618b24ace74da6333442d82995cafd5040077307de462 + languageName: node + linkType: hard + +"css-select@npm:^4.1.3": + version: 4.3.0 + resolution: "css-select@npm:4.3.0" + dependencies: + boolbase: ^1.0.0 + css-what: ^6.0.1 + domhandler: ^4.3.1 + domutils: ^2.8.0 + nth-check: ^2.0.1 + checksum: d6202736839194dd7f910320032e7cfc40372f025e4bf21ca5bf6eb0a33264f322f50ba9c0adc35dadd342d3d6fae5ca244779a4873afbfa76561e343f2058e0 + languageName: node + linkType: hard + +"css-tree@npm:1.0.0-alpha.37": + version: 1.0.0-alpha.37 + resolution: "css-tree@npm:1.0.0-alpha.37" + dependencies: + mdn-data: 2.0.4 + source-map: ^0.6.1 + checksum: 0e419a1388ec0fbbe92885fba4a557f9fb0e077a2a1fad629b7245bbf7b4ef5df49e6877401b952b09b9057ffe1a3dba74f6fdfbf7b2223a5a35bce27ff2307d + languageName: node + linkType: hard + +"css-tree@npm:^1.1.2, css-tree@npm:^1.1.3": + version: 1.1.3 + resolution: "css-tree@npm:1.1.3" + dependencies: + mdn-data: 2.0.14 + source-map: ^0.6.1 + checksum: 79f9b81803991b6977b7fcb1588799270438274d89066ce08f117f5cdb5e20019b446d766c61506dd772c839df84caa16042d6076f20c97187f5abe3b50e7d1f + languageName: node + linkType: hard + +"css-vendor@npm:^2.0.8": + version: 2.0.8 + resolution: "css-vendor@npm:2.0.8" + dependencies: + "@babel/runtime": ^7.8.3 + is-in-browser: ^1.0.2 + checksum: 647cd4ea5e401c65c59376255aa2b708e92bf84fba9ce2b3ff5ecb94bf51d74ac374052b1cf9956ef7419b8ebf07fcea9a7683d2d2459127b2ca747ab5b98745 + languageName: node + linkType: hard + +"css-what@npm:^3.2.1": + version: 3.4.2 + resolution: "css-what@npm:3.4.2" + checksum: 26bb5ec3ae718393d418016365c849fa14bd0de408c735dea3ddf58146b6cc54f3b336fb4afd31d95c06ca79583acbcdfec7ee93d31ff5c1a697df135b38dfeb + languageName: node + linkType: hard + +"css-what@npm:^6.0.1": + version: 6.1.0 + resolution: "css-what@npm:6.1.0" + checksum: b975e547e1e90b79625918f84e67db5d33d896e6de846c9b584094e529f0c63e2ab85ee33b9daffd05bff3a146a1916bec664e18bb76dd5f66cbff9fc13b2bbe + languageName: node + linkType: hard + +"css.escape@npm:^1.5.1": + version: 1.5.1 + resolution: "css.escape@npm:1.5.1" + checksum: f6d38088d870a961794a2580b2b2af1027731bb43261cfdce14f19238a88664b351cc8978abc20f06cc6bbde725699dec8deb6fe9816b139fc3f2af28719e774 + languageName: node + linkType: hard + +"css@npm:^2.0.0": + version: 2.2.4 + resolution: "css@npm:2.2.4" + dependencies: + inherits: ^2.0.3 + source-map: ^0.6.1 + source-map-resolve: ^0.5.2 + urix: ^0.1.0 + checksum: a35d483c5ccc04bcde3b1e7393d58ad3eee1dd6956df0f152de38e46a17c0ee193c30eec6b1e59831ad0e74599385732000e95987fcc9cb2b16c6d951bae49e1 + languageName: node + linkType: hard + +"cssdb@npm:^4.4.0": + version: 4.4.0 + resolution: "cssdb@npm:4.4.0" + checksum: 521dd2135da1ab93612a4161eb1024cfc7b155a35d95f9867d328cc88ad57fdd959aa88ea8f4e6cea3a82bca91b76570dc1abb18bfd902c6889973956a03e497 + languageName: node + linkType: hard + +"cssesc@npm:^2.0.0": + version: 2.0.0 + resolution: "cssesc@npm:2.0.0" + bin: + cssesc: bin/cssesc + checksum: 5e50886c2aca3f492fe808dbd146d30eb1c6f31fbe6093979a8376e39d171d989279199f6f3f1a42464109e082e0e42bc33eeff9467fb69bf346f5ba5853c3c6 + languageName: node + linkType: hard + +"cssesc@npm:^3.0.0": + version: 3.0.0 + resolution: "cssesc@npm:3.0.0" + bin: + cssesc: bin/cssesc + checksum: f8c4ababffbc5e2ddf2fa9957dda1ee4af6048e22aeda1869d0d00843223c1b13ad3f5d88b51caa46c994225eacb636b764eb807a8883e2fb6f99b4f4e8c48b2 + languageName: node + linkType: hard + +"cssnano-preset-default@npm:^4.0.8": + version: 4.0.8 + resolution: "cssnano-preset-default@npm:4.0.8" + dependencies: + css-declaration-sorter: ^4.0.1 + cssnano-util-raw-cache: ^4.0.1 + postcss: ^7.0.0 + postcss-calc: ^7.0.1 + postcss-colormin: ^4.0.3 + postcss-convert-values: ^4.0.1 + postcss-discard-comments: ^4.0.2 + postcss-discard-duplicates: ^4.0.2 + postcss-discard-empty: ^4.0.1 + postcss-discard-overridden: ^4.0.1 + postcss-merge-longhand: ^4.0.11 + postcss-merge-rules: ^4.0.3 + postcss-minify-font-values: ^4.0.2 + postcss-minify-gradients: ^4.0.2 + postcss-minify-params: ^4.0.2 + postcss-minify-selectors: ^4.0.2 + postcss-normalize-charset: ^4.0.1 + postcss-normalize-display-values: ^4.0.2 + postcss-normalize-positions: ^4.0.2 + postcss-normalize-repeat-style: ^4.0.2 + postcss-normalize-string: ^4.0.2 + postcss-normalize-timing-functions: ^4.0.2 + postcss-normalize-unicode: ^4.0.1 + postcss-normalize-url: ^4.0.1 + postcss-normalize-whitespace: ^4.0.2 + postcss-ordered-values: ^4.1.2 + postcss-reduce-initial: ^4.0.3 + postcss-reduce-transforms: ^4.0.2 + postcss-svgo: ^4.0.3 + postcss-unique-selectors: ^4.0.1 + checksum: eb32c9fdd8bd4683e33d62284b6a9c4eb705b745235f4bb51a5571e1eb6738f636958fc9a6218fb51de43e0e2f74386a705b4c7ff2d1dcc611647953ba6ce159 + languageName: node + linkType: hard + +"cssnano-util-get-arguments@npm:^4.0.0": + version: 4.0.0 + resolution: "cssnano-util-get-arguments@npm:4.0.0" + checksum: 34222a1e848d573b74892eda7d7560c5422efa56f87d2b5242f9791593c6aa4ddc9d55e8e1708fb2f0d6f87c456314b78d93d3eec97d946ff756c63b09b72222 + languageName: node + linkType: hard + +"cssnano-util-get-match@npm:^4.0.0": + version: 4.0.0 + resolution: "cssnano-util-get-match@npm:4.0.0" + checksum: 56eacea0eb3d923359c9714ab25edde5eb4859e495954615d5529e81cdfabc2d41b57055c7f6a2f08e7d89df3a2794ef659306b539505d7f4e7202b897396fc2 + languageName: node + linkType: hard + +"cssnano-util-raw-cache@npm:^4.0.1": + version: 4.0.1 + resolution: "cssnano-util-raw-cache@npm:4.0.1" + dependencies: + postcss: ^7.0.0 + checksum: 66a23e5e5255ff65d0f49f135d0ddfdb96433aeceb2708a31e4b4a652110755f103f6c91e0f439c8f3052818eb2b04ebf6334680a810296290e2c3467c14202b + languageName: node + linkType: hard + +"cssnano-util-same-parent@npm:^4.0.0": + version: 4.0.1 + resolution: "cssnano-util-same-parent@npm:4.0.1" + checksum: 97c6b3f670ee9d1d6342b6a1daf9867d5c08644365dc146bd76defd356069112148e382ca86fc3e6c55adf0687974f03535bba34df95efb468b266d2319c7b66 + languageName: node + linkType: hard + +"cssnano@npm:^4.1.10": + version: 4.1.11 + resolution: "cssnano@npm:4.1.11" + dependencies: + cosmiconfig: ^5.0.0 + cssnano-preset-default: ^4.0.8 + is-resolvable: ^1.0.0 + postcss: ^7.0.0 + checksum: 2453fbe9f9f9e2ffe87dc5c718578f1b801fc7b82eaad12f5564c84bb0faf1774ea52e01874ecd29d1782aa7d0d84f0dbc95001eed9866ebd9bc523638999c9b + languageName: node + linkType: hard + +"csso@npm:^4.0.2, csso@npm:^4.2.0": + version: 4.2.0 + resolution: "csso@npm:4.2.0" + dependencies: + css-tree: ^1.1.2 + checksum: 380ba9663da3bcea58dee358a0d8c4468bb6539be3c439dc266ac41c047217f52fd698fb7e4b6b6ccdfb8cf53ef4ceed8cc8ceccb8dfca2aa628319826b5b998 + languageName: node + linkType: hard + +"cssom@npm:^0.4.4": + version: 0.4.4 + resolution: "cssom@npm:0.4.4" + checksum: e3bc1076e7ee4213d4fef05e7ae03bfa83dc05f32611d8edc341f4ecc3d9647b89c8245474c7dd2cdcdb797a27c462e99da7ad00a34399694559f763478ff53f + languageName: node + linkType: hard + +"cssom@npm:~0.3.6": + version: 0.3.8 + resolution: "cssom@npm:0.3.8" + checksum: 24beb3087c76c0d52dd458be9ee1fbc80ac771478a9baef35dd258cdeb527c68eb43204dd439692bb2b1ae5272fa5f2946d10946edab0d04f1078f85e06bc7f6 + languageName: node + linkType: hard + +"cssstyle@npm:^2.3.0": + version: 2.3.0 + resolution: "cssstyle@npm:2.3.0" + dependencies: + cssom: ~0.3.6 + checksum: 5f05e6fd2e3df0b44695c2f08b9ef38b011862b274e320665176467c0725e44a53e341bc4959a41176e83b66064ab786262e7380fd1cabeae6efee0d255bb4e3 + languageName: node + linkType: hard + +"csstype@npm:^3.0.2, csstype@npm:^3.1.2": + version: 3.1.2 + resolution: "csstype@npm:3.1.2" + checksum: e1a52e6c25c1314d6beef5168da704ab29c5186b877c07d822bd0806717d9a265e8493a2e35ca7e68d0f5d472d43fac1cdce70fd79fd0853dff81f3028d857b5 + languageName: node + linkType: hard + +"cyclist@npm:^1.0.1": + version: 1.0.2 + resolution: "cyclist@npm:1.0.2" + checksum: d7c0336565b9b72ee72347831cbd05fadcc59cc9ab89dcf38293b1a64c2c5fb777c9ce44967390dabe8235f9898f5cb222cd6672f4920b757da8861310082716 + languageName: node + linkType: hard + +"d@npm:1, d@npm:^1.0.1": + version: 1.0.1 + resolution: "d@npm:1.0.1" + dependencies: + es5-ext: ^0.10.50 + type: ^1.0.1 + checksum: 49ca0639c7b822db670de93d4fbce44b4aa072cd848c76292c9978a8cd0fff1028763020ff4b0f147bd77bfe29b4c7f82e0f71ade76b2a06100543cdfd948d19 + languageName: node + linkType: hard + +"damerau-levenshtein@npm:^1.0.8": + version: 1.0.8 + resolution: "damerau-levenshtein@npm:1.0.8" + checksum: d240b7757544460ae0586a341a53110ab0a61126570ef2d8c731e3eab3f0cb6e488e2609e6a69b46727635de49be20b071688698744417ff1b6c1d7ccd03e0de + languageName: node + linkType: hard + +"data-urls@npm:^2.0.0": + version: 2.0.0 + resolution: "data-urls@npm:2.0.0" + dependencies: + abab: ^2.0.3 + whatwg-mimetype: ^2.3.0 + whatwg-url: ^8.0.0 + checksum: 97caf828aac25e25e04ba6869db0f99c75e6859bb5b424ada28d3e7841941ebf08ddff3c1b1bb4585986bd507a5d54c2a716853ea6cb98af877400e637393e71 + languageName: node + linkType: hard + +"date-fns@npm:^2.16.1": + version: 2.30.0 + resolution: "date-fns@npm:2.30.0" + dependencies: + "@babel/runtime": ^7.21.0 + checksum: f7be01523282e9bb06c0cd2693d34f245247a29098527d4420628966a2d9aad154bd0e90a6b1cf66d37adcb769cd108cf8a7bd49d76db0fb119af5cdd13644f4 + languageName: node + linkType: hard + +"debaters-toolkit@workspace:.": + version: 0.0.0-use.local + resolution: "debaters-toolkit@workspace:." + dependencies: + "@capacitor/android": ^3.3.3 + "@capacitor/cli": ^3.3.3 + "@capacitor/core": ^3.3.3 + "@mui/icons-material": ^5.2.4 + "@mui/lab": ^5.0.0-alpha.60 + "@mui/material": ^5.2.4 + "@mui/styles": ^5.2.3 + "@testing-library/jest-dom": ^5.14.1 + "@testing-library/react": ^11.2.7 + "@testing-library/user-event": ^12.8.3 + "@types/react-select": ^5.0.1 + capacitor: ^0.5.5 + concurrently: ^6.4.0 + core-js: ^3.19.2 + cross-env: ^7.0.3 + dotenv: ^10.0.0 + electron: ^16.0.2 + electron-builder: ^22.14.5 + electron-is-dev: ^2.0.0 + eslint-webpack-plugin: ^3.1.1 + firebase: ^8.6.7 + gh-pages: ^6.0.0 + grpc: ^1.24.11 + lodash: ^4.17.21 + react: ^18.1.0 + react-dev-utils: ^11.0.4 + react-device-detect: ^2.1.2 + react-dom: ^18.1.0 + react-download-link: ^2.3.0 + react-ga: ^3.3.0 + react-ga4: ^1.4.1 + react-helmet: ^6.1.0 + react-messenger-customer-chat: ^0.8.0 + react-responsive: ^8.2.0 + react-router: ^6.2.1 + react-router-dom: ^6.2.1 + react-scripts: 4.0.3 + react-select: ^5.2.1 + react-textarea-autosize: ^8.3.3 + readdirp: ^3.6.0 + resolve-url-loader: ^4.0.0 + sass: ^1.52.1 + styled-jsx: ^4.0.1 + svgo: ^2.4.0 + wait-on: ^6.0.0 + web-vitals: ^1.1.2 + webpack: 4.44.2 + yarn: ^1.22.19 + languageName: unknown + linkType: soft + +"debug@npm:2.6.9, debug@npm:^2.2.0, debug@npm:^2.3.3, debug@npm:^2.6.0, debug@npm:^2.6.8, debug@npm:^2.6.9": + version: 2.6.9 + resolution: "debug@npm:2.6.9" + dependencies: + ms: 2.0.0 + checksum: d2f51589ca66df60bf36e1fa6e4386b318c3f1e06772280eea5b1ae9fd3d05e9c2b7fd8a7d862457d00853c75b00451aa2d7459b924629ee385287a650f58fe6 + languageName: node + linkType: hard + +"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.0.1, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.2.0, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4": + version: 4.3.4 + resolution: "debug@npm:4.3.4" + dependencies: + ms: 2.1.2 + peerDependenciesMeta: + supports-color: + optional: true + checksum: 3dbad3f94ea64f34431a9cbf0bafb61853eda57bff2880036153438f50fb5a84f27683ba0d8e5426bf41a8c6ff03879488120cf5b3a761e77953169c0600a708 + languageName: node + linkType: hard + +"debug@npm:^3.2.7": + version: 3.2.7 + resolution: "debug@npm:3.2.7" + dependencies: + ms: ^2.1.1 + checksum: b3d8c5940799914d30314b7c3304a43305fd0715581a919dacb8b3176d024a782062368405b47491516d2091d6462d4d11f2f4974a405048094f8bfebfa3071c + languageName: node + linkType: hard + +"decamelize@npm:^1.1.1, decamelize@npm:^1.2.0": + version: 1.2.0 + resolution: "decamelize@npm:1.2.0" + checksum: ad8c51a7e7e0720c70ec2eeb1163b66da03e7616d7b98c9ef43cce2416395e84c1e9548dd94f5f6ffecfee9f8b94251fc57121a8b021f2ff2469b2bae247b8aa + languageName: node + linkType: hard + +"decimal.js@npm:^10.2.1": + version: 10.4.3 + resolution: "decimal.js@npm:10.4.3" + checksum: 796404dcfa9d1dbfdc48870229d57f788b48c21c603c3f6554a1c17c10195fc1024de338b0cf9e1efe0c7c167eeb18f04548979bcc5fdfabebb7cc0ae3287bae + languageName: node + linkType: hard + +"decode-uri-component@npm:^0.2.0": + version: 0.2.2 + resolution: "decode-uri-component@npm:0.2.2" + checksum: 95476a7d28f267292ce745eac3524a9079058bbb35767b76e3ee87d42e34cd0275d2eb19d9d08c3e167f97556e8a2872747f5e65cbebcac8b0c98d83e285f139 + languageName: node + linkType: hard + +"decompress-response@npm:^3.3.0": + version: 3.3.0 + resolution: "decompress-response@npm:3.3.0" + dependencies: + mimic-response: ^1.0.0 + checksum: 952552ac3bd7de2fc18015086b09468645c9638d98a551305e485230ada278c039c91116e946d07894b39ee53c0f0d5b6473f25a224029344354513b412d7380 + languageName: node + linkType: hard + +"dedent@npm:^0.7.0": + version: 0.7.0 + resolution: "dedent@npm:0.7.0" + checksum: 87de191050d9a40dd70cad01159a0bcf05ecb59750951242070b6abf9569088684880d00ba92a955b4058804f16eeaf91d604f283929b4f614d181cd7ae633d2 + languageName: node + linkType: hard + +"deep-equal@npm:^1.0.1": + version: 1.1.1 + resolution: "deep-equal@npm:1.1.1" + dependencies: + is-arguments: ^1.0.4 + is-date-object: ^1.0.1 + is-regex: ^1.0.4 + object-is: ^1.0.1 + object-keys: ^1.1.1 + regexp.prototype.flags: ^1.2.0 + checksum: f92686f2c5bcdf714a75a5fa7a9e47cb374a8ec9307e717b8d1ce61f56a75aaebf5619c2a12b8087a705b5a2f60d0292c35f8b58cb1f72e3268a3a15cab9f78d + languageName: node + linkType: hard + +"deep-extend@npm:^0.6.0": + version: 0.6.0 + resolution: "deep-extend@npm:0.6.0" + checksum: 7be7e5a8d468d6b10e6a67c3de828f55001b6eb515d014f7aeb9066ce36bd5717161eb47d6a0f7bed8a9083935b465bc163ee2581c8b128d29bf61092fdf57a7 + languageName: node + linkType: hard + +"deep-is@npm:^0.1.3, deep-is@npm:~0.1.3": + version: 0.1.4 + resolution: "deep-is@npm:0.1.4" + checksum: edb65dd0d7d1b9c40b2f50219aef30e116cedd6fc79290e740972c132c09106d2e80aa0bc8826673dd5a00222d4179c84b36a790eef63a4c4bca75a37ef90804 + languageName: node + linkType: hard + +"deepmerge@npm:^4.2.2": + version: 4.3.1 + resolution: "deepmerge@npm:4.3.1" + checksum: 2024c6a980a1b7128084170c4cf56b0fd58a63f2da1660dcfe977415f27b17dbe5888668b59d0b063753f3220719d5e400b7f113609489c90160bb9a5518d052 + languageName: node + linkType: hard + +"default-gateway@npm:^4.2.0": + version: 4.2.0 + resolution: "default-gateway@npm:4.2.0" + dependencies: + execa: ^1.0.0 + ip-regex: ^2.1.0 + checksum: 1f5be765471689c6bab33e0c8b87363c3e2485cc1ab78904d383a8a8293a79f684da2a3303744b112503f986af4ea87d917c63a468ed913e9b0c31588c02d6a4 + languageName: node + linkType: hard + +"defer-to-connect@npm:^1.0.1": + version: 1.1.3 + resolution: "defer-to-connect@npm:1.1.3" + checksum: 9491b301dcfa04956f989481ba7a43c2231044206269eb4ab64a52d6639ee15b1252262a789eb4239fb46ab63e44d4e408641bae8e0793d640aee55398cb3930 + languageName: node + linkType: hard + +"define-data-property@npm:^1.0.1, define-data-property@npm:^1.1.1": + version: 1.1.1 + resolution: "define-data-property@npm:1.1.1" + dependencies: + get-intrinsic: ^1.2.1 + gopd: ^1.0.1 + has-property-descriptors: ^1.0.0 + checksum: a29855ad3f0630ea82e3c5012c812efa6ca3078d5c2aa8df06b5f597c1cde6f7254692df41945851d903e05a1668607b6d34e778f402b9ff9ffb38111f1a3f0d + languageName: node + linkType: hard + +"define-properties@npm:^1.1.2, define-properties@npm:^1.1.3, define-properties@npm:^1.1.4, define-properties@npm:^1.2.0, define-properties@npm:^1.2.1": + version: 1.2.1 + resolution: "define-properties@npm:1.2.1" + dependencies: + define-data-property: ^1.0.1 + has-property-descriptors: ^1.0.0 + object-keys: ^1.1.1 + checksum: b4ccd00597dd46cb2d4a379398f5b19fca84a16f3374e2249201992f36b30f6835949a9429669ee6b41b6e837205a163eadd745e472069e70dfc10f03e5fcc12 + languageName: node + linkType: hard + +"define-property@npm:^0.2.5": + version: 0.2.5 + resolution: "define-property@npm:0.2.5" + dependencies: + is-descriptor: ^0.1.0 + checksum: 85af107072b04973b13f9e4128ab74ddfda48ec7ad2e54b193c0ffb57067c4ce5b7786a7b4ae1f24bd03e87c5d18766b094571810b314d7540f86d4354dbd394 + languageName: node + linkType: hard + +"define-property@npm:^1.0.0": + version: 1.0.0 + resolution: "define-property@npm:1.0.0" + dependencies: + is-descriptor: ^1.0.0 + checksum: 5fbed11dace44dd22914035ba9ae83ad06008532ca814d7936a53a09e897838acdad5b108dd0688cc8d2a7cf0681acbe00ee4136cf36743f680d10517379350a + languageName: node + linkType: hard + +"define-property@npm:^2.0.2": + version: 2.0.2 + resolution: "define-property@npm:2.0.2" + dependencies: + is-descriptor: ^1.0.2 + isobject: ^3.0.1 + checksum: 3217ed53fc9eed06ba8da6f4d33e28c68a82e2f2a8ab4d562c4920d8169a166fe7271453675e6c69301466f36a65d7f47edf0cf7f474b9aa52a5ead9c1b13c99 + languageName: node + linkType: hard + +"del@npm:^4.1.1": + version: 4.1.1 + resolution: "del@npm:4.1.1" + dependencies: + "@types/glob": ^7.1.1 + globby: ^6.1.0 + is-path-cwd: ^2.0.0 + is-path-in-cwd: ^2.0.0 + p-map: ^2.0.0 + pify: ^4.0.1 + rimraf: ^2.6.3 + checksum: 521f7da44bd79da841c06d573923d1f64f423aee8b8219c973478d3150ce1dcc024d03ad605929292adbff56d6448bca60d96dcdd2d8a53b46dbcb27e265c94b + languageName: node + linkType: hard + +"delayed-stream@npm:~1.0.0": + version: 1.0.0 + resolution: "delayed-stream@npm:1.0.0" + checksum: 46fe6e83e2cb1d85ba50bd52803c68be9bd953282fa7096f51fc29edd5d67ff84ff753c51966061e5ba7cb5e47ef6d36a91924eddb7f3f3483b1c560f77a0020 + languageName: node + linkType: hard + +"delegates@npm:^1.0.0": + version: 1.0.0 + resolution: "delegates@npm:1.0.0" + checksum: a51744d9b53c164ba9c0492471a1a2ffa0b6727451bdc89e31627fdf4adda9d51277cfcbfb20f0a6f08ccb3c436f341df3e92631a3440226d93a8971724771fd + languageName: node + linkType: hard + +"depd@npm:2.0.0": + version: 2.0.0 + resolution: "depd@npm:2.0.0" + checksum: abbe19c768c97ee2eed6282d8ce3031126662252c58d711f646921c9623f9052e3e1906443066beec1095832f534e57c523b7333f8e7e0d93051ab6baef5ab3a + languageName: node + linkType: hard + +"depd@npm:~1.1.2": + version: 1.1.2 + resolution: "depd@npm:1.1.2" + checksum: 6b406620d269619852885ce15965272b829df6f409724415e0002c8632ab6a8c0a08ec1f0bd2add05dc7bd7507606f7e2cc034fa24224ab829580040b835ecd9 + languageName: node + linkType: hard + +"dequal@npm:^2.0.3": + version: 2.0.3 + resolution: "dequal@npm:2.0.3" + checksum: 8679b850e1a3d0ebbc46ee780d5df7b478c23f335887464023a631d1b9af051ad4a6595a44220f9ff8ff95a8ddccf019b5ad778a976fd7bbf77383d36f412f90 + languageName: node + linkType: hard + +"des.js@npm:^1.0.0": + version: 1.1.0 + resolution: "des.js@npm:1.1.0" + dependencies: + inherits: ^2.0.1 + minimalistic-assert: ^1.0.0 + checksum: 0e9c1584b70d31e20f20a613fc9ef60fbc6a147dfec9e448a168794a4b97ac04d8dc47ea008f1fa93b0f8aaf7c1ead632a5e59ce1913a6079d2d244c9f5ebe33 + languageName: node + linkType: hard + +"destroy@npm:1.2.0": + version: 1.2.0 + resolution: "destroy@npm:1.2.0" + checksum: 0acb300b7478a08b92d810ab229d5afe0d2f4399272045ab22affa0d99dbaf12637659411530a6fcd597a9bdac718fc94373a61a95b4651bbc7b83684a565e38 + languageName: node + linkType: hard + +"detect-libc@npm:^2.0.0": + version: 2.0.2 + resolution: "detect-libc@npm:2.0.2" + checksum: 2b2cd3649b83d576f4be7cc37eb3b1815c79969c8b1a03a40a4d55d83bc74d010753485753448eacb98784abf22f7dbd3911fd3b60e29fda28fed2d1a997944d + languageName: node + linkType: hard + +"detect-newline@npm:^3.0.0": + version: 3.1.0 + resolution: "detect-newline@npm:3.1.0" + checksum: ae6cd429c41ad01b164c59ea36f264a2c479598e61cba7c99da24175a7ab80ddf066420f2bec9a1c57a6bead411b4655ff15ad7d281c000a89791f48cbe939e7 + languageName: node + linkType: hard + +"detect-node@npm:^2.0.4": + version: 2.1.0 + resolution: "detect-node@npm:2.1.0" + checksum: 832184ec458353e41533ac9c622f16c19f7c02d8b10c303dfd3a756f56be93e903616c0bb2d4226183c9351c15fc0b3dba41a17a2308262afabcfa3776e6ae6e + languageName: node + linkType: hard + +"detect-port-alt@npm:1.1.6": + version: 1.1.6 + resolution: "detect-port-alt@npm:1.1.6" + dependencies: + address: ^1.0.1 + debug: ^2.6.0 + bin: + detect: ./bin/detect-port + detect-port: ./bin/detect-port + checksum: 9dc37b1fa4a9dd6d4889e1045849b8d841232b598d1ca888bf712f4035b07a17cf6d537465a0d7323250048d3a5a0540e3b7cf89457efc222f96f77e2c40d16a + languageName: node + linkType: hard + +"diff-sequences@npm:^26.6.2": + version: 26.6.2 + resolution: "diff-sequences@npm:26.6.2" + checksum: 79af871776ef149a7ff3345d6b1bf37fe6e81f68632aa5542787851f6f60fba19b0be22fdd1e06046f56ae7382763ccfe94a982c39ee72bd107aef435ecbc0cf + languageName: node + linkType: hard + +"diff-sequences@npm:^29.6.3": + version: 29.6.3 + resolution: "diff-sequences@npm:29.6.3" + checksum: f4914158e1f2276343d98ff5b31fc004e7304f5470bf0f1adb2ac6955d85a531a6458d33e87667f98f6ae52ebd3891bb47d420bb48a5bd8b7a27ee25b20e33aa + languageName: node + linkType: hard + +"diffie-hellman@npm:^5.0.0": + version: 5.0.3 + resolution: "diffie-hellman@npm:5.0.3" + dependencies: + bn.js: ^4.1.0 + miller-rabin: ^4.0.0 + randombytes: ^2.0.0 + checksum: 0e620f322170c41076e70181dd1c24e23b08b47dbb92a22a644f3b89b6d3834b0f8ee19e37916164e5eb1ee26d2aa836d6129f92723995267250a0b541811065 + languageName: node + linkType: hard + +"dir-compare@npm:^2.4.0": + version: 2.4.0 + resolution: "dir-compare@npm:2.4.0" + dependencies: + buffer-equal: 1.0.0 + colors: 1.0.3 + commander: 2.9.0 + minimatch: 3.0.4 + bin: + dircompare: src/cli/dircompare.js + checksum: 16710bcb640b0edb753c6ecf10440c20a073588d797f624288601c52bca64a1f8c4dcd474d1fb7fda3595361b7cf528dee856140d83ecdaa19ba5695112d1209 + languageName: node + linkType: hard + +"dir-glob@npm:^3.0.1": + version: 3.0.1 + resolution: "dir-glob@npm:3.0.1" + dependencies: + path-type: ^4.0.0 + checksum: fa05e18324510d7283f55862f3161c6759a3f2f8dbce491a2fc14c8324c498286c54282c1f0e933cb930da8419b30679389499b919122952a4f8592362ef4615 + languageName: node + linkType: hard + +"dmg-builder@npm:22.14.13": + version: 22.14.13 + resolution: "dmg-builder@npm:22.14.13" + dependencies: + app-builder-lib: 22.14.13 + builder-util: 22.14.13 + builder-util-runtime: 8.9.2 + dmg-license: ^1.0.9 + fs-extra: ^10.0.0 + iconv-lite: ^0.6.2 + js-yaml: ^4.1.0 + dependenciesMeta: + dmg-license: + optional: true + checksum: 01be77f99b9309e356e3ae4fbccc294c4f1dcb65b9b21c434807cbaa9d0c22b2338a5b688bba1b277e0110ac33dd1eb126f4267d09382b1fa12d0878162ac648 + languageName: node + linkType: hard + +"dmg-license@npm:^1.0.9": + version: 1.0.11 + resolution: "dmg-license@npm:1.0.11" + dependencies: + "@types/plist": ^3.0.1 + "@types/verror": ^1.10.3 + ajv: ^6.10.0 + crc: ^3.8.0 + iconv-corefoundation: ^1.1.7 + plist: ^3.0.4 + smart-buffer: ^4.0.2 + verror: ^1.10.0 + bin: + dmg-license: bin/dmg-license.js + conditions: os=darwin + languageName: node + linkType: hard + +"dns-equal@npm:^1.0.0": + version: 1.0.0 + resolution: "dns-equal@npm:1.0.0" + checksum: a8471ac849c7c13824f053babea1bc26e2f359394dd5a460f8340d8abd13434be01e3327a5c59d212f8c8997817450efd3f3ac77bec709b21979cf0235644524 + languageName: node + linkType: hard + +"dns-packet@npm:^1.3.1": + version: 1.3.4 + resolution: "dns-packet@npm:1.3.4" + dependencies: + ip: ^1.1.0 + safe-buffer: ^5.0.1 + checksum: 7dd87f85cb4f9d1a99c03470730e3d9385e67dc94f6c13868c4034424a5378631e492f9f1fbc43d3c42f319fbbfe18b6488bb9527c32d34692c52bf1f5eedf69 + languageName: node + linkType: hard + +"dns-txt@npm:^2.0.2": + version: 2.0.2 + resolution: "dns-txt@npm:2.0.2" + dependencies: + buffer-indexof: ^1.0.0 + checksum: 80130b665379ecd991687ae079fbee25d091e03e4c4cef41e7643b977849ac48c2f56bfcb3727e53594d29029b833749811110d9f3fbee1b26a6e6f8096a5cef + languageName: node + linkType: hard + +"doctrine@npm:^2.1.0": + version: 2.1.0 + resolution: "doctrine@npm:2.1.0" + dependencies: + esutils: ^2.0.2 + checksum: a45e277f7feaed309fe658ace1ff286c6e2002ac515af0aaf37145b8baa96e49899638c7cd47dccf84c3d32abfc113246625b3ac8f552d1046072adee13b0dc8 + languageName: node + linkType: hard + +"doctrine@npm:^3.0.0": + version: 3.0.0 + resolution: "doctrine@npm:3.0.0" + dependencies: + esutils: ^2.0.2 + checksum: fd7673ca77fe26cd5cba38d816bc72d641f500f1f9b25b83e8ce28827fe2da7ad583a8da26ab6af85f834138cf8dae9f69b0cd6ab925f52ddab1754db44d99ce + languageName: node + linkType: hard + +"dom-accessibility-api@npm:^0.5.6": + version: 0.5.16 + resolution: "dom-accessibility-api@npm:0.5.16" + checksum: 005eb283caef57fc1adec4d5df4dd49189b628f2f575af45decb210e04d634459e3f1ee64f18b41e2dcf200c844bc1d9279d80807e686a30d69a4756151ad248 + languageName: node + linkType: hard + +"dom-converter@npm:^0.2.0": + version: 0.2.0 + resolution: "dom-converter@npm:0.2.0" + dependencies: + utila: ~0.4 + checksum: ea52fe303f5392e48dea563abef0e6fb3a478b8dbe3c599e99bb5d53981c6c38fc4944e56bb92a8ead6bb989d10b7914722ae11febbd2fd0910e33b9fc4aaa77 + languageName: node + linkType: hard + +"dom-helpers@npm:^5.0.1": + version: 5.2.1 + resolution: "dom-helpers@npm:5.2.1" + dependencies: + "@babel/runtime": ^7.8.7 + csstype: ^3.0.2 + checksum: 863ba9e086f7093df3376b43e74ce4422571d404fc9828bf2c56140963d5edf0e56160f9b2f3bb61b282c07f8fc8134f023c98fd684bddcb12daf7b0f14d951c + languageName: node + linkType: hard + +"dom-serializer@npm:0": + version: 0.2.2 + resolution: "dom-serializer@npm:0.2.2" + dependencies: + domelementtype: ^2.0.1 + entities: ^2.0.0 + checksum: 376344893e4feccab649a14ca1a46473e9961f40fe62479ea692d4fee4d9df1c00ca8654811a79c1ca7b020096987e1ca4fb4d7f8bae32c1db800a680a0e5d5e + languageName: node + linkType: hard + +"dom-serializer@npm:^1.0.1": + version: 1.4.1 + resolution: "dom-serializer@npm:1.4.1" + dependencies: + domelementtype: ^2.0.1 + domhandler: ^4.2.0 + entities: ^2.0.0 + checksum: fbb0b01f87a8a2d18e6e5a388ad0f7ec4a5c05c06d219377da1abc7bb0f674d804f4a8a94e3f71ff15f6cb7dcfc75704a54b261db672b9b3ab03da6b758b0b22 + languageName: node + linkType: hard + +"dom-storage@npm:2.1.0": + version: 2.1.0 + resolution: "dom-storage@npm:2.1.0" + checksum: b17f9f9a1325b720b5cec9953f82624f57f12ae92bf9c03c413e668d9e1713cdc414058d52ee63e258c0a8673d7e9f6031d99d81b3f334b8c4c192e286990fd5 + languageName: node + linkType: hard + +"domain-browser@npm:^1.1.1": + version: 1.2.0 + resolution: "domain-browser@npm:1.2.0" + checksum: 8f1235c7f49326fb762f4675795246a6295e7dd566b4697abec24afdba2460daa7dfbd1a73d31efbf5606b3b7deadb06ce47cf06f0a476e706153d62a4ff2b90 + languageName: node + linkType: hard + +"domelementtype@npm:1": + version: 1.3.1 + resolution: "domelementtype@npm:1.3.1" + checksum: 7893da40218ae2106ec6ffc146b17f203487a52f5228b032ea7aa470e41dfe03e1bd762d0ee0139e792195efda765434b04b43cddcf63207b098f6ae44b36ad6 + languageName: node + linkType: hard + +"domelementtype@npm:^2.0.1, domelementtype@npm:^2.2.0": + version: 2.3.0 + resolution: "domelementtype@npm:2.3.0" + checksum: ee837a318ff702622f383409d1f5b25dd1024b692ef64d3096ff702e26339f8e345820f29a68bcdcea8cfee3531776b3382651232fbeae95612d6f0a75efb4f6 + languageName: node + linkType: hard + +"domexception@npm:^2.0.1": + version: 2.0.1 + resolution: "domexception@npm:2.0.1" + dependencies: + webidl-conversions: ^5.0.0 + checksum: d638e9cb05c52999f1b2eb87c374b03311ea5b1d69c2f875bc92da73e17db60c12142b45c950228642ff7f845c536b65305483350d080df59003a653da80b691 + languageName: node + linkType: hard + +"domhandler@npm:^4.0.0, domhandler@npm:^4.2.0, domhandler@npm:^4.3.1": + version: 4.3.1 + resolution: "domhandler@npm:4.3.1" + dependencies: + domelementtype: ^2.2.0 + checksum: 4c665ceed016e1911bf7d1dadc09dc888090b64dee7851cccd2fcf5442747ec39c647bb1cb8c8919f8bbdd0f0c625a6bafeeed4b2d656bbecdbae893f43ffaaa + languageName: node + linkType: hard + +"domutils@npm:^1.7.0": + version: 1.7.0 + resolution: "domutils@npm:1.7.0" + dependencies: + dom-serializer: 0 + domelementtype: 1 + checksum: f60a725b1f73c1ae82f4894b691601ecc6ecb68320d87923ac3633137627c7865725af813ae5d188ad3954283853bcf46779eb50304ec5d5354044569fcefd2b + languageName: node + linkType: hard + +"domutils@npm:^2.5.2, domutils@npm:^2.8.0": + version: 2.8.0 + resolution: "domutils@npm:2.8.0" + dependencies: + dom-serializer: ^1.0.1 + domelementtype: ^2.2.0 + domhandler: ^4.2.0 + checksum: abf7434315283e9aadc2a24bac0e00eab07ae4313b40cc239f89d84d7315ebdfd2fb1b5bf750a96bc1b4403d7237c7b2ebf60459be394d625ead4ca89b934391 + languageName: node + linkType: hard + +"dot-case@npm:^3.0.4": + version: 3.0.4 + resolution: "dot-case@npm:3.0.4" + dependencies: + no-case: ^3.0.4 + tslib: ^2.0.3 + checksum: a65e3519414856df0228b9f645332f974f2bf5433370f544a681122eab59e66038fc3349b4be1cdc47152779dac71a5864f1ccda2f745e767c46e9c6543b1169 + languageName: node + linkType: hard + +"dot-prop@npm:^5.2.0": + version: 5.3.0 + resolution: "dot-prop@npm:5.3.0" + dependencies: + is-obj: ^2.0.0 + checksum: d5775790093c234ef4bfd5fbe40884ff7e6c87573e5339432870616331189f7f5d86575c5b5af2dcf0f61172990f4f734d07844b1f23482fff09e3c4bead05ea + languageName: node + linkType: hard + +"dotenv-expand@npm:5.1.0, dotenv-expand@npm:^5.1.0": + version: 5.1.0 + resolution: "dotenv-expand@npm:5.1.0" + checksum: 8017675b7f254384915d55f9eb6388e577cf0a1231a28d54b0ca03b782be9501b0ac90ac57338636d395fa59051e6209e9b44b8ddf169ce6076dffb5dea227d3 + languageName: node + linkType: hard + +"dotenv@npm:8.2.0": + version: 8.2.0 + resolution: "dotenv@npm:8.2.0" + checksum: ad4c8e0df3e24b4811c8e93377d048a10a9b213dcd9f062483b4a2d3168f08f10ec9c618c23f5639060d230ccdb174c08761479e9baa29610aa978e1ee66df76 + languageName: node + linkType: hard + +"dotenv@npm:^10.0.0": + version: 10.0.0 + resolution: "dotenv@npm:10.0.0" + checksum: f412c5fe8c24fbe313d302d2500e247ba8a1946492db405a4de4d30dd0eb186a88a43f13c958c5a7de303938949c4231c56994f97d05c4bc1f22478d631b4005 + languageName: node + linkType: hard + +"dotenv@npm:^9.0.2": + version: 9.0.2 + resolution: "dotenv@npm:9.0.2" + checksum: 6b7980330a653089bc9b83362248547791151ee74f9881eb223ac2f4d641b174b708f77315d88708b551d45b4177afd3ba71bca4832f8807e003f71c2a0f83e7 + languageName: node + linkType: hard + +"duplexer3@npm:^0.1.4": + version: 0.1.5 + resolution: "duplexer3@npm:0.1.5" + checksum: e677cb4c48f031ca728601d6a20bf6aed4c629d69ef9643cb89c67583d673c4ec9317cc6427501f38bd8c368d3a18f173987cc02bd99d8cf8fe3d94259a22a20 + languageName: node + linkType: hard + +"duplexer@npm:^0.1.1": + version: 0.1.2 + resolution: "duplexer@npm:0.1.2" + checksum: 62ba61a830c56801db28ff6305c7d289b6dc9f859054e8c982abd8ee0b0a14d2e9a8e7d086ffee12e868d43e2bbe8a964be55ddbd8c8957714c87373c7a4f9b0 + languageName: node + linkType: hard + +"duplexify@npm:^3.4.2, duplexify@npm:^3.6.0": + version: 3.7.1 + resolution: "duplexify@npm:3.7.1" + dependencies: + end-of-stream: ^1.0.0 + inherits: ^2.0.1 + readable-stream: ^2.0.0 + stream-shift: ^1.0.0 + checksum: 3c2ed2223d956a5da713dae12ba8295acb61d9acd966ccbba938090d04f4574ca4dca75cca089b5077c2d7e66101f32e6ea9b36a78ca213eff574e7a8b8accf2 + languageName: node + linkType: hard + +"eastasianwidth@npm:^0.2.0": + version: 0.2.0 + resolution: "eastasianwidth@npm:0.2.0" + checksum: 7d00d7cd8e49b9afa762a813faac332dee781932d6f2c848dc348939c4253f1d4564341b7af1d041853bc3f32c2ef141b58e0a4d9862c17a7f08f68df1e0f1ed + languageName: node + linkType: hard + +"ee-first@npm:1.1.1": + version: 1.1.1 + resolution: "ee-first@npm:1.1.1" + checksum: 1b4cac778d64ce3b582a7e26b218afe07e207a0f9bfe13cc7395a6d307849cfe361e65033c3251e00c27dd060cab43014c2d6b2647676135e18b77d2d05b3f4f + languageName: node + linkType: hard + +"ejs@npm:^2.6.1": + version: 2.7.4 + resolution: "ejs@npm:2.7.4" + checksum: a1d2bfc7d1f0b39e99ae19b20c9469a25aeddba1ffc225db098110b18d566f73772fcdcc740b108cfda7452276f67d7b64eb359f90285414c942f4ae70713371 + languageName: node + linkType: hard + +"ejs@npm:^3.1.6": + version: 3.1.9 + resolution: "ejs@npm:3.1.9" + dependencies: + jake: ^10.8.5 + bin: + ejs: bin/cli.js + checksum: af6f10eb815885ff8a8cfacc42c6b6cf87daf97a4884f87a30e0c3271fedd85d76a3a297d9c33a70e735b97ee632887f85e32854b9cdd3a2d97edf931519a35f + languageName: node + linkType: hard + +"electron-builder@npm:^22.14.5": + version: 22.14.13 + resolution: "electron-builder@npm:22.14.13" + dependencies: + "@types/yargs": ^17.0.1 + app-builder-lib: 22.14.13 + builder-util: 22.14.13 + builder-util-runtime: 8.9.2 + chalk: ^4.1.1 + dmg-builder: 22.14.13 + fs-extra: ^10.0.0 + is-ci: ^3.0.0 + lazy-val: ^1.0.5 + read-config-file: 6.2.0 + update-notifier: ^5.1.0 + yargs: ^17.0.1 + bin: + electron-builder: cli.js + install-app-deps: install-app-deps.js + checksum: 1c5179ca9c4db3886377f86b6aa00db703180358134fefbf4c32daa54ed2620c47bf5495d0e4ee12bd3694dd7d3553a6561f088d2e5ab571b9e9b2f07ff594f2 + languageName: node + linkType: hard + +"electron-is-dev@npm:^2.0.0": + version: 2.0.0 + resolution: "electron-is-dev@npm:2.0.0" + checksum: 7393f46f06153d70a427ea904c60a092e50fbf1015c26c342cebb8324ada8c9e0c0f1f02867af56d9cc76f47be17da8cb311ea6bdc83343e7ebd2323ec4014c8 + languageName: node + linkType: hard + +"electron-osx-sign@npm:^0.5.0": + version: 0.5.0 + resolution: "electron-osx-sign@npm:0.5.0" + dependencies: + bluebird: ^3.5.0 + compare-version: ^0.1.2 + debug: ^2.6.8 + isbinaryfile: ^3.0.2 + minimist: ^1.2.0 + plist: ^3.0.1 + bin: + electron-osx-flat: bin/electron-osx-flat.js + electron-osx-sign: bin/electron-osx-sign.js + checksum: ca1e55d8cb0987b78bfaf197860e73f7e6266cb219f3d6fd32f25665a8393efb284115db9e2246b42f75cdf6163c148060aff8a02960f4f810c6502d6f7d447c + languageName: node + linkType: hard + +"electron-publish@npm:22.14.13": + version: 22.14.13 + resolution: "electron-publish@npm:22.14.13" + dependencies: + "@types/fs-extra": ^9.0.11 + builder-util: 22.14.13 + builder-util-runtime: 8.9.2 + chalk: ^4.1.1 + fs-extra: ^10.0.0 + lazy-val: ^1.0.5 + mime: ^2.5.2 + checksum: 66cf15ad52c9dea67d744eb9080c20d43792a734f4e524b8ffc676e8ce9541a2fe4b11a25e4bd3f48e670160e72edfc7eeb77767e843232f4454075ee91d2475 + languageName: node + linkType: hard + +"electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.4.535": + version: 1.4.563 + resolution: "electron-to-chromium@npm:1.4.563" + checksum: 50512b9662688291b1c4e921def7206bab1ebd57f5bf5bdbb7961842ae69b4baad5df1293084b62ea07686c578e42ed17546434d7c9102960914240770921a5b + languageName: node + linkType: hard + +"electron@npm:^16.0.2": + version: 16.2.8 + resolution: "electron@npm:16.2.8" + dependencies: + "@electron/get": ^1.13.0 + "@types/node": ^14.6.2 + extract-zip: ^1.0.3 + bin: + electron: cli.js + checksum: 05177c7a798ff43d4a9df333cc5537e46235a14560b4400e9a9993972abb2e599e22e59a0c0b385bc4090ef665719ce0e90179b652d295fb1fea79bbb0fd786b + languageName: node + linkType: hard + +"elementtree@npm:^0.1.7": + version: 0.1.7 + resolution: "elementtree@npm:0.1.7" + dependencies: + sax: 1.1.4 + checksum: f77183084fdadb9366d39e0110a31888e3719c77320d426168dcf31eaf4c78cec906c84f4ce00320f5095c88145a11716af0d5d35c5297355e3c3d3d4a6cbcd0 + languageName: node + linkType: hard + +"elliptic@npm:^6.5.3": + version: 6.5.4 + resolution: "elliptic@npm:6.5.4" + dependencies: + bn.js: ^4.11.9 + brorand: ^1.1.0 + hash.js: ^1.0.0 + hmac-drbg: ^1.0.1 + inherits: ^2.0.4 + minimalistic-assert: ^1.0.1 + minimalistic-crypto-utils: ^1.0.1 + checksum: d56d21fd04e97869f7ffcc92e18903b9f67f2d4637a23c860492fbbff5a3155fd9ca0184ce0c865dd6eb2487d234ce9551335c021c376cd2d3b7cb749c7d10f4 + languageName: node + linkType: hard + +"email-addresses@npm:^5.0.0": + version: 5.0.0 + resolution: "email-addresses@npm:5.0.0" + checksum: e58a510e9caf105313025e1c81488d5391c6404f0bbd7874e8e36a4c14d1ced02ff271748146c13edfa3bd9ce9b25f1194f5369971d77087325f37ab193129bb + languageName: node + linkType: hard + +"emittery@npm:^0.7.1": + version: 0.7.2 + resolution: "emittery@npm:0.7.2" + checksum: 908cd933d48a9bcb58ddf39e9a7d4ba1e049de392ccbef010102539a636e03cea2b28218331b7ede41de8165d9ed7f148851c5112ebd2e943117c0f61eff5f10 + languageName: node + linkType: hard + +"emoji-regex@npm:^7.0.1": + version: 7.0.3 + resolution: "emoji-regex@npm:7.0.3" + checksum: 9159b2228b1511f2870ac5920f394c7e041715429a68459ebe531601555f11ea782a8e1718f969df2711d38c66268174407cbca57ce36485544f695c2dfdc96e + languageName: node + linkType: hard + +"emoji-regex@npm:^8.0.0": + version: 8.0.0 + resolution: "emoji-regex@npm:8.0.0" + checksum: d4c5c39d5a9868b5fa152f00cada8a936868fd3367f33f71be515ecee4c803132d11b31a6222b2571b1e5f7e13890156a94880345594d0ce7e3c9895f560f192 + languageName: node + linkType: hard + +"emoji-regex@npm:^9.2.2": + version: 9.2.2 + resolution: "emoji-regex@npm:9.2.2" + checksum: 8487182da74aabd810ac6d6f1994111dfc0e331b01271ae01ec1eb0ad7b5ecc2bbbbd2f053c05cb55a1ac30449527d819bbfbf0e3de1023db308cbcb47f86601 + languageName: node + linkType: hard + +"emojis-list@npm:^2.0.0": + version: 2.1.0 + resolution: "emojis-list@npm:2.1.0" + checksum: fb61fa6356dfcc9fbe6db8e334c29da365a34d3d82a915cb59621883d3023d804fd5edad5acd42b8eec016936e81d3b38e2faf921b32e073758374253afe1272 + languageName: node + linkType: hard + +"emojis-list@npm:^3.0.0": + version: 3.0.0 + resolution: "emojis-list@npm:3.0.0" + checksum: ddaaa02542e1e9436c03970eeed445f4ed29a5337dfba0fe0c38dfdd2af5da2429c2a0821304e8a8d1cadf27fdd5b22ff793571fa803ae16852a6975c65e8e70 + languageName: node + linkType: hard + +"encodeurl@npm:^1.0.2, encodeurl@npm:~1.0.2": + version: 1.0.2 + resolution: "encodeurl@npm:1.0.2" + checksum: e50e3d508cdd9c4565ba72d2012e65038e5d71bdc9198cb125beb6237b5b1ade6c0d343998da9e170fb2eae52c1bed37d4d6d98a46ea423a0cddbed5ac3f780c + languageName: node + linkType: hard + +"encoding@npm:^0.1.13": + version: 0.1.13 + resolution: "encoding@npm:0.1.13" + dependencies: + iconv-lite: ^0.6.2 + checksum: bb98632f8ffa823996e508ce6a58ffcf5856330fde839ae42c9e1f436cc3b5cc651d4aeae72222916545428e54fd0f6aa8862fd8d25bdbcc4589f1e3f3715e7f + languageName: node + linkType: hard + +"end-of-stream@npm:^1.0.0, end-of-stream@npm:^1.1.0": + version: 1.4.4 + resolution: "end-of-stream@npm:1.4.4" + dependencies: + once: ^1.4.0 + checksum: 530a5a5a1e517e962854a31693dbb5c0b2fc40b46dad2a56a2deec656ca040631124f4795823acc68238147805f8b021abbe221f4afed5ef3c8e8efc2024908b + languageName: node + linkType: hard + +"enhanced-resolve@npm:^4.3.0": + version: 4.5.0 + resolution: "enhanced-resolve@npm:4.5.0" + dependencies: + graceful-fs: ^4.1.2 + memory-fs: ^0.5.0 + tapable: ^1.0.0 + checksum: 4d87488584c4d67d356ef4ba04978af4b2d4d18190cb859efac8e8475a34d5d6c069df33faa5a0a22920b0586dbf330f6a08d52bb15a8771a9ce4d70a2da74ba + languageName: node + linkType: hard + +"enquirer@npm:^2.3.5": + version: 2.4.1 + resolution: "enquirer@npm:2.4.1" + dependencies: + ansi-colors: ^4.1.1 + strip-ansi: ^6.0.1 + checksum: f080f11a74209647dbf347a7c6a83c8a47ae1ebf1e75073a808bc1088eb780aa54075bfecd1bcdb3e3c724520edb8e6ee05da031529436b421b71066fcc48cb5 + languageName: node + linkType: hard + +"entities@npm:^2.0.0": + version: 2.2.0 + resolution: "entities@npm:2.2.0" + checksum: 19010dacaf0912c895ea262b4f6128574f9ccf8d4b3b65c7e8334ad0079b3706376360e28d8843ff50a78aabcb8f08f0a32dbfacdc77e47ed77ca08b713669b3 + languageName: node + linkType: hard + +"env-paths@npm:^2.2.0": + version: 2.2.1 + resolution: "env-paths@npm:2.2.1" + checksum: 65b5df55a8bab92229ab2b40dad3b387fad24613263d103a97f91c9fe43ceb21965cd3392b1ccb5d77088021e525c4e0481adb309625d0cb94ade1d1fb8dc17e + languageName: node + linkType: hard + +"err-code@npm:^2.0.2": + version: 2.0.3 + resolution: "err-code@npm:2.0.3" + checksum: 8b7b1be20d2de12d2255c0bc2ca638b7af5171142693299416e6a9339bd7d88fc8d7707d913d78e0993176005405a236b066b45666b27b797252c771156ace54 + languageName: node + linkType: hard + +"errno@npm:^0.1.3, errno@npm:~0.1.7": + version: 0.1.8 + resolution: "errno@npm:0.1.8" + dependencies: + prr: ~1.0.1 + bin: + errno: cli.js + checksum: 1271f7b9fbb3bcbec76ffde932485d1e3561856d21d847ec613a9722ee924cdd4e523a62dc71a44174d91e898fe21fdc8d5b50823f4b5e0ce8c35c8271e6ef4a + languageName: node + linkType: hard + +"error-ex@npm:^1.3.1": + version: 1.3.2 + resolution: "error-ex@npm:1.3.2" + dependencies: + is-arrayish: ^0.2.1 + checksum: c1c2b8b65f9c91b0f9d75f0debaa7ec5b35c266c2cac5de412c1a6de86d4cbae04ae44e510378cb14d032d0645a36925d0186f8bb7367bcc629db256b743a001 + languageName: node + linkType: hard + +"error-stack-parser@npm:^2.0.6": + version: 2.1.4 + resolution: "error-stack-parser@npm:2.1.4" + dependencies: + stackframe: ^1.3.4 + checksum: 3b916d2d14c6682f287c8bfa28e14672f47eafe832701080e420e7cdbaebb2c50293868256a95706ac2330fe078cf5664713158b49bc30d7a5f2ac229ded0e18 + languageName: node + linkType: hard + +"es-abstract@npm:^1.17.2, es-abstract@npm:^1.22.1": + version: 1.22.3 + resolution: "es-abstract@npm:1.22.3" + dependencies: + array-buffer-byte-length: ^1.0.0 + arraybuffer.prototype.slice: ^1.0.2 + available-typed-arrays: ^1.0.5 + call-bind: ^1.0.5 + es-set-tostringtag: ^2.0.1 + es-to-primitive: ^1.2.1 + function.prototype.name: ^1.1.6 + get-intrinsic: ^1.2.2 + get-symbol-description: ^1.0.0 + globalthis: ^1.0.3 + gopd: ^1.0.1 + has-property-descriptors: ^1.0.0 + has-proto: ^1.0.1 + has-symbols: ^1.0.3 + hasown: ^2.0.0 + internal-slot: ^1.0.5 + is-array-buffer: ^3.0.2 + is-callable: ^1.2.7 + is-negative-zero: ^2.0.2 + is-regex: ^1.1.4 + is-shared-array-buffer: ^1.0.2 + is-string: ^1.0.7 + is-typed-array: ^1.1.12 + is-weakref: ^1.0.2 + object-inspect: ^1.13.1 + object-keys: ^1.1.1 + object.assign: ^4.1.4 + regexp.prototype.flags: ^1.5.1 + safe-array-concat: ^1.0.1 + safe-regex-test: ^1.0.0 + string.prototype.trim: ^1.2.8 + string.prototype.trimend: ^1.0.7 + string.prototype.trimstart: ^1.0.7 + typed-array-buffer: ^1.0.0 + typed-array-byte-length: ^1.0.0 + typed-array-byte-offset: ^1.0.0 + typed-array-length: ^1.0.4 + unbox-primitive: ^1.0.2 + which-typed-array: ^1.1.13 + checksum: b1bdc962856836f6e72be10b58dc128282bdf33771c7a38ae90419d920fc3b36cc5d2b70a222ad8016e3fc322c367bf4e9e89fc2bc79b7e933c05b218e83d79a + languageName: node + linkType: hard + +"es-array-method-boxes-properly@npm:^1.0.0": + version: 1.0.0 + resolution: "es-array-method-boxes-properly@npm:1.0.0" + checksum: 2537fcd1cecf187083890bc6f5236d3a26bf39237433587e5bf63392e88faae929dbba78ff0120681a3f6f81c23fe3816122982c160d63b38c95c830b633b826 + languageName: node + linkType: hard + +"es-iterator-helpers@npm:^1.0.12": + version: 1.0.15 + resolution: "es-iterator-helpers@npm:1.0.15" + dependencies: + asynciterator.prototype: ^1.0.0 + call-bind: ^1.0.2 + define-properties: ^1.2.1 + es-abstract: ^1.22.1 + es-set-tostringtag: ^2.0.1 + function-bind: ^1.1.1 + get-intrinsic: ^1.2.1 + globalthis: ^1.0.3 + has-property-descriptors: ^1.0.0 + has-proto: ^1.0.1 + has-symbols: ^1.0.3 + internal-slot: ^1.0.5 + iterator.prototype: ^1.1.2 + safe-array-concat: ^1.0.1 + checksum: 50081ae5c549efe62e5c1d244df0194b40b075f7897fc2116b7e1aa437eb3c41f946d2afda18c33f9b31266ec544765932542765af839f76fa6d7b7855d1e0e1 + languageName: node + linkType: hard + +"es-set-tostringtag@npm:^2.0.1": + version: 2.0.2 + resolution: "es-set-tostringtag@npm:2.0.2" + dependencies: + get-intrinsic: ^1.2.2 + has-tostringtag: ^1.0.0 + hasown: ^2.0.0 + checksum: afcec3a4c9890ae14d7ec606204858441c801ff84f312538e1d1ccf1e5493c8b17bd672235df785f803756472cb4f2d49b87bde5237aef33411e74c22f194e07 + languageName: node + linkType: hard + +"es-shim-unscopables@npm:^1.0.0": + version: 1.0.2 + resolution: "es-shim-unscopables@npm:1.0.2" + dependencies: + hasown: ^2.0.0 + checksum: 432bd527c62065da09ed1d37a3f8e623c423683285e6188108286f4a1e8e164a5bcbfbc0051557c7d14633cd2a41ce24c7048e6bbb66a985413fd32f1be72626 + languageName: node + linkType: hard + +"es-to-primitive@npm:^1.2.1": + version: 1.2.1 + resolution: "es-to-primitive@npm:1.2.1" + dependencies: + is-callable: ^1.1.4 + is-date-object: ^1.0.1 + is-symbol: ^1.0.2 + checksum: 4ead6671a2c1402619bdd77f3503991232ca15e17e46222b0a41a5d81aebc8740a77822f5b3c965008e631153e9ef0580540007744521e72de8e33599fca2eed + languageName: node + linkType: hard + +"es5-ext@npm:^0.10.35, es5-ext@npm:^0.10.50": + version: 0.10.62 + resolution: "es5-ext@npm:0.10.62" + dependencies: + es6-iterator: ^2.0.3 + es6-symbol: ^3.1.3 + next-tick: ^1.1.0 + checksum: 25f42f6068cfc6e393cf670bc5bba249132c5f5ec2dd0ed6e200e6274aca2fed8e9aec8a31c76031744c78ca283c57f0b41c7e737804c6328c7b8d3fbcba7983 + languageName: node + linkType: hard + +"es6-error@npm:^4.1.1": + version: 4.1.1 + resolution: "es6-error@npm:4.1.1" + checksum: ae41332a51ec1323da6bbc5d75b7803ccdeddfae17c41b6166ebbafc8e8beb7a7b80b884b7fab1cc80df485860ac3c59d78605e860bb4f8cd816b3d6ade0d010 + languageName: node + linkType: hard + +"es6-iterator@npm:2.0.3, es6-iterator@npm:^2.0.3": + version: 2.0.3 + resolution: "es6-iterator@npm:2.0.3" + dependencies: + d: 1 + es5-ext: ^0.10.35 + es6-symbol: ^3.1.1 + checksum: 6e48b1c2d962c21dee604b3d9f0bc3889f11ed5a8b33689155a2065d20e3107e2a69cc63a71bd125aeee3a589182f8bbcb5c8a05b6a8f38fa4205671b6d09697 + languageName: node + linkType: hard + +"es6-symbol@npm:^3.1.1, es6-symbol@npm:^3.1.3": + version: 3.1.3 + resolution: "es6-symbol@npm:3.1.3" + dependencies: + d: ^1.0.1 + ext: ^1.1.2 + checksum: cd49722c2a70f011eb02143ef1c8c70658d2660dead6641e160b94619f408b9cf66425515787ffe338affdf0285ad54f4eae30ea5bd510e33f8659ec53bcaa70 + languageName: node + linkType: hard + +"escalade@npm:^3.0.2, escalade@npm:^3.1.1": + version: 3.1.1 + resolution: "escalade@npm:3.1.1" + checksum: a3e2a99f07acb74b3ad4989c48ca0c3140f69f923e56d0cba0526240ee470b91010f9d39001f2a4a313841d237ede70a729e92125191ba5d21e74b106800b133 + languageName: node + linkType: hard + +"escape-goat@npm:^2.0.0": + version: 2.1.1 + resolution: "escape-goat@npm:2.1.1" + checksum: ce05c70c20dd7007b60d2d644b625da5412325fdb57acf671ba06cb2ab3cd6789e2087026921a05b665b0a03fadee2955e7fc0b9a67da15a6551a980b260eba7 + languageName: node + linkType: hard + +"escape-html@npm:~1.0.3": + version: 1.0.3 + resolution: "escape-html@npm:1.0.3" + checksum: 6213ca9ae00d0ab8bccb6d8d4e0a98e76237b2410302cf7df70aaa6591d509a2a37ce8998008cbecae8fc8ffaadf3fb0229535e6a145f3ce0b211d060decbb24 + languageName: node + linkType: hard + +"escape-string-regexp@npm:2.0.0, escape-string-regexp@npm:^2.0.0": + version: 2.0.0 + resolution: "escape-string-regexp@npm:2.0.0" + checksum: 9f8a2d5743677c16e85c810e3024d54f0c8dea6424fad3c79ef6666e81dd0846f7437f5e729dfcdac8981bc9e5294c39b4580814d114076b8d36318f46ae4395 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^1.0.2, escape-string-regexp@npm:^1.0.5": + version: 1.0.5 + resolution: "escape-string-regexp@npm:1.0.5" + checksum: 6092fda75c63b110c706b6a9bfde8a612ad595b628f0bd2147eea1d3406723020810e591effc7db1da91d80a71a737a313567c5abb3813e8d9c71f4aa595b410 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^4.0.0": + version: 4.0.0 + resolution: "escape-string-regexp@npm:4.0.0" + checksum: 98b48897d93060f2322108bf29db0feba7dd774be96cd069458d1453347b25ce8682ecc39859d4bca2203cc0ab19c237bcc71755eff49a0f8d90beadeeba5cc5 + languageName: node + linkType: hard + +"escodegen@npm:^1.8.1": + version: 1.14.3 + resolution: "escodegen@npm:1.14.3" + dependencies: + esprima: ^4.0.1 + estraverse: ^4.2.0 + esutils: ^2.0.2 + optionator: ^0.8.1 + source-map: ~0.6.1 + dependenciesMeta: + source-map: + optional: true + bin: + escodegen: bin/escodegen.js + esgenerate: bin/esgenerate.js + checksum: 381cdc4767ecdb221206bbbab021b467bbc2a6f5c9a99c9e6353040080bdd3dfe73d7604ad89a47aca6ea7d58bc635f6bd3fbc8da9a1998e9ddfa8372362ccd0 + languageName: node + linkType: hard + +"escodegen@npm:^2.0.0": + version: 2.1.0 + resolution: "escodegen@npm:2.1.0" + dependencies: + esprima: ^4.0.1 + estraverse: ^5.2.0 + esutils: ^2.0.2 + source-map: ~0.6.1 + dependenciesMeta: + source-map: + optional: true + bin: + escodegen: bin/escodegen.js + esgenerate: bin/esgenerate.js + checksum: 096696407e161305cd05aebb95134ad176708bc5cb13d0dcc89a5fcbb959b8ed757e7f2591a5f8036f8f4952d4a724de0df14cd419e29212729fa6df5ce16bf6 + languageName: node + linkType: hard + +"eslint-config-react-app@npm:^6.0.0": + version: 6.0.0 + resolution: "eslint-config-react-app@npm:6.0.0" + dependencies: + confusing-browser-globals: ^1.0.10 + peerDependencies: + "@typescript-eslint/eslint-plugin": ^4.0.0 + "@typescript-eslint/parser": ^4.0.0 + babel-eslint: ^10.0.0 + eslint: ^7.5.0 + eslint-plugin-flowtype: ^5.2.0 + eslint-plugin-import: ^2.22.0 + eslint-plugin-jest: ^24.0.0 + eslint-plugin-jsx-a11y: ^6.3.1 + eslint-plugin-react: ^7.20.3 + eslint-plugin-react-hooks: ^4.0.8 + eslint-plugin-testing-library: ^3.9.0 + peerDependenciesMeta: + eslint-plugin-jest: + optional: true + eslint-plugin-testing-library: + optional: true + checksum: b265852455b1c10e9c5f0cebe199306fffc7f8e1b6548fcb0bccdc4415c288dfee8ab10717122a32275b91130dfb482dcbbc87d2fb79d8728d4c2bfa889f0915 + languageName: node + linkType: hard + +"eslint-import-resolver-node@npm:^0.3.7": + version: 0.3.9 + resolution: "eslint-import-resolver-node@npm:0.3.9" + dependencies: + debug: ^3.2.7 + is-core-module: ^2.13.0 + resolve: ^1.22.4 + checksum: 439b91271236b452d478d0522a44482e8c8540bf9df9bd744062ebb89ab45727a3acd03366a6ba2bdbcde8f9f718bab7fe8db64688aca75acf37e04eafd25e22 + languageName: node + linkType: hard + +"eslint-module-utils@npm:^2.8.0": + version: 2.8.0 + resolution: "eslint-module-utils@npm:2.8.0" + dependencies: + debug: ^3.2.7 + peerDependenciesMeta: + eslint: + optional: true + checksum: 74c6dfea7641ebcfe174be61168541a11a14aa8d72e515f5f09af55cd0d0862686104b0524aa4b8e0ce66418a44aa38a94d2588743db5fd07a6b49ffd16921d2 + languageName: node + linkType: hard + +"eslint-plugin-flowtype@npm:^5.2.0": + version: 5.10.0 + resolution: "eslint-plugin-flowtype@npm:5.10.0" + dependencies: + lodash: ^4.17.15 + string-natural-compare: ^3.0.1 + peerDependencies: + eslint: ^7.1.0 + checksum: 791cd53c886bf819d52d6353cdfb4d49276dcd8a14f564a85d275d5017d81c7b1cc1921013ac9749f69c3f1bc4d23f36182137aab42bc059c2ae3f9773dd7740 + languageName: node + linkType: hard + +"eslint-plugin-import@npm:^2.22.1": + version: 2.28.1 + resolution: "eslint-plugin-import@npm:2.28.1" + dependencies: + array-includes: ^3.1.6 + array.prototype.findlastindex: ^1.2.2 + array.prototype.flat: ^1.3.1 + array.prototype.flatmap: ^1.3.1 + debug: ^3.2.7 + doctrine: ^2.1.0 + eslint-import-resolver-node: ^0.3.7 + eslint-module-utils: ^2.8.0 + has: ^1.0.3 + is-core-module: ^2.13.0 + is-glob: ^4.0.3 + minimatch: ^3.1.2 + object.fromentries: ^2.0.6 + object.groupby: ^1.0.0 + object.values: ^1.1.6 + semver: ^6.3.1 + tsconfig-paths: ^3.14.2 + peerDependencies: + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + checksum: e8ae6dd8f06d8adf685f9c1cfd46ac9e053e344a05c4090767e83b63a85c8421ada389807a39e73c643b9bff156715c122e89778169110ed68d6428e12607edf + languageName: node + linkType: hard + +"eslint-plugin-jest@npm:^24.1.0": + version: 24.7.0 + resolution: "eslint-plugin-jest@npm:24.7.0" + dependencies: + "@typescript-eslint/experimental-utils": ^4.0.1 + peerDependencies: + "@typescript-eslint/eslint-plugin": ">= 4" + eslint: ">=5" + peerDependenciesMeta: + "@typescript-eslint/eslint-plugin": + optional: true + checksum: a4056582825ab3359d2e0e3aae50518f6f867d1cfb3240496605247d3ff9c84b4164f1a7e1f7087d5a2eae1343d738ada1ba74c422b13ad20b737601dc47ae08 + languageName: node + linkType: hard + +"eslint-plugin-jsx-a11y@npm:^6.3.1": + version: 6.7.1 + resolution: "eslint-plugin-jsx-a11y@npm:6.7.1" + dependencies: + "@babel/runtime": ^7.20.7 + aria-query: ^5.1.3 + array-includes: ^3.1.6 + array.prototype.flatmap: ^1.3.1 + ast-types-flow: ^0.0.7 + axe-core: ^4.6.2 + axobject-query: ^3.1.1 + damerau-levenshtein: ^1.0.8 + emoji-regex: ^9.2.2 + has: ^1.0.3 + jsx-ast-utils: ^3.3.3 + language-tags: =1.0.5 + minimatch: ^3.1.2 + object.entries: ^1.1.6 + object.fromentries: ^2.0.6 + semver: ^6.3.0 + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + checksum: f166dd5fe7257c7b891c6692e6a3ede6f237a14043ae3d97581daf318fc5833ddc6b4871aa34ab7656187430170500f6d806895747ea17ecdf8231a666c3c2fd + languageName: node + linkType: hard + +"eslint-plugin-react-hooks@npm:^4.2.0": + version: 4.6.0 + resolution: "eslint-plugin-react-hooks@npm:4.6.0" + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + checksum: 23001801f14c1d16bf0a837ca7970d9dd94e7b560384b41db378b49b6e32dc43d6e2790de1bd737a652a86f81a08d6a91f402525061b47719328f586a57e86c3 + languageName: node + linkType: hard + +"eslint-plugin-react@npm:^7.21.5": + version: 7.33.2 + resolution: "eslint-plugin-react@npm:7.33.2" + dependencies: + array-includes: ^3.1.6 + array.prototype.flatmap: ^1.3.1 + array.prototype.tosorted: ^1.1.1 + doctrine: ^2.1.0 + es-iterator-helpers: ^1.0.12 + estraverse: ^5.3.0 + jsx-ast-utils: ^2.4.1 || ^3.0.0 + minimatch: ^3.1.2 + object.entries: ^1.1.6 + object.fromentries: ^2.0.6 + object.hasown: ^1.1.2 + object.values: ^1.1.6 + prop-types: ^15.8.1 + resolve: ^2.0.0-next.4 + semver: ^6.3.1 + string.prototype.matchall: ^4.0.8 + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + checksum: b4c3d76390b0ae6b6f9fed78170604cc2c04b48e6778a637db339e8e3911ec9ef22510b0ae77c429698151d0f1b245f282177f384105b6830e7b29b9c9b26610 + languageName: node + linkType: hard + +"eslint-plugin-testing-library@npm:^3.9.2": + version: 3.10.2 + resolution: "eslint-plugin-testing-library@npm:3.10.2" + dependencies: + "@typescript-eslint/experimental-utils": ^3.10.1 + peerDependencies: + eslint: ^5 || ^6 || ^7 + checksum: 3859d4a4816b130cfefc3b45bc7d303aff19b8d4e83a5e35ca3d634de9f3c4aa1b4340cb4f41e2d1bfe70b173562b9882c58ac48be4e07ddf6a1f88659e2604d + languageName: node + linkType: hard + +"eslint-scope@npm:^4.0.3": + version: 4.0.3 + resolution: "eslint-scope@npm:4.0.3" + dependencies: + esrecurse: ^4.1.0 + estraverse: ^4.1.1 + checksum: c5f835f681884469991fe58d76a554688d9c9e50811299ccd4a8f79993a039f5bcb0ee6e8de2b0017d97c794b5832ef3b21c9aac66228e3aa0f7a0485bcfb65b + languageName: node + linkType: hard + +"eslint-scope@npm:^5.0.0, eslint-scope@npm:^5.1.1": + version: 5.1.1 + resolution: "eslint-scope@npm:5.1.1" + dependencies: + esrecurse: ^4.3.0 + estraverse: ^4.1.1 + checksum: 47e4b6a3f0cc29c7feedee6c67b225a2da7e155802c6ea13bbef4ac6b9e10c66cd2dcb987867ef176292bf4e64eccc680a49e35e9e9c669f4a02bac17e86abdb + languageName: node + linkType: hard + +"eslint-utils@npm:^2.0.0, eslint-utils@npm:^2.1.0": + version: 2.1.0 + resolution: "eslint-utils@npm:2.1.0" + dependencies: + eslint-visitor-keys: ^1.1.0 + checksum: 27500938f348da42100d9e6ad03ae29b3de19ba757ae1a7f4a087bdcf83ac60949bbb54286492ca61fac1f5f3ac8692dd21537ce6214240bf95ad0122f24d71d + languageName: node + linkType: hard + +"eslint-utils@npm:^3.0.0": + version: 3.0.0 + resolution: "eslint-utils@npm:3.0.0" + dependencies: + eslint-visitor-keys: ^2.0.0 + peerDependencies: + eslint: ">=5" + checksum: 0668fe02f5adab2e5a367eee5089f4c39033af20499df88fe4e6aba2015c20720404d8c3d6349b6f716b08fdf91b9da4e5d5481f265049278099c4c836ccb619 + languageName: node + linkType: hard + +"eslint-visitor-keys@npm:^1.0.0, eslint-visitor-keys@npm:^1.1.0, eslint-visitor-keys@npm:^1.3.0": + version: 1.3.0 + resolution: "eslint-visitor-keys@npm:1.3.0" + checksum: 37a19b712f42f4c9027e8ba98c2b06031c17e0c0a4c696cd429bd9ee04eb43889c446f2cd545e1ff51bef9593fcec94ecd2c2ef89129fcbbf3adadbef520376a + languageName: node + linkType: hard + +"eslint-visitor-keys@npm:^2.0.0": + version: 2.1.0 + resolution: "eslint-visitor-keys@npm:2.1.0" + checksum: e3081d7dd2611a35f0388bbdc2f5da60b3a3c5b8b6e928daffff7391146b434d691577aa95064c8b7faad0b8a680266bcda0a42439c18c717b80e6718d7e267d + languageName: node + linkType: hard + +"eslint-webpack-plugin@npm:^2.5.2": + version: 2.7.0 + resolution: "eslint-webpack-plugin@npm:2.7.0" + dependencies: + "@types/eslint": ^7.29.0 + arrify: ^2.0.1 + jest-worker: ^27.5.1 + micromatch: ^4.0.5 + normalize-path: ^3.0.0 + schema-utils: ^3.1.1 + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + webpack: ^4.0.0 || ^5.0.0 + checksum: b6fd7cf4c49078b345a908b82b0bee06bc82ab0cec214ddd5fe5bb18b065765d52a07ad4077f6bba5830ba2f55f37d8f2208a52d11f34ee29df81153e3124d9c + languageName: node + linkType: hard + +"eslint-webpack-plugin@npm:^3.1.1": + version: 3.2.0 + resolution: "eslint-webpack-plugin@npm:3.2.0" + dependencies: + "@types/eslint": ^7.29.0 || ^8.4.1 + jest-worker: ^28.0.2 + micromatch: ^4.0.5 + normalize-path: ^3.0.0 + schema-utils: ^4.0.0 + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + webpack: ^5.0.0 + checksum: 095034c35e773fdb21ec7e597ae1f8a6899679c290db29d8568ca94619e8c7f4971f0f9edccc8a965322ab8af9286c87205985a38f4fdcf17654aee7cd8bb7b5 + languageName: node + linkType: hard + +"eslint@npm:^7.11.0": + version: 7.32.0 + resolution: "eslint@npm:7.32.0" + dependencies: + "@babel/code-frame": 7.12.11 + "@eslint/eslintrc": ^0.4.3 + "@humanwhocodes/config-array": ^0.5.0 + ajv: ^6.10.0 + chalk: ^4.0.0 + cross-spawn: ^7.0.2 + debug: ^4.0.1 + doctrine: ^3.0.0 + enquirer: ^2.3.5 + escape-string-regexp: ^4.0.0 + eslint-scope: ^5.1.1 + eslint-utils: ^2.1.0 + eslint-visitor-keys: ^2.0.0 + espree: ^7.3.1 + esquery: ^1.4.0 + esutils: ^2.0.2 + fast-deep-equal: ^3.1.3 + file-entry-cache: ^6.0.1 + functional-red-black-tree: ^1.0.1 + glob-parent: ^5.1.2 + globals: ^13.6.0 + ignore: ^4.0.6 + import-fresh: ^3.0.0 + imurmurhash: ^0.1.4 + is-glob: ^4.0.0 + js-yaml: ^3.13.1 + json-stable-stringify-without-jsonify: ^1.0.1 + levn: ^0.4.1 + lodash.merge: ^4.6.2 + minimatch: ^3.0.4 + natural-compare: ^1.4.0 + optionator: ^0.9.1 + progress: ^2.0.0 + regexpp: ^3.1.0 + semver: ^7.2.1 + strip-ansi: ^6.0.0 + strip-json-comments: ^3.1.0 + table: ^6.0.9 + text-table: ^0.2.0 + v8-compile-cache: ^2.0.3 + bin: + eslint: bin/eslint.js + checksum: cc85af9985a3a11085c011f3d27abe8111006d34cc274291b3c4d7bea51a4e2ff6135780249becd919ba7f6d6d1ecc38a6b73dacb6a7be08d38453b344dc8d37 + languageName: node + linkType: hard + +"espree@npm:^7.3.0, espree@npm:^7.3.1": + version: 7.3.1 + resolution: "espree@npm:7.3.1" + dependencies: + acorn: ^7.4.0 + acorn-jsx: ^5.3.1 + eslint-visitor-keys: ^1.3.0 + checksum: aa9b50dcce883449af2e23bc2b8d9abb77118f96f4cb313935d6b220f77137eaef7724a83c3f6243b96bc0e4ab14766198e60818caad99f9519ae5a336a39b45 + languageName: node + linkType: hard + +"esprima@npm:1.2.2": + version: 1.2.2 + resolution: "esprima@npm:1.2.2" + bin: + esparse: ./bin/esparse.js + esvalidate: ./bin/esvalidate.js + checksum: 4f10006f0e315f2f7d8cf6630e465f183512f1ab2e862b11785a133ce37ed1696573deefb5256e510eaa4368342b13b393334477f6ccdcdb8f10e782b0f5e6dc + languageName: node + linkType: hard + +"esprima@npm:^4.0.0, esprima@npm:^4.0.1": + version: 4.0.1 + resolution: "esprima@npm:4.0.1" + bin: + esparse: ./bin/esparse.js + esvalidate: ./bin/esvalidate.js + checksum: b45bc805a613dbea2835278c306b91aff6173c8d034223fa81498c77dcbce3b2931bf6006db816f62eacd9fd4ea975dfd85a5b7f3c6402cfd050d4ca3c13a628 + languageName: node + linkType: hard + +"esquery@npm:^1.4.0": + version: 1.5.0 + resolution: "esquery@npm:1.5.0" + dependencies: + estraverse: ^5.1.0 + checksum: aefb0d2596c230118656cd4ec7532d447333a410a48834d80ea648b1e7b5c9bc9ed8b5e33a89cb04e487b60d622f44cf5713bf4abed7c97343edefdc84a35900 + languageName: node + linkType: hard + +"esrecurse@npm:^4.1.0, esrecurse@npm:^4.3.0": + version: 4.3.0 + resolution: "esrecurse@npm:4.3.0" + dependencies: + estraverse: ^5.2.0 + checksum: ebc17b1a33c51cef46fdc28b958994b1dc43cd2e86237515cbc3b4e5d2be6a811b2315d0a1a4d9d340b6d2308b15322f5c8291059521cc5f4802f65e7ec32837 + languageName: node + linkType: hard + +"estraverse@npm:^4.1.1, estraverse@npm:^4.2.0": + version: 4.3.0 + resolution: "estraverse@npm:4.3.0" + checksum: a6299491f9940bb246124a8d44b7b7a413a8336f5436f9837aaa9330209bd9ee8af7e91a654a3545aee9c54b3308e78ee360cef1d777d37cfef77d2fa33b5827 + languageName: node + linkType: hard + +"estraverse@npm:^5.1.0, estraverse@npm:^5.2.0, estraverse@npm:^5.3.0": + version: 5.3.0 + resolution: "estraverse@npm:5.3.0" + checksum: 072780882dc8416ad144f8fe199628d2b3e7bbc9989d9ed43795d2c90309a2047e6bc5979d7e2322a341163d22cfad9e21f4110597fe487519697389497e4e2b + languageName: node + linkType: hard + +"estree-walker@npm:^0.6.1": + version: 0.6.1 + resolution: "estree-walker@npm:0.6.1" + checksum: 9d6f82a4921f11eec18f8089fb3cce6e53bcf45a8e545c42a2674d02d055fb30f25f90495f8be60803df6c39680c80dcee7f944526867eb7aa1fc9254883b23d + languageName: node + linkType: hard + +"estree-walker@npm:^1.0.1": + version: 1.0.1 + resolution: "estree-walker@npm:1.0.1" + checksum: 7e70da539691f6db03a08e7ce94f394ce2eef4180e136d251af299d41f92fb2d28ebcd9a6e393e3728d7970aeb5358705ddf7209d52fbcb2dd4693f95dcf925f + languageName: node + linkType: hard + +"esutils@npm:^2.0.2": + version: 2.0.3 + resolution: "esutils@npm:2.0.3" + checksum: 22b5b08f74737379a840b8ed2036a5fb35826c709ab000683b092d9054e5c2a82c27818f12604bfc2a9a76b90b6834ef081edbc1c7ae30d1627012e067c6ec87 + languageName: node + linkType: hard + +"etag@npm:~1.8.1": + version: 1.8.1 + resolution: "etag@npm:1.8.1" + checksum: 571aeb3dbe0f2bbd4e4fadbdb44f325fc75335cd5f6f6b6a091e6a06a9f25ed5392f0863c5442acb0646787446e816f13cbfc6edce5b07658541dff573cab1ff + languageName: node + linkType: hard + +"eventemitter3@npm:^4.0.0": + version: 4.0.7 + resolution: "eventemitter3@npm:4.0.7" + checksum: 1875311c42fcfe9c707b2712c32664a245629b42bb0a5a84439762dd0fd637fc54d078155ea83c2af9e0323c9ac13687e03cfba79b03af9f40c89b4960099374 + languageName: node + linkType: hard + +"events@npm:^3.0.0": + version: 3.3.0 + resolution: "events@npm:3.3.0" + checksum: f6f487ad2198aa41d878fa31452f1a3c00958f46e9019286ff4787c84aac329332ab45c9cdc8c445928fc6d7ded294b9e005a7fce9426488518017831b272780 + languageName: node + linkType: hard + +"eventsource@npm:^2.0.2": + version: 2.0.2 + resolution: "eventsource@npm:2.0.2" + checksum: c0072d972753e10c705d9b2285b559184bf29d011bc208973dde9c8b6b8b7b6fdad4ef0846cecb249f7b1585e860fdf324cbd2ac854a76bc53649e797496e99a + languageName: node + linkType: hard + +"evp_bytestokey@npm:^1.0.0, evp_bytestokey@npm:^1.0.3": + version: 1.0.3 + resolution: "evp_bytestokey@npm:1.0.3" + dependencies: + md5.js: ^1.3.4 + node-gyp: latest + safe-buffer: ^5.1.1 + checksum: ad4e1577f1a6b721c7800dcc7c733fe01f6c310732bb5bf2240245c2a5b45a38518b91d8be2c610611623160b9d1c0e91f1ce96d639f8b53e8894625cf20fa45 + languageName: node + linkType: hard + +"exec-sh@npm:^0.3.2": + version: 0.3.6 + resolution: "exec-sh@npm:0.3.6" + checksum: 0be4f06929c8e4834ea4812f29fe59e2dfcc1bc3fc4b4bb71acb38a500c3b394628a05ef7ba432520bc6c5ec4fadab00cc9c513c4ff6a32104965af302e998e0 + languageName: node + linkType: hard + +"execa@npm:^1.0.0": + version: 1.0.0 + resolution: "execa@npm:1.0.0" + dependencies: + cross-spawn: ^6.0.0 + get-stream: ^4.0.0 + is-stream: ^1.1.0 + npm-run-path: ^2.0.0 + p-finally: ^1.0.0 + signal-exit: ^3.0.0 + strip-eof: ^1.0.0 + checksum: ddf1342c1c7d02dd93b41364cd847640f6163350d9439071abf70bf4ceb1b9b2b2e37f54babb1d8dc1df8e0d8def32d0e81e74a2e62c3e1d70c303eb4c306bc4 + languageName: node + linkType: hard + +"execa@npm:^4.0.0": + version: 4.1.0 + resolution: "execa@npm:4.1.0" + dependencies: + cross-spawn: ^7.0.0 + get-stream: ^5.0.0 + human-signals: ^1.1.1 + is-stream: ^2.0.0 + merge-stream: ^2.0.0 + npm-run-path: ^4.0.0 + onetime: ^5.1.0 + signal-exit: ^3.0.2 + strip-final-newline: ^2.0.0 + checksum: e30d298934d9c52f90f3847704fd8224e849a081ab2b517bbc02f5f7732c24e56a21f14cb96a08256deffeb2d12b2b7cb7e2b014a12fb36f8d3357e06417ed55 + languageName: node + linkType: hard + +"exit@npm:^0.1.2": + version: 0.1.2 + resolution: "exit@npm:0.1.2" + checksum: abc407f07a875c3961e4781dfcb743b58d6c93de9ab263f4f8c9d23bb6da5f9b7764fc773f86b43dd88030444d5ab8abcb611cb680fba8ca075362b77114bba3 + languageName: node + linkType: hard + +"expand-brackets@npm:^2.1.4": + version: 2.1.4 + resolution: "expand-brackets@npm:2.1.4" + dependencies: + debug: ^2.3.3 + define-property: ^0.2.5 + extend-shallow: ^2.0.1 + posix-character-classes: ^0.1.0 + regex-not: ^1.0.0 + snapdragon: ^0.8.1 + to-regex: ^3.0.1 + checksum: 1781d422e7edfa20009e2abda673cadb040a6037f0bd30fcd7357304f4f0c284afd420d7622722ca4a016f39b6d091841ab57b401c1f7e2e5131ac65b9f14fa1 + languageName: node + linkType: hard + +"expect@npm:^26.6.0, expect@npm:^26.6.2": + version: 26.6.2 + resolution: "expect@npm:26.6.2" + dependencies: + "@jest/types": ^26.6.2 + ansi-styles: ^4.0.0 + jest-get-type: ^26.3.0 + jest-matcher-utils: ^26.6.2 + jest-message-util: ^26.6.2 + jest-regex-util: ^26.0.0 + checksum: 79a9b888c5c6d37d11f2cb76def6cf1dc8ff098d38662ee20c9f2ee0da67e9a93435f2327854b2e7554732153870621843e7f83e8cefb1250447ee2bc39883a4 + languageName: node + linkType: hard + +"expect@npm:^29.0.0": + version: 29.7.0 + resolution: "expect@npm:29.7.0" + dependencies: + "@jest/expect-utils": ^29.7.0 + jest-get-type: ^29.6.3 + jest-matcher-utils: ^29.7.0 + jest-message-util: ^29.7.0 + jest-util: ^29.7.0 + checksum: 9257f10288e149b81254a0fda8ffe8d54a7061cd61d7515779998b012579d2b8c22354b0eb901daf0145f347403da582f75f359f4810c007182ad3fb318b5c0c + languageName: node + linkType: hard + +"exponential-backoff@npm:^3.1.1": + version: 3.1.1 + resolution: "exponential-backoff@npm:3.1.1" + checksum: 3d21519a4f8207c99f7457287291316306255a328770d320b401114ec8481986e4e467e854cb9914dd965e0a1ca810a23ccb559c642c88f4c7f55c55778a9b48 + languageName: node + linkType: hard + +"express@npm:^4.17.1": + version: 4.18.2 + resolution: "express@npm:4.18.2" + dependencies: + accepts: ~1.3.8 + array-flatten: 1.1.1 + body-parser: 1.20.1 + content-disposition: 0.5.4 + content-type: ~1.0.4 + cookie: 0.5.0 + cookie-signature: 1.0.6 + debug: 2.6.9 + depd: 2.0.0 + encodeurl: ~1.0.2 + escape-html: ~1.0.3 + etag: ~1.8.1 + finalhandler: 1.2.0 + fresh: 0.5.2 + http-errors: 2.0.0 + merge-descriptors: 1.0.1 + methods: ~1.1.2 + on-finished: 2.4.1 + parseurl: ~1.3.3 + path-to-regexp: 0.1.7 + proxy-addr: ~2.0.7 + qs: 6.11.0 + range-parser: ~1.2.1 + safe-buffer: 5.2.1 + send: 0.18.0 + serve-static: 1.15.0 + setprototypeof: 1.2.0 + statuses: 2.0.1 + type-is: ~1.6.18 + utils-merge: 1.0.1 + vary: ~1.1.2 + checksum: 3c4b9b076879442f6b968fe53d85d9f1eeacbb4f4c41e5f16cc36d77ce39a2b0d81b3f250514982110d815b2f7173f5561367f9110fcc541f9371948e8c8b037 + languageName: node + linkType: hard + +"ext@npm:^1.1.2": + version: 1.7.0 + resolution: "ext@npm:1.7.0" + dependencies: + type: ^2.7.2 + checksum: ef481f9ef45434d8c867cfd09d0393b60945b7c8a1798bedc4514cb35aac342ccb8d8ecb66a513e6a2b4ec1e294a338e3124c49b29736f8e7c735721af352c31 + languageName: node + linkType: hard + +"extend-shallow@npm:^2.0.1": + version: 2.0.1 + resolution: "extend-shallow@npm:2.0.1" + dependencies: + is-extendable: ^0.1.0 + checksum: 8fb58d9d7a511f4baf78d383e637bd7d2e80843bd9cd0853649108ea835208fb614da502a553acc30208e1325240bb7cc4a68473021612496bb89725483656d8 + languageName: node + linkType: hard + +"extend-shallow@npm:^3.0.0, extend-shallow@npm:^3.0.2": + version: 3.0.2 + resolution: "extend-shallow@npm:3.0.2" + dependencies: + assign-symbols: ^1.0.0 + is-extendable: ^1.0.1 + checksum: a920b0cd5838a9995ace31dfd11ab5e79bf6e295aa566910ce53dff19f4b1c0fda2ef21f26b28586c7a2450ca2b42d97bd8c0f5cec9351a819222bf861e02461 + languageName: node + linkType: hard + +"extglob@npm:^2.0.4": + version: 2.0.4 + resolution: "extglob@npm:2.0.4" + dependencies: + array-unique: ^0.3.2 + define-property: ^1.0.0 + expand-brackets: ^2.1.4 + extend-shallow: ^2.0.1 + fragment-cache: ^0.2.1 + regex-not: ^1.0.0 + snapdragon: ^0.8.1 + to-regex: ^3.0.1 + checksum: a41531b8934735b684cef5e8c5a01d0f298d7d384500ceca38793a9ce098125aab04ee73e2d75d5b2901bc5dddd2b64e1b5e3bf19139ea48bac52af4a92f1d00 + languageName: node + linkType: hard + +"extract-zip@npm:^1.0.3": + version: 1.7.0 + resolution: "extract-zip@npm:1.7.0" + dependencies: + concat-stream: ^1.6.2 + debug: ^2.6.9 + mkdirp: ^0.5.4 + yauzl: ^2.10.0 + bin: + extract-zip: cli.js + checksum: 011bab660d738614555773d381a6ba4815d98c1cfcdcdf027e154ebcc9fc8c9ef637b3ea5c9b2144013100071ee41722ed041fc9aacc60f6198ef747cac0c073 + languageName: node + linkType: hard + +"extsprintf@npm:^1.2.0": + version: 1.4.1 + resolution: "extsprintf@npm:1.4.1" + checksum: a2f29b241914a8d2bad64363de684821b6b1609d06ae68d5b539e4de6b28659715b5bea94a7265201603713b7027d35399d10b0548f09071c5513e65e8323d33 + languageName: node + linkType: hard + +"fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3": + version: 3.1.3 + resolution: "fast-deep-equal@npm:3.1.3" + checksum: e21a9d8d84f53493b6aa15efc9cfd53dd5b714a1f23f67fb5dc8f574af80df889b3bce25dc081887c6d25457cce704e636395333abad896ccdec03abaf1f3f9d + languageName: node + linkType: hard + +"fast-glob@npm:^3.1.1, fast-glob@npm:^3.2.9": + version: 3.3.1 + resolution: "fast-glob@npm:3.3.1" + dependencies: + "@nodelib/fs.stat": ^2.0.2 + "@nodelib/fs.walk": ^1.2.3 + glob-parent: ^5.1.2 + merge2: ^1.3.0 + micromatch: ^4.0.4 + checksum: b6f3add6403e02cf3a798bfbb1183d0f6da2afd368f27456010c0bc1f9640aea308243d4cb2c0ab142f618276e65ecb8be1661d7c62a7b4e5ba774b9ce5432e5 + languageName: node + linkType: hard + +"fast-json-stable-stringify@npm:^2.0.0, fast-json-stable-stringify@npm:^2.1.0": + version: 2.1.0 + resolution: "fast-json-stable-stringify@npm:2.1.0" + checksum: b191531e36c607977e5b1c47811158733c34ccb3bfde92c44798929e9b4154884378536d26ad90dfecd32e1ffc09c545d23535ad91b3161a27ddbb8ebe0cbecb + languageName: node + linkType: hard + +"fast-levenshtein@npm:^2.0.6, fast-levenshtein@npm:~2.0.6": + version: 2.0.6 + resolution: "fast-levenshtein@npm:2.0.6" + checksum: 92cfec0a8dfafd9c7a15fba8f2cc29cd0b62b85f056d99ce448bbcd9f708e18ab2764bda4dd5158364f4145a7c72788538994f0d1787b956ef0d1062b0f7c24c + languageName: node + linkType: hard + +"fastq@npm:^1.6.0": + version: 1.15.0 + resolution: "fastq@npm:1.15.0" + dependencies: + reusify: ^1.0.4 + checksum: 0170e6bfcd5d57a70412440b8ef600da6de3b2a6c5966aeaf0a852d542daff506a0ee92d6de7679d1de82e644bce69d7a574a6c93f0b03964b5337eed75ada1a + languageName: node + linkType: hard + +"faye-websocket@npm:0.11.3": + version: 0.11.3 + resolution: "faye-websocket@npm:0.11.3" + dependencies: + websocket-driver: ">=0.5.1" + checksum: d7b2d68546812ea24e3079bd1e08bf1d79cd6d6137bfcea565d1cb1f6a5fc8fc29b689df2c1aff8b8b291d60fc808e1b27aa2896b86ba77ded10f1d9734c8e9f + languageName: node + linkType: hard + +"faye-websocket@npm:^0.11.3, faye-websocket@npm:^0.11.4": + version: 0.11.4 + resolution: "faye-websocket@npm:0.11.4" + dependencies: + websocket-driver: ">=0.5.1" + checksum: d49a62caf027f871149fc2b3f3c7104dc6d62744277eb6f9f36e2d5714e847d846b9f7f0d0b7169b25a012e24a594cde11a93034b30732e4c683f20b8a5019fa + languageName: node + linkType: hard + +"fb-watchman@npm:^2.0.0": + version: 2.0.2 + resolution: "fb-watchman@npm:2.0.2" + dependencies: + bser: 2.1.1 + checksum: b15a124cef28916fe07b400eb87cbc73ca082c142abf7ca8e8de6af43eca79ca7bd13eb4d4d48240b3bd3136eaac40d16e42d6edf87a8e5d1dd8070626860c78 + languageName: node + linkType: hard + +"fd-slicer@npm:~1.1.0": + version: 1.1.0 + resolution: "fd-slicer@npm:1.1.0" + dependencies: + pend: ~1.2.0 + checksum: c8585fd5713f4476eb8261150900d2cb7f6ff2d87f8feb306ccc8a1122efd152f1783bdb2b8dc891395744583436bfd8081d8e63ece0ec8687eeefea394d4ff2 + languageName: node + linkType: hard + +"figgy-pudding@npm:^3.5.1": + version: 3.5.2 + resolution: "figgy-pudding@npm:3.5.2" + checksum: 4090bd66193693dcda605e44d6b8715d8fb5c92a67acd57826e55cf816a342f550d57e5638f822b39366e1b2fdb244e99b3068a37213aa1d6c1bf602b8fde5ae + languageName: node + linkType: hard + +"file-entry-cache@npm:^6.0.1": + version: 6.0.1 + resolution: "file-entry-cache@npm:6.0.1" + dependencies: + flat-cache: ^3.0.4 + checksum: f49701feaa6314c8127c3c2f6173cfefff17612f5ed2daaafc6da13b5c91fd43e3b2a58fd0d63f9f94478a501b167615931e7200e31485e320f74a33885a9c74 + languageName: node + linkType: hard + +"file-loader@npm:6.1.1": + version: 6.1.1 + resolution: "file-loader@npm:6.1.1" + dependencies: + loader-utils: ^2.0.0 + schema-utils: ^3.0.0 + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + checksum: 6369da5af456b640599d7ede7a3a9a55e485138a7829c583313d5165d0984c3d337de3aebee32fdfa3295facb4a44b74a9c3c956b1e0e30e8c96152106ff4b23 + languageName: node + linkType: hard + +"file-uri-to-path@npm:1.0.0": + version: 1.0.0 + resolution: "file-uri-to-path@npm:1.0.0" + checksum: b648580bdd893a008c92c7ecc96c3ee57a5e7b6c4c18a9a09b44fb5d36d79146f8e442578bc0e173dc027adf3987e254ba1dfd6e3ec998b7c282873010502144 + languageName: node + linkType: hard + +"filelist@npm:^1.0.4": + version: 1.0.4 + resolution: "filelist@npm:1.0.4" + dependencies: + minimatch: ^5.0.1 + checksum: a303573b0821e17f2d5e9783688ab6fbfce5d52aaac842790ae85e704a6f5e4e3538660a63183d6453834dedf1e0f19a9dadcebfa3e926c72397694ea11f5160 + languageName: node + linkType: hard + +"filename-reserved-regex@npm:^2.0.0": + version: 2.0.0 + resolution: "filename-reserved-regex@npm:2.0.0" + checksum: 323a0020fd7f243238ffccab9d728cbc5f3a13c84b2c10e01efb09b8324561d7a51776be76f36603c734d4f69145c39a5d12492bf6142a28b50d7f90bd6190bc + languageName: node + linkType: hard + +"filenamify@npm:^4.3.0": + version: 4.3.0 + resolution: "filenamify@npm:4.3.0" + dependencies: + filename-reserved-regex: ^2.0.0 + strip-outer: ^1.0.1 + trim-repeated: ^1.0.0 + checksum: 5b71a7ff8e958c8621957e6fbf7872024126d3b5da50f59b1634af3343ba1a69d4cc15cfe4ca4bbfa7c959ad4d98614ee51e6f1d9fa7326eef8ceda2da8cd74e + languageName: node + linkType: hard + +"filesize@npm:6.1.0": + version: 6.1.0 + resolution: "filesize@npm:6.1.0" + checksum: c46d644cb562fba7b7e837d5cd339394492abaa06722018b91a97d2a63b6c753ef30653de5c03bf178c631185bf55c3561c28fa9ccc4e9755f42d853c6ed4d09 + languageName: node + linkType: hard + +"fill-range@npm:^4.0.0": + version: 4.0.0 + resolution: "fill-range@npm:4.0.0" + dependencies: + extend-shallow: ^2.0.1 + is-number: ^3.0.0 + repeat-string: ^1.6.1 + to-regex-range: ^2.1.0 + checksum: dbb5102467786ab42bc7a3ec7380ae5d6bfd1b5177b2216de89e4a541193f8ba599a6db84651bd2c58c8921db41b8cc3d699ea83b477342d3ce404020f73c298 + languageName: node + linkType: hard + +"fill-range@npm:^7.0.1": + version: 7.0.1 + resolution: "fill-range@npm:7.0.1" + dependencies: + to-regex-range: ^5.0.1 + checksum: cc283f4e65b504259e64fd969bcf4def4eb08d85565e906b7d36516e87819db52029a76b6363d0f02d0d532f0033c9603b9e2d943d56ee3b0d4f7ad3328ff917 + languageName: node + linkType: hard + +"finalhandler@npm:1.2.0": + version: 1.2.0 + resolution: "finalhandler@npm:1.2.0" + dependencies: + debug: 2.6.9 + encodeurl: ~1.0.2 + escape-html: ~1.0.3 + on-finished: 2.4.1 + parseurl: ~1.3.3 + statuses: 2.0.1 + unpipe: ~1.0.0 + checksum: 92effbfd32e22a7dff2994acedbd9bcc3aa646a3e919ea6a53238090e87097f8ef07cced90aa2cc421abdf993aefbdd5b00104d55c7c5479a8d00ed105b45716 + languageName: node + linkType: hard + +"find-cache-dir@npm:^2.1.0": + version: 2.1.0 + resolution: "find-cache-dir@npm:2.1.0" + dependencies: + commondir: ^1.0.1 + make-dir: ^2.0.0 + pkg-dir: ^3.0.0 + checksum: 60ad475a6da9f257df4e81900f78986ab367d4f65d33cf802c5b91e969c28a8762f098693d7a571b6e4dd4c15166c2da32ae2d18b6766a18e2071079448fdce4 + languageName: node + linkType: hard + +"find-cache-dir@npm:^3.3.1": + version: 3.3.2 + resolution: "find-cache-dir@npm:3.3.2" + dependencies: + commondir: ^1.0.1 + make-dir: ^3.0.2 + pkg-dir: ^4.1.0 + checksum: 1e61c2e64f5c0b1c535bd85939ae73b0e5773142713273818cc0b393ee3555fb0fd44e1a5b161b8b6c3e03e98c2fcc9c227d784850a13a90a8ab576869576817 + languageName: node + linkType: hard + +"find-root@npm:^1.1.0": + version: 1.1.0 + resolution: "find-root@npm:1.1.0" + checksum: b2a59fe4b6c932eef36c45a048ae8f93c85640212ebe8363164814990ee20f154197505965f3f4f102efc33bfb1cbc26fd17c4a2fc739ebc51b886b137cbefaf + languageName: node + linkType: hard + +"find-up@npm:4.1.0, find-up@npm:^4.0.0, find-up@npm:^4.1.0": + version: 4.1.0 + resolution: "find-up@npm:4.1.0" + dependencies: + locate-path: ^5.0.0 + path-exists: ^4.0.0 + checksum: 4c172680e8f8c1f78839486e14a43ef82e9decd0e74145f40707cc42e7420506d5ec92d9a11c22bd2c48fb0c384ea05dd30e10dd152fefeec6f2f75282a8b844 + languageName: node + linkType: hard + +"find-up@npm:^3.0.0": + version: 3.0.0 + resolution: "find-up@npm:3.0.0" + dependencies: + locate-path: ^3.0.0 + checksum: 38eba3fe7a66e4bc7f0f5a1366dc25508b7cfc349f852640e3678d26ad9a6d7e2c43eff0a472287de4a9753ef58f066a0ea892a256fa3636ad51b3fe1e17fae9 + languageName: node + linkType: hard + +"firebase@npm:^8.6.7": + version: 8.10.1 + resolution: "firebase@npm:8.10.1" + dependencies: + "@firebase/analytics": 0.6.18 + "@firebase/app": 0.6.30 + "@firebase/app-check": 0.3.2 + "@firebase/app-types": 0.6.3 + "@firebase/auth": 0.16.8 + "@firebase/database": 0.11.0 + "@firebase/firestore": 2.4.1 + "@firebase/functions": 0.6.16 + "@firebase/installations": 0.4.32 + "@firebase/messaging": 0.8.0 + "@firebase/performance": 0.4.18 + "@firebase/polyfill": 0.3.36 + "@firebase/remote-config": 0.1.43 + "@firebase/storage": 0.7.1 + "@firebase/util": 1.3.0 + checksum: bc55b8b4810830813f4674a5e154a3e3f53bd703d4ed281e6f3d5a5453bb834abb93a073020f223ad99e4425ceed9328e611b5e11af82421532a977306560abb + languageName: node + linkType: hard + +"flat-cache@npm:^3.0.4": + version: 3.1.1 + resolution: "flat-cache@npm:3.1.1" + dependencies: + flatted: ^3.2.9 + keyv: ^4.5.3 + rimraf: ^3.0.2 + checksum: 4958cfe0f46acf84953d4e16676ef5f0d38eab3a92d532a1e8d5f88f11eea8b36d5d598070ff2aeae15f1fde18f8d7d089eefaf9db10b5a587cc1c9072325c7a + languageName: node + linkType: hard + +"flatted@npm:^3.2.9": + version: 3.2.9 + resolution: "flatted@npm:3.2.9" + checksum: f14167fbe26a9d20f6fca8d998e8f1f41df72c8e81f9f2c9d61ed2bea058248f5e1cbd05e7f88c0e5087a6a0b822a1e5e2b446e879f3cfbe0b07ba2d7f80b026 + languageName: node + linkType: hard + +"flatten@npm:^1.0.2": + version: 1.0.3 + resolution: "flatten@npm:1.0.3" + checksum: 5c57379816f1692aaa79fbc6390e0a0644e5e8442c5783ed57c6d315468eddbc53a659eaa03c9bb1e771b0f4a9bd8dd8a2620286bf21fd6538a7857321fdfb20 + languageName: node + linkType: hard + +"flush-write-stream@npm:^1.0.0": + version: 1.1.1 + resolution: "flush-write-stream@npm:1.1.1" + dependencies: + inherits: ^2.0.3 + readable-stream: ^2.3.6 + checksum: 42e07747f83bcd4e799da802e621d6039787749ffd41f5517f8c4f786ee967e31ba32b09f8b28a9c6f67bd4f5346772e604202df350e8d99f4141771bae31279 + languageName: node + linkType: hard + +"follow-redirects@npm:^1.0.0, follow-redirects@npm:^1.14.7": + version: 1.15.3 + resolution: "follow-redirects@npm:1.15.3" + peerDependenciesMeta: + debug: + optional: true + checksum: 584da22ec5420c837bd096559ebfb8fe69d82512d5585004e36a3b4a6ef6d5905780e0c74508c7b72f907d1fa2b7bd339e613859e9c304d0dc96af2027fd0231 + languageName: node + linkType: hard + +"for-each@npm:^0.3.3": + version: 0.3.3 + resolution: "for-each@npm:0.3.3" + dependencies: + is-callable: ^1.1.3 + checksum: 6c48ff2bc63362319c65e2edca4a8e1e3483a2fabc72fbe7feaf8c73db94fc7861bd53bc02c8a66a0c1dd709da6b04eec42e0abdd6b40ce47305ae92a25e5d28 + languageName: node + linkType: hard + +"for-in@npm:^1.0.2": + version: 1.0.2 + resolution: "for-in@npm:1.0.2" + checksum: 09f4ae93ce785d253ac963d94c7f3432d89398bf25ac7a24ed034ca393bf74380bdeccc40e0f2d721a895e54211b07c8fad7132e8157827f6f7f059b70b4043d + languageName: node + linkType: hard + +"foreground-child@npm:^3.1.0": + version: 3.1.1 + resolution: "foreground-child@npm:3.1.1" + dependencies: + cross-spawn: ^7.0.0 + signal-exit: ^4.0.1 + checksum: 139d270bc82dc9e6f8bc045fe2aae4001dc2472157044fdfad376d0a3457f77857fa883c1c8b21b491c6caade9a926a4bed3d3d2e8d3c9202b151a4cbbd0bcd5 + languageName: node + linkType: hard + +"fork-ts-checker-webpack-plugin@npm:4.1.6": + version: 4.1.6 + resolution: "fork-ts-checker-webpack-plugin@npm:4.1.6" + dependencies: + "@babel/code-frame": ^7.5.5 + chalk: ^2.4.1 + micromatch: ^3.1.10 + minimatch: ^3.0.4 + semver: ^5.6.0 + tapable: ^1.0.0 + worker-rpc: ^0.1.0 + checksum: 4cc4fa7919dd9a0d765514d064c86e3a6f9cea8e700996b3e775cfcc0280f606a2dd16203d9b7e294b64e900795b0d80eb41fc8c192857d3350e407f14ef3eed + languageName: node + linkType: hard + +"form-data@npm:^3.0.0": + version: 3.0.1 + resolution: "form-data@npm:3.0.1" + dependencies: + asynckit: ^0.4.0 + combined-stream: ^1.0.8 + mime-types: ^2.1.12 + checksum: b019e8d35c8afc14a2bd8a7a92fa4f525a4726b6d5a9740e8d2623c30e308fbb58dc8469f90415a856698933c8479b01646a9dff33c87cc4e76d72aedbbf860d + languageName: node + linkType: hard + +"form-data@npm:^4.0.0": + version: 4.0.0 + resolution: "form-data@npm:4.0.0" + dependencies: + asynckit: ^0.4.0 + combined-stream: ^1.0.8 + mime-types: ^2.1.12 + checksum: 01135bf8675f9d5c61ff18e2e2932f719ca4de964e3be90ef4c36aacfc7b9cb2fceb5eca0b7e0190e3383fe51c5b37f4cb80b62ca06a99aaabfcfd6ac7c9328c + languageName: node + linkType: hard + +"forwarded@npm:0.2.0": + version: 0.2.0 + resolution: "forwarded@npm:0.2.0" + checksum: fd27e2394d8887ebd16a66ffc889dc983fbbd797d5d3f01087c020283c0f019a7d05ee85669383d8e0d216b116d720fc0cef2f6e9b7eb9f4c90c6e0bc7fd28e6 + languageName: node + linkType: hard + +"fragment-cache@npm:^0.2.1": + version: 0.2.1 + resolution: "fragment-cache@npm:0.2.1" + dependencies: + map-cache: ^0.2.2 + checksum: 1cbbd0b0116b67d5790175de0038a11df23c1cd2e8dcdbade58ebba5594c2d641dade6b4f126d82a7b4a6ffc2ea12e3d387dbb64ea2ae97cf02847d436f60fdc + languageName: node + linkType: hard + +"fresh@npm:0.5.2": + version: 0.5.2 + resolution: "fresh@npm:0.5.2" + checksum: 13ea8b08f91e669a64e3ba3a20eb79d7ca5379a81f1ff7f4310d54e2320645503cc0c78daedc93dfb6191287295f6479544a649c64d8e41a1c0fb0c221552346 + languageName: node + linkType: hard + +"from2@npm:^2.1.0": + version: 2.3.0 + resolution: "from2@npm:2.3.0" + dependencies: + inherits: ^2.0.1 + readable-stream: ^2.0.0 + checksum: 6080eba0793dce32f475141fb3d54cc15f84ee52e420ee22ac3ab0ad639dc95a1875bc6eb9c0e1140e94972a36a89dc5542491b85f1ab8df0c126241e0f1a61b + languageName: node + linkType: hard + +"fs-extra@npm:^10.0.0": + version: 10.1.0 + resolution: "fs-extra@npm:10.1.0" + dependencies: + graceful-fs: ^4.2.0 + jsonfile: ^6.0.1 + universalify: ^2.0.0 + checksum: dc94ab37096f813cc3ca12f0f1b5ad6744dfed9ed21e953d72530d103cea193c2f81584a39e9dee1bea36de5ee66805678c0dddc048e8af1427ac19c00fffc50 + languageName: node + linkType: hard + +"fs-extra@npm:^11.1.1": + version: 11.1.1 + resolution: "fs-extra@npm:11.1.1" + dependencies: + graceful-fs: ^4.2.0 + jsonfile: ^6.0.1 + universalify: ^2.0.0 + checksum: fb883c68245b2d777fbc1f2082c9efb084eaa2bbf9fddaa366130d196c03608eebef7fb490541276429ee1ca99f317e2d73e96f5ca0999eefedf5a624ae1edfd + languageName: node + linkType: hard + +"fs-extra@npm:^7.0.0": + version: 7.0.1 + resolution: "fs-extra@npm:7.0.1" + dependencies: + graceful-fs: ^4.1.2 + jsonfile: ^4.0.0 + universalify: ^0.1.0 + checksum: 141b9dccb23b66a66cefdd81f4cda959ff89282b1d721b98cea19ba08db3dcbe6f862f28841f3cf24bb299e0b7e6c42303908f65093cb7e201708e86ea5a8dcf + languageName: node + linkType: hard + +"fs-extra@npm:^8.1.0": + version: 8.1.0 + resolution: "fs-extra@npm:8.1.0" + dependencies: + graceful-fs: ^4.2.0 + jsonfile: ^4.0.0 + universalify: ^0.1.0 + checksum: bf44f0e6cea59d5ce071bba4c43ca76d216f89e402dc6285c128abc0902e9b8525135aa808adad72c9d5d218e9f4bcc63962815529ff2f684ad532172a284880 + languageName: node + linkType: hard + +"fs-extra@npm:^9.0.0, fs-extra@npm:^9.0.1": + version: 9.1.0 + resolution: "fs-extra@npm:9.1.0" + dependencies: + at-least-node: ^1.0.0 + graceful-fs: ^4.2.0 + jsonfile: ^6.0.1 + universalify: ^2.0.0 + checksum: ba71ba32e0faa74ab931b7a0031d1523c66a73e225de7426e275e238e312d07313d2da2d33e34a52aa406c8763ade5712eb3ec9ba4d9edce652bcacdc29e6b20 + languageName: node + linkType: hard + +"fs-minipass@npm:^2.0.0": + version: 2.1.0 + resolution: "fs-minipass@npm:2.1.0" + dependencies: + minipass: ^3.0.0 + checksum: 1b8d128dae2ac6cc94230cc5ead341ba3e0efaef82dab46a33d171c044caaa6ca001364178d42069b2809c35a1c3c35079a32107c770e9ffab3901b59af8c8b1 + languageName: node + linkType: hard + +"fs-minipass@npm:^3.0.0": + version: 3.0.3 + resolution: "fs-minipass@npm:3.0.3" + dependencies: + minipass: ^7.0.3 + checksum: 8722a41109130851d979222d3ec88aabaceeaaf8f57b2a8f744ef8bd2d1ce95453b04a61daa0078822bc5cd21e008814f06fe6586f56fef511e71b8d2394d802 + languageName: node + linkType: hard + +"fs-write-stream-atomic@npm:^1.0.8": + version: 1.0.10 + resolution: "fs-write-stream-atomic@npm:1.0.10" + dependencies: + graceful-fs: ^4.1.2 + iferr: ^0.1.5 + imurmurhash: ^0.1.4 + readable-stream: 1 || 2 + checksum: 43c2d6817b72127793abc811ebf87a135b03ac7cbe41cdea9eeacf59b23e6e29b595739b083e9461303d525687499a1aaefcec3e5ff9bc82b170edd3dc467ccc + languageName: node + linkType: hard + +"fs.realpath@npm:^1.0.0": + version: 1.0.0 + resolution: "fs.realpath@npm:1.0.0" + checksum: 99ddea01a7e75aa276c250a04eedeffe5662bce66c65c07164ad6264f9de18fb21be9433ead460e54cff20e31721c811f4fb5d70591799df5f85dce6d6746fd0 + languageName: node + linkType: hard + +"fsevents@npm:^1.2.7": + version: 1.2.13 + resolution: "fsevents@npm:1.2.13" + dependencies: + bindings: ^1.5.0 + nan: ^2.12.1 + checksum: ae855aa737aaa2f9167e9f70417cf6e45a5cd11918e1fee9923709a0149be52416d765433b4aeff56c789b1152e718cd1b13ddec6043b78cdda68260d86383c1 + conditions: os=darwin + languageName: node + linkType: hard + +"fsevents@npm:^2.1.2, fsevents@npm:^2.1.3, fsevents@npm:~2.3.2": + version: 2.3.3 + resolution: "fsevents@npm:2.3.3" + dependencies: + node-gyp: latest + checksum: 11e6ea6fea15e42461fc55b4b0e4a0a3c654faa567f1877dbd353f39156f69def97a69936d1746619d656c4b93de2238bf731f6085a03a50cabf287c9d024317 + conditions: os=darwin + languageName: node + linkType: hard + +"fsevents@patch:fsevents@^1.2.7#~builtin": + version: 1.2.13 + resolution: "fsevents@patch:fsevents@npm%3A1.2.13#~builtin::version=1.2.13&hash=d11327" + dependencies: + bindings: ^1.5.0 + nan: ^2.12.1 + conditions: os=darwin + languageName: node + linkType: hard + +"fsevents@patch:fsevents@^2.1.2#~builtin, fsevents@patch:fsevents@^2.1.3#~builtin, fsevents@patch:fsevents@~2.3.2#~builtin": + version: 2.3.3 + resolution: "fsevents@patch:fsevents@npm%3A2.3.3#~builtin::version=2.3.3&hash=df0bf1" + dependencies: + node-gyp: latest + conditions: os=darwin + languageName: node + linkType: hard + +"function-bind@npm:^1.1.1, function-bind@npm:^1.1.2": + version: 1.1.2 + resolution: "function-bind@npm:1.1.2" + checksum: 2b0ff4ce708d99715ad14a6d1f894e2a83242e4a52ccfcefaee5e40050562e5f6dafc1adbb4ce2d4ab47279a45dc736ab91ea5042d843c3c092820dfe032efb1 + languageName: node + linkType: hard + +"function.prototype.name@npm:^1.1.5, function.prototype.name@npm:^1.1.6": + version: 1.1.6 + resolution: "function.prototype.name@npm:1.1.6" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + functions-have-names: ^1.2.3 + checksum: 7a3f9bd98adab09a07f6e1f03da03d3f7c26abbdeaeee15223f6c04a9fb5674792bdf5e689dac19b97ac71de6aad2027ba3048a9b883aa1b3173eed6ab07f479 + languageName: node + linkType: hard + +"functional-red-black-tree@npm:^1.0.1": + version: 1.0.1 + resolution: "functional-red-black-tree@npm:1.0.1" + checksum: ca6c170f37640e2d94297da8bb4bf27a1d12bea3e00e6a3e007fd7aa32e37e000f5772acf941b4e4f3cf1c95c3752033d0c509af157ad8f526e7f00723b9eb9f + languageName: node + linkType: hard + +"functions-have-names@npm:^1.2.3": + version: 1.2.3 + resolution: "functions-have-names@npm:1.2.3" + checksum: c3f1f5ba20f4e962efb71344ce0a40722163e85bee2101ce25f88214e78182d2d2476aa85ef37950c579eb6cf6ee811c17b3101bb84004bb75655f3e33f3fdb5 + languageName: node + linkType: hard + +"gauge@npm:^3.0.0": + version: 3.0.2 + resolution: "gauge@npm:3.0.2" + dependencies: + aproba: ^1.0.3 || ^2.0.0 + color-support: ^1.1.2 + console-control-strings: ^1.0.0 + has-unicode: ^2.0.1 + object-assign: ^4.1.1 + signal-exit: ^3.0.0 + string-width: ^4.2.3 + strip-ansi: ^6.0.1 + wide-align: ^1.1.2 + checksum: 81296c00c7410cdd48f997800155fbead4f32e4f82109be0719c63edc8560e6579946cc8abd04205297640691ec26d21b578837fd13a4e96288ab4b40b1dc3e9 + languageName: node + linkType: hard + +"gauge@npm:^4.0.3": + version: 4.0.4 + resolution: "gauge@npm:4.0.4" + dependencies: + aproba: ^1.0.3 || ^2.0.0 + color-support: ^1.1.3 + console-control-strings: ^1.1.0 + has-unicode: ^2.0.1 + signal-exit: ^3.0.7 + string-width: ^4.2.3 + strip-ansi: ^6.0.1 + wide-align: ^1.1.5 + checksum: 788b6bfe52f1dd8e263cda800c26ac0ca2ff6de0b6eee2fe0d9e3abf15e149b651bd27bf5226be10e6e3edb5c4e5d5985a5a1a98137e7a892f75eff76467ad2d + languageName: node + linkType: hard + +"gensync@npm:^1.0.0-beta.1, gensync@npm:^1.0.0-beta.2": + version: 1.0.0-beta.2 + resolution: "gensync@npm:1.0.0-beta.2" + checksum: a7437e58c6be12aa6c90f7730eac7fa9833dc78872b4ad2963d2031b00a3367a93f98aec75f9aaac7220848e4026d67a8655e870b24f20a543d103c0d65952ec + languageName: node + linkType: hard + +"get-caller-file@npm:^2.0.1, get-caller-file@npm:^2.0.5": + version: 2.0.5 + resolution: "get-caller-file@npm:2.0.5" + checksum: b9769a836d2a98c3ee734a88ba712e62703f1df31b94b784762c433c27a386dd6029ff55c2a920c392e33657d80191edbf18c61487e198844844516f843496b9 + languageName: node + linkType: hard + +"get-intrinsic@npm:^1.0.2, get-intrinsic@npm:^1.1.1, get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.0, get-intrinsic@npm:^1.2.1, get-intrinsic@npm:^1.2.2": + version: 1.2.2 + resolution: "get-intrinsic@npm:1.2.2" + dependencies: + function-bind: ^1.1.2 + has-proto: ^1.0.1 + has-symbols: ^1.0.3 + hasown: ^2.0.0 + checksum: 447ff0724df26829908dc033b62732359596fcf66027bc131ab37984afb33842d9cd458fd6cecadfe7eac22fd8a54b349799ed334cf2726025c921c7250e7417 + languageName: node + linkType: hard + +"get-own-enumerable-property-symbols@npm:^3.0.0": + version: 3.0.2 + resolution: "get-own-enumerable-property-symbols@npm:3.0.2" + checksum: 8f0331f14159f939830884799f937343c8c0a2c330506094bc12cbee3665d88337fe97a4ea35c002cc2bdba0f5d9975ad7ec3abb925015cdf2a93e76d4759ede + languageName: node + linkType: hard + +"get-package-type@npm:^0.1.0": + version: 0.1.0 + resolution: "get-package-type@npm:0.1.0" + checksum: bba0811116d11e56d702682ddef7c73ba3481f114590e705fc549f4d868972263896af313c57a25c076e3c0d567e11d919a64ba1b30c879be985fc9d44f96148 + languageName: node + linkType: hard + +"get-stream@npm:^4.0.0, get-stream@npm:^4.1.0": + version: 4.1.0 + resolution: "get-stream@npm:4.1.0" + dependencies: + pump: ^3.0.0 + checksum: 443e1914170c15bd52ff8ea6eff6dfc6d712b031303e36302d2778e3de2506af9ee964d6124010f7818736dcfde05c04ba7ca6cc26883106e084357a17ae7d73 + languageName: node + linkType: hard + +"get-stream@npm:^5.0.0, get-stream@npm:^5.1.0": + version: 5.2.0 + resolution: "get-stream@npm:5.2.0" + dependencies: + pump: ^3.0.0 + checksum: 8bc1a23174a06b2b4ce600df38d6c98d2ef6d84e020c1ddad632ad75bac4e092eeb40e4c09e0761c35fc2dbc5e7fff5dab5e763a383582c4a167dd69a905bd12 + languageName: node + linkType: hard + +"get-symbol-description@npm:^1.0.0": + version: 1.0.0 + resolution: "get-symbol-description@npm:1.0.0" + dependencies: + call-bind: ^1.0.2 + get-intrinsic: ^1.1.1 + checksum: 9ceff8fe968f9270a37a1f73bf3f1f7bda69ca80f4f80850670e0e7b9444ff99323f7ac52f96567f8b5f5fbe7ac717a0d81d3407c7313e82810c6199446a5247 + languageName: node + linkType: hard + +"get-value@npm:^2.0.3, get-value@npm:^2.0.6": + version: 2.0.6 + resolution: "get-value@npm:2.0.6" + checksum: 5c3b99cb5398ea8016bf46ff17afc5d1d286874d2ad38ca5edb6e87d75c0965b0094cb9a9dddef2c59c23d250702323539a7fbdd870620db38c7e7d7ec87c1eb + languageName: node + linkType: hard + +"gh-pages@npm:^6.0.0": + version: 6.0.0 + resolution: "gh-pages@npm:6.0.0" + dependencies: + async: ^3.2.4 + commander: ^11.0.0 + email-addresses: ^5.0.0 + filenamify: ^4.3.0 + find-cache-dir: ^3.3.1 + fs-extra: ^11.1.1 + globby: ^6.1.0 + bin: + gh-pages: bin/gh-pages.js + gh-pages-clean: bin/gh-pages-clean.js + checksum: 031f9070cdcd4fb71a2a8eabec049c885faa17e489a6e37e8f7dfa9bd649607560b0778b8e19a1d9295ebd614668e3854d860d48313cb7b23ee9f3884adef517 + languageName: node + linkType: hard + +"glob-parent@npm:^3.1.0": + version: 3.1.0 + resolution: "glob-parent@npm:3.1.0" + dependencies: + is-glob: ^3.1.0 + path-dirname: ^1.0.0 + checksum: 653d559237e89a11b9934bef3f392ec42335602034c928590544d383ff5ef449f7b12f3cfa539708e74bc0a6c28ab1fe51d663cc07463cdf899ba92afd85a855 + languageName: node + linkType: hard + +"glob-parent@npm:^5.1.2, glob-parent@npm:~5.1.2": + version: 5.1.2 + resolution: "glob-parent@npm:5.1.2" + dependencies: + is-glob: ^4.0.1 + checksum: f4f2bfe2425296e8a47e36864e4f42be38a996db40420fe434565e4480e3322f18eb37589617a98640c5dc8fdec1a387007ee18dbb1f3f5553409c34d17f425e + languageName: node + linkType: hard + +"glob@npm:^10.2.2": + version: 10.3.10 + resolution: "glob@npm:10.3.10" + dependencies: + foreground-child: ^3.1.0 + jackspeak: ^2.3.5 + minimatch: ^9.0.1 + minipass: ^5.0.0 || ^6.0.2 || ^7.0.0 + path-scurry: ^1.10.1 + bin: + glob: dist/esm/bin.mjs + checksum: 4f2fe2511e157b5a3f525a54092169a5f92405f24d2aed3142f4411df328baca13059f4182f1db1bf933e2c69c0bd89e57ae87edd8950cba8c7ccbe84f721cf3 + languageName: node + linkType: hard + +"glob@npm:^7.0.3, glob@npm:^7.0.5, glob@npm:^7.1.1, glob@npm:^7.1.2, glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.1.6": + version: 7.2.3 + resolution: "glob@npm:7.2.3" + dependencies: + fs.realpath: ^1.0.0 + inflight: ^1.0.4 + inherits: 2 + minimatch: ^3.1.1 + once: ^1.3.0 + path-is-absolute: ^1.0.0 + checksum: 29452e97b38fa704dabb1d1045350fb2467cf0277e155aa9ff7077e90ad81d1ea9d53d3ee63bd37c05b09a065e90f16aec4a65f5b8de401d1dac40bc5605d133 + languageName: node + linkType: hard + +"global-agent@npm:^3.0.0": + version: 3.0.0 + resolution: "global-agent@npm:3.0.0" + dependencies: + boolean: ^3.0.1 + es6-error: ^4.1.1 + matcher: ^3.0.0 + roarr: ^2.15.3 + semver: ^7.3.2 + serialize-error: ^7.0.1 + checksum: 75074d80733b4bd5386c47f5df028e798018025beac0ab310e9908c72bf5639e408203e7bca0130d5ee01b5f4abc6d34385d96a9f950ea5fe1979bb431c808f7 + languageName: node + linkType: hard + +"global-dirs@npm:^3.0.0": + version: 3.0.1 + resolution: "global-dirs@npm:3.0.1" + dependencies: + ini: 2.0.0 + checksum: 70147b80261601fd40ac02a104581432325c1c47329706acd773f3a6ce99bb36d1d996038c85ccacd482ad22258ec233c586b6a91535b1a116b89663d49d6438 + languageName: node + linkType: hard + +"global-modules@npm:2.0.0": + version: 2.0.0 + resolution: "global-modules@npm:2.0.0" + dependencies: + global-prefix: ^3.0.0 + checksum: d6197f25856c878c2fb5f038899f2dca7cbb2f7b7cf8999660c0104972d5cfa5c68b5a0a77fa8206bb536c3903a4615665acb9709b4d80846e1bb47eaef65430 + languageName: node + linkType: hard + +"global-prefix@npm:^3.0.0": + version: 3.0.0 + resolution: "global-prefix@npm:3.0.0" + dependencies: + ini: ^1.3.5 + kind-of: ^6.0.2 + which: ^1.3.1 + checksum: 8a82fc1d6f22c45484a4e34656cc91bf021a03e03213b0035098d605bfc612d7141f1e14a21097e8a0413b4884afd5b260df0b6a25605ce9d722e11f1df2881d + languageName: node + linkType: hard + +"global-tunnel-ng@npm:^2.7.1": + version: 2.7.1 + resolution: "global-tunnel-ng@npm:2.7.1" + dependencies: + encodeurl: ^1.0.2 + lodash: ^4.17.10 + npm-conf: ^1.1.3 + tunnel: ^0.0.6 + checksum: b7e016093eab6058b5fdd8caea31c22dc1a607f0f0b41c001ade5e0227c5d74efe9ce9bae56316d794bc1cedd461a187b8b7e8f0a3eb4d194972cdfb9d860af2 + languageName: node + linkType: hard + +"globals@npm:^11.1.0": + version: 11.12.0 + resolution: "globals@npm:11.12.0" + checksum: 67051a45eca3db904aee189dfc7cd53c20c7d881679c93f6146ddd4c9f4ab2268e68a919df740d39c71f4445d2b38ee360fc234428baea1dbdfe68bbcb46979e + languageName: node + linkType: hard + +"globals@npm:^13.6.0, globals@npm:^13.9.0": + version: 13.23.0 + resolution: "globals@npm:13.23.0" + dependencies: + type-fest: ^0.20.2 + checksum: 194c97cf8d1ef6ba59417234c2386549c4103b6e5f24b1ff1952de61a4753e5d2069435ba629de711a6480b1b1d114a98e2ab27f85e966d5a10c319c3bbd3dc3 + languageName: node + linkType: hard + +"globalthis@npm:^1.0.1, globalthis@npm:^1.0.3": + version: 1.0.3 + resolution: "globalthis@npm:1.0.3" + dependencies: + define-properties: ^1.1.3 + checksum: fbd7d760dc464c886d0196166d92e5ffb4c84d0730846d6621a39fbbc068aeeb9c8d1421ad330e94b7bca4bb4ea092f5f21f3d36077812af5d098b4dc006c998 + languageName: node + linkType: hard + +"globby@npm:11.0.1": + version: 11.0.1 + resolution: "globby@npm:11.0.1" + dependencies: + array-union: ^2.1.0 + dir-glob: ^3.0.1 + fast-glob: ^3.1.1 + ignore: ^5.1.4 + merge2: ^1.3.0 + slash: ^3.0.0 + checksum: b0b26e580666ef8caf0b0facd585c1da46eb971207ee9f8c7b690c1372d77602dd072f047f26c3ae1c293807fdf8fb6890d9291d37bc6d2602b1f07386f983e5 + languageName: node + linkType: hard + +"globby@npm:^11.0.3": + version: 11.1.0 + resolution: "globby@npm:11.1.0" + dependencies: + array-union: ^2.1.0 + dir-glob: ^3.0.1 + fast-glob: ^3.2.9 + ignore: ^5.2.0 + merge2: ^1.4.1 + slash: ^3.0.0 + checksum: b4be8885e0cfa018fc783792942d53926c35c50b3aefd3fdcfb9d22c627639dc26bd2327a40a0b74b074100ce95bb7187bfeae2f236856aa3de183af7a02aea6 + languageName: node + linkType: hard + +"globby@npm:^6.1.0": + version: 6.1.0 + resolution: "globby@npm:6.1.0" + dependencies: + array-union: ^1.0.1 + glob: ^7.0.3 + object-assign: ^4.0.1 + pify: ^2.0.0 + pinkie-promise: ^2.0.0 + checksum: 18109d6b9d55643d2b98b59c3cfae7073ccfe39829632f353d516cc124d836c2ddebe48a23f04af63d66a621b6d86dd4cbd7e6af906f2458a7fe510ffc4bd424 + languageName: node + linkType: hard + +"gopd@npm:^1.0.1": + version: 1.0.1 + resolution: "gopd@npm:1.0.1" + dependencies: + get-intrinsic: ^1.1.3 + checksum: a5ccfb8806e0917a94e0b3de2af2ea4979c1da920bc381667c260e00e7cafdbe844e2cb9c5bcfef4e5412e8bf73bab837285bc35c7ba73aaaf0134d4583393a6 + languageName: node + linkType: hard + +"got@npm:^9.6.0": + version: 9.6.0 + resolution: "got@npm:9.6.0" + dependencies: + "@sindresorhus/is": ^0.14.0 + "@szmarczak/http-timer": ^1.1.2 + cacheable-request: ^6.0.0 + decompress-response: ^3.3.0 + duplexer3: ^0.1.4 + get-stream: ^4.1.0 + lowercase-keys: ^1.0.1 + mimic-response: ^1.0.1 + p-cancelable: ^1.0.0 + to-readable-stream: ^1.0.0 + url-parse-lax: ^3.0.0 + checksum: 941807bd9704bacf5eb401f0cc1212ffa1f67c6642f2d028fd75900471c221b1da2b8527f4553d2558f3faeda62ea1cf31665f8b002c6137f5de8732f07370b0 + languageName: node + linkType: hard + +"graceful-fs@npm:^4.1.11, graceful-fs@npm:^4.1.15, graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.4, graceful-fs@npm:^4.2.6, graceful-fs@npm:^4.2.9": + version: 4.2.11 + resolution: "graceful-fs@npm:4.2.11" + checksum: ac85f94da92d8eb6b7f5a8b20ce65e43d66761c55ce85ac96df6865308390da45a8d3f0296dd3a663de65d30ba497bd46c696cc1e248c72b13d6d567138a4fc7 + languageName: node + linkType: hard + +"graceful-readlink@npm:>= 1.0.0": + version: 1.0.1 + resolution: "graceful-readlink@npm:1.0.1" + checksum: 4c1889ca0a6fc0bb9585b55c26a99719be132cbc4b7d84036193b70608059b9783e52e2a866d5a8e39821b16a69e899644ca75c6206563f1319b6720836b9ab2 + languageName: node + linkType: hard + +"growly@npm:^1.3.0": + version: 1.3.0 + resolution: "growly@npm:1.3.0" + checksum: 53cdecd4c16d7d9154a9061a9ccb87d602e957502ca69b529d7d1b2436c2c0b700ec544fc6b3e4cd115d59b81e62e44ce86bd0521403b579d3a2a97d7ce72a44 + languageName: node + linkType: hard + +"grpc@npm:^1.24.11": + version: 1.24.11 + resolution: "grpc@npm:1.24.11" + dependencies: + "@mapbox/node-pre-gyp": ^1.0.4 + "@types/bytebuffer": ^5.0.40 + lodash.camelcase: ^4.3.0 + lodash.clone: ^4.5.0 + nan: ^2.13.2 + protobufjs: ^5.0.3 + checksum: a437525786329ff541d7bbb54e472f52001a4d9b1c2fd896468241e2f070bf558b380b3d19d2b87f401602bd5a319b171e119598f4035958a9519851e91110db + languageName: node + linkType: hard + +"gzip-size@npm:5.1.1": + version: 5.1.1 + resolution: "gzip-size@npm:5.1.1" + dependencies: + duplexer: ^0.1.1 + pify: ^4.0.1 + checksum: 6451ba2210877368f6d9ee9b4dc0d14501671472801323bf81fbd38bdeb8525f40a78be45a59d0182895d51e6b60c6314b7d02bd6ed40e7225a01e8d038aac1b + languageName: node + linkType: hard + +"handle-thing@npm:^2.0.0": + version: 2.0.1 + resolution: "handle-thing@npm:2.0.1" + checksum: 68071f313062315cd9dce55710e9496873945f1dd425107007058fc1629f93002a7649fcc3e464281ce02c7e809a35f5925504ab8105d972cf649f1f47cb7d6c + languageName: node + linkType: hard + +"harmony-reflect@npm:^1.4.6": + version: 1.6.2 + resolution: "harmony-reflect@npm:1.6.2" + checksum: 2e5bae414cd2bfae5476147f9935dc69ee9b9a413206994dcb94c5b3208d4555da3d4313aff6fd14bd9991c1e3ef69cdda5c8fac1eb1d7afc064925839339b8c + languageName: node + linkType: hard + +"has-bigints@npm:^1.0.1, has-bigints@npm:^1.0.2": + version: 1.0.2 + resolution: "has-bigints@npm:1.0.2" + checksum: 390e31e7be7e5c6fe68b81babb73dfc35d413604d7ee5f56da101417027a4b4ce6a27e46eff97ad040c835b5d228676eae99a9b5c3bc0e23c8e81a49241ff45b + languageName: node + linkType: hard + +"has-flag@npm:^3.0.0": + version: 3.0.0 + resolution: "has-flag@npm:3.0.0" + checksum: 4a15638b454bf086c8148979aae044dd6e39d63904cd452d970374fa6a87623423da485dfb814e7be882e05c096a7ccf1ebd48e7e7501d0208d8384ff4dea73b + languageName: node + linkType: hard + +"has-flag@npm:^4.0.0": + version: 4.0.0 + resolution: "has-flag@npm:4.0.0" + checksum: 261a1357037ead75e338156b1f9452c016a37dcd3283a972a30d9e4a87441ba372c8b81f818cd0fbcd9c0354b4ae7e18b9e1afa1971164aef6d18c2b6095a8ad + languageName: node + linkType: hard + +"has-property-descriptors@npm:^1.0.0": + version: 1.0.1 + resolution: "has-property-descriptors@npm:1.0.1" + dependencies: + get-intrinsic: ^1.2.2 + checksum: 2bcc6bf6ec6af375add4e4b4ef586e43674850a91ad4d46666d0b28ba8e1fd69e424c7677d24d60f69470ad0afaa2f3197f508b20b0bb7dd99a8ab77ffc4b7c4 + languageName: node + linkType: hard + +"has-proto@npm:^1.0.1": + version: 1.0.1 + resolution: "has-proto@npm:1.0.1" + checksum: febc5b5b531de8022806ad7407935e2135f1cc9e64636c3916c6842bd7995994ca3b29871ecd7954bd35f9e2986c17b3b227880484d22259e2f8e6ce63fd383e + languageName: node + linkType: hard + +"has-symbols@npm:^1.0.1, has-symbols@npm:^1.0.2, has-symbols@npm:^1.0.3": + version: 1.0.3 + resolution: "has-symbols@npm:1.0.3" + checksum: a054c40c631c0d5741a8285010a0777ea0c068f99ed43e5d6eb12972da223f8af553a455132fdb0801bdcfa0e0f443c0c03a68d8555aa529b3144b446c3f2410 + languageName: node + linkType: hard + +"has-tostringtag@npm:^1.0.0": + version: 1.0.0 + resolution: "has-tostringtag@npm:1.0.0" + dependencies: + has-symbols: ^1.0.2 + checksum: cc12eb28cb6ae22369ebaad3a8ab0799ed61270991be88f208d508076a1e99abe4198c965935ce85ea90b60c94ddda73693b0920b58e7ead048b4a391b502c1c + languageName: node + linkType: hard + +"has-unicode@npm:^2.0.1": + version: 2.0.1 + resolution: "has-unicode@npm:2.0.1" + checksum: 1eab07a7436512db0be40a710b29b5dc21fa04880b7f63c9980b706683127e3c1b57cb80ea96d47991bdae2dfe479604f6a1ba410106ee1046a41d1bd0814400 + languageName: node + linkType: hard + +"has-value@npm:^0.3.1": + version: 0.3.1 + resolution: "has-value@npm:0.3.1" + dependencies: + get-value: ^2.0.3 + has-values: ^0.1.4 + isobject: ^2.0.0 + checksum: 29e2a1e6571dad83451b769c7ce032fce6009f65bccace07c2962d3ad4d5530b6743d8f3229e4ecf3ea8e905d23a752c5f7089100c1f3162039fa6dc3976558f + languageName: node + linkType: hard + +"has-value@npm:^1.0.0": + version: 1.0.0 + resolution: "has-value@npm:1.0.0" + dependencies: + get-value: ^2.0.6 + has-values: ^1.0.0 + isobject: ^3.0.0 + checksum: b9421d354e44f03d3272ac39fd49f804f19bc1e4fa3ceef7745df43d6b402053f828445c03226b21d7d934a21ac9cf4bc569396dc312f496ddff873197bbd847 + languageName: node + linkType: hard + +"has-values@npm:^0.1.4": + version: 0.1.4 + resolution: "has-values@npm:0.1.4" + checksum: ab1c4bcaf811ccd1856c11cfe90e62fca9e2b026ebe474233a3d282d8d67e3b59ed85b622c7673bac3db198cb98bd1da2b39300a2f98e453729b115350af49bc + languageName: node + linkType: hard + +"has-values@npm:^1.0.0": + version: 1.0.0 + resolution: "has-values@npm:1.0.0" + dependencies: + is-number: ^3.0.0 + kind-of: ^4.0.0 + checksum: 77e6693f732b5e4cf6c38dfe85fdcefad0fab011af74995c3e83863fabf5e3a836f406d83565816baa0bc0a523c9410db8b990fe977074d61aeb6d8f4fcffa11 + languageName: node + linkType: hard + +"has-yarn@npm:^2.1.0": + version: 2.1.0 + resolution: "has-yarn@npm:2.1.0" + checksum: 5eb1d0bb8518103d7da24532bdbc7124ffc6d367b5d3c10840b508116f2f1bcbcf10fd3ba843ff6e2e991bdf9969fd862d42b2ed58aade88343326c950b7e7f7 + languageName: node + linkType: hard + +"has@npm:^1.0.0, has@npm:^1.0.3": + version: 1.0.4 + resolution: "has@npm:1.0.4" + checksum: 8a11ba062e0627c9578a1d08285401e39f1d071a9692ddf793199070edb5648b21c774dd733e2a181edd635bf6862731885f476f4ccf67c998d7a5ff7cef2550 + languageName: node + linkType: hard + +"hash-base@npm:^3.0.0": + version: 3.1.0 + resolution: "hash-base@npm:3.1.0" + dependencies: + inherits: ^2.0.4 + readable-stream: ^3.6.0 + safe-buffer: ^5.2.0 + checksum: 26b7e97ac3de13cb23fc3145e7e3450b0530274a9562144fc2bf5c1e2983afd0e09ed7cc3b20974ba66039fad316db463da80eb452e7373e780cbee9a0d2f2dc + languageName: node + linkType: hard + +"hash.js@npm:^1.0.0, hash.js@npm:^1.0.3": + version: 1.1.7 + resolution: "hash.js@npm:1.1.7" + dependencies: + inherits: ^2.0.3 + minimalistic-assert: ^1.0.1 + checksum: e350096e659c62422b85fa508e4b3669017311aa4c49b74f19f8e1bc7f3a54a584fdfd45326d4964d6011f2b2d882e38bea775a96046f2a61b7779a979629d8f + languageName: node + linkType: hard + +"hasown@npm:^2.0.0": + version: 2.0.0 + resolution: "hasown@npm:2.0.0" + dependencies: + function-bind: ^1.1.2 + checksum: 6151c75ca12554565098641c98a40f4cc86b85b0fd5b6fe92360967e4605a4f9610f7757260b4e8098dd1c2ce7f4b095f2006fe72a570e3b6d2d28de0298c176 + languageName: node + linkType: hard + +"he@npm:^1.2.0": + version: 1.2.0 + resolution: "he@npm:1.2.0" + bin: + he: bin/he + checksum: 3d4d6babccccd79c5c5a3f929a68af33360d6445587d628087f39a965079d84f18ce9c3d3f917ee1e3978916fc833bb8b29377c3b403f919426f91bc6965e7a7 + languageName: node + linkType: hard + +"hex-color-regex@npm:^1.1.0": + version: 1.1.0 + resolution: "hex-color-regex@npm:1.1.0" + checksum: 44fa1b7a26d745012f3bfeeab8015f60514f72d2fcf10dce33068352456b8d71a2e6bc5a17f933ab470da2c5ab1e3e04b05caf3fefe3c1cabd7e02e516fc8784 + languageName: node + linkType: hard + +"hmac-drbg@npm:^1.0.1": + version: 1.0.1 + resolution: "hmac-drbg@npm:1.0.1" + dependencies: + hash.js: ^1.0.3 + minimalistic-assert: ^1.0.0 + minimalistic-crypto-utils: ^1.0.1 + checksum: bd30b6a68d7f22d63f10e1888aee497d7c2c5c0bb469e66bbdac99f143904d1dfe95f8131f95b3e86c86dd239963c9d972fcbe147e7cffa00e55d18585c43fe0 + languageName: node + linkType: hard + +"hoist-non-react-statics@npm:^3.3.1, hoist-non-react-statics@npm:^3.3.2": + version: 3.3.2 + resolution: "hoist-non-react-statics@npm:3.3.2" + dependencies: + react-is: ^16.7.0 + checksum: b1538270429b13901ee586aa44f4cc3ecd8831c061d06cb8322e50ea17b3f5ce4d0e2e66394761e6c8e152cd8c34fb3b4b690116c6ce2bd45b18c746516cb9e8 + languageName: node + linkType: hard + +"hoopy@npm:^0.1.4": + version: 0.1.4 + resolution: "hoopy@npm:0.1.4" + checksum: cfa60c7684c5e1ee4efe26e167bc54b73f839ffb59d1d44a5c4bf891e26b4f5bcc666555219a98fec95508fea4eda3a79540c53c05cc79afc1f66f9a238f4d9e + languageName: node + linkType: hard + +"hosted-git-info@npm:^2.1.4": + version: 2.8.9 + resolution: "hosted-git-info@npm:2.8.9" + checksum: c955394bdab888a1e9bb10eb33029e0f7ce5a2ac7b3f158099dc8c486c99e73809dca609f5694b223920ca2174db33d32b12f9a2a47141dc59607c29da5a62dd + languageName: node + linkType: hard + +"hosted-git-info@npm:^4.0.2": + version: 4.1.0 + resolution: "hosted-git-info@npm:4.1.0" + dependencies: + lru-cache: ^6.0.0 + checksum: c3f87b3c2f7eb8c2748c8f49c0c2517c9a95f35d26f4bf54b2a8cba05d2e668f3753548b6ea366b18ec8dadb4e12066e19fa382a01496b0ffa0497eb23cbe461 + languageName: node + linkType: hard + +"hpack.js@npm:^2.1.6": + version: 2.1.6 + resolution: "hpack.js@npm:2.1.6" + dependencies: + inherits: ^2.0.1 + obuf: ^1.0.0 + readable-stream: ^2.0.1 + wbuf: ^1.1.0 + checksum: 2de144115197967ad6eeee33faf41096c6ba87078703c5cb011632dcfbffeb45784569e0cf02c317bd79c48375597c8ec88c30fff5bb0b023e8f654fb6e9c06e + languageName: node + linkType: hard + +"hsl-regex@npm:^1.0.0": + version: 1.0.0 + resolution: "hsl-regex@npm:1.0.0" + checksum: de9ee1bf39de1b83cc3fa0fa1cc337f29f14911e79411d66347365c54fab6b109eea2dd741eaa02486e24de31627ad7bf4453f22224fb55a2fe2b58166fa63b8 + languageName: node + linkType: hard + +"hsla-regex@npm:^1.0.0": + version: 1.0.0 + resolution: "hsla-regex@npm:1.0.0" + checksum: 9aa6eb9ff6c102d2395435aa5d1d91eae20043c4b1497c543d8db501c05f3edacd9a07fb34a987059d7902dba415af4cb4e610f751859ae8e7525df4ffcd085f + languageName: node + linkType: hard + +"html-encoding-sniffer@npm:^2.0.1": + version: 2.0.1 + resolution: "html-encoding-sniffer@npm:2.0.1" + dependencies: + whatwg-encoding: ^1.0.5 + checksum: bf30cce461015ed7e365736fcd6a3063c7bc016a91f74398ef6158886970a96333938f7c02417ab3c12aa82e3e53b40822145facccb9ddfbcdc15a879ae4d7ba + languageName: node + linkType: hard + +"html-entities@npm:^1.2.1, html-entities@npm:^1.3.1": + version: 1.4.0 + resolution: "html-entities@npm:1.4.0" + checksum: 4b73ffb9eead200f99146e4fbe70acb0af2fea136901a131fc3a782e9ef876a7cbb07dec303ca1f8804232b812249dbf3643a270c9c524852065d9224a8dcdd0 + languageName: node + linkType: hard + +"html-escaper@npm:^2.0.0": + version: 2.0.2 + resolution: "html-escaper@npm:2.0.2" + checksum: d2df2da3ad40ca9ee3a39c5cc6475ef67c8f83c234475f24d8e9ce0dc80a2c82df8e1d6fa78ddd1e9022a586ea1bd247a615e80a5cd9273d90111ddda7d9e974 + languageName: node + linkType: hard + +"html-minifier-terser@npm:^5.0.1": + version: 5.1.1 + resolution: "html-minifier-terser@npm:5.1.1" + dependencies: + camel-case: ^4.1.1 + clean-css: ^4.2.3 + commander: ^4.1.1 + he: ^1.2.0 + param-case: ^3.0.3 + relateurl: ^0.2.7 + terser: ^4.6.3 + bin: + html-minifier-terser: cli.js + checksum: 75ff3ff886631b9ecb3035acb8e7dd98c599bb4d4618ad6f7e487ee9752987dddcf6848dc3c1ab1d7fc1ad4484337c2ce39c19eac17b0342b4b15e4294c8a904 + languageName: node + linkType: hard + +"html-webpack-plugin@npm:4.5.0": + version: 4.5.0 + resolution: "html-webpack-plugin@npm:4.5.0" + dependencies: + "@types/html-minifier-terser": ^5.0.0 + "@types/tapable": ^1.0.5 + "@types/webpack": ^4.41.8 + html-minifier-terser: ^5.0.1 + loader-utils: ^1.2.3 + lodash: ^4.17.15 + pretty-error: ^2.1.1 + tapable: ^1.1.3 + util.promisify: 1.0.0 + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + checksum: d197db16a160ab9136a544e297c3c75d34b769d3cee12a82b9e7af7ee38ff07f4a27f2235581a9624f03996cd24997613df807341799140b4427c12bc4f496f9 + languageName: node + linkType: hard + +"htmlparser2@npm:^6.1.0": + version: 6.1.0 + resolution: "htmlparser2@npm:6.1.0" + dependencies: + domelementtype: ^2.0.1 + domhandler: ^4.0.0 + domutils: ^2.5.2 + entities: ^2.0.0 + checksum: 81a7b3d9c3bb9acb568a02fc9b1b81ffbfa55eae7f1c41ae0bf840006d1dbf54cb3aa245b2553e2c94db674840a9f0fdad7027c9a9d01a062065314039058c4e + languageName: node + linkType: hard + +"http-cache-semantics@npm:^4.0.0, http-cache-semantics@npm:^4.1.1": + version: 4.1.1 + resolution: "http-cache-semantics@npm:4.1.1" + checksum: 83ac0bc60b17a3a36f9953e7be55e5c8f41acc61b22583060e8dedc9dd5e3607c823a88d0926f9150e571f90946835c7fe150732801010845c72cd8bbff1a236 + languageName: node + linkType: hard + +"http-deceiver@npm:^1.2.7": + version: 1.2.7 + resolution: "http-deceiver@npm:1.2.7" + checksum: 64d7d1ae3a6933eb0e9a94e6f27be4af45a53a96c3c34e84ff57113787105a89fff9d1c3df263ef63add823df019b0e8f52f7121e32393bb5ce9a713bf100b41 + languageName: node + linkType: hard + +"http-errors@npm:2.0.0": + version: 2.0.0 + resolution: "http-errors@npm:2.0.0" + dependencies: + depd: 2.0.0 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 2.0.1 + toidentifier: 1.0.1 + checksum: 9b0a3782665c52ce9dc658a0d1560bcb0214ba5699e4ea15aefb2a496e2ca83db03ebc42e1cce4ac1f413e4e0d2d736a3fd755772c556a9a06853ba2a0b7d920 + languageName: node + linkType: hard + +"http-errors@npm:~1.6.2": + version: 1.6.3 + resolution: "http-errors@npm:1.6.3" + dependencies: + depd: ~1.1.2 + inherits: 2.0.3 + setprototypeof: 1.1.0 + statuses: ">= 1.4.0 < 2" + checksum: a9654ee027e3d5de305a56db1d1461f25709ac23267c6dc28cdab8323e3f96caa58a9a6a5e93ac15d7285cee0c2f019378c3ada9026e7fe19c872d695f27de7c + languageName: node + linkType: hard + +"http-parser-js@npm:>=0.5.1": + version: 0.5.8 + resolution: "http-parser-js@npm:0.5.8" + checksum: 6bbdf2429858e8cf13c62375b0bfb6dc3955ca0f32e58237488bc86cd2378f31d31785fd3ac4ce93f1c74e0189cf8823c91f5cb061696214fd368d2452dc871d + languageName: node + linkType: hard + +"http-proxy-agent@npm:^4.0.1": + version: 4.0.1 + resolution: "http-proxy-agent@npm:4.0.1" + dependencies: + "@tootallnate/once": 1 + agent-base: 6 + debug: 4 + checksum: c6a5da5a1929416b6bbdf77b1aca13888013fe7eb9d59fc292e25d18e041bb154a8dfada58e223fc7b76b9b2d155a87e92e608235201f77d34aa258707963a82 + languageName: node + linkType: hard + +"http-proxy-agent@npm:^5.0.0": + version: 5.0.0 + resolution: "http-proxy-agent@npm:5.0.0" + dependencies: + "@tootallnate/once": 2 + agent-base: 6 + debug: 4 + checksum: e2ee1ff1656a131953839b2a19cd1f3a52d97c25ba87bd2559af6ae87114abf60971e498021f9b73f9fd78aea8876d1fb0d4656aac8a03c6caa9fc175f22b786 + languageName: node + linkType: hard + +"http-proxy-middleware@npm:0.19.1": + version: 0.19.1 + resolution: "http-proxy-middleware@npm:0.19.1" + dependencies: + http-proxy: ^1.17.0 + is-glob: ^4.0.0 + lodash: ^4.17.11 + micromatch: ^3.1.10 + checksum: 64df0438417a613bb22b3689d9652a1b7a56f10b145a463f95f4e8a9b9a351f2c63bc5fd3a9cd710baec224897733b6f299cb7f974ea82769b2a4f1e074764ac + languageName: node + linkType: hard + +"http-proxy@npm:^1.17.0": + version: 1.18.1 + resolution: "http-proxy@npm:1.18.1" + dependencies: + eventemitter3: ^4.0.0 + follow-redirects: ^1.0.0 + requires-port: ^1.0.0 + checksum: f5bd96bf83e0b1e4226633dbb51f8b056c3e6321917df402deacec31dd7fe433914fc7a2c1831cf7ae21e69c90b3a669b8f434723e9e8b71fd68afe30737b6a5 + languageName: node + linkType: hard + +"https-browserify@npm:^1.0.0": + version: 1.0.0 + resolution: "https-browserify@npm:1.0.0" + checksum: 09b35353e42069fde2435760d13f8a3fb7dd9105e358270e2e225b8a94f811b461edd17cb57594e5f36ec1218f121c160ddceeec6e8be2d55e01dcbbbed8cbae + languageName: node + linkType: hard + +"https-proxy-agent@npm:^5.0.0": + version: 5.0.1 + resolution: "https-proxy-agent@npm:5.0.1" + dependencies: + agent-base: 6 + debug: 4 + checksum: 571fccdf38184f05943e12d37d6ce38197becdd69e58d03f43637f7fa1269cf303a7d228aa27e5b27bbd3af8f09fd938e1c91dcfefff2df7ba77c20ed8dfc765 + languageName: node + linkType: hard + +"human-signals@npm:^1.1.1": + version: 1.1.1 + resolution: "human-signals@npm:1.1.1" + checksum: d587647c9e8ec24e02821b6be7de5a0fc37f591f6c4e319b3054b43fd4c35a70a94c46fc74d8c1a43c47fde157d23acd7421f375e1c1365b09a16835b8300205 + languageName: node + linkType: hard + +"humanize-ms@npm:^1.2.1": + version: 1.2.1 + resolution: "humanize-ms@npm:1.2.1" + dependencies: + ms: ^2.0.0 + checksum: 9c7a74a2827f9294c009266c82031030eae811ca87b0da3dceb8d6071b9bde22c9f3daef0469c3c533cc67a97d8a167cd9fc0389350e5f415f61a79b171ded16 + languageName: node + linkType: hard + +"hyphenate-style-name@npm:^1.0.0, hyphenate-style-name@npm:^1.0.3": + version: 1.0.4 + resolution: "hyphenate-style-name@npm:1.0.4" + checksum: 4f5bf4b055089754924babebaa23c17845937bcca6aee95d5d015f8fa1e6814279002bd6a9e541e3fac2cd02519fc76305396727066c57c8e21a7e73e7a12137 + languageName: node + linkType: hard + +"iconv-corefoundation@npm:^1.1.7": + version: 1.1.7 + resolution: "iconv-corefoundation@npm:1.1.7" + dependencies: + cli-truncate: ^2.1.0 + node-addon-api: ^1.6.3 + conditions: os=darwin + languageName: node + linkType: hard + +"iconv-lite@npm:0.4.24": + version: 0.4.24 + resolution: "iconv-lite@npm:0.4.24" + dependencies: + safer-buffer: ">= 2.1.2 < 3" + checksum: bd9f120f5a5b306f0bc0b9ae1edeb1577161503f5f8252a20f1a9e56ef8775c9959fd01c55f2d3a39d9a8abaf3e30c1abeb1895f367dcbbe0a8fd1c9ca01c4f6 + languageName: node + linkType: hard + +"iconv-lite@npm:^0.6.2": + version: 0.6.3 + resolution: "iconv-lite@npm:0.6.3" + dependencies: + safer-buffer: ">= 2.1.2 < 3.0.0" + checksum: 3f60d47a5c8fc3313317edfd29a00a692cc87a19cac0159e2ce711d0ebc9019064108323b5e493625e25594f11c6236647d8e256fbe7a58f4a3b33b89e6d30bf + languageName: node + linkType: hard + +"icss-utils@npm:^4.0.0, icss-utils@npm:^4.1.1": + version: 4.1.1 + resolution: "icss-utils@npm:4.1.1" + dependencies: + postcss: ^7.0.14 + checksum: a4ca2c6b82cb3eb879d635bd4028d74bca174edc49ee48ef5f01988489747d340a389d5a0ac6f6887a5c24ab8fc4386c781daab32a7ade5344a2edff66207635 + languageName: node + linkType: hard + +"idb@npm:3.0.2": + version: 3.0.2 + resolution: "idb@npm:3.0.2" + checksum: 7b4fa656c0d523660834cb1fc3485dc20a3f5795e3f7cb21ffd847876afab87e4b666858514cb168effd206ba8ca86db2df965748519dad679ad1e23915845e0 + languageName: node + linkType: hard + +"identity-obj-proxy@npm:3.0.0": + version: 3.0.0 + resolution: "identity-obj-proxy@npm:3.0.0" + dependencies: + harmony-reflect: ^1.4.6 + checksum: 97559f8ea2aeaa1a880d279d8c49550dce01148321e00a2102cda5ddf9ce622fa1d7f3efc7bed63458af78889de888fdaebaf31c816312298bb3fdd0ef8aaf2c + languageName: node + linkType: hard + +"ieee754@npm:^1.1.13, ieee754@npm:^1.1.4": + version: 1.2.1 + resolution: "ieee754@npm:1.2.1" + checksum: 5144c0c9815e54ada181d80a0b810221a253562422e7c6c3a60b1901154184f49326ec239d618c416c1c5945a2e197107aee8d986a3dd836b53dffefd99b5e7e + languageName: node + linkType: hard + +"iferr@npm:^0.1.5": + version: 0.1.5 + resolution: "iferr@npm:0.1.5" + checksum: a18d19b6ad06a2d5412c0d37f6364869393ef6d1688d59d00082c1f35c92399094c031798340612458cd832f4f2e8b13bc9615934a7d8b0c53061307a3816aa1 + languageName: node + linkType: hard + +"ignore@npm:^4.0.6": + version: 4.0.6 + resolution: "ignore@npm:4.0.6" + checksum: 248f82e50a430906f9ee7f35e1158e3ec4c3971451dd9f99c9bc1548261b4db2b99709f60ac6c6cac9333494384176cc4cc9b07acbe42d52ac6a09cad734d800 + languageName: node + linkType: hard + +"ignore@npm:^5.1.4, ignore@npm:^5.1.8, ignore@npm:^5.2.0": + version: 5.2.4 + resolution: "ignore@npm:5.2.4" + checksum: 3d4c309c6006e2621659311783eaea7ebcd41fe4ca1d78c91c473157ad6666a57a2df790fe0d07a12300d9aac2888204d7be8d59f9aaf665b1c7fcdb432517ef + languageName: node + linkType: hard + +"immer@npm:8.0.1": + version: 8.0.1 + resolution: "immer@npm:8.0.1" + checksum: 63d875c04882b862481a0a692816e5982975a47a57619698bc1bb52963ad3b624911991708b2b81a7af6fdac15083d408e43932d83a6a61216e5a4503efd4095 + languageName: node + linkType: hard + +"immutable@npm:^3.7.3": + version: 3.8.2 + resolution: "immutable@npm:3.8.2" + checksum: 41909b386950ff84ca3cfca77c74cfc87d225a914e98e6c57996fa81a328da61a7c32216d6d5abad40f54747ffdc5c4b02b102e6ad1a504c1752efde8041f964 + languageName: node + linkType: hard + +"immutable@npm:^4.0.0": + version: 4.3.4 + resolution: "immutable@npm:4.3.4" + checksum: de3edd964c394bab83432429d3fb0b4816b42f56050f2ca913ba520bd3068ec3e504230d0800332d3abc478616e8f55d3787424a90d0952e6aba864524f1afc3 + languageName: node + linkType: hard + +"import-cwd@npm:^2.0.0": + version: 2.1.0 + resolution: "import-cwd@npm:2.1.0" + dependencies: + import-from: ^2.1.0 + checksum: b8786fa3578f3df55370352bf61f99c2d8e6ee9b5741a07503d5a73d99281d141330a8faf87078e67527be4558f758356791ee5efb4b0112ac5eaed0f07de544 + languageName: node + linkType: hard + +"import-fresh@npm:^2.0.0": + version: 2.0.0 + resolution: "import-fresh@npm:2.0.0" + dependencies: + caller-path: ^2.0.0 + resolve-from: ^3.0.0 + checksum: 610255f9753cc6775df00be08e9f43691aa39f7703e3636c45afe22346b8b545e600ccfe100c554607546fc8e861fa149a0d1da078c8adedeea30fff326eef79 + languageName: node + linkType: hard + +"import-fresh@npm:^3.0.0, import-fresh@npm:^3.2.1": + version: 3.3.0 + resolution: "import-fresh@npm:3.3.0" + dependencies: + parent-module: ^1.0.0 + resolve-from: ^4.0.0 + checksum: 2cacfad06e652b1edc50be650f7ec3be08c5e5a6f6d12d035c440a42a8cc028e60a5b99ca08a77ab4d6b1346da7d971915828f33cdab730d3d42f08242d09baa + languageName: node + linkType: hard + +"import-from@npm:^2.1.0": + version: 2.1.0 + resolution: "import-from@npm:2.1.0" + dependencies: + resolve-from: ^3.0.0 + checksum: 91f6f89f46a07227920ef819181bb52eb93023ccc0bdf00224fdfb326f8f753e279ad06819f39a02bb88c9d3a4606adc85b0cc995285e5d65feeb59f1421a1d4 + languageName: node + linkType: hard + +"import-lazy@npm:^2.1.0": + version: 2.1.0 + resolution: "import-lazy@npm:2.1.0" + checksum: 05294f3b9dd4971d3a996f0d2f176410fb6745d491d6e73376429189f5c1c3d290548116b2960a7cf3e89c20cdf11431739d1d2d8c54b84061980795010e803a + languageName: node + linkType: hard + +"import-local@npm:^2.0.0": + version: 2.0.0 + resolution: "import-local@npm:2.0.0" + dependencies: + pkg-dir: ^3.0.0 + resolve-cwd: ^2.0.0 + bin: + import-local-fixture: fixtures/cli.js + checksum: b8469252483624379fd65d53c82f3658b32a1136f7168bfeea961a4ea7ca10a45786ea2b02e0006408f9cd22d2f33305a6f17a64e4d5a03274a50942c5e7c949 + languageName: node + linkType: hard + +"import-local@npm:^3.0.2": + version: 3.1.0 + resolution: "import-local@npm:3.1.0" + dependencies: + pkg-dir: ^4.2.0 + resolve-cwd: ^3.0.0 + bin: + import-local-fixture: fixtures/cli.js + checksum: bfcdb63b5e3c0e245e347f3107564035b128a414c4da1172a20dc67db2504e05ede4ac2eee1252359f78b0bfd7b19ef180aec427c2fce6493ae782d73a04cddd + languageName: node + linkType: hard + +"imurmurhash@npm:^0.1.4": + version: 0.1.4 + resolution: "imurmurhash@npm:0.1.4" + checksum: 7cae75c8cd9a50f57dadd77482359f659eaebac0319dd9368bcd1714f55e65badd6929ca58569da2b6494ef13fdd5598cd700b1eba23f8b79c5f19d195a3ecf7 + languageName: node + linkType: hard + +"indent-string@npm:^4.0.0": + version: 4.0.0 + resolution: "indent-string@npm:4.0.0" + checksum: 824cfb9929d031dabf059bebfe08cf3137365e112019086ed3dcff6a0a7b698cb80cf67ccccde0e25b9e2d7527aa6cc1fed1ac490c752162496caba3e6699612 + languageName: node + linkType: hard + +"indexes-of@npm:^1.0.1": + version: 1.0.1 + resolution: "indexes-of@npm:1.0.1" + checksum: 4f9799b1739a62f3e02d09f6f4162cf9673025282af7fa36e790146e7f4e216dad3e776a25b08536c093209c9fcb5ea7bd04b082d42686a45f58ff401d6da32e + languageName: node + linkType: hard + +"infer-owner@npm:^1.0.3, infer-owner@npm:^1.0.4": + version: 1.0.4 + resolution: "infer-owner@npm:1.0.4" + checksum: 181e732764e4a0611576466b4b87dac338972b839920b2a8cde43642e4ed6bd54dc1fb0b40874728f2a2df9a1b097b8ff83b56d5f8f8e3927f837fdcb47d8a89 + languageName: node + linkType: hard + +"inflight@npm:^1.0.4": + version: 1.0.6 + resolution: "inflight@npm:1.0.6" + dependencies: + once: ^1.3.0 + wrappy: 1 + checksum: f4f76aa072ce19fae87ce1ef7d221e709afb59d445e05d47fba710e85470923a75de35bfae47da6de1b18afc3ce83d70facf44cfb0aff89f0a3f45c0a0244dfd + languageName: node + linkType: hard + +"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.1, inherits@npm:^2.0.3, inherits@npm:^2.0.4, inherits@npm:~2.0.1, inherits@npm:~2.0.3": + version: 2.0.4 + resolution: "inherits@npm:2.0.4" + checksum: 4a48a733847879d6cf6691860a6b1e3f0f4754176e4d71494c41f3475553768b10f84b5ce1d40fbd0e34e6bfbb864ee35858ad4dd2cf31e02fc4a154b724d7f1 + languageName: node + linkType: hard + +"inherits@npm:2.0.3": + version: 2.0.3 + resolution: "inherits@npm:2.0.3" + checksum: 78cb8d7d850d20a5e9a7f3620db31483aa00ad5f722ce03a55b110e5a723539b3716a3b463e2b96ce3fe286f33afc7c131fa2f91407528ba80cea98a7545d4c0 + languageName: node + linkType: hard + +"ini@npm:2.0.0": + version: 2.0.0 + resolution: "ini@npm:2.0.0" + checksum: e7aadc5fb2e4aefc666d74ee2160c073995a4061556b1b5b4241ecb19ad609243b9cceafe91bae49c219519394bbd31512516cb22a3b1ca6e66d869e0447e84e + languageName: node + linkType: hard + +"ini@npm:^1.3.4, ini@npm:^1.3.5, ini@npm:~1.3.0": + version: 1.3.8 + resolution: "ini@npm:1.3.8" + checksum: dfd98b0ca3a4fc1e323e38a6c8eb8936e31a97a918d3b377649ea15bdb15d481207a0dda1021efbd86b464cae29a0d33c1d7dcaf6c5672bee17fa849bc50a1b3 + languageName: node + linkType: hard + +"ini@npm:^3.0.1": + version: 3.0.1 + resolution: "ini@npm:3.0.1" + checksum: 947b582a822f06df3c22c75c90aec217d604ea11f7a20249530ee5c1cf8f508288439abe17b0e1d9b421bda5f4fae5e7aae0b18cb3ded5ac9d68f607df82f10f + languageName: node + linkType: hard + +"internal-ip@npm:^4.3.0": + version: 4.3.0 + resolution: "internal-ip@npm:4.3.0" + dependencies: + default-gateway: ^4.2.0 + ipaddr.js: ^1.9.0 + checksum: c970433c84d9a6b46e2c9f5ab7785d3105b856d0a566891bf919241b5a884c5c1c9bf8e915aebb822a86c14b1b6867e58c1eaf5cd49eb023368083069d1a4a9a + languageName: node + linkType: hard + +"internal-slot@npm:^1.0.5": + version: 1.0.6 + resolution: "internal-slot@npm:1.0.6" + dependencies: + get-intrinsic: ^1.2.2 + hasown: ^2.0.0 + side-channel: ^1.0.4 + checksum: 7872454888047553ce97a3fa1da7cc054a28ec5400a9c2e9f4dbe4fe7c1d041cb8e8301467614b80d4246d50377aad2fb58860b294ed74d6700cc346b6f89549 + languageName: node + linkType: hard + +"invert-kv@npm:^1.0.0": + version: 1.0.0 + resolution: "invert-kv@npm:1.0.0" + checksum: aebeee31dda3b3d25ffd242e9a050926e7fe5df642d60953ab183aca1a7d1ffb39922eb2618affb0e850cf2923116f0da1345367759d88d097df5da1f1e1590e + languageName: node + linkType: hard + +"ip-regex@npm:^2.1.0": + version: 2.1.0 + resolution: "ip-regex@npm:2.1.0" + checksum: 331d95052aa53ce245745ea0fc3a6a1e2e3c8d6da65fa8ea52bf73768c1b22a9ac50629d1d2b08c04e7b3ac4c21b536693c149ce2c2615ee4796030e5b3e3cba + languageName: node + linkType: hard + +"ip@npm:^1.1.0, ip@npm:^1.1.5": + version: 1.1.8 + resolution: "ip@npm:1.1.8" + checksum: a2ade53eb339fb0cbe9e69a44caab10d6e3784662285eb5d2677117ee4facc33a64679051c35e0dfdb1a3983a51ce2f5d2cb36446d52e10d01881789b76e28fb + languageName: node + linkType: hard + +"ip@npm:^2.0.0": + version: 2.0.0 + resolution: "ip@npm:2.0.0" + checksum: cfcfac6b873b701996d71ec82a7dd27ba92450afdb421e356f44044ed688df04567344c36cbacea7d01b1c39a4c732dc012570ebe9bebfb06f27314bca625349 + languageName: node + linkType: hard + +"ipaddr.js@npm:1.9.1, ipaddr.js@npm:^1.9.0": + version: 1.9.1 + resolution: "ipaddr.js@npm:1.9.1" + checksum: f88d3825981486f5a1942414c8d77dd6674dd71c065adcfa46f578d677edcb99fda25af42675cb59db492fdf427b34a5abfcde3982da11a8fd83a500b41cfe77 + languageName: node + linkType: hard + +"is-absolute-url@npm:^2.0.0": + version: 2.1.0 + resolution: "is-absolute-url@npm:2.1.0" + checksum: 781e8cf8a2af54b1b7a92f269244d96c66224030d91120e734ebeebbce044c167767e1389789d8aaf82f9e429cb20ae93d6d0acfe6c4b53d2bd6ebb47a236d76 + languageName: node + linkType: hard + +"is-absolute-url@npm:^3.0.3": + version: 3.0.3 + resolution: "is-absolute-url@npm:3.0.3" + checksum: 5159b51d065d9ad29e16a2f78d6c0e41c43227caf90a45e659c54ea6fd50ef0595b1871ce392e84b1df7cfdcad9a8e66eec0813a029112188435abf115accb16 + languageName: node + linkType: hard + +"is-accessor-descriptor@npm:^0.1.6": + version: 0.1.6 + resolution: "is-accessor-descriptor@npm:0.1.6" + dependencies: + kind-of: ^3.0.2 + checksum: 3d629a086a9585bc16a83a8e8a3416f400023301855cafb7ccc9a1d63145b7480f0ad28877dcc2cce09492c4ec1c39ef4c071996f24ee6ac626be4217b8ffc8a + languageName: node + linkType: hard + +"is-accessor-descriptor@npm:^1.0.0": + version: 1.0.0 + resolution: "is-accessor-descriptor@npm:1.0.0" + dependencies: + kind-of: ^6.0.0 + checksum: 8e475968e9b22f9849343c25854fa24492dbe8ba0dea1a818978f9f1b887339190b022c9300d08c47fe36f1b913d70ce8cbaca00369c55a56705fdb7caed37fe + languageName: node + linkType: hard + +"is-arguments@npm:^1.0.4": + version: 1.1.1 + resolution: "is-arguments@npm:1.1.1" + dependencies: + call-bind: ^1.0.2 + has-tostringtag: ^1.0.0 + checksum: 7f02700ec2171b691ef3e4d0e3e6c0ba408e8434368504bb593d0d7c891c0dbfda6d19d30808b904a6cb1929bca648c061ba438c39f296c2a8ca083229c49f27 + languageName: node + linkType: hard + +"is-array-buffer@npm:^3.0.1, is-array-buffer@npm:^3.0.2": + version: 3.0.2 + resolution: "is-array-buffer@npm:3.0.2" + dependencies: + call-bind: ^1.0.2 + get-intrinsic: ^1.2.0 + is-typed-array: ^1.1.10 + checksum: dcac9dda66ff17df9cabdc58214172bf41082f956eab30bb0d86bc0fab1e44b690fc8e1f855cf2481245caf4e8a5a006a982a71ddccec84032ed41f9d8da8c14 + languageName: node + linkType: hard + +"is-arrayish@npm:^0.2.1": + version: 0.2.1 + resolution: "is-arrayish@npm:0.2.1" + checksum: eef4417e3c10e60e2c810b6084942b3ead455af16c4509959a27e490e7aee87cfb3f38e01bbde92220b528a0ee1a18d52b787e1458ee86174d8c7f0e58cd488f + languageName: node + linkType: hard + +"is-arrayish@npm:^0.3.1": + version: 0.3.2 + resolution: "is-arrayish@npm:0.3.2" + checksum: 977e64f54d91c8f169b59afcd80ff19227e9f5c791fa28fa2e5bce355cbaf6c2c356711b734656e80c9dd4a854dd7efcf7894402f1031dfc5de5d620775b4d5f + languageName: node + linkType: hard + +"is-async-function@npm:^2.0.0": + version: 2.0.0 + resolution: "is-async-function@npm:2.0.0" + dependencies: + has-tostringtag: ^1.0.0 + checksum: e3471d95e6c014bf37cad8a93f2f4b6aac962178e0a5041e8903147166964fdc1c5c1d2ef87e86d77322c370ca18f2ea004fa7420581fa747bcaf7c223069dbd + languageName: node + linkType: hard + +"is-bigint@npm:^1.0.1": + version: 1.0.4 + resolution: "is-bigint@npm:1.0.4" + dependencies: + has-bigints: ^1.0.1 + checksum: c56edfe09b1154f8668e53ebe8252b6f185ee852a50f9b41e8d921cb2bed425652049fbe438723f6cb48a63ca1aa051e948e7e401e093477c99c84eba244f666 + languageName: node + linkType: hard + +"is-binary-path@npm:^1.0.0": + version: 1.0.1 + resolution: "is-binary-path@npm:1.0.1" + dependencies: + binary-extensions: ^1.0.0 + checksum: a803c99e9d898170c3b44a86fbdc0736d3d7fcbe737345433fb78e810b9fe30c982657782ad0e676644ba4693ddf05601a7423b5611423218663d6b533341ac9 + languageName: node + linkType: hard + +"is-binary-path@npm:~2.1.0": + version: 2.1.0 + resolution: "is-binary-path@npm:2.1.0" + dependencies: + binary-extensions: ^2.0.0 + checksum: 84192eb88cff70d320426f35ecd63c3d6d495da9d805b19bc65b518984b7c0760280e57dbf119b7e9be6b161784a5a673ab2c6abe83abb5198a432232ad5b35c + languageName: node + linkType: hard + +"is-boolean-object@npm:^1.1.0": + version: 1.1.2 + resolution: "is-boolean-object@npm:1.1.2" + dependencies: + call-bind: ^1.0.2 + has-tostringtag: ^1.0.0 + checksum: c03b23dbaacadc18940defb12c1c0e3aaece7553ef58b162a0f6bba0c2a7e1551b59f365b91e00d2dbac0522392d576ef322628cb1d036a0fe51eb466db67222 + languageName: node + linkType: hard + +"is-buffer@npm:^1.1.5": + version: 1.1.6 + resolution: "is-buffer@npm:1.1.6" + checksum: 4a186d995d8bbf9153b4bd9ff9fd04ae75068fe695d29025d25e592d9488911eeece84eefbd8fa41b8ddcc0711058a71d4c466dcf6f1f6e1d83830052d8ca707 + languageName: node + linkType: hard + +"is-callable@npm:^1.1.3, is-callable@npm:^1.1.4, is-callable@npm:^1.2.7": + version: 1.2.7 + resolution: "is-callable@npm:1.2.7" + checksum: 61fd57d03b0d984e2ed3720fb1c7a897827ea174bd44402878e059542ea8c4aeedee0ea0985998aa5cc2736b2fa6e271c08587addb5b3959ac52cf665173d1ac + languageName: node + linkType: hard + +"is-ci@npm:^2.0.0": + version: 2.0.0 + resolution: "is-ci@npm:2.0.0" + dependencies: + ci-info: ^2.0.0 + bin: + is-ci: bin.js + checksum: 77b869057510f3efa439bbb36e9be429d53b3f51abd4776eeea79ab3b221337fe1753d1e50058a9e2c650d38246108beffb15ccfd443929d77748d8c0cc90144 + languageName: node + linkType: hard + +"is-ci@npm:^3.0.0": + version: 3.0.1 + resolution: "is-ci@npm:3.0.1" + dependencies: + ci-info: ^3.2.0 + bin: + is-ci: bin.js + checksum: 192c66dc7826d58f803ecae624860dccf1899fc1f3ac5505284c0a5cf5f889046ffeb958fa651e5725d5705c5bcb14f055b79150ea5fcad7456a9569de60260e + languageName: node + linkType: hard + +"is-color-stop@npm:^1.0.0": + version: 1.1.0 + resolution: "is-color-stop@npm:1.1.0" + dependencies: + css-color-names: ^0.0.4 + hex-color-regex: ^1.1.0 + hsl-regex: ^1.0.0 + hsla-regex: ^1.0.0 + rgb-regex: ^1.0.1 + rgba-regex: ^1.0.0 + checksum: 778dd52a603ab8da827925aa4200fe6733b667b216495a04110f038b925dc5ef58babe759b94ffc4e44fcf439328695770873937f59d6045f676322b97f3f92d + languageName: node + linkType: hard + +"is-core-module@npm:^2.0.0, is-core-module@npm:^2.13.0": + version: 2.13.1 + resolution: "is-core-module@npm:2.13.1" + dependencies: + hasown: ^2.0.0 + checksum: 256559ee8a9488af90e4bad16f5583c6d59e92f0742e9e8bb4331e758521ee86b810b93bae44f390766ffbc518a0488b18d9dab7da9a5ff997d499efc9403f7c + languageName: node + linkType: hard + +"is-data-descriptor@npm:^0.1.4": + version: 0.1.4 + resolution: "is-data-descriptor@npm:0.1.4" + dependencies: + kind-of: ^3.0.2 + checksum: 5c622e078ba933a78338ae398a3d1fc5c23332b395312daf4f74bab4afb10d061cea74821add726cb4db8b946ba36217ee71a24fe71dd5bca4632edb7f6aad87 + languageName: node + linkType: hard + +"is-data-descriptor@npm:^1.0.0": + version: 1.0.0 + resolution: "is-data-descriptor@npm:1.0.0" + dependencies: + kind-of: ^6.0.0 + checksum: e705e6816241c013b05a65dc452244ee378d1c3e3842bd140beabe6e12c0d700ef23c91803f971aa7b091fb0573c5da8963af34a2b573337d87bc3e1f53a4e6d + languageName: node + linkType: hard + +"is-date-object@npm:^1.0.1, is-date-object@npm:^1.0.5": + version: 1.0.5 + resolution: "is-date-object@npm:1.0.5" + dependencies: + has-tostringtag: ^1.0.0 + checksum: baa9077cdf15eb7b58c79398604ca57379b2fc4cf9aa7a9b9e295278648f628c9b201400c01c5e0f7afae56507d741185730307cbe7cad3b9f90a77e5ee342fc + languageName: node + linkType: hard + +"is-descriptor@npm:^0.1.0": + version: 0.1.6 + resolution: "is-descriptor@npm:0.1.6" + dependencies: + is-accessor-descriptor: ^0.1.6 + is-data-descriptor: ^0.1.4 + kind-of: ^5.0.0 + checksum: 0f780c1b46b465f71d970fd7754096ffdb7b69fd8797ca1f5069c163eaedcd6a20ec4a50af669075c9ebcfb5266d2e53c8b227e485eefdb0d1fee09aa1dd8ab6 + languageName: node + linkType: hard + +"is-descriptor@npm:^1.0.0, is-descriptor@npm:^1.0.2": + version: 1.0.2 + resolution: "is-descriptor@npm:1.0.2" + dependencies: + is-accessor-descriptor: ^1.0.0 + is-data-descriptor: ^1.0.0 + kind-of: ^6.0.2 + checksum: 2ed623560bee035fb67b23e32ce885700bef8abe3fbf8c909907d86507b91a2c89a9d3a4d835a4d7334dd5db0237a0aeae9ca109c1e4ef1c0e7b577c0846ab5a + languageName: node + linkType: hard + +"is-directory@npm:^0.3.1": + version: 0.3.1 + resolution: "is-directory@npm:0.3.1" + checksum: dce9a9d3981e38f2ded2a80848734824c50ee8680cd09aa477bef617949715cfc987197a2ca0176c58a9fb192a1a0d69b535c397140d241996a609d5906ae524 + languageName: node + linkType: hard + +"is-docker@npm:^2.0.0": + version: 2.2.1 + resolution: "is-docker@npm:2.2.1" + bin: + is-docker: cli.js + checksum: 3fef7ddbf0be25958e8991ad941901bf5922ab2753c46980b60b05c1bf9c9c2402d35e6dc32e4380b980ef5e1970a5d9d5e5aa2e02d77727c3b6b5e918474c56 + languageName: node + linkType: hard + +"is-extendable@npm:^0.1.0, is-extendable@npm:^0.1.1": + version: 0.1.1 + resolution: "is-extendable@npm:0.1.1" + checksum: 3875571d20a7563772ecc7a5f36cb03167e9be31ad259041b4a8f73f33f885441f778cee1f1fe0085eb4bc71679b9d8c923690003a36a6a5fdf8023e6e3f0672 + languageName: node + linkType: hard + +"is-extendable@npm:^1.0.1": + version: 1.0.1 + resolution: "is-extendable@npm:1.0.1" + dependencies: + is-plain-object: ^2.0.4 + checksum: db07bc1e9de6170de70eff7001943691f05b9d1547730b11be01c0ebfe67362912ba743cf4be6fd20a5e03b4180c685dad80b7c509fe717037e3eee30ad8e84f + languageName: node + linkType: hard + +"is-extglob@npm:^2.1.0, is-extglob@npm:^2.1.1": + version: 2.1.1 + resolution: "is-extglob@npm:2.1.1" + checksum: df033653d06d0eb567461e58a7a8c9f940bd8c22274b94bf7671ab36df5719791aae15eef6d83bbb5e23283967f2f984b8914559d4449efda578c775c4be6f85 + languageName: node + linkType: hard + +"is-finalizationregistry@npm:^1.0.2": + version: 1.0.2 + resolution: "is-finalizationregistry@npm:1.0.2" + dependencies: + call-bind: ^1.0.2 + checksum: 4f243a8e06228cd45bdab8608d2cb7abfc20f6f0189c8ac21ea8d603f1f196eabd531ce0bb8e08cbab047e9845ef2c191a3761c9a17ad5cabf8b35499c4ad35d + languageName: node + linkType: hard + +"is-fullwidth-code-point@npm:^1.0.0": + version: 1.0.0 + resolution: "is-fullwidth-code-point@npm:1.0.0" + dependencies: + number-is-nan: ^1.0.0 + checksum: 4d46a7465a66a8aebcc5340d3b63a56602133874af576a9ca42c6f0f4bd787a743605771c5f246db77da96605fefeffb65fc1dbe862dcc7328f4b4d03edf5a57 + languageName: node + linkType: hard + +"is-fullwidth-code-point@npm:^2.0.0": + version: 2.0.0 + resolution: "is-fullwidth-code-point@npm:2.0.0" + checksum: eef9c6e15f68085fec19ff6a978a6f1b8f48018fd1265035552078ee945573594933b09bbd6f562553e2a241561439f1ef5339276eba68d272001343084cfab8 + languageName: node + linkType: hard + +"is-fullwidth-code-point@npm:^3.0.0": + version: 3.0.0 + resolution: "is-fullwidth-code-point@npm:3.0.0" + checksum: 44a30c29457c7fb8f00297bce733f0a64cd22eca270f83e58c105e0d015e45c019491a4ab2faef91ab51d4738c670daff901c799f6a700e27f7314029e99e348 + languageName: node + linkType: hard + +"is-generator-fn@npm:^2.0.0": + version: 2.1.0 + resolution: "is-generator-fn@npm:2.1.0" + checksum: a6ad5492cf9d1746f73b6744e0c43c0020510b59d56ddcb78a91cbc173f09b5e6beff53d75c9c5a29feb618bfef2bf458e025ecf3a57ad2268e2fb2569f56215 + languageName: node + linkType: hard + +"is-generator-function@npm:^1.0.10": + version: 1.0.10 + resolution: "is-generator-function@npm:1.0.10" + dependencies: + has-tostringtag: ^1.0.0 + checksum: d54644e7dbaccef15ceb1e5d91d680eb5068c9ee9f9eb0a9e04173eb5542c9b51b5ab52c5537f5703e48d5fddfd376817c1ca07a84a407b7115b769d4bdde72b + languageName: node + linkType: hard + +"is-glob@npm:^3.1.0": + version: 3.1.0 + resolution: "is-glob@npm:3.1.0" + dependencies: + is-extglob: ^2.1.0 + checksum: 9d483bca84f16f01230f7c7c8c63735248fe1064346f292e0f6f8c76475fd20c6f50fc19941af5bec35f85d6bf26f4b7768f39a48a5f5fdc72b408dc74e07afc + languageName: node + linkType: hard + +"is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:^4.0.3, is-glob@npm:~4.0.1": + version: 4.0.3 + resolution: "is-glob@npm:4.0.3" + dependencies: + is-extglob: ^2.1.1 + checksum: d381c1319fcb69d341cc6e6c7cd588e17cd94722d9a32dbd60660b993c4fb7d0f19438674e68dfec686d09b7c73139c9166b47597f846af387450224a8101ab4 + languageName: node + linkType: hard + +"is-in-browser@npm:^1.0.2, is-in-browser@npm:^1.1.3": + version: 1.1.3 + resolution: "is-in-browser@npm:1.1.3" + checksum: 178491f97f6663c0574565701b76f41633dbe065e4bd8d518ce017a8fa25e5109ecb6a3bd8bd55c0aba11b208f86b9f0f9c91f3664e148ebf618b74a74fcaf09 + languageName: node + linkType: hard + +"is-installed-globally@npm:^0.4.0": + version: 0.4.0 + resolution: "is-installed-globally@npm:0.4.0" + dependencies: + global-dirs: ^3.0.0 + is-path-inside: ^3.0.2 + checksum: 3359840d5982d22e9b350034237b2cda2a12bac1b48a721912e1ab8e0631dd07d45a2797a120b7b87552759a65ba03e819f1bd63f2d7ab8657ec0b44ee0bf399 + languageName: node + linkType: hard + +"is-lambda@npm:^1.0.1": + version: 1.0.1 + resolution: "is-lambda@npm:1.0.1" + checksum: 93a32f01940220532e5948538699ad610d5924ac86093fcee83022252b363eb0cc99ba53ab084a04e4fb62bf7b5731f55496257a4c38adf87af9c4d352c71c35 + languageName: node + linkType: hard + +"is-map@npm:^2.0.1": + version: 2.0.2 + resolution: "is-map@npm:2.0.2" + checksum: ace3d0ecd667bbdefdb1852de601268f67f2db725624b1958f279316e13fecb8fa7df91fd60f690d7417b4ec180712f5a7ee967008e27c65cfd475cc84337728 + languageName: node + linkType: hard + +"is-module@npm:^1.0.0": + version: 1.0.0 + resolution: "is-module@npm:1.0.0" + checksum: 8cd5390730c7976fb4e8546dd0b38865ee6f7bacfa08dfbb2cc07219606755f0b01709d9361e01f13009bbbd8099fa2927a8ed665118a6105d66e40f1b838c3f + languageName: node + linkType: hard + +"is-negative-zero@npm:^2.0.2": + version: 2.0.2 + resolution: "is-negative-zero@npm:2.0.2" + checksum: f3232194c47a549da60c3d509c9a09be442507616b69454716692e37ae9f37c4dea264fb208ad0c9f3efd15a796a46b79df07c7e53c6227c32170608b809149a + languageName: node + linkType: hard + +"is-npm@npm:^5.0.0": + version: 5.0.0 + resolution: "is-npm@npm:5.0.0" + checksum: 9baff02b0c69a3d3c79b162cb2f9e67fb40ef6d172c16601b2e2471c21e9a4fa1fc9885a308d7bc6f3a3cd2a324c27fa0bf284c133c3349bb22571ab70d041cc + languageName: node + linkType: hard + +"is-number-object@npm:^1.0.4": + version: 1.0.7 + resolution: "is-number-object@npm:1.0.7" + dependencies: + has-tostringtag: ^1.0.0 + checksum: d1e8d01bb0a7134c74649c4e62da0c6118a0bfc6771ea3c560914d52a627873e6920dd0fd0ebc0e12ad2ff4687eac4c308f7e80320b973b2c8a2c8f97a7524f7 + languageName: node + linkType: hard + +"is-number@npm:^3.0.0": + version: 3.0.0 + resolution: "is-number@npm:3.0.0" + dependencies: + kind-of: ^3.0.2 + checksum: 0c62bf8e9d72c4dd203a74d8cfc751c746e75513380fef420cda8237e619a988ee43e678ddb23c87ac24d91ac0fe9f22e4ffb1301a50310c697e9d73ca3994e9 + languageName: node + linkType: hard + +"is-number@npm:^7.0.0": + version: 7.0.0 + resolution: "is-number@npm:7.0.0" + checksum: 456ac6f8e0f3111ed34668a624e45315201dff921e5ac181f8ec24923b99e9f32ca1a194912dc79d539c97d33dba17dc635202ff0b2cf98326f608323276d27a + languageName: node + linkType: hard + +"is-obj@npm:^1.0.1": + version: 1.0.1 + resolution: "is-obj@npm:1.0.1" + checksum: 3ccf0efdea12951e0b9c784e2b00e77e87b2f8bd30b42a498548a8afcc11b3287342a2030c308e473e93a7a19c9ea7854c99a8832a476591c727df2a9c79796c + languageName: node + linkType: hard + +"is-obj@npm:^2.0.0": + version: 2.0.0 + resolution: "is-obj@npm:2.0.0" + checksum: c9916ac8f4621962a42f5e80e7ffdb1d79a3fab7456ceaeea394cd9e0858d04f985a9ace45be44433bf605673c8be8810540fe4cc7f4266fc7526ced95af5a08 + languageName: node + linkType: hard + +"is-path-cwd@npm:^2.0.0": + version: 2.2.0 + resolution: "is-path-cwd@npm:2.2.0" + checksum: 46a840921bb8cc0dc7b5b423a14220e7db338072a4495743a8230533ce78812dc152548c86f4b828411fe98c5451959f07cf841c6a19f611e46600bd699e8048 + languageName: node + linkType: hard + +"is-path-in-cwd@npm:^2.0.0": + version: 2.1.0 + resolution: "is-path-in-cwd@npm:2.1.0" + dependencies: + is-path-inside: ^2.1.0 + checksum: 6b01b3f8c9172e9682ea878d001836a0cc5a78cbe6236024365d478c2c9e384da2417e5f21f2ad2da2761d0465309fc5baf6e71187d2a23f0058da69790f7f48 + languageName: node + linkType: hard + +"is-path-inside@npm:^2.1.0": + version: 2.1.0 + resolution: "is-path-inside@npm:2.1.0" + dependencies: + path-is-inside: ^1.0.2 + checksum: 6ca34dbd84d5c50a3ee1547afb6ada9b06d556a4ff42da9b303797e4acc3ac086516a4833030aa570f397f8c58dacabd57ee8e6c2ce8b2396a986ad2af10fcaf + languageName: node + linkType: hard + +"is-path-inside@npm:^3.0.2": + version: 3.0.3 + resolution: "is-path-inside@npm:3.0.3" + checksum: abd50f06186a052b349c15e55b182326f1936c89a78bf6c8f2b707412517c097ce04bc49a0ca221787bc44e1049f51f09a2ffb63d22899051988d3a618ba13e9 + languageName: node + linkType: hard + +"is-plain-obj@npm:^1.0.0": + version: 1.1.0 + resolution: "is-plain-obj@npm:1.1.0" + checksum: 0ee04807797aad50859652a7467481816cbb57e5cc97d813a7dcd8915da8195dc68c436010bf39d195226cde6a2d352f4b815f16f26b7bf486a5754290629931 + languageName: node + linkType: hard + +"is-plain-object@npm:^2.0.3, is-plain-object@npm:^2.0.4": + version: 2.0.4 + resolution: "is-plain-object@npm:2.0.4" + dependencies: + isobject: ^3.0.1 + checksum: 2a401140cfd86cabe25214956ae2cfee6fbd8186809555cd0e84574f88de7b17abacb2e477a6a658fa54c6083ecbda1e6ae404c7720244cd198903848fca70ca + languageName: node + linkType: hard + +"is-potential-custom-element-name@npm:^1.0.1": + version: 1.0.1 + resolution: "is-potential-custom-element-name@npm:1.0.1" + checksum: ced7bbbb6433a5b684af581872afe0e1767e2d1146b2207ca0068a648fb5cab9d898495d1ac0583524faaf24ca98176a7d9876363097c2d14fee6dd324f3a1ab + languageName: node + linkType: hard + +"is-regex@npm:^1.0.4, is-regex@npm:^1.1.4": + version: 1.1.4 + resolution: "is-regex@npm:1.1.4" + dependencies: + call-bind: ^1.0.2 + has-tostringtag: ^1.0.0 + checksum: 362399b33535bc8f386d96c45c9feb04cf7f8b41c182f54174c1a45c9abbbe5e31290bbad09a458583ff6bf3b2048672cdb1881b13289569a7c548370856a652 + languageName: node + linkType: hard + +"is-regexp@npm:^1.0.0": + version: 1.0.0 + resolution: "is-regexp@npm:1.0.0" + checksum: be692828e24cba479ec33644326fa98959ec68ba77965e0291088c1a741feaea4919d79f8031708f85fd25e39de002b4520622b55460660b9c369e6f7187faef + languageName: node + linkType: hard + +"is-resolvable@npm:^1.0.0": + version: 1.1.0 + resolution: "is-resolvable@npm:1.1.0" + checksum: 2ddff983be0cabc2c8d60246365755f8fb322f5fb9db834740d3e694c635c1b74c1bd674cf221e072fc4bd911ef3f08f2247d390e476f7e80af9092443193c68 + languageName: node + linkType: hard + +"is-root@npm:2.1.0": + version: 2.1.0 + resolution: "is-root@npm:2.1.0" + checksum: 37eea0822a2a9123feb58a9d101558ba276771a6d830f87005683349a9acff15958a9ca590a44e778c6b335660b83e85c744789080d734f6081a935a4880aee2 + languageName: node + linkType: hard + +"is-set@npm:^2.0.1": + version: 2.0.2 + resolution: "is-set@npm:2.0.2" + checksum: b64343faf45e9387b97a6fd32be632ee7b269bd8183701f3b3f5b71a7cf00d04450ed8669d0bd08753e08b968beda96fca73a10fd0ff56a32603f64deba55a57 + languageName: node + linkType: hard + +"is-shared-array-buffer@npm:^1.0.2": + version: 1.0.2 + resolution: "is-shared-array-buffer@npm:1.0.2" + dependencies: + call-bind: ^1.0.2 + checksum: 9508929cf14fdc1afc9d61d723c6e8d34f5e117f0bffda4d97e7a5d88c3a8681f633a74f8e3ad1fe92d5113f9b921dc5ca44356492079612f9a247efbce7032a + languageName: node + linkType: hard + +"is-stream@npm:^1.1.0": + version: 1.1.0 + resolution: "is-stream@npm:1.1.0" + checksum: 063c6bec9d5647aa6d42108d4c59723d2bd4ae42135a2d4db6eadbd49b7ea05b750fd69d279e5c7c45cf9da753ad2c00d8978be354d65aa9f6bb434969c6a2ae + languageName: node + linkType: hard + +"is-stream@npm:^2.0.0": + version: 2.0.1 + resolution: "is-stream@npm:2.0.1" + checksum: b8e05ccdf96ac330ea83c12450304d4a591f9958c11fd17bed240af8d5ffe08aedafa4c0f4cfccd4d28dc9d4d129daca1023633d5c11601a6cbc77521f6fae66 + languageName: node + linkType: hard + +"is-string@npm:^1.0.5, is-string@npm:^1.0.7": + version: 1.0.7 + resolution: "is-string@npm:1.0.7" + dependencies: + has-tostringtag: ^1.0.0 + checksum: 323b3d04622f78d45077cf89aab783b2f49d24dc641aa89b5ad1a72114cfeff2585efc8c12ef42466dff32bde93d839ad321b26884cf75e5a7892a938b089989 + languageName: node + linkType: hard + +"is-symbol@npm:^1.0.2, is-symbol@npm:^1.0.3": + version: 1.0.4 + resolution: "is-symbol@npm:1.0.4" + dependencies: + has-symbols: ^1.0.2 + checksum: 92805812ef590738d9de49d677cd17dfd486794773fb6fa0032d16452af46e9b91bb43ffe82c983570f015b37136f4b53b28b8523bfb10b0ece7a66c31a54510 + languageName: node + linkType: hard + +"is-typed-array@npm:^1.1.10, is-typed-array@npm:^1.1.12, is-typed-array@npm:^1.1.9": + version: 1.1.12 + resolution: "is-typed-array@npm:1.1.12" + dependencies: + which-typed-array: ^1.1.11 + checksum: 4c89c4a3be07186caddadf92197b17fda663a9d259ea0d44a85f171558270d36059d1c386d34a12cba22dfade5aba497ce22778e866adc9406098c8fc4771796 + languageName: node + linkType: hard + +"is-typedarray@npm:^1.0.0": + version: 1.0.0 + resolution: "is-typedarray@npm:1.0.0" + checksum: 3508c6cd0a9ee2e0df2fa2e9baabcdc89e911c7bd5cf64604586697212feec525aa21050e48affb5ffc3df20f0f5d2e2cf79b08caa64e1ccc9578e251763aef7 + languageName: node + linkType: hard + +"is-weakmap@npm:^2.0.1": + version: 2.0.1 + resolution: "is-weakmap@npm:2.0.1" + checksum: 1222bb7e90c32bdb949226e66d26cb7bce12e1e28e3e1b40bfa6b390ba3e08192a8664a703dff2a00a84825f4e022f9cd58c4599ff9981ab72b1d69479f4f7f6 + languageName: node + linkType: hard + +"is-weakref@npm:^1.0.2": + version: 1.0.2 + resolution: "is-weakref@npm:1.0.2" + dependencies: + call-bind: ^1.0.2 + checksum: 95bd9a57cdcb58c63b1c401c60a474b0f45b94719c30f548c891860f051bc2231575c290a6b420c6bc6e7ed99459d424c652bd5bf9a1d5259505dc35b4bf83de + languageName: node + linkType: hard + +"is-weakset@npm:^2.0.1": + version: 2.0.2 + resolution: "is-weakset@npm:2.0.2" + dependencies: + call-bind: ^1.0.2 + get-intrinsic: ^1.1.1 + checksum: 5d8698d1fa599a0635d7ca85be9c26d547b317ed8fd83fc75f03efbe75d50001b5eececb1e9971de85fcde84f69ae6f8346bc92d20d55d46201d328e4c74a367 + languageName: node + linkType: hard + +"is-windows@npm:^1.0.2": + version: 1.0.2 + resolution: "is-windows@npm:1.0.2" + checksum: 438b7e52656fe3b9b293b180defb4e448088e7023a523ec21a91a80b9ff8cdb3377ddb5b6e60f7c7de4fa8b63ab56e121b6705fe081b3cf1b828b0a380009ad7 + languageName: node + linkType: hard + +"is-wsl@npm:^1.1.0": + version: 1.1.0 + resolution: "is-wsl@npm:1.1.0" + checksum: ea157d232351e68c92bd62fc541771096942fe72f69dff452dd26dcc31466258c570a3b04b8cda2e01cd2968255b02951b8670d08ea4ed76d6b1a646061ac4fe + languageName: node + linkType: hard + +"is-wsl@npm:^2.1.1, is-wsl@npm:^2.2.0": + version: 2.2.0 + resolution: "is-wsl@npm:2.2.0" + dependencies: + is-docker: ^2.0.0 + checksum: 20849846ae414997d290b75e16868e5261e86ff5047f104027026fd61d8b5a9b0b3ade16239f35e1a067b3c7cc02f70183cb661010ed16f4b6c7c93dad1b19d8 + languageName: node + linkType: hard + +"is-yarn-global@npm:^0.3.0": + version: 0.3.0 + resolution: "is-yarn-global@npm:0.3.0" + checksum: bca013d65fee2862024c9fbb3ba13720ffca2fe750095174c1c80922fdda16402b5c233f5ac9e265bc12ecb5446e7b7f519a32d9541788f01d4d44e24d2bf481 + languageName: node + linkType: hard + +"isarray@npm:1.0.0, isarray@npm:^1.0.0, isarray@npm:~1.0.0": + version: 1.0.0 + resolution: "isarray@npm:1.0.0" + checksum: f032df8e02dce8ec565cf2eb605ea939bdccea528dbcf565cdf92bfa2da9110461159d86a537388ef1acef8815a330642d7885b29010e8f7eac967c9993b65ab + languageName: node + linkType: hard + +"isarray@npm:^2.0.5": + version: 2.0.5 + resolution: "isarray@npm:2.0.5" + checksum: bd5bbe4104438c4196ba58a54650116007fa0262eccef13a4c55b2e09a5b36b59f1e75b9fcc49883dd9d4953892e6fc007eef9e9155648ceea036e184b0f930a + languageName: node + linkType: hard + +"isbinaryfile@npm:^3.0.2": + version: 3.0.3 + resolution: "isbinaryfile@npm:3.0.3" + dependencies: + buffer-alloc: ^1.2.0 + checksum: 9a555786857c66fe36024d15a54e0ca371c02275622b007356d6afca2b3bca179cb0bd97e1adf5d3922b3325c0fe22813645c7f7eafb4c4bdab1da9d635133c2 + languageName: node + linkType: hard + +"isbinaryfile@npm:^4.0.8": + version: 4.0.10 + resolution: "isbinaryfile@npm:4.0.10" + checksum: a6b28db7e23ac7a77d3707567cac81356ea18bd602a4f21f424f862a31d0e7ab4f250759c98a559ece35ffe4d99f0d339f1ab884ffa9795172f632ab8f88e686 + languageName: node + linkType: hard + +"isexe@npm:^2.0.0": + version: 2.0.0 + resolution: "isexe@npm:2.0.0" + checksum: 26bf6c5480dda5161c820c5b5c751ae1e766c587b1f951ea3fcfc973bafb7831ae5b54a31a69bd670220e42e99ec154475025a468eae58ea262f813fdc8d1c62 + languageName: node + linkType: hard + +"isobject@npm:^2.0.0": + version: 2.1.0 + resolution: "isobject@npm:2.1.0" + dependencies: + isarray: 1.0.0 + checksum: 811c6f5a866877d31f0606a88af4a45f282544de886bf29f6a34c46616a1ae2ed17076cc6bf34c0128f33eecf7e1fcaa2c82cf3770560d3e26810894e96ae79f + languageName: node + linkType: hard + +"isobject@npm:^3.0.0, isobject@npm:^3.0.1": + version: 3.0.1 + resolution: "isobject@npm:3.0.1" + checksum: db85c4c970ce30693676487cca0e61da2ca34e8d4967c2e1309143ff910c207133a969f9e4ddb2dc6aba670aabce4e0e307146c310350b298e74a31f7d464703 + languageName: node + linkType: hard + +"istanbul-lib-coverage@npm:^3.0.0, istanbul-lib-coverage@npm:^3.2.0": + version: 3.2.0 + resolution: "istanbul-lib-coverage@npm:3.2.0" + checksum: a2a545033b9d56da04a8571ed05c8120bf10e9bce01cf8633a3a2b0d1d83dff4ac4fe78d6d5673c27fc29b7f21a41d75f83a36be09f82a61c367b56aa73c1ff9 + languageName: node + linkType: hard + +"istanbul-lib-instrument@npm:^4.0.3": + version: 4.0.3 + resolution: "istanbul-lib-instrument@npm:4.0.3" + dependencies: + "@babel/core": ^7.7.5 + "@istanbuljs/schema": ^0.1.2 + istanbul-lib-coverage: ^3.0.0 + semver: ^6.3.0 + checksum: fa1171d3022b1bb8f6a734042620ac5d9ee7dc80f3065a0bb12863e9f0494d0eefa3d86608fcc0254ab2765d29d7dad8bdc42e5f8df2f9a1fbe85ccc59d76cb9 + languageName: node + linkType: hard + +"istanbul-lib-instrument@npm:^5.0.4": + version: 5.2.1 + resolution: "istanbul-lib-instrument@npm:5.2.1" + dependencies: + "@babel/core": ^7.12.3 + "@babel/parser": ^7.14.7 + "@istanbuljs/schema": ^0.1.2 + istanbul-lib-coverage: ^3.2.0 + semver: ^6.3.0 + checksum: bf16f1803ba5e51b28bbd49ed955a736488381e09375d830e42ddeb403855b2006f850711d95ad726f2ba3f1ae8e7366de7e51d2b9ac67dc4d80191ef7ddf272 + languageName: node + linkType: hard + +"istanbul-lib-report@npm:^3.0.0": + version: 3.0.1 + resolution: "istanbul-lib-report@npm:3.0.1" + dependencies: + istanbul-lib-coverage: ^3.0.0 + make-dir: ^4.0.0 + supports-color: ^7.1.0 + checksum: fd17a1b879e7faf9bb1dc8f80b2a16e9f5b7b8498fe6ed580a618c34df0bfe53d2abd35bf8a0a00e628fb7405462576427c7df20bbe4148d19c14b431c974b21 + languageName: node + linkType: hard + +"istanbul-lib-source-maps@npm:^4.0.0": + version: 4.0.1 + resolution: "istanbul-lib-source-maps@npm:4.0.1" + dependencies: + debug: ^4.1.1 + istanbul-lib-coverage: ^3.0.0 + source-map: ^0.6.1 + checksum: 21ad3df45db4b81852b662b8d4161f6446cd250c1ddc70ef96a585e2e85c26ed7cd9c2a396a71533cfb981d1a645508bc9618cae431e55d01a0628e7dec62ef2 + languageName: node + linkType: hard + +"istanbul-reports@npm:^3.0.2": + version: 3.1.6 + resolution: "istanbul-reports@npm:3.1.6" + dependencies: + html-escaper: ^2.0.0 + istanbul-lib-report: ^3.0.0 + checksum: 44c4c0582f287f02341e9720997f9e82c071627e1e862895745d5f52ec72c9b9f38e1d12370015d2a71dcead794f34c7732aaef3fab80a24bc617a21c3d911d6 + languageName: node + linkType: hard + +"iterator.prototype@npm:^1.1.2": + version: 1.1.2 + resolution: "iterator.prototype@npm:1.1.2" + dependencies: + define-properties: ^1.2.1 + get-intrinsic: ^1.2.1 + has-symbols: ^1.0.3 + reflect.getprototypeof: ^1.0.4 + set-function-name: ^2.0.1 + checksum: d8a507e2ccdc2ce762e8a1d3f4438c5669160ac72b88b648e59a688eec6bc4e64b22338e74000518418d9e693faf2a092d2af21b9ec7dbf7763b037a54701168 + languageName: node + linkType: hard + +"jackspeak@npm:^2.3.5": + version: 2.3.6 + resolution: "jackspeak@npm:2.3.6" + dependencies: + "@isaacs/cliui": ^8.0.2 + "@pkgjs/parseargs": ^0.11.0 + dependenciesMeta: + "@pkgjs/parseargs": + optional: true + checksum: 57d43ad11eadc98cdfe7496612f6bbb5255ea69fe51ea431162db302c2a11011642f50cfad57288bd0aea78384a0612b16e131944ad8ecd09d619041c8531b54 + languageName: node + linkType: hard + +"jake@npm:^10.8.5": + version: 10.8.7 + resolution: "jake@npm:10.8.7" + dependencies: + async: ^3.2.3 + chalk: ^4.0.2 + filelist: ^1.0.4 + minimatch: ^3.1.2 + bin: + jake: bin/cli.js + checksum: a23fd2273fb13f0d0d845502d02c791fd55ef5c6a2d207df72f72d8e1eac6d2b8ffa6caf660bc8006b3242e0daaa88a3ecc600194d72b5c6016ad56e9cd43553 + languageName: node + linkType: hard + +"jest-changed-files@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-changed-files@npm:26.6.2" + dependencies: + "@jest/types": ^26.6.2 + execa: ^4.0.0 + throat: ^5.0.0 + checksum: 8c405f5ff905ee69ace9fd39355233206e3e233badf6a3f3b27e45bbf0a46d86943430be2e080d25b1e085f4231b9b3b27c94317aa04116efb40b592184066f4 + languageName: node + linkType: hard + +"jest-circus@npm:26.6.0": + version: 26.6.0 + resolution: "jest-circus@npm:26.6.0" + dependencies: + "@babel/traverse": ^7.1.0 + "@jest/environment": ^26.6.0 + "@jest/test-result": ^26.6.0 + "@jest/types": ^26.6.0 + "@types/babel__traverse": ^7.0.4 + "@types/node": "*" + chalk: ^4.0.0 + co: ^4.6.0 + dedent: ^0.7.0 + expect: ^26.6.0 + is-generator-fn: ^2.0.0 + jest-each: ^26.6.0 + jest-matcher-utils: ^26.6.0 + jest-message-util: ^26.6.0 + jest-runner: ^26.6.0 + jest-runtime: ^26.6.0 + jest-snapshot: ^26.6.0 + jest-util: ^26.6.0 + pretty-format: ^26.6.0 + stack-utils: ^2.0.2 + throat: ^5.0.0 + checksum: acc354223964bafd40fd1caae4099b58ccb1551bc93a394398b441274c225552f1941ce9903d126fb0adc3952a108e2994270c6a50a3e7e5af931b65b8c170f0 + languageName: node + linkType: hard + +"jest-cli@npm:^26.6.0": + version: 26.6.3 + resolution: "jest-cli@npm:26.6.3" + dependencies: + "@jest/core": ^26.6.3 + "@jest/test-result": ^26.6.2 + "@jest/types": ^26.6.2 + chalk: ^4.0.0 + exit: ^0.1.2 + graceful-fs: ^4.2.4 + import-local: ^3.0.2 + is-ci: ^2.0.0 + jest-config: ^26.6.3 + jest-util: ^26.6.2 + jest-validate: ^26.6.2 + prompts: ^2.0.1 + yargs: ^15.4.1 + bin: + jest: bin/jest.js + checksum: c8554147be756f09f5566974f0026485f78742e8642d2723f8fbee5746f50f44fb72b17aad181226655a8446d3ecc8ad8ed0a11a8a55686fa2b9c10d85700121 + languageName: node + linkType: hard + +"jest-config@npm:^26.6.3": + version: 26.6.3 + resolution: "jest-config@npm:26.6.3" + dependencies: + "@babel/core": ^7.1.0 + "@jest/test-sequencer": ^26.6.3 + "@jest/types": ^26.6.2 + babel-jest: ^26.6.3 + chalk: ^4.0.0 + deepmerge: ^4.2.2 + glob: ^7.1.1 + graceful-fs: ^4.2.4 + jest-environment-jsdom: ^26.6.2 + jest-environment-node: ^26.6.2 + jest-get-type: ^26.3.0 + jest-jasmine2: ^26.6.3 + jest-regex-util: ^26.0.0 + jest-resolve: ^26.6.2 + jest-util: ^26.6.2 + jest-validate: ^26.6.2 + micromatch: ^4.0.2 + pretty-format: ^26.6.2 + peerDependencies: + ts-node: ">=9.0.0" + peerDependenciesMeta: + ts-node: + optional: true + checksum: 303c798582d3c5d4b4e6ab8a4d91a83ded28e4ebbc0bcfc1ad271f9864437ef5409b7c7773010143811bc8176b0695c096717b91419c6484b56dcc032560a74b + languageName: node + linkType: hard + +"jest-diff@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-diff@npm:26.6.2" + dependencies: + chalk: ^4.0.0 + diff-sequences: ^26.6.2 + jest-get-type: ^26.3.0 + pretty-format: ^26.6.2 + checksum: d00d297f31e1ac0252127089892432caa7a11c69bde29cf3bb6c7a839c8afdb95cf1fd401f9df16a4422745da2e6a5d94b428b30666a2540c38e1c5699915c2d + languageName: node + linkType: hard + +"jest-diff@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-diff@npm:29.7.0" + dependencies: + chalk: ^4.0.0 + diff-sequences: ^29.6.3 + jest-get-type: ^29.6.3 + pretty-format: ^29.7.0 + checksum: 08e24a9dd43bfba1ef07a6374e5af138f53137b79ec3d5cc71a2303515335898888fa5409959172e1e05de966c9e714368d15e8994b0af7441f0721ee8e1bb77 + languageName: node + linkType: hard + +"jest-docblock@npm:^26.0.0": + version: 26.0.0 + resolution: "jest-docblock@npm:26.0.0" + dependencies: + detect-newline: ^3.0.0 + checksum: e03ef104ee8c571335e6fa394b8fc8d2bd87eec9fe8b3d7d9aac056ada7de288f37ee8ac4922bb3a4222ac304db975d8832d5abc85486092866c534a16847cd5 + languageName: node + linkType: hard + +"jest-each@npm:^26.6.0, jest-each@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-each@npm:26.6.2" + dependencies: + "@jest/types": ^26.6.2 + chalk: ^4.0.0 + jest-get-type: ^26.3.0 + jest-util: ^26.6.2 + pretty-format: ^26.6.2 + checksum: 4e00ea4667e4fe015b894dc698cce0ae695cf458e021e5da62d4a5b052cd2c0a878da93f8c97cbdde60bcecf70982e8d3a7a5d63e1588f59531cc797a18c39ef + languageName: node + linkType: hard + +"jest-environment-jsdom@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-environment-jsdom@npm:26.6.2" + dependencies: + "@jest/environment": ^26.6.2 + "@jest/fake-timers": ^26.6.2 + "@jest/types": ^26.6.2 + "@types/node": "*" + jest-mock: ^26.6.2 + jest-util: ^26.6.2 + jsdom: ^16.4.0 + checksum: 8af9ffdf1b147362a19032bfe9ed51b709d43c74dc4b1c45e56d721808bf6cabdca8c226855b55a985ea196ce51cdb171bfe420ceec3daa2d13818d5c1915890 + languageName: node + linkType: hard + +"jest-environment-node@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-environment-node@npm:26.6.2" + dependencies: + "@jest/environment": ^26.6.2 + "@jest/fake-timers": ^26.6.2 + "@jest/types": ^26.6.2 + "@types/node": "*" + jest-mock: ^26.6.2 + jest-util: ^26.6.2 + checksum: 0b69b481e6d6f2350ed241c2dabc70b0b1f3a00f9a410b7dad97c8ab38e88026acf7445ca663eb314f46ff50acee0133100b1006bf4ebda5298ffb02763a6861 + languageName: node + linkType: hard + +"jest-get-type@npm:^26.3.0": + version: 26.3.0 + resolution: "jest-get-type@npm:26.3.0" + checksum: 1cc6465ae4f5e880be22ba52fd270fa64c21994915f81b41f8f7553a7957dd8e077cc8d03035de9412e2d739f8bad6a032ebb5dab5805692a5fb9e20dd4ea666 + languageName: node + linkType: hard + +"jest-get-type@npm:^29.6.3": + version: 29.6.3 + resolution: "jest-get-type@npm:29.6.3" + checksum: 88ac9102d4679d768accae29f1e75f592b760b44277df288ad76ce5bf038c3f5ce3719dea8aa0f035dac30e9eb034b848ce716b9183ad7cc222d029f03e92205 + languageName: node + linkType: hard + +"jest-haste-map@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-haste-map@npm:26.6.2" + dependencies: + "@jest/types": ^26.6.2 + "@types/graceful-fs": ^4.1.2 + "@types/node": "*" + anymatch: ^3.0.3 + fb-watchman: ^2.0.0 + fsevents: ^2.1.2 + graceful-fs: ^4.2.4 + jest-regex-util: ^26.0.0 + jest-serializer: ^26.6.2 + jest-util: ^26.6.2 + jest-worker: ^26.6.2 + micromatch: ^4.0.2 + sane: ^4.0.3 + walker: ^1.0.7 + dependenciesMeta: + fsevents: + optional: true + checksum: 8ad5236d5646d2388d2bd58a57ea53698923434f43d59ea9ebdc58bce4d0b8544c8de2f7acaa9a6d73171f04460388b2b6d7d6b6c256aea4ebb8780140781596 + languageName: node + linkType: hard + +"jest-jasmine2@npm:^26.6.3": + version: 26.6.3 + resolution: "jest-jasmine2@npm:26.6.3" + dependencies: + "@babel/traverse": ^7.1.0 + "@jest/environment": ^26.6.2 + "@jest/source-map": ^26.6.2 + "@jest/test-result": ^26.6.2 + "@jest/types": ^26.6.2 + "@types/node": "*" + chalk: ^4.0.0 + co: ^4.6.0 + expect: ^26.6.2 + is-generator-fn: ^2.0.0 + jest-each: ^26.6.2 + jest-matcher-utils: ^26.6.2 + jest-message-util: ^26.6.2 + jest-runtime: ^26.6.3 + jest-snapshot: ^26.6.2 + jest-util: ^26.6.2 + pretty-format: ^26.6.2 + throat: ^5.0.0 + checksum: 41df0b993ae0cdeb2660fb3d8e88e2dcc83aec6b5c27d85eb233c2d507b546f8dce45fc54898ffbefa48ccc4633f225d0e023fd0979b8f7f2f1626074a69a9a3 + languageName: node + linkType: hard + +"jest-leak-detector@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-leak-detector@npm:26.6.2" + dependencies: + jest-get-type: ^26.3.0 + pretty-format: ^26.6.2 + checksum: 364dd4d021347e26c66ba9c09da8a30477f14a3a8a208d2d7d64e4c396db81b85d8cb6b6834bcfc47a61b5938e274553957d11a7de2255f058c9d55d7f8fdfe7 + languageName: node + linkType: hard + +"jest-matcher-utils@npm:^26.6.0, jest-matcher-utils@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-matcher-utils@npm:26.6.2" + dependencies: + chalk: ^4.0.0 + jest-diff: ^26.6.2 + jest-get-type: ^26.3.0 + pretty-format: ^26.6.2 + checksum: 74d2165c1ac7fe98fe27cd2b5407499478e6b2fe99dd54e26d8ee5c9f5f913bdd7bdc07c7221b9b04df0c15e9be0e866ff3455b03e38cc66c480d9996d6d5405 + languageName: node + linkType: hard + +"jest-matcher-utils@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-matcher-utils@npm:29.7.0" + dependencies: + chalk: ^4.0.0 + jest-diff: ^29.7.0 + jest-get-type: ^29.6.3 + pretty-format: ^29.7.0 + checksum: d7259e5f995d915e8a37a8fd494cb7d6af24cd2a287b200f831717ba0d015190375f9f5dc35393b8ba2aae9b2ebd60984635269c7f8cff7d85b077543b7744cd + languageName: node + linkType: hard + +"jest-message-util@npm:^26.6.0, jest-message-util@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-message-util@npm:26.6.2" + dependencies: + "@babel/code-frame": ^7.0.0 + "@jest/types": ^26.6.2 + "@types/stack-utils": ^2.0.0 + chalk: ^4.0.0 + graceful-fs: ^4.2.4 + micromatch: ^4.0.2 + pretty-format: ^26.6.2 + slash: ^3.0.0 + stack-utils: ^2.0.2 + checksum: ffe5a715591c41240b9ed4092faf10f3eaf9ddfdf25d257a0c9f903aaa8d9eed5baa7e38016d2ec4f610fd29225e0f5231a91153e087a043e62824972c83d015 + languageName: node + linkType: hard + +"jest-message-util@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-message-util@npm:29.7.0" + dependencies: + "@babel/code-frame": ^7.12.13 + "@jest/types": ^29.6.3 + "@types/stack-utils": ^2.0.0 + chalk: ^4.0.0 + graceful-fs: ^4.2.9 + micromatch: ^4.0.4 + pretty-format: ^29.7.0 + slash: ^3.0.0 + stack-utils: ^2.0.3 + checksum: a9d025b1c6726a2ff17d54cc694de088b0489456c69106be6b615db7a51b7beb66788bea7a59991a019d924fbf20f67d085a445aedb9a4d6760363f4d7d09930 + languageName: node + linkType: hard + +"jest-mock@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-mock@npm:26.6.2" + dependencies: + "@jest/types": ^26.6.2 + "@types/node": "*" + checksum: 6c0fe028ff0cdc87b5d63b9ca749af04cae6c5577aaab234f602e546cae3f4b932adac9d77e6de2abb24955ee00978e1e5d5a861725654e2f9a42317d91fbc1f + languageName: node + linkType: hard + +"jest-pnp-resolver@npm:^1.2.2": + version: 1.2.3 + resolution: "jest-pnp-resolver@npm:1.2.3" + peerDependencies: + jest-resolve: "*" + peerDependenciesMeta: + jest-resolve: + optional: true + checksum: db1a8ab2cb97ca19c01b1cfa9a9c8c69a143fde833c14df1fab0766f411b1148ff0df878adea09007ac6a2085ec116ba9a996a6ad104b1e58c20adbf88eed9b2 + languageName: node + linkType: hard + +"jest-regex-util@npm:^26.0.0": + version: 26.0.0 + resolution: "jest-regex-util@npm:26.0.0" + checksum: 930a00665e8dfbedc29140678b4a54f021b41b895cf35050f76f557c1da3ac48ff42dd7b18ba2ccba6f4e518c6445d6753730d03ec7049901b93992db1ef0483 + languageName: node + linkType: hard + +"jest-resolve-dependencies@npm:^26.6.3": + version: 26.6.3 + resolution: "jest-resolve-dependencies@npm:26.6.3" + dependencies: + "@jest/types": ^26.6.2 + jest-regex-util: ^26.0.0 + jest-snapshot: ^26.6.2 + checksum: 533ea1e271426006ff02c03c9802b108fcd68f2144615b6110ae59f3a0a2cc4a7abb3f44c3c65299c76b3a725d5d8220aaed9c58b79c8c8c508c18699a96e3f7 + languageName: node + linkType: hard + +"jest-resolve@npm:26.6.0": + version: 26.6.0 + resolution: "jest-resolve@npm:26.6.0" + dependencies: + "@jest/types": ^26.6.0 + chalk: ^4.0.0 + graceful-fs: ^4.2.4 + jest-pnp-resolver: ^1.2.2 + jest-util: ^26.6.0 + read-pkg-up: ^7.0.1 + resolve: ^1.17.0 + slash: ^3.0.0 + checksum: c5d0277d4aa22f9f38693ba3e5d6176edf2e367af2f0c38e16c88e9b80b2292ee4d9df9b3675607f5d0c0b2652b4e3f69d8155f9fedd83ddd0ef937cfb6230c0 + languageName: node + linkType: hard + +"jest-resolve@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-resolve@npm:26.6.2" + dependencies: + "@jest/types": ^26.6.2 + chalk: ^4.0.0 + graceful-fs: ^4.2.4 + jest-pnp-resolver: ^1.2.2 + jest-util: ^26.6.2 + read-pkg-up: ^7.0.1 + resolve: ^1.18.1 + slash: ^3.0.0 + checksum: d6264d3f39b098753802a237c8c54f3109f5f3b3b7fa6f8d7aec7dca01b357ddf518ce1c33a68454357c15f48fb3c6026a92b9c4f5d72f07e24e80f04bcc8d58 + languageName: node + linkType: hard + +"jest-runner@npm:^26.6.0, jest-runner@npm:^26.6.3": + version: 26.6.3 + resolution: "jest-runner@npm:26.6.3" + dependencies: + "@jest/console": ^26.6.2 + "@jest/environment": ^26.6.2 + "@jest/test-result": ^26.6.2 + "@jest/types": ^26.6.2 + "@types/node": "*" + chalk: ^4.0.0 + emittery: ^0.7.1 + exit: ^0.1.2 + graceful-fs: ^4.2.4 + jest-config: ^26.6.3 + jest-docblock: ^26.0.0 + jest-haste-map: ^26.6.2 + jest-leak-detector: ^26.6.2 + jest-message-util: ^26.6.2 + jest-resolve: ^26.6.2 + jest-runtime: ^26.6.3 + jest-util: ^26.6.2 + jest-worker: ^26.6.2 + source-map-support: ^0.5.6 + throat: ^5.0.0 + checksum: ccd69918baa49a5efa45985cf60cfa1fbb1686b32d7a86296b7b55f89684e36d1f08e62598c4b7be7e81f2cf2e245d1a65146ea7bdcaedfa6ed176d3e645d7e2 + languageName: node + linkType: hard + +"jest-runtime@npm:^26.6.0, jest-runtime@npm:^26.6.3": + version: 26.6.3 + resolution: "jest-runtime@npm:26.6.3" + dependencies: + "@jest/console": ^26.6.2 + "@jest/environment": ^26.6.2 + "@jest/fake-timers": ^26.6.2 + "@jest/globals": ^26.6.2 + "@jest/source-map": ^26.6.2 + "@jest/test-result": ^26.6.2 + "@jest/transform": ^26.6.2 + "@jest/types": ^26.6.2 + "@types/yargs": ^15.0.0 + chalk: ^4.0.0 + cjs-module-lexer: ^0.6.0 + collect-v8-coverage: ^1.0.0 + exit: ^0.1.2 + glob: ^7.1.3 + graceful-fs: ^4.2.4 + jest-config: ^26.6.3 + jest-haste-map: ^26.6.2 + jest-message-util: ^26.6.2 + jest-mock: ^26.6.2 + jest-regex-util: ^26.0.0 + jest-resolve: ^26.6.2 + jest-snapshot: ^26.6.2 + jest-util: ^26.6.2 + jest-validate: ^26.6.2 + slash: ^3.0.0 + strip-bom: ^4.0.0 + yargs: ^15.4.1 + bin: + jest-runtime: bin/jest-runtime.js + checksum: 867922b49f9ab4cf2f5f1356ac3d9962c4477c7a2ff696cc841ea4c600ea389e7d6dfcbf945fec6849e606f81980addf31e4f34d63eaa3d3415f4901de2f605a + languageName: node + linkType: hard + +"jest-serializer@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-serializer@npm:26.6.2" + dependencies: + "@types/node": "*" + graceful-fs: ^4.2.4 + checksum: dbecfb0d01462fe486a0932cf1680cf6abb204c059db2a8f72c6c2a7c9842a82f6d256874112774cea700764ed8f38fc9e3db982456c138d87353e3390e746fe + languageName: node + linkType: hard + +"jest-snapshot@npm:^26.6.0, jest-snapshot@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-snapshot@npm:26.6.2" + dependencies: + "@babel/types": ^7.0.0 + "@jest/types": ^26.6.2 + "@types/babel__traverse": ^7.0.4 + "@types/prettier": ^2.0.0 + chalk: ^4.0.0 + expect: ^26.6.2 + graceful-fs: ^4.2.4 + jest-diff: ^26.6.2 + jest-get-type: ^26.3.0 + jest-haste-map: ^26.6.2 + jest-matcher-utils: ^26.6.2 + jest-message-util: ^26.6.2 + jest-resolve: ^26.6.2 + natural-compare: ^1.4.0 + pretty-format: ^26.6.2 + semver: ^7.3.2 + checksum: 53f1de055b1d3840bc6e851fd674d5991b844d4695dadbd07354c93bf191048d8767b8606999847e97c4214a485b9afb45c1d2411772befa1870414ac973b3e2 + languageName: node + linkType: hard + +"jest-util@npm:^26.6.0, jest-util@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-util@npm:26.6.2" + dependencies: + "@jest/types": ^26.6.2 + "@types/node": "*" + chalk: ^4.0.0 + graceful-fs: ^4.2.4 + is-ci: ^2.0.0 + micromatch: ^4.0.2 + checksum: 3c6a5fba05c4c6892cd3a9f66196ea8867087b77a5aa1a3f6cd349c785c3f1ca24abfd454664983aed1a165cab7846688e44fe8630652d666ba326b08625bc3d + languageName: node + linkType: hard + +"jest-util@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-util@npm:29.7.0" + dependencies: + "@jest/types": ^29.6.3 + "@types/node": "*" + chalk: ^4.0.0 + ci-info: ^3.2.0 + graceful-fs: ^4.2.9 + picomatch: ^2.2.3 + checksum: 042ab4980f4ccd4d50226e01e5c7376a8556b472442ca6091a8f102488c0f22e6e8b89ea874111d2328a2080083bf3225c86f3788c52af0bd0345a00eb57a3ca + languageName: node + linkType: hard + +"jest-validate@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-validate@npm:26.6.2" + dependencies: + "@jest/types": ^26.6.2 + camelcase: ^6.0.0 + chalk: ^4.0.0 + jest-get-type: ^26.3.0 + leven: ^3.1.0 + pretty-format: ^26.6.2 + checksum: bac11d6586d9b8885328a4a66eec45b692e45ac23034a5c09eb0ee32de324f2d3d52b073e0c34e9c222b3642b083d1152a736cf24c52109e4957537d731ca62b + languageName: node + linkType: hard + +"jest-watch-typeahead@npm:0.6.1": + version: 0.6.1 + resolution: "jest-watch-typeahead@npm:0.6.1" + dependencies: + ansi-escapes: ^4.3.1 + chalk: ^4.0.0 + jest-regex-util: ^26.0.0 + jest-watcher: ^26.3.0 + slash: ^3.0.0 + string-length: ^4.0.1 + strip-ansi: ^6.0.0 + peerDependencies: + jest: ^26.0.0 + checksum: a65dfd080e68b79ce7c861ec07791a0768820049a1d6a471d01f3fc41ee88723db29b434e19c917421e7f34ec567bcade368f3671e234c557288e206f7fd4257 + languageName: node + linkType: hard + +"jest-watcher@npm:^26.3.0, jest-watcher@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-watcher@npm:26.6.2" + dependencies: + "@jest/test-result": ^26.6.2 + "@jest/types": ^26.6.2 + "@types/node": "*" + ansi-escapes: ^4.2.1 + chalk: ^4.0.0 + jest-util: ^26.6.2 + string-length: ^4.0.1 + checksum: 401137f1a73bf23cdf390019ebffb3f6f89c53ca49d48252d1dd6daf17a68787fef75cc55a623de28b63d87d0e8f13d8972d7dd06740f2f64f7b2a0409d119d2 + languageName: node + linkType: hard + +"jest-worker@npm:^24.9.0": + version: 24.9.0 + resolution: "jest-worker@npm:24.9.0" + dependencies: + merge-stream: ^2.0.0 + supports-color: ^6.1.0 + checksum: bd23b6c8728dcf3bad0d84543ea1bc4a95ccd3b5a40f9e2796d527ab0e87dc6afa6c30cc7b67845dce1cfe7894753812d19793de605db1976b7ac08930671bff + languageName: node + linkType: hard + +"jest-worker@npm:^26.5.0, jest-worker@npm:^26.6.2": + version: 26.6.2 + resolution: "jest-worker@npm:26.6.2" + dependencies: + "@types/node": "*" + merge-stream: ^2.0.0 + supports-color: ^7.0.0 + checksum: f9afa3b88e3f12027901e4964ba3ff048285b5783b5225cab28fac25b4058cea8ad54001e9a1577ee2bed125fac3ccf5c80dc507b120300cc1bbcb368796533e + languageName: node + linkType: hard + +"jest-worker@npm:^27.5.1": + version: 27.5.1 + resolution: "jest-worker@npm:27.5.1" + dependencies: + "@types/node": "*" + merge-stream: ^2.0.0 + supports-color: ^8.0.0 + checksum: 98cd68b696781caed61c983a3ee30bf880b5bd021c01d98f47b143d4362b85d0737f8523761e2713d45e18b4f9a2b98af1eaee77afade4111bb65c77d6f7c980 + languageName: node + linkType: hard + +"jest-worker@npm:^28.0.2": + version: 28.1.3 + resolution: "jest-worker@npm:28.1.3" + dependencies: + "@types/node": "*" + merge-stream: ^2.0.0 + supports-color: ^8.0.0 + checksum: e921c9a1b8f0909da9ea07dbf3592f95b653aef3a8bb0cbcd20fc7f9a795a1304adecac31eecb308992c167e8d7e75c522061fec38a5928ace0f9571c90169ca + languageName: node + linkType: hard + +"jest@npm:26.6.0": + version: 26.6.0 + resolution: "jest@npm:26.6.0" + dependencies: + "@jest/core": ^26.6.0 + import-local: ^3.0.2 + jest-cli: ^26.6.0 + bin: + jest: bin/jest.js + checksum: e0d3efff0dc2a31c453a3f7d87586e5d6c0f008c9b827bb9204edde09288f922ddfb3a8917480bf68f4ac0298be28637daef98ebaaac65ea23d3cb754a6620c4 + languageName: node + linkType: hard + +"joi@npm:^17.6.0": + version: 17.11.0 + resolution: "joi@npm:17.11.0" + dependencies: + "@hapi/hoek": ^9.0.0 + "@hapi/topo": ^5.0.0 + "@sideway/address": ^4.1.3 + "@sideway/formula": ^3.0.1 + "@sideway/pinpoint": ^2.0.0 + checksum: 3a4e9ecba345cdafe585e7ed8270a44b39718e11dff3749aa27e0001a63d578b75100c062be28e6f48f960b594864034e7a13833f33fbd7ad56d5ce6b617f9bf + languageName: node + linkType: hard + +"js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0": + version: 4.0.0 + resolution: "js-tokens@npm:4.0.0" + checksum: 8a95213a5a77deb6cbe94d86340e8d9ace2b93bc367790b260101d2f36a2eaf4e4e22d9fa9cf459b38af3a32fb4190e638024cf82ec95ef708680e405ea7cc78 + languageName: node + linkType: hard + +"js-yaml@npm:^3.13.1": + version: 3.14.1 + resolution: "js-yaml@npm:3.14.1" + dependencies: + argparse: ^1.0.7 + esprima: ^4.0.0 + bin: + js-yaml: bin/js-yaml.js + checksum: bef146085f472d44dee30ec34e5cf36bf89164f5d585435a3d3da89e52622dff0b188a580e4ad091c3341889e14cb88cac6e4deb16dc5b1e9623bb0601fc255c + languageName: node + linkType: hard + +"js-yaml@npm:^4.1.0": + version: 4.1.0 + resolution: "js-yaml@npm:4.1.0" + dependencies: + argparse: ^2.0.1 + bin: + js-yaml: bin/js-yaml.js + checksum: c7830dfd456c3ef2c6e355cc5a92e6700ceafa1d14bba54497b34a99f0376cecbb3e9ac14d3e5849b426d5a5140709a66237a8c991c675431271c4ce5504151a + languageName: node + linkType: hard + +"jsdom@npm:^16.4.0": + version: 16.7.0 + resolution: "jsdom@npm:16.7.0" + dependencies: + abab: ^2.0.5 + acorn: ^8.2.4 + acorn-globals: ^6.0.0 + cssom: ^0.4.4 + cssstyle: ^2.3.0 + data-urls: ^2.0.0 + decimal.js: ^10.2.1 + domexception: ^2.0.1 + escodegen: ^2.0.0 + form-data: ^3.0.0 + html-encoding-sniffer: ^2.0.1 + http-proxy-agent: ^4.0.1 + https-proxy-agent: ^5.0.0 + is-potential-custom-element-name: ^1.0.1 + nwsapi: ^2.2.0 + parse5: 6.0.1 + saxes: ^5.0.1 + symbol-tree: ^3.2.4 + tough-cookie: ^4.0.0 + w3c-hr-time: ^1.0.2 + w3c-xmlserializer: ^2.0.0 + webidl-conversions: ^6.1.0 + whatwg-encoding: ^1.0.5 + whatwg-mimetype: ^2.3.0 + whatwg-url: ^8.5.0 + ws: ^7.4.6 + xml-name-validator: ^3.0.0 + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + checksum: 454b83371857000763ed31130a049acd1b113e3b927e6dcd75c67ddc30cdd242d7ebcac5c2294b7a1a6428155cb1398709c573b3c6d809218692ea68edd93370 + languageName: node + linkType: hard + +"jsesc@npm:^2.5.1": + version: 2.5.2 + resolution: "jsesc@npm:2.5.2" + bin: + jsesc: bin/jsesc + checksum: 4dc190771129e12023f729ce20e1e0bfceac84d73a85bc3119f7f938843fe25a4aeccb54b6494dce26fcf263d815f5f31acdefac7cc9329efb8422a4f4d9fa9d + languageName: node + linkType: hard + +"jsesc@npm:~0.5.0": + version: 0.5.0 + resolution: "jsesc@npm:0.5.0" + bin: + jsesc: bin/jsesc + checksum: b8b44cbfc92f198ad972fba706ee6a1dfa7485321ee8c0b25f5cedd538dcb20cde3197de16a7265430fce8277a12db066219369e3d51055038946039f6e20e17 + languageName: node + linkType: hard + +"json-buffer@npm:3.0.0": + version: 3.0.0 + resolution: "json-buffer@npm:3.0.0" + checksum: 0cecacb8025370686a916069a2ff81f7d55167421b6aa7270ee74e244012650dd6bce22b0852202ea7ff8624fce50ff0ec1bdf95914ccb4553426e290d5a63fa + languageName: node + linkType: hard + +"json-buffer@npm:3.0.1": + version: 3.0.1 + resolution: "json-buffer@npm:3.0.1" + checksum: 9026b03edc2847eefa2e37646c579300a1f3a4586cfb62bf857832b60c852042d0d6ae55d1afb8926163fa54c2b01d83ae24705f34990348bdac6273a29d4581 + languageName: node + linkType: hard + +"json-parse-better-errors@npm:^1.0.1, json-parse-better-errors@npm:^1.0.2": + version: 1.0.2 + resolution: "json-parse-better-errors@npm:1.0.2" + checksum: ff2b5ba2a70e88fd97a3cb28c1840144c5ce8fae9cbeeddba15afa333a5c407cf0e42300cd0a2885dbb055227fe68d405070faad941beeffbfde9cf3b2c78c5d + languageName: node + linkType: hard + +"json-parse-even-better-errors@npm:^2.3.0": + version: 2.3.1 + resolution: "json-parse-even-better-errors@npm:2.3.1" + checksum: 798ed4cf3354a2d9ccd78e86d2169515a0097a5c133337807cdf7f1fc32e1391d207ccfc276518cc1d7d8d4db93288b8a50ba4293d212ad1336e52a8ec0a941f + languageName: node + linkType: hard + +"json-schema-traverse@npm:^0.4.1": + version: 0.4.1 + resolution: "json-schema-traverse@npm:0.4.1" + checksum: 7486074d3ba247769fda17d5181b345c9fb7d12e0da98b22d1d71a5db9698d8b4bd900a3ec1a4ffdd60846fc2556274a5c894d0c48795f14cb03aeae7b55260b + languageName: node + linkType: hard + +"json-schema-traverse@npm:^1.0.0": + version: 1.0.0 + resolution: "json-schema-traverse@npm:1.0.0" + checksum: 02f2f466cdb0362558b2f1fd5e15cce82ef55d60cd7f8fa828cf35ba74330f8d767fcae5c5c2adb7851fa811766c694b9405810879bc4e1ddd78a7c0e03658ad + languageName: node + linkType: hard + +"json-stable-stringify-without-jsonify@npm:^1.0.1": + version: 1.0.1 + resolution: "json-stable-stringify-without-jsonify@npm:1.0.1" + checksum: cff44156ddce9c67c44386ad5cddf91925fe06b1d217f2da9c4910d01f358c6e3989c4d5a02683c7a5667f9727ff05831f7aa8ae66c8ff691c556f0884d49215 + languageName: node + linkType: hard + +"json-stringify-safe@npm:^5.0.1": + version: 5.0.1 + resolution: "json-stringify-safe@npm:5.0.1" + checksum: 48ec0adad5280b8a96bb93f4563aa1667fd7a36334f79149abd42446d0989f2ddc58274b479f4819f1f00617957e6344c886c55d05a4e15ebb4ab931e4a6a8ee + languageName: node + linkType: hard + +"json5@npm:^1.0.1, json5@npm:^1.0.2": + version: 1.0.2 + resolution: "json5@npm:1.0.2" + dependencies: + minimist: ^1.2.0 + bin: + json5: lib/cli.js + checksum: 866458a8c58a95a49bef3adba929c625e82532bcff1fe93f01d29cb02cac7c3fe1f4b79951b7792c2da9de0b32871a8401a6e3c5b36778ad852bf5b8a61165d7 + languageName: node + linkType: hard + +"json5@npm:^2.1.2, json5@npm:^2.2.0, json5@npm:^2.2.3": + version: 2.2.3 + resolution: "json5@npm:2.2.3" + bin: + json5: lib/cli.js + checksum: 2a7436a93393830bce797d4626275152e37e877b265e94ca69c99e3d20c2b9dab021279146a39cdb700e71b2dd32a4cebd1514cd57cee102b1af906ce5040349 + languageName: node + linkType: hard + +"jsonfile@npm:^4.0.0": + version: 4.0.0 + resolution: "jsonfile@npm:4.0.0" + dependencies: + graceful-fs: ^4.1.6 + dependenciesMeta: + graceful-fs: + optional: true + checksum: 6447d6224f0d31623eef9b51185af03ac328a7553efcee30fa423d98a9e276ca08db87d71e17f2310b0263fd3ffa6c2a90a6308367f661dc21580f9469897c9e + languageName: node + linkType: hard + +"jsonfile@npm:^6.0.1": + version: 6.1.0 + resolution: "jsonfile@npm:6.1.0" + dependencies: + graceful-fs: ^4.1.6 + universalify: ^2.0.0 + dependenciesMeta: + graceful-fs: + optional: true + checksum: 7af3b8e1ac8fe7f1eccc6263c6ca14e1966fcbc74b618d3c78a0a2075579487547b94f72b7a1114e844a1e15bb00d440e5d1720bfc4612d790a6f285d5ea8354 + languageName: node + linkType: hard + +"jsonpath@npm:^1.1.1": + version: 1.1.1 + resolution: "jsonpath@npm:1.1.1" + dependencies: + esprima: 1.2.2 + static-eval: 2.0.2 + underscore: 1.12.1 + checksum: 5480d8e9e424fe2ed4ade6860b6e2cefddb21adb3a99abe0254cd9428e8ef9b0c9fb5729d6a5a514e90df50d645ccea9f3be48d627570e6222dd5dadc28eba7b + languageName: node + linkType: hard + +"jss-plugin-camel-case@npm:^10.10.0": + version: 10.10.0 + resolution: "jss-plugin-camel-case@npm:10.10.0" + dependencies: + "@babel/runtime": ^7.3.1 + hyphenate-style-name: ^1.0.3 + jss: 10.10.0 + checksum: 693485b86f7a0e0bd0c16b8ddd057ca02a993fc088558c96501f9131e7e6261cc9f4b08047879a68441c688c40dceeb5219b1f15ade9043935aade4f37f5ca85 + languageName: node + linkType: hard + +"jss-plugin-default-unit@npm:^10.10.0": + version: 10.10.0 + resolution: "jss-plugin-default-unit@npm:10.10.0" + dependencies: + "@babel/runtime": ^7.3.1 + jss: 10.10.0 + checksum: 6e56213830753ad80bca3824973a667106defaef698d5996d45d03a0e2a3e035b33cd257aa8015040c41bd6669e7598dce72c36099d7ae69db758a7b2ca453fa + languageName: node + linkType: hard + +"jss-plugin-global@npm:^10.10.0": + version: 10.10.0 + resolution: "jss-plugin-global@npm:10.10.0" + dependencies: + "@babel/runtime": ^7.3.1 + jss: 10.10.0 + checksum: f3af4f40358e96cf89e0c7c84b6e441dc9b4d543cd6109fdf9314a9818fd780d252035f46cc526c3d3fb4393bc29effc6993cc22e04f4e67ec3c889ab760d580 + languageName: node + linkType: hard + +"jss-plugin-nested@npm:^10.10.0": + version: 10.10.0 + resolution: "jss-plugin-nested@npm:10.10.0" + dependencies: + "@babel/runtime": ^7.3.1 + jss: 10.10.0 + tiny-warning: ^1.0.2 + checksum: 190094375972b68eb8f683387c74e97dc8347e7cc4f2fbfd40b3baf077dfde83d70e57be56744690d22537c0390e0a398714d86736df820c64e498df95f937de + languageName: node + linkType: hard + +"jss-plugin-props-sort@npm:^10.10.0": + version: 10.10.0 + resolution: "jss-plugin-props-sort@npm:10.10.0" + dependencies: + "@babel/runtime": ^7.3.1 + jss: 10.10.0 + checksum: 274483444b6733bd58d229ebdcdb32b3c24172bc83cb2f6f8364926de19acd872758bcf06c7b3af11cf75504a67a7d67abba62b25081d144585a56b4df9512ba + languageName: node + linkType: hard + +"jss-plugin-rule-value-function@npm:^10.10.0": + version: 10.10.0 + resolution: "jss-plugin-rule-value-function@npm:10.10.0" + dependencies: + "@babel/runtime": ^7.3.1 + jss: 10.10.0 + tiny-warning: ^1.0.2 + checksum: 009c9593b9be8b9f1030b797e58e3c233d90e034e5c68b0cabd25bffc7da965c69dc1ccb1bb6a542d72bb824df89036b2264fe564e8538320ef99febaf2882ee + languageName: node + linkType: hard + +"jss-plugin-vendor-prefixer@npm:^10.10.0": + version: 10.10.0 + resolution: "jss-plugin-vendor-prefixer@npm:10.10.0" + dependencies: + "@babel/runtime": ^7.3.1 + css-vendor: ^2.0.8 + jss: 10.10.0 + checksum: 879b7233f9b0b571074dc2b88d97a05dbb949012ba2405f1481bbedd521167dc835133632adb3f2d8ffceddd337c8c13e3e8b1931590516c0664039598752dff + languageName: node + linkType: hard + +"jss@npm:10.10.0, jss@npm:^10.10.0": + version: 10.10.0 + resolution: "jss@npm:10.10.0" + dependencies: + "@babel/runtime": ^7.3.1 + csstype: ^3.0.2 + is-in-browser: ^1.1.3 + tiny-warning: ^1.0.2 + checksum: ecf71971df42729668c283e432e841349b7fdbe52e520f7704991cf4a738fd2451ec0feeb25c12cdc5addf7facecf838e74e62936fd461fb4c99f23d54a4792d + languageName: node + linkType: hard + +"jsx-ast-utils@npm:^2.4.1 || ^3.0.0, jsx-ast-utils@npm:^3.3.3": + version: 3.3.5 + resolution: "jsx-ast-utils@npm:3.3.5" + dependencies: + array-includes: ^3.1.6 + array.prototype.flat: ^1.3.1 + object.assign: ^4.1.4 + object.values: ^1.1.6 + checksum: f4b05fa4d7b5234230c905cfa88d36dc8a58a6666975a3891429b1a8cdc8a140bca76c297225cb7a499fad25a2c052ac93934449a2c31a44fc9edd06c773780a + languageName: node + linkType: hard + +"keyv@npm:^3.0.0": + version: 3.1.0 + resolution: "keyv@npm:3.1.0" + dependencies: + json-buffer: 3.0.0 + checksum: bb7e8f3acffdbafbc2dd5b63f377fe6ec4c0e2c44fc82720449ef8ab54f4a7ce3802671ed94c0f475ae0a8549703353a2124561fcf3317010c141b32ca1ce903 + languageName: node + linkType: hard + +"keyv@npm:^4.5.3": + version: 4.5.4 + resolution: "keyv@npm:4.5.4" + dependencies: + json-buffer: 3.0.1 + checksum: 74a24395b1c34bd44ad5cb2b49140d087553e170625240b86755a6604cd65aa16efdbdeae5cdb17ba1284a0fbb25ad06263755dbc71b8d8b06f74232ce3cdd72 + languageName: node + linkType: hard + +"killable@npm:^1.0.1": + version: 1.0.1 + resolution: "killable@npm:1.0.1" + checksum: 911a85c6e390c19d72c4e3149347cf44042cbd7d18c3c6c5e4f706fdde6e0ed532473392e282c7ef27f518407e6cb7d2a0e71a2ae8d8d8f8ffdb68891a29a68a + languageName: node + linkType: hard + +"kind-of@npm:^3.0.2, kind-of@npm:^3.0.3, kind-of@npm:^3.2.0": + version: 3.2.2 + resolution: "kind-of@npm:3.2.2" + dependencies: + is-buffer: ^1.1.5 + checksum: e898df8ca2f31038f27d24f0b8080da7be274f986bc6ed176f37c77c454d76627619e1681f6f9d2e8d2fd7557a18ecc419a6bb54e422abcbb8da8f1a75e4b386 + languageName: node + linkType: hard + +"kind-of@npm:^4.0.0": + version: 4.0.0 + resolution: "kind-of@npm:4.0.0" + dependencies: + is-buffer: ^1.1.5 + checksum: 1b9e7624a8771b5a2489026e820f3bbbcc67893e1345804a56b23a91e9069965854d2a223a7c6ee563c45be9d8c6ff1ef87f28ed5f0d1a8d00d9dcbb067c529f + languageName: node + linkType: hard + +"kind-of@npm:^5.0.0": + version: 5.1.0 + resolution: "kind-of@npm:5.1.0" + checksum: f2a0102ae0cf19c4a953397e552571bad2b588b53282874f25fca7236396e650e2db50d41f9f516bd402536e4df968dbb51b8e69e4d5d4a7173def78448f7bab + languageName: node + linkType: hard + +"kind-of@npm:^6.0.0, kind-of@npm:^6.0.2": + version: 6.0.3 + resolution: "kind-of@npm:6.0.3" + checksum: 3ab01e7b1d440b22fe4c31f23d8d38b4d9b91d9f291df683476576493d5dfd2e03848a8b05813dd0c3f0e835bc63f433007ddeceb71f05cb25c45ae1b19c6d3b + languageName: node + linkType: hard + +"kleur@npm:^3.0.3": + version: 3.0.3 + resolution: "kleur@npm:3.0.3" + checksum: df82cd1e172f957bae9c536286265a5cdbd5eeca487cb0a3b2a7b41ef959fc61f8e7c0e9aeea9c114ccf2c166b6a8dd45a46fd619c1c569d210ecd2765ad5169 + languageName: node + linkType: hard + +"kleur@npm:^4.1.1": + version: 4.1.5 + resolution: "kleur@npm:4.1.5" + checksum: 1dc476e32741acf0b1b5b0627ffd0d722e342c1b0da14de3e8ae97821327ca08f9fb944542fb3c126d90ac5f27f9d804edbe7c585bf7d12ef495d115e0f22c12 + languageName: node + linkType: hard + +"klona@npm:^2.0.4": + version: 2.0.6 + resolution: "klona@npm:2.0.6" + checksum: ac9ee3732e42b96feb67faae4d27cf49494e8a3bf3fa7115ce242fe04786788e0aff4741a07a45a2462e2079aa983d73d38519c85d65b70ef11447bbc3c58ce7 + languageName: node + linkType: hard + +"language-subtag-registry@npm:~0.3.2": + version: 0.3.22 + resolution: "language-subtag-registry@npm:0.3.22" + checksum: 8ab70a7e0e055fe977ac16ea4c261faec7205ac43db5e806f72e5b59606939a3b972c4bd1e10e323b35d6ffa97c3e1c4c99f6553069dad2dfdd22020fa3eb56a + languageName: node + linkType: hard + +"language-tags@npm:=1.0.5": + version: 1.0.5 + resolution: "language-tags@npm:1.0.5" + dependencies: + language-subtag-registry: ~0.3.2 + checksum: c81b5d8b9f5f9cfd06ee71ada6ddfe1cf83044dd5eeefcd1e420ad491944da8957688db4a0a9bc562df4afdc2783425cbbdfd152c01d93179cf86888903123cf + languageName: node + linkType: hard + +"last-call-webpack-plugin@npm:^3.0.0": + version: 3.0.0 + resolution: "last-call-webpack-plugin@npm:3.0.0" + dependencies: + lodash: ^4.17.5 + webpack-sources: ^1.1.0 + checksum: 23c25a2397c9f75b769b5238ab798873e857baf2363d471d186c9f05212457943f0de16181f33aeecbfd42116b72a0f343fe8910d5d8010f24956d95d536c743 + languageName: node + linkType: hard + +"latest-version@npm:^5.1.0": + version: 5.1.0 + resolution: "latest-version@npm:5.1.0" + dependencies: + package-json: ^6.3.0 + checksum: fbc72b071eb66c40f652441fd783a9cca62f08bf42433651937f078cd9ef94bf728ec7743992777826e4e89305aef24f234b515e6030503a2cbee7fc9bdc2c0f + languageName: node + linkType: hard + +"lazy-val@npm:^1.0.4, lazy-val@npm:^1.0.5": + version: 1.0.5 + resolution: "lazy-val@npm:1.0.5" + checksum: 31e12e0b118826dfae74f8f3ff8ebcddfe4200ff88d0d448db175c7265ee537e0ba55488d411728246337f3ed3c9ec68416f10889f632a2ce28fb7a970909fb5 + languageName: node + linkType: hard + +"lcid@npm:^1.0.0": + version: 1.0.0 + resolution: "lcid@npm:1.0.0" + dependencies: + invert-kv: ^1.0.0 + checksum: e8c7a4db07663068c5c44b650938a2bc41aa992037eebb69376214320f202c1250e70b50c32f939e28345fd30c2d35b8e8cd9a19d5932c398246a864ce54843d + languageName: node + linkType: hard + +"leven@npm:^3.1.0": + version: 3.1.0 + resolution: "leven@npm:3.1.0" + checksum: 638401d534585261b6003db9d99afd244dfe82d75ddb6db5c0df412842d5ab30b2ef18de471aaec70fe69a46f17b4ae3c7f01d8a4e6580ef7adb9f4273ad1e55 + languageName: node + linkType: hard + +"levn@npm:^0.4.1": + version: 0.4.1 + resolution: "levn@npm:0.4.1" + dependencies: + prelude-ls: ^1.2.1 + type-check: ~0.4.0 + checksum: 12c5021c859bd0f5248561bf139121f0358285ec545ebf48bb3d346820d5c61a4309535c7f387ed7d84361cf821e124ce346c6b7cef8ee09a67c1473b46d0fc4 + languageName: node + linkType: hard + +"levn@npm:~0.3.0": + version: 0.3.0 + resolution: "levn@npm:0.3.0" + dependencies: + prelude-ls: ~1.1.2 + type-check: ~0.3.2 + checksum: 0d084a524231a8246bb10fec48cdbb35282099f6954838604f3c7fc66f2e16fa66fd9cc2f3f20a541a113c4dafdf181e822c887c8a319c9195444e6c64ac395e + languageName: node + linkType: hard + +"lines-and-columns@npm:^1.1.6": + version: 1.2.4 + resolution: "lines-and-columns@npm:1.2.4" + checksum: 0c37f9f7fa212b38912b7145e1cd16a5f3cd34d782441c3e6ca653485d326f58b3caccda66efce1c5812bde4961bbde3374fae4b0d11bf1226152337f3894aa5 + languageName: node + linkType: hard + +"loader-runner@npm:^2.4.0": + version: 2.4.0 + resolution: "loader-runner@npm:2.4.0" + checksum: e27eebbca5347a03f6b1d1bce5b2736a4984fb742f872c0a4d68e62de10f7637613e79a464d3bcd77c246d9c70fcac112bb4a3123010eb527e8b203a614647db + languageName: node + linkType: hard + +"loader-utils@npm:1.2.3": + version: 1.2.3 + resolution: "loader-utils@npm:1.2.3" + dependencies: + big.js: ^5.2.2 + emojis-list: ^2.0.0 + json5: ^1.0.1 + checksum: 385407fc2683b6d664276fd41df962296de4a15030bb24389de77b175570c3b56bd896869376ba14cf8b33a9e257e17a91d395739ba7e23b5b68a8749a41df7e + languageName: node + linkType: hard + +"loader-utils@npm:2.0.0": + version: 2.0.0 + resolution: "loader-utils@npm:2.0.0" + dependencies: + big.js: ^5.2.2 + emojis-list: ^3.0.0 + json5: ^2.1.2 + checksum: 6856423131b50b6f5f259da36f498cfd7fc3c3f8bb17777cf87fdd9159e797d4ba4288d9a96415fd8da62c2906960e88f74711dee72d03a9003bddcd0d364a51 + languageName: node + linkType: hard + +"loader-utils@npm:^1.1.0, loader-utils@npm:^1.2.3, loader-utils@npm:^1.4.0": + version: 1.4.2 + resolution: "loader-utils@npm:1.4.2" + dependencies: + big.js: ^5.2.2 + emojis-list: ^3.0.0 + json5: ^1.0.1 + checksum: eb6fb622efc0ffd1abdf68a2022f9eac62bef8ec599cf8adb75e94d1d338381780be6278534170e99edc03380a6d29bc7eb1563c89ce17c5fed3a0b17f1ad804 + languageName: node + linkType: hard + +"loader-utils@npm:^2.0.0": + version: 2.0.4 + resolution: "loader-utils@npm:2.0.4" + dependencies: + big.js: ^5.2.2 + emojis-list: ^3.0.0 + json5: ^2.1.2 + checksum: a5281f5fff1eaa310ad5e1164095689443630f3411e927f95031ab4fb83b4a98f388185bb1fe949e8ab8d4247004336a625e9255c22122b815bb9a4c5d8fc3b7 + languageName: node + linkType: hard + +"locate-path@npm:^3.0.0": + version: 3.0.0 + resolution: "locate-path@npm:3.0.0" + dependencies: + p-locate: ^3.0.0 + path-exists: ^3.0.0 + checksum: 53db3996672f21f8b0bf2a2c645ae2c13ffdae1eeecfcd399a583bce8516c0b88dcb4222ca6efbbbeb6949df7e46860895be2c02e8d3219abd373ace3bfb4e11 + languageName: node + linkType: hard + +"locate-path@npm:^5.0.0": + version: 5.0.0 + resolution: "locate-path@npm:5.0.0" + dependencies: + p-locate: ^4.1.0 + checksum: 83e51725e67517287d73e1ded92b28602e3ae5580b301fe54bfb76c0c723e3f285b19252e375712316774cf52006cb236aed5704692c32db0d5d089b69696e30 + languageName: node + linkType: hard + +"lodash._reinterpolate@npm:^3.0.0": + version: 3.0.0 + resolution: "lodash._reinterpolate@npm:3.0.0" + checksum: 06d2d5f33169604fa5e9f27b6067ed9fb85d51a84202a656901e5ffb63b426781a601508466f039c720af111b0c685d12f1a5c14ff8df5d5f27e491e562784b2 + languageName: node + linkType: hard + +"lodash.camelcase@npm:^4.3.0": + version: 4.3.0 + resolution: "lodash.camelcase@npm:4.3.0" + checksum: cb9227612f71b83e42de93eccf1232feeb25e705bdb19ba26c04f91e885bfd3dd5c517c4a97137658190581d3493ea3973072ca010aab7e301046d90740393d1 + languageName: node + linkType: hard + +"lodash.clone@npm:^4.5.0": + version: 4.5.0 + resolution: "lodash.clone@npm:4.5.0" + checksum: 5839f22acf3a43c026ac4325f7bcd378f34967415cd0b9fd7efa9bbbf38dc665900d36e040944c5afab94a51ff8a24f6cfc3781fe439705cbad5c722e9506b16 + languageName: node + linkType: hard + +"lodash.debounce@npm:^4.0.8": + version: 4.0.8 + resolution: "lodash.debounce@npm:4.0.8" + checksum: a3f527d22c548f43ae31c861ada88b2637eb48ac6aa3eb56e82d44917971b8aa96fbb37aa60efea674dc4ee8c42074f90f7b1f772e9db375435f6c83a19b3bc6 + languageName: node + linkType: hard + +"lodash.memoize@npm:^4.1.2": + version: 4.1.2 + resolution: "lodash.memoize@npm:4.1.2" + checksum: 9ff3942feeccffa4f1fafa88d32f0d24fdc62fd15ded5a74a5f950ff5f0c6f61916157246744c620173dddf38d37095a92327d5fd3861e2063e736a5c207d089 + languageName: node + linkType: hard + +"lodash.merge@npm:^4.6.2": + version: 4.6.2 + resolution: "lodash.merge@npm:4.6.2" + checksum: ad580b4bdbb7ca1f7abf7e1bce63a9a0b98e370cf40194b03380a46b4ed799c9573029599caebc1b14e3f24b111aef72b96674a56cfa105e0f5ac70546cdc005 + languageName: node + linkType: hard + +"lodash.template@npm:^4.5.0": + version: 4.5.0 + resolution: "lodash.template@npm:4.5.0" + dependencies: + lodash._reinterpolate: ^3.0.0 + lodash.templatesettings: ^4.0.0 + checksum: ca64e5f07b6646c9d3dbc0fe3aaa995cb227c4918abd1cef7a9024cd9c924f2fa389a0ec4296aa6634667e029bc81d4bbdb8efbfde11df76d66085e6c529b450 + languageName: node + linkType: hard + +"lodash.templatesettings@npm:^4.0.0": + version: 4.2.0 + resolution: "lodash.templatesettings@npm:4.2.0" + dependencies: + lodash._reinterpolate: ^3.0.0 + checksum: 863e025478b092997e11a04e9d9e735875eeff1ffcd6c61742aa8272e3c2cddc89ce795eb9726c4e74cef5991f722897ff37df7738a125895f23fc7d12a7bb59 + languageName: node + linkType: hard + +"lodash.truncate@npm:^4.4.2": + version: 4.4.2 + resolution: "lodash.truncate@npm:4.4.2" + checksum: b463d8a382cfb5f0e71c504dcb6f807a7bd379ff1ea216669aa42c52fc28c54e404bfbd96791aa09e6df0de2c1d7b8f1b7f4b1a61f324d38fe98bc535aeee4f5 + languageName: node + linkType: hard + +"lodash.uniq@npm:^4.5.0": + version: 4.5.0 + resolution: "lodash.uniq@npm:4.5.0" + checksum: a4779b57a8d0f3c441af13d9afe7ecff22dd1b8ce1129849f71d9bbc8e8ee4e46dfb4b7c28f7ad3d67481edd6e51126e4e2a6ee276e25906d10f7140187c392d + languageName: node + linkType: hard + +"lodash@npm:>=3.5 <5, lodash@npm:^4.17.10, lodash@npm:^4.17.11, lodash@npm:^4.17.14, lodash@npm:^4.17.15, lodash@npm:^4.17.19, lodash@npm:^4.17.20, lodash@npm:^4.17.21, lodash@npm:^4.17.5, lodash@npm:^4.7.0": + version: 4.17.21 + resolution: "lodash@npm:4.17.21" + checksum: eb835a2e51d381e561e508ce932ea50a8e5a68f4ebdd771ea240d3048244a8d13658acbd502cd4829768c56f2e16bdd4340b9ea141297d472517b83868e677f7 + languageName: node + linkType: hard + +"loglevel@npm:^1.6.8": + version: 1.8.1 + resolution: "loglevel@npm:1.8.1" + checksum: a1a62db40291aaeaef2f612334c49e531bff71cc1d01a2acab689ab80d59e092f852ab164a5aedc1a752fdc46b7b162cb097d8a9eb2cf0b299511106c29af61d + languageName: node + linkType: hard + +"long@npm:^4.0.0": + version: 4.0.0 + resolution: "long@npm:4.0.0" + checksum: 16afbe8f749c7c849db1f4de4e2e6a31ac6e617cead3bdc4f9605cb703cd20e1e9fc1a7baba674ffcca57d660a6e5b53a9e236d7b25a295d3855cca79cc06744 + languageName: node + linkType: hard + +"long@npm:^5.0.0": + version: 5.2.3 + resolution: "long@npm:5.2.3" + checksum: 885ede7c3de4facccbd2cacc6168bae3a02c3e836159ea4252c87b6e34d40af819824b2d4edce330bfb5c4d6e8ce3ec5864bdcf9473fa1f53a4f8225860e5897 + languageName: node + linkType: hard + +"long@npm:~3": + version: 3.2.0 + resolution: "long@npm:3.2.0" + checksum: bc27bdeab42cb2f25d0a0faf5fbf77b657bd59236ae0ed649c44f91f35e632230ebd0c62d208bb4e9c69ca558a45e9c9c0810e6b5c0380a1754b8f3b5b7b62d7 + languageName: node + linkType: hard + +"loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": + version: 1.4.0 + resolution: "loose-envify@npm:1.4.0" + dependencies: + js-tokens: ^3.0.0 || ^4.0.0 + bin: + loose-envify: cli.js + checksum: 6517e24e0cad87ec9888f500c5b5947032cdfe6ef65e1c1936a0c48a524b81e65542c9c3edc91c97d5bddc806ee2a985dbc79be89215d613b1de5db6d1cfe6f4 + languageName: node + linkType: hard + +"lower-case@npm:^2.0.2": + version: 2.0.2 + resolution: "lower-case@npm:2.0.2" + dependencies: + tslib: ^2.0.3 + checksum: 83a0a5f159ad7614bee8bf976b96275f3954335a84fad2696927f609ddae902802c4f3312d86668722e668bef41400254807e1d3a7f2e8c3eede79691aa1f010 + languageName: node + linkType: hard + +"lowercase-keys@npm:^1.0.0, lowercase-keys@npm:^1.0.1": + version: 1.0.1 + resolution: "lowercase-keys@npm:1.0.1" + checksum: 4d045026595936e09953e3867722e309415ff2c80d7701d067546d75ef698dac218a4f53c6d1d0e7368b47e45fd7529df47e6cb56fbb90523ba599f898b3d147 + languageName: node + linkType: hard + +"lowercase-keys@npm:^2.0.0": + version: 2.0.0 + resolution: "lowercase-keys@npm:2.0.0" + checksum: 24d7ebd56ccdf15ff529ca9e08863f3c54b0b9d1edb97a3ae1af34940ae666c01a1e6d200707bce730a8ef76cb57cc10e65f245ecaaf7e6bc8639f2fb460ac23 + languageName: node + linkType: hard + +"lru-cache@npm:^5.1.1": + version: 5.1.1 + resolution: "lru-cache@npm:5.1.1" + dependencies: + yallist: ^3.0.2 + checksum: c154ae1cbb0c2206d1501a0e94df349653c92c8cbb25236d7e85190bcaf4567a03ac6eb43166fabfa36fd35623694da7233e88d9601fbf411a9a481d85dbd2cb + languageName: node + linkType: hard + +"lru-cache@npm:^6.0.0": + version: 6.0.0 + resolution: "lru-cache@npm:6.0.0" + dependencies: + yallist: ^4.0.0 + checksum: f97f499f898f23e4585742138a22f22526254fdba6d75d41a1c2526b3b6cc5747ef59c5612ba7375f42aca4f8461950e925ba08c991ead0651b4918b7c978297 + languageName: node + linkType: hard + +"lru-cache@npm:^7.7.1": + version: 7.18.3 + resolution: "lru-cache@npm:7.18.3" + checksum: e550d772384709deea3f141af34b6d4fa392e2e418c1498c078de0ee63670f1f46f5eee746e8ef7e69e1c895af0d4224e62ee33e66a543a14763b0f2e74c1356 + languageName: node + linkType: hard + +"lru-cache@npm:^9.1.1 || ^10.0.0": + version: 10.0.1 + resolution: "lru-cache@npm:10.0.1" + checksum: 06f8d0e1ceabd76bb6f644a26dbb0b4c471b79c7b514c13c6856113879b3bf369eb7b497dad4ff2b7e2636db202412394865b33c332100876d838ad1372f0181 + languageName: node + linkType: hard + +"lz-string@npm:^1.4.4": + version: 1.5.0 + resolution: "lz-string@npm:1.5.0" + bin: + lz-string: bin/bin.js + checksum: 1ee98b4580246fd90dd54da6e346fb1caefcf05f677c686d9af237a157fdea3fd7c83a4bc58f858cd5b10a34d27afe0fdcbd0505a47e0590726a873dc8b8f65d + languageName: node + linkType: hard + +"magic-string@npm:^0.25.0, magic-string@npm:^0.25.7": + version: 0.25.9 + resolution: "magic-string@npm:0.25.9" + dependencies: + sourcemap-codec: ^1.4.8 + checksum: 9a0e55a15c7303fc360f9572a71cffba1f61451bc92c5602b1206c9d17f492403bf96f946dfce7483e66822d6b74607262e24392e87b0ac27b786e69a40e9b1a + languageName: node + linkType: hard + +"make-dir@npm:^2.0.0": + version: 2.1.0 + resolution: "make-dir@npm:2.1.0" + dependencies: + pify: ^4.0.1 + semver: ^5.6.0 + checksum: 043548886bfaf1820323c6a2997e6d2fa51ccc2586ac14e6f14634f7458b4db2daf15f8c310e2a0abd3e0cddc64df1890d8fc7263033602c47bb12cbfcf86aab + languageName: node + linkType: hard + +"make-dir@npm:^3.0.0, make-dir@npm:^3.0.2, make-dir@npm:^3.1.0": + version: 3.1.0 + resolution: "make-dir@npm:3.1.0" + dependencies: + semver: ^6.0.0 + checksum: 484200020ab5a1fdf12f393fe5f385fc8e4378824c940fba1729dcd198ae4ff24867bc7a5646331e50cead8abff5d9270c456314386e629acec6dff4b8016b78 + languageName: node + linkType: hard + +"make-dir@npm:^4.0.0": + version: 4.0.0 + resolution: "make-dir@npm:4.0.0" + dependencies: + semver: ^7.5.3 + checksum: bf0731a2dd3aab4db6f3de1585cea0b746bb73eb5a02e3d8d72757e376e64e6ada190b1eddcde5b2f24a81b688a9897efd5018737d05e02e2a671dda9cff8a8a + languageName: node + linkType: hard + +"make-fetch-happen@npm:^11.0.3": + version: 11.1.1 + resolution: "make-fetch-happen@npm:11.1.1" + dependencies: + agentkeepalive: ^4.2.1 + cacache: ^17.0.0 + http-cache-semantics: ^4.1.1 + http-proxy-agent: ^5.0.0 + https-proxy-agent: ^5.0.0 + is-lambda: ^1.0.1 + lru-cache: ^7.7.1 + minipass: ^5.0.0 + minipass-fetch: ^3.0.0 + minipass-flush: ^1.0.5 + minipass-pipeline: ^1.2.4 + negotiator: ^0.6.3 + promise-retry: ^2.0.1 + socks-proxy-agent: ^7.0.0 + ssri: ^10.0.0 + checksum: 7268bf274a0f6dcf0343829489a4506603ff34bd0649c12058753900b0eb29191dce5dba12680719a5d0a983d3e57810f594a12f3c18494e93a1fbc6348a4540 + languageName: node + linkType: hard + +"makeerror@npm:1.0.12": + version: 1.0.12 + resolution: "makeerror@npm:1.0.12" + dependencies: + tmpl: 1.0.5 + checksum: b38a025a12c8146d6eeea5a7f2bf27d51d8ad6064da8ca9405fcf7bf9b54acd43e3b30ddd7abb9b1bfa4ddb266019133313482570ddb207de568f71ecfcf6060 + languageName: node + linkType: hard + +"map-cache@npm:^0.2.2": + version: 0.2.2 + resolution: "map-cache@npm:0.2.2" + checksum: 3067cea54285c43848bb4539f978a15dedc63c03022abeec6ef05c8cb6829f920f13b94bcaf04142fc6a088318e564c4785704072910d120d55dbc2e0c421969 + languageName: node + linkType: hard + +"map-visit@npm:^1.0.0": + version: 1.0.0 + resolution: "map-visit@npm:1.0.0" + dependencies: + object-visit: ^1.0.0 + checksum: c27045a5021c344fc19b9132eb30313e441863b2951029f8f8b66f79d3d8c1e7e5091578075a996f74e417479506fe9ede28c44ca7bc351a61c9d8073daec36a + languageName: node + linkType: hard + +"matcher@npm:^3.0.0": + version: 3.0.0 + resolution: "matcher@npm:3.0.0" + dependencies: + escape-string-regexp: ^4.0.0 + checksum: 8bee1a7ab7609c2c21d9c9254b6785fa708eadf289032b556d57a34e98fcd4c537659a004dafee6ce80ab157099e645c199dc52678dff1e7fb0a6684e0da4dbe + languageName: node + linkType: hard + +"matchmediaquery@npm:^0.3.0": + version: 0.3.1 + resolution: "matchmediaquery@npm:0.3.1" + dependencies: + css-mediaquery: ^0.1.2 + checksum: 154e1650f79d78858424d7086093756ad2fdb1cd9ad19230b99a47c363a1da9c6692d6ca56ea49447fb516f580c59fd60d8b9a06247e088d8e1a658e6e5604d7 + languageName: node + linkType: hard + +"md5.js@npm:^1.3.4": + version: 1.3.5 + resolution: "md5.js@npm:1.3.5" + dependencies: + hash-base: ^3.0.0 + inherits: ^2.0.1 + safe-buffer: ^5.1.2 + checksum: 098494d885684bcc4f92294b18ba61b7bd353c23147fbc4688c75b45cb8590f5a95fd4584d742415dcc52487f7a1ef6ea611cfa1543b0dc4492fe026357f3f0c + languageName: node + linkType: hard + +"mdn-data@npm:2.0.14": + version: 2.0.14 + resolution: "mdn-data@npm:2.0.14" + checksum: 9d0128ed425a89f4cba8f787dca27ad9408b5cb1b220af2d938e2a0629d17d879a34d2cb19318bdb26c3f14c77dd5dfbae67211f5caaf07b61b1f2c5c8c7dc16 + languageName: node + linkType: hard + +"mdn-data@npm:2.0.4": + version: 2.0.4 + resolution: "mdn-data@npm:2.0.4" + checksum: add3c95e6d03d301b8a8bcfee3de33f4d07e4c5eee5b79f18d6d737de717e22472deadf67c1a8563983c0b603e10d7df40aa8e5fddf18884dfe118ccec7ae329 + languageName: node + linkType: hard + +"media-typer@npm:0.3.0": + version: 0.3.0 + resolution: "media-typer@npm:0.3.0" + checksum: af1b38516c28ec95d6b0826f6c8f276c58aec391f76be42aa07646b4e39d317723e869700933ca6995b056db4b09a78c92d5440dc23657e6764be5d28874bba1 + languageName: node + linkType: hard + +"memoize-one@npm:^6.0.0": + version: 6.0.0 + resolution: "memoize-one@npm:6.0.0" + checksum: f185ea69f7cceae5d1cb596266dcffccf545e8e7b4106ec6aa93b71ab9d16460dd118ac8b12982c55f6d6322fcc1485de139df07eacffaae94888b9b3ad7675f + languageName: node + linkType: hard + +"memory-fs@npm:^0.4.1": + version: 0.4.1 + resolution: "memory-fs@npm:0.4.1" + dependencies: + errno: ^0.1.3 + readable-stream: ^2.0.1 + checksum: 6db6c8682eff836664ca9b5b6052ae38d21713dda9d0ef4700fa5c0599a8bc16b2093bee75ac3dedbe59fb2222d368f25bafaa62ba143c41051359cbcb005044 + languageName: node + linkType: hard + +"memory-fs@npm:^0.5.0": + version: 0.5.0 + resolution: "memory-fs@npm:0.5.0" + dependencies: + errno: ^0.1.3 + readable-stream: ^2.0.1 + checksum: a9f25b0a8ecfb7324277393f19ef68e6ba53b9e6e4b526bbf2ba23055c5440fbf61acc7bf66bfd980e9eb4951a4790f6f777a9a3abd36603f22c87e8a64d3d6b + languageName: node + linkType: hard + +"merge-descriptors@npm:1.0.1": + version: 1.0.1 + resolution: "merge-descriptors@npm:1.0.1" + checksum: 5abc259d2ae25bb06d19ce2b94a21632583c74e2a9109ee1ba7fd147aa7362b380d971e0251069f8b3eb7d48c21ac839e21fa177b335e82c76ec172e30c31a26 + languageName: node + linkType: hard + +"merge-stream@npm:^2.0.0": + version: 2.0.0 + resolution: "merge-stream@npm:2.0.0" + checksum: 6fa4dcc8d86629705cea944a4b88ef4cb0e07656ebf223fa287443256414283dd25d91c1cd84c77987f2aec5927af1a9db6085757cb43d90eb170ebf4b47f4f4 + languageName: node + linkType: hard + +"merge2@npm:^1.3.0, merge2@npm:^1.4.1": + version: 1.4.1 + resolution: "merge2@npm:1.4.1" + checksum: 7268db63ed5169466540b6fb947aec313200bcf6d40c5ab722c22e242f651994619bcd85601602972d3c85bd2cc45a358a4c61937e9f11a061919a1da569b0c2 + languageName: node + linkType: hard + +"methods@npm:~1.1.2": + version: 1.1.2 + resolution: "methods@npm:1.1.2" + checksum: 0917ff4041fa8e2f2fda5425a955fe16ca411591fbd123c0d722fcf02b73971ed6f764d85f0a6f547ce49ee0221ce2c19a5fa692157931cecb422984f1dcd13a + languageName: node + linkType: hard + +"microevent.ts@npm:~0.1.1": + version: 0.1.1 + resolution: "microevent.ts@npm:0.1.1" + checksum: 7874fcdb3f0dfa4e996d3ea63b3b9882874ae7d22be28d51ae20da24c712e9e28e5011d988095c27dd2b32e37c0ad7425342a71b89adb8e808ec7194fadf4a7a + languageName: node + linkType: hard + +"micromatch@npm:^3.1.10, micromatch@npm:^3.1.4": + version: 3.1.10 + resolution: "micromatch@npm:3.1.10" + dependencies: + arr-diff: ^4.0.0 + array-unique: ^0.3.2 + braces: ^2.3.1 + define-property: ^2.0.2 + extend-shallow: ^3.0.2 + extglob: ^2.0.4 + fragment-cache: ^0.2.1 + kind-of: ^6.0.2 + nanomatch: ^1.2.9 + object.pick: ^1.3.0 + regex-not: ^1.0.0 + snapdragon: ^0.8.1 + to-regex: ^3.0.2 + checksum: ad226cba4daa95b4eaf47b2ca331c8d2e038d7b41ae7ed0697cde27f3f1d6142881ab03d4da51b65d9d315eceb5e4cdddb3fbb55f5f72cfa19cf3ea469d054dc + languageName: node + linkType: hard + +"micromatch@npm:^4.0.2, micromatch@npm:^4.0.4, micromatch@npm:^4.0.5": + version: 4.0.5 + resolution: "micromatch@npm:4.0.5" + dependencies: + braces: ^3.0.2 + picomatch: ^2.3.1 + checksum: 02a17b671c06e8fefeeb6ef996119c1e597c942e632a21ef589154f23898c9c6a9858526246abb14f8bca6e77734aa9dcf65476fca47cedfb80d9577d52843fc + languageName: node + linkType: hard + +"miller-rabin@npm:^4.0.0": + version: 4.0.1 + resolution: "miller-rabin@npm:4.0.1" + dependencies: + bn.js: ^4.0.0 + brorand: ^1.0.1 + bin: + miller-rabin: bin/miller-rabin + checksum: 00cd1ab838ac49b03f236cc32a14d29d7d28637a53096bf5c6246a032a37749c9bd9ce7360cbf55b41b89b7d649824949ff12bc8eee29ac77c6b38eada619ece + languageName: node + linkType: hard + +"mime-db@npm:1.52.0, mime-db@npm:>= 1.43.0 < 2": + version: 1.52.0 + resolution: "mime-db@npm:1.52.0" + checksum: 0d99a03585f8b39d68182803b12ac601d9c01abfa28ec56204fa330bc9f3d1c5e14beb049bafadb3dbdf646dfb94b87e24d4ec7b31b7279ef906a8ea9b6a513f + languageName: node + linkType: hard + +"mime-types@npm:^2.1.12, mime-types@npm:^2.1.27, mime-types@npm:~2.1.17, mime-types@npm:~2.1.24, mime-types@npm:~2.1.34": + version: 2.1.35 + resolution: "mime-types@npm:2.1.35" + dependencies: + mime-db: 1.52.0 + checksum: 89a5b7f1def9f3af5dad6496c5ed50191ae4331cc5389d7c521c8ad28d5fdad2d06fd81baf38fed813dc4e46bb55c8145bb0ff406330818c9cf712fb2e9b3836 + languageName: node + linkType: hard + +"mime@npm:1.6.0": + version: 1.6.0 + resolution: "mime@npm:1.6.0" + bin: + mime: cli.js + checksum: fef25e39263e6d207580bdc629f8872a3f9772c923c7f8c7e793175cee22777bbe8bba95e5d509a40aaa292d8974514ce634ae35769faa45f22d17edda5e8557 + languageName: node + linkType: hard + +"mime@npm:^2.4.4, mime@npm:^2.5.2": + version: 2.6.0 + resolution: "mime@npm:2.6.0" + bin: + mime: cli.js + checksum: 1497ba7b9f6960694268a557eae24b743fd2923da46ec392b042469f4b901721ba0adcf8b0d3c2677839d0e243b209d76e5edcbd09cfdeffa2dfb6bb4df4b862 + languageName: node + linkType: hard + +"mimic-fn@npm:^2.1.0": + version: 2.1.0 + resolution: "mimic-fn@npm:2.1.0" + checksum: d2421a3444848ce7f84bd49115ddacff29c15745db73f54041edc906c14b131a38d05298dae3081667627a59b2eb1ca4b436ff2e1b80f69679522410418b478a + languageName: node + linkType: hard + +"mimic-response@npm:^1.0.0, mimic-response@npm:^1.0.1": + version: 1.0.1 + resolution: "mimic-response@npm:1.0.1" + checksum: 034c78753b0e622bc03c983663b1cdf66d03861050e0c8606563d149bc2b02d63f62ce4d32be4ab50d0553ae0ffe647fc34d1f5281184c6e1e8cf4d85e8d9823 + languageName: node + linkType: hard + +"min-indent@npm:^1.0.0": + version: 1.0.1 + resolution: "min-indent@npm:1.0.1" + checksum: bfc6dd03c5eaf623a4963ebd94d087f6f4bbbfd8c41329a7f09706b0cb66969c4ddd336abeb587bc44bc6f08e13bf90f0b374f9d71f9f01e04adc2cd6f083ef1 + languageName: node + linkType: hard + +"mini-css-extract-plugin@npm:0.11.3": + version: 0.11.3 + resolution: "mini-css-extract-plugin@npm:0.11.3" + dependencies: + loader-utils: ^1.1.0 + normalize-url: 1.9.1 + schema-utils: ^1.0.0 + webpack-sources: ^1.1.0 + peerDependencies: + webpack: ^4.4.0 || ^5.0.0 + checksum: 14fbdf1338fe0264a2f7f87b3fc640809b7443f6434c6532bdbec1c5ab113502325fec958e9cf0667c3790087dc1e83c02e1f4d7463c10c956b0d6ebe56ea99e + languageName: node + linkType: hard + +"minimalistic-assert@npm:^1.0.0, minimalistic-assert@npm:^1.0.1": + version: 1.0.1 + resolution: "minimalistic-assert@npm:1.0.1" + checksum: cc7974a9268fbf130fb055aff76700d7e2d8be5f761fb5c60318d0ed010d839ab3661a533ad29a5d37653133385204c503bfac995aaa4236f4e847461ea32ba7 + languageName: node + linkType: hard + +"minimalistic-crypto-utils@npm:^1.0.1": + version: 1.0.1 + resolution: "minimalistic-crypto-utils@npm:1.0.1" + checksum: 6e8a0422b30039406efd4c440829ea8f988845db02a3299f372fceba56ffa94994a9c0f2fd70c17f9969eedfbd72f34b5070ead9656a34d3f71c0bd72583a0ed + languageName: node + linkType: hard + +"minimatch@npm:3.0.4": + version: 3.0.4 + resolution: "minimatch@npm:3.0.4" + dependencies: + brace-expansion: ^1.1.7 + checksum: 66ac295f8a7b59788000ea3749938b0970344c841750abd96694f80269b926ebcafad3deeb3f1da2522978b119e6ae3a5869b63b13a7859a456b3408bd18a078 + languageName: node + linkType: hard + +"minimatch@npm:^3.0.4, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": + version: 3.1.2 + resolution: "minimatch@npm:3.1.2" + dependencies: + brace-expansion: ^1.1.7 + checksum: c154e566406683e7bcb746e000b84d74465b3a832c45d59912b9b55cd50dee66e5c4b1e5566dba26154040e51672f9aa450a9aef0c97cfc7336b78b7afb9540a + languageName: node + linkType: hard + +"minimatch@npm:^5.0.1": + version: 5.1.6 + resolution: "minimatch@npm:5.1.6" + dependencies: + brace-expansion: ^2.0.1 + checksum: 7564208ef81d7065a370f788d337cd80a689e981042cb9a1d0e6580b6c6a8c9279eba80010516e258835a988363f99f54a6f711a315089b8b42694f5da9d0d77 + languageName: node + linkType: hard + +"minimatch@npm:^9.0.1": + version: 9.0.3 + resolution: "minimatch@npm:9.0.3" + dependencies: + brace-expansion: ^2.0.1 + checksum: 253487976bf485b612f16bf57463520a14f512662e592e95c571afdab1442a6a6864b6c88f248ce6fc4ff0b6de04ac7aa6c8bb51e868e99d1d65eb0658a708b5 + languageName: node + linkType: hard + +"minimist@npm:^1.1.1, minimist@npm:^1.2.0, minimist@npm:^1.2.5, minimist@npm:^1.2.6": + version: 1.2.8 + resolution: "minimist@npm:1.2.8" + checksum: 75a6d645fb122dad29c06a7597bddea977258957ed88d7a6df59b5cd3fe4a527e253e9bbf2e783e4b73657f9098b96a5fe96ab8a113655d4109108577ecf85b0 + languageName: node + linkType: hard + +"minipass-collect@npm:^1.0.2": + version: 1.0.2 + resolution: "minipass-collect@npm:1.0.2" + dependencies: + minipass: ^3.0.0 + checksum: 14df761028f3e47293aee72888f2657695ec66bd7d09cae7ad558da30415fdc4752bbfee66287dcc6fd5e6a2fa3466d6c484dc1cbd986525d9393b9523d97f10 + languageName: node + linkType: hard + +"minipass-fetch@npm:^3.0.0": + version: 3.0.4 + resolution: "minipass-fetch@npm:3.0.4" + dependencies: + encoding: ^0.1.13 + minipass: ^7.0.3 + minipass-sized: ^1.0.3 + minizlib: ^2.1.2 + dependenciesMeta: + encoding: + optional: true + checksum: af7aad15d5c128ab1ebe52e043bdf7d62c3c6f0cecb9285b40d7b395e1375b45dcdfd40e63e93d26a0e8249c9efd5c325c65575aceee192883970ff8cb11364a + languageName: node + linkType: hard + +"minipass-flush@npm:^1.0.5": + version: 1.0.5 + resolution: "minipass-flush@npm:1.0.5" + dependencies: + minipass: ^3.0.0 + checksum: 56269a0b22bad756a08a94b1ffc36b7c9c5de0735a4dd1ab2b06c066d795cfd1f0ac44a0fcae13eece5589b908ecddc867f04c745c7009be0b566421ea0944cf + languageName: node + linkType: hard + +"minipass-pipeline@npm:^1.2.2, minipass-pipeline@npm:^1.2.4": + version: 1.2.4 + resolution: "minipass-pipeline@npm:1.2.4" + dependencies: + minipass: ^3.0.0 + checksum: b14240dac0d29823c3d5911c286069e36d0b81173d7bdf07a7e4a91ecdef92cdff4baaf31ea3746f1c61e0957f652e641223970870e2353593f382112257971b + languageName: node + linkType: hard + +"minipass-sized@npm:^1.0.3": + version: 1.0.3 + resolution: "minipass-sized@npm:1.0.3" + dependencies: + minipass: ^3.0.0 + checksum: 79076749fcacf21b5d16dd596d32c3b6bf4d6e62abb43868fac21674078505c8b15eaca4e47ed844985a4514854f917d78f588fcd029693709417d8f98b2bd60 + languageName: node + linkType: hard + +"minipass@npm:^3.0.0, minipass@npm:^3.1.1": + version: 3.3.6 + resolution: "minipass@npm:3.3.6" + dependencies: + yallist: ^4.0.0 + checksum: a30d083c8054cee83cdcdc97f97e4641a3f58ae743970457b1489ce38ee1167b3aaf7d815cd39ec7a99b9c40397fd4f686e83750e73e652b21cb516f6d845e48 + languageName: node + linkType: hard + +"minipass@npm:^5.0.0": + version: 5.0.0 + resolution: "minipass@npm:5.0.0" + checksum: 425dab288738853fded43da3314a0b5c035844d6f3097a8e3b5b29b328da8f3c1af6fc70618b32c29ff906284cf6406b6841376f21caaadd0793c1d5a6a620ea + languageName: node + linkType: hard + +"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.3": + version: 7.0.4 + resolution: "minipass@npm:7.0.4" + checksum: 87585e258b9488caf2e7acea242fd7856bbe9a2c84a7807643513a338d66f368c7d518200ad7b70a508664d408aa000517647b2930c259a8b1f9f0984f344a21 + languageName: node + linkType: hard + +"minizlib@npm:^2.1.1, minizlib@npm:^2.1.2": + version: 2.1.2 + resolution: "minizlib@npm:2.1.2" + dependencies: + minipass: ^3.0.0 + yallist: ^4.0.0 + checksum: f1fdeac0b07cf8f30fcf12f4b586795b97be856edea22b5e9072707be51fc95d41487faec3f265b42973a304fe3a64acd91a44a3826a963e37b37bafde0212c3 + languageName: node + linkType: hard + +"mississippi@npm:^3.0.0": + version: 3.0.0 + resolution: "mississippi@npm:3.0.0" + dependencies: + concat-stream: ^1.5.0 + duplexify: ^3.4.2 + end-of-stream: ^1.1.0 + flush-write-stream: ^1.0.0 + from2: ^2.1.0 + parallel-transform: ^1.1.0 + pump: ^3.0.0 + pumpify: ^1.3.3 + stream-each: ^1.1.0 + through2: ^2.0.0 + checksum: 84b3d9889621d293f9a596bafe60df863b330c88fc19215ced8f603c605fc7e1bf06f8e036edf301bd630a03fd5d9d7d23d5d6b9a4802c30ca864d800f0bd9f8 + languageName: node + linkType: hard + +"mixin-deep@npm:^1.2.0": + version: 1.3.2 + resolution: "mixin-deep@npm:1.3.2" + dependencies: + for-in: ^1.0.2 + is-extendable: ^1.0.1 + checksum: 820d5a51fcb7479f2926b97f2c3bb223546bc915e6b3a3eb5d906dda871bba569863595424a76682f2b15718252954644f3891437cb7e3f220949bed54b1750d + languageName: node + linkType: hard + +"mkdirp@npm:^0.5.1, mkdirp@npm:^0.5.3, mkdirp@npm:^0.5.4, mkdirp@npm:^0.5.6, mkdirp@npm:~0.5.1": + version: 0.5.6 + resolution: "mkdirp@npm:0.5.6" + dependencies: + minimist: ^1.2.6 + bin: + mkdirp: bin/cmd.js + checksum: 0c91b721bb12c3f9af4b77ebf73604baf350e64d80df91754dc509491ae93bf238581e59c7188360cec7cb62fc4100959245a42cfe01834efedc5e9d068376c2 + languageName: node + linkType: hard + +"mkdirp@npm:^1.0.3, mkdirp@npm:^1.0.4": + version: 1.0.4 + resolution: "mkdirp@npm:1.0.4" + bin: + mkdirp: bin/cmd.js + checksum: a96865108c6c3b1b8e1d5e9f11843de1e077e57737602de1b82030815f311be11f96f09cce59bd5b903d0b29834733e5313f9301e3ed6d6f6fba2eae0df4298f + languageName: node + linkType: hard + +"move-concurrently@npm:^1.0.1": + version: 1.0.1 + resolution: "move-concurrently@npm:1.0.1" + dependencies: + aproba: ^1.1.1 + copy-concurrently: ^1.0.0 + fs-write-stream-atomic: ^1.0.8 + mkdirp: ^0.5.1 + rimraf: ^2.5.4 + run-queue: ^1.0.3 + checksum: 4ea3296c150b09e798177847f673eb5783f8ca417ba806668d2c631739f653e1a735f19fb9b6e2f5e25ee2e4c0a6224732237a8e4f84c764e99d7462d258209e + languageName: node + linkType: hard + +"ms@npm:2.0.0": + version: 2.0.0 + resolution: "ms@npm:2.0.0" + checksum: 0e6a22b8b746d2e0b65a430519934fefd41b6db0682e3477c10f60c76e947c4c0ad06f63ffdf1d78d335f83edee8c0aa928aa66a36c7cd95b69b26f468d527f4 + languageName: node + linkType: hard + +"ms@npm:2.1.2": + version: 2.1.2 + resolution: "ms@npm:2.1.2" + checksum: 673cdb2c3133eb050c745908d8ce632ed2c02d85640e2edb3ace856a2266a813b30c613569bf3354fdf4ea7d1a1494add3bfa95e2713baa27d0c2c71fc44f58f + languageName: node + linkType: hard + +"ms@npm:2.1.3, ms@npm:^2.0.0, ms@npm:^2.1.1": + version: 2.1.3 + resolution: "ms@npm:2.1.3" + checksum: aa92de608021b242401676e35cfa5aa42dd70cbdc082b916da7fb925c542173e36bce97ea3e804923fe92c0ad991434e4a38327e15a1b5b5f945d66df615ae6d + languageName: node + linkType: hard + +"multicast-dns-service-types@npm:^1.1.0": + version: 1.1.0 + resolution: "multicast-dns-service-types@npm:1.1.0" + checksum: 0979fca1cce85484d256e4db3af591d941b41a61f134da3607213d2624c12ed5b8a246565cb19a9b3cb542819e8fbc71a90b07e77023ee6a9515540fe1d371f7 + languageName: node + linkType: hard + +"multicast-dns@npm:^6.0.1": + version: 6.2.3 + resolution: "multicast-dns@npm:6.2.3" + dependencies: + dns-packet: ^1.3.1 + thunky: ^1.0.2 + bin: + multicast-dns: cli.js + checksum: f515b49ca964429ab48a4ac8041fcf969c927aeb49ab65288bd982e52c849a870fc3b03565780b0d194a1a02da8821f28b6425e48e95b8107bc9fcc92f571a6f + languageName: node + linkType: hard + +"nan@npm:^2.12.1, nan@npm:^2.13.2": + version: 2.18.0 + resolution: "nan@npm:2.18.0" + dependencies: + node-gyp: latest + checksum: 4fe42f58456504eab3105c04a5cffb72066b5f22bd45decf33523cb17e7d6abc33cca2a19829407b9000539c5cb25f410312d4dc5b30220167a3594896ea6a0a + languageName: node + linkType: hard + +"nanoid@npm:^3.3.6": + version: 3.3.6 + resolution: "nanoid@npm:3.3.6" + bin: + nanoid: bin/nanoid.cjs + checksum: 7d0eda657002738aa5206107bd0580aead6c95c460ef1bdd0b1a87a9c7ae6277ac2e9b945306aaa5b32c6dcb7feaf462d0f552e7f8b5718abfc6ead5c94a71b3 + languageName: node + linkType: hard + +"nanomatch@npm:^1.2.9": + version: 1.2.13 + resolution: "nanomatch@npm:1.2.13" + dependencies: + arr-diff: ^4.0.0 + array-unique: ^0.3.2 + define-property: ^2.0.2 + extend-shallow: ^3.0.2 + fragment-cache: ^0.2.1 + is-windows: ^1.0.2 + kind-of: ^6.0.2 + object.pick: ^1.3.0 + regex-not: ^1.0.0 + snapdragon: ^0.8.1 + to-regex: ^3.0.1 + checksum: 54d4166d6ef08db41252eb4e96d4109ebcb8029f0374f9db873bd91a1f896c32ec780d2a2ea65c0b2d7caf1f28d5e1ea33746a470f32146ac8bba821d80d38d8 + languageName: node + linkType: hard + +"native-run@npm:^1.5.0": + version: 1.7.3 + resolution: "native-run@npm:1.7.3" + dependencies: + "@ionic/utils-fs": ^3.1.6 + "@ionic/utils-terminal": ^2.3.3 + bplist-parser: ^0.3.2 + debug: ^4.3.4 + elementtree: ^0.1.7 + ini: ^3.0.1 + plist: ^3.0.6 + split2: ^4.1.0 + through2: ^4.0.2 + tslib: ^2.4.0 + yauzl: ^2.10.0 + bin: + native-run: bin/native-run + checksum: 18c90f39265d008247ec66699338d8aafa64512e30ae136084aa1222856b4ee8b912ce50a0e687e3397ca34ea9e33549925bef8e6740ba45efdfa1e9df1d388d + languageName: node + linkType: hard + +"native-url@npm:^0.2.6": + version: 0.2.6 + resolution: "native-url@npm:0.2.6" + dependencies: + querystring: ^0.2.0 + checksum: d56a67b32e635c4944985f551a9976dfe609a3947810791c50f5c37cff1d9dd5fe040184989d104be8752582b79dc4e726f2a9c075d691ecce86b31ae9387f1b + languageName: node + linkType: hard + +"natural-compare@npm:^1.4.0": + version: 1.4.0 + resolution: "natural-compare@npm:1.4.0" + checksum: 23ad088b08f898fc9b53011d7bb78ec48e79de7627e01ab5518e806033861bef68d5b0cd0e2205c2f36690ac9571ff6bcb05eb777ced2eeda8d4ac5b44592c3d + languageName: node + linkType: hard + +"negotiator@npm:0.6.3, negotiator@npm:^0.6.3": + version: 0.6.3 + resolution: "negotiator@npm:0.6.3" + checksum: b8ffeb1e262eff7968fc90a2b6767b04cfd9842582a9d0ece0af7049537266e7b2506dfb1d107a32f06dd849ab2aea834d5830f7f4d0e5cb7d36e1ae55d021d9 + languageName: node + linkType: hard + +"neo-async@npm:^2.5.0, neo-async@npm:^2.6.1, neo-async@npm:^2.6.2": + version: 2.6.2 + resolution: "neo-async@npm:2.6.2" + checksum: deac9f8d00eda7b2e5cd1b2549e26e10a0faa70adaa6fdadca701cc55f49ee9018e427f424bac0c790b7c7e2d3068db97f3093f1093975f2acb8f8818b936ed9 + languageName: node + linkType: hard + +"next-tick@npm:^1.1.0": + version: 1.1.0 + resolution: "next-tick@npm:1.1.0" + checksum: 83b5cf36027a53ee6d8b7f9c0782f2ba87f4858d977342bfc3c20c21629290a2111f8374d13a81221179603ffc4364f38374b5655d17b6a8f8a8c77bdea4fe8b + languageName: node + linkType: hard + +"nice-try@npm:^1.0.4": + version: 1.0.5 + resolution: "nice-try@npm:1.0.5" + checksum: 0b4af3b5bb5d86c289f7a026303d192a7eb4417231fe47245c460baeabae7277bcd8fd9c728fb6bd62c30b3e15cd6620373e2cf33353b095d8b403d3e8a15aff + languageName: node + linkType: hard + +"no-case@npm:^3.0.4": + version: 3.0.4 + resolution: "no-case@npm:3.0.4" + dependencies: + lower-case: ^2.0.2 + tslib: ^2.0.3 + checksum: 0b2ebc113dfcf737d48dde49cfebf3ad2d82a8c3188e7100c6f375e30eafbef9e9124aadc3becef237b042fd5eb0aad2fd78669c20972d045bbe7fea8ba0be5c + languageName: node + linkType: hard + +"node-addon-api@npm:^1.6.3": + version: 1.7.2 + resolution: "node-addon-api@npm:1.7.2" + dependencies: + node-gyp: latest + checksum: 938922b3d7cb34ee137c5ec39df6289a3965e8cab9061c6848863324c21a778a81ae3bc955554c56b6b86962f6ccab2043dd5fa3f33deab633636bd28039333f + languageName: node + linkType: hard + +"node-fetch@npm:2.6.7": + version: 2.6.7 + resolution: "node-fetch@npm:2.6.7" + dependencies: + whatwg-url: ^5.0.0 + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + checksum: 8d816ffd1ee22cab8301c7756ef04f3437f18dace86a1dae22cf81db8ef29c0bf6655f3215cb0cdb22b420b6fe141e64b26905e7f33f9377a7fa59135ea3e10b + languageName: node + linkType: hard + +"node-fetch@npm:^2.6.7": + version: 2.7.0 + resolution: "node-fetch@npm:2.7.0" + dependencies: + whatwg-url: ^5.0.0 + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + checksum: d76d2f5edb451a3f05b15115ec89fc6be39de37c6089f1b6368df03b91e1633fd379a7e01b7ab05089a25034b2023d959b47e59759cb38d88341b2459e89d6e5 + languageName: node + linkType: hard + +"node-forge@npm:^0.10.0": + version: 0.10.0 + resolution: "node-forge@npm:0.10.0" + checksum: 5aa6dc9922e424a20ef101d2f517418e2bc9cfc0255dd22e0701c0fad1568445f510ee67f6f3fcdf085812c4ca1b847b8ba45683b34776828e41f5c1794e42e1 + languageName: node + linkType: hard + +"node-gyp@npm:latest": + version: 9.4.0 + resolution: "node-gyp@npm:9.4.0" + dependencies: + env-paths: ^2.2.0 + exponential-backoff: ^3.1.1 + glob: ^7.1.4 + graceful-fs: ^4.2.6 + make-fetch-happen: ^11.0.3 + nopt: ^6.0.0 + npmlog: ^6.0.0 + rimraf: ^3.0.2 + semver: ^7.3.5 + tar: ^6.1.2 + which: ^2.0.2 + bin: + node-gyp: bin/node-gyp.js + checksum: 78b404e2e0639d64e145845f7f5a3cb20c0520cdaf6dda2f6e025e9b644077202ea7de1232396ba5bde3fee84cdc79604feebe6ba3ec84d464c85d407bb5da99 + languageName: node + linkType: hard + +"node-int64@npm:^0.4.0": + version: 0.4.0 + resolution: "node-int64@npm:0.4.0" + checksum: d0b30b1ee6d961851c60d5eaa745d30b5c95d94bc0e74b81e5292f7c42a49e3af87f1eb9e89f59456f80645d679202537de751b7d72e9e40ceea40c5e449057e + languageName: node + linkType: hard + +"node-libs-browser@npm:^2.2.1": + version: 2.2.1 + resolution: "node-libs-browser@npm:2.2.1" + dependencies: + assert: ^1.1.1 + browserify-zlib: ^0.2.0 + buffer: ^4.3.0 + console-browserify: ^1.1.0 + constants-browserify: ^1.0.0 + crypto-browserify: ^3.11.0 + domain-browser: ^1.1.1 + events: ^3.0.0 + https-browserify: ^1.0.0 + os-browserify: ^0.3.0 + path-browserify: 0.0.1 + process: ^0.11.10 + punycode: ^1.2.4 + querystring-es3: ^0.2.0 + readable-stream: ^2.3.3 + stream-browserify: ^2.0.1 + stream-http: ^2.7.2 + string_decoder: ^1.0.0 + timers-browserify: ^2.0.4 + tty-browserify: 0.0.0 + url: ^0.11.0 + util: ^0.11.0 + vm-browserify: ^1.0.1 + checksum: 41fa7927378edc0cb98a8cc784d3f4a47e43378d3b42ec57a23f81125baa7287c4b54d6d26d062072226160a3ce4d8b7a62e873d2fb637aceaddf71f5a26eca0 + languageName: node + linkType: hard + +"node-notifier@npm:^8.0.0": + version: 8.0.2 + resolution: "node-notifier@npm:8.0.2" + dependencies: + growly: ^1.3.0 + is-wsl: ^2.2.0 + semver: ^7.3.2 + shellwords: ^0.1.1 + uuid: ^8.3.0 + which: ^2.0.2 + checksum: 7db1683003f6aaa4324959dfa663cd56e301ccc0165977a9e7737989ffe3b4763297f9fc85f44d0662b63a4fd85516eda43411b492a4d2fae207afb23773f912 + languageName: node + linkType: hard + +"node-releases@npm:^1.1.61": + version: 1.1.77 + resolution: "node-releases@npm:1.1.77" + checksum: eb2fcb45310e7d77f82bfdadeca546a698d258e011f15d88ad9a452a5e838a672ec532906581096ca19c66284a788330c3b09227ffc540e67228730f41b9c2e2 + languageName: node + linkType: hard + +"node-releases@npm:^2.0.13": + version: 2.0.13 + resolution: "node-releases@npm:2.0.13" + checksum: 17ec8f315dba62710cae71a8dad3cd0288ba943d2ece43504b3b1aa8625bf138637798ab470b1d9035b0545996f63000a8a926e0f6d35d0996424f8b6d36dda3 + languageName: node + linkType: hard + +"nopt@npm:^5.0.0": + version: 5.0.0 + resolution: "nopt@npm:5.0.0" + dependencies: + abbrev: 1 + bin: + nopt: bin/nopt.js + checksum: d35fdec187269503843924e0114c0c6533fb54bbf1620d0f28b4b60ba01712d6687f62565c55cc20a504eff0fbe5c63e22340c3fad549ad40469ffb611b04f2f + languageName: node + linkType: hard + +"nopt@npm:^6.0.0": + version: 6.0.0 + resolution: "nopt@npm:6.0.0" + dependencies: + abbrev: ^1.0.0 + bin: + nopt: bin/nopt.js + checksum: 82149371f8be0c4b9ec2f863cc6509a7fd0fa729929c009f3a58e4eb0c9e4cae9920e8f1f8eb46e7d032fec8fb01bede7f0f41a67eb3553b7b8e14fa53de1dac + languageName: node + linkType: hard + +"normalize-package-data@npm:^2.5.0": + version: 2.5.0 + resolution: "normalize-package-data@npm:2.5.0" + dependencies: + hosted-git-info: ^2.1.4 + resolve: ^1.10.0 + semver: 2 || 3 || 4 || 5 + validate-npm-package-license: ^3.0.1 + checksum: 7999112efc35a6259bc22db460540cae06564aa65d0271e3bdfa86876d08b0e578b7b5b0028ee61b23f1cae9fc0e7847e4edc0948d3068a39a2a82853efc8499 + languageName: node + linkType: hard + +"normalize-path@npm:^2.1.1": + version: 2.1.1 + resolution: "normalize-path@npm:2.1.1" + dependencies: + remove-trailing-separator: ^1.0.1 + checksum: 7e9cbdcf7f5b8da7aa191fbfe33daf290cdcd8c038f422faf1b8a83c972bf7a6d94c5be34c4326cb00fb63bc0fd97d9fbcfaf2e5d6142332c2cd36d2e1b86cea + languageName: node + linkType: hard + +"normalize-path@npm:^3.0.0, normalize-path@npm:~3.0.0": + version: 3.0.0 + resolution: "normalize-path@npm:3.0.0" + checksum: 88eeb4da891e10b1318c4b2476b6e2ecbeb5ff97d946815ffea7794c31a89017c70d7f34b3c2ebf23ef4e9fc9fb99f7dffe36da22011b5b5c6ffa34f4873ec20 + languageName: node + linkType: hard + +"normalize-range@npm:^0.1.2": + version: 0.1.2 + resolution: "normalize-range@npm:0.1.2" + checksum: 9b2f14f093593f367a7a0834267c24f3cb3e887a2d9809c77d8a7e5fd08738bcd15af46f0ab01cc3a3d660386f015816b5c922cea8bf2ee79777f40874063184 + languageName: node + linkType: hard + +"normalize-url@npm:1.9.1": + version: 1.9.1 + resolution: "normalize-url@npm:1.9.1" + dependencies: + object-assign: ^4.0.1 + prepend-http: ^1.0.0 + query-string: ^4.1.0 + sort-keys: ^1.0.0 + checksum: 4b03c22bebbb822874ce3b9204367ad1f27c314ae09b13aa201de730b3cf95f00dadf378277a56062322968c95c06e5764d01474d26af8b43d20bc4c8c491f84 + languageName: node + linkType: hard + +"normalize-url@npm:^3.0.0": + version: 3.3.0 + resolution: "normalize-url@npm:3.3.0" + checksum: f6aa4a1a94c3b799812f3e7fc987fb4599d869bfa8e9a160b6f2c5a2b4e62ada998d64dca30d9e20769d8bd95d3da1da3d4841dba2cc3c4d85364e1eb46219a2 + languageName: node + linkType: hard + +"normalize-url@npm:^4.1.0": + version: 4.5.1 + resolution: "normalize-url@npm:4.5.1" + checksum: 9a9dee01df02ad23e171171893e56e22d752f7cff86fb96aafeae074819b572ea655b60f8302e2d85dbb834dc885c972cc1c573892fea24df46b2765065dd05a + languageName: node + linkType: hard + +"npm-conf@npm:^1.1.3": + version: 1.1.3 + resolution: "npm-conf@npm:1.1.3" + dependencies: + config-chain: ^1.1.11 + pify: ^3.0.0 + checksum: 2d4e933b657623d98183ec408d17318547296b1cd17c4d3587e2920c554675f24f829d8f5f7f84db3a020516678fdcd01952ebaaf0e7fa8a17f6c39be4154bef + languageName: node + linkType: hard + +"npm-run-path@npm:^2.0.0": + version: 2.0.2 + resolution: "npm-run-path@npm:2.0.2" + dependencies: + path-key: ^2.0.0 + checksum: acd5ad81648ba4588ba5a8effb1d98d2b339d31be16826a118d50f182a134ac523172101b82eab1d01cb4c2ba358e857d54cfafd8163a1ffe7bd52100b741125 + languageName: node + linkType: hard + +"npm-run-path@npm:^4.0.0": + version: 4.0.1 + resolution: "npm-run-path@npm:4.0.1" + dependencies: + path-key: ^3.0.0 + checksum: 5374c0cea4b0bbfdfae62da7bbdf1e1558d338335f4cacf2515c282ff358ff27b2ecb91ffa5330a8b14390ac66a1e146e10700440c1ab868208430f56b5f4d23 + languageName: node + linkType: hard + +"npmlog@npm:^5.0.1": + version: 5.0.1 + resolution: "npmlog@npm:5.0.1" + dependencies: + are-we-there-yet: ^2.0.0 + console-control-strings: ^1.1.0 + gauge: ^3.0.0 + set-blocking: ^2.0.0 + checksum: 516b2663028761f062d13e8beb3f00069c5664925871a9b57989642ebe09f23ab02145bf3ab88da7866c4e112cafff72401f61a672c7c8a20edc585a7016ef5f + languageName: node + linkType: hard + +"npmlog@npm:^6.0.0": + version: 6.0.2 + resolution: "npmlog@npm:6.0.2" + dependencies: + are-we-there-yet: ^3.0.0 + console-control-strings: ^1.1.0 + gauge: ^4.0.3 + set-blocking: ^2.0.0 + checksum: ae238cd264a1c3f22091cdd9e2b106f684297d3c184f1146984ecbe18aaa86343953f26b9520dedd1b1372bc0316905b736c1932d778dbeb1fcf5a1001390e2a + languageName: node + linkType: hard + +"nth-check@npm:^1.0.2": + version: 1.0.2 + resolution: "nth-check@npm:1.0.2" + dependencies: + boolbase: ~1.0.0 + checksum: 59e115fdd75b971d0030f42ada3aac23898d4c03aa13371fa8b3339d23461d1badf3fde5aad251fb956aaa75c0a3b9bfcd07c08a34a83b4f9dadfdce1d19337c + languageName: node + linkType: hard + +"nth-check@npm:^2.0.1": + version: 2.1.1 + resolution: "nth-check@npm:2.1.1" + dependencies: + boolbase: ^1.0.0 + checksum: 5afc3dafcd1573b08877ca8e6148c52abd565f1d06b1eb08caf982e3fa289a82f2cae697ffb55b5021e146d60443f1590a5d6b944844e944714a5b549675bcd3 + languageName: node + linkType: hard + +"num2fraction@npm:^1.2.2": + version: 1.2.2 + resolution: "num2fraction@npm:1.2.2" + checksum: 1da9c6797b505d3f5b17c7f694c4fa31565bdd5c0e5d669553253aed848a580804cd285280e8a73148bd9628839267daee4967f24b53d4e893e44b563e412635 + languageName: node + linkType: hard + +"number-is-nan@npm:^1.0.0": + version: 1.0.1 + resolution: "number-is-nan@npm:1.0.1" + checksum: 13656bc9aa771b96cef209ffca31c31a03b507ca6862ba7c3f638a283560620d723d52e626d57892c7fff475f4c36ac07f0600f14544692ff595abff214b9ffb + languageName: node + linkType: hard + +"nwsapi@npm:^2.2.0": + version: 2.2.7 + resolution: "nwsapi@npm:2.2.7" + checksum: cab25f7983acec7e23490fec3ef7be608041b460504229770e3bfcf9977c41d6fe58f518994d3bd9aa3a101f501089a3d4a63536f4ff8ae4b8c4ca23bdbfda4e + languageName: node + linkType: hard + +"object-assign@npm:^4.0.1, object-assign@npm:^4.1.0, object-assign@npm:^4.1.1": + version: 4.1.1 + resolution: "object-assign@npm:4.1.1" + checksum: fcc6e4ea8c7fe48abfbb552578b1c53e0d194086e2e6bbbf59e0a536381a292f39943c6e9628af05b5528aa5e3318bb30d6b2e53cadaf5b8fe9e12c4b69af23f + languageName: node + linkType: hard + +"object-copy@npm:^0.1.0": + version: 0.1.0 + resolution: "object-copy@npm:0.1.0" + dependencies: + copy-descriptor: ^0.1.0 + define-property: ^0.2.5 + kind-of: ^3.0.3 + checksum: a9e35f07e3a2c882a7e979090360d1a20ab51d1fa19dfdac3aa8873b328a7c4c7683946ee97c824ae40079d848d6740a3788fa14f2185155dab7ed970a72c783 + languageName: node + linkType: hard + +"object-inspect@npm:^1.13.1, object-inspect@npm:^1.9.0": + version: 1.13.1 + resolution: "object-inspect@npm:1.13.1" + checksum: 7d9fa9221de3311dcb5c7c307ee5dc011cdd31dc43624b7c184b3840514e118e05ef0002be5388304c416c0eb592feb46e983db12577fc47e47d5752fbbfb61f + languageName: node + linkType: hard + +"object-is@npm:^1.0.1": + version: 1.1.5 + resolution: "object-is@npm:1.1.5" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.1.3 + checksum: 989b18c4cba258a6b74dc1d74a41805c1a1425bce29f6cabb50dcb1a6a651ea9104a1b07046739a49a5bb1bc49727bcb00efd5c55f932f6ea04ec8927a7901fe + languageName: node + linkType: hard + +"object-keys@npm:^1.1.1": + version: 1.1.1 + resolution: "object-keys@npm:1.1.1" + checksum: b363c5e7644b1e1b04aa507e88dcb8e3a2f52b6ffd0ea801e4c7a62d5aa559affe21c55a07fd4b1fd55fc03a33c610d73426664b20032405d7b92a1414c34d6a + languageName: node + linkType: hard + +"object-visit@npm:^1.0.0": + version: 1.0.1 + resolution: "object-visit@npm:1.0.1" + dependencies: + isobject: ^3.0.0 + checksum: b0ee07f5bf3bb881b881ff53b467ebbde2b37ebb38649d6944a6cd7681b32eedd99da9bd1e01c55facf81f54ed06b13af61aba6ad87f0052982995e09333f790 + languageName: node + linkType: hard + +"object.assign@npm:^4.1.4": + version: 4.1.4 + resolution: "object.assign@npm:4.1.4" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.1.4 + has-symbols: ^1.0.3 + object-keys: ^1.1.1 + checksum: 76cab513a5999acbfe0ff355f15a6a125e71805fcf53de4e9d4e082e1989bdb81d1e329291e1e4e0ae7719f0e4ef80e88fb2d367ae60500d79d25a6224ac8864 + languageName: node + linkType: hard + +"object.entries@npm:^1.1.0, object.entries@npm:^1.1.6": + version: 1.1.7 + resolution: "object.entries@npm:1.1.7" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + checksum: da287d434e7e32989586cd734382364ba826a2527f2bc82e6acbf9f9bfafa35d51018b66ec02543ffdfa2a5ba4af2b6f1ca6e588c65030cb4fd9c67d6ced594c + languageName: node + linkType: hard + +"object.fromentries@npm:^2.0.6": + version: 2.0.7 + resolution: "object.fromentries@npm:2.0.7" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + checksum: 7341ce246e248b39a431b87a9ddd331ff52a454deb79afebc95609f94b1f8238966cf21f52188f2a353f0fdf83294f32f1ebf1f7826aae915ebad21fd0678065 + languageName: node + linkType: hard + +"object.getownpropertydescriptors@npm:^2.0.3, object.getownpropertydescriptors@npm:^2.1.0": + version: 2.1.7 + resolution: "object.getownpropertydescriptors@npm:2.1.7" + dependencies: + array.prototype.reduce: ^1.0.6 + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + safe-array-concat: ^1.0.0 + checksum: 8e7ae1d522a3874d2d23a3d0fb75828cbcee60958b65c2ad8e58ce227f4efba8cc2b59c7431a0fd48b20d9e04ec075bc0e0d694b1d2c2296e534daf558beb10b + languageName: node + linkType: hard + +"object.groupby@npm:^1.0.0": + version: 1.0.1 + resolution: "object.groupby@npm:1.0.1" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + get-intrinsic: ^1.2.1 + checksum: d7959d6eaaba358b1608066fc67ac97f23ce6f573dc8fc661f68c52be165266fcb02937076aedb0e42722fdda0bdc0bbf74778196ac04868178888e9fd3b78b5 + languageName: node + linkType: hard + +"object.hasown@npm:^1.1.2": + version: 1.1.3 + resolution: "object.hasown@npm:1.1.3" + dependencies: + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + checksum: 76bc17356f6124542fb47e5d0e78d531eafa4bba3fc2d6fc4b1a8ce8b6878912366c0d99f37ce5c84ada8fd79df7aa6ea1214fddf721f43e093ad2df51f27da1 + languageName: node + linkType: hard + +"object.pick@npm:^1.3.0": + version: 1.3.0 + resolution: "object.pick@npm:1.3.0" + dependencies: + isobject: ^3.0.1 + checksum: 77fb6eed57c67adf75e9901187e37af39f052ef601cb4480386436561357eb9e459e820762f01fd02c5c1b42ece839ad393717a6d1850d848ee11fbabb3e580a + languageName: node + linkType: hard + +"object.values@npm:^1.1.0, object.values@npm:^1.1.6": + version: 1.1.7 + resolution: "object.values@npm:1.1.7" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + checksum: f3e4ae4f21eb1cc7cebb6ce036d4c67b36e1c750428d7b7623c56a0db90edced63d08af8a316d81dfb7c41a3a5fa81b05b7cc9426e98d7da986b1682460f0777 + languageName: node + linkType: hard + +"obuf@npm:^1.0.0, obuf@npm:^1.1.2": + version: 1.1.2 + resolution: "obuf@npm:1.1.2" + checksum: 41a2ba310e7b6f6c3b905af82c275bf8854896e2e4c5752966d64cbcd2f599cfffd5932006bcf3b8b419dfdacebb3a3912d5d94e10f1d0acab59876c8757f27f + languageName: node + linkType: hard + +"on-finished@npm:2.4.1": + version: 2.4.1 + resolution: "on-finished@npm:2.4.1" + dependencies: + ee-first: 1.1.1 + checksum: d20929a25e7f0bb62f937a425b5edeb4e4cde0540d77ba146ec9357f00b0d497cdb3b9b05b9c8e46222407d1548d08166bff69cc56dfa55ba0e4469228920ff0 + languageName: node + linkType: hard + +"on-headers@npm:~1.0.2": + version: 1.0.2 + resolution: "on-headers@npm:1.0.2" + checksum: 2bf13467215d1e540a62a75021e8b318a6cfc5d4fc53af8e8f84ad98dbcea02d506c6d24180cd62e1d769c44721ba542f3154effc1f7579a8288c9f7873ed8e5 + languageName: node + linkType: hard + +"once@npm:^1.3.0, once@npm:^1.3.1, once@npm:^1.4.0": + version: 1.4.0 + resolution: "once@npm:1.4.0" + dependencies: + wrappy: 1 + checksum: cd0a88501333edd640d95f0d2700fbde6bff20b3d4d9bdc521bdd31af0656b5706570d6c6afe532045a20bb8dc0849f8332d6f2a416e0ba6d3d3b98806c7db68 + languageName: node + linkType: hard + +"onetime@npm:^5.1.0": + version: 5.1.2 + resolution: "onetime@npm:5.1.2" + dependencies: + mimic-fn: ^2.1.0 + checksum: 2478859ef817fc5d4e9c2f9e5728512ddd1dbc9fb7829ad263765bb6d3b91ce699d6e2332eef6b7dff183c2f490bd3349f1666427eaba4469fba0ac38dfd0d34 + languageName: node + linkType: hard + +"open@npm:^7.0.2, open@npm:^7.4.2": + version: 7.4.2 + resolution: "open@npm:7.4.2" + dependencies: + is-docker: ^2.0.0 + is-wsl: ^2.1.1 + checksum: 3333900ec0e420d64c23b831bc3467e57031461d843c801f569b2204a1acc3cd7b3ec3c7897afc9dde86491dfa289708eb92bba164093d8bd88fb2c231843c91 + languageName: node + linkType: hard + +"opn@npm:^5.5.0": + version: 5.5.0 + resolution: "opn@npm:5.5.0" + dependencies: + is-wsl: ^1.1.0 + checksum: 35b677b5a1fd6c8cb1996b0607671ba79f7ce9fa029217d54eafaf6bee13eb7e700691c6a415009140fd02a435fffdfd143875f3b233b60f3f9d631c6f6b81a0 + languageName: node + linkType: hard + +"optimize-css-assets-webpack-plugin@npm:5.0.4": + version: 5.0.4 + resolution: "optimize-css-assets-webpack-plugin@npm:5.0.4" + dependencies: + cssnano: ^4.1.10 + last-call-webpack-plugin: ^3.0.0 + peerDependencies: + webpack: ^4.0.0 + checksum: bcd509eaab2a6f0ed8396fe847f4f0da73655a54f4c418fa30dc1fc4a0b1b620f38e2fcd6bcb369e2a6cf4530995b371e9d12011566ac7ffe6ac6aec2ab0a4fb + languageName: node + linkType: hard + +"optionator@npm:^0.8.1": + version: 0.8.3 + resolution: "optionator@npm:0.8.3" + dependencies: + deep-is: ~0.1.3 + fast-levenshtein: ~2.0.6 + levn: ~0.3.0 + prelude-ls: ~1.1.2 + type-check: ~0.3.2 + word-wrap: ~1.2.3 + checksum: b8695ddf3d593203e25ab0900e265d860038486c943ff8b774f596a310f8ceebdb30c6832407a8198ba3ec9debe1abe1f51d4aad94843612db3b76d690c61d34 + languageName: node + linkType: hard + +"optionator@npm:^0.9.1": + version: 0.9.3 + resolution: "optionator@npm:0.9.3" + dependencies: + "@aashutoshrathi/word-wrap": ^1.2.3 + deep-is: ^0.1.3 + fast-levenshtein: ^2.0.6 + levn: ^0.4.1 + prelude-ls: ^1.2.1 + type-check: ^0.4.0 + checksum: 09281999441f2fe9c33a5eeab76700795365a061563d66b098923eb719251a42bdbe432790d35064d0816ead9296dbeb1ad51a733edf4167c96bd5d0882e428a + languageName: node + linkType: hard + +"optjs@npm:~3.2.2": + version: 3.2.2 + resolution: "optjs@npm:3.2.2" + checksum: 0909e160e3ea218982e506750567bc7b6344d223bfb1a850c755ffb54f90f77cf746d94a8956eae614315034ae84ee03322ea00d95a8ac2ec426f4b875e27d86 + languageName: node + linkType: hard + +"os-browserify@npm:^0.3.0": + version: 0.3.0 + resolution: "os-browserify@npm:0.3.0" + checksum: 16e37ba3c0e6a4c63443c7b55799ce4066d59104143cb637ecb9fce586d5da319cdca786ba1c867abbe3890d2cbf37953f2d51eea85e20dd6c4570d6c54bfebf + languageName: node + linkType: hard + +"os-locale@npm:^1.4.0": + version: 1.4.0 + resolution: "os-locale@npm:1.4.0" + dependencies: + lcid: ^1.0.0 + checksum: 0161a1b6b5a8492f99f4b47fe465df9fc521c55ba5414fce6444c45e2500487b8ed5b40a47a98a2363fe83ff04ab033785300ed8df717255ec4c3b625e55b1fb + languageName: node + linkType: hard + +"p-cancelable@npm:^1.0.0": + version: 1.1.0 + resolution: "p-cancelable@npm:1.1.0" + checksum: 2db3814fef6d9025787f30afaee4496a8857a28be3c5706432cbad76c688a6db1874308f48e364a42f5317f5e41e8e7b4f2ff5c8ff2256dbb6264bc361704ece + languageName: node + linkType: hard + +"p-each-series@npm:^2.1.0": + version: 2.2.0 + resolution: "p-each-series@npm:2.2.0" + checksum: 5fbe2f1f1966f55833bd401fe36f7afe410707d5e9fb6032c6dde8aa716d50521c3bb201fdb584130569b5941d5e84993e09e0b3f76a474288e0ede8f632983c + languageName: node + linkType: hard + +"p-finally@npm:^1.0.0": + version: 1.0.0 + resolution: "p-finally@npm:1.0.0" + checksum: 93a654c53dc805dd5b5891bab16eb0ea46db8f66c4bfd99336ae929323b1af2b70a8b0654f8f1eae924b2b73d037031366d645f1fd18b3d30cbd15950cc4b1d4 + languageName: node + linkType: hard + +"p-limit@npm:^2.0.0, p-limit@npm:^2.2.0": + version: 2.3.0 + resolution: "p-limit@npm:2.3.0" + dependencies: + p-try: ^2.0.0 + checksum: 84ff17f1a38126c3314e91ecfe56aecbf36430940e2873dadaa773ffe072dc23b7af8e46d4b6485d302a11673fe94c6b67ca2cfbb60c989848b02100d0594ac1 + languageName: node + linkType: hard + +"p-limit@npm:^3.0.2": + version: 3.1.0 + resolution: "p-limit@npm:3.1.0" + dependencies: + yocto-queue: ^0.1.0 + checksum: 7c3690c4dbf62ef625671e20b7bdf1cbc9534e83352a2780f165b0d3ceba21907e77ad63401708145ca4e25bfc51636588d89a8c0aeb715e6c37d1c066430360 + languageName: node + linkType: hard + +"p-locate@npm:^3.0.0": + version: 3.0.0 + resolution: "p-locate@npm:3.0.0" + dependencies: + p-limit: ^2.0.0 + checksum: 83991734a9854a05fe9dbb29f707ea8a0599391f52daac32b86f08e21415e857ffa60f0e120bfe7ce0cc4faf9274a50239c7895fc0d0579d08411e513b83a4ae + languageName: node + linkType: hard + +"p-locate@npm:^4.1.0": + version: 4.1.0 + resolution: "p-locate@npm:4.1.0" + dependencies: + p-limit: ^2.2.0 + checksum: 513bd14a455f5da4ebfcb819ef706c54adb09097703de6aeaa5d26fe5ea16df92b48d1ac45e01e3944ce1e6aa2a66f7f8894742b8c9d6e276e16cd2049a2b870 + languageName: node + linkType: hard + +"p-map@npm:^2.0.0": + version: 2.1.0 + resolution: "p-map@npm:2.1.0" + checksum: 9e3ad3c9f6d75a5b5661bcad78c91f3a63849189737cd75e4f1225bf9ac205194e5c44aac2ef6f09562b1facdb9bd1425584d7ac375bfaa17b3f1a142dab936d + languageName: node + linkType: hard + +"p-map@npm:^4.0.0": + version: 4.0.0 + resolution: "p-map@npm:4.0.0" + dependencies: + aggregate-error: ^3.0.0 + checksum: cb0ab21ec0f32ddffd31dfc250e3afa61e103ef43d957cc45497afe37513634589316de4eb88abdfd969fe6410c22c0b93ab24328833b8eb1ccc087fc0442a1c + languageName: node + linkType: hard + +"p-retry@npm:^3.0.1": + version: 3.0.1 + resolution: "p-retry@npm:3.0.1" + dependencies: + retry: ^0.12.0 + checksum: 702efc63fc13ef7fc0bab9a1b08432ab38a0236efcbce64af0cf692030ba6ed8009f29ba66e3301cb98dc69ef33e7ccab29ba1ac2bea897f802f81f4f7e468dd + languageName: node + linkType: hard + +"p-try@npm:^2.0.0": + version: 2.2.0 + resolution: "p-try@npm:2.2.0" + checksum: f8a8e9a7693659383f06aec604ad5ead237c7a261c18048a6e1b5b85a5f8a067e469aa24f5bc009b991ea3b058a87f5065ef4176793a200d4917349881216cae + languageName: node + linkType: hard + +"package-json@npm:^6.3.0": + version: 6.5.0 + resolution: "package-json@npm:6.5.0" + dependencies: + got: ^9.6.0 + registry-auth-token: ^4.0.0 + registry-url: ^5.0.0 + semver: ^6.2.0 + checksum: cc9f890d3667d7610e6184decf543278b87f657d1ace0deb4a9c9155feca738ef88f660c82200763d3348010f4e42e9c7adc91e96ab0f86a770955995b5351e2 + languageName: node + linkType: hard + +"pako@npm:~1.0.5": + version: 1.0.11 + resolution: "pako@npm:1.0.11" + checksum: 1be2bfa1f807608c7538afa15d6f25baa523c30ec870a3228a89579e474a4d992f4293859524e46d5d87fd30fa17c5edf34dbef0671251d9749820b488660b16 + languageName: node + linkType: hard + +"parallel-transform@npm:^1.1.0": + version: 1.2.0 + resolution: "parallel-transform@npm:1.2.0" + dependencies: + cyclist: ^1.0.1 + inherits: ^2.0.3 + readable-stream: ^2.1.5 + checksum: ab6ddc1a662cefcfb3d8d546a111763d3b223f484f2e9194e33aefd8f6760c319d0821fd22a00a3adfbd45929b50d2c84cc121389732f013c2ae01c226269c27 + languageName: node + linkType: hard + +"param-case@npm:^3.0.3": + version: 3.0.4 + resolution: "param-case@npm:3.0.4" + dependencies: + dot-case: ^3.0.4 + tslib: ^2.0.3 + checksum: b34227fd0f794e078776eb3aa6247442056cb47761e9cd2c4c881c86d84c64205f6a56ef0d70b41ee7d77da02c3f4ed2f88e3896a8fefe08bdfb4deca037c687 + languageName: node + linkType: hard + +"parent-module@npm:^1.0.0": + version: 1.0.1 + resolution: "parent-module@npm:1.0.1" + dependencies: + callsites: ^3.0.0 + checksum: 6ba8b255145cae9470cf5551eb74be2d22281587af787a2626683a6c20fbb464978784661478dd2a3f1dad74d1e802d403e1b03c1a31fab310259eec8ac560ff + languageName: node + linkType: hard + +"parse-asn1@npm:^5.0.0, parse-asn1@npm:^5.1.5": + version: 5.1.6 + resolution: "parse-asn1@npm:5.1.6" + dependencies: + asn1.js: ^5.2.0 + browserify-aes: ^1.0.0 + evp_bytestokey: ^1.0.0 + pbkdf2: ^3.0.3 + safe-buffer: ^5.1.1 + checksum: 9243311d1f88089bc9f2158972aa38d1abd5452f7b7cabf84954ed766048fe574d434d82c6f5a39b988683e96fb84cd933071dda38927e03469dc8c8d14463c7 + languageName: node + linkType: hard + +"parse-json@npm:^4.0.0": + version: 4.0.0 + resolution: "parse-json@npm:4.0.0" + dependencies: + error-ex: ^1.3.1 + json-parse-better-errors: ^1.0.1 + checksum: 0fe227d410a61090c247e34fa210552b834613c006c2c64d9a05cfe9e89cf8b4246d1246b1a99524b53b313e9ac024438d0680f67e33eaed7e6f38db64cfe7b5 + languageName: node + linkType: hard + +"parse-json@npm:^5.0.0": + version: 5.2.0 + resolution: "parse-json@npm:5.2.0" + dependencies: + "@babel/code-frame": ^7.0.0 + error-ex: ^1.3.1 + json-parse-even-better-errors: ^2.3.0 + lines-and-columns: ^1.1.6 + checksum: 62085b17d64da57f40f6afc2ac1f4d95def18c4323577e1eced571db75d9ab59b297d1d10582920f84b15985cbfc6b6d450ccbf317644cfa176f3ed982ad87e2 + languageName: node + linkType: hard + +"parse5@npm:6.0.1": + version: 6.0.1 + resolution: "parse5@npm:6.0.1" + checksum: 7d569a176c5460897f7c8f3377eff640d54132b9be51ae8a8fa4979af940830b2b0c296ce75e5bd8f4041520aadde13170dbdec44889975f906098ea0002f4bd + languageName: node + linkType: hard + +"parseurl@npm:~1.3.2, parseurl@npm:~1.3.3": + version: 1.3.3 + resolution: "parseurl@npm:1.3.3" + checksum: 407cee8e0a3a4c5cd472559bca8b6a45b82c124e9a4703302326e9ab60fc1081442ada4e02628efef1eb16197ddc7f8822f5a91fd7d7c86b51f530aedb17dfa2 + languageName: node + linkType: hard + +"pascal-case@npm:^3.1.2": + version: 3.1.2 + resolution: "pascal-case@npm:3.1.2" + dependencies: + no-case: ^3.0.4 + tslib: ^2.0.3 + checksum: ba98bfd595fc91ef3d30f4243b1aee2f6ec41c53b4546bfa3039487c367abaa182471dcfc830a1f9e1a0df00c14a370514fa2b3a1aacc68b15a460c31116873e + languageName: node + linkType: hard + +"pascalcase@npm:^0.1.1": + version: 0.1.1 + resolution: "pascalcase@npm:0.1.1" + checksum: f83681c3c8ff75fa473a2bb2b113289952f802ff895d435edd717e7cb898b0408cbdb247117a938edcbc5d141020909846cc2b92c47213d764e2a94d2ad2b925 + languageName: node + linkType: hard + +"path-browserify@npm:0.0.1": + version: 0.0.1 + resolution: "path-browserify@npm:0.0.1" + checksum: ae8dcd45d0d3cfbaf595af4f206bf3ed82d77f72b4877ae7e77328079e1468c84f9386754bb417d994d5a19bf47882fd253565c18441cd5c5c90ae5187599e35 + languageName: node + linkType: hard + +"path-dirname@npm:^1.0.0": + version: 1.0.2 + resolution: "path-dirname@npm:1.0.2" + checksum: 0d2f6604ae05a252a0025318685f290e2764ecf9c5436f203cdacfc8c0b17c24cdedaa449d766beb94ab88cc7fc70a09ec21e7933f31abc2b719180883e5e33f + languageName: node + linkType: hard + +"path-exists@npm:^3.0.0": + version: 3.0.0 + resolution: "path-exists@npm:3.0.0" + checksum: 96e92643aa34b4b28d0de1cd2eba52a1c5313a90c6542d03f62750d82480e20bfa62bc865d5cfc6165f5fcd5aeb0851043c40a39be5989646f223300021bae0a + languageName: node + linkType: hard + +"path-exists@npm:^4.0.0": + version: 4.0.0 + resolution: "path-exists@npm:4.0.0" + checksum: 505807199dfb7c50737b057dd8d351b82c033029ab94cb10a657609e00c1bc53b951cfdbccab8de04c5584d5eff31128ce6afd3db79281874a5ef2adbba55ed1 + languageName: node + linkType: hard + +"path-is-absolute@npm:^1.0.0": + version: 1.0.1 + resolution: "path-is-absolute@npm:1.0.1" + checksum: 060840f92cf8effa293bcc1bea81281bd7d363731d214cbe5c227df207c34cd727430f70c6037b5159c8a870b9157cba65e775446b0ab06fd5ecc7e54615a3b8 + languageName: node + linkType: hard + +"path-is-inside@npm:^1.0.2": + version: 1.0.2 + resolution: "path-is-inside@npm:1.0.2" + checksum: 0b5b6c92d3018b82afb1f74fe6de6338c4c654de4a96123cb343f2b747d5606590ac0c890f956ed38220a4ab59baddfd7b713d78a62d240b20b14ab801fa02cb + languageName: node + linkType: hard + +"path-key@npm:^2.0.0, path-key@npm:^2.0.1": + version: 2.0.1 + resolution: "path-key@npm:2.0.1" + checksum: f7ab0ad42fe3fb8c7f11d0c4f849871e28fbd8e1add65c370e422512fc5887097b9cf34d09c1747d45c942a8c1e26468d6356e2df3f740bf177ab8ca7301ebfd + languageName: node + linkType: hard + +"path-key@npm:^3.0.0, path-key@npm:^3.1.0": + version: 3.1.1 + resolution: "path-key@npm:3.1.1" + checksum: 55cd7a9dd4b343412a8386a743f9c746ef196e57c823d90ca3ab917f90ab9f13dd0ded27252ba49dbdfcab2b091d998bc446f6220cd3cea65db407502a740020 + languageName: node + linkType: hard + +"path-parse@npm:^1.0.6, path-parse@npm:^1.0.7": + version: 1.0.7 + resolution: "path-parse@npm:1.0.7" + checksum: 49abf3d81115642938a8700ec580da6e830dde670be21893c62f4e10bd7dd4c3742ddc603fe24f898cba7eb0c6bc1777f8d9ac14185d34540c6d4d80cd9cae8a + languageName: node + linkType: hard + +"path-scurry@npm:^1.10.1": + version: 1.10.1 + resolution: "path-scurry@npm:1.10.1" + dependencies: + lru-cache: ^9.1.1 || ^10.0.0 + minipass: ^5.0.0 || ^6.0.2 || ^7.0.0 + checksum: e2557cff3a8fb8bc07afdd6ab163a92587884f9969b05bbbaf6fe7379348bfb09af9ed292af12ed32398b15fb443e81692047b786d1eeb6d898a51eb17ed7d90 + languageName: node + linkType: hard + +"path-to-regexp@npm:0.1.7": + version: 0.1.7 + resolution: "path-to-regexp@npm:0.1.7" + checksum: 69a14ea24db543e8b0f4353305c5eac6907917031340e5a8b37df688e52accd09e3cebfe1660b70d76b6bd89152f52183f28c74813dbf454ba1a01c82a38abce + languageName: node + linkType: hard + +"path-type@npm:^4.0.0": + version: 4.0.0 + resolution: "path-type@npm:4.0.0" + checksum: 5b1e2daa247062061325b8fdbfd1fb56dde0a448fb1455453276ea18c60685bdad23a445dc148cf87bc216be1573357509b7d4060494a6fd768c7efad833ee45 + languageName: node + linkType: hard + +"pbkdf2@npm:^3.0.3": + version: 3.1.2 + resolution: "pbkdf2@npm:3.1.2" + dependencies: + create-hash: ^1.1.2 + create-hmac: ^1.1.4 + ripemd160: ^2.0.1 + safe-buffer: ^5.0.1 + sha.js: ^2.4.8 + checksum: 2c950a100b1da72123449208e231afc188d980177d021d7121e96a2de7f2abbc96ead2b87d03d8fe5c318face097f203270d7e27908af9f471c165a4e8e69c92 + languageName: node + linkType: hard + +"pend@npm:~1.2.0": + version: 1.2.0 + resolution: "pend@npm:1.2.0" + checksum: 6c72f5243303d9c60bd98e6446ba7d30ae29e3d56fdb6fae8767e8ba6386f33ee284c97efe3230a0d0217e2b1723b8ab490b1bbf34fcbb2180dbc8a9de47850d + languageName: node + linkType: hard + +"performance-now@npm:^2.1.0": + version: 2.1.0 + resolution: "performance-now@npm:2.1.0" + checksum: 534e641aa8f7cba160f0afec0599b6cecefbb516a2e837b512be0adbe6c1da5550e89c78059c7fabc5c9ffdf6627edabe23eb7c518c4500067a898fa65c2b550 + languageName: node + linkType: hard + +"picocolors@npm:^0.2.1": + version: 0.2.1 + resolution: "picocolors@npm:0.2.1" + checksum: 3b0f441f0062def0c0f39e87b898ae7461c3a16ffc9f974f320b44c799418cabff17780ee647fda42b856a1dc45897e2c62047e1b546d94d6d5c6962f45427b2 + languageName: node + linkType: hard + +"picocolors@npm:^1.0.0": + version: 1.0.0 + resolution: "picocolors@npm:1.0.0" + checksum: a2e8092dd86c8396bdba9f2b5481032848525b3dc295ce9b57896f931e63fc16f79805144321f72976383fc249584672a75cc18d6777c6b757603f372f745981 + languageName: node + linkType: hard + +"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.2.2, picomatch@npm:^2.2.3, picomatch@npm:^2.3.1": + version: 2.3.1 + resolution: "picomatch@npm:2.3.1" + checksum: 050c865ce81119c4822c45d3c84f1ced46f93a0126febae20737bd05ca20589c564d6e9226977df859ed5e03dc73f02584a2b0faad36e896936238238b0446cf + languageName: node + linkType: hard + +"pify@npm:^2.0.0": + version: 2.3.0 + resolution: "pify@npm:2.3.0" + checksum: 9503aaeaf4577acc58642ad1d25c45c6d90288596238fb68f82811c08104c800e5a7870398e9f015d82b44ecbcbef3dc3d4251a1cbb582f6e5959fe09884b2ba + languageName: node + linkType: hard + +"pify@npm:^3.0.0": + version: 3.0.0 + resolution: "pify@npm:3.0.0" + checksum: 6cdcbc3567d5c412450c53261a3f10991665d660961e06605decf4544a61a97a54fefe70a68d5c37080ff9d6f4cf51444c90198d1ba9f9309a6c0d6e9f5c4fde + languageName: node + linkType: hard + +"pify@npm:^4.0.1": + version: 4.0.1 + resolution: "pify@npm:4.0.1" + checksum: 9c4e34278cb09987685fa5ef81499c82546c033713518f6441778fbec623fc708777fe8ac633097c72d88470d5963094076c7305cafc7ad340aae27cfacd856b + languageName: node + linkType: hard + +"pinkie-promise@npm:^2.0.0": + version: 2.0.1 + resolution: "pinkie-promise@npm:2.0.1" + dependencies: + pinkie: ^2.0.0 + checksum: b53a4a2e73bf56b6f421eef711e7bdcb693d6abb474d57c5c413b809f654ba5ee750c6a96dd7225052d4b96c4d053cdcb34b708a86fceed4663303abee52fcca + languageName: node + linkType: hard + +"pinkie@npm:^2.0.0": + version: 2.0.4 + resolution: "pinkie@npm:2.0.4" + checksum: b12b10afea1177595aab036fc220785488f67b4b0fc49e7a27979472592e971614fa1c728e63ad3e7eb748b4ec3c3dbd780819331dad6f7d635c77c10537b9db + languageName: node + linkType: hard + +"pirates@npm:^4.0.1": + version: 4.0.6 + resolution: "pirates@npm:4.0.6" + checksum: 46a65fefaf19c6f57460388a5af9ab81e3d7fd0e7bc44ca59d753cb5c4d0df97c6c6e583674869762101836d68675f027d60f841c105d72734df9dfca97cbcc6 + languageName: node + linkType: hard + +"pkg-dir@npm:^3.0.0": + version: 3.0.0 + resolution: "pkg-dir@npm:3.0.0" + dependencies: + find-up: ^3.0.0 + checksum: 70c9476ffefc77552cc6b1880176b71ad70bfac4f367604b2b04efd19337309a4eec985e94823271c7c0e83946fa5aeb18cd360d15d10a5d7533e19344bfa808 + languageName: node + linkType: hard + +"pkg-dir@npm:^4.1.0, pkg-dir@npm:^4.2.0": + version: 4.2.0 + resolution: "pkg-dir@npm:4.2.0" + dependencies: + find-up: ^4.0.0 + checksum: 9863e3f35132bf99ae1636d31ff1e1e3501251d480336edb1c211133c8d58906bed80f154a1d723652df1fda91e01c7442c2eeaf9dc83157c7ae89087e43c8d6 + languageName: node + linkType: hard + +"pkg-up@npm:3.1.0": + version: 3.1.0 + resolution: "pkg-up@npm:3.1.0" + dependencies: + find-up: ^3.0.0 + checksum: 5bac346b7c7c903613c057ae3ab722f320716199d753f4a7d053d38f2b5955460f3e6ab73b4762c62fd3e947f58e04f1343e92089e7bb6091c90877406fcd8c8 + languageName: node + linkType: hard + +"plist@npm:^3.0.1, plist@npm:^3.0.2, plist@npm:^3.0.4, plist@npm:^3.0.6": + version: 3.1.0 + resolution: "plist@npm:3.1.0" + dependencies: + "@xmldom/xmldom": ^0.8.8 + base64-js: ^1.5.1 + xmlbuilder: ^15.1.1 + checksum: c8ea013da8646d4c50dff82f9be39488054621cc229957621bb00add42b5d4ce3657cf58d4b10c50f7dea1a81118f825838f838baeb4e6f17fab453ecf91d424 + languageName: node + linkType: hard + +"pnp-webpack-plugin@npm:1.6.4": + version: 1.6.4 + resolution: "pnp-webpack-plugin@npm:1.6.4" + dependencies: + ts-pnp: ^1.1.6 + checksum: 0606a63db96400b07f182300168298da9518727a843f9e10cf5045d2a102a4be06bb18c73dc481281e3e0f1ed8d04ef0d285a342b6dcd0eff1340e28e5d2328d + languageName: node + linkType: hard + +"portfinder@npm:^1.0.26": + version: 1.0.32 + resolution: "portfinder@npm:1.0.32" + dependencies: + async: ^2.6.4 + debug: ^3.2.7 + mkdirp: ^0.5.6 + checksum: 116b4aed1b9e16f6d5503823d966d9ffd41b1c2339e27f54c06cd2f3015a9d8ef53e2a53b57bc0a25af0885977b692007353aa28f9a0a98a44335cb50487240d + languageName: node + linkType: hard + +"posix-character-classes@npm:^0.1.0": + version: 0.1.1 + resolution: "posix-character-classes@npm:0.1.1" + checksum: dedb99913c60625a16050cfed2fb5c017648fc075be41ac18474e1c6c3549ef4ada201c8bd9bd006d36827e289c571b6092e1ef6e756cdbab2fd7046b25c6442 + languageName: node + linkType: hard + +"postcss-attribute-case-insensitive@npm:^4.0.1": + version: 4.0.2 + resolution: "postcss-attribute-case-insensitive@npm:4.0.2" + dependencies: + postcss: ^7.0.2 + postcss-selector-parser: ^6.0.2 + checksum: e9cf4b61f443bf302dcd1110ef38d6a808fa38ae5d85bfd0aaaa6d35bef3825e0434f1aed8eb9596a5d88f21580ce8b9cd0098414d8490293ef71149695cae9a + languageName: node + linkType: hard + +"postcss-browser-comments@npm:^3.0.0": + version: 3.0.0 + resolution: "postcss-browser-comments@npm:3.0.0" + dependencies: + postcss: ^7 + peerDependencies: + browserslist: ^4 + checksum: 6e8cfae4c71cf7b5d4741e19021f3e3d81d772372a9e12f5c675e25bc3ea45fe5154fd0ee055ee041aee8b484c59875fdf15df3cec5e7fd4cf3209bc5ef0b515 + languageName: node + linkType: hard + +"postcss-calc@npm:^7.0.1": + version: 7.0.5 + resolution: "postcss-calc@npm:7.0.5" + dependencies: + postcss: ^7.0.27 + postcss-selector-parser: ^6.0.2 + postcss-value-parser: ^4.0.2 + checksum: 03640d493fb0e557634ab23e5d1eb527b014fb491ac3e62b45e28f5a6ef57e25a209f82040ce54c40d5a1a7307597a55d3fa6e8cece0888261a66bc75e39a68b + languageName: node + linkType: hard + +"postcss-color-functional-notation@npm:^2.0.1": + version: 2.0.1 + resolution: "postcss-color-functional-notation@npm:2.0.1" + dependencies: + postcss: ^7.0.2 + postcss-values-parser: ^2.0.0 + checksum: 0bfd1fa93bc54a07240d821d091093256511f70f0df5349e27e4d8b034ee3345f0ae58674ce425be6a91cc934325b2ce36ecddbf958fa8805fed6647cf671348 + languageName: node + linkType: hard + +"postcss-color-gray@npm:^5.0.0": + version: 5.0.0 + resolution: "postcss-color-gray@npm:5.0.0" + dependencies: + "@csstools/convert-colors": ^1.4.0 + postcss: ^7.0.5 + postcss-values-parser: ^2.0.0 + checksum: 81a62b3e2c170ffadc085c1643a7b5f1c153837d7ca228b07df88b9aeb0ec9088a92f8d919a748137ead3936e8dac2606e32b14b5166a59143642c8573949db5 + languageName: node + linkType: hard + +"postcss-color-hex-alpha@npm:^5.0.3": + version: 5.0.3 + resolution: "postcss-color-hex-alpha@npm:5.0.3" + dependencies: + postcss: ^7.0.14 + postcss-values-parser: ^2.0.1 + checksum: 0a0ccb42c7c6a271ffd3c8b123b9c67744827d4b810b759731bc702fea1e00f05f08479ec7cbd8dfa47bc20510830a69f1e316a5724b9e53d5fdc6fabf90afc4 + languageName: node + linkType: hard + +"postcss-color-mod-function@npm:^3.0.3": + version: 3.0.3 + resolution: "postcss-color-mod-function@npm:3.0.3" + dependencies: + "@csstools/convert-colors": ^1.4.0 + postcss: ^7.0.2 + postcss-values-parser: ^2.0.0 + checksum: ecbf74e9395527aaf3e83b90b1a6c9bba0a1904038d8acef1f530d50a68d912d6b1af8df690342f942be8b89fa7dfaa35ae67cb5fb48013cb389ecb8c74deadb + languageName: node + linkType: hard + +"postcss-color-rebeccapurple@npm:^4.0.1": + version: 4.0.1 + resolution: "postcss-color-rebeccapurple@npm:4.0.1" + dependencies: + postcss: ^7.0.2 + postcss-values-parser: ^2.0.0 + checksum: a7b1a204dfc5163ac4195cc3cb0c7b1bba9561feab49d24be8a17d695d6b69fd92f3da23d638260fe7e9d5076cf81bb798b25134fa2a2fbf7f74b0dda2829a96 + languageName: node + linkType: hard + +"postcss-colormin@npm:^4.0.3": + version: 4.0.3 + resolution: "postcss-colormin@npm:4.0.3" + dependencies: + browserslist: ^4.0.0 + color: ^3.0.0 + has: ^1.0.0 + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + checksum: 9b2eab73cd227cbf296f1a2a6466047f6c70b918c3844535531fd87f31d7878e1a8d81e8803ffe2ee8c3330ea5bec65e358a0e0f33defcd758975064e07fe928 + languageName: node + linkType: hard + +"postcss-convert-values@npm:^4.0.1": + version: 4.0.1 + resolution: "postcss-convert-values@npm:4.0.1" + dependencies: + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + checksum: 71cac73f5befeb8bc16274e2aaabe1b8e0cb42a8b8641dc2aa61b1c502697b872a682c36f370cce325553bbfc859c38f2b064fae6f6469b1cada79e733559261 + languageName: node + linkType: hard + +"postcss-custom-media@npm:^7.0.8": + version: 7.0.8 + resolution: "postcss-custom-media@npm:7.0.8" + dependencies: + postcss: ^7.0.14 + checksum: 3786eb10f238b22dc620cfcc9257779e27d8cee4510b3209d0ab67310e07dc68b69f3359db7a911f5e76df466f73d078fc80100943fe2e8fa9bcacf226705a2d + languageName: node + linkType: hard + +"postcss-custom-properties@npm:^8.0.11": + version: 8.0.11 + resolution: "postcss-custom-properties@npm:8.0.11" + dependencies: + postcss: ^7.0.17 + postcss-values-parser: ^2.0.1 + checksum: cb1b47459a23ff2e48714c5d48d50070d573ef829dc7e57189d1b38c6fba0de7084f1acefbd84c61dd67e30bd9a7d154b22f195547728a9dc5f76f7d3f03ffea + languageName: node + linkType: hard + +"postcss-custom-selectors@npm:^5.1.2": + version: 5.1.2 + resolution: "postcss-custom-selectors@npm:5.1.2" + dependencies: + postcss: ^7.0.2 + postcss-selector-parser: ^5.0.0-rc.3 + checksum: 26c83d348448f4ab5931cc1621606b09a6b1171e25fac2404073f3e298e77494ac87d4a21009679503b4895452810e93e618b5af26b4c7180a9013f283bb8088 + languageName: node + linkType: hard + +"postcss-dir-pseudo-class@npm:^5.0.0": + version: 5.0.0 + resolution: "postcss-dir-pseudo-class@npm:5.0.0" + dependencies: + postcss: ^7.0.2 + postcss-selector-parser: ^5.0.0-rc.3 + checksum: 703156fc65f259ec2e86ba51d18370a6d3b71f2e6473c7d65694676a8f0152137b1997bc0a53f7f373c8c3e4d63c72f7b5e2049f2ef3a7276b49409395722044 + languageName: node + linkType: hard + +"postcss-discard-comments@npm:^4.0.2": + version: 4.0.2 + resolution: "postcss-discard-comments@npm:4.0.2" + dependencies: + postcss: ^7.0.0 + checksum: b087d47649160b7c6236aba028d27f1796a0dcb21e9ffd0da62271171fc31b7f150ee6c7a24fa97e3f5cd1af92e0dc41cb2e2680a175da53f1e536c441bda56a + languageName: node + linkType: hard + +"postcss-discard-duplicates@npm:^4.0.2": + version: 4.0.2 + resolution: "postcss-discard-duplicates@npm:4.0.2" + dependencies: + postcss: ^7.0.0 + checksum: bd83647a8e5ea34b0cfe563d0c1410a0c9e742011aa67955709c5ecd2d2bb03b7016053781e975e4c802127d2f9a0cd9c22f1f2783b9d7b1c35487d60f7ea540 + languageName: node + linkType: hard + +"postcss-discard-empty@npm:^4.0.1": + version: 4.0.1 + resolution: "postcss-discard-empty@npm:4.0.1" + dependencies: + postcss: ^7.0.0 + checksum: 529b177bd2417fa5c8887891369b4538b858d767461192974a796814265794e08e0e624a9f4c566ed9f841af3faddb7e7a9c05c45cbbe2fb1f092f65bd227f5c + languageName: node + linkType: hard + +"postcss-discard-overridden@npm:^4.0.1": + version: 4.0.1 + resolution: "postcss-discard-overridden@npm:4.0.1" + dependencies: + postcss: ^7.0.0 + checksum: b34d8cf58e4d13d99a3a9459f4833f1248ca897316bbb927375590feba35c24a0304084a6174a7bf3fe4ba3d5e5e9baf15ea938e7e5744e56915fa7ef6d91ee0 + languageName: node + linkType: hard + +"postcss-double-position-gradients@npm:^1.0.0": + version: 1.0.0 + resolution: "postcss-double-position-gradients@npm:1.0.0" + dependencies: + postcss: ^7.0.5 + postcss-values-parser: ^2.0.0 + checksum: d2c4515b38a131ece44dba331aea2b3f9de646e30873b49f03fa8906179a3c43ddc43183bc4df609d8af0834e7c266ec3a63eaa4b3e96aa445d98ecdc12d2544 + languageName: node + linkType: hard + +"postcss-env-function@npm:^2.0.2": + version: 2.0.2 + resolution: "postcss-env-function@npm:2.0.2" + dependencies: + postcss: ^7.0.2 + postcss-values-parser: ^2.0.0 + checksum: 0cfa2e6cad5123cce39dcf5af332ec3b0e3e09b54d5142225f255914079d2afda3f1052e60f4b6d3bccf7eb9d592325b7421f1ecc6674ccb13c267a721fc3128 + languageName: node + linkType: hard + +"postcss-flexbugs-fixes@npm:4.2.1": + version: 4.2.1 + resolution: "postcss-flexbugs-fixes@npm:4.2.1" + dependencies: + postcss: ^7.0.26 + checksum: 51a626bc80dbe42fcc8b0895b4f23a558bb809ec52cdc05aa27fb24cdffd4c9dc53f25218085ddf407c53d76573bc6d7568219c912161609f02532a8f5f59b43 + languageName: node + linkType: hard + +"postcss-focus-visible@npm:^4.0.0": + version: 4.0.0 + resolution: "postcss-focus-visible@npm:4.0.0" + dependencies: + postcss: ^7.0.2 + checksum: a3c93fbb578608f60c5256d0989ae32fd9100f76fa053880e82bfeb43751e81a3a9e69bd8338e06579b7f56b230a80fb2cc671eff134f2682dcbec9bbb8658ae + languageName: node + linkType: hard + +"postcss-focus-within@npm:^3.0.0": + version: 3.0.0 + resolution: "postcss-focus-within@npm:3.0.0" + dependencies: + postcss: ^7.0.2 + checksum: 2a31292cd9b929a2dd3171fc4ed287ea4a93c6ec8df1d634503fb97b8b30b33a2970b5e0df60634c60ff887923ab28641b624d566533096950e0a384705e9b90 + languageName: node + linkType: hard + +"postcss-font-variant@npm:^4.0.0": + version: 4.0.1 + resolution: "postcss-font-variant@npm:4.0.1" + dependencies: + postcss: ^7.0.2 + checksum: d09836cd848e8c24d144484b6b9b175df26dca59e1a1579e790c7f3dcaea00944a8d0b6ac543f4c128de7b30fab9a0aef544d54789b3b55fd850770b172d980d + languageName: node + linkType: hard + +"postcss-gap-properties@npm:^2.0.0": + version: 2.0.0 + resolution: "postcss-gap-properties@npm:2.0.0" + dependencies: + postcss: ^7.0.2 + checksum: c842d105c9403e34a8fac7bdef33a63fcb6bde038b04b20cae1e719e1966632887545576af99a4a6f302c98ca029c6f0d746419f498ef7f6821177ba676e6c25 + languageName: node + linkType: hard + +"postcss-image-set-function@npm:^3.0.1": + version: 3.0.1 + resolution: "postcss-image-set-function@npm:3.0.1" + dependencies: + postcss: ^7.0.2 + postcss-values-parser: ^2.0.0 + checksum: 43958d7c1f80077e60e066bdf61bc326bcac64c272f17fd7a0585a6934fb1ffc7ba7f560a39849f597e4d28b8ae3addd9279c7145b9478d2d91a7c54c2fefd8b + languageName: node + linkType: hard + +"postcss-initial@npm:^3.0.0": + version: 3.0.4 + resolution: "postcss-initial@npm:3.0.4" + dependencies: + postcss: ^7.0.2 + checksum: 710ab6cabc5970912c04314099f5334e7d901235014bb1462657e29f8dc97b6e51caa35f0beba7e5dbe440589ef9c1df13a89bc53d6e6aa664573b945f1630bb + languageName: node + linkType: hard + +"postcss-lab-function@npm:^2.0.1": + version: 2.0.1 + resolution: "postcss-lab-function@npm:2.0.1" + dependencies: + "@csstools/convert-colors": ^1.4.0 + postcss: ^7.0.2 + postcss-values-parser: ^2.0.0 + checksum: 598229a7a05803b18cccde28114833e910367c5954341bea03c7d7b7b5a667dfb6a77ef9dd4a16d80fdff8b10dd44c478602a7d56e43687c8687af3710b4706f + languageName: node + linkType: hard + +"postcss-load-config@npm:^2.0.0": + version: 2.1.2 + resolution: "postcss-load-config@npm:2.1.2" + dependencies: + cosmiconfig: ^5.0.0 + import-cwd: ^2.0.0 + checksum: 2e6d3a499512a03c19b0090f4143861612d613511d57122879d9fd545558d2a9fcbe85a2b0faf2ec32bbce0e62d22d2b544d91cbc4d4dfb3f22f841f8271fbc6 + languageName: node + linkType: hard + +"postcss-loader@npm:3.0.0": + version: 3.0.0 + resolution: "postcss-loader@npm:3.0.0" + dependencies: + loader-utils: ^1.1.0 + postcss: ^7.0.0 + postcss-load-config: ^2.0.0 + schema-utils: ^1.0.0 + checksum: a6a922cbcc225ef57fb88c8248f91195869cd11e0d2b0b0fe84bc89a3074437d592d79a9fc39e50218677b7ba3a41b0e1c7e8f9666e59d41a196d7ab022c5805 + languageName: node + linkType: hard + +"postcss-logical@npm:^3.0.0": + version: 3.0.0 + resolution: "postcss-logical@npm:3.0.0" + dependencies: + postcss: ^7.0.2 + checksum: 5278661b78a093661c9cac8c04666d457734bf156f83d8c67f6034c00e8d4b3a26fce32a8a4a251feae3c7587f42556412dca980e100d0c920ee55e878f7b8ee + languageName: node + linkType: hard + +"postcss-media-minmax@npm:^4.0.0": + version: 4.0.0 + resolution: "postcss-media-minmax@npm:4.0.0" + dependencies: + postcss: ^7.0.2 + checksum: 8a4d94e25089bb5a66c6742bcdd263fce2fea391438151a85b442b7f8b66323bbca552b59a93efd6bcabcfd41845ddd4149bd56d156b008f8d7d04bc84d9fb11 + languageName: node + linkType: hard + +"postcss-merge-longhand@npm:^4.0.11": + version: 4.0.11 + resolution: "postcss-merge-longhand@npm:4.0.11" + dependencies: + css-color-names: 0.0.4 + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + stylehacks: ^4.0.0 + checksum: 45082b492d4d771c1607707d04dbcaece85a100011109886af9460a7868720de1121e290a6442360e2668db510edef579194197d1b534e9fb6c8df7a6cb86a4d + languageName: node + linkType: hard + +"postcss-merge-rules@npm:^4.0.3": + version: 4.0.3 + resolution: "postcss-merge-rules@npm:4.0.3" + dependencies: + browserslist: ^4.0.0 + caniuse-api: ^3.0.0 + cssnano-util-same-parent: ^4.0.0 + postcss: ^7.0.0 + postcss-selector-parser: ^3.0.0 + vendors: ^1.0.0 + checksum: ed0f3880e1076e5b2a08e4cff35b50dc7dfbd337e6ba16a0ca157e28268cfa1d6c6d821e902d319757f32a7d36f944cad51be76f8b34858d1d7a637e7b585919 + languageName: node + linkType: hard + +"postcss-minify-font-values@npm:^4.0.2": + version: 4.0.2 + resolution: "postcss-minify-font-values@npm:4.0.2" + dependencies: + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + checksum: add296b3bc88501283d65b54ad83552f47c98dd403740a70d8dfeef6d30a21d4a1f40191ffef1029a9474e9580a73e84ef644e99ede76c5a2474579b583f4b34 + languageName: node + linkType: hard + +"postcss-minify-gradients@npm:^4.0.2": + version: 4.0.2 + resolution: "postcss-minify-gradients@npm:4.0.2" + dependencies: + cssnano-util-get-arguments: ^4.0.0 + is-color-stop: ^1.0.0 + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + checksum: b83de019cc392192d64182fa6f609383904ef69013d71cda5d06fadab92b4daa73f5be0d0254c5eb0805405e5e1b9c44e49ca6bc629c4c7a24a8164a30b40d46 + languageName: node + linkType: hard + +"postcss-minify-params@npm:^4.0.2": + version: 4.0.2 + resolution: "postcss-minify-params@npm:4.0.2" + dependencies: + alphanum-sort: ^1.0.0 + browserslist: ^4.0.0 + cssnano-util-get-arguments: ^4.0.0 + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + uniqs: ^2.0.0 + checksum: 15e7f196b3408ab3f55f1a7c9fa8aeea7949fdd02be28af232dd2e47bb7722e0e0a416d6b2c4550ba333a485b775da1bc35c19c9be7b6de855166d2e85d7b28f + languageName: node + linkType: hard + +"postcss-minify-selectors@npm:^4.0.2": + version: 4.0.2 + resolution: "postcss-minify-selectors@npm:4.0.2" + dependencies: + alphanum-sort: ^1.0.0 + has: ^1.0.0 + postcss: ^7.0.0 + postcss-selector-parser: ^3.0.0 + checksum: a214809b620e50296417838804c3978d5f0a5ddfd48916780d77c1e0348c9ed0baa4b1f3905511b0f06b77340b5378088cc3188517c0848e8b7a53a71ef36c2b + languageName: node + linkType: hard + +"postcss-modules-extract-imports@npm:^2.0.0": + version: 2.0.0 + resolution: "postcss-modules-extract-imports@npm:2.0.0" + dependencies: + postcss: ^7.0.5 + checksum: 154790fe5954aaa12f300aa9aa782fae8b847138459c8f533ea6c8f29439dd66b4d9a49e0bf6f8388fa0df898cc03d61c84678e3b0d4b47cac5a4334a7151a9f + languageName: node + linkType: hard + +"postcss-modules-local-by-default@npm:^3.0.3": + version: 3.0.3 + resolution: "postcss-modules-local-by-default@npm:3.0.3" + dependencies: + icss-utils: ^4.1.1 + postcss: ^7.0.32 + postcss-selector-parser: ^6.0.2 + postcss-value-parser: ^4.1.0 + checksum: 0267633eaf80e72a3abf391b6e34c5b344a1bdfb1421543d3ed43fc757e053e0fcc1a2eb06d959a8f435776e8dc80288b59bfc34d61e5e021d47b747c417c5a1 + languageName: node + linkType: hard + +"postcss-modules-scope@npm:^2.2.0": + version: 2.2.0 + resolution: "postcss-modules-scope@npm:2.2.0" + dependencies: + postcss: ^7.0.6 + postcss-selector-parser: ^6.0.0 + checksum: c611181df924275ca1ffea261149c229488d6921054896879ca98feeb0913f9b00f4f160654beb2cb243a2989036c269baa96778eeacaaa399a4604b6e2fea17 + languageName: node + linkType: hard + +"postcss-modules-values@npm:^3.0.0": + version: 3.0.0 + resolution: "postcss-modules-values@npm:3.0.0" + dependencies: + icss-utils: ^4.0.0 + postcss: ^7.0.6 + checksum: f1aea0b9c6798b39ec02a6d2310924bb9bfbddb4579668c2d4e2205ca7a68c656b85d5720f9bba3629d611f36667fe04ab889ea3f9a6b569a0a0d57b4f2f4e99 + languageName: node + linkType: hard + +"postcss-nesting@npm:^7.0.0": + version: 7.0.1 + resolution: "postcss-nesting@npm:7.0.1" + dependencies: + postcss: ^7.0.2 + checksum: 4056be95759e8b25477f19aff7202b57dd27eeef41d31f7ca14e4c87d16ffb40e4db3f518fc85bd28b20e183f5e5399b56b52fcc79affd556e13a98bbc678169 + languageName: node + linkType: hard + +"postcss-normalize-charset@npm:^4.0.1": + version: 4.0.1 + resolution: "postcss-normalize-charset@npm:4.0.1" + dependencies: + postcss: ^7.0.0 + checksum: f233f48d61eb005da217e5bfa58f4143165cb525ceea2de4fd88e4172a33712e8b63258ffa089c867875a498c408f293a380ea9e6f40076de550d8053f50e5bc + languageName: node + linkType: hard + +"postcss-normalize-display-values@npm:^4.0.2": + version: 4.0.2 + resolution: "postcss-normalize-display-values@npm:4.0.2" + dependencies: + cssnano-util-get-match: ^4.0.0 + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + checksum: c5b857ca05f30a3efc6211cdaa5c9306f3eb0dbac141047d451a418d2bfd3e54be0bd4481d61c640096152d3078881a8dc3dec61913ff7f01ab4fc6df1a14732 + languageName: node + linkType: hard + +"postcss-normalize-positions@npm:^4.0.2": + version: 4.0.2 + resolution: "postcss-normalize-positions@npm:4.0.2" + dependencies: + cssnano-util-get-arguments: ^4.0.0 + has: ^1.0.0 + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + checksum: 291612d0879e6913010937f1193ab56ae1cfd8a274665330ccbedbe72f59c36db3f688b0a3faa4c6689cfd03dff0c27702c6acfce9b1f697a022bfcee3cd4fc4 + languageName: node + linkType: hard + +"postcss-normalize-repeat-style@npm:^4.0.2": + version: 4.0.2 + resolution: "postcss-normalize-repeat-style@npm:4.0.2" + dependencies: + cssnano-util-get-arguments: ^4.0.0 + cssnano-util-get-match: ^4.0.0 + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + checksum: 2160b2a6fe4f9671ad5d044755f0e04cfb5f255db607505fd4c74e7c806315c9dca914e74bb02f5f768de7b70939359d05c3f9b23ae8f72551d8fdeabf79a1fb + languageName: node + linkType: hard + +"postcss-normalize-string@npm:^4.0.2": + version: 4.0.2 + resolution: "postcss-normalize-string@npm:4.0.2" + dependencies: + has: ^1.0.0 + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + checksum: 9d40753ceb4f7854ed690ecd5fe4ea142280b14441dd11e188e573e58af93df293efdc77311f1c599431df785a3bb614dfe4bdacc3081ee3fe8c95916c849b2f + languageName: node + linkType: hard + +"postcss-normalize-timing-functions@npm:^4.0.2": + version: 4.0.2 + resolution: "postcss-normalize-timing-functions@npm:4.0.2" + dependencies: + cssnano-util-get-match: ^4.0.0 + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + checksum: 8dfd711f5cdb49b823a92d1cd56d40f66f3686e257804495ef59d5d7f71815b6d19412a1ff25d40971bf6e146b1fa0517a6cc1a4c286b36c5cee6ed08a1952db + languageName: node + linkType: hard + +"postcss-normalize-unicode@npm:^4.0.1": + version: 4.0.1 + resolution: "postcss-normalize-unicode@npm:4.0.1" + dependencies: + browserslist: ^4.0.0 + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + checksum: 2b1da17815f8402651a72012fd385b5111e84002baf98b649e0c1fc91298b65bb0e431664f6df8a99b23217259ecec242b169c0f18bf26e727af02eaf475fb07 + languageName: node + linkType: hard + +"postcss-normalize-url@npm:^4.0.1": + version: 4.0.1 + resolution: "postcss-normalize-url@npm:4.0.1" + dependencies: + is-absolute-url: ^2.0.0 + normalize-url: ^3.0.0 + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + checksum: fcaab832d8b773568197b41406517a9e5fc7704f2fac7185bd0e13b19961e1ce9f1c762e4ffa470de7baa6a82ae8ae5ccf6b1bbeec6e95216d22ce6ab514fe04 + languageName: node + linkType: hard + +"postcss-normalize-whitespace@npm:^4.0.2": + version: 4.0.2 + resolution: "postcss-normalize-whitespace@npm:4.0.2" + dependencies: + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + checksum: 378a6eadb09ccc5ca2289e8daf98ce7366ae53342c4df7898ef5fae68138884d6c1241493531635458351b2805218bf55ceecae0fd289e5696ab15c78966abbb + languageName: node + linkType: hard + +"postcss-normalize@npm:8.0.1": + version: 8.0.1 + resolution: "postcss-normalize@npm:8.0.1" + dependencies: + "@csstools/normalize.css": ^10.1.0 + browserslist: ^4.6.2 + postcss: ^7.0.17 + postcss-browser-comments: ^3.0.0 + sanitize.css: ^10.0.0 + checksum: 3109075389b91a09a790c3cd62a4e8c147bab2113cffa7ea2e776982352796816bc56b7f08ed7f7175c24e5d9c46171a07f95eeee00cfecddac6e3b4c9888dd0 + languageName: node + linkType: hard + +"postcss-ordered-values@npm:^4.1.2": + version: 4.1.2 + resolution: "postcss-ordered-values@npm:4.1.2" + dependencies: + cssnano-util-get-arguments: ^4.0.0 + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + checksum: 4a6f6a427a0165e1fa4f04dbe53a88708c73ea23e5b23ce312366ca8d85d83af450154a54f0e5df6c5712f945c180b6a364c3682dc995940b93228bb26658a96 + languageName: node + linkType: hard + +"postcss-overflow-shorthand@npm:^2.0.0": + version: 2.0.0 + resolution: "postcss-overflow-shorthand@npm:2.0.0" + dependencies: + postcss: ^7.0.2 + checksum: 553be1b7f9645017d33b654f9a436ce4f4406066c3056ca4c7ee06c21c2964fbe3437a9a3f998137efb6a17c1a79ee7e8baa39332c7dd9874aac8b69a3ad08b0 + languageName: node + linkType: hard + +"postcss-page-break@npm:^2.0.0": + version: 2.0.0 + resolution: "postcss-page-break@npm:2.0.0" + dependencies: + postcss: ^7.0.2 + checksum: 65a4453883e904ca0f337d3a988a1b5a090e2e8bc2855913cb0b4b741158e6ea2e4eed9b33f5989e7ae55faa0f7b83cdc09693d600ac4c86ce804ae381ec48a4 + languageName: node + linkType: hard + +"postcss-place@npm:^4.0.1": + version: 4.0.1 + resolution: "postcss-place@npm:4.0.1" + dependencies: + postcss: ^7.0.2 + postcss-values-parser: ^2.0.0 + checksum: 26b2a443b0a8fcb6774d00036fa351633798a655ccd609da2d561fbd6561b0ba6f6b6d89e15fb074389fadb7da4cbc59c48ba75f1f5fdc478c020febb4e2b557 + languageName: node + linkType: hard + +"postcss-preset-env@npm:6.7.0": + version: 6.7.0 + resolution: "postcss-preset-env@npm:6.7.0" + dependencies: + autoprefixer: ^9.6.1 + browserslist: ^4.6.4 + caniuse-lite: ^1.0.30000981 + css-blank-pseudo: ^0.1.4 + css-has-pseudo: ^0.10.0 + css-prefers-color-scheme: ^3.1.1 + cssdb: ^4.4.0 + postcss: ^7.0.17 + postcss-attribute-case-insensitive: ^4.0.1 + postcss-color-functional-notation: ^2.0.1 + postcss-color-gray: ^5.0.0 + postcss-color-hex-alpha: ^5.0.3 + postcss-color-mod-function: ^3.0.3 + postcss-color-rebeccapurple: ^4.0.1 + postcss-custom-media: ^7.0.8 + postcss-custom-properties: ^8.0.11 + postcss-custom-selectors: ^5.1.2 + postcss-dir-pseudo-class: ^5.0.0 + postcss-double-position-gradients: ^1.0.0 + postcss-env-function: ^2.0.2 + postcss-focus-visible: ^4.0.0 + postcss-focus-within: ^3.0.0 + postcss-font-variant: ^4.0.0 + postcss-gap-properties: ^2.0.0 + postcss-image-set-function: ^3.0.1 + postcss-initial: ^3.0.0 + postcss-lab-function: ^2.0.1 + postcss-logical: ^3.0.0 + postcss-media-minmax: ^4.0.0 + postcss-nesting: ^7.0.0 + postcss-overflow-shorthand: ^2.0.0 + postcss-page-break: ^2.0.0 + postcss-place: ^4.0.1 + postcss-pseudo-class-any-link: ^6.0.0 + postcss-replace-overflow-wrap: ^3.0.0 + postcss-selector-matches: ^4.0.0 + postcss-selector-not: ^4.0.0 + checksum: 209cbb63443a1631aa97ccfc3b95b1ff519ddaeb672f84d6af501bd9e9ad6727680b5b1bffb8209322e47d93029a69df6064f75cd0b7633b6df943cbef33f22e + languageName: node + linkType: hard + +"postcss-pseudo-class-any-link@npm:^6.0.0": + version: 6.0.0 + resolution: "postcss-pseudo-class-any-link@npm:6.0.0" + dependencies: + postcss: ^7.0.2 + postcss-selector-parser: ^5.0.0-rc.3 + checksum: d7dc3bba45df2966f8512c082a9cc341e63edac14d915ad9f41c62c452cd306d82da6baeee757dd4e7deafe3fa33b26c16e5236c670916bbb7ff4b4723453541 + languageName: node + linkType: hard + +"postcss-reduce-initial@npm:^4.0.3": + version: 4.0.3 + resolution: "postcss-reduce-initial@npm:4.0.3" + dependencies: + browserslist: ^4.0.0 + caniuse-api: ^3.0.0 + has: ^1.0.0 + postcss: ^7.0.0 + checksum: 5ad1a955cb20f5b1792ff8cc35894621edc23ee77397cc7e9692d269882fb4451655633947e0407fe20bd127d09d0b7e693034c64417bf8bf1034a83c6e71668 + languageName: node + linkType: hard + +"postcss-reduce-transforms@npm:^4.0.2": + version: 4.0.2 + resolution: "postcss-reduce-transforms@npm:4.0.2" + dependencies: + cssnano-util-get-match: ^4.0.0 + has: ^1.0.0 + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + checksum: e6a351d5da7ecf276ddda350635b15bce8e14af08aee1c8a0e8d9c2ab2631eab33b06f3c2f31c6f9c76eedbfc23f356d86da3539e011cde3e335a2cac9d91dc1 + languageName: node + linkType: hard + +"postcss-replace-overflow-wrap@npm:^3.0.0": + version: 3.0.0 + resolution: "postcss-replace-overflow-wrap@npm:3.0.0" + dependencies: + postcss: ^7.0.2 + checksum: 8c5b512a1172dd3d7b4a06d56d3b64c76dea01ca0950b546f83ae993f83aa95f933239e18deed0a5f3d2ef47840de55fa73498c4a46bfbe7bd892eb0dd8b606c + languageName: node + linkType: hard + +"postcss-safe-parser@npm:5.0.2": + version: 5.0.2 + resolution: "postcss-safe-parser@npm:5.0.2" + dependencies: + postcss: ^8.1.0 + checksum: b786eca091f856f2d31856d903c24c1b591ecbc0b607af0824e1cf12b9b254b5e1f24bc842cc2b95bc561f097d8b358fb4c9e04c73c1ba9c118d21bde9a83253 + languageName: node + linkType: hard + +"postcss-selector-matches@npm:^4.0.0": + version: 4.0.0 + resolution: "postcss-selector-matches@npm:4.0.0" + dependencies: + balanced-match: ^1.0.0 + postcss: ^7.0.2 + checksum: 724f6cb345477691909468268a456f978ad3bae9ecd9908b2bb55c55c5f3c6d54a1fe50ce3956d93b122d05fc36677a8e4a34eed07bccda969c3f8baa43669a6 + languageName: node + linkType: hard + +"postcss-selector-not@npm:^4.0.0": + version: 4.0.1 + resolution: "postcss-selector-not@npm:4.0.1" + dependencies: + balanced-match: ^1.0.0 + postcss: ^7.0.2 + checksum: 08fbd3e5ca273f3b767bd35d6bd033647a68f59b596d8aec19a9089b750539bdf85121ed7fd00a7763174a55c75c22a309d75d306127e23dc396069781efbaa4 + languageName: node + linkType: hard + +"postcss-selector-parser@npm:^3.0.0": + version: 3.1.2 + resolution: "postcss-selector-parser@npm:3.1.2" + dependencies: + dot-prop: ^5.2.0 + indexes-of: ^1.0.1 + uniq: ^1.0.1 + checksum: 85b754bf3b5f671cddd75a199589e5b03da114ec119aa4628ab7f35f76134b25296d18a68f745e39780c379d66d3919ae7a1b6129aeec5049cedb9ba4c660803 + languageName: node + linkType: hard + +"postcss-selector-parser@npm:^5.0.0-rc.3, postcss-selector-parser@npm:^5.0.0-rc.4": + version: 5.0.0 + resolution: "postcss-selector-parser@npm:5.0.0" + dependencies: + cssesc: ^2.0.0 + indexes-of: ^1.0.1 + uniq: ^1.0.1 + checksum: e49d21455e06d2cb9bf2a615bf3e605e0603c2c430a84c37a34f8baedaf3e8f9d0059a085d3e0483cbfa04c0d4153c7da28e7ac0ada319efdefe407df11dc1d4 + languageName: node + linkType: hard + +"postcss-selector-parser@npm:^6.0.0, postcss-selector-parser@npm:^6.0.2": + version: 6.0.13 + resolution: "postcss-selector-parser@npm:6.0.13" + dependencies: + cssesc: ^3.0.0 + util-deprecate: ^1.0.2 + checksum: f89163338a1ce3b8ece8e9055cd5a3165e79a15e1c408e18de5ad8f87796b61ec2d48a2902d179ae0c4b5de10fccd3a325a4e660596549b040bc5ad1b465f096 + languageName: node + linkType: hard + +"postcss-svgo@npm:^4.0.3": + version: 4.0.3 + resolution: "postcss-svgo@npm:4.0.3" + dependencies: + postcss: ^7.0.0 + postcss-value-parser: ^3.0.0 + svgo: ^1.0.0 + checksum: 6f5264241193ca3ba748fdf43c88ef692948d2ae38787398dc90089061fed884064ec14ee244fce07f19c419d1b058c77e135407d0932b09e93e528581ce3e10 + languageName: node + linkType: hard + +"postcss-unique-selectors@npm:^4.0.1": + version: 4.0.1 + resolution: "postcss-unique-selectors@npm:4.0.1" + dependencies: + alphanum-sort: ^1.0.0 + postcss: ^7.0.0 + uniqs: ^2.0.0 + checksum: 272eb1fa17d6ea513b5f4d2f694ef30fa690795ce388aef7bf3967fd3bcec7a9a3c8da380e74961ded8d98253a6ed18fb380b29da00e2fe03e74813e7765ea71 + languageName: node + linkType: hard + +"postcss-value-parser@npm:^3.0.0": + version: 3.3.1 + resolution: "postcss-value-parser@npm:3.3.1" + checksum: 62cd26e1cdbcf2dcc6bcedf3d9b409c9027bc57a367ae20d31dd99da4e206f730689471fd70a2abe866332af83f54dc1fa444c589e2381bf7f8054c46209ce16 + languageName: node + linkType: hard + +"postcss-value-parser@npm:^4.0.2, postcss-value-parser@npm:^4.1.0": + version: 4.2.0 + resolution: "postcss-value-parser@npm:4.2.0" + checksum: 819ffab0c9d51cf0acbabf8996dffbfafbafa57afc0e4c98db88b67f2094cb44488758f06e5da95d7036f19556a4a732525e84289a425f4f6fd8e412a9d7442f + languageName: node + linkType: hard + +"postcss-values-parser@npm:^2.0.0, postcss-values-parser@npm:^2.0.1": + version: 2.0.1 + resolution: "postcss-values-parser@npm:2.0.1" + dependencies: + flatten: ^1.0.2 + indexes-of: ^1.0.1 + uniq: ^1.0.1 + checksum: 050877880937e15af8d18bf48902e547e2123d7cc32c1f215b392642bc5e2598a87a341995d62f38e450aab4186b8afeb2c9541934806d458ad8b117020b2ebf + languageName: node + linkType: hard + +"postcss@npm:7.0.36": + version: 7.0.36 + resolution: "postcss@npm:7.0.36" + dependencies: + chalk: ^2.4.2 + source-map: ^0.6.1 + supports-color: ^6.1.0 + checksum: 4cfc0989b9ad5d0e8971af80d87f9c5beac5c84cb89ff22ad69852edf73c0a2fa348e7e0a135b5897bf893edad0fe86c428769050431ad9b532f072ff530828d + languageName: node + linkType: hard + +"postcss@npm:^7, postcss@npm:^7.0.0, postcss@npm:^7.0.1, postcss@npm:^7.0.14, postcss@npm:^7.0.17, postcss@npm:^7.0.2, postcss@npm:^7.0.26, postcss@npm:^7.0.27, postcss@npm:^7.0.32, postcss@npm:^7.0.35, postcss@npm:^7.0.5, postcss@npm:^7.0.6": + version: 7.0.39 + resolution: "postcss@npm:7.0.39" + dependencies: + picocolors: ^0.2.1 + source-map: ^0.6.1 + checksum: 4ac793f506c23259189064bdc921260d869a115a82b5e713973c5af8e94fbb5721a5cc3e1e26840500d7e1f1fa42a209747c5b1a151918a9bc11f0d7ed9048e3 + languageName: node + linkType: hard + +"postcss@npm:^8.1.0": + version: 8.4.31 + resolution: "postcss@npm:8.4.31" + dependencies: + nanoid: ^3.3.6 + picocolors: ^1.0.0 + source-map-js: ^1.0.2 + checksum: 1d8611341b073143ad90486fcdfeab49edd243377b1f51834dc4f6d028e82ce5190e4f11bb2633276864503654fb7cab28e67abdc0fbf9d1f88cad4a0ff0beea + languageName: node + linkType: hard + +"prelude-ls@npm:^1.2.1": + version: 1.2.1 + resolution: "prelude-ls@npm:1.2.1" + checksum: cd192ec0d0a8e4c6da3bb80e4f62afe336df3f76271ac6deb0e6a36187133b6073a19e9727a1ff108cd8b9982e4768850d413baa71214dd80c7979617dca827a + languageName: node + linkType: hard + +"prelude-ls@npm:~1.1.2": + version: 1.1.2 + resolution: "prelude-ls@npm:1.1.2" + checksum: c4867c87488e4a0c233e158e4d0d5565b609b105d75e4c05dc760840475f06b731332eb93cc8c9cecb840aa8ec323ca3c9a56ad7820ad2e63f0261dadcb154e4 + languageName: node + linkType: hard + +"prepend-http@npm:^1.0.0": + version: 1.0.4 + resolution: "prepend-http@npm:1.0.4" + checksum: 01e7baf4ad38af02257b99098543469332fc42ae50df33d97a124bf8172295907352fa6138c9b1610c10c6dd0847ca736e53fda736387cc5cf8fcffe96b47f29 + languageName: node + linkType: hard + +"prepend-http@npm:^2.0.0": + version: 2.0.0 + resolution: "prepend-http@npm:2.0.0" + checksum: 7694a9525405447662c1ffd352fcb41b6410c705b739b6f4e3a3e21cf5fdede8377890088e8934436b8b17ba55365a615f153960f30877bf0d0392f9e93503ea + languageName: node + linkType: hard + +"pretty-bytes@npm:^5.3.0": + version: 5.6.0 + resolution: "pretty-bytes@npm:5.6.0" + checksum: 9c082500d1e93434b5b291bd651662936b8bd6204ec9fa17d563116a192d6d86b98f6d328526b4e8d783c07d5499e2614a807520249692da9ec81564b2f439cd + languageName: node + linkType: hard + +"pretty-error@npm:^2.1.1": + version: 2.1.2 + resolution: "pretty-error@npm:2.1.2" + dependencies: + lodash: ^4.17.20 + renderkid: ^2.0.4 + checksum: 16775d06f9a695d17103414d610b1281f9535ee1f2da1ce1e1b9be79584a114aa7eac6dcdcc5ef151756d3c014dfd4ac1c7303ed8016d0cec12437cfdf4021c6 + languageName: node + linkType: hard + +"pretty-format@npm:^26.6.0, pretty-format@npm:^26.6.2": + version: 26.6.2 + resolution: "pretty-format@npm:26.6.2" + dependencies: + "@jest/types": ^26.6.2 + ansi-regex: ^5.0.0 + ansi-styles: ^4.0.0 + react-is: ^17.0.1 + checksum: e3b808404d7e1519f0df1aa1f25cee0054ab475775c6b2b8c5568ff23194a92d54bf93274139b6f584ca70fd773be4eaa754b0e03f12bb0a8d1426b07f079976 + languageName: node + linkType: hard + +"pretty-format@npm:^29.0.0, pretty-format@npm:^29.7.0": + version: 29.7.0 + resolution: "pretty-format@npm:29.7.0" + dependencies: + "@jest/schemas": ^29.6.3 + ansi-styles: ^5.0.0 + react-is: ^18.0.0 + checksum: 032c1602383e71e9c0c02a01bbd25d6759d60e9c7cf21937dde8357aa753da348fcec5def5d1002c9678a8524d5fe099ad98861286550ef44de8808cc61e43b6 + languageName: node + linkType: hard + +"process-nextick-args@npm:~2.0.0": + version: 2.0.1 + resolution: "process-nextick-args@npm:2.0.1" + checksum: 1d38588e520dab7cea67cbbe2efdd86a10cc7a074c09657635e34f035277b59fbb57d09d8638346bf7090f8e8ebc070c96fa5fd183b777fff4f5edff5e9466cf + languageName: node + linkType: hard + +"process@npm:^0.11.10": + version: 0.11.10 + resolution: "process@npm:0.11.10" + checksum: bfcce49814f7d172a6e6a14d5fa3ac92cc3d0c3b9feb1279774708a719e19acd673995226351a082a9ae99978254e320ccda4240ddc474ba31a76c79491ca7c3 + languageName: node + linkType: hard + +"progress@npm:^2.0.0, progress@npm:^2.0.3": + version: 2.0.3 + resolution: "progress@npm:2.0.3" + checksum: f67403fe7b34912148d9252cb7481266a354bd99ce82c835f79070643bb3c6583d10dbcfda4d41e04bbc1d8437e9af0fb1e1f2135727878f5308682a579429b7 + languageName: node + linkType: hard + +"promise-inflight@npm:^1.0.1": + version: 1.0.1 + resolution: "promise-inflight@npm:1.0.1" + checksum: 22749483091d2c594261517f4f80e05226d4d5ecc1fc917e1886929da56e22b5718b7f2a75f3807e7a7d471bc3be2907fe92e6e8f373ddf5c64bae35b5af3981 + languageName: node + linkType: hard + +"promise-polyfill@npm:8.1.3": + version: 8.1.3 + resolution: "promise-polyfill@npm:8.1.3" + checksum: 776716ac9428f64fa0ef2f97fcedacf2c1a460a7c4d9d456ac792e8a98801cb12ff09eadeff266136e90f520d9c13455e4cf62a4692c0662d6f3280804361ba7 + languageName: node + linkType: hard + +"promise-retry@npm:^2.0.1": + version: 2.0.1 + resolution: "promise-retry@npm:2.0.1" + dependencies: + err-code: ^2.0.2 + retry: ^0.12.0 + checksum: f96a3f6d90b92b568a26f71e966cbbc0f63ab85ea6ff6c81284dc869b41510e6cdef99b6b65f9030f0db422bf7c96652a3fff9f2e8fb4a0f069d8f4430359429 + languageName: node + linkType: hard + +"promise@npm:^8.1.0": + version: 8.3.0 + resolution: "promise@npm:8.3.0" + dependencies: + asap: ~2.0.6 + checksum: a69f0ddbddf78ffc529cffee7ad950d307347615970564b17988ce43fbe767af5c738a9439660b24a9a8cbea106c0dcbb6c2b20e23b7e96a8e89e5c2679e94d5 + languageName: node + linkType: hard + +"prompts@npm:2.4.0": + version: 2.4.0 + resolution: "prompts@npm:2.4.0" + dependencies: + kleur: ^3.0.3 + sisteransi: ^1.0.5 + checksum: 96c7bef8eb3c0bb2076d2bc5ee473f06e6d8ac01ac4d0f378dfeb0ddaf2f31c339360ec8f0f8486f78601d16ebef7c6bd9886d44b937ba01bab568b937190265 + languageName: node + linkType: hard + +"prompts@npm:^2.0.1, prompts@npm:^2.3.2": + version: 2.4.2 + resolution: "prompts@npm:2.4.2" + dependencies: + kleur: ^3.0.3 + sisteransi: ^1.0.5 + checksum: d8fd1fe63820be2412c13bfc5d0a01909acc1f0367e32396962e737cb2fc52d004f3302475d5ce7d18a1e8a79985f93ff04ee03007d091029c3f9104bffc007d + languageName: node + linkType: hard + +"prop-types@npm:^15.6.0, prop-types@npm:^15.6.1, prop-types@npm:^15.6.2, prop-types@npm:^15.7.2, prop-types@npm:^15.8.1": + version: 15.8.1 + resolution: "prop-types@npm:15.8.1" + dependencies: + loose-envify: ^1.4.0 + object-assign: ^4.1.1 + react-is: ^16.13.1 + checksum: c056d3f1c057cb7ff8344c645450e14f088a915d078dcda795041765047fa080d38e5d626560ccaac94a4e16e3aa15f3557c1a9a8d1174530955e992c675e459 + languageName: node + linkType: hard + +"proto-list@npm:~1.2.1": + version: 1.2.4 + resolution: "proto-list@npm:1.2.4" + checksum: 4d4826e1713cbfa0f15124ab0ae494c91b597a3c458670c9714c36e8baddf5a6aad22842776f2f5b137f259c8533e741771445eb8df82e861eea37a6eaba03f7 + languageName: node + linkType: hard + +"protobufjs@npm:^5.0.3": + version: 5.0.3 + resolution: "protobufjs@npm:5.0.3" + dependencies: + ascli: ~1 + bytebuffer: ~5 + glob: ^7.0.5 + yargs: ^3.10.0 + bin: + pbjs: ./bin/pbjs + checksum: 3ffb785028696efc642555c8fb7c56b5ecbbe2db42da71997a7d637b15bd555bca0a93b7bc8dd542e1369da214d0a5e669f2ad34ac191c80c1e7e8edc25406c0 + languageName: node + linkType: hard + +"protobufjs@npm:^6.11.3": + version: 6.11.4 + resolution: "protobufjs@npm:6.11.4" + dependencies: + "@protobufjs/aspromise": ^1.1.2 + "@protobufjs/base64": ^1.1.2 + "@protobufjs/codegen": ^2.0.4 + "@protobufjs/eventemitter": ^1.1.0 + "@protobufjs/fetch": ^1.1.0 + "@protobufjs/float": ^1.0.2 + "@protobufjs/inquire": ^1.1.0 + "@protobufjs/path": ^1.1.2 + "@protobufjs/pool": ^1.1.0 + "@protobufjs/utf8": ^1.1.0 + "@types/long": ^4.0.1 + "@types/node": ">=13.7.0" + long: ^4.0.0 + bin: + pbjs: bin/pbjs + pbts: bin/pbts + checksum: b2fc6a01897b016c2a7e43a854ab4a3c57080f61be41e552235436e7a730711b8e89e47cb4ae52f0f065b5ab5d5989fc932f390337ce3a8ccf07203415700850 + languageName: node + linkType: hard + +"protobufjs@npm:^7.2.4": + version: 7.2.5 + resolution: "protobufjs@npm:7.2.5" + dependencies: + "@protobufjs/aspromise": ^1.1.2 + "@protobufjs/base64": ^1.1.2 + "@protobufjs/codegen": ^2.0.4 + "@protobufjs/eventemitter": ^1.1.0 + "@protobufjs/fetch": ^1.1.0 + "@protobufjs/float": ^1.0.2 + "@protobufjs/inquire": ^1.1.0 + "@protobufjs/path": ^1.1.2 + "@protobufjs/pool": ^1.1.0 + "@protobufjs/utf8": ^1.1.0 + "@types/node": ">=13.7.0" + long: ^5.0.0 + checksum: 3770a072114061faebbb17cfd135bc4e187b66bc6f40cd8bac624368b0270871ec0cfb43a02b9fb4f029c8335808a840f1afba3c2e7ede7063b98ae6b98a703f + languageName: node + linkType: hard + +"proxy-addr@npm:~2.0.7": + version: 2.0.7 + resolution: "proxy-addr@npm:2.0.7" + dependencies: + forwarded: 0.2.0 + ipaddr.js: 1.9.1 + checksum: 29c6990ce9364648255454842f06f8c46fcd124d3e6d7c5066df44662de63cdc0bad032e9bf5a3d653ff72141cc7b6019873d685708ac8210c30458ad99f2b74 + languageName: node + linkType: hard + +"prr@npm:~1.0.1": + version: 1.0.1 + resolution: "prr@npm:1.0.1" + checksum: 3bca2db0479fd38f8c4c9439139b0c42dcaadcc2fbb7bb8e0e6afaa1383457f1d19aea9e5f961d5b080f1cfc05bfa1fe9e45c97a1d3fd6d421950a73d3108381 + languageName: node + linkType: hard + +"psl@npm:^1.1.33": + version: 1.9.0 + resolution: "psl@npm:1.9.0" + checksum: 20c4277f640c93d393130673f392618e9a8044c6c7bf61c53917a0fddb4952790f5f362c6c730a9c32b124813e173733f9895add8d26f566ed0ea0654b2e711d + languageName: node + linkType: hard + +"public-encrypt@npm:^4.0.0": + version: 4.0.3 + resolution: "public-encrypt@npm:4.0.3" + dependencies: + bn.js: ^4.1.0 + browserify-rsa: ^4.0.0 + create-hash: ^1.1.0 + parse-asn1: ^5.0.0 + randombytes: ^2.0.1 + safe-buffer: ^5.1.2 + checksum: 215d446e43cef021a20b67c1df455e5eea134af0b1f9b8a35f9e850abf32991b0c307327bc5b9bc07162c288d5cdb3d4a783ea6c6640979ed7b5017e3e0c9935 + languageName: node + linkType: hard + +"pump@npm:^2.0.0": + version: 2.0.1 + resolution: "pump@npm:2.0.1" + dependencies: + end-of-stream: ^1.1.0 + once: ^1.3.1 + checksum: e9f26a17be00810bff37ad0171edb35f58b242487b0444f92fb7d78bc7d61442fa9b9c5bd93a43fd8fd8ddd3cc75f1221f5e04c790f42907e5baab7cf5e2b931 + languageName: node + linkType: hard + +"pump@npm:^3.0.0": + version: 3.0.0 + resolution: "pump@npm:3.0.0" + dependencies: + end-of-stream: ^1.1.0 + once: ^1.3.1 + checksum: e42e9229fba14732593a718b04cb5e1cfef8254544870997e0ecd9732b189a48e1256e4e5478148ecb47c8511dca2b09eae56b4d0aad8009e6fac8072923cfc9 + languageName: node + linkType: hard + +"pumpify@npm:^1.3.3": + version: 1.5.1 + resolution: "pumpify@npm:1.5.1" + dependencies: + duplexify: ^3.6.0 + inherits: ^2.0.3 + pump: ^2.0.0 + checksum: 26ca412ec8d665bd0d5e185c1b8f627728eff603440d75d22a58e421e3c66eaf86ec6fc6a6efc54808ecef65979279fa8e99b109a23ec1fa8d79f37e6978c9bd + languageName: node + linkType: hard + +"punycode@npm:^1.2.4, punycode@npm:^1.4.1": + version: 1.4.1 + resolution: "punycode@npm:1.4.1" + checksum: fa6e698cb53db45e4628559e557ddaf554103d2a96a1d62892c8f4032cd3bc8871796cae9eabc1bc700e2b6677611521ce5bb1d9a27700086039965d0cf34518 + languageName: node + linkType: hard + +"punycode@npm:^2.1.0, punycode@npm:^2.1.1": + version: 2.3.0 + resolution: "punycode@npm:2.3.0" + checksum: 39f760e09a2a3bbfe8f5287cf733ecdad69d6af2fe6f97ca95f24b8921858b91e9ea3c9eeec6e08cede96181b3bb33f95c6ffd8c77e63986508aa2e8159fa200 + languageName: node + linkType: hard + +"pupa@npm:^2.1.1": + version: 2.1.1 + resolution: "pupa@npm:2.1.1" + dependencies: + escape-goat: ^2.0.0 + checksum: 49529e50372ffdb0cccf0efa0f3b3cb0a2c77805d0d9cc2725bd2a0f6bb414631e61c93a38561b26be1259550b7bb6c2cb92315aa09c8bf93f3bdcb49f2b2fb7 + languageName: node + linkType: hard + +"q@npm:^1.1.2": + version: 1.5.1 + resolution: "q@npm:1.5.1" + checksum: 147baa93c805bc1200ed698bdf9c72e9e42c05f96d007e33a558b5fdfd63e5ea130e99313f28efc1783e90e6bdb4e48b67a36fcc026b7b09202437ae88a1fb12 + languageName: node + linkType: hard + +"qs@npm:6.11.0": + version: 6.11.0 + resolution: "qs@npm:6.11.0" + dependencies: + side-channel: ^1.0.4 + checksum: 6e1f29dd5385f7488ec74ac7b6c92f4d09a90408882d0c208414a34dd33badc1a621019d4c799a3df15ab9b1d0292f97c1dd71dc7c045e69f81a8064e5af7297 + languageName: node + linkType: hard + +"qs@npm:^6.11.2": + version: 6.11.2 + resolution: "qs@npm:6.11.2" + dependencies: + side-channel: ^1.0.4 + checksum: e812f3c590b2262548647d62f1637b6989cc56656dc960b893fe2098d96e1bd633f36576f4cd7564dfbff9db42e17775884db96d846bebe4f37420d073ecdc0b + languageName: node + linkType: hard + +"query-string@npm:^4.1.0": + version: 4.3.4 + resolution: "query-string@npm:4.3.4" + dependencies: + object-assign: ^4.1.0 + strict-uri-encode: ^1.0.0 + checksum: 3b2bae6a8454cf0edf11cf1aa4d1f920398bbdabc1c39222b9bb92147e746fcd97faf00e56f494728fb66b2961b495ba0fde699d5d3bd06b11472d664b36c6cf + languageName: node + linkType: hard + +"querystring-es3@npm:^0.2.0": + version: 0.2.1 + resolution: "querystring-es3@npm:0.2.1" + checksum: 691e8d6b8b157e7cd49ae8e83fcf86de39ab3ba948c25abaa94fba84c0986c641aa2f597770848c64abce290ed17a39c9df6df737dfa7e87c3b63acc7d225d61 + languageName: node + linkType: hard + +"querystring@npm:^0.2.0": + version: 0.2.1 + resolution: "querystring@npm:0.2.1" + checksum: 7b83b45d641e75fd39cd6625ddfd44e7618e741c61e95281b57bbae8fde0afcc12cf851924559e5cc1ef9baa3b1e06e22b164ea1397d65dd94b801f678d9c8ce + languageName: node + linkType: hard + +"querystringify@npm:^2.1.1": + version: 2.2.0 + resolution: "querystringify@npm:2.2.0" + checksum: 5641ea231bad7ef6d64d9998faca95611ed4b11c2591a8cae741e178a974f6a8e0ebde008475259abe1621cb15e692404e6b6626e927f7b849d5c09392604b15 + languageName: node + linkType: hard + +"queue-microtask@npm:^1.2.2": + version: 1.2.3 + resolution: "queue-microtask@npm:1.2.3" + checksum: b676f8c040cdc5b12723ad2f91414d267605b26419d5c821ff03befa817ddd10e238d22b25d604920340fd73efd8ba795465a0377c4adf45a4a41e4234e42dc4 + languageName: node + linkType: hard + +"raf@npm:^3.4.1": + version: 3.4.1 + resolution: "raf@npm:3.4.1" + dependencies: + performance-now: ^2.1.0 + checksum: 50ba284e481c8185dbcf45fc4618ba3aec580bb50c9121385d5698cb6012fe516d2015b1df6dd407a7b7c58d44be8086108236affbce1861edd6b44637c8cd52 + languageName: node + linkType: hard + +"randombytes@npm:^2.0.0, randombytes@npm:^2.0.1, randombytes@npm:^2.0.5, randombytes@npm:^2.1.0": + version: 2.1.0 + resolution: "randombytes@npm:2.1.0" + dependencies: + safe-buffer: ^5.1.0 + checksum: d779499376bd4cbb435ef3ab9a957006c8682f343f14089ed5f27764e4645114196e75b7f6abf1cbd84fd247c0cb0651698444df8c9bf30e62120fbbc52269d6 + languageName: node + linkType: hard + +"randomfill@npm:^1.0.3": + version: 1.0.4 + resolution: "randomfill@npm:1.0.4" + dependencies: + randombytes: ^2.0.5 + safe-buffer: ^5.1.0 + checksum: 33734bb578a868d29ee1b8555e21a36711db084065d94e019a6d03caa67debef8d6a1bfd06a2b597e32901ddc761ab483a85393f0d9a75838f1912461d4dbfc7 + languageName: node + linkType: hard + +"range-parser@npm:^1.2.1, range-parser@npm:~1.2.1": + version: 1.2.1 + resolution: "range-parser@npm:1.2.1" + checksum: 0a268d4fea508661cf5743dfe3d5f47ce214fd6b7dec1de0da4d669dd4ef3d2144468ebe4179049eff253d9d27e719c88dae55be64f954e80135a0cada804ec9 + languageName: node + linkType: hard + +"raw-body@npm:2.5.1": + version: 2.5.1 + resolution: "raw-body@npm:2.5.1" + dependencies: + bytes: 3.1.2 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + unpipe: 1.0.0 + checksum: 5362adff1575d691bb3f75998803a0ffed8c64eabeaa06e54b4ada25a0cd1b2ae7f4f5ec46565d1bec337e08b5ac90c76eaa0758de6f72a633f025d754dec29e + languageName: node + linkType: hard + +"rc@npm:1.2.8, rc@npm:^1.2.8": + version: 1.2.8 + resolution: "rc@npm:1.2.8" + dependencies: + deep-extend: ^0.6.0 + ini: ~1.3.0 + minimist: ^1.2.0 + strip-json-comments: ~2.0.1 + bin: + rc: ./cli.js + checksum: 2e26e052f8be2abd64e6d1dabfbd7be03f80ec18ccbc49562d31f617d0015fbdbcf0f9eed30346ea6ab789e0fdfe4337f033f8016efdbee0df5354751842080e + languageName: node + linkType: hard + +"react-app-polyfill@npm:^2.0.0": + version: 2.0.0 + resolution: "react-app-polyfill@npm:2.0.0" + dependencies: + core-js: ^3.6.5 + object-assign: ^4.1.1 + promise: ^8.1.0 + raf: ^3.4.1 + regenerator-runtime: ^0.13.7 + whatwg-fetch: ^3.4.1 + checksum: 99e52a6b2229c7ca730cfd44ac95640f955be71d144225bd6c24fa47922a742658a371d0a2f0876d732533f1055b7cd7e9d534c89c29f8ca889ecd1b8d15f065 + languageName: node + linkType: hard + +"react-dev-utils@npm:^11.0.3, react-dev-utils@npm:^11.0.4": + version: 11.0.4 + resolution: "react-dev-utils@npm:11.0.4" + dependencies: + "@babel/code-frame": 7.10.4 + address: 1.1.2 + browserslist: 4.14.2 + chalk: 2.4.2 + cross-spawn: 7.0.3 + detect-port-alt: 1.1.6 + escape-string-regexp: 2.0.0 + filesize: 6.1.0 + find-up: 4.1.0 + fork-ts-checker-webpack-plugin: 4.1.6 + global-modules: 2.0.0 + globby: 11.0.1 + gzip-size: 5.1.1 + immer: 8.0.1 + is-root: 2.1.0 + loader-utils: 2.0.0 + open: ^7.0.2 + pkg-up: 3.1.0 + prompts: 2.4.0 + react-error-overlay: ^6.0.9 + recursive-readdir: 2.2.2 + shell-quote: 1.7.2 + strip-ansi: 6.0.0 + text-table: 0.2.0 + checksum: b41c95010a4fb60d4ea6309423520e6268757b68df34de7e9e8dbc72549236a1f5a698ff99ad72a034ac51b042aa79ee53994330ce4df05bf867e63c5464bb3f + languageName: node + linkType: hard + +"react-device-detect@npm:^2.1.2": + version: 2.2.3 + resolution: "react-device-detect@npm:2.2.3" + dependencies: + ua-parser-js: ^1.0.33 + peerDependencies: + react: ">= 0.14.0" + react-dom: ">= 0.14.0" + checksum: 42d9b3182b9d2495bf0d7914c9f370da51d8bdb853a3eba2acaf433894ae760386a075ba103185be825b33d42f50d85ef462087f261656d433f4c74dab23861f + languageName: node + linkType: hard + +"react-dom@npm:^18.1.0": + version: 18.2.0 + resolution: "react-dom@npm:18.2.0" + dependencies: + loose-envify: ^1.1.0 + scheduler: ^0.23.0 + peerDependencies: + react: ^18.2.0 + checksum: 7d323310bea3a91be2965f9468d552f201b1c27891e45ddc2d6b8f717680c95a75ae0bc1e3f5cf41472446a2589a75aed4483aee8169287909fcd59ad149e8cc + languageName: node + linkType: hard + +"react-download-link@npm:^2.3.0": + version: 2.3.0 + resolution: "react-download-link@npm:2.3.0" + dependencies: + prop-types: ^15.6.0 + checksum: e002d94344afc27a32bd5873714b6cdf221ca8ac6f4c2c77f7f274b1f86b3545935a528c430ef4638f3b7c43bf7dc0d14a11bf6280cb3084a618c43fb4240043 + languageName: node + linkType: hard + +"react-error-overlay@npm:^6.0.9": + version: 6.0.11 + resolution: "react-error-overlay@npm:6.0.11" + checksum: ce7b44c38fadba9cedd7c095cf39192e632daeccf1d0747292ed524f17dcb056d16bc197ddee5723f9dd888f0b9b19c3b486c430319e30504289b9296f2d2c42 + languageName: node + linkType: hard + +"react-fast-compare@npm:^3.1.1": + version: 3.2.2 + resolution: "react-fast-compare@npm:3.2.2" + checksum: 2071415b4f76a3e6b55c84611c4d24dcb12ffc85811a2840b5a3f1ff2d1a99be1020d9437ee7c6e024c9f4cbb84ceb35e48cf84f28fcb00265ad2dfdd3947704 + languageName: node + linkType: hard + +"react-ga4@npm:^1.4.1": + version: 1.4.1 + resolution: "react-ga4@npm:1.4.1" + checksum: 4c33ecb47dfc26c241a6af8e2b08b29b6c059f40e456e93d1c2b65c995edce18f32d9777295774ec992d968d7c5efdd105eb62398972d85ff2e2b6dad8646a26 + languageName: node + linkType: hard + +"react-ga@npm:^3.3.0": + version: 3.3.1 + resolution: "react-ga@npm:3.3.1" + peerDependencies: + prop-types: ^15.6.0 + react: ^15.6.2 || ^16.0 || ^17 || ^18 + checksum: 3026976d0249fbf80e7b5dad7707964198064d7ac460f3397de40524e76dd6c29dead0900f850e2bd3135a86a9b083af8cda9cfa087f195852bf8d2b17c1fcfb + languageName: node + linkType: hard + +"react-helmet@npm:^6.1.0": + version: 6.1.0 + resolution: "react-helmet@npm:6.1.0" + dependencies: + object-assign: ^4.1.1 + prop-types: ^15.7.2 + react-fast-compare: ^3.1.1 + react-side-effect: ^2.1.0 + peerDependencies: + react: ">=16.3.0" + checksum: a4998479dab7fc1c2799eddefb1870a9d881b5f71cfdf97979a9882e42f4bb50402d55335f308f461e735e01a06f46b16cc7b4e6bcb22c7a4a6f85a753c5c106 + languageName: node + linkType: hard + +"react-is@npm:^16.13.1, react-is@npm:^16.7.0": + version: 16.13.1 + resolution: "react-is@npm:16.13.1" + checksum: f7a19ac3496de32ca9ae12aa030f00f14a3d45374f1ceca0af707c831b2a6098ef0d6bdae51bd437b0a306d7f01d4677fcc8de7c0d331eb47ad0f46130e53c5f + languageName: node + linkType: hard + +"react-is@npm:^17.0.1": + version: 17.0.2 + resolution: "react-is@npm:17.0.2" + checksum: 9d6d111d8990dc98bc5402c1266a808b0459b5d54830bbea24c12d908b536df7883f268a7868cfaedde3dd9d4e0d574db456f84d2e6df9c4526f99bb4b5344d8 + languageName: node + linkType: hard + +"react-is@npm:^18.0.0, react-is@npm:^18.2.0": + version: 18.2.0 + resolution: "react-is@npm:18.2.0" + checksum: e72d0ba81b5922759e4aff17e0252bd29988f9642ed817f56b25a3e217e13eea8a7f2322af99a06edb779da12d5d636e9fda473d620df9a3da0df2a74141d53e + languageName: node + linkType: hard + +"react-messenger-customer-chat@npm:^0.8.0": + version: 0.8.0 + resolution: "react-messenger-customer-chat@npm:0.8.0" + dependencies: + prop-types: ^15.6.0 + peerDependencies: + react: ^0.14.0 || ^15.0.0-0 || ^16.0.0-0 + checksum: 851ba1daa4dbe749df7ca28bcbaf9154dbb609835e1a1a2eb3253fbed581e0cb42ba85d95e9d621159e820b408311249570bc3ce8a2d2980366dd5e726c085ca + languageName: node + linkType: hard + +"react-refresh@npm:^0.8.3": + version: 0.8.3 + resolution: "react-refresh@npm:0.8.3" + checksum: 3cffe5a9cbac1c5d59bf74bf9fff43c987d87ef32098b9092ea94b6637377d86c08565b9374d9397f446b3fbcd95de986ec77220a16f979687cb39b7b89e2f91 + languageName: node + linkType: hard + +"react-responsive@npm:^8.2.0": + version: 8.2.0 + resolution: "react-responsive@npm:8.2.0" + dependencies: + hyphenate-style-name: ^1.0.0 + matchmediaquery: ^0.3.0 + prop-types: ^15.6.1 + shallow-equal: ^1.1.0 + peerDependencies: + react: ">=16.8.0" + checksum: 59c6be6934a3412f0de9416c1ba25bbbb043706a9dd530e9c92c04172c6efb96202e2ff0b72d589aa99edea92098e27a3bb3532d6281299deab5e4a64c62535f + languageName: node + linkType: hard + +"react-router-dom@npm:^6.2.1": + version: 6.17.0 + resolution: "react-router-dom@npm:6.17.0" + dependencies: + "@remix-run/router": 1.10.0 + react-router: 6.17.0 + peerDependencies: + react: ">=16.8" + react-dom: ">=16.8" + checksum: e0ba4f4c507681e2ffdecdf2e67edf7ec0e2bf4be35222e29d013afdb03866a5e6ecacc8b452bd55797b9672785d02f81bd6dbf6b05ac93a59e48e774b0060de + languageName: node + linkType: hard + +"react-router@npm:6.17.0, react-router@npm:^6.2.1": + version: 6.17.0 + resolution: "react-router@npm:6.17.0" + dependencies: + "@remix-run/router": 1.10.0 + peerDependencies: + react: ">=16.8" + checksum: 99c30d94fbb34657e4c8c3ef1aaae33b143167d3869b442e06c83b4006f35200fde810029180e209654bef2f47f0b27a928f77cc2d859a358a2722cc9d494f03 + languageName: node + linkType: hard + +"react-scripts@npm:4.0.3": + version: 4.0.3 + resolution: "react-scripts@npm:4.0.3" + dependencies: + "@babel/core": 7.12.3 + "@pmmmwh/react-refresh-webpack-plugin": 0.4.3 + "@svgr/webpack": 5.5.0 + "@typescript-eslint/eslint-plugin": ^4.5.0 + "@typescript-eslint/parser": ^4.5.0 + babel-eslint: ^10.1.0 + babel-jest: ^26.6.0 + babel-loader: 8.1.0 + babel-plugin-named-asset-import: ^0.3.7 + babel-preset-react-app: ^10.0.0 + bfj: ^7.0.2 + camelcase: ^6.1.0 + case-sensitive-paths-webpack-plugin: 2.3.0 + css-loader: 4.3.0 + dotenv: 8.2.0 + dotenv-expand: 5.1.0 + eslint: ^7.11.0 + eslint-config-react-app: ^6.0.0 + eslint-plugin-flowtype: ^5.2.0 + eslint-plugin-import: ^2.22.1 + eslint-plugin-jest: ^24.1.0 + eslint-plugin-jsx-a11y: ^6.3.1 + eslint-plugin-react: ^7.21.5 + eslint-plugin-react-hooks: ^4.2.0 + eslint-plugin-testing-library: ^3.9.2 + eslint-webpack-plugin: ^2.5.2 + file-loader: 6.1.1 + fs-extra: ^9.0.1 + fsevents: ^2.1.3 + html-webpack-plugin: 4.5.0 + identity-obj-proxy: 3.0.0 + jest: 26.6.0 + jest-circus: 26.6.0 + jest-resolve: 26.6.0 + jest-watch-typeahead: 0.6.1 + mini-css-extract-plugin: 0.11.3 + optimize-css-assets-webpack-plugin: 5.0.4 + pnp-webpack-plugin: 1.6.4 + postcss-flexbugs-fixes: 4.2.1 + postcss-loader: 3.0.0 + postcss-normalize: 8.0.1 + postcss-preset-env: 6.7.0 + postcss-safe-parser: 5.0.2 + prompts: 2.4.0 + react-app-polyfill: ^2.0.0 + react-dev-utils: ^11.0.3 + react-refresh: ^0.8.3 + resolve: 1.18.1 + resolve-url-loader: ^3.1.2 + sass-loader: ^10.0.5 + semver: 7.3.2 + style-loader: 1.3.0 + terser-webpack-plugin: 4.2.3 + ts-pnp: 1.2.0 + url-loader: 4.1.1 + webpack: 4.44.2 + webpack-dev-server: 3.11.1 + webpack-manifest-plugin: 2.2.0 + workbox-webpack-plugin: 5.1.4 + peerDependencies: + react: ">= 16" + typescript: ^3.2.1 || ^4 + dependenciesMeta: + fsevents: + optional: true + peerDependenciesMeta: + typescript: + optional: true + bin: + react-scripts: ./bin/react-scripts.js + checksum: a05a46ce3145b42ac8b57633d3b90b6689c24697c1449bccf219349996d718a3cd0796e4910f4ab6abb5b024982cafd62345e88c8e7b42a45efca3bef1a0eb87 + languageName: node + linkType: hard + +"react-select@npm:*, react-select@npm:^5.2.1": + version: 5.7.7 + resolution: "react-select@npm:5.7.7" + dependencies: + "@babel/runtime": ^7.12.0 + "@emotion/cache": ^11.4.0 + "@emotion/react": ^11.8.1 + "@floating-ui/dom": ^1.0.1 + "@types/react-transition-group": ^4.4.0 + memoize-one: ^6.0.0 + prop-types: ^15.6.0 + react-transition-group: ^4.3.0 + use-isomorphic-layout-effect: ^1.1.2 + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + checksum: 6fd0c211d377addba6e6762a614ae674936df39a3f46ec19fd06e7acae8d6cadeb93d4723b10e25eff1ff8235077bae9459f293936334d82b28fe5071081c057 + languageName: node + linkType: hard + +"react-side-effect@npm:^2.1.0": + version: 2.1.2 + resolution: "react-side-effect@npm:2.1.2" + peerDependencies: + react: ^16.3.0 || ^17.0.0 || ^18.0.0 + checksum: c5eb1f42b464fb093bca59aaae0f1b2060373a2aaff95275b8781493628cdbbb6acdd6014e7883782c65c361f35a30f28cc515d68a1263ddb39cbbc47110be53 + languageName: node + linkType: hard + +"react-textarea-autosize@npm:^8.3.3": + version: 8.5.3 + resolution: "react-textarea-autosize@npm:8.5.3" + dependencies: + "@babel/runtime": ^7.20.13 + use-composed-ref: ^1.3.0 + use-latest: ^1.2.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + checksum: b317c3763f37a89621bbafd0e6e2d068e7876790a5ae77f497adfd6ba9334ceea138c8a0b7d907bae0f79c765cb24e8b2ca2b8033b4144c0bce28571a3658921 + languageName: node + linkType: hard + +"react-transition-group@npm:^4.3.0, react-transition-group@npm:^4.4.5": + version: 4.4.5 + resolution: "react-transition-group@npm:4.4.5" + dependencies: + "@babel/runtime": ^7.5.5 + dom-helpers: ^5.0.1 + loose-envify: ^1.4.0 + prop-types: ^15.6.2 + peerDependencies: + react: ">=16.6.0" + react-dom: ">=16.6.0" + checksum: 75602840106aa9c6545149d6d7ae1502fb7b7abadcce70a6954c4b64a438ff1cd16fc77a0a1e5197cdd72da398f39eb929ea06f9005c45b132ed34e056ebdeb1 + languageName: node + linkType: hard + +"react@npm:^18.1.0": + version: 18.2.0 + resolution: "react@npm:18.2.0" + dependencies: + loose-envify: ^1.1.0 + checksum: 88e38092da8839b830cda6feef2e8505dec8ace60579e46aa5490fc3dc9bba0bd50336507dc166f43e3afc1c42939c09fe33b25fae889d6f402721dcd78fca1b + languageName: node + linkType: hard + +"read-config-file@npm:6.2.0": + version: 6.2.0 + resolution: "read-config-file@npm:6.2.0" + dependencies: + dotenv: ^9.0.2 + dotenv-expand: ^5.1.0 + js-yaml: ^4.1.0 + json5: ^2.2.0 + lazy-val: ^1.0.4 + checksum: 51e30db82244b8ceea19143207a52c5210fa17f5282ec43e9485cf7da87ac4ee3a0fb961cccc5c7af319b06d004baa0154349e09ca8ca7235ae7e5ac7c14c3f3 + languageName: node + linkType: hard + +"read-pkg-up@npm:^7.0.1": + version: 7.0.1 + resolution: "read-pkg-up@npm:7.0.1" + dependencies: + find-up: ^4.1.0 + read-pkg: ^5.2.0 + type-fest: ^0.8.1 + checksum: e4e93ce70e5905b490ca8f883eb9e48b5d3cebc6cd4527c25a0d8f3ae2903bd4121c5ab9c5a3e217ada0141098eeb661313c86fa008524b089b8ed0b7f165e44 + languageName: node + linkType: hard + +"read-pkg@npm:^5.2.0": + version: 5.2.0 + resolution: "read-pkg@npm:5.2.0" + dependencies: + "@types/normalize-package-data": ^2.4.0 + normalize-package-data: ^2.5.0 + parse-json: ^5.0.0 + type-fest: ^0.6.0 + checksum: eb696e60528b29aebe10e499ba93f44991908c57d70f2d26f369e46b8b9afc208ef11b4ba64f67630f31df8b6872129e0a8933c8c53b7b4daf0eace536901222 + languageName: node + linkType: hard + +"readable-stream@npm:1 || 2, readable-stream@npm:^2.0.0, readable-stream@npm:^2.0.1, readable-stream@npm:^2.0.2, readable-stream@npm:^2.1.5, readable-stream@npm:^2.2.2, readable-stream@npm:^2.3.3, readable-stream@npm:^2.3.6, readable-stream@npm:~2.3.6": + version: 2.3.8 + resolution: "readable-stream@npm:2.3.8" + dependencies: + core-util-is: ~1.0.0 + inherits: ~2.0.3 + isarray: ~1.0.0 + process-nextick-args: ~2.0.0 + safe-buffer: ~5.1.1 + string_decoder: ~1.1.1 + util-deprecate: ~1.0.1 + checksum: 65645467038704f0c8aaf026a72fbb588a9e2ef7a75cd57a01702ee9db1c4a1e4b03aaad36861a6a0926546a74d174149c8c207527963e0c2d3eee2f37678a42 + languageName: node + linkType: hard + +"readable-stream@npm:3, readable-stream@npm:^3.0.6, readable-stream@npm:^3.6.0": + version: 3.6.2 + resolution: "readable-stream@npm:3.6.2" + dependencies: + inherits: ^2.0.3 + string_decoder: ^1.1.1 + util-deprecate: ^1.0.1 + checksum: bdcbe6c22e846b6af075e32cf8f4751c2576238c5043169a1c221c92ee2878458a816a4ea33f4c67623c0b6827c8a400409bfb3cf0bf3381392d0b1dfb52ac8d + languageName: node + linkType: hard + +"readdirp@npm:^2.2.1": + version: 2.2.1 + resolution: "readdirp@npm:2.2.1" + dependencies: + graceful-fs: ^4.1.11 + micromatch: ^3.1.10 + readable-stream: ^2.0.2 + checksum: 3879b20f1a871e0e004a14fbf1776e65ee0b746a62f5a416010808b37c272ac49b023c47042c7b1e281cba75a449696635bc64c397ed221ea81d853a8f2ed79a + languageName: node + linkType: hard + +"readdirp@npm:^3.6.0, readdirp@npm:~3.6.0": + version: 3.6.0 + resolution: "readdirp@npm:3.6.0" + dependencies: + picomatch: ^2.2.1 + checksum: 1ced032e6e45670b6d7352d71d21ce7edf7b9b928494dcaba6f11fba63180d9da6cd7061ebc34175ffda6ff529f481818c962952004d273178acd70f7059b320 + languageName: node + linkType: hard + +"recursive-readdir@npm:2.2.2": + version: 2.2.2 + resolution: "recursive-readdir@npm:2.2.2" + dependencies: + minimatch: 3.0.4 + checksum: a6b22994d76458443d4a27f5fd7147ac63ad31bba972666a291d511d4d819ee40ff71ba7524c14f6a565b8cfaf7f48b318f971804b913cf538d58f04e25d1fee + languageName: node + linkType: hard + +"redent@npm:^3.0.0": + version: 3.0.0 + resolution: "redent@npm:3.0.0" + dependencies: + indent-string: ^4.0.0 + strip-indent: ^3.0.0 + checksum: fa1ef20404a2d399235e83cc80bd55a956642e37dd197b4b612ba7327bf87fa32745aeb4a1634b2bab25467164ab4ed9c15be2c307923dd08b0fe7c52431ae6b + languageName: node + linkType: hard + +"reflect.getprototypeof@npm:^1.0.4": + version: 1.0.4 + resolution: "reflect.getprototypeof@npm:1.0.4" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + get-intrinsic: ^1.2.1 + globalthis: ^1.0.3 + which-builtin-type: ^1.1.3 + checksum: 16e2361988dbdd23274b53fb2b1b9cefeab876c3941a2543b4cadac6f989e3db3957b07a44aac46cfceb3e06e2871785ec2aac992d824f76292f3b5ee87f66f2 + languageName: node + linkType: hard + +"regenerate-unicode-properties@npm:^10.1.0": + version: 10.1.1 + resolution: "regenerate-unicode-properties@npm:10.1.1" + dependencies: + regenerate: ^1.4.2 + checksum: b80958ef40f125275824c2c47d5081dfaefebd80bff26c76761e9236767c748a4a95a69c053fe29d2df881177f2ca85df4a71fe70a82360388b31159ef19adcf + languageName: node + linkType: hard + +"regenerate@npm:^1.4.2": + version: 1.4.2 + resolution: "regenerate@npm:1.4.2" + checksum: 3317a09b2f802da8db09aa276e469b57a6c0dd818347e05b8862959c6193408242f150db5de83c12c3fa99091ad95fb42a6db2c3329bfaa12a0ea4cbbeb30cb0 + languageName: node + linkType: hard + +"regenerator-runtime@npm:^0.11.0": + version: 0.11.1 + resolution: "regenerator-runtime@npm:0.11.1" + checksum: 3c97bd2c7b2b3247e6f8e2147a002eb78c995323732dad5dc70fac8d8d0b758d0295e7015b90d3d444446ae77cbd24b9f9123ec3a77018e81d8999818301b4f4 + languageName: node + linkType: hard + +"regenerator-runtime@npm:^0.13.7": + version: 0.13.11 + resolution: "regenerator-runtime@npm:0.13.11" + checksum: 27481628d22a1c4e3ff551096a683b424242a216fee44685467307f14d58020af1e19660bf2e26064de946bad7eff28950eae9f8209d55723e2d9351e632bbb4 + languageName: node + linkType: hard + +"regenerator-runtime@npm:^0.14.0": + version: 0.14.0 + resolution: "regenerator-runtime@npm:0.14.0" + checksum: 1c977ad82a82a4412e4f639d65d22be376d3ebdd30da2c003eeafdaaacd03fc00c2320f18120007ee700900979284fc78a9f00da7fb593f6e6eeebc673fba9a3 + languageName: node + linkType: hard + +"regenerator-transform@npm:^0.15.2": + version: 0.15.2 + resolution: "regenerator-transform@npm:0.15.2" + dependencies: + "@babel/runtime": ^7.8.4 + checksum: 20b6f9377d65954980fe044cfdd160de98df415b4bff38fbade67b3337efaf078308c4fed943067cd759827cc8cfeca9cb28ccda1f08333b85d6a2acbd022c27 + languageName: node + linkType: hard + +"regex-not@npm:^1.0.0, regex-not@npm:^1.0.2": + version: 1.0.2 + resolution: "regex-not@npm:1.0.2" + dependencies: + extend-shallow: ^3.0.2 + safe-regex: ^1.1.0 + checksum: 3081403de79559387a35ef9d033740e41818a559512668cef3d12da4e8a29ef34ee13c8ed1256b07e27ae392790172e8a15c8a06b72962fd4550476cde3d8f77 + languageName: node + linkType: hard + +"regex-parser@npm:^2.2.11": + version: 2.2.11 + resolution: "regex-parser@npm:2.2.11" + checksum: 78200331ec0cc372302d287a4946c38681eb5fe435453fca572cb53cac0ba579e5eb3b9e25eac24c0c80a555fb3ea7a637814a35da1e9bc88e8819110ae5de24 + languageName: node + linkType: hard + +"regexp.prototype.flags@npm:^1.2.0, regexp.prototype.flags@npm:^1.5.0, regexp.prototype.flags@npm:^1.5.1": + version: 1.5.1 + resolution: "regexp.prototype.flags@npm:1.5.1" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + set-function-name: ^2.0.0 + checksum: 869edff00288442f8d7fa4c9327f91d85f3b3acf8cbbef9ea7a220345cf23e9241b6def9263d2c1ebcf3a316b0aa52ad26a43a84aa02baca3381717b3e307f47 + languageName: node + linkType: hard + +"regexpp@npm:^3.1.0": + version: 3.2.0 + resolution: "regexpp@npm:3.2.0" + checksum: a78dc5c7158ad9ddcfe01aa9144f46e192ddbfa7b263895a70a5c6c73edd9ce85faf7c0430e59ac38839e1734e275b9c3de5c57ee3ab6edc0e0b1bdebefccef8 + languageName: node + linkType: hard + +"regexpu-core@npm:^5.3.1": + version: 5.3.2 + resolution: "regexpu-core@npm:5.3.2" + dependencies: + "@babel/regjsgen": ^0.8.0 + regenerate: ^1.4.2 + regenerate-unicode-properties: ^10.1.0 + regjsparser: ^0.9.1 + unicode-match-property-ecmascript: ^2.0.0 + unicode-match-property-value-ecmascript: ^2.1.0 + checksum: 95bb97088419f5396e07769b7de96f995f58137ad75fac5811fb5fe53737766dfff35d66a0ee66babb1eb55386ef981feaef392f9df6d671f3c124812ba24da2 + languageName: node + linkType: hard + +"registry-auth-token@npm:^4.0.0": + version: 4.2.2 + resolution: "registry-auth-token@npm:4.2.2" + dependencies: + rc: 1.2.8 + checksum: c5030198546ecfdcbcb0722cbc3e260c4f5f174d8d07bdfedd4620e79bfdf17a2db735aa230d600bd388fce6edd26c0a9ed2eb7e9b4641ec15213a28a806688b + languageName: node + linkType: hard + +"registry-url@npm:^5.0.0": + version: 5.1.0 + resolution: "registry-url@npm:5.1.0" + dependencies: + rc: ^1.2.8 + checksum: bcea86c84a0dbb66467b53187fadebfea79017cddfb4a45cf27530d7275e49082fe9f44301976eb0164c438e395684bcf3dae4819b36ff9d1640d8cc60c73df9 + languageName: node + linkType: hard + +"regjsparser@npm:^0.9.1": + version: 0.9.1 + resolution: "regjsparser@npm:0.9.1" + dependencies: + jsesc: ~0.5.0 + bin: + regjsparser: bin/parser + checksum: 5e1b76afe8f1d03c3beaf9e0d935dd467589c3625f6d65fb8ffa14f224d783a0fed4bf49c2c1b8211043ef92b6117313419edf055a098ed8342e340586741afc + languageName: node + linkType: hard + +"relateurl@npm:^0.2.7": + version: 0.2.7 + resolution: "relateurl@npm:0.2.7" + checksum: 5891e792eae1dfc3da91c6fda76d6c3de0333a60aa5ad848982ebb6dccaa06e86385fb1235a1582c680a3d445d31be01c6bfc0804ebbcab5aaf53fa856fde6b6 + languageName: node + linkType: hard + +"remove-trailing-separator@npm:^1.0.1": + version: 1.1.0 + resolution: "remove-trailing-separator@npm:1.1.0" + checksum: d3c20b5a2d987db13e1cca9385d56ecfa1641bae143b620835ac02a6b70ab88f68f117a0021838db826c57b31373d609d52e4f31aca75fc490c862732d595419 + languageName: node + linkType: hard + +"renderkid@npm:^2.0.4": + version: 2.0.7 + resolution: "renderkid@npm:2.0.7" + dependencies: + css-select: ^4.1.3 + dom-converter: ^0.2.0 + htmlparser2: ^6.1.0 + lodash: ^4.17.21 + strip-ansi: ^3.0.1 + checksum: d3d7562531fb8104154d4aa6aa977707783616318014088378a6c5bbc36318ada9289543d380ede707e531b7f5b96229e87d1b8944f675e5ec3686e62692c7c7 + languageName: node + linkType: hard + +"repeat-element@npm:^1.1.2": + version: 1.1.4 + resolution: "repeat-element@npm:1.1.4" + checksum: 1edd0301b7edad71808baad226f0890ba709443f03a698224c9ee4f2494c317892dc5211b2ba8cbea7194a9ddbcac01e283bd66de0467ab24ee1fc1a3711d8a9 + languageName: node + linkType: hard + +"repeat-string@npm:^1.6.1": + version: 1.6.1 + resolution: "repeat-string@npm:1.6.1" + checksum: 1b809fc6db97decdc68f5b12c4d1a671c8e3f65ec4a40c238bc5200e44e85bcc52a54f78268ab9c29fcf5fe4f1343e805420056d1f30fa9a9ee4c2d93e3cc6c0 + languageName: node + linkType: hard + +"require-directory@npm:^2.1.1": + version: 2.1.1 + resolution: "require-directory@npm:2.1.1" + checksum: fb47e70bf0001fdeabdc0429d431863e9475e7e43ea5f94ad86503d918423c1543361cc5166d713eaa7029dd7a3d34775af04764bebff99ef413111a5af18c80 + languageName: node + linkType: hard + +"require-from-string@npm:^2.0.2": + version: 2.0.2 + resolution: "require-from-string@npm:2.0.2" + checksum: a03ef6895445f33a4015300c426699bc66b2b044ba7b670aa238610381b56d3f07c686251740d575e22f4c87531ba662d06937508f0f3c0f1ddc04db3130560b + languageName: node + linkType: hard + +"require-main-filename@npm:^2.0.0": + version: 2.0.0 + resolution: "require-main-filename@npm:2.0.0" + checksum: e9e294695fea08b076457e9ddff854e81bffbe248ed34c1eec348b7abbd22a0d02e8d75506559e2265e96978f3c4720bd77a6dad84755de8162b357eb6c778c7 + languageName: node + linkType: hard + +"requires-port@npm:^1.0.0": + version: 1.0.0 + resolution: "requires-port@npm:1.0.0" + checksum: eee0e303adffb69be55d1a214e415cf42b7441ae858c76dfc5353148644f6fd6e698926fc4643f510d5c126d12a705e7c8ed7e38061113bdf37547ab356797ff + languageName: node + linkType: hard + +"resolve-cwd@npm:^2.0.0": + version: 2.0.0 + resolution: "resolve-cwd@npm:2.0.0" + dependencies: + resolve-from: ^3.0.0 + checksum: e7c16880c460656e77f102d537a6dc82b3657d9173697cd6ea82ffce37df96f6c1fc79d0bb35fd73fff8871ac13f21b4396958b5f0a13e5b99c97d69f5e319fa + languageName: node + linkType: hard + +"resolve-cwd@npm:^3.0.0": + version: 3.0.0 + resolution: "resolve-cwd@npm:3.0.0" + dependencies: + resolve-from: ^5.0.0 + checksum: 546e0816012d65778e580ad62b29e975a642989108d9a3c5beabfb2304192fa3c9f9146fbdfe213563c6ff51975ae41bac1d3c6e047dd9572c94863a057b4d81 + languageName: node + linkType: hard + +"resolve-from@npm:^3.0.0": + version: 3.0.0 + resolution: "resolve-from@npm:3.0.0" + checksum: fff9819254d2d62b57f74e5c2ca9c0bdd425ca47287c4d801bc15f947533148d858229ded7793b0f59e61e49e782fffd6722048add12996e1bd4333c29669062 + languageName: node + linkType: hard + +"resolve-from@npm:^4.0.0": + version: 4.0.0 + resolution: "resolve-from@npm:4.0.0" + checksum: f4ba0b8494846a5066328ad33ef8ac173801a51739eb4d63408c847da9a2e1c1de1e6cbbf72699211f3d13f8fc1325648b169bd15eb7da35688e30a5fb0e4a7f + languageName: node + linkType: hard + +"resolve-from@npm:^5.0.0": + version: 5.0.0 + resolution: "resolve-from@npm:5.0.0" + checksum: 4ceeb9113e1b1372d0cd969f3468fa042daa1dd9527b1b6bb88acb6ab55d8b9cd65dbf18819f9f9ddf0db804990901dcdaade80a215e7b2c23daae38e64f5bdf + languageName: node + linkType: hard + +"resolve-url-loader@npm:^3.1.2": + version: 3.1.5 + resolution: "resolve-url-loader@npm:3.1.5" + dependencies: + adjust-sourcemap-loader: 3.0.0 + camelcase: 5.3.1 + compose-function: 3.0.3 + convert-source-map: 1.7.0 + es6-iterator: 2.0.3 + loader-utils: ^1.2.3 + postcss: 7.0.36 + rework: 1.0.1 + rework-visit: 1.0.0 + source-map: 0.6.1 + checksum: eb52911eff20723f07409cc12138d254fa0dd4a4f3b1ba11ee1b29912afb03f1272aaddb523658be1e3a946e0d1bf6f603d0e107753ab83d48ad2116cf04b7f6 + languageName: node + linkType: hard + +"resolve-url-loader@npm:^4.0.0": + version: 4.0.0 + resolution: "resolve-url-loader@npm:4.0.0" + dependencies: + adjust-sourcemap-loader: ^4.0.0 + convert-source-map: ^1.7.0 + loader-utils: ^2.0.0 + postcss: ^7.0.35 + source-map: 0.6.1 + peerDependencies: + rework: 1.0.1 + rework-visit: 1.0.0 + peerDependenciesMeta: + rework: + optional: true + rework-visit: + optional: true + checksum: 8e5bcf97867a5e128b6b86988d445b7fbd1214f7c5c0214332f835e8607438e153d9b3899799a03ddd03540254bb591e572feb330981a4478be934f6f045c925 + languageName: node + linkType: hard + +"resolve-url@npm:^0.2.1": + version: 0.2.1 + resolution: "resolve-url@npm:0.2.1" + checksum: 7b7035b9ed6e7bc7d289e90aef1eab5a43834539695dac6416ca6e91f1a94132ae4796bbd173cdacfdc2ade90b5f38a3fb6186bebc1b221cd157777a23b9ad14 + languageName: node + linkType: hard + +"resolve@npm:1.18.1": + version: 1.18.1 + resolution: "resolve@npm:1.18.1" + dependencies: + is-core-module: ^2.0.0 + path-parse: ^1.0.6 + checksum: bab3686fa87576ac7e7f68481e25494f99b8413f3bc5048c5284eabe021f98917a50c625f8a1920a87ffc347b076c12a4a685d46d5fc98f337cf2dd3792014f4 + languageName: node + linkType: hard + +"resolve@npm:^1.10.0, resolve@npm:^1.12.0, resolve@npm:^1.14.2, resolve@npm:^1.17.0, resolve@npm:^1.18.1, resolve@npm:^1.19.0, resolve@npm:^1.22.4, resolve@npm:^1.3.2": + version: 1.22.8 + resolution: "resolve@npm:1.22.8" + dependencies: + is-core-module: ^2.13.0 + path-parse: ^1.0.7 + supports-preserve-symlinks-flag: ^1.0.0 + bin: + resolve: bin/resolve + checksum: f8a26958aa572c9b064562750b52131a37c29d072478ea32e129063e2da7f83e31f7f11e7087a18225a8561cfe8d2f0df9dbea7c9d331a897571c0a2527dbb4c + languageName: node + linkType: hard + +"resolve@npm:^2.0.0-next.4": + version: 2.0.0-next.5 + resolution: "resolve@npm:2.0.0-next.5" + dependencies: + is-core-module: ^2.13.0 + path-parse: ^1.0.7 + supports-preserve-symlinks-flag: ^1.0.0 + bin: + resolve: bin/resolve + checksum: a73ac69a1c4bd34c56b213d91f5b17ce390688fdb4a1a96ed3025cc7e08e7bfb90b3a06fcce461780cb0b589c958afcb0080ab802c71c01a7ecc8c64feafc89f + languageName: node + linkType: hard + +"resolve@patch:resolve@1.18.1#~builtin": + version: 1.18.1 + resolution: "resolve@patch:resolve@npm%3A1.18.1#~builtin::version=1.18.1&hash=c3c19d" + dependencies: + is-core-module: ^2.0.0 + path-parse: ^1.0.6 + checksum: 7439c8f3d8fa00c9dc800ef3c8ed0bd8e8772823e6e4948b1a77487759e0fb905381808caae96398d135619af90654d8e74cac778e5b8c9d7138f2dd52bb2bba + languageName: node + linkType: hard + +"resolve@patch:resolve@^1.10.0#~builtin, resolve@patch:resolve@^1.12.0#~builtin, resolve@patch:resolve@^1.14.2#~builtin, resolve@patch:resolve@^1.17.0#~builtin, resolve@patch:resolve@^1.18.1#~builtin, resolve@patch:resolve@^1.19.0#~builtin, resolve@patch:resolve@^1.22.4#~builtin, resolve@patch:resolve@^1.3.2#~builtin": + version: 1.22.8 + resolution: "resolve@patch:resolve@npm%3A1.22.8#~builtin::version=1.22.8&hash=c3c19d" + dependencies: + is-core-module: ^2.13.0 + path-parse: ^1.0.7 + supports-preserve-symlinks-flag: ^1.0.0 + bin: + resolve: bin/resolve + checksum: 5479b7d431cacd5185f8db64bfcb7286ae5e31eb299f4c4f404ad8aa6098b77599563ac4257cb2c37a42f59dfc06a1bec2bcf283bb448f319e37f0feb9a09847 + languageName: node + linkType: hard + +"resolve@patch:resolve@^2.0.0-next.4#~builtin": + version: 2.0.0-next.5 + resolution: "resolve@patch:resolve@npm%3A2.0.0-next.5#~builtin::version=2.0.0-next.5&hash=c3c19d" + dependencies: + is-core-module: ^2.13.0 + path-parse: ^1.0.7 + supports-preserve-symlinks-flag: ^1.0.0 + bin: + resolve: bin/resolve + checksum: 064d09c1808d0c51b3d90b5d27e198e6d0c5dad0eb57065fd40803d6a20553e5398b07f76739d69cbabc12547058bec6b32106ea66622375fb0d7e8fca6a846c + languageName: node + linkType: hard + +"responselike@npm:^1.0.2": + version: 1.0.2 + resolution: "responselike@npm:1.0.2" + dependencies: + lowercase-keys: ^1.0.0 + checksum: 2e9e70f1dcca3da621a80ce71f2f9a9cad12c047145c6ece20df22f0743f051cf7c73505e109814915f23f9e34fb0d358e22827723ee3d56b623533cab8eafcd + languageName: node + linkType: hard + +"ret@npm:~0.1.10": + version: 0.1.15 + resolution: "ret@npm:0.1.15" + checksum: d76a9159eb8c946586567bd934358dfc08a36367b3257f7a3d7255fdd7b56597235af23c6afa0d7f0254159e8051f93c918809962ebd6df24ca2a83dbe4d4151 + languageName: node + linkType: hard + +"retry@npm:^0.12.0": + version: 0.12.0 + resolution: "retry@npm:0.12.0" + checksum: 623bd7d2e5119467ba66202d733ec3c2e2e26568074923bc0585b6b99db14f357e79bdedb63cab56cec47491c4a0da7e6021a7465ca6dc4f481d3898fdd3158c + languageName: node + linkType: hard + +"reusify@npm:^1.0.4": + version: 1.0.4 + resolution: "reusify@npm:1.0.4" + checksum: c3076ebcc22a6bc252cb0b9c77561795256c22b757f40c0d8110b1300723f15ec0fc8685e8d4ea6d7666f36c79ccc793b1939c748bf36f18f542744a4e379fcc + languageName: node + linkType: hard + +"rework-visit@npm:1.0.0": + version: 1.0.0 + resolution: "rework-visit@npm:1.0.0" + checksum: 969ca1f4e5bf4a1755c464a9b498da51eb3f28a798cf73da2cf0a3a3ab7b21a2f05c9d3bfa5fb81c8aaf5487dd31679efa67b8d0f418277ef5deb2a230b17c81 + languageName: node + linkType: hard + +"rework@npm:1.0.1": + version: 1.0.1 + resolution: "rework@npm:1.0.1" + dependencies: + convert-source-map: ^0.3.3 + css: ^2.0.0 + checksum: 13e5054d81ac84eee488fd4bacd20d08f35683bd8e296b4358e7f0a41b2d30a959313b7794f388f336705ad18d36af6ee7080e1b6c1313ecf33bc51d1bd95971 + languageName: node + linkType: hard + +"rgb-regex@npm:^1.0.1": + version: 1.0.1 + resolution: "rgb-regex@npm:1.0.1" + checksum: b270ce8bc14782d2d21d3184c1e6c65b465476d8f03e72b93ef57c95710a452b2fe280e1d516c88873aec06efd7f71373e673f114b9d99f3a4f9a0393eb00126 + languageName: node + linkType: hard + +"rgba-regex@npm:^1.0.0": + version: 1.0.0 + resolution: "rgba-regex@npm:1.0.0" + checksum: 7f2cd271572700faea50753d82524cb2b98f17a5b9722965c7076f6cd674fe545f28145b7ef2cccabc9eca2475c793db16862cd5e7b3784a9f4b8d6496431057 + languageName: node + linkType: hard + +"rimraf@npm:^2.5.4, rimraf@npm:^2.6.3": + version: 2.7.1 + resolution: "rimraf@npm:2.7.1" + dependencies: + glob: ^7.1.3 + bin: + rimraf: ./bin.js + checksum: cdc7f6eacb17927f2a075117a823e1c5951792c6498ebcce81ca8203454a811d4cf8900314154d3259bb8f0b42ab17f67396a8694a54cae3283326e57ad250cd + languageName: node + linkType: hard + +"rimraf@npm:^3.0.0, rimraf@npm:^3.0.2": + version: 3.0.2 + resolution: "rimraf@npm:3.0.2" + dependencies: + glob: ^7.1.3 + bin: + rimraf: bin.js + checksum: 87f4164e396f0171b0a3386cc1877a817f572148ee13a7e113b238e48e8a9f2f31d009a92ec38a591ff1567d9662c6b67fd8818a2dbbaed74bc26a87a2a4a9a0 + languageName: node + linkType: hard + +"ripemd160@npm:^2.0.0, ripemd160@npm:^2.0.1": + version: 2.0.2 + resolution: "ripemd160@npm:2.0.2" + dependencies: + hash-base: ^3.0.0 + inherits: ^2.0.1 + checksum: 006accc40578ee2beae382757c4ce2908a826b27e2b079efdcd2959ee544ddf210b7b5d7d5e80467807604244e7388427330f5c6d4cd61e6edaddc5773ccc393 + languageName: node + linkType: hard + +"roarr@npm:^2.15.3": + version: 2.15.4 + resolution: "roarr@npm:2.15.4" + dependencies: + boolean: ^3.0.1 + detect-node: ^2.0.4 + globalthis: ^1.0.1 + json-stringify-safe: ^5.0.1 + semver-compare: ^1.0.0 + sprintf-js: ^1.1.2 + checksum: 682e28d5491e3ae99728a35ba188f4f0ccb6347dbd492f95dc9f4bfdfe8ee63d8203ad234766ee2db88c8d7a300714304976eb095ce5c9366fe586c03a21586c + languageName: node + linkType: hard + +"rollup-plugin-babel@npm:^4.3.3": + version: 4.4.0 + resolution: "rollup-plugin-babel@npm:4.4.0" + dependencies: + "@babel/helper-module-imports": ^7.0.0 + rollup-pluginutils: ^2.8.1 + peerDependencies: + "@babel/core": 7 || ^7.0.0-rc.2 + rollup: ">=0.60.0 <3" + checksum: 5b8ed7c0a4192d7c74689074c910c1670eb07dfc875b1f4af5694a94c46bcb168ba85e2c9753030131efd6261ece7c252b9695953d0ea96d944977c6e79930d3 + languageName: node + linkType: hard + +"rollup-plugin-terser@npm:^5.3.1": + version: 5.3.1 + resolution: "rollup-plugin-terser@npm:5.3.1" + dependencies: + "@babel/code-frame": ^7.5.5 + jest-worker: ^24.9.0 + rollup-pluginutils: ^2.8.2 + serialize-javascript: ^4.0.0 + terser: ^4.6.2 + peerDependencies: + rollup: ">=0.66.0 <3" + checksum: 50f9e8fa6737fa5e8aeca6a52b59ea3bc66faebe743bdfe9ce0484298cd1978082026721b182d79bcc88240429842dc58feae88d6c238b47cafc1684e0320a73 + languageName: node + linkType: hard + +"rollup-pluginutils@npm:^2.8.1, rollup-pluginutils@npm:^2.8.2": + version: 2.8.2 + resolution: "rollup-pluginutils@npm:2.8.2" + dependencies: + estree-walker: ^0.6.1 + checksum: 339fdf866d8f4ff6e408fa274c0525412f7edb01dc46b5ccda51f575b7e0d20ad72965773376fb5db95a77a7fcfcab97bf841ec08dbadf5d6b08af02b7a2cf5e + languageName: node + linkType: hard + +"rollup@npm:^1.31.1": + version: 1.32.1 + resolution: "rollup@npm:1.32.1" + dependencies: + "@types/estree": "*" + "@types/node": "*" + acorn: ^7.1.0 + bin: + rollup: dist/bin/rollup + checksum: 3a02731c20c71321fae647c9c9cab0febee0580c6af029fdcd5dd6f424b8c85119d92c8554c6837327fd323c2458e92d955bbebc90ca6bed87cc626695e7c31f + languageName: node + linkType: hard + +"rsvp@npm:^4.8.4": + version: 4.8.5 + resolution: "rsvp@npm:4.8.5" + checksum: 2d8ef30d8febdf05bdf856ccca38001ae3647e41835ca196bc1225333f79b94ae44def733121ca549ccc36209c9b689f6586905e2a043873262609744da8efc1 + languageName: node + linkType: hard + +"run-parallel@npm:^1.1.9": + version: 1.2.0 + resolution: "run-parallel@npm:1.2.0" + dependencies: + queue-microtask: ^1.2.2 + checksum: cb4f97ad25a75ebc11a8ef4e33bb962f8af8516bb2001082ceabd8902e15b98f4b84b4f8a9b222e5d57fc3bd1379c483886ed4619367a7680dad65316993021d + languageName: node + linkType: hard + +"run-queue@npm:^1.0.0, run-queue@npm:^1.0.3": + version: 1.0.3 + resolution: "run-queue@npm:1.0.3" + dependencies: + aproba: ^1.1.1 + checksum: c4541e18b5e056af60f398f2f1b3d89aae5c093d1524bf817c5ee68bcfa4851ad9976f457a9aea135b1d0d72ee9a91c386e3d136bcd95b699c367cd09c70be53 + languageName: node + linkType: hard + +"rxjs@npm:^6.6.3": + version: 6.6.7 + resolution: "rxjs@npm:6.6.7" + dependencies: + tslib: ^1.9.0 + checksum: bc334edef1bb8bbf56590b0b25734ba0deaf8825b703256a93714308ea36dff8a11d25533671adf8e104e5e8f256aa6fdfe39b2e248cdbd7a5f90c260acbbd1b + languageName: node + linkType: hard + +"rxjs@npm:^7.5.4": + version: 7.8.1 + resolution: "rxjs@npm:7.8.1" + dependencies: + tslib: ^2.1.0 + checksum: de4b53db1063e618ec2eca0f7965d9137cabe98cf6be9272efe6c86b47c17b987383df8574861bcced18ebd590764125a901d5506082be84a8b8e364bf05f119 + languageName: node + linkType: hard + +"safe-array-concat@npm:^1.0.0, safe-array-concat@npm:^1.0.1": + version: 1.0.1 + resolution: "safe-array-concat@npm:1.0.1" + dependencies: + call-bind: ^1.0.2 + get-intrinsic: ^1.2.1 + has-symbols: ^1.0.3 + isarray: ^2.0.5 + checksum: 001ecf1d8af398251cbfabaf30ed66e3855127fbceee178179524b24160b49d15442f94ed6c0db0b2e796da76bb05b73bf3cc241490ec9c2b741b41d33058581 + languageName: node + linkType: hard + +"safe-buffer@npm:5.1.2, safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1": + version: 5.1.2 + resolution: "safe-buffer@npm:5.1.2" + checksum: f2f1f7943ca44a594893a852894055cf619c1fbcb611237fc39e461ae751187e7baf4dc391a72125e0ac4fb2d8c5c0b3c71529622e6a58f46b960211e704903c + languageName: node + linkType: hard + +"safe-buffer@npm:5.2.1, safe-buffer@npm:>=5.1.0, safe-buffer@npm:^5.0.1, safe-buffer@npm:^5.1.0, safe-buffer@npm:^5.1.1, safe-buffer@npm:^5.1.2, safe-buffer@npm:^5.2.0, safe-buffer@npm:~5.2.0": + version: 5.2.1 + resolution: "safe-buffer@npm:5.2.1" + checksum: b99c4b41fdd67a6aaf280fcd05e9ffb0813654894223afb78a31f14a19ad220bba8aba1cb14eddce1fcfb037155fe6de4e861784eb434f7d11ed58d1e70dd491 + languageName: node + linkType: hard + +"safe-regex-test@npm:^1.0.0": + version: 1.0.0 + resolution: "safe-regex-test@npm:1.0.0" + dependencies: + call-bind: ^1.0.2 + get-intrinsic: ^1.1.3 + is-regex: ^1.1.4 + checksum: bc566d8beb8b43c01b94e67de3f070fd2781685e835959bbbaaec91cc53381145ca91f69bd837ce6ec244817afa0a5e974fc4e40a2957f0aca68ac3add1ddd34 + languageName: node + linkType: hard + +"safe-regex@npm:^1.1.0": + version: 1.1.0 + resolution: "safe-regex@npm:1.1.0" + dependencies: + ret: ~0.1.10 + checksum: 9a8bba57c87a841f7997b3b951e8e403b1128c1a4fd1182f40cc1a20e2d490593d7c2a21030fadfea320c8e859219019e136f678c6689ed5960b391b822f01d5 + languageName: node + linkType: hard + +"safer-buffer@npm:>= 2.1.2 < 3, safer-buffer@npm:>= 2.1.2 < 3.0.0, safer-buffer@npm:^2.1.0": + version: 2.1.2 + resolution: "safer-buffer@npm:2.1.2" + checksum: cab8f25ae6f1434abee8d80023d7e72b598cf1327164ddab31003c51215526801e40b66c5e65d658a0af1e9d6478cadcb4c745f4bd6751f97d8644786c0978b0 + languageName: node + linkType: hard + +"sane@npm:^4.0.3": + version: 4.1.0 + resolution: "sane@npm:4.1.0" + dependencies: + "@cnakazawa/watch": ^1.0.3 + anymatch: ^2.0.0 + capture-exit: ^2.0.0 + exec-sh: ^0.3.2 + execa: ^1.0.0 + fb-watchman: ^2.0.0 + micromatch: ^3.1.4 + minimist: ^1.1.1 + walker: ~1.0.5 + bin: + sane: ./src/cli.js + checksum: 97716502d456c0d38670a902a4ea943d196dcdf998d1e40532d8f3e24e25d7eddfd4c3579025a1eee8eac09a48dfd05fba61a2156c56704e7feaa450eb249f7c + languageName: node + linkType: hard + +"sanitize-filename@npm:^1.6.3": + version: 1.6.3 + resolution: "sanitize-filename@npm:1.6.3" + dependencies: + truncate-utf8-bytes: ^1.0.0 + checksum: aa733c012b7823cf65730603cf3b503c641cee6b239771d3164ca482f22d81a50e434a713938d994071db18e4202625669cc56bccc9d13d818b4c983b5f47fde + languageName: node + linkType: hard + +"sanitize.css@npm:^10.0.0": + version: 10.0.0 + resolution: "sanitize.css@npm:10.0.0" + checksum: 99932e53e864b83562a421f57383c9747ab03c51872437eb56170639cd6c634a945517e25d1b7005d10c8dc863f71c61c573e3452474d4ef25bcf5f7344e4ce3 + languageName: node + linkType: hard + +"sass-loader@npm:^10.0.5": + version: 10.4.1 + resolution: "sass-loader@npm:10.4.1" + dependencies: + klona: ^2.0.4 + loader-utils: ^2.0.0 + neo-async: ^2.6.2 + schema-utils: ^3.0.0 + semver: ^7.3.2 + peerDependencies: + fibers: ">= 3.1.0" + node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 + sass: ^1.3.0 + webpack: ^4.36.0 || ^5.0.0 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + checksum: df9a65a62247e95305299ccbdf212cffdcdb69490928aecdf4f3dcf539b5302ed7cbffa663f83c5fc3ce0864decf84257a9ce484f6df4cb4426feeb88445dcd0 + languageName: node + linkType: hard + +"sass@npm:^1.52.1": + version: 1.69.4 + resolution: "sass@npm:1.69.4" + dependencies: + chokidar: ">=3.0.0 <4.0.0" + immutable: ^4.0.0 + source-map-js: ">=0.6.2 <2.0.0" + bin: + sass: sass.js + checksum: ed5558445b59dfa711e094f804e4a360544dd916c069ee211e1c687446146721d91d4304f33fe5df3966a10de96eba43369beb2e14f0881c285424e5e44cf360 + languageName: node + linkType: hard + +"sax@npm:1.1.4": + version: 1.1.4 + resolution: "sax@npm:1.1.4" + checksum: 85531bd8c36b2dfe1745f29ae5e89f2c7fdbe3a45005e77e455555bd34b99a12442fbadc127f4002dae2851f54187c82cd61c054abd3eb266e5b756e071b98ce + languageName: node + linkType: hard + +"sax@npm:>=0.6.0, sax@npm:^1.2.4": + version: 1.3.0 + resolution: "sax@npm:1.3.0" + checksum: 238ab3a9ba8c8f8aaf1c5ea9120386391f6ee0af52f1a6a40bbb6df78241dd05d782f2359d614ac6aae08c4c4125208b456548a6cf68625aa4fe178486e63ecd + languageName: node + linkType: hard + +"sax@npm:~1.2.4": + version: 1.2.4 + resolution: "sax@npm:1.2.4" + checksum: d3df7d32b897a2c2f28e941f732c71ba90e27c24f62ee918bd4d9a8cfb3553f2f81e5493c7f0be94a11c1911b643a9108f231dd6f60df3fa9586b5d2e3e9e1fe + languageName: node + linkType: hard + +"saxes@npm:^5.0.1": + version: 5.0.1 + resolution: "saxes@npm:5.0.1" + dependencies: + xmlchars: ^2.2.0 + checksum: 5636b55cf15f7cf0baa73f2797bf992bdcf75d1b39d82c0aa4608555c774368f6ac321cb641fd5f3d3ceb87805122cd47540da6a7b5960fe0dbdb8f8c263f000 + languageName: node + linkType: hard + +"scheduler@npm:^0.23.0": + version: 0.23.0 + resolution: "scheduler@npm:0.23.0" + dependencies: + loose-envify: ^1.1.0 + checksum: d79192eeaa12abef860c195ea45d37cbf2bbf5f66e3c4dcd16f54a7da53b17788a70d109ee3d3dde1a0fd50e6a8fc171f4300356c5aee4fc0171de526bf35f8a + languageName: node + linkType: hard + +"schema-utils@npm:^1.0.0": + version: 1.0.0 + resolution: "schema-utils@npm:1.0.0" + dependencies: + ajv: ^6.1.0 + ajv-errors: ^1.0.0 + ajv-keywords: ^3.1.0 + checksum: e8273b4f6eff9ddf4a4f4c11daf7b96b900237bf8859c86fa1e9b4fab416b72d7ea92468f8db89c18a3499a1070206e1c8a750c83b42d5325fc659cbb55eee88 + languageName: node + linkType: hard + +"schema-utils@npm:^2.6.5, schema-utils@npm:^2.7.0, schema-utils@npm:^2.7.1": + version: 2.7.1 + resolution: "schema-utils@npm:2.7.1" + dependencies: + "@types/json-schema": ^7.0.5 + ajv: ^6.12.4 + ajv-keywords: ^3.5.2 + checksum: 32c62fc9e28edd101e1bd83453a4216eb9bd875cc4d3775e4452b541908fa8f61a7bbac8ffde57484f01d7096279d3ba0337078e85a918ecbeb72872fb09fb2b + languageName: node + linkType: hard + +"schema-utils@npm:^3.0.0, schema-utils@npm:^3.1.1": + version: 3.3.0 + resolution: "schema-utils@npm:3.3.0" + dependencies: + "@types/json-schema": ^7.0.8 + ajv: ^6.12.5 + ajv-keywords: ^3.5.2 + checksum: ea56971926fac2487f0757da939a871388891bc87c6a82220d125d587b388f1704788f3706e7f63a7b70e49fc2db974c41343528caea60444afd5ce0fe4b85c0 + languageName: node + linkType: hard + +"schema-utils@npm:^4.0.0": + version: 4.2.0 + resolution: "schema-utils@npm:4.2.0" + dependencies: + "@types/json-schema": ^7.0.9 + ajv: ^8.9.0 + ajv-formats: ^2.1.1 + ajv-keywords: ^5.1.0 + checksum: 26a0463d47683258106e6652e9aeb0823bf0b85843039e068b57da1892f7ae6b6b1094d48e9ed5ba5cbe9f7166469d880858b9d91abe8bd249421eb813850cde + languageName: node + linkType: hard + +"select-hose@npm:^2.0.0": + version: 2.0.0 + resolution: "select-hose@npm:2.0.0" + checksum: d7e5fcc695a4804209d232a1b18624a5134be334d4e1114b0721f7a5e72bd73da483dcf41528c1af4f4f4892ad7cfd6a1e55c8ffb83f9c9fe723b738db609dbb + languageName: node + linkType: hard + +"selfsigned@npm:^1.10.8": + version: 1.10.14 + resolution: "selfsigned@npm:1.10.14" + dependencies: + node-forge: ^0.10.0 + checksum: 616d131b18516ba2876398f0230987511d50a13816e0709b9f0d20246a524a2e83dfb27ea46ce2bfe331519583a156afa67bc3ece8bf0f9804aec06e2e8c7a21 + languageName: node + linkType: hard + +"semver-compare@npm:^1.0.0": + version: 1.0.0 + resolution: "semver-compare@npm:1.0.0" + checksum: dd1d7e2909744cf2cf71864ac718efc990297f9de2913b68e41a214319e70174b1d1793ac16e31183b128c2b9812541300cb324db8168e6cf6b570703b171c68 + languageName: node + linkType: hard + +"semver-diff@npm:^3.1.1": + version: 3.1.1 + resolution: "semver-diff@npm:3.1.1" + dependencies: + semver: ^6.3.0 + checksum: 8bbe5a5d7add2d5e51b72314a9215cd294d71f41cdc2bf6bd59ee76411f3610b576172896f1d191d0d7294cb9f2f847438d2ee158adacc0c224dca79052812fe + languageName: node + linkType: hard + +"semver@npm:2 || 3 || 4 || 5, semver@npm:^5.4.1, semver@npm:^5.5.0, semver@npm:^5.6.0": + version: 5.7.2 + resolution: "semver@npm:5.7.2" + bin: + semver: bin/semver + checksum: fb4ab5e0dd1c22ce0c937ea390b4a822147a9c53dbd2a9a0132f12fe382902beef4fbf12cf51bb955248d8d15874ce8cd89532569756384f994309825f10b686 + languageName: node + linkType: hard + +"semver@npm:7.3.2": + version: 7.3.2 + resolution: "semver@npm:7.3.2" + bin: + semver: bin/semver.js + checksum: 692f4900dadb43919614b0df9af23fe05743051cda0d1735b5e4d76f93c9e43a266fae73cfc928f5d1489f022c5c0e65dfd2900fcf5b1839c4e9a239729afa7b + languageName: node + linkType: hard + +"semver@npm:^6.0.0, semver@npm:^6.2.0, semver@npm:^6.3.0, semver@npm:^6.3.1": + version: 6.3.1 + resolution: "semver@npm:6.3.1" + bin: + semver: bin/semver.js + checksum: ae47d06de28836adb9d3e25f22a92943477371292d9b665fb023fae278d345d508ca1958232af086d85e0155aee22e313e100971898bbb8d5d89b8b1d4054ca2 + languageName: node + linkType: hard + +"semver@npm:^7.2.1, semver@npm:^7.3.2, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.5.3": + version: 7.5.4 + resolution: "semver@npm:7.5.4" + dependencies: + lru-cache: ^6.0.0 + bin: + semver: bin/semver.js + checksum: 12d8ad952fa353b0995bf180cdac205a4068b759a140e5d3c608317098b3575ac2f1e09182206bf2eb26120e1c0ed8fb92c48c592f6099680de56bb071423ca3 + languageName: node + linkType: hard + +"send@npm:0.18.0": + version: 0.18.0 + resolution: "send@npm:0.18.0" + dependencies: + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: ~1.0.2 + escape-html: ~1.0.3 + etag: ~1.8.1 + fresh: 0.5.2 + http-errors: 2.0.0 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: ~1.2.1 + statuses: 2.0.1 + checksum: 74fc07ebb58566b87b078ec63e5a3e41ecd987e4272ba67b7467e86c6ad51bc6b0b0154133b6d8b08a2ddda360464f71382f7ef864700f34844a76c8027817a8 + languageName: node + linkType: hard + +"serialize-error@npm:^7.0.1": + version: 7.0.1 + resolution: "serialize-error@npm:7.0.1" + dependencies: + type-fest: ^0.13.1 + checksum: e0aba4dca2fc9fe74ae1baf38dbd99190e1945445a241ba646290f2176cdb2032281a76443b02ccf0caf30da5657d510746506368889a593b9835a497fc0732e + languageName: node + linkType: hard + +"serialize-javascript@npm:^4.0.0": + version: 4.0.0 + resolution: "serialize-javascript@npm:4.0.0" + dependencies: + randombytes: ^2.1.0 + checksum: 3273b3394b951671fcf388726e9577021870dfbf85e742a1183fb2e91273e6101bdccea81ff230724f6659a7ee4cef924b0ff9baca32b79d9384ec37caf07302 + languageName: node + linkType: hard + +"serialize-javascript@npm:^5.0.1": + version: 5.0.1 + resolution: "serialize-javascript@npm:5.0.1" + dependencies: + randombytes: ^2.1.0 + checksum: bb45a427690c3d2711e28499de0fbf25036af1e23c63c6a9237ed0aa572fd0941fcdefe50a2dccf26d9df8c8b86ae38659e19d8ba7afd3fbc1f1c7539a2a48d2 + languageName: node + linkType: hard + +"serve-index@npm:^1.9.1": + version: 1.9.1 + resolution: "serve-index@npm:1.9.1" + dependencies: + accepts: ~1.3.4 + batch: 0.6.1 + debug: 2.6.9 + escape-html: ~1.0.3 + http-errors: ~1.6.2 + mime-types: ~2.1.17 + parseurl: ~1.3.2 + checksum: e2647ce13379485b98a53ba2ea3fbad4d44b57540d00663b02b976e426e6194d62ac465c0d862cb7057f65e0de8ab8a684aa095427a4b8612412eca0d300d22f + languageName: node + linkType: hard + +"serve-static@npm:1.15.0": + version: 1.15.0 + resolution: "serve-static@npm:1.15.0" + dependencies: + encodeurl: ~1.0.2 + escape-html: ~1.0.3 + parseurl: ~1.3.3 + send: 0.18.0 + checksum: af57fc13be40d90a12562e98c0b7855cf6e8bd4c107fe9a45c212bf023058d54a1871b1c89511c3958f70626fff47faeb795f5d83f8cf88514dbaeb2b724464d + languageName: node + linkType: hard + +"set-blocking@npm:^2.0.0": + version: 2.0.0 + resolution: "set-blocking@npm:2.0.0" + checksum: 6e65a05f7cf7ebdf8b7c75b101e18c0b7e3dff4940d480efed8aad3a36a4005140b660fa1d804cb8bce911cac290441dc728084a30504d3516ac2ff7ad607b02 + languageName: node + linkType: hard + +"set-function-length@npm:^1.1.1": + version: 1.1.1 + resolution: "set-function-length@npm:1.1.1" + dependencies: + define-data-property: ^1.1.1 + get-intrinsic: ^1.2.1 + gopd: ^1.0.1 + has-property-descriptors: ^1.0.0 + checksum: c131d7569cd7e110cafdfbfbb0557249b538477624dfac4fc18c376d879672fa52563b74029ca01f8f4583a8acb35bb1e873d573a24edb80d978a7ee607c6e06 + languageName: node + linkType: hard + +"set-function-name@npm:^2.0.0, set-function-name@npm:^2.0.1": + version: 2.0.1 + resolution: "set-function-name@npm:2.0.1" + dependencies: + define-data-property: ^1.0.1 + functions-have-names: ^1.2.3 + has-property-descriptors: ^1.0.0 + checksum: 4975d17d90c40168eee2c7c9c59d023429f0a1690a89d75656306481ece0c3c1fb1ebcc0150ea546d1913e35fbd037bace91372c69e543e51fc5d1f31a9fa126 + languageName: node + linkType: hard + +"set-value@npm:^2.0.0, set-value@npm:^2.0.1": + version: 2.0.1 + resolution: "set-value@npm:2.0.1" + dependencies: + extend-shallow: ^2.0.1 + is-extendable: ^0.1.1 + is-plain-object: ^2.0.3 + split-string: ^3.0.1 + checksum: 09a4bc72c94641aeae950eb60dc2755943b863780fcc32e441eda964b64df5e3f50603d5ebdd33394ede722528bd55ed43aae26e9df469b4d32e2292b427b601 + languageName: node + linkType: hard + +"setimmediate@npm:^1.0.4": + version: 1.0.5 + resolution: "setimmediate@npm:1.0.5" + checksum: c9a6f2c5b51a2dabdc0247db9c46460152ffc62ee139f3157440bd48e7c59425093f42719ac1d7931f054f153e2d26cf37dfeb8da17a794a58198a2705e527fd + languageName: node + linkType: hard + +"setprototypeof@npm:1.1.0": + version: 1.1.0 + resolution: "setprototypeof@npm:1.1.0" + checksum: 27cb44304d6c9e1a23bc6c706af4acaae1a7aa1054d4ec13c05f01a99fd4887109a83a8042b67ad90dbfcd100d43efc171ee036eb080667172079213242ca36e + languageName: node + linkType: hard + +"setprototypeof@npm:1.2.0": + version: 1.2.0 + resolution: "setprototypeof@npm:1.2.0" + checksum: be18cbbf70e7d8097c97f713a2e76edf84e87299b40d085c6bf8b65314e994cc15e2e317727342fa6996e38e1f52c59720b53fe621e2eb593a6847bf0356db89 + languageName: node + linkType: hard + +"sha.js@npm:^2.4.0, sha.js@npm:^2.4.8": + version: 2.4.11 + resolution: "sha.js@npm:2.4.11" + dependencies: + inherits: ^2.0.1 + safe-buffer: ^5.0.1 + bin: + sha.js: ./bin.js + checksum: ebd3f59d4b799000699097dadb831c8e3da3eb579144fd7eb7a19484cbcbb7aca3c68ba2bb362242eb09e33217de3b4ea56e4678184c334323eca24a58e3ad07 + languageName: node + linkType: hard + +"shallow-equal@npm:^1.1.0": + version: 1.2.1 + resolution: "shallow-equal@npm:1.2.1" + checksum: 4f1645cc516e7754c4438db687e1da439a5f29a7dba2ba90c5f88e5708aeb17bc4355ba45cad805b0e95dc898e37d8bf6d77d854919c7512f89939986cff8cd1 + languageName: node + linkType: hard + +"shebang-command@npm:^1.2.0": + version: 1.2.0 + resolution: "shebang-command@npm:1.2.0" + dependencies: + shebang-regex: ^1.0.0 + checksum: 9eed1750301e622961ba5d588af2212505e96770ec376a37ab678f965795e995ade7ed44910f5d3d3cb5e10165a1847f52d3348c64e146b8be922f7707958908 + languageName: node + linkType: hard + +"shebang-command@npm:^2.0.0": + version: 2.0.0 + resolution: "shebang-command@npm:2.0.0" + dependencies: + shebang-regex: ^3.0.0 + checksum: 6b52fe87271c12968f6a054e60f6bde5f0f3d2db483a1e5c3e12d657c488a15474121a1d55cd958f6df026a54374ec38a4a963988c213b7570e1d51575cea7fa + languageName: node + linkType: hard + +"shebang-regex@npm:^1.0.0": + version: 1.0.0 + resolution: "shebang-regex@npm:1.0.0" + checksum: 404c5a752cd40f94591dfd9346da40a735a05139dac890ffc229afba610854d8799aaa52f87f7e0c94c5007f2c6af55bdcaeb584b56691926c5eaf41dc8f1372 + languageName: node + linkType: hard + +"shebang-regex@npm:^3.0.0": + version: 3.0.0 + resolution: "shebang-regex@npm:3.0.0" + checksum: 1a2bcae50de99034fcd92ad4212d8e01eedf52c7ec7830eedcf886622804fe36884278f2be8be0ea5fde3fd1c23911643a4e0f726c8685b61871c8908af01222 + languageName: node + linkType: hard + +"shell-quote@npm:1.7.2": + version: 1.7.2 + resolution: "shell-quote@npm:1.7.2" + checksum: efad426fb25d8a54d06363f1f45774aa9e195f62f14fa696d542b44bfe418ab41206448b63af18d726c62e099e66d9a3f4f44858b9ea2ce4b794b41b802672d1 + languageName: node + linkType: hard + +"shellwords@npm:^0.1.1": + version: 0.1.1 + resolution: "shellwords@npm:0.1.1" + checksum: 8d73a5e9861f5e5f1068e2cfc39bc0002400fe58558ab5e5fa75630d2c3adf44ca1fac81957609c8320d5533e093802fcafc72904bf1a32b95de3c19a0b1c0d4 + languageName: node + linkType: hard + +"side-channel@npm:^1.0.4": + version: 1.0.4 + resolution: "side-channel@npm:1.0.4" + dependencies: + call-bind: ^1.0.0 + get-intrinsic: ^1.0.2 + object-inspect: ^1.9.0 + checksum: 351e41b947079c10bd0858364f32bb3a7379514c399edb64ab3dce683933483fc63fb5e4efe0a15a2e8a7e3c436b6a91736ddb8d8c6591b0460a24bb4a1ee245 + languageName: node + linkType: hard + +"signal-exit@npm:^3.0.0, signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3, signal-exit@npm:^3.0.7": + version: 3.0.7 + resolution: "signal-exit@npm:3.0.7" + checksum: a2f098f247adc367dffc27845853e9959b9e88b01cb301658cfe4194352d8d2bb32e18467c786a7fe15f1d44b233ea35633d076d5e737870b7139949d1ab6318 + languageName: node + linkType: hard + +"signal-exit@npm:^4.0.1": + version: 4.1.0 + resolution: "signal-exit@npm:4.1.0" + checksum: 64c757b498cb8629ffa5f75485340594d2f8189e9b08700e69199069c8e3070fb3e255f7ab873c05dc0b3cec412aea7402e10a5990cb6a050bd33ba062a6c549 + languageName: node + linkType: hard + +"simple-swizzle@npm:^0.2.2": + version: 0.2.2 + resolution: "simple-swizzle@npm:0.2.2" + dependencies: + is-arrayish: ^0.3.1 + checksum: a7f3f2ab5c76c4472d5c578df892e857323e452d9f392e1b5cf74b74db66e6294a1e1b8b390b519fa1b96b5b613f2a37db6cffef52c3f1f8f3c5ea64eb2d54c0 + languageName: node + linkType: hard + +"sisteransi@npm:^1.0.5": + version: 1.0.5 + resolution: "sisteransi@npm:1.0.5" + checksum: aba6438f46d2bfcef94cf112c835ab395172c75f67453fe05c340c770d3c402363018ae1ab4172a1026a90c47eaccf3af7b6ff6fa749a680c2929bd7fa2b37a4 + languageName: node + linkType: hard + +"slash@npm:^3.0.0": + version: 3.0.0 + resolution: "slash@npm:3.0.0" + checksum: 94a93fff615f25a999ad4b83c9d5e257a7280c90a32a7cb8b4a87996e4babf322e469c42b7f649fd5796edd8687652f3fb452a86dc97a816f01113183393f11c + languageName: node + linkType: hard + +"slice-ansi@npm:^3.0.0": + version: 3.0.0 + resolution: "slice-ansi@npm:3.0.0" + dependencies: + ansi-styles: ^4.0.0 + astral-regex: ^2.0.0 + is-fullwidth-code-point: ^3.0.0 + checksum: 5ec6d022d12e016347e9e3e98a7eb2a592213a43a65f1b61b74d2c78288da0aded781f665807a9f3876b9daa9ad94f64f77d7633a0458876c3a4fdc4eb223f24 + languageName: node + linkType: hard + +"slice-ansi@npm:^4.0.0": + version: 4.0.0 + resolution: "slice-ansi@npm:4.0.0" + dependencies: + ansi-styles: ^4.0.0 + astral-regex: ^2.0.0 + is-fullwidth-code-point: ^3.0.0 + checksum: 4a82d7f085b0e1b070e004941ada3c40d3818563ac44766cca4ceadd2080427d337554f9f99a13aaeb3b4a94d9964d9466c807b3d7b7541d1ec37ee32d308756 + languageName: node + linkType: hard + +"smart-buffer@npm:^4.0.2, smart-buffer@npm:^4.2.0": + version: 4.2.0 + resolution: "smart-buffer@npm:4.2.0" + checksum: b5167a7142c1da704c0e3af85c402002b597081dd9575031a90b4f229ca5678e9a36e8a374f1814c8156a725d17008ae3bde63b92f9cfd132526379e580bec8b + languageName: node + linkType: hard + +"snapdragon-node@npm:^2.0.1": + version: 2.1.1 + resolution: "snapdragon-node@npm:2.1.1" + dependencies: + define-property: ^1.0.0 + isobject: ^3.0.0 + snapdragon-util: ^3.0.1 + checksum: 9bb57d759f9e2a27935dbab0e4a790137adebace832b393e350a8bf5db461ee9206bb642d4fe47568ee0b44080479c8b4a9ad0ebe3712422d77edf9992a672fd + languageName: node + linkType: hard + +"snapdragon-util@npm:^3.0.1": + version: 3.0.1 + resolution: "snapdragon-util@npm:3.0.1" + dependencies: + kind-of: ^3.2.0 + checksum: 684997dbe37ec995c03fd3f412fba2b711fc34cb4010452b7eb668be72e8811a86a12938b511e8b19baf853b325178c56d8b78d655305e5cfb0bb8b21677e7b7 + languageName: node + linkType: hard + +"snapdragon@npm:^0.8.1": + version: 0.8.2 + resolution: "snapdragon@npm:0.8.2" + dependencies: + base: ^0.11.1 + debug: ^2.2.0 + define-property: ^0.2.5 + extend-shallow: ^2.0.1 + map-cache: ^0.2.2 + source-map: ^0.5.6 + source-map-resolve: ^0.5.0 + use: ^3.1.0 + checksum: a197f242a8f48b11036563065b2487e9b7068f50a20dd81d9161eca6af422174fc158b8beeadbe59ce5ef172aa5718143312b3aebaae551c124b7824387c8312 + languageName: node + linkType: hard + +"sockjs-client@npm:^1.5.0": + version: 1.6.1 + resolution: "sockjs-client@npm:1.6.1" + dependencies: + debug: ^3.2.7 + eventsource: ^2.0.2 + faye-websocket: ^0.11.4 + inherits: ^2.0.4 + url-parse: ^1.5.10 + checksum: c7623bbc9891f427c1670145550a1c9c2d5379719e174a791606ba4f12c7d92e4cfb9acec6c17f91fda45d910b23c308a1f9fbcad4916ce5db4e982b24079fc7 + languageName: node + linkType: hard + +"sockjs@npm:^0.3.21": + version: 0.3.24 + resolution: "sockjs@npm:0.3.24" + dependencies: + faye-websocket: ^0.11.3 + uuid: ^8.3.2 + websocket-driver: ^0.7.4 + checksum: 355309b48d2c4e9755349daa29cea1c0d9ee23e49b983841c6bf7a20276b00d3c02343f9f33f26d2ee8b261a5a02961b52a25c8da88b2538c5b68d3071b4934c + languageName: node + linkType: hard + +"socks-proxy-agent@npm:^7.0.0": + version: 7.0.0 + resolution: "socks-proxy-agent@npm:7.0.0" + dependencies: + agent-base: ^6.0.2 + debug: ^4.3.3 + socks: ^2.6.2 + checksum: 720554370154cbc979e2e9ce6a6ec6ced205d02757d8f5d93fe95adae454fc187a5cbfc6b022afab850a5ce9b4c7d73e0f98e381879cf45f66317a4895953846 + languageName: node + linkType: hard + +"socks@npm:^2.6.2": + version: 2.7.1 + resolution: "socks@npm:2.7.1" + dependencies: + ip: ^2.0.0 + smart-buffer: ^4.2.0 + checksum: 259d9e3e8e1c9809a7f5c32238c3d4d2a36b39b83851d0f573bfde5f21c4b1288417ce1af06af1452569cd1eb0841169afd4998f0e04ba04656f6b7f0e46d748 + languageName: node + linkType: hard + +"sort-keys@npm:^1.0.0": + version: 1.1.2 + resolution: "sort-keys@npm:1.1.2" + dependencies: + is-plain-obj: ^1.0.0 + checksum: 5963fd191a2a185a5ec86f06e47721e8e04713eda43bb04ae60d2a8afb21241553dd5bc9d863ed2bd7c3d541b609b0c8d0e58836b1a3eb6764c09c094bcc8b00 + languageName: node + linkType: hard + +"source-list-map@npm:^2.0.0": + version: 2.0.1 + resolution: "source-list-map@npm:2.0.1" + checksum: 806efc6f75e7cd31e4815e7a3aaf75a45c704871ea4075cb2eb49882c6fca28998f44fc5ac91adb6de03b2882ee6fb02f951fdc85e6a22b338c32bfe19557938 + languageName: node + linkType: hard + +"source-map-js@npm:>=0.6.2 <2.0.0, source-map-js@npm:^1.0.2": + version: 1.0.2 + resolution: "source-map-js@npm:1.0.2" + checksum: c049a7fc4deb9a7e9b481ae3d424cc793cb4845daa690bc5a05d428bf41bf231ced49b4cf0c9e77f9d42fdb3d20d6187619fc586605f5eabe995a316da8d377c + languageName: node + linkType: hard + +"source-map-resolve@npm:^0.5.0, source-map-resolve@npm:^0.5.2": + version: 0.5.3 + resolution: "source-map-resolve@npm:0.5.3" + dependencies: + atob: ^2.1.2 + decode-uri-component: ^0.2.0 + resolve-url: ^0.2.1 + source-map-url: ^0.4.0 + urix: ^0.1.0 + checksum: c73fa44ac00783f025f6ad9e038ab1a2e007cd6a6b86f47fe717c3d0765b4a08d264f6966f3bd7cd9dbcd69e4832783d5472e43247775b2a550d6f2155d24bae + languageName: node + linkType: hard + +"source-map-support@npm:^0.5.19, source-map-support@npm:^0.5.6, source-map-support@npm:~0.5.12, source-map-support@npm:~0.5.20": + version: 0.5.21 + resolution: "source-map-support@npm:0.5.21" + dependencies: + buffer-from: ^1.0.0 + source-map: ^0.6.0 + checksum: 43e98d700d79af1d36f859bdb7318e601dfc918c7ba2e98456118ebc4c4872b327773e5a1df09b0524e9e5063bb18f0934538eace60cca2710d1fa687645d137 + languageName: node + linkType: hard + +"source-map-url@npm:^0.4.0": + version: 0.4.1 + resolution: "source-map-url@npm:0.4.1" + checksum: 64c5c2c77aff815a6e61a4120c309ae4cac01298d9bcbb3deb1b46a4dd4c46d4a1eaeda79ec9f684766ae80e8dc86367b89326ce9dd2b89947bd9291fc1ac08c + languageName: node + linkType: hard + +"source-map@npm:0.6.1, source-map@npm:^0.6.0, source-map@npm:^0.6.1, source-map@npm:~0.6.0, source-map@npm:~0.6.1": + version: 0.6.1 + resolution: "source-map@npm:0.6.1" + checksum: 59ce8640cf3f3124f64ac289012c2b8bd377c238e316fb323ea22fbfe83da07d81e000071d7242cad7a23cd91c7de98e4df8830ec3f133cb6133a5f6e9f67bc2 + languageName: node + linkType: hard + +"source-map@npm:0.7.3": + version: 0.7.3 + resolution: "source-map@npm:0.7.3" + checksum: cd24efb3b8fa69b64bf28e3c1b1a500de77e84260c5b7f2b873f88284df17974157cc88d386ee9b6d081f08fdd8242f3fc05c953685a6ad81aad94c7393dedea + languageName: node + linkType: hard + +"source-map@npm:^0.5.0, source-map@npm:^0.5.6, source-map@npm:^0.5.7": + version: 0.5.7 + resolution: "source-map@npm:0.5.7" + checksum: 5dc2043b93d2f194142c7f38f74a24670cd7a0063acdaf4bf01d2964b402257ae843c2a8fa822ad5b71013b5fcafa55af7421383da919752f22ff488bc553f4d + languageName: node + linkType: hard + +"source-map@npm:^0.7.3": + version: 0.7.4 + resolution: "source-map@npm:0.7.4" + checksum: 01cc5a74b1f0e1d626a58d36ad6898ea820567e87f18dfc9d24a9843a351aaa2ec09b87422589906d6ff1deed29693e176194dc88bcae7c9a852dc74b311dbf5 + languageName: node + linkType: hard + +"sourcemap-codec@npm:^1.4.8": + version: 1.4.8 + resolution: "sourcemap-codec@npm:1.4.8" + checksum: b57981c05611afef31605732b598ccf65124a9fcb03b833532659ac4d29ac0f7bfacbc0d6c5a28a03e84c7510e7e556d758d0bb57786e214660016fb94279316 + languageName: node + linkType: hard + +"spawn-command@npm:^0.0.2-1": + version: 0.0.2-1 + resolution: "spawn-command@npm:0.0.2-1" + checksum: 2cac8519332193d1ed37d57298c4a1f73095e9edd20440fbab4aa47f531da83831734f2b51c44bb42b2747bf3485dec3fa2b0a1003f74c67561f2636622e328b + languageName: node + linkType: hard + +"spdx-correct@npm:^3.0.0": + version: 3.2.0 + resolution: "spdx-correct@npm:3.2.0" + dependencies: + spdx-expression-parse: ^3.0.0 + spdx-license-ids: ^3.0.0 + checksum: e9ae98d22f69c88e7aff5b8778dc01c361ef635580e82d29e5c60a6533cc8f4d820803e67d7432581af0cc4fb49973125076ee3b90df191d153e223c004193b2 + languageName: node + linkType: hard + +"spdx-exceptions@npm:^2.1.0": + version: 2.3.0 + resolution: "spdx-exceptions@npm:2.3.0" + checksum: cb69a26fa3b46305637123cd37c85f75610e8c477b6476fa7354eb67c08128d159f1d36715f19be6f9daf4b680337deb8c65acdcae7f2608ba51931540687ac0 + languageName: node + linkType: hard + +"spdx-expression-parse@npm:^3.0.0": + version: 3.0.1 + resolution: "spdx-expression-parse@npm:3.0.1" + dependencies: + spdx-exceptions: ^2.1.0 + spdx-license-ids: ^3.0.0 + checksum: a1c6e104a2cbada7a593eaa9f430bd5e148ef5290d4c0409899855ce8b1c39652bcc88a725259491a82601159d6dc790bedefc9016c7472f7de8de7361f8ccde + languageName: node + linkType: hard + +"spdx-license-ids@npm:^3.0.0": + version: 3.0.16 + resolution: "spdx-license-ids@npm:3.0.16" + checksum: 5cdaa85aaa24bd02f9353a2e357b4df0a4f205cb35655f3fd0a5674a4fb77081f28ffd425379214bc3be2c2b7593ce1215df6bcc75884aeee0a9811207feabe2 + languageName: node + linkType: hard + +"spdy-transport@npm:^3.0.0": + version: 3.0.0 + resolution: "spdy-transport@npm:3.0.0" + dependencies: + debug: ^4.1.0 + detect-node: ^2.0.4 + hpack.js: ^2.1.6 + obuf: ^1.1.2 + readable-stream: ^3.0.6 + wbuf: ^1.7.3 + checksum: 0fcaad3b836fb1ec0bdd39fa7008b9a7a84a553f12be6b736a2512613b323207ffc924b9551cef0378f7233c85916cff1118652e03a730bdb97c0e042243d56c + languageName: node + linkType: hard + +"spdy@npm:^4.0.2": + version: 4.0.2 + resolution: "spdy@npm:4.0.2" + dependencies: + debug: ^4.1.0 + handle-thing: ^2.0.0 + http-deceiver: ^1.2.7 + select-hose: ^2.0.0 + spdy-transport: ^3.0.0 + checksum: 2c739d0ff6f56ad36d2d754d0261d5ec358457bea7cbf77b1b05b0c6464f2ce65b85f196305f50b7bd9120723eb94bae9933466f28e67e5cd8cde4e27f1d75f8 + languageName: node + linkType: hard + +"split-string@npm:^3.0.1, split-string@npm:^3.0.2": + version: 3.1.0 + resolution: "split-string@npm:3.1.0" + dependencies: + extend-shallow: ^3.0.0 + checksum: ae5af5c91bdc3633628821bde92fdf9492fa0e8a63cf6a0376ed6afde93c701422a1610916f59be61972717070119e848d10dfbbd5024b7729d6a71972d2a84c + languageName: node + linkType: hard + +"split2@npm:^4.1.0": + version: 4.2.0 + resolution: "split2@npm:4.2.0" + checksum: 05d54102546549fe4d2455900699056580cca006c0275c334611420f854da30ac999230857a85fdd9914dc2109ae50f80fda43d2a445f2aa86eccdc1dfce779d + languageName: node + linkType: hard + +"sprintf-js@npm:^1.1.2": + version: 1.1.3 + resolution: "sprintf-js@npm:1.1.3" + checksum: a3fdac7b49643875b70864a9d9b469d87a40dfeaf5d34d9d0c5b1cda5fd7d065531fcb43c76357d62254c57184a7b151954156563a4d6a747015cfb41021cad0 + languageName: node + linkType: hard + +"sprintf-js@npm:~1.0.2": + version: 1.0.3 + resolution: "sprintf-js@npm:1.0.3" + checksum: 19d79aec211f09b99ec3099b5b2ae2f6e9cdefe50bc91ac4c69144b6d3928a640bb6ae5b3def70c2e85a2c3d9f5ec2719921e3a59d3ca3ef4b2fd1a4656a0df3 + languageName: node + linkType: hard + +"ssri@npm:^10.0.0": + version: 10.0.5 + resolution: "ssri@npm:10.0.5" + dependencies: + minipass: ^7.0.3 + checksum: 0a31b65f21872dea1ed3f7c200d7bc1c1b91c15e419deca14f282508ba917cbb342c08a6814c7f68ca4ca4116dd1a85da2bbf39227480e50125a1ceffeecb750 + languageName: node + linkType: hard + +"ssri@npm:^6.0.1": + version: 6.0.2 + resolution: "ssri@npm:6.0.2" + dependencies: + figgy-pudding: ^3.5.1 + checksum: 7c2e5d442f6252559c8987b7114bcf389fe5614bf65de09ba3e6f9a57b9b65b2967de348fcc3acccff9c069adb168140dd2c5fc2f6f4a779e604a27ef1f7d551 + languageName: node + linkType: hard + +"ssri@npm:^8.0.1": + version: 8.0.1 + resolution: "ssri@npm:8.0.1" + dependencies: + minipass: ^3.1.1 + checksum: bc447f5af814fa9713aa201ec2522208ae0f4d8f3bda7a1f445a797c7b929a02720436ff7c478fb5edc4045adb02b1b88d2341b436a80798734e2494f1067b36 + languageName: node + linkType: hard + +"stable@npm:^0.1.8": + version: 0.1.8 + resolution: "stable@npm:0.1.8" + checksum: 2ff482bb100285d16dd75cd8f7c60ab652570e8952c0bfa91828a2b5f646a0ff533f14596ea4eabd48bb7f4aeea408dce8f8515812b975d958a4cc4fa6b9dfeb + languageName: node + linkType: hard + +"stack-utils@npm:^2.0.2, stack-utils@npm:^2.0.3": + version: 2.0.6 + resolution: "stack-utils@npm:2.0.6" + dependencies: + escape-string-regexp: ^2.0.0 + checksum: 052bf4d25bbf5f78e06c1d5e67de2e088b06871fa04107ca8d3f0e9d9263326e2942c8bedee3545795fc77d787d443a538345eef74db2f8e35db3558c6f91ff7 + languageName: node + linkType: hard + +"stackframe@npm:^1.3.4": + version: 1.3.4 + resolution: "stackframe@npm:1.3.4" + checksum: bae1596873595c4610993fa84f86a3387d67586401c1816ea048c0196800c0646c4d2da98c2ee80557fd9eff05877efe33b91ba6cd052658ed96ddc85d19067d + languageName: node + linkType: hard + +"stat-mode@npm:^1.0.0": + version: 1.0.0 + resolution: "stat-mode@npm:1.0.0" + checksum: f9daea2dba41e1dffae5543a8af087ec8b56ff6ae1c729b5373b4f528e214f53260108dab522d2660cca2215dc3e61f164920a82136ad142dab50b3faa6f6090 + languageName: node + linkType: hard + +"static-eval@npm:2.0.2": + version: 2.0.2 + resolution: "static-eval@npm:2.0.2" + dependencies: + escodegen: ^1.8.1 + checksum: 335a923c5ccb29add404ac23d0a55c0da6cee3071f6f67a7053aeac0dedc6dbfc53ac9269e9c25f403f5b7603a291ef47d7114f99bde241184f7aa3f9286dc32 + languageName: node + linkType: hard + +"static-extend@npm:^0.1.1": + version: 0.1.2 + resolution: "static-extend@npm:0.1.2" + dependencies: + define-property: ^0.2.5 + object-copy: ^0.1.0 + checksum: 8657485b831f79e388a437260baf22784540417a9b29e11572c87735df24c22b84eda42107403a64b30861b2faf13df9f7fc5525d51f9d1d2303aba5cbf4e12c + languageName: node + linkType: hard + +"statuses@npm:2.0.1": + version: 2.0.1 + resolution: "statuses@npm:2.0.1" + checksum: 18c7623fdb8f646fb213ca4051be4df7efb3484d4ab662937ca6fbef7ced9b9e12842709872eb3020cc3504b93bde88935c9f6417489627a7786f24f8031cbcb + languageName: node + linkType: hard + +"statuses@npm:>= 1.4.0 < 2": + version: 1.5.0 + resolution: "statuses@npm:1.5.0" + checksum: c469b9519de16a4bb19600205cffb39ee471a5f17b82589757ca7bd40a8d92ebb6ed9f98b5a540c5d302ccbc78f15dc03cc0280dd6e00df1335568a5d5758a5c + languageName: node + linkType: hard + +"stream-browserify@npm:^2.0.1": + version: 2.0.2 + resolution: "stream-browserify@npm:2.0.2" + dependencies: + inherits: ~2.0.1 + readable-stream: ^2.0.2 + checksum: 8de7bcab5582e9a931ae1a4768be7efe8fa4b0b95fd368d16d8cf3e494b897d6b0a7238626de5d71686e53bddf417fd59d106cfa3af0ec055f61a8d1f8fc77b3 + languageName: node + linkType: hard + +"stream-each@npm:^1.1.0": + version: 1.2.3 + resolution: "stream-each@npm:1.2.3" + dependencies: + end-of-stream: ^1.1.0 + stream-shift: ^1.0.0 + checksum: f243de78e9fcc60757994efc4e8ecae9f01a4b2c6a505d786b11fcaa68b1a75ca54afc1669eac9e08f19ff0230792fc40d0f3e3e2935d76971b4903af18b76ab + languageName: node + linkType: hard + +"stream-http@npm:^2.7.2": + version: 2.8.3 + resolution: "stream-http@npm:2.8.3" + dependencies: + builtin-status-codes: ^3.0.0 + inherits: ^2.0.1 + readable-stream: ^2.3.6 + to-arraybuffer: ^1.0.0 + xtend: ^4.0.0 + checksum: f57dfaa21a015f72e6ce6b199cf1762074cfe8acf0047bba8f005593754f1743ad0a91788f95308d9f3829ad55742399ad27b4624432f2752a08e62ef4346e05 + languageName: node + linkType: hard + +"stream-shift@npm:^1.0.0": + version: 1.0.1 + resolution: "stream-shift@npm:1.0.1" + checksum: 59b82b44b29ec3699b5519a49b3cedcc6db58c72fb40c04e005525dfdcab1c75c4e0c180b923c380f204bed78211b9bad8faecc7b93dece4d004c3f6ec75737b + languageName: node + linkType: hard + +"strict-uri-encode@npm:^1.0.0": + version: 1.1.0 + resolution: "strict-uri-encode@npm:1.1.0" + checksum: 9466d371f7b36768d43f7803f26137657559e4c8b0161fb9e320efb8edba3ae22f8e99d4b0d91da023b05a13f62ec5412c3f4f764b5788fac11d1fea93720bb3 + languageName: node + linkType: hard + +"string-hash@npm:1.1.3": + version: 1.1.3 + resolution: "string-hash@npm:1.1.3" + checksum: 104b8667a5e0dc71bfcd29fee09cb88c6102e27bfb07c55f95535d90587d016731d52299380052e514266f4028a7a5172e0d9ac58e2f8f5001be61dc77c0754d + languageName: node + linkType: hard + +"string-length@npm:^4.0.1": + version: 4.0.2 + resolution: "string-length@npm:4.0.2" + dependencies: + char-regex: ^1.0.2 + strip-ansi: ^6.0.0 + checksum: ce85533ef5113fcb7e522bcf9e62cb33871aa99b3729cec5595f4447f660b0cefd542ca6df4150c97a677d58b0cb727a3fe09ac1de94071d05526c73579bf505 + languageName: node + linkType: hard + +"string-natural-compare@npm:^3.0.1": + version: 3.0.1 + resolution: "string-natural-compare@npm:3.0.1" + checksum: 65910d9995074086e769a68728395effbba9b7186be5b4c16a7fad4f4ef50cae95ca16e3e9086e019cbb636ae8daac9c7b8fe91b5f21865c5c0f26e3c0725406 + languageName: node + linkType: hard + +"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^1.0.2 || 2 || 3 || 4, string-width@npm:^4.0.0, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.2, string-width@npm:^4.2.3": + version: 4.2.3 + resolution: "string-width@npm:4.2.3" + dependencies: + emoji-regex: ^8.0.0 + is-fullwidth-code-point: ^3.0.0 + strip-ansi: ^6.0.1 + checksum: e52c10dc3fbfcd6c3a15f159f54a90024241d0f149cf8aed2982a2d801d2e64df0bf1dc351cf8e95c3319323f9f220c16e740b06faecd53e2462df1d2b5443fb + languageName: node + linkType: hard + +"string-width@npm:^1.0.1": + version: 1.0.2 + resolution: "string-width@npm:1.0.2" + dependencies: + code-point-at: ^1.0.0 + is-fullwidth-code-point: ^1.0.0 + strip-ansi: ^3.0.0 + checksum: 5c79439e95bc3bd7233a332c5f5926ab2ee90b23816ed4faa380ce3b2576d7800b0a5bb15ae88ed28737acc7ea06a518c2eef39142dd727adad0e45c776cd37e + languageName: node + linkType: hard + +"string-width@npm:^3.0.0, string-width@npm:^3.1.0": + version: 3.1.0 + resolution: "string-width@npm:3.1.0" + dependencies: + emoji-regex: ^7.0.1 + is-fullwidth-code-point: ^2.0.0 + strip-ansi: ^5.1.0 + checksum: 57f7ca73d201682816d573dc68bd4bb8e1dff8dc9fcf10470fdfc3474135c97175fec12ea6a159e67339b41e86963112355b64529489af6e7e70f94a7caf08b2 + languageName: node + linkType: hard + +"string-width@npm:^5.0.1, string-width@npm:^5.1.2": + version: 5.1.2 + resolution: "string-width@npm:5.1.2" + dependencies: + eastasianwidth: ^0.2.0 + emoji-regex: ^9.2.2 + strip-ansi: ^7.0.1 + checksum: 7369deaa29f21dda9a438686154b62c2c5f661f8dda60449088f9f980196f7908fc39fdd1803e3e01541970287cf5deae336798337e9319a7055af89dafa7193 + languageName: node + linkType: hard + +"string.prototype.matchall@npm:^4.0.8": + version: 4.0.10 + resolution: "string.prototype.matchall@npm:4.0.10" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + get-intrinsic: ^1.2.1 + has-symbols: ^1.0.3 + internal-slot: ^1.0.5 + regexp.prototype.flags: ^1.5.0 + set-function-name: ^2.0.0 + side-channel: ^1.0.4 + checksum: 3c78bdeff39360c8e435d7c4c6ea19f454aa7a63eda95fa6fadc3a5b984446a2f9f2c02d5c94171ce22268a573524263fbd0c8edbe3ce2e9890d7cc036cdc3ed + languageName: node + linkType: hard + +"string.prototype.trim@npm:^1.2.8": + version: 1.2.8 + resolution: "string.prototype.trim@npm:1.2.8" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + checksum: 49eb1a862a53aba73c3fb6c2a53f5463173cb1f4512374b623bcd6b43ad49dd559a06fb5789bdec771a40fc4d2a564411c0a75d35fb27e76bbe738c211ecff07 + languageName: node + linkType: hard + +"string.prototype.trimend@npm:^1.0.7": + version: 1.0.7 + resolution: "string.prototype.trimend@npm:1.0.7" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + checksum: 2375516272fd1ba75992f4c4aa88a7b5f3c7a9ca308d963bcd5645adf689eba6f8a04ebab80c33e30ec0aefc6554181a3a8416015c38da0aa118e60ec896310c + languageName: node + linkType: hard + +"string.prototype.trimstart@npm:^1.0.7": + version: 1.0.7 + resolution: "string.prototype.trimstart@npm:1.0.7" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.22.1 + checksum: 13d0c2cb0d5ff9e926fa0bec559158b062eed2b68cd5be777ffba782c96b2b492944e47057274e064549b94dd27cf81f48b27a31fee8af5b574cff253e7eb613 + languageName: node + linkType: hard + +"string_decoder@npm:^1.0.0, string_decoder@npm:^1.1.1": + version: 1.3.0 + resolution: "string_decoder@npm:1.3.0" + dependencies: + safe-buffer: ~5.2.0 + checksum: 8417646695a66e73aefc4420eb3b84cc9ffd89572861fe004e6aeb13c7bc00e2f616247505d2dbbef24247c372f70268f594af7126f43548565c68c117bdeb56 + languageName: node + linkType: hard + +"string_decoder@npm:~1.1.1": + version: 1.1.1 + resolution: "string_decoder@npm:1.1.1" + dependencies: + safe-buffer: ~5.1.0 + checksum: 9ab7e56f9d60a28f2be697419917c50cac19f3e8e6c28ef26ed5f4852289fe0de5d6997d29becf59028556f2c62983790c1d9ba1e2a3cc401768ca12d5183a5b + languageName: node + linkType: hard + +"stringify-object@npm:^3.3.0": + version: 3.3.0 + resolution: "stringify-object@npm:3.3.0" + dependencies: + get-own-enumerable-property-symbols: ^3.0.0 + is-obj: ^1.0.1 + is-regexp: ^1.0.0 + checksum: 6827a3f35975cfa8572e8cd3ed4f7b262def260af18655c6fde549334acdac49ddba69f3c861ea5a6e9c5a4990fe4ae870b9c0e6c31019430504c94a83b7a154 + languageName: node + linkType: hard + +"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": + version: 6.0.1 + resolution: "strip-ansi@npm:6.0.1" + dependencies: + ansi-regex: ^5.0.1 + checksum: f3cd25890aef3ba6e1a74e20896c21a46f482e93df4a06567cebf2b57edabb15133f1f94e57434e0a958d61186087b1008e89c94875d019910a213181a14fc8c + languageName: node + linkType: hard + +"strip-ansi@npm:6.0.0": + version: 6.0.0 + resolution: "strip-ansi@npm:6.0.0" + dependencies: + ansi-regex: ^5.0.0 + checksum: 04c3239ede44c4d195b0e66c0ad58b932f08bec7d05290416d361ff908ad282ecdaf5d9731e322c84f151d427436bde01f05b7422c3ec26dd927586736b0e5d0 + languageName: node + linkType: hard + +"strip-ansi@npm:^3.0.0, strip-ansi@npm:^3.0.1": + version: 3.0.1 + resolution: "strip-ansi@npm:3.0.1" + dependencies: + ansi-regex: ^2.0.0 + checksum: 9b974de611ce5075c70629c00fa98c46144043db92ae17748fb780f706f7a789e9989fd10597b7c2053ae8d1513fd707816a91f1879b2f71e6ac0b6a863db465 + languageName: node + linkType: hard + +"strip-ansi@npm:^5.0.0, strip-ansi@npm:^5.1.0, strip-ansi@npm:^5.2.0": + version: 5.2.0 + resolution: "strip-ansi@npm:5.2.0" + dependencies: + ansi-regex: ^4.1.0 + checksum: bdb5f76ade97062bd88e7723aa019adbfacdcba42223b19ccb528ffb9fb0b89a5be442c663c4a3fb25268eaa3f6ea19c7c3fbae830bd1562d55adccae1fcec46 + languageName: node + linkType: hard + +"strip-ansi@npm:^7.0.1": + version: 7.1.0 + resolution: "strip-ansi@npm:7.1.0" + dependencies: + ansi-regex: ^6.0.1 + checksum: 859c73fcf27869c22a4e4d8c6acfe690064659e84bef9458aa6d13719d09ca88dcfd40cbf31fd0be63518ea1a643fe070b4827d353e09533a5b0b9fd4553d64d + languageName: node + linkType: hard + +"strip-bom@npm:^3.0.0": + version: 3.0.0 + resolution: "strip-bom@npm:3.0.0" + checksum: 8d50ff27b7ebe5ecc78f1fe1e00fcdff7af014e73cf724b46fb81ef889eeb1015fc5184b64e81a2efe002180f3ba431bdd77e300da5c6685d702780fbf0c8d5b + languageName: node + linkType: hard + +"strip-bom@npm:^4.0.0": + version: 4.0.0 + resolution: "strip-bom@npm:4.0.0" + checksum: 9dbcfbaf503c57c06af15fe2c8176fb1bf3af5ff65003851a102749f875a6dbe0ab3b30115eccf6e805e9d756830d3e40ec508b62b3f1ddf3761a20ebe29d3f3 + languageName: node + linkType: hard + +"strip-comments@npm:^1.0.2": + version: 1.0.2 + resolution: "strip-comments@npm:1.0.2" + dependencies: + babel-extract-comments: ^1.0.0 + babel-plugin-transform-object-rest-spread: ^6.26.0 + checksum: 19e6f659a617566aef011b29ef9ce50da0db24556073d9c8065c73072f89bf1238d1fcaaa485933fee038a50a09bb04493097f66e622cdfc3a114f5e9e99ee24 + languageName: node + linkType: hard + +"strip-eof@npm:^1.0.0": + version: 1.0.0 + resolution: "strip-eof@npm:1.0.0" + checksum: 40bc8ddd7e072f8ba0c2d6d05267b4e0a4800898c3435b5fb5f5a21e6e47dfaff18467e7aa0d1844bb5d6274c3097246595841fbfeb317e541974ee992cac506 + languageName: node + linkType: hard + +"strip-final-newline@npm:^2.0.0": + version: 2.0.0 + resolution: "strip-final-newline@npm:2.0.0" + checksum: 69412b5e25731e1938184b5d489c32e340605bb611d6140344abc3421b7f3c6f9984b21dff296dfcf056681b82caa3bb4cc996a965ce37bcfad663e92eae9c64 + languageName: node + linkType: hard + +"strip-indent@npm:^3.0.0": + version: 3.0.0 + resolution: "strip-indent@npm:3.0.0" + dependencies: + min-indent: ^1.0.0 + checksum: 18f045d57d9d0d90cd16f72b2313d6364fd2cb4bf85b9f593523ad431c8720011a4d5f08b6591c9d580f446e78855c5334a30fb91aa1560f5d9f95ed1b4a0530 + languageName: node + linkType: hard + +"strip-json-comments@npm:^3.1.0, strip-json-comments@npm:^3.1.1": + version: 3.1.1 + resolution: "strip-json-comments@npm:3.1.1" + checksum: 492f73e27268f9b1c122733f28ecb0e7e8d8a531a6662efbd08e22cccb3f9475e90a1b82cab06a392f6afae6d2de636f977e231296400d0ec5304ba70f166443 + languageName: node + linkType: hard + +"strip-json-comments@npm:~2.0.1": + version: 2.0.1 + resolution: "strip-json-comments@npm:2.0.1" + checksum: 1074ccb63270d32ca28edfb0a281c96b94dc679077828135141f27d52a5a398ef5e78bcf22809d23cadc2b81dfbe345eb5fd8699b385c8b1128907dec4a7d1e1 + languageName: node + linkType: hard + +"strip-outer@npm:^1.0.1": + version: 1.0.1 + resolution: "strip-outer@npm:1.0.1" + dependencies: + escape-string-regexp: ^1.0.2 + checksum: f8d65d33ca2b49aabc66bb41d689dda7b8b9959d320e3a40a2ef4d7079ff2f67ffb72db43f179f48dbf9495c2e33742863feab7a584d180fa62505439162c191 + languageName: node + linkType: hard + +"style-loader@npm:1.3.0": + version: 1.3.0 + resolution: "style-loader@npm:1.3.0" + dependencies: + loader-utils: ^2.0.0 + schema-utils: ^2.7.0 + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + checksum: 1be9e8705307f5b8eb89e80f3703fa27296dccec349d790eace7aabe212f08c7c8f3ea6b6cb97bc53e82fbebfb9aa0689259671a8315f4655e24a850781e062a + languageName: node + linkType: hard + +"styled-jsx@npm:^4.0.1": + version: 4.0.1 + resolution: "styled-jsx@npm:4.0.1" + dependencies: + "@babel/plugin-syntax-jsx": 7.14.5 + "@babel/types": 7.15.0 + convert-source-map: 1.7.0 + loader-utils: 1.2.3 + source-map: 0.7.3 + string-hash: 1.1.3 + stylis: 3.5.4 + stylis-rule-sheet: 0.0.10 + peerDependencies: + react: ">= 16.8.0 || 17.x.x || 18.x.x" + peerDependenciesMeta: + "@babel/core": + optional: true + checksum: a4260ba093086ed50c903ce1e4e564c4162d041238c02d8f9f8d1b259224f54ac49b49e9b4a6e3396c27e688dd870da7552c35ea9622c25aaa4777b2df64bb26 + languageName: node + linkType: hard + +"stylehacks@npm:^4.0.0": + version: 4.0.3 + resolution: "stylehacks@npm:4.0.3" + dependencies: + browserslist: ^4.0.0 + postcss: ^7.0.0 + postcss-selector-parser: ^3.0.0 + checksum: 8acf28ea609bee6d7ba40121bcf53af8d899c1ec04f2c08de9349b8292b84b8aa7f82e14c623ae6956decf5b7a7eeea5472ab8e48de7bdcdb6d76640444f6753 + languageName: node + linkType: hard + +"stylis-rule-sheet@npm:0.0.10": + version: 0.0.10 + resolution: "stylis-rule-sheet@npm:0.0.10" + peerDependencies: + stylis: ^3.5.0 + checksum: 97ad016c64ecce8d4b2c2c1c3cf3260de3c0e2b151e78f90ded6cc1bfcca536625a77277af16a9c8a241236a9e4fd5b70d88dfa32e9b48afaddb8f102a95582d + languageName: node + linkType: hard + +"stylis@npm:3.5.4": + version: 3.5.4 + resolution: "stylis@npm:3.5.4" + checksum: 3673a748ad236219bd77ca9c0a8730b8726812e612cbc844aa6f029f13666a10cf2825a5f8d41f05e8af02b5987d31b7d3ebe995e4b42e0255366fec23489b77 + languageName: node + linkType: hard + +"stylis@npm:4.2.0": + version: 4.2.0 + resolution: "stylis@npm:4.2.0" + checksum: 0eb6cc1b866dc17a6037d0a82ac7fa877eba6a757443e79e7c4f35bacedbf6421fadcab4363b39667b43355cbaaa570a3cde850f776498e5450f32ed2f9b7584 + languageName: node + linkType: hard + +"sumchecker@npm:^3.0.1": + version: 3.0.1 + resolution: "sumchecker@npm:3.0.1" + dependencies: + debug: ^4.1.0 + checksum: 31ba7a62c889236b5b07f75b5c250d481158a1ca061b8f234fca0457bdbe48a20e5011c12c715343dc577e111463dc3d9e721b98015a445a2a88c35e0c9f0f91 + languageName: node + linkType: hard + +"supports-color@npm:^5.3.0": + version: 5.5.0 + resolution: "supports-color@npm:5.5.0" + dependencies: + has-flag: ^3.0.0 + checksum: 95f6f4ba5afdf92f495b5a912d4abee8dcba766ae719b975c56c084f5004845f6f5a5f7769f52d53f40e21952a6d87411bafe34af4a01e65f9926002e38e1dac + languageName: node + linkType: hard + +"supports-color@npm:^6.1.0": + version: 6.1.0 + resolution: "supports-color@npm:6.1.0" + dependencies: + has-flag: ^3.0.0 + checksum: 74358f9535c83ee113fbaac354b11e808060f6e7d8722082ee43af3578469134e89d00026dce2a6b93ce4e5b89d0e9a10f638b2b9f64c7838c2fb2883a47b3d5 + languageName: node + linkType: hard + +"supports-color@npm:^7.0.0, supports-color@npm:^7.1.0": + version: 7.2.0 + resolution: "supports-color@npm:7.2.0" + dependencies: + has-flag: ^4.0.0 + checksum: 3dda818de06ebbe5b9653e07842d9479f3555ebc77e9a0280caf5a14fb877ffee9ed57007c3b78f5a6324b8dbeec648d9e97a24e2ed9fdb81ddc69ea07100f4a + languageName: node + linkType: hard + +"supports-color@npm:^8.0.0, supports-color@npm:^8.1.0": + version: 8.1.1 + resolution: "supports-color@npm:8.1.1" + dependencies: + has-flag: ^4.0.0 + checksum: c052193a7e43c6cdc741eb7f378df605636e01ad434badf7324f17fb60c69a880d8d8fcdcb562cf94c2350e57b937d7425ab5b8326c67c2adc48f7c87c1db406 + languageName: node + linkType: hard + +"supports-hyperlinks@npm:^2.0.0": + version: 2.3.0 + resolution: "supports-hyperlinks@npm:2.3.0" + dependencies: + has-flag: ^4.0.0 + supports-color: ^7.0.0 + checksum: 9ee0de3c8ce919d453511b2b1588a8205bd429d98af94a01df87411391010fe22ca463f268c84b2ce2abad019dfff8452aa02806eeb5c905a8d7ad5c4f4c52b8 + languageName: node + linkType: hard + +"supports-preserve-symlinks-flag@npm:^1.0.0": + version: 1.0.0 + resolution: "supports-preserve-symlinks-flag@npm:1.0.0" + checksum: 53b1e247e68e05db7b3808b99b892bd36fb096e6fba213a06da7fab22045e97597db425c724f2bbd6c99a3c295e1e73f3e4de78592289f38431049e1277ca0ae + languageName: node + linkType: hard + +"svg-parser@npm:^2.0.2": + version: 2.0.4 + resolution: "svg-parser@npm:2.0.4" + checksum: b3de6653048212f2ae7afe4a423e04a76ec6d2d06e1bf7eacc618a7c5f7df7faa5105561c57b94579ec831fbbdbf5f190ba56a9205ff39ed13eabdf8ab086ddf + languageName: node + linkType: hard + +"svgo@npm:^1.0.0, svgo@npm:^1.2.2": + version: 1.3.2 + resolution: "svgo@npm:1.3.2" + dependencies: + chalk: ^2.4.1 + coa: ^2.0.2 + css-select: ^2.0.0 + css-select-base-adapter: ^0.1.1 + css-tree: 1.0.0-alpha.37 + csso: ^4.0.2 + js-yaml: ^3.13.1 + mkdirp: ~0.5.1 + object.values: ^1.1.0 + sax: ~1.2.4 + stable: ^0.1.8 + unquote: ~1.1.1 + util.promisify: ~1.0.0 + bin: + svgo: ./bin/svgo + checksum: 28a5680a61245eb4a1603bc03459095bb01ad5ebd23e95882d886c3c81752313c0a9a9fe48dd0bcbb9a27c52e11c603640df952971573b2b550d9e15a9ee6116 + languageName: node + linkType: hard + +"svgo@npm:^2.4.0": + version: 2.8.0 + resolution: "svgo@npm:2.8.0" + dependencies: + "@trysound/sax": 0.2.0 + commander: ^7.2.0 + css-select: ^4.1.3 + css-tree: ^1.1.3 + csso: ^4.2.0 + picocolors: ^1.0.0 + stable: ^0.1.8 + bin: + svgo: bin/svgo + checksum: b92f71a8541468ffd0b81b8cdb36b1e242eea320bf3c1a9b2c8809945853e9d8c80c19744267eb91cabf06ae9d5fff3592d677df85a31be4ed59ff78534fa420 + languageName: node + linkType: hard + +"symbol-tree@npm:^3.2.4": + version: 3.2.4 + resolution: "symbol-tree@npm:3.2.4" + checksum: 6e8fc7e1486b8b54bea91199d9535bb72f10842e40c79e882fc94fb7b14b89866adf2fd79efa5ebb5b658bc07fb459ccce5ac0e99ef3d72f474e74aaf284029d + languageName: node + linkType: hard + +"table@npm:^6.0.9": + version: 6.8.1 + resolution: "table@npm:6.8.1" + dependencies: + ajv: ^8.0.1 + lodash.truncate: ^4.4.2 + slice-ansi: ^4.0.0 + string-width: ^4.2.3 + strip-ansi: ^6.0.1 + checksum: 08249c7046125d9d0a944a6e96cfe9ec66908d6b8a9db125531be6eb05fa0de047fd5542e9d43b4f987057f00a093b276b8d3e19af162a9c40db2681058fd306 + languageName: node + linkType: hard + +"tapable@npm:^1.0.0, tapable@npm:^1.1.3": + version: 1.1.3 + resolution: "tapable@npm:1.1.3" + checksum: 53ff4e7c3900051c38cc4faab428ebfd7e6ad0841af5a7ac6d5f3045c5b50e88497bfa8295b4b3fbcadd94993c9e358868b78b9fb249a76cb8b018ac8dccafd7 + languageName: node + linkType: hard + +"tar@npm:^6.0.2, tar@npm:^6.1.11, tar@npm:^6.1.2": + version: 6.2.0 + resolution: "tar@npm:6.2.0" + dependencies: + chownr: ^2.0.0 + fs-minipass: ^2.0.0 + minipass: ^5.0.0 + minizlib: ^2.1.1 + mkdirp: ^1.0.3 + yallist: ^4.0.0 + checksum: db4d9fe74a2082c3a5016630092c54c8375ff3b280186938cfd104f2e089c4fd9bad58688ef6be9cf186a889671bf355c7cda38f09bbf60604b281715ca57f5c + languageName: node + linkType: hard + +"temp-dir@npm:^1.0.0": + version: 1.0.0 + resolution: "temp-dir@npm:1.0.0" + checksum: cb2b58ddfb12efa83e939091386ad73b425c9a8487ea0095fe4653192a40d49184a771a1beba99045fbd011e389fd563122d79f54f82be86a55620667e08a6b2 + languageName: node + linkType: hard + +"temp-file@npm:^3.4.0": + version: 3.4.0 + resolution: "temp-file@npm:3.4.0" + dependencies: + async-exit-hook: ^2.0.1 + fs-extra: ^10.0.0 + checksum: 8e2b90321c9d865ad3e9e613cc524c9a9e22cd7820d3c8378840a01ab720116f4de4d340bbca6a50a9562b37f8ce614451fdb02dc2f993b4f9866cf81840b3cb + languageName: node + linkType: hard + +"tempy@npm:^0.3.0": + version: 0.3.0 + resolution: "tempy@npm:0.3.0" + dependencies: + temp-dir: ^1.0.0 + type-fest: ^0.3.1 + unique-string: ^1.0.0 + checksum: f81ef72a7ee6d512439af8d8891e4fc6595309451910d7ac9d760f1242a1f87272b2b97c830c8f74aaa93a3aa550483bb16db17e6345601f64d614d240edc322 + languageName: node + linkType: hard + +"terminal-link@npm:^2.0.0": + version: 2.1.1 + resolution: "terminal-link@npm:2.1.1" + dependencies: + ansi-escapes: ^4.2.1 + supports-hyperlinks: ^2.0.0 + checksum: ce3d2cd3a438c4a9453947aa664581519173ea40e77e2534d08c088ee6dda449eabdbe0a76d2a516b8b73c33262fedd10d5270ccf7576ae316e3db170ce6562f + languageName: node + linkType: hard + +"terser-webpack-plugin@npm:4.2.3": + version: 4.2.3 + resolution: "terser-webpack-plugin@npm:4.2.3" + dependencies: + cacache: ^15.0.5 + find-cache-dir: ^3.3.1 + jest-worker: ^26.5.0 + p-limit: ^3.0.2 + schema-utils: ^3.0.0 + serialize-javascript: ^5.0.1 + source-map: ^0.6.1 + terser: ^5.3.4 + webpack-sources: ^1.4.3 + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + checksum: ec1b3a85e2645c57e359d5e4831f3e1d78eca2a0c94b156db70eb846ae35b5e6e98ad8784b12e153fc273e57445ce69d017075bbe9fc42868a258ef121f11537 + languageName: node + linkType: hard + +"terser-webpack-plugin@npm:^1.4.3": + version: 1.4.5 + resolution: "terser-webpack-plugin@npm:1.4.5" + dependencies: + cacache: ^12.0.2 + find-cache-dir: ^2.1.0 + is-wsl: ^1.1.0 + schema-utils: ^1.0.0 + serialize-javascript: ^4.0.0 + source-map: ^0.6.1 + terser: ^4.1.2 + webpack-sources: ^1.4.0 + worker-farm: ^1.7.0 + peerDependencies: + webpack: ^4.0.0 + checksum: 02aada80927d3c8105d69cb00384d307b73aed67d180db5d20023a8d649149f3803ad50f9cd2ef9eb2622005de87e677198ecc5088f51422bfac5d4d57472d0e + languageName: node + linkType: hard + +"terser@npm:^4.1.2, terser@npm:^4.6.2, terser@npm:^4.6.3": + version: 4.8.1 + resolution: "terser@npm:4.8.1" + dependencies: + commander: ^2.20.0 + source-map: ~0.6.1 + source-map-support: ~0.5.12 + bin: + terser: bin/terser + checksum: b342819bf7e82283059aaa3f22bb74deb1862d07573ba5a8947882190ad525fd9b44a15074986be083fd379c58b9a879457a330b66dcdb77b485c44267f9a55a + languageName: node + linkType: hard + +"terser@npm:^5.3.4": + version: 5.22.0 + resolution: "terser@npm:5.22.0" + dependencies: + "@jridgewell/source-map": ^0.3.3 + acorn: ^8.8.2 + commander: ^2.20.0 + source-map-support: ~0.5.20 + bin: + terser: bin/terser + checksum: ee95981c54ebd381e0b7f5872c646e7a05543e53960f8e0c2f240863c368989d43a3ca80b7e9f691683c92ba199eb4b91d61785fef0b9ca4a887eb55866001f4 + languageName: node + linkType: hard + +"test-exclude@npm:^6.0.0": + version: 6.0.0 + resolution: "test-exclude@npm:6.0.0" + dependencies: + "@istanbuljs/schema": ^0.1.2 + glob: ^7.1.4 + minimatch: ^3.0.4 + checksum: 3b34a3d77165a2cb82b34014b3aba93b1c4637a5011807557dc2f3da826c59975a5ccad765721c4648b39817e3472789f9b0fa98fc854c5c1c7a1e632aacdc28 + languageName: node + linkType: hard + +"text-table@npm:0.2.0, text-table@npm:^0.2.0": + version: 0.2.0 + resolution: "text-table@npm:0.2.0" + checksum: b6937a38c80c7f84d9c11dd75e49d5c44f71d95e810a3250bd1f1797fc7117c57698204adf676b71497acc205d769d65c16ae8fa10afad832ae1322630aef10a + languageName: node + linkType: hard + +"throat@npm:^5.0.0": + version: 5.0.0 + resolution: "throat@npm:5.0.0" + checksum: 031ff7f4431618036c1dedd99c8aa82f5c33077320a8358ed829e84b320783781d1869fe58e8f76e948306803de966f5f7573766a437562c9f5c033297ad2fe2 + languageName: node + linkType: hard + +"through2@npm:^2.0.0": + version: 2.0.5 + resolution: "through2@npm:2.0.5" + dependencies: + readable-stream: ~2.3.6 + xtend: ~4.0.1 + checksum: beb0f338aa2931e5660ec7bf3ad949e6d2e068c31f4737b9525e5201b824ac40cac6a337224856b56bd1ddd866334bbfb92a9f57cd6f66bc3f18d3d86fc0fe50 + languageName: node + linkType: hard + +"through2@npm:^4.0.2": + version: 4.0.2 + resolution: "through2@npm:4.0.2" + dependencies: + readable-stream: 3 + checksum: ac7430bd54ccb7920fd094b1c7ff3e1ad6edd94202e5528331253e5fde0cc56ceaa690e8df9895de2e073148c52dfbe6c4db74cacae812477a35660090960cc0 + languageName: node + linkType: hard + +"thunky@npm:^1.0.2": + version: 1.1.0 + resolution: "thunky@npm:1.1.0" + checksum: 993096c472b6b8f30e29dc777a8d17720e4cab448375041f20c0cb802a09a7fb2217f2a3e8cdc11851faa71c957e2db309357367fc9d7af3cb7a4d00f4b66034 + languageName: node + linkType: hard + +"timers-browserify@npm:^2.0.4": + version: 2.0.12 + resolution: "timers-browserify@npm:2.0.12" + dependencies: + setimmediate: ^1.0.4 + checksum: ec37ae299066bef6c464dcac29c7adafba1999e7227a9bdc4e105a459bee0f0b27234a46bfd7ab4041da79619e06a58433472867a913d01c26f8a203f87cee70 + languageName: node + linkType: hard + +"timsort@npm:^0.3.0": + version: 0.3.0 + resolution: "timsort@npm:0.3.0" + checksum: 1a66cb897dacabd7dd7c91b7e2301498ca9e224de2edb9e42d19f5b17c4b6dc62a8d4cbc64f28be82aaf1541cb5a78ab49aa818f42a2989ebe049a64af731e2a + languageName: node + linkType: hard + +"tiny-warning@npm:^1.0.2": + version: 1.0.3 + resolution: "tiny-warning@npm:1.0.3" + checksum: da62c4acac565902f0624b123eed6dd3509bc9a8d30c06e017104bedcf5d35810da8ff72864400ad19c5c7806fc0a8323c68baf3e326af7cb7d969f846100d71 + languageName: node + linkType: hard + +"tmp-promise@npm:^3.0.2": + version: 3.0.3 + resolution: "tmp-promise@npm:3.0.3" + dependencies: + tmp: ^0.2.0 + checksum: f854f5307dcee6455927ec3da9398f139897faf715c5c6dcee6d9471ae85136983ea06662eba2edf2533bdcb0fca66d16648e79e14381e30c7fb20be9c1aa62c + languageName: node + linkType: hard + +"tmp@npm:^0.2.0": + version: 0.2.1 + resolution: "tmp@npm:0.2.1" + dependencies: + rimraf: ^3.0.0 + checksum: 8b1214654182575124498c87ca986ac53dc76ff36e8f0e0b67139a8d221eaecfdec108c0e6ec54d76f49f1f72ab9325500b246f562b926f85bcdfca8bf35df9e + languageName: node + linkType: hard + +"tmpl@npm:1.0.5": + version: 1.0.5 + resolution: "tmpl@npm:1.0.5" + checksum: cd922d9b853c00fe414c5a774817be65b058d54a2d01ebb415840960406c669a0fc632f66df885e24cb022ec812739199ccbdb8d1164c3e513f85bfca5ab2873 + languageName: node + linkType: hard + +"to-arraybuffer@npm:^1.0.0": + version: 1.0.1 + resolution: "to-arraybuffer@npm:1.0.1" + checksum: 31433c10b388722729f5da04c6b2a06f40dc84f797bb802a5a171ced1e599454099c6c5bc5118f4b9105e7d049d3ad9d0f71182b77650e4fdb04539695489941 + languageName: node + linkType: hard + +"to-fast-properties@npm:^2.0.0": + version: 2.0.0 + resolution: "to-fast-properties@npm:2.0.0" + checksum: be2de62fe58ead94e3e592680052683b1ec986c72d589e7b21e5697f8744cdbf48c266fa72f6c15932894c10187b5f54573a3bcf7da0bfd964d5caf23d436168 + languageName: node + linkType: hard + +"to-object-path@npm:^0.3.0": + version: 0.3.0 + resolution: "to-object-path@npm:0.3.0" + dependencies: + kind-of: ^3.0.2 + checksum: 9425effee5b43e61d720940fa2b889623f77473d459c2ce3d4a580a4405df4403eec7be6b857455908070566352f9e2417304641ed158dda6f6a365fe3e66d70 + languageName: node + linkType: hard + +"to-readable-stream@npm:^1.0.0": + version: 1.0.0 + resolution: "to-readable-stream@npm:1.0.0" + checksum: 2bd7778490b6214a2c40276065dd88949f4cf7037ce3964c76838b8cb212893aeb9cceaaf4352a4c486e3336214c350270f3263e1ce7a0c38863a715a4d9aeb5 + languageName: node + linkType: hard + +"to-regex-range@npm:^2.1.0": + version: 2.1.1 + resolution: "to-regex-range@npm:2.1.1" + dependencies: + is-number: ^3.0.0 + repeat-string: ^1.6.1 + checksum: 46093cc14be2da905cc931e442d280b2e544e2bfdb9a24b3cf821be8d342f804785e5736c108d5be026021a05d7b38144980a61917eee3c88de0a5e710e10320 + languageName: node + linkType: hard + +"to-regex-range@npm:^5.0.1": + version: 5.0.1 + resolution: "to-regex-range@npm:5.0.1" + dependencies: + is-number: ^7.0.0 + checksum: f76fa01b3d5be85db6a2a143e24df9f60dd047d151062d0ba3df62953f2f697b16fe5dad9b0ac6191c7efc7b1d9dcaa4b768174b7b29da89d4428e64bc0a20ed + languageName: node + linkType: hard + +"to-regex@npm:^3.0.1, to-regex@npm:^3.0.2": + version: 3.0.2 + resolution: "to-regex@npm:3.0.2" + dependencies: + define-property: ^2.0.2 + extend-shallow: ^3.0.2 + regex-not: ^1.0.2 + safe-regex: ^1.1.0 + checksum: 4ed4a619059b64e204aad84e4e5f3ea82d97410988bcece7cf6cbfdbf193d11bff48cf53842d88b8bb00b1bfc0d048f61f20f0709e6f393fd8fe0122662d9db4 + languageName: node + linkType: hard + +"toidentifier@npm:1.0.1": + version: 1.0.1 + resolution: "toidentifier@npm:1.0.1" + checksum: 952c29e2a85d7123239b5cfdd889a0dde47ab0497f0913d70588f19c53f7e0b5327c95f4651e413c74b785147f9637b17410ac8c846d5d4a20a5a33eb6dc3a45 + languageName: node + linkType: hard + +"tough-cookie@npm:^4.0.0": + version: 4.1.3 + resolution: "tough-cookie@npm:4.1.3" + dependencies: + psl: ^1.1.33 + punycode: ^2.1.1 + universalify: ^0.2.0 + url-parse: ^1.5.3 + checksum: c9226afff36492a52118432611af083d1d8493a53ff41ec4ea48e5b583aec744b989e4280bcf476c910ec1525a89a4a0f1cae81c08b18fb2ec3a9b3a72b91dcc + languageName: node + linkType: hard + +"tr46@npm:^2.1.0": + version: 2.1.0 + resolution: "tr46@npm:2.1.0" + dependencies: + punycode: ^2.1.1 + checksum: ffe6049b9dca3ae329b059aada7f515b0f0064c611b39b51ff6b53897e954650f6f63d9319c6c008d36ead477c7b55e5f64c9dc60588ddc91ff720d64eb710b3 + languageName: node + linkType: hard + +"tr46@npm:~0.0.3": + version: 0.0.3 + resolution: "tr46@npm:0.0.3" + checksum: 726321c5eaf41b5002e17ffbd1fb7245999a073e8979085dacd47c4b4e8068ff5777142fc6726d6ca1fd2ff16921b48788b87225cbc57c72636f6efa8efbffe3 + languageName: node + linkType: hard + +"tree-kill@npm:^1.2.2": + version: 1.2.2 + resolution: "tree-kill@npm:1.2.2" + bin: + tree-kill: cli.js + checksum: 49117f5f410d19c84b0464d29afb9642c863bc5ba40fcb9a245d474c6d5cc64d1b177a6e6713129eb346b40aebb9d4631d967517f9fbe8251c35b21b13cd96c7 + languageName: node + linkType: hard + +"trim-repeated@npm:^1.0.0": + version: 1.0.0 + resolution: "trim-repeated@npm:1.0.0" + dependencies: + escape-string-regexp: ^1.0.2 + checksum: e25c235305b82c43f1d64a67a71226c406b00281755e4c2c4f3b1d0b09c687a535dd3c4483327f949f28bb89dc400a0bc5e5b749054f4b99f49ebfe48ba36496 + languageName: node + linkType: hard + +"truncate-utf8-bytes@npm:^1.0.0": + version: 1.0.2 + resolution: "truncate-utf8-bytes@npm:1.0.2" + dependencies: + utf8-byte-length: ^1.0.1 + checksum: ad097314709ea98444ad9c80c03aac8da805b894f37ceb5685c49ad297483afe3a5ec9572ebcaff699dda72b6cd447a2ba2a3fd10e96c2628cd16d94abeb328a + languageName: node + linkType: hard + +"tryer@npm:^1.0.1": + version: 1.0.1 + resolution: "tryer@npm:1.0.1" + checksum: 1cf14d7f67c79613f054b569bfc9a89c7020d331573a812dfcf7437244e8f8e6eb6893b210cbd9cc217f67c1d72617f89793df231e4fe7d53634ed91cf3a89d1 + languageName: node + linkType: hard + +"ts-pnp@npm:1.2.0, ts-pnp@npm:^1.1.6": + version: 1.2.0 + resolution: "ts-pnp@npm:1.2.0" + peerDependenciesMeta: + typescript: + optional: true + checksum: c2a698b85d521298fe6f2435fbf2d3dc5834b423ea25abd321805ead3f399dbeedce7ca09492d7eb005b9d2c009c6b9587055bc3ab273dc6b9e40eefd7edb5b2 + languageName: node + linkType: hard + +"tsconfig-paths@npm:^3.14.2": + version: 3.14.2 + resolution: "tsconfig-paths@npm:3.14.2" + dependencies: + "@types/json5": ^0.0.29 + json5: ^1.0.2 + minimist: ^1.2.6 + strip-bom: ^3.0.0 + checksum: a6162eaa1aed680537f93621b82399c7856afd10ec299867b13a0675e981acac4e0ec00896860480efc59fc10fd0b16fdc928c0b885865b52be62cadac692447 + languageName: node + linkType: hard + +"tslib@npm:^1.8.1, tslib@npm:^1.9.0": + version: 1.14.1 + resolution: "tslib@npm:1.14.1" + checksum: dbe628ef87f66691d5d2959b3e41b9ca0045c3ee3c7c7b906cc1e328b39f199bb1ad9e671c39025bd56122ac57dfbf7385a94843b1cc07c60a4db74795829acd + languageName: node + linkType: hard + +"tslib@npm:^2.0.1, tslib@npm:^2.0.3, tslib@npm:^2.1.0, tslib@npm:^2.4.0": + version: 2.6.2 + resolution: "tslib@npm:2.6.2" + checksum: 329ea56123005922f39642318e3d1f0f8265d1e7fcb92c633e0809521da75eeaca28d2cf96d7248229deb40e5c19adf408259f4b9640afd20d13aecc1430f3ad + languageName: node + linkType: hard + +"tsutils@npm:^3.17.1, tsutils@npm:^3.21.0": + version: 3.21.0 + resolution: "tsutils@npm:3.21.0" + dependencies: + tslib: ^1.8.1 + peerDependencies: + typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + checksum: 1843f4c1b2e0f975e08c4c21caa4af4f7f65a12ac1b81b3b8489366826259323feb3fc7a243123453d2d1a02314205a7634e048d4a8009921da19f99755cdc48 + languageName: node + linkType: hard + +"tty-browserify@npm:0.0.0": + version: 0.0.0 + resolution: "tty-browserify@npm:0.0.0" + checksum: a06f746acc419cb2527ba19b6f3bd97b4a208c03823bfb37b2982629d2effe30ebd17eaed0d7e2fc741f3c4f2a0c43455bd5fb4194354b378e78cfb7ca687f59 + languageName: node + linkType: hard + +"tunnel@npm:^0.0.6": + version: 0.0.6 + resolution: "tunnel@npm:0.0.6" + checksum: c362948df9ad34b649b5585e54ce2838fa583aa3037091aaed66793c65b423a264e5229f0d7e9a95513a795ac2bd4cb72cda7e89a74313f182c1e9ae0b0994fa + languageName: node + linkType: hard + +"type-check@npm:^0.4.0, type-check@npm:~0.4.0": + version: 0.4.0 + resolution: "type-check@npm:0.4.0" + dependencies: + prelude-ls: ^1.2.1 + checksum: ec688ebfc9c45d0c30412e41ca9c0cdbd704580eb3a9ccf07b9b576094d7b86a012baebc95681999dd38f4f444afd28504cb3a89f2ef16b31d4ab61a0739025a + languageName: node + linkType: hard + +"type-check@npm:~0.3.2": + version: 0.3.2 + resolution: "type-check@npm:0.3.2" + dependencies: + prelude-ls: ~1.1.2 + checksum: dd3b1495642731bc0e1fc40abe5e977e0263005551ac83342ecb6f4f89551d106b368ec32ad3fb2da19b3bd7b2d1f64330da2ea9176d8ddbfe389fb286eb5124 + languageName: node + linkType: hard + +"type-detect@npm:4.0.8": + version: 4.0.8 + resolution: "type-detect@npm:4.0.8" + checksum: 62b5628bff67c0eb0b66afa371bd73e230399a8d2ad30d852716efcc4656a7516904570cd8631a49a3ce57c10225adf5d0cbdcb47f6b0255fe6557c453925a15 + languageName: node + linkType: hard + +"type-fest@npm:^0.13.1": + version: 0.13.1 + resolution: "type-fest@npm:0.13.1" + checksum: e6bf2e3c449f27d4ef5d56faf8b86feafbc3aec3025fc9a5fbe2db0a2587c44714521f9c30d8516a833c8c506d6263f5cc11267522b10c6ccdb6cc55b0a9d1c4 + languageName: node + linkType: hard + +"type-fest@npm:^0.20.2": + version: 0.20.2 + resolution: "type-fest@npm:0.20.2" + checksum: 4fb3272df21ad1c552486f8a2f8e115c09a521ad7a8db3d56d53718d0c907b62c6e9141ba5f584af3f6830d0872c521357e512381f24f7c44acae583ad517d73 + languageName: node + linkType: hard + +"type-fest@npm:^0.21.3": + version: 0.21.3 + resolution: "type-fest@npm:0.21.3" + checksum: e6b32a3b3877f04339bae01c193b273c62ba7bfc9e325b8703c4ee1b32dc8fe4ef5dfa54bf78265e069f7667d058e360ae0f37be5af9f153b22382cd55a9afe0 + languageName: node + linkType: hard + +"type-fest@npm:^0.3.1": + version: 0.3.1 + resolution: "type-fest@npm:0.3.1" + checksum: 347ff46c2285616635cb59f722e7f396bee81b8988b6fc1f1536b725077f2abf6ccfa22ab7a78e9b6ce7debea0e6614bbf5946cbec6674ec1bde12113af3a65c + languageName: node + linkType: hard + +"type-fest@npm:^0.6.0": + version: 0.6.0 + resolution: "type-fest@npm:0.6.0" + checksum: b2188e6e4b21557f6e92960ec496d28a51d68658018cba8b597bd3ef757721d1db309f120ae987abeeda874511d14b776157ff809f23c6d1ce8f83b9b2b7d60f + languageName: node + linkType: hard + +"type-fest@npm:^0.8.1": + version: 0.8.1 + resolution: "type-fest@npm:0.8.1" + checksum: d61c4b2eba24009033ae4500d7d818a94fd6d1b481a8111612ee141400d5f1db46f199c014766b9fa9b31a6a7374d96fc748c6d688a78a3ce5a33123839becb7 + languageName: node + linkType: hard + +"type-is@npm:~1.6.18": + version: 1.6.18 + resolution: "type-is@npm:1.6.18" + dependencies: + media-typer: 0.3.0 + mime-types: ~2.1.24 + checksum: 2c8e47675d55f8b4e404bcf529abdf5036c537a04c2b20177bcf78c9e3c1da69da3942b1346e6edb09e823228c0ee656ef0e033765ec39a70d496ef601a0c657 + languageName: node + linkType: hard + +"type@npm:^1.0.1": + version: 1.2.0 + resolution: "type@npm:1.2.0" + checksum: dae8c64f82c648b985caf321e9dd6e8b7f4f2e2d4f846fc6fd2c8e9dc7769382d8a52369ddbaccd59aeeceb0df7f52fb339c465be5f2e543e81e810e413451ee + languageName: node + linkType: hard + +"type@npm:^2.7.2": + version: 2.7.2 + resolution: "type@npm:2.7.2" + checksum: 0f42379a8adb67fe529add238a3e3d16699d95b42d01adfe7b9a7c5da297f5c1ba93de39265ba30ffeb37dfd0afb3fb66ae09f58d6515da442219c086219f6f4 + languageName: node + linkType: hard + +"typed-array-buffer@npm:^1.0.0": + version: 1.0.0 + resolution: "typed-array-buffer@npm:1.0.0" + dependencies: + call-bind: ^1.0.2 + get-intrinsic: ^1.2.1 + is-typed-array: ^1.1.10 + checksum: 3e0281c79b2a40cd97fe715db803884301993f4e8c18e8d79d75fd18f796e8cd203310fec8c7fdb5e6c09bedf0af4f6ab8b75eb3d3a85da69328f28a80456bd3 + languageName: node + linkType: hard + +"typed-array-byte-length@npm:^1.0.0": + version: 1.0.0 + resolution: "typed-array-byte-length@npm:1.0.0" + dependencies: + call-bind: ^1.0.2 + for-each: ^0.3.3 + has-proto: ^1.0.1 + is-typed-array: ^1.1.10 + checksum: b03db16458322b263d87a702ff25388293f1356326c8a678d7515767ef563ef80e1e67ce648b821ec13178dd628eb2afdc19f97001ceae7a31acf674c849af94 + languageName: node + linkType: hard + +"typed-array-byte-offset@npm:^1.0.0": + version: 1.0.0 + resolution: "typed-array-byte-offset@npm:1.0.0" + dependencies: + available-typed-arrays: ^1.0.5 + call-bind: ^1.0.2 + for-each: ^0.3.3 + has-proto: ^1.0.1 + is-typed-array: ^1.1.10 + checksum: 04f6f02d0e9a948a95fbfe0d5a70b002191fae0b8fe0fe3130a9b2336f043daf7a3dda56a31333c35a067a97e13f539949ab261ca0f3692c41603a46a94e960b + languageName: node + linkType: hard + +"typed-array-length@npm:^1.0.4": + version: 1.0.4 + resolution: "typed-array-length@npm:1.0.4" + dependencies: + call-bind: ^1.0.2 + for-each: ^0.3.3 + is-typed-array: ^1.1.9 + checksum: 2228febc93c7feff142b8c96a58d4a0d7623ecde6c7a24b2b98eb3170e99f7c7eff8c114f9b283085cd59dcd2bd43aadf20e25bba4b034a53c5bb292f71f8956 + languageName: node + linkType: hard + +"typedarray-to-buffer@npm:^3.1.5": + version: 3.1.5 + resolution: "typedarray-to-buffer@npm:3.1.5" + dependencies: + is-typedarray: ^1.0.0 + checksum: 99c11aaa8f45189fcfba6b8a4825fd684a321caa9bd7a76a27cf0c7732c174d198b99f449c52c3818107430b5f41c0ccbbfb75cb2ee3ca4a9451710986d61a60 + languageName: node + linkType: hard + +"typedarray@npm:^0.0.6": + version: 0.0.6 + resolution: "typedarray@npm:0.0.6" + checksum: 33b39f3d0e8463985eeaeeacc3cb2e28bc3dfaf2a5ed219628c0b629d5d7b810b0eb2165f9f607c34871d5daa92ba1dc69f49051cf7d578b4cbd26c340b9d1b1 + languageName: node + linkType: hard + +"ua-parser-js@npm:^1.0.33": + version: 1.0.36 + resolution: "ua-parser-js@npm:1.0.36" + checksum: 5b2c8a5e3443dfbba7624421805de946457c26ae167cb2275781a2729d1518f7067c9d5c74c3b0acac4b9ff3278cae4eace08ca6eecb63848bc3b2f6a63cc975 + languageName: node + linkType: hard + +"unbox-primitive@npm:^1.0.2": + version: 1.0.2 + resolution: "unbox-primitive@npm:1.0.2" + dependencies: + call-bind: ^1.0.2 + has-bigints: ^1.0.2 + has-symbols: ^1.0.3 + which-boxed-primitive: ^1.0.2 + checksum: b7a1cf5862b5e4b5deb091672ffa579aa274f648410009c81cca63fed3b62b610c4f3b773f912ce545bb4e31edc3138975b5bc777fc6e4817dca51affb6380e9 + languageName: node + linkType: hard + +"underscore@npm:1.12.1": + version: 1.12.1 + resolution: "underscore@npm:1.12.1" + checksum: ec327603aa112b99fe9d74cd9bf3b3b7451465a9d2610ceab269a532e3f191650ab017903be34dc86fe406a11d04d8905a3b04dd4c129493e51bee09a3f3074c + languageName: node + linkType: hard + +"undici-types@npm:~5.25.1": + version: 5.25.3 + resolution: "undici-types@npm:5.25.3" + checksum: ec9d2cc36520cbd9fbe3b3b6c682a87fe5be214699e1f57d1e3d9a2cb5be422e62735f06e0067dc325fd3dd7404c697e4d479f9147dc8a804e049e29f357f2ff + languageName: node + linkType: hard + +"unicode-canonical-property-names-ecmascript@npm:^2.0.0": + version: 2.0.0 + resolution: "unicode-canonical-property-names-ecmascript@npm:2.0.0" + checksum: 39be078afd014c14dcd957a7a46a60061bc37c4508ba146517f85f60361acf4c7539552645ece25de840e17e293baa5556268d091ca6762747fdd0c705001a45 + languageName: node + linkType: hard + +"unicode-match-property-ecmascript@npm:^2.0.0": + version: 2.0.0 + resolution: "unicode-match-property-ecmascript@npm:2.0.0" + dependencies: + unicode-canonical-property-names-ecmascript: ^2.0.0 + unicode-property-aliases-ecmascript: ^2.0.0 + checksum: 1f34a7434a23df4885b5890ac36c5b2161a809887000be560f56ad4b11126d433c0c1c39baf1016bdabed4ec54829a6190ee37aa24919aa116dc1a5a8a62965a + languageName: node + linkType: hard + +"unicode-match-property-value-ecmascript@npm:^2.1.0": + version: 2.1.0 + resolution: "unicode-match-property-value-ecmascript@npm:2.1.0" + checksum: 8d6f5f586b9ce1ed0e84a37df6b42fdba1317a05b5df0c249962bd5da89528771e2d149837cad11aa26bcb84c35355cb9f58a10c3d41fa3b899181ece6c85220 + languageName: node + linkType: hard + +"unicode-property-aliases-ecmascript@npm:^2.0.0": + version: 2.1.0 + resolution: "unicode-property-aliases-ecmascript@npm:2.1.0" + checksum: 243524431893649b62cc674d877bd64ef292d6071dd2fd01ab4d5ad26efbc104ffcd064f93f8a06b7e4ec54c172bf03f6417921a0d8c3a9994161fe1f88f815b + languageName: node + linkType: hard + +"union-value@npm:^1.0.0": + version: 1.0.1 + resolution: "union-value@npm:1.0.1" + dependencies: + arr-union: ^3.1.0 + get-value: ^2.0.6 + is-extendable: ^0.1.1 + set-value: ^2.0.1 + checksum: a3464097d3f27f6aa90cf103ed9387541bccfc006517559381a10e0dffa62f465a9d9a09c9b9c3d26d0f4cbe61d4d010e2fbd710fd4bf1267a768ba8a774b0ba + languageName: node + linkType: hard + +"uniq@npm:^1.0.1": + version: 1.0.1 + resolution: "uniq@npm:1.0.1" + checksum: 8206535f83745ea83f9da7035f3b983fd6ed5e35b8ed7745441944e4065b616bc67cf0d0a23a86b40ee0074426f0607f0a138f9b78e124eb6a7a6a6966055709 + languageName: node + linkType: hard + +"uniqs@npm:^2.0.0": + version: 2.0.0 + resolution: "uniqs@npm:2.0.0" + checksum: 5ace63e0521fd1ae2c161b3fa167cf6846fc45a71c00496729e0146402c3ae467c6f025a68fbd6766300a9bfbac9f240f2f0198164283bef48012b39db83f81f + languageName: node + linkType: hard + +"unique-filename@npm:^1.1.1": + version: 1.1.1 + resolution: "unique-filename@npm:1.1.1" + dependencies: + unique-slug: ^2.0.0 + checksum: cf4998c9228cc7647ba7814e255dec51be43673903897b1786eff2ac2d670f54d4d733357eb08dea969aa5e6875d0e1bd391d668fbdb5a179744e7c7551a6f80 + languageName: node + linkType: hard + +"unique-filename@npm:^3.0.0": + version: 3.0.0 + resolution: "unique-filename@npm:3.0.0" + dependencies: + unique-slug: ^4.0.0 + checksum: 8e2f59b356cb2e54aab14ff98a51ac6c45781d15ceaab6d4f1c2228b780193dc70fae4463ce9e1df4479cb9d3304d7c2043a3fb905bdeca71cc7e8ce27e063df + languageName: node + linkType: hard + +"unique-slug@npm:^2.0.0": + version: 2.0.2 + resolution: "unique-slug@npm:2.0.2" + dependencies: + imurmurhash: ^0.1.4 + checksum: 5b6876a645da08d505dedb970d1571f6cebdf87044cb6b740c8dbb24f0d6e1dc8bdbf46825fd09f994d7cf50760e6f6e063cfa197d51c5902c00a861702eb75a + languageName: node + linkType: hard + +"unique-slug@npm:^4.0.0": + version: 4.0.0 + resolution: "unique-slug@npm:4.0.0" + dependencies: + imurmurhash: ^0.1.4 + checksum: 0884b58365af59f89739e6f71e3feacb5b1b41f2df2d842d0757933620e6de08eff347d27e9d499b43c40476cbaf7988638d3acb2ffbcb9d35fd035591adfd15 + languageName: node + linkType: hard + +"unique-string@npm:^1.0.0": + version: 1.0.0 + resolution: "unique-string@npm:1.0.0" + dependencies: + crypto-random-string: ^1.0.0 + checksum: 588f16bd4ec99b5130f237793d1a5694156adde20460366726573238e41e93b739b87987e863792aeb2392b26f8afb292490ace119c82ed12c46816c9c859f5f + languageName: node + linkType: hard + +"unique-string@npm:^2.0.0": + version: 2.0.0 + resolution: "unique-string@npm:2.0.0" + dependencies: + crypto-random-string: ^2.0.0 + checksum: ef68f639136bcfe040cf7e3cd7a8dff076a665288122855148a6f7134092e6ed33bf83a7f3a9185e46c98dddc445a0da6ac25612afa1a7c38b8b654d6c02498e + languageName: node + linkType: hard + +"universalify@npm:^0.1.0": + version: 0.1.2 + resolution: "universalify@npm:0.1.2" + checksum: 40cdc60f6e61070fe658ca36016a8f4ec216b29bf04a55dce14e3710cc84c7448538ef4dad3728d0bfe29975ccd7bfb5f414c45e7b78883567fb31b246f02dff + languageName: node + linkType: hard + +"universalify@npm:^0.2.0": + version: 0.2.0 + resolution: "universalify@npm:0.2.0" + checksum: e86134cb12919d177c2353196a4cc09981524ee87abf621f7bc8d249dbbbebaec5e7d1314b96061497981350df786e4c5128dbf442eba104d6e765bc260678b5 + languageName: node + linkType: hard + +"universalify@npm:^2.0.0": + version: 2.0.0 + resolution: "universalify@npm:2.0.0" + checksum: 2406a4edf4a8830aa6813278bab1f953a8e40f2f63a37873ffa9a3bc8f9745d06cc8e88f3572cb899b7e509013f7f6fcc3e37e8a6d914167a5381d8440518c44 + languageName: node + linkType: hard + +"unpipe@npm:1.0.0, unpipe@npm:~1.0.0": + version: 1.0.0 + resolution: "unpipe@npm:1.0.0" + checksum: 4fa18d8d8d977c55cb09715385c203197105e10a6d220087ec819f50cb68870f02942244f1017565484237f1f8c5d3cd413631b1ae104d3096f24fdfde1b4aa2 + languageName: node + linkType: hard + +"unquote@npm:~1.1.1": + version: 1.1.1 + resolution: "unquote@npm:1.1.1" + checksum: 71745867d09cba44ba2d26cb71d6dda7045a98b14f7405df4faaf2b0c90d24703ad027a9d90ba9a6e0d096de2c8d56f864fd03f1c0498c0b7a3990f73b4c8f5f + languageName: node + linkType: hard + +"unset-value@npm:^1.0.0": + version: 1.0.0 + resolution: "unset-value@npm:1.0.0" + dependencies: + has-value: ^0.3.1 + isobject: ^3.0.0 + checksum: 5990ecf660672be2781fc9fb322543c4aa592b68ed9a3312fa4df0e9ba709d42e823af090fc8f95775b4cd2c9a5169f7388f0cec39238b6d0d55a69fc2ab6b29 + languageName: node + linkType: hard + +"untildify@npm:^4.0.0": + version: 4.0.0 + resolution: "untildify@npm:4.0.0" + checksum: 39ced9c418a74f73f0a56e1ba4634b4d959422dff61f4c72a8e39f60b99380c1b45ed776fbaa0a4101b157e4310d873ad7d114e8534ca02609b4916bb4187fb9 + languageName: node + linkType: hard + +"upath@npm:^1.1.1, upath@npm:^1.1.2, upath@npm:^1.2.0": + version: 1.2.0 + resolution: "upath@npm:1.2.0" + checksum: 4c05c094797cb733193a0784774dbea5b1889d502fc9f0572164177e185e4a59ba7099bf0b0adf945b232e2ac60363f9bf18aac9b2206fb99cbef971a8455445 + languageName: node + linkType: hard + +"update-browserslist-db@npm:^1.0.13": + version: 1.0.13 + resolution: "update-browserslist-db@npm:1.0.13" + dependencies: + escalade: ^3.1.1 + picocolors: ^1.0.0 + peerDependencies: + browserslist: ">= 4.21.0" + bin: + update-browserslist-db: cli.js + checksum: 1e47d80182ab6e4ad35396ad8b61008ae2a1330221175d0abd37689658bdb61af9b705bfc41057fd16682474d79944fb2d86767c5ed5ae34b6276b9bed353322 + languageName: node + linkType: hard + +"update-notifier@npm:^5.1.0": + version: 5.1.0 + resolution: "update-notifier@npm:5.1.0" + dependencies: + boxen: ^5.0.0 + chalk: ^4.1.0 + configstore: ^5.0.1 + has-yarn: ^2.1.0 + import-lazy: ^2.1.0 + is-ci: ^2.0.0 + is-installed-globally: ^0.4.0 + is-npm: ^5.0.0 + is-yarn-global: ^0.3.0 + latest-version: ^5.1.0 + pupa: ^2.1.1 + semver: ^7.3.4 + semver-diff: ^3.1.1 + xdg-basedir: ^4.0.0 + checksum: 461e5e5b002419296d3868ee2abe0f9ab3e1846d9db642936d0c46f838872ec56069eddfe662c45ce1af0a8d6d5026353728de2e0a95ab2e3546a22ea077caf1 + languageName: node + linkType: hard + +"uri-js@npm:^4.2.2": + version: 4.4.1 + resolution: "uri-js@npm:4.4.1" + dependencies: + punycode: ^2.1.0 + checksum: 7167432de6817fe8e9e0c9684f1d2de2bb688c94388f7569f7dbdb1587c9f4ca2a77962f134ec90be0cc4d004c939ff0d05acc9f34a0db39a3c797dada262633 + languageName: node + linkType: hard + +"urix@npm:^0.1.0": + version: 0.1.0 + resolution: "urix@npm:0.1.0" + checksum: 4c076ecfbf3411e888547fe844e52378ab5ada2d2f27625139011eada79925e77f7fbf0e4016d45e6a9e9adb6b7e64981bd49b22700c7c401c5fc15f423303b3 + languageName: node + linkType: hard + +"url-loader@npm:4.1.1": + version: 4.1.1 + resolution: "url-loader@npm:4.1.1" + dependencies: + loader-utils: ^2.0.0 + mime-types: ^2.1.27 + schema-utils: ^3.0.0 + peerDependencies: + file-loader: "*" + webpack: ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + file-loader: + optional: true + checksum: c1122a992c6cff70a7e56dfc2b7474534d48eb40b2cc75467cde0c6972e7597faf8e43acb4f45f93c2473645dfd803bcbc20960b57544dd1e4c96e77f72ba6fd + languageName: node + linkType: hard + +"url-parse-lax@npm:^3.0.0": + version: 3.0.0 + resolution: "url-parse-lax@npm:3.0.0" + dependencies: + prepend-http: ^2.0.0 + checksum: 1040e357750451173132228036aff1fd04abbd43eac1fb3e4fca7495a078bcb8d33cb765fe71ad7e473d9c94d98fd67adca63bd2716c815a2da066198dd37217 + languageName: node + linkType: hard + +"url-parse@npm:^1.5.10, url-parse@npm:^1.5.3": + version: 1.5.10 + resolution: "url-parse@npm:1.5.10" + dependencies: + querystringify: ^2.1.1 + requires-port: ^1.0.0 + checksum: fbdba6b1d83336aca2216bbdc38ba658d9cfb8fc7f665eb8b17852de638ff7d1a162c198a8e4ed66001ddbf6c9888d41e4798912c62b4fd777a31657989f7bdf + languageName: node + linkType: hard + +"url@npm:^0.11.0": + version: 0.11.3 + resolution: "url@npm:0.11.3" + dependencies: + punycode: ^1.4.1 + qs: ^6.11.2 + checksum: f9e7886f46a16f96d2e42fbcc5d682c231c55ef5442c1ff66150c0f6556f6e3a97d094a84f51be15ec2432711d212eb60426659ce418f5fcadeaa3f601532c4e + languageName: node + linkType: hard + +"use-composed-ref@npm:^1.3.0": + version: 1.3.0 + resolution: "use-composed-ref@npm:1.3.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + checksum: f771cbadfdc91e03b7ab9eb32d0fc0cc647755711801bf507e891ad38c4bbc5f02b2509acadf9c965ec9c5f2f642fd33bdfdfb17b0873c4ad0a9b1f5e5e724bf + languageName: node + linkType: hard + +"use-isomorphic-layout-effect@npm:^1.1.1, use-isomorphic-layout-effect@npm:^1.1.2": + version: 1.1.2 + resolution: "use-isomorphic-layout-effect@npm:1.1.2" + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + checksum: a6532f7fc9ae222c3725ff0308aaf1f1ddbd3c00d685ef9eee6714fd0684de5cb9741b432fbf51e61a784e2955424864f7ea9f99734a02f237b17ad3e18ea5cb + languageName: node + linkType: hard + +"use-latest@npm:^1.2.1": + version: 1.2.1 + resolution: "use-latest@npm:1.2.1" + dependencies: + use-isomorphic-layout-effect: ^1.1.1 + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + checksum: ed3f2ddddf6f21825e2ede4c2e0f0db8dcce5129802b69d1f0575fc1b42380436e8c76a6cd885d4e9aa8e292e60fb8b959c955f33c6a9123b83814a1a1875367 + languageName: node + linkType: hard + +"use@npm:^3.1.0": + version: 3.1.1 + resolution: "use@npm:3.1.1" + checksum: 08a130289f5238fcbf8f59a18951286a6e660d17acccc9d58d9b69dfa0ee19aa038e8f95721b00b432c36d1629a9e32a464bf2e7e0ae6a244c42ddb30bdd8b33 + languageName: node + linkType: hard + +"utf8-byte-length@npm:^1.0.1": + version: 1.0.4 + resolution: "utf8-byte-length@npm:1.0.4" + checksum: f188ca076ec094d58e7009fcc32623c5830c7f0f3e15802bfa4fdd1e759454a481fc4ac05e0fa83b7736e77af628a9ee0e57dcc89683d688fde3811473e42143 + languageName: node + linkType: hard + +"util-deprecate@npm:^1.0.1, util-deprecate@npm:^1.0.2, util-deprecate@npm:~1.0.1": + version: 1.0.2 + resolution: "util-deprecate@npm:1.0.2" + checksum: 474acf1146cb2701fe3b074892217553dfcf9a031280919ba1b8d651a068c9b15d863b7303cb15bd00a862b498e6cf4ad7b4a08fb134edd5a6f7641681cb54a2 + languageName: node + linkType: hard + +"util.promisify@npm:1.0.0": + version: 1.0.0 + resolution: "util.promisify@npm:1.0.0" + dependencies: + define-properties: ^1.1.2 + object.getownpropertydescriptors: ^2.0.3 + checksum: 482e857d676adee506c5c3a10212fd6a06a51d827a9b6d5396a8e593db53b4bb7064f77c5071357d8cd76072542de5cc1c08bc6d7c10cf43fa22dc3bc67556f1 + languageName: node + linkType: hard + +"util.promisify@npm:~1.0.0": + version: 1.0.1 + resolution: "util.promisify@npm:1.0.1" + dependencies: + define-properties: ^1.1.3 + es-abstract: ^1.17.2 + has-symbols: ^1.0.1 + object.getownpropertydescriptors: ^2.1.0 + checksum: d823c75b3fc66510018596f128a6592c98991df38bc0464a633bdf9134e2de0a1a33199c5c21cc261048a3982d7a19e032ecff8835b3c587f843deba96063e37 + languageName: node + linkType: hard + +"util@npm:^0.10.4": + version: 0.10.4 + resolution: "util@npm:0.10.4" + dependencies: + inherits: 2.0.3 + checksum: 913f9a90d05a60e91f91af01b8bd37e06bca4cc02d7b49e01089f9d5b78be2fffd61fb1a41b517de7238c5fc7337fa939c62d1fb4eb82e014894c7bee6637aaf + languageName: node + linkType: hard + +"util@npm:^0.11.0": + version: 0.11.1 + resolution: "util@npm:0.11.1" + dependencies: + inherits: 2.0.3 + checksum: 80bee6a2edf5ab08dcb97bfe55ca62289b4e66f762ada201f2c5104cb5e46474c8b334f6504d055c0e6a8fda10999add9bcbd81ba765e7f37b17dc767331aa55 + languageName: node + linkType: hard + +"utila@npm:~0.4": + version: 0.4.0 + resolution: "utila@npm:0.4.0" + checksum: 97ffd3bd2bb80c773429d3fb8396469115cd190dded1e733f190d8b602bd0a1bcd6216b7ce3c4395ee3c79e3c879c19d268dbaae3093564cb169ad1212d436f4 + languageName: node + linkType: hard + +"utils-merge@npm:1.0.1": + version: 1.0.1 + resolution: "utils-merge@npm:1.0.1" + checksum: c81095493225ecfc28add49c106ca4f09cdf56bc66731aa8dabc2edbbccb1e1bfe2de6a115e5c6a380d3ea166d1636410b62ef216bb07b3feb1cfde1d95d5080 + languageName: node + linkType: hard + +"uuid@npm:^3.3.2": + version: 3.4.0 + resolution: "uuid@npm:3.4.0" + bin: + uuid: ./bin/uuid + checksum: 58de2feed61c59060b40f8203c0e4ed7fd6f99d42534a499f1741218a1dd0c129f4aa1de797bcf822c8ea5da7e4137aa3673431a96dae729047f7aca7b27866f + languageName: node + linkType: hard + +"uuid@npm:^8.3.0, uuid@npm:^8.3.2": + version: 8.3.2 + resolution: "uuid@npm:8.3.2" + bin: + uuid: dist/bin/uuid + checksum: 5575a8a75c13120e2f10e6ddc801b2c7ed7d8f3c8ac22c7ed0c7b2ba6383ec0abda88c905085d630e251719e0777045ae3236f04c812184b7c765f63a70e58df + languageName: node + linkType: hard + +"v8-compile-cache@npm:^2.0.3": + version: 2.4.0 + resolution: "v8-compile-cache@npm:2.4.0" + checksum: 8eb6ddb59d86f24566503f1e6ca98f3e6f43599f05359bd3ab737eaaf1585b338091478a4d3d5c2646632cf8030288d7888684ea62238cdce15a65ae2416718f + languageName: node + linkType: hard + +"v8-to-istanbul@npm:^7.0.0": + version: 7.1.2 + resolution: "v8-to-istanbul@npm:7.1.2" + dependencies: + "@types/istanbul-lib-coverage": ^2.0.1 + convert-source-map: ^1.6.0 + source-map: ^0.7.3 + checksum: e52b48764f55aed62ff87f2b5f710c874f992cd1313eac8f438bf65aeeb0689153d85bb76e39514fd90ba3521d6ebea929a8ae1339b6d7b0cf18fb0ed13d8b40 + languageName: node + linkType: hard + +"validate-npm-package-license@npm:^3.0.1": + version: 3.0.4 + resolution: "validate-npm-package-license@npm:3.0.4" + dependencies: + spdx-correct: ^3.0.0 + spdx-expression-parse: ^3.0.0 + checksum: 35703ac889d419cf2aceef63daeadbe4e77227c39ab6287eeb6c1b36a746b364f50ba22e88591f5d017bc54685d8137bc2d328d0a896e4d3fd22093c0f32a9ad + languageName: node + linkType: hard + +"vary@npm:~1.1.2": + version: 1.1.2 + resolution: "vary@npm:1.1.2" + checksum: ae0123222c6df65b437669d63dfa8c36cee20a504101b2fcd97b8bf76f91259c17f9f2b4d70a1e3c6bbcee7f51b28392833adb6b2770b23b01abec84e369660b + languageName: node + linkType: hard + +"vendors@npm:^1.0.0": + version: 1.0.4 + resolution: "vendors@npm:1.0.4" + checksum: 4b16e0bc18dbdd7ac8dd745c776c08f6c73e9a7f620ffd9faf94a3d86a35feaf4c6cb1bbdb304d2381548a30d0abe69b83eeb1b7b1bf5bb33935e64b28812681 + languageName: node + linkType: hard + +"verror@npm:^1.10.0": + version: 1.10.1 + resolution: "verror@npm:1.10.1" + dependencies: + assert-plus: ^1.0.0 + core-util-is: 1.0.2 + extsprintf: ^1.2.0 + checksum: 690a8d6ad5a4001672290e9719e3107c86269bc45fe19f844758eecf502e59f8aa9631b19b839f6d3dea562334884d22d1eb95ae7c863032075a9212c889e116 + languageName: node + linkType: hard + +"vm-browserify@npm:^1.0.1": + version: 1.1.2 + resolution: "vm-browserify@npm:1.1.2" + checksum: 10a1c50aab54ff8b4c9042c15fc64aefccce8d2fb90c0640403242db0ee7fb269f9b102bdb69cfb435d7ef3180d61fd4fb004a043a12709abaf9056cfd7e039d + languageName: node + linkType: hard + +"w3c-hr-time@npm:^1.0.2": + version: 1.0.2 + resolution: "w3c-hr-time@npm:1.0.2" + dependencies: + browser-process-hrtime: ^1.0.0 + checksum: ec3c2dacbf8050d917bbf89537a101a08c2e333b4c19155f7d3bedde43529d4339db6b3d049d9610789cb915f9515f8be037e0c54c079e9d4735c50b37ed52b9 + languageName: node + linkType: hard + +"w3c-xmlserializer@npm:^2.0.0": + version: 2.0.0 + resolution: "w3c-xmlserializer@npm:2.0.0" + dependencies: + xml-name-validator: ^3.0.0 + checksum: ae25c51cf71f1fb2516df1ab33a481f83461a117565b95e3d0927432522323f93b1b2846cbb60196d337970c421adb604fc2d0d180c6a47a839da01db5b9973b + languageName: node + linkType: hard + +"wait-on@npm:^6.0.0": + version: 6.0.1 + resolution: "wait-on@npm:6.0.1" + dependencies: + axios: ^0.25.0 + joi: ^17.6.0 + lodash: ^4.17.21 + minimist: ^1.2.5 + rxjs: ^7.5.4 + bin: + wait-on: bin/wait-on + checksum: e4d62aa4145d99fe34747ccf7506d4b4d6e60dd677c0eb18a51e316d38116ace2d194e4b22a9eb7b767b0282f39878ddcc4ae9440dcb0c005c9150668747cf5b + languageName: node + linkType: hard + +"walker@npm:^1.0.7, walker@npm:~1.0.5": + version: 1.0.8 + resolution: "walker@npm:1.0.8" + dependencies: + makeerror: 1.0.12 + checksum: ad7a257ea1e662e57ef2e018f97b3c02a7240ad5093c392186ce0bcf1f1a60bbadd520d073b9beb921ed99f64f065efb63dfc8eec689a80e569f93c1c5d5e16c + languageName: node + linkType: hard + +"watchpack-chokidar2@npm:^2.0.1": + version: 2.0.1 + resolution: "watchpack-chokidar2@npm:2.0.1" + dependencies: + chokidar: ^2.1.8 + checksum: acf0f9ebca0c0b2fd1fe87ba557670477a6c0410bf1a653a726e68eb0620aa94fd9a43027a160a76bc793a21ea12e215e1e87dafe762682c13ef92ad4daf7b58 + languageName: node + linkType: hard + +"watchpack@npm:^1.7.4": + version: 1.7.5 + resolution: "watchpack@npm:1.7.5" + dependencies: + chokidar: ^3.4.1 + graceful-fs: ^4.1.2 + neo-async: ^2.5.0 + watchpack-chokidar2: ^2.0.1 + dependenciesMeta: + chokidar: + optional: true + watchpack-chokidar2: + optional: true + checksum: 8b7cb8c8df8f4dd0e8ac47693c0141c4f020a4b031411247d600eca31522fde6f1f9a3a6f6518b46e71f7971b0ed5734c08c60d7fdd2530e7262776286f69236 + languageName: node + linkType: hard + +"wbuf@npm:^1.1.0, wbuf@npm:^1.7.3": + version: 1.7.3 + resolution: "wbuf@npm:1.7.3" + dependencies: + minimalistic-assert: ^1.0.0 + checksum: 2abc306c96930b757972a1c4650eb6b25b5d99f24088714957f88629e137db569368c5de0e57986c89ea70db2f1df9bba11a87cb6d0c8694b6f53a0159fab3bf + languageName: node + linkType: hard + +"web-vitals@npm:^1.1.2": + version: 1.1.2 + resolution: "web-vitals@npm:1.1.2" + checksum: 92071029089277166e11141b735831d9011e85737d32c1360034676db898ab0ca95f19041ee01904f2189ad6e711b9da6b17567e4831290a429a586c98bc573f + languageName: node + linkType: hard + +"webidl-conversions@npm:^3.0.0": + version: 3.0.1 + resolution: "webidl-conversions@npm:3.0.1" + checksum: c92a0a6ab95314bde9c32e1d0a6dfac83b578f8fa5f21e675bc2706ed6981bc26b7eb7e6a1fab158e5ce4adf9caa4a0aee49a52505d4d13c7be545f15021b17c + languageName: node + linkType: hard + +"webidl-conversions@npm:^5.0.0": + version: 5.0.0 + resolution: "webidl-conversions@npm:5.0.0" + checksum: ccf1ec2ca7c0b5671e5440ace4a66806ae09c49016ab821481bec0c05b1b82695082dc0a27d1fe9d804d475a408ba0c691e6803fd21be608e710955d4589cd69 + languageName: node + linkType: hard + +"webidl-conversions@npm:^6.1.0": + version: 6.1.0 + resolution: "webidl-conversions@npm:6.1.0" + checksum: 1f526507aa491f972a0c1409d07f8444e1d28778dfa269a9971f2e157182f3d496dc33296e4ed45b157fdb3bf535bb90c90bf10c50dcf1dd6caacb2a34cc84fb + languageName: node + linkType: hard + +"webpack-dev-middleware@npm:^3.7.2": + version: 3.7.3 + resolution: "webpack-dev-middleware@npm:3.7.3" + dependencies: + memory-fs: ^0.4.1 + mime: ^2.4.4 + mkdirp: ^0.5.1 + range-parser: ^1.2.1 + webpack-log: ^2.0.0 + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + checksum: faa3cdd7b82d23c35b8f45903556eadd92b0795c76f3e08e234d53f7bab3de13331096a71968e7e9905770ae5de7a4f75ddf09f66d1e0bbabfecbb30db0f71e3 + languageName: node + linkType: hard + +"webpack-dev-server@npm:3.11.1": + version: 3.11.1 + resolution: "webpack-dev-server@npm:3.11.1" + dependencies: + ansi-html: 0.0.7 + bonjour: ^3.5.0 + chokidar: ^2.1.8 + compression: ^1.7.4 + connect-history-api-fallback: ^1.6.0 + debug: ^4.1.1 + del: ^4.1.1 + express: ^4.17.1 + html-entities: ^1.3.1 + http-proxy-middleware: 0.19.1 + import-local: ^2.0.0 + internal-ip: ^4.3.0 + ip: ^1.1.5 + is-absolute-url: ^3.0.3 + killable: ^1.0.1 + loglevel: ^1.6.8 + opn: ^5.5.0 + p-retry: ^3.0.1 + portfinder: ^1.0.26 + schema-utils: ^1.0.0 + selfsigned: ^1.10.8 + semver: ^6.3.0 + serve-index: ^1.9.1 + sockjs: ^0.3.21 + sockjs-client: ^1.5.0 + spdy: ^4.0.2 + strip-ansi: ^3.0.1 + supports-color: ^6.1.0 + url: ^0.11.0 + webpack-dev-middleware: ^3.7.2 + webpack-log: ^2.0.0 + ws: ^6.2.1 + yargs: ^13.3.2 + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + webpack-cli: + optional: true + bin: + webpack-dev-server: bin/webpack-dev-server.js + checksum: 6c6e6b6c207c192585f9943fc9945058832a39a12bbf0368798d73a96264b813ab816cb14985c1ca3c90cc567f59fcad6f2fada8f30f2f0136904cfaf43eb87d + languageName: node + linkType: hard + +"webpack-log@npm:^2.0.0": + version: 2.0.0 + resolution: "webpack-log@npm:2.0.0" + dependencies: + ansi-colors: ^3.0.0 + uuid: ^3.3.2 + checksum: 4757179310995e20633ec2d77a8c1ac11e4135c84745f57148692f8195f1c0f8ec122c77d0dc16fc484b7d301df6674f36c9fc6b1ff06b5cf142abaaf5d24f4f + languageName: node + linkType: hard + +"webpack-manifest-plugin@npm:2.2.0": + version: 2.2.0 + resolution: "webpack-manifest-plugin@npm:2.2.0" + dependencies: + fs-extra: ^7.0.0 + lodash: ">=3.5 <5" + object.entries: ^1.1.0 + tapable: ^1.0.0 + peerDependencies: + webpack: 2 || 3 || 4 + checksum: ed1387774031a59bc1bd5f79150e7a49dcf5048a6d5e9652672637bed7f93df6220cbd88b2e371e7c8c8e7640b3a8ed6895f771c6b05a8bb90b721f82001ac25 + languageName: node + linkType: hard + +"webpack-sources@npm:^1.1.0, webpack-sources@npm:^1.3.0, webpack-sources@npm:^1.4.0, webpack-sources@npm:^1.4.1, webpack-sources@npm:^1.4.3": + version: 1.4.3 + resolution: "webpack-sources@npm:1.4.3" + dependencies: + source-list-map: ^2.0.0 + source-map: ~0.6.1 + checksum: 37463dad8d08114930f4bc4882a9602941f07c9f0efa9b6bc78738cd936275b990a596d801ef450d022bb005b109b9f451dd087db2f3c9baf53e8e22cf388f79 + languageName: node + linkType: hard + +"webpack@npm:4.44.2": + version: 4.44.2 + resolution: "webpack@npm:4.44.2" + dependencies: + "@webassemblyjs/ast": 1.9.0 + "@webassemblyjs/helper-module-context": 1.9.0 + "@webassemblyjs/wasm-edit": 1.9.0 + "@webassemblyjs/wasm-parser": 1.9.0 + acorn: ^6.4.1 + ajv: ^6.10.2 + ajv-keywords: ^3.4.1 + chrome-trace-event: ^1.0.2 + enhanced-resolve: ^4.3.0 + eslint-scope: ^4.0.3 + json-parse-better-errors: ^1.0.2 + loader-runner: ^2.4.0 + loader-utils: ^1.2.3 + memory-fs: ^0.4.1 + micromatch: ^3.1.10 + mkdirp: ^0.5.3 + neo-async: ^2.6.1 + node-libs-browser: ^2.2.1 + schema-utils: ^1.0.0 + tapable: ^1.1.3 + terser-webpack-plugin: ^1.4.3 + watchpack: ^1.7.4 + webpack-sources: ^1.4.1 + peerDependenciesMeta: + webpack-cli: + optional: true + webpack-command: + optional: true + bin: + webpack: bin/webpack.js + checksum: 3d42ee6af7a0ff14fc00136d02f4a36381fd5b6ad0636b95a8b83e6d99bc7e02f888f4994c095ae986e567033fe7bb1d445e27afe49d2872b8fe5c3a57d20de6 + languageName: node + linkType: hard + +"websocket-driver@npm:>=0.5.1, websocket-driver@npm:^0.7.4": + version: 0.7.4 + resolution: "websocket-driver@npm:0.7.4" + dependencies: + http-parser-js: ">=0.5.1" + safe-buffer: ">=5.1.0" + websocket-extensions: ">=0.1.1" + checksum: fffe5a33fe8eceafd21d2a065661d09e38b93877eae1de6ab5d7d2734c6ed243973beae10ae48c6613cfd675f200e5a058d1e3531bc9e6c5d4f1396ff1f0bfb9 + languageName: node + linkType: hard + +"websocket-extensions@npm:>=0.1.1": + version: 0.1.4 + resolution: "websocket-extensions@npm:0.1.4" + checksum: 5976835e68a86afcd64c7a9762ed85f2f27d48c488c707e67ba85e717b90fa066b98ab33c744d64255c9622d349eedecf728e65a5f921da71b58d0e9591b9038 + languageName: node + linkType: hard + +"whatwg-encoding@npm:^1.0.5": + version: 1.0.5 + resolution: "whatwg-encoding@npm:1.0.5" + dependencies: + iconv-lite: 0.4.24 + checksum: 5be4efe111dce29ddee3448d3915477fcc3b28f991d9cf1300b4e50d6d189010d47bca2f51140a844cf9b726e8f066f4aee72a04d687bfe4f2ee2767b2f5b1e6 + languageName: node + linkType: hard + +"whatwg-fetch@npm:2.0.4": + version: 2.0.4 + resolution: "whatwg-fetch@npm:2.0.4" + checksum: de7c65a68d7d62e2f144a6b30293370b3ad82b65ebcd68f2ac8e8bbe7ede90febd98ba9486b78c1cbc950e0e8838fa5c2727f939899ab3fc7b71a04be52d33a5 + languageName: node + linkType: hard + +"whatwg-fetch@npm:^3.4.1": + version: 3.6.19 + resolution: "whatwg-fetch@npm:3.6.19" + checksum: 2896bc9ca867ea514392c73e2a272f65d5c4916248fe0837a9df5b1b92f247047bc76cf7c29c28a01ac6c5fb4314021d2718958c8a08292a96d56f72b2f56806 + languageName: node + linkType: hard + +"whatwg-mimetype@npm:^2.3.0": + version: 2.3.0 + resolution: "whatwg-mimetype@npm:2.3.0" + checksum: 23eb885940bcbcca4ff841c40a78e9cbb893ec42743993a42bf7aed16085b048b44b06f3402018931687153550f9a32d259dfa524e4f03577ab898b6965e5383 + languageName: node + linkType: hard + +"whatwg-url@npm:^5.0.0": + version: 5.0.0 + resolution: "whatwg-url@npm:5.0.0" + dependencies: + tr46: ~0.0.3 + webidl-conversions: ^3.0.0 + checksum: b8daed4ad3356cc4899048a15b2c143a9aed0dfae1f611ebd55073310c7b910f522ad75d727346ad64203d7e6c79ef25eafd465f4d12775ca44b90fa82ed9e2c + languageName: node + linkType: hard + +"whatwg-url@npm:^8.0.0, whatwg-url@npm:^8.5.0": + version: 8.7.0 + resolution: "whatwg-url@npm:8.7.0" + dependencies: + lodash: ^4.7.0 + tr46: ^2.1.0 + webidl-conversions: ^6.1.0 + checksum: a87abcc6cefcece5311eb642858c8fdb234e51ec74196bfacf8def2edae1bfbffdf6acb251646ed6301f8cee44262642d8769c707256125a91387e33f405dd1e + languageName: node + linkType: hard + +"which-boxed-primitive@npm:^1.0.2": + version: 1.0.2 + resolution: "which-boxed-primitive@npm:1.0.2" + dependencies: + is-bigint: ^1.0.1 + is-boolean-object: ^1.1.0 + is-number-object: ^1.0.4 + is-string: ^1.0.5 + is-symbol: ^1.0.3 + checksum: 53ce774c7379071729533922adcca47220228405e1895f26673bbd71bdf7fb09bee38c1d6399395927c6289476b5ae0629863427fd151491b71c4b6cb04f3a5e + languageName: node + linkType: hard + +"which-builtin-type@npm:^1.1.3": + version: 1.1.3 + resolution: "which-builtin-type@npm:1.1.3" + dependencies: + function.prototype.name: ^1.1.5 + has-tostringtag: ^1.0.0 + is-async-function: ^2.0.0 + is-date-object: ^1.0.5 + is-finalizationregistry: ^1.0.2 + is-generator-function: ^1.0.10 + is-regex: ^1.1.4 + is-weakref: ^1.0.2 + isarray: ^2.0.5 + which-boxed-primitive: ^1.0.2 + which-collection: ^1.0.1 + which-typed-array: ^1.1.9 + checksum: 43730f7d8660ff9e33d1d3f9f9451c4784265ee7bf222babc35e61674a11a08e1c2925019d6c03154fcaaca4541df43abe35d2720843b9b4cbcebdcc31408f36 + languageName: node + linkType: hard + +"which-collection@npm:^1.0.1": + version: 1.0.1 + resolution: "which-collection@npm:1.0.1" + dependencies: + is-map: ^2.0.1 + is-set: ^2.0.1 + is-weakmap: ^2.0.1 + is-weakset: ^2.0.1 + checksum: c815bbd163107ef9cb84f135e6f34453eaf4cca994e7ba85ddb0d27cea724c623fae2a473ceccfd5549c53cc65a5d82692de418166df3f858e1e5dc60818581c + languageName: node + linkType: hard + +"which-module@npm:^2.0.0": + version: 2.0.1 + resolution: "which-module@npm:2.0.1" + checksum: 1967b7ce17a2485544a4fdd9063599f0f773959cca24176dbe8f405e55472d748b7c549cd7920ff6abb8f1ab7db0b0f1b36de1a21c57a8ff741f4f1e792c52be + languageName: node + linkType: hard + +"which-typed-array@npm:^1.1.11, which-typed-array@npm:^1.1.13, which-typed-array@npm:^1.1.9": + version: 1.1.13 + resolution: "which-typed-array@npm:1.1.13" + dependencies: + available-typed-arrays: ^1.0.5 + call-bind: ^1.0.4 + for-each: ^0.3.3 + gopd: ^1.0.1 + has-tostringtag: ^1.0.0 + checksum: 3828a0d5d72c800e369d447e54c7620742a4cc0c9baf1b5e8c17e9b6ff90d8d861a3a6dd4800f1953dbf80e5e5cec954a289e5b4a223e3bee4aeb1f8c5f33309 + languageName: node + linkType: hard + +"which@npm:^1.2.9, which@npm:^1.3.1": + version: 1.3.1 + resolution: "which@npm:1.3.1" + dependencies: + isexe: ^2.0.0 + bin: + which: ./bin/which + checksum: f2e185c6242244b8426c9df1510e86629192d93c1a986a7d2a591f2c24869e7ffd03d6dac07ca863b2e4c06f59a4cc9916c585b72ee9fa1aa609d0124df15e04 + languageName: node + linkType: hard + +"which@npm:^2.0.1, which@npm:^2.0.2": + version: 2.0.2 + resolution: "which@npm:2.0.2" + dependencies: + isexe: ^2.0.0 + bin: + node-which: ./bin/node-which + checksum: 1a5c563d3c1b52d5f893c8b61afe11abc3bab4afac492e8da5bde69d550de701cf9806235f20a47b5c8fa8a1d6a9135841de2596535e998027a54589000e66d1 + languageName: node + linkType: hard + +"wide-align@npm:^1.1.2, wide-align@npm:^1.1.5": + version: 1.1.5 + resolution: "wide-align@npm:1.1.5" + dependencies: + string-width: ^1.0.2 || 2 || 3 || 4 + checksum: d5fc37cd561f9daee3c80e03b92ed3e84d80dde3365a8767263d03dacfc8fa06b065ffe1df00d8c2a09f731482fcacae745abfbb478d4af36d0a891fad4834d3 + languageName: node + linkType: hard + +"widest-line@npm:^3.1.0": + version: 3.1.0 + resolution: "widest-line@npm:3.1.0" + dependencies: + string-width: ^4.0.0 + checksum: 03db6c9d0af9329c37d74378ff1d91972b12553c7d72a6f4e8525fe61563fa7adb0b9d6e8d546b7e059688712ea874edd5ded475999abdeedf708de9849310e0 + languageName: node + linkType: hard + +"window-size@npm:^0.1.4": + version: 0.1.4 + resolution: "window-size@npm:0.1.4" + bin: + window-size: cli.js + checksum: 409accca0b1373c69897400e3cc6a56a2acc8a6ba9009f0cd8e4adda4ebf308e50425d3bd375c0c08efb803c8f0b09d84d7266faa05422b3fadfe6ee422d0aef + languageName: node + linkType: hard + +"word-wrap@npm:~1.2.3": + version: 1.2.5 + resolution: "word-wrap@npm:1.2.5" + checksum: f93ba3586fc181f94afdaff3a6fef27920b4b6d9eaefed0f428f8e07adea2a7f54a5f2830ce59406c8416f033f86902b91eb824072354645eea687dff3691ccb + languageName: node + linkType: hard + +"workbox-background-sync@npm:^5.1.4": + version: 5.1.4 + resolution: "workbox-background-sync@npm:5.1.4" + dependencies: + workbox-core: ^5.1.4 + checksum: 14655d0254813d2580935c88fe4768eb4794158a3c0700505aa06784dcd8d7498563e8b55152f0a4afb609163e76787a3a3eb61813b810bd76830c866d6ceb9e + languageName: node + linkType: hard + +"workbox-broadcast-update@npm:^5.1.4": + version: 5.1.4 + resolution: "workbox-broadcast-update@npm:5.1.4" + dependencies: + workbox-core: ^5.1.4 + checksum: b56df2fde652c2efa8afbb8880562aaac6932be313ddcbbb688bb48beeb3164c928a644407f359168789a31592c765f63526608afe6cd803ac89402f786064d1 + languageName: node + linkType: hard + +"workbox-build@npm:^5.1.4": + version: 5.1.4 + resolution: "workbox-build@npm:5.1.4" + dependencies: + "@babel/core": ^7.8.4 + "@babel/preset-env": ^7.8.4 + "@babel/runtime": ^7.8.4 + "@hapi/joi": ^15.1.0 + "@rollup/plugin-node-resolve": ^7.1.1 + "@rollup/plugin-replace": ^2.3.1 + "@surma/rollup-plugin-off-main-thread": ^1.1.1 + common-tags: ^1.8.0 + fast-json-stable-stringify: ^2.1.0 + fs-extra: ^8.1.0 + glob: ^7.1.6 + lodash.template: ^4.5.0 + pretty-bytes: ^5.3.0 + rollup: ^1.31.1 + rollup-plugin-babel: ^4.3.3 + rollup-plugin-terser: ^5.3.1 + source-map: ^0.7.3 + source-map-url: ^0.4.0 + stringify-object: ^3.3.0 + strip-comments: ^1.0.2 + tempy: ^0.3.0 + upath: ^1.2.0 + workbox-background-sync: ^5.1.4 + workbox-broadcast-update: ^5.1.4 + workbox-cacheable-response: ^5.1.4 + workbox-core: ^5.1.4 + workbox-expiration: ^5.1.4 + workbox-google-analytics: ^5.1.4 + workbox-navigation-preload: ^5.1.4 + workbox-precaching: ^5.1.4 + workbox-range-requests: ^5.1.4 + workbox-routing: ^5.1.4 + workbox-strategies: ^5.1.4 + workbox-streams: ^5.1.4 + workbox-sw: ^5.1.4 + workbox-window: ^5.1.4 + checksum: 873833d0ea5c39c3f9adae9b2cd8ff33c013ff57f189dbec94d4d02917281495f38bbfa508d24425176ea8d31d6a27590658c83c30d44d9d5a9f4eb4d0798694 + languageName: node + linkType: hard + +"workbox-cacheable-response@npm:^5.1.4": + version: 5.1.4 + resolution: "workbox-cacheable-response@npm:5.1.4" + dependencies: + workbox-core: ^5.1.4 + checksum: 3d8940dbee11880fdd86d76f85c063cf0a42d722be828332acf2f69ff5eaaedc8a0d779e44175adba4e8485f98392052539b2126df79125cebcec57dea0bee3c + languageName: node + linkType: hard + +"workbox-core@npm:^5.1.4": + version: 5.1.4 + resolution: "workbox-core@npm:5.1.4" + checksum: 6062bc3131bb7fcf1922be619cbc28ba528b033ba18acced5e42eb62b6c0a763814e905106c081c1c100a5d520ef104957e99e592e5e954767df76db49a7c874 + languageName: node + linkType: hard + +"workbox-expiration@npm:^5.1.4": + version: 5.1.4 + resolution: "workbox-expiration@npm:5.1.4" + dependencies: + workbox-core: ^5.1.4 + checksum: c4648a008d19ee1281d5d588e10f14bd01530d8601c6ebf27e63b109663530fd381709539f1dd8a32e75d68a04e40e5f31ec6fbcc9ea052ee39000a2d76ade50 + languageName: node + linkType: hard + +"workbox-google-analytics@npm:^5.1.4": + version: 5.1.4 + resolution: "workbox-google-analytics@npm:5.1.4" + dependencies: + workbox-background-sync: ^5.1.4 + workbox-core: ^5.1.4 + workbox-routing: ^5.1.4 + workbox-strategies: ^5.1.4 + checksum: 2783e93f8a5aeccc038f51a9960c05aebd104fd8d113b5fd78a09bac2da8ed8e2be4c9fd7d8a6751682301d6b5e36ba055240a74a3591b4e887aabb2784cd531 + languageName: node + linkType: hard + +"workbox-navigation-preload@npm:^5.1.4": + version: 5.1.4 + resolution: "workbox-navigation-preload@npm:5.1.4" + dependencies: + workbox-core: ^5.1.4 + checksum: ed6b19f063f17e2dd12ef08594ea338fcf96d994ea8f7d9b2987099cb08a890c73f139a23b68c9c5523308fba4634f24aca079deb7d00684c8d76fdfb07b0fc9 + languageName: node + linkType: hard + +"workbox-precaching@npm:^5.1.4": + version: 5.1.4 + resolution: "workbox-precaching@npm:5.1.4" + dependencies: + workbox-core: ^5.1.4 + checksum: 5593c5b9c3c928bb5d3b4c998625be610d05a3b55523e5abb0fc5f12ff2e32412114e933e60d54ba9e2661fa3cbbbab7e11f91c7170742cfe9525437d1c44ae8 + languageName: node + linkType: hard + +"workbox-range-requests@npm:^5.1.4": + version: 5.1.4 + resolution: "workbox-range-requests@npm:5.1.4" + dependencies: + workbox-core: ^5.1.4 + checksum: c67b467023e85a45599c411079907585c4d4b7aab77205dd905cd0d8b1487aa248469bc2f89045e8bd4a08eed4ede14795fc9089d01beff65ff3c6f2f1deff45 + languageName: node + linkType: hard + +"workbox-routing@npm:^5.1.4": + version: 5.1.4 + resolution: "workbox-routing@npm:5.1.4" + dependencies: + workbox-core: ^5.1.4 + checksum: 4199a02b433eb645dfcaf2a5056a04d79f337b6f368b1ab5aa18262857835d4b995536062c294d6f4db6da236235b5736af4b29d0ea1b0c3f0db339b04d3cd40 + languageName: node + linkType: hard + +"workbox-strategies@npm:^5.1.4": + version: 5.1.4 + resolution: "workbox-strategies@npm:5.1.4" + dependencies: + workbox-core: ^5.1.4 + workbox-routing: ^5.1.4 + checksum: 6ed247bfc0037331043cd0e772c6fd8d48e487875fac75d6692eb3936536ca2d4ac5ac9d12ec9b0ad5eefd4a69afd1ad2a993829ce3a373390880a019fd33d3d + languageName: node + linkType: hard + +"workbox-streams@npm:^5.1.4": + version: 5.1.4 + resolution: "workbox-streams@npm:5.1.4" + dependencies: + workbox-core: ^5.1.4 + workbox-routing: ^5.1.4 + checksum: daaedb22dae6eb4723e7a21d758854adb36b75f1fa2453a914b6768628d91555e3db76fccb70a101f5cf1a39056e783eab1c8b0f4a59649f7ef4fad173c6f7d3 + languageName: node + linkType: hard + +"workbox-sw@npm:^5.1.4": + version: 5.1.4 + resolution: "workbox-sw@npm:5.1.4" + checksum: eda970f62c26715b806828cab3000240843bab2e6577c341ccd30747a77a60d23f4f08d8d85fba680bfefa95c673c4d48a62a969a2540916dcf6506c627c69cc + languageName: node + linkType: hard + +"workbox-webpack-plugin@npm:5.1.4": + version: 5.1.4 + resolution: "workbox-webpack-plugin@npm:5.1.4" + dependencies: + "@babel/runtime": ^7.5.5 + fast-json-stable-stringify: ^2.0.0 + source-map-url: ^0.4.0 + upath: ^1.1.2 + webpack-sources: ^1.3.0 + workbox-build: ^5.1.4 + peerDependencies: + webpack: ^4.0.0 + checksum: 7a9093d4ccfedc27ee6716443bcb7ce12d1f92831f48d09e6cf829a62d2ba7948a84ed38964923136d6b296e8f60bda359645a82c5a19e2c5a8e8aab6dae0a55 + languageName: node + linkType: hard + +"workbox-window@npm:^5.1.4": + version: 5.1.4 + resolution: "workbox-window@npm:5.1.4" + dependencies: + workbox-core: ^5.1.4 + checksum: bd5bc967ea1202c555db4360892518f5479027d05e4bd02fd38ebef3faf6605ee7e3887225e0920624cd2685e5217c3c4bd43a7d458860d186400c12f410df5b + languageName: node + linkType: hard + +"worker-farm@npm:^1.7.0": + version: 1.7.0 + resolution: "worker-farm@npm:1.7.0" + dependencies: + errno: ~0.1.7 + checksum: eab917530e1feddf157ec749e9c91b73a886142daa7fdf3490bccbf7b548b2576c43ab8d0a98e72ac755cbc101ca8647a7b1ff2485fddb9e8f53c40c77f5a719 + languageName: node + linkType: hard + +"worker-rpc@npm:^0.1.0": + version: 0.1.1 + resolution: "worker-rpc@npm:0.1.1" + dependencies: + microevent.ts: ~0.1.1 + checksum: 8f8607506172f44c05490f3ccf13e5c1f430eeb9b6116a405919c186b8b17add13bbb22467a0dbcd18ec7fcb080709a15738182e0003c5fbe2144721ea00f357 + languageName: node + linkType: hard + +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0, wrap-ansi@npm:^7.0.0": + version: 7.0.0 + resolution: "wrap-ansi@npm:7.0.0" + dependencies: + ansi-styles: ^4.0.0 + string-width: ^4.1.0 + strip-ansi: ^6.0.0 + checksum: a790b846fd4505de962ba728a21aaeda189b8ee1c7568ca5e817d85930e06ef8d1689d49dbf0e881e8ef84436af3a88bc49115c2e2788d841ff1b8b5b51a608b + languageName: node + linkType: hard + +"wrap-ansi@npm:^2.0.0": + version: 2.1.0 + resolution: "wrap-ansi@npm:2.1.0" + dependencies: + string-width: ^1.0.1 + strip-ansi: ^3.0.1 + checksum: 2dacd4b3636f7a53ee13d4d0fe7fa2ed9ad81e9967e17231924ea88a286ec4619a78288de8d41881ee483f4449ab2c0287cde8154ba1bd0126c10271101b2ee3 + languageName: node + linkType: hard + +"wrap-ansi@npm:^5.1.0": + version: 5.1.0 + resolution: "wrap-ansi@npm:5.1.0" + dependencies: + ansi-styles: ^3.2.0 + string-width: ^3.0.0 + strip-ansi: ^5.0.0 + checksum: 9b48c862220e541eb0daa22661b38b947973fc57054e91be5b0f2dcc77741a6875ccab4ebe970a394b4682c8dfc17e888266a105fb8b0a9b23c19245e781ceae + languageName: node + linkType: hard + +"wrap-ansi@npm:^6.2.0": + version: 6.2.0 + resolution: "wrap-ansi@npm:6.2.0" + dependencies: + ansi-styles: ^4.0.0 + string-width: ^4.1.0 + strip-ansi: ^6.0.0 + checksum: 6cd96a410161ff617b63581a08376f0cb9162375adeb7956e10c8cd397821f7eb2a6de24eb22a0b28401300bf228c86e50617cd568209b5f6775b93c97d2fe3a + languageName: node + linkType: hard + +"wrap-ansi@npm:^8.1.0": + version: 8.1.0 + resolution: "wrap-ansi@npm:8.1.0" + dependencies: + ansi-styles: ^6.1.0 + string-width: ^5.0.1 + strip-ansi: ^7.0.1 + checksum: 371733296dc2d616900ce15a0049dca0ef67597d6394c57347ba334393599e800bab03c41d4d45221b6bc967b8c453ec3ae4749eff3894202d16800fdfe0e238 + languageName: node + linkType: hard + +"wrappy@npm:1": + version: 1.0.2 + resolution: "wrappy@npm:1.0.2" + checksum: 159da4805f7e84a3d003d8841557196034155008f817172d4e986bd591f74aa82aa7db55929a54222309e01079a65a92a9e6414da5a6aa4b01ee44a511ac3ee5 + languageName: node + linkType: hard + +"write-file-atomic@npm:^3.0.0": + version: 3.0.3 + resolution: "write-file-atomic@npm:3.0.3" + dependencies: + imurmurhash: ^0.1.4 + is-typedarray: ^1.0.0 + signal-exit: ^3.0.2 + typedarray-to-buffer: ^3.1.5 + checksum: c55b24617cc61c3a4379f425fc62a386cc51916a9b9d993f39734d005a09d5a4bb748bc251f1304e7abd71d0a26d339996c275955f527a131b1dcded67878280 + languageName: node + linkType: hard + +"ws@npm:^6.2.1": + version: 6.2.2 + resolution: "ws@npm:6.2.2" + dependencies: + async-limiter: ~1.0.0 + checksum: aec3154ec51477c094ac2cb5946a156e17561a581fa27005cbf22c53ac57f8d4e5f791dd4bbba6a488602cb28778c8ab7df06251d590507c3c550fd8ebeee949 + languageName: node + linkType: hard + +"ws@npm:^7.4.6": + version: 7.5.9 + resolution: "ws@npm:7.5.9" + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + checksum: c3c100a181b731f40b7f2fddf004aa023f79d64f489706a28bc23ff88e87f6a64b3c6651fbec3a84a53960b75159574d7a7385709847a62ddb7ad6af76f49138 + languageName: node + linkType: hard + +"xdg-basedir@npm:^4.0.0": + version: 4.0.0 + resolution: "xdg-basedir@npm:4.0.0" + checksum: 0073d5b59a37224ed3a5ac0dd2ec1d36f09c49f0afd769008a6e9cd3cd666bd6317bd1c7ce2eab47e1de285a286bad11a9b038196413cd753b79770361855f3c + languageName: node + linkType: hard + +"xml-name-validator@npm:^3.0.0": + version: 3.0.0 + resolution: "xml-name-validator@npm:3.0.0" + checksum: b3ac459afed783c285bb98e4960bd1f3ba12754fd4f2320efa0f9181ca28928c53cc75ca660d15d205e81f92304419afe94c531c7cfb3e0649aa6d140d53ecb0 + languageName: node + linkType: hard + +"xml2js@npm:^0.4.23": + version: 0.4.23 + resolution: "xml2js@npm:0.4.23" + dependencies: + sax: ">=0.6.0" + xmlbuilder: ~11.0.0 + checksum: ca0cf2dfbf6deeaae878a891c8fbc0db6fd04398087084edf143cdc83d0509ad0fe199b890f62f39c4415cf60268a27a6aed0d343f0658f8779bd7add690fa98 + languageName: node + linkType: hard + +"xmlbuilder@npm:>=11.0.1, xmlbuilder@npm:^15.1.1": + version: 15.1.1 + resolution: "xmlbuilder@npm:15.1.1" + checksum: 14f7302402e28d1f32823583d121594a9dca36408d40320b33f598bd589ca5163a352d076489c9c64d2dc1da19a790926a07bf4191275330d4de2b0d85bb1843 + languageName: node + linkType: hard + +"xmlbuilder@npm:~11.0.0": + version: 11.0.1 + resolution: "xmlbuilder@npm:11.0.1" + checksum: 7152695e16f1a9976658215abab27e55d08b1b97bca901d58b048d2b6e106b5af31efccbdecf9b07af37c8377d8e7e821b494af10b3a68b0ff4ae60331b415b0 + languageName: node + linkType: hard + +"xmlchars@npm:^2.2.0": + version: 2.2.0 + resolution: "xmlchars@npm:2.2.0" + checksum: 8c70ac94070ccca03f47a81fcce3b271bd1f37a591bf5424e787ae313fcb9c212f5f6786e1fa82076a2c632c0141552babcd85698c437506dfa6ae2d58723062 + languageName: node + linkType: hard + +"xmlhttprequest@npm:1.8.0": + version: 1.8.0 + resolution: "xmlhttprequest@npm:1.8.0" + checksum: c891cf0d7884b4f5cce835aa01f1965727cd352cbd2d7a2e0605bf11ec99ae2198364cca54656ec8b2581a5704dee6c2bf9911922a0ff2a71b613455d32e81b7 + languageName: node + linkType: hard + +"xtend@npm:^4.0.0, xtend@npm:~4.0.1": + version: 4.0.2 + resolution: "xtend@npm:4.0.2" + checksum: ac5dfa738b21f6e7f0dd6e65e1b3155036d68104e67e5d5d1bde74892e327d7e5636a076f625599dc394330a731861e87343ff184b0047fef1360a7ec0a5a36a + languageName: node + linkType: hard + +"y18n@npm:^3.2.0": + version: 3.2.2 + resolution: "y18n@npm:3.2.2" + checksum: 6154fd7544f8bbf5b18cdf77692ed88d389be49c87238ecb4e0d6a5276446cd2a5c29cc4bdbdddfc7e4e498b08df9d7e38df4a1453cf75eecfead392246ea74a + languageName: node + linkType: hard + +"y18n@npm:^4.0.0": + version: 4.0.3 + resolution: "y18n@npm:4.0.3" + checksum: 014dfcd9b5f4105c3bb397c1c8c6429a9df004aa560964fb36732bfb999bfe83d45ae40aeda5b55d21b1ee53d8291580a32a756a443e064317953f08025b1aa4 + languageName: node + linkType: hard + +"y18n@npm:^5.0.5": + version: 5.0.8 + resolution: "y18n@npm:5.0.8" + checksum: 54f0fb95621ee60898a38c572c515659e51cc9d9f787fb109cef6fde4befbe1c4602dc999d30110feee37456ad0f1660fa2edcfde6a9a740f86a290999550d30 + languageName: node + linkType: hard + +"yallist@npm:^3.0.2": + version: 3.1.1 + resolution: "yallist@npm:3.1.1" + checksum: 48f7bb00dc19fc635a13a39fe547f527b10c9290e7b3e836b9a8f1ca04d4d342e85714416b3c2ab74949c9c66f9cebb0473e6bc353b79035356103b47641285d + languageName: node + linkType: hard + +"yallist@npm:^4.0.0": + version: 4.0.0 + resolution: "yallist@npm:4.0.0" + checksum: 343617202af32df2a15a3be36a5a8c0c8545208f3d3dfbc6bb7c3e3b7e8c6f8e7485432e4f3b88da3031a6e20afa7c711eded32ddfb122896ac5d914e75848d5 + languageName: node + linkType: hard + +"yaml@npm:^1.10.0": + version: 1.10.2 + resolution: "yaml@npm:1.10.2" + checksum: ce4ada136e8a78a0b08dc10b4b900936912d15de59905b2bf415b4d33c63df1d555d23acb2a41b23cf9fb5da41c256441afca3d6509de7247daa062fd2c5ea5f + languageName: node + linkType: hard + +"yargs-parser@npm:^13.1.2": + version: 13.1.2 + resolution: "yargs-parser@npm:13.1.2" + dependencies: + camelcase: ^5.0.0 + decamelize: ^1.2.0 + checksum: c8bb6f44d39a4acd94462e96d4e85469df865de6f4326e0ab1ac23ae4a835e5dd2ddfe588317ebf80c3a7e37e741bd5cb0dc8d92bcc5812baefb7df7c885e86b + languageName: node + linkType: hard + +"yargs-parser@npm:^18.1.2": + version: 18.1.3 + resolution: "yargs-parser@npm:18.1.3" + dependencies: + camelcase: ^5.0.0 + decamelize: ^1.2.0 + checksum: 60e8c7d1b85814594d3719300ecad4e6ae3796748b0926137bfec1f3042581b8646d67e83c6fc80a692ef08b8390f21ddcacb9464476c39bbdf52e34961dd4d9 + languageName: node + linkType: hard + +"yargs-parser@npm:^20.2.2": + version: 20.2.9 + resolution: "yargs-parser@npm:20.2.9" + checksum: 8bb69015f2b0ff9e17b2c8e6bfe224ab463dd00ca211eece72a4cd8a906224d2703fb8a326d36fdd0e68701e201b2a60ed7cf81ce0fd9b3799f9fe7745977ae3 + languageName: node + linkType: hard + +"yargs-parser@npm:^21.1.1": + version: 21.1.1 + resolution: "yargs-parser@npm:21.1.1" + checksum: ed2d96a616a9e3e1cc7d204c62ecc61f7aaab633dcbfab2c6df50f7f87b393993fe6640d017759fe112d0cb1e0119f2b4150a87305cc873fd90831c6a58ccf1c + languageName: node + linkType: hard + +"yargs@npm:^13.3.2": + version: 13.3.2 + resolution: "yargs@npm:13.3.2" + dependencies: + cliui: ^5.0.0 + find-up: ^3.0.0 + get-caller-file: ^2.0.1 + require-directory: ^2.1.1 + require-main-filename: ^2.0.0 + set-blocking: ^2.0.0 + string-width: ^3.0.0 + which-module: ^2.0.0 + y18n: ^4.0.0 + yargs-parser: ^13.1.2 + checksum: 75c13e837eb2bb25717957ba58d277e864efc0cca7f945c98bdf6477e6ec2f9be6afa9ed8a876b251a21423500c148d7b91e88dee7adea6029bdec97af1ef3e8 + languageName: node + linkType: hard + +"yargs@npm:^15.4.1": + version: 15.4.1 + resolution: "yargs@npm:15.4.1" + dependencies: + cliui: ^6.0.0 + decamelize: ^1.2.0 + find-up: ^4.1.0 + get-caller-file: ^2.0.1 + require-directory: ^2.1.1 + require-main-filename: ^2.0.0 + set-blocking: ^2.0.0 + string-width: ^4.2.0 + which-module: ^2.0.0 + y18n: ^4.0.0 + yargs-parser: ^18.1.2 + checksum: 40b974f508d8aed28598087720e086ecd32a5fd3e945e95ea4457da04ee9bdb8bdd17fd91acff36dc5b7f0595a735929c514c40c402416bbb87c03f6fb782373 + languageName: node + linkType: hard + +"yargs@npm:^16.2.0": + version: 16.2.0 + resolution: "yargs@npm:16.2.0" + dependencies: + cliui: ^7.0.2 + escalade: ^3.1.1 + get-caller-file: ^2.0.5 + require-directory: ^2.1.1 + string-width: ^4.2.0 + y18n: ^5.0.5 + yargs-parser: ^20.2.2 + checksum: b14afbb51e3251a204d81937c86a7e9d4bdbf9a2bcee38226c900d00f522969ab675703bee2a6f99f8e20103f608382936034e64d921b74df82b63c07c5e8f59 + languageName: node + linkType: hard + +"yargs@npm:^17.0.1, yargs@npm:^17.7.2": + version: 17.7.2 + resolution: "yargs@npm:17.7.2" + dependencies: + cliui: ^8.0.1 + escalade: ^3.1.1 + get-caller-file: ^2.0.5 + require-directory: ^2.1.1 + string-width: ^4.2.3 + y18n: ^5.0.5 + yargs-parser: ^21.1.1 + checksum: 73b572e863aa4a8cbef323dd911d79d193b772defd5a51aab0aca2d446655216f5002c42c5306033968193bdbf892a7a4c110b0d77954a7fdf563e653967b56a + languageName: node + linkType: hard + +"yargs@npm:^3.10.0": + version: 3.32.0 + resolution: "yargs@npm:3.32.0" + dependencies: + camelcase: ^2.0.1 + cliui: ^3.0.3 + decamelize: ^1.1.1 + os-locale: ^1.4.0 + string-width: ^1.0.1 + window-size: ^0.1.4 + y18n: ^3.2.0 + checksum: 3e0f7fc1bc2052bcaaa7354cbd33d05a86fc0f236432d107ecd088989fbd175174c562d17e762727acbf25d04e8520d43625f7581b2a6ce55ce10034e80675fc + languageName: node + linkType: hard + +"yarn@npm:^1.22.19": + version: 1.22.19 + resolution: "yarn@npm:1.22.19" + bin: + yarn: bin/yarn.js + yarnpkg: bin/yarn.js + checksum: b43d2cc5fee7e933beb12a8aee7dfceca9e9ef2dd17c5d04d15a12ab7bec5f5744ea34a07b86e013da7f291a18c4e1ad8f70e150f5ed2f4666e6723c7f0a8452 + languageName: node + linkType: hard + +"yauzl@npm:^2.10.0": + version: 2.10.0 + resolution: "yauzl@npm:2.10.0" + dependencies: + buffer-crc32: ~0.2.3 + fd-slicer: ~1.1.0 + checksum: 7f21fe0bbad6e2cb130044a5d1d0d5a0e5bf3d8d4f8c4e6ee12163ce798fee3de7388d22a7a0907f563ac5f9d40f8699a223d3d5c1718da90b0156da6904022b + languageName: node + linkType: hard + +"yocto-queue@npm:^0.1.0": + version: 0.1.0 + resolution: "yocto-queue@npm:0.1.0" + checksum: f77b3d8d00310def622123df93d4ee654fc6a0096182af8bd60679ddcdfb3474c56c6c7190817c84a2785648cdee9d721c0154eb45698c62176c322fb46fc700 + languageName: node + linkType: hard